    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --saffron:       #FF6B17;
      --saffron-light: #FF8C4B;
      --saffron-deep:  #D45500;
      --navy:          #0B1B38;
      --navy-mid:      #122447;
      --navy-light:    #1A3260;
      --gold:          #FFB800;
      --gold-light:    #FFD55A;
      --green:         #0E7C30;
      --green-light:   #12A03D;
      --white:         #FFFFFF;
      --off-white:     #FFF9F2;
      --text-muted:    #6B7280;
      --border:        rgba(255,107,23,0.15);

      --font-heading:  'Tiro Devanagari Hindi', serif;
      --font-body:     'Hind', sans-serif;
      --font-accent:   'Baloo 2', cursive;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.75);
      font-size: 0.78rem;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,107,23,0.3);
    }
    .topbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .topbar-left { display: flex; align-items: center; gap: 18px; }
    .topbar-left span { display: flex; align-items: center; gap: 6px; }
    .topbar-left svg { color: var(--saffron); }
    .topbar-right { display: flex; align-items: center; gap: 12px; }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,107,23,0.15);
      color: var(--saffron-light);
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .social-link:hover { background: var(--saffron); color: white; transform: translateY(-2px); }

    /* ── NAVBAR ── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 3px solid var(--saffron);
      box-shadow: 0 4px 24px rgba(11,27,56,0.12);
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 6px 32px rgba(11,27,56,0.2); }
    .nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
    .nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
    .brand-emblem {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(255,107,23,0.4);
      flex-shrink: 0;
    }
    .brand-emblem svg { width: 28px; height: 28px; fill: white; }
    .brand-text { display: flex; flex-direction: column; line-height: 1.2; }
    .brand-name {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.01em;
    }
    .brand-tag {
      font-family: var(--font-body);
      font-size: 0.68rem;
      color: var(--saffron);
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 4px;
      align-items: center;
      flex-wrap: nowrap;
    }
    .nav-links a {
      display: block;
      padding: 8px 12px;
      color: var(--navy);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--saffron); background: rgba(255,107,23,0.06); }
    .nav-links a.active { color: var(--saffron); }
    .btn-join-nav {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--saffron);
      color: white !important;
      font-weight: 700;
      font-size: 0.85rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(255,107,23,0.3);
    }
    .btn-join-nav:hover {
      background: var(--saffron-deep);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255,107,23,0.4);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1742316963914-24eab6345b36?w=1920&q=85&auto=format&fit=crop');
      background-size: cover;
      background-position: center 30%;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(7,17,43,0.93) 0%, rgba(11,27,56,0.82) 50%, rgba(18,36,71,0.70) 100%),
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,23,0.15) 0%, transparent 55%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,107,23,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,23,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 1;
    }
    .hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .particle {
      position: absolute;
      border-radius: 50%;
      animation: floatUp linear infinite;
      opacity: 0;
    }
    @keyframes floatUp {
      0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.3; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }
    .hero-diagonal {
      position: absolute;
      right: 0; top: 0;
      width: 48%;
      height: 100%;
      clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
      overflow: hidden;
      z-index: 1;
    }
    .hero-diagonal-img {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1612511112842-f610f2dd4b86?w=900&q=85&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      opacity: 0.4;
    }
    .hero-diagonal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(11,27,56,0.9) 0%, rgba(11,27,56,0.4) 50%, rgba(11,27,56,0.1) 100%);
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 120px 24px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content {}
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255,107,23,0.12);
      border: 1px solid rgba(255,107,23,0.3);
      border-radius: 100px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--saffron-light);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge span.dot {
      width: 8px; height: 8px;
      background: var(--saffron);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,23,0.5); }
      50%       { box-shadow: 0 0 0 8px rgba(255,107,23,0); }
    }
    .hero-title {
      font-family: var(--font-heading);
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 12px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-title .highlight {
      color: var(--saffron);
      position: relative;
    }
    .hero-title .highlight::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      border-radius: 2px;
      animation: expandWidth 1s 1s ease both;
    }
    @keyframes expandWidth { from { width: 0 } to { width: 100% } }
    .hero-tagline {
      font-family: var(--font-accent);
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.02em;
      margin-bottom: 24px;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 40px;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      color: white;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(255,107,23,0.45);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255,107,23,0.55); }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 28px;
      background: transparent;
      color: white;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 10px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.3);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-secondary:hover { border-color: var(--gold); background: rgba(255,184,0,0.08); color: var(--gold); }
    .hero-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: fadeUp 0.8s 0.3s ease both;
      position: relative;
    }
    .hero-img-frame {
      position: relative;
      width: 100%;
      max-width: 460px;
    }
    .hero-img-main {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,107,23,0.3);
    }
    .hero-img-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .hero-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(11,27,56,0.8) 100%);
    }
    .hero-img-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: rgba(255,107,23,0.95);
      backdrop-filter: blur(8px);
      color: white;
      padding: 12px 18px;
      border-radius: 12px;
      z-index: 2;
      font-size: 0.82rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-img-badge i { font-size: 1rem; }
    .hero-img-float {
      position: absolute;
      top: -18px; right: -18px;
      background: white;
      border-radius: 16px;
      padding: 14px 18px;
      text-align: center;
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
      z-index: 2;
    }
    .hero-img-float .big {
      font-family: var(--font-accent);
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--saffron);
      line-height: 1;
      display: block;
    }
    .hero-img-float .small { font-size: 0.68rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
    .hero-img-sub {
      position: absolute;
      bottom: -18px; right: 20px;
      background: var(--navy);
      border: 1px solid rgba(255,107,23,0.3);
      border-radius: 12px;
      padding: 12px 18px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-img-sub i { color: var(--saffron); font-size: 1.2rem; }
    .hero-img-sub span { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; }
    @keyframes rotateSlow { to { transform: rotate(360deg); } }
    .hero-tri-bar {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 6px;
      display: flex;
    }
    .hero-tri-bar span { flex: 1; }
    .hero-tri-bar span:nth-child(1) { background: var(--saffron); }
    .hero-tri-bar span:nth-child(2) { background: white; }
    .hero-tri-bar span:nth-child(3) { background: var(--green); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: linear-gradient(135deg, var(--saffron-deep), var(--saffron));
      padding: 0;
    }
    .stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 32px 24px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.2);
      position: relative;
      overflow: hidden;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 40px; height: 3px;
      background: rgba(255,255,255,0.4);
      border-radius: 0 0 3px 3px;
    }
    .stat-num {
      font-family: var(--font-accent);
      font-size: 2.8rem;
      font-weight: 800;
      color: white;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.85);
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    /* ── SECTION COMMON ── */
    section { position: relative; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 14px;
    }
    .section-label::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--saffron);
      border-radius: 2px;
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 16px;
    }
    .section-title .accent { color: var(--saffron); }
    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 600px;
      line-height: 1.75;
    }

    /* ── ABOUT ── */
    .about {
      padding: 100px 0;
      background: var(--off-white);
      overflow: hidden;
    }
    .about-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    /* About image frame replacing the card */
    .about-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: visible;
    }
    .about-img-main {
      width: 100%;
      height: 480px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 60px rgba(11,27,56,0.2);
    }
    .about-img-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 0.6s ease;
    }
    .about-img-main:hover img { transform: scale(1.04); }
    .about-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, rgba(11,27,56,0.75) 100%);
    }
    .about-img-overlay {
      position: absolute;
      bottom: 24px; left: 24px; right: 24px;
      z-index: 2;
      display: flex;
      gap: 12px;
    }
    .about-overlay-stat {
      flex: 1;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      padding: 14px 16px;
      text-align: center;
    }
    .about-overlay-stat .val {
      font-family: var(--font-accent);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--saffron);
      display: block;
      line-height: 1;
    }
    .about-overlay-stat .lbl { font-size: 0.7rem; color: rgba(255,255,255,0.8); margin-top: 4px; font-weight: 500; }
    .about-img-tag {
      position: absolute;
      top: 24px; left: 24px;
      background: var(--saffron);
      color: white;
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      z-index: 2;
    }
    .about-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(11,27,56,0.12);
      border: 1px solid var(--border);
    }
    .about-card-body { padding: 32px; }
    .about-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }
    .about-mini-stat {
      background: var(--off-white);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
      border: 1px solid var(--border);
    }
    .about-mini-stat .val {
      font-family: var(--font-accent);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--saffron);
      line-height: 1;
      display: block;
    }
    .about-mini-stat .lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 4px;
    }
    .about-founder {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px;
      background: var(--off-white);
      border-radius: 12px;
      border: 1px solid var(--border);
    }
    .founder-avatar {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-heading);
      font-size: 1.4rem;
      color: white;
    }
    .founder-info .name {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.95rem;
    }
    .founder-info .role {
      font-size: 0.75rem;
      color: var(--saffron);
      font-weight: 600;
    }
    .about-float {
      position: absolute;
      top: -20px; right: -20px;
      background: var(--saffron);
      color: white;
      border-radius: 16px;
      padding: 16px 20px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(255,107,23,0.4);
      transform: rotate(6deg);
    }
    .about-float .big { font-family: var(--font-accent); font-size: 2rem; font-weight: 800; line-height: 1; }
    .about-float .small { font-size: 0.7rem; font-weight: 600; opacity: 0.9; }
    .about-content {}
    .about-text {
      font-size: 0.98rem;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .about-points { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
    .about-points li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 0.95rem;
      color: #374151;
    }
    .about-points li .icon {
      width: 32px; height: 32px;
      background: rgba(255,107,23,0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--saffron);
      font-size: 1rem;
    }

    /* ── AGENDA / MISSION ── */
    .agenda {
      padding: 100px 0;
      background: var(--white);
    }
    .agenda-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .agenda-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .agenda-header .section-label { justify-content: center; }
    .agenda-header .section-label::before { display: none; }
    .agenda-header .section-label::after {
      content: '';
      width: 24px; height: 2px;
      background: var(--saffron);
      border-radius: 2px;
    }
    .agenda-header .section-desc { margin: 0 auto; }
    .agenda-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .agenda-card {
      background: var(--white);
      border: 1px solid #E8EDF5;
      border-radius: 18px;
      padding: 32px 28px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
      cursor: default;
    }
    .agenda-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--saffron);
      border-radius: 0 2px 2px 0;
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.3s;
    }
    .agenda-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(11,27,56,0.1);
      border-color: rgba(255,107,23,0.2);
    }
    .agenda-card:hover::before { transform: scaleY(1); }
    .agenda-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,107,23,0.12), rgba(255,107,23,0.06));
      border: 1px solid rgba(255,107,23,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--saffron);
    }
    .about-points li .icon i {
      font-size: 0.95rem;
      color: var(--saffron);
    }
    .agenda-card h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .agenda-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .agenda-card .tag {
      display: inline-block;
      margin-top: 16px;
      padding: 4px 12px;
      background: rgba(255,107,23,0.08);
      color: var(--saffron);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ── MANIFESTO BANNER ── */
    .manifesto-banner {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .manifesto-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1708356810007-0158dea11ddf?w=1920&q=80&auto=format&fit=crop');
      background-size: cover;
      background-position: center 60%;
      background-attachment: fixed;
    }
    .manifesto-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(7,17,43,0.95) 0%, rgba(11,27,56,0.90) 50%, rgba(18,36,71,0.88) 100%);
      z-index: 1;
    }
    .manifesto-banner::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,23,0.12) 0%, transparent 60%);
      z-index: 1;
    }
    .manifesto-inner { z-index: 2; }
    .manifesto-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .manifesto-content .section-title { color: white; }
    .manifesto-content .section-desc { color: rgba(255,255,255,0.65); max-width: 480px; }
    .manifesto-pillars {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pillar {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      transition: background 0.2s, border-color 0.2s;
    }
    .pillar:hover { background: rgba(255,107,23,0.1); border-color: rgba(255,107,23,0.3); }
    .pillar-num {
      font-family: var(--font-accent);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--saffron);
      opacity: 0.6;
      min-width: 40px;
      line-height: 1;
    }
    .pillar-text { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 500; }

    /* ── ACTIVITIES ── */
    .activities {
      padding: 100px 0;
      background: var(--off-white);
    }
    .activities-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .activities-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 24px;
    }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .activity-card {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #E8EDF5;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .activity-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,27,56,0.1); }
    .activity-card-top {
      height: 200px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .activity-card-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,27,56,0.35) 0%, rgba(11,27,56,0.7) 100%);
      z-index: 1;
    }
    .activity-card-top::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 60px;
      background: linear-gradient(0deg, rgba(11,27,56,0.85), transparent);
      z-index: 1;
    }
    .activity-card-top img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
    }
    .activity-card:hover .activity-card-top img { transform: scale(1.06); }
    .activity-card-top .icon {
      font-size: 3rem;
      position: relative;
      z-index: 2;
    }
    .activity-card-body { padding: 24px; }
    .activity-card h3 {
      font-family: var(--font-heading);
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .activity-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .activity-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.85rem;
      color: #555;
      line-height: 1.5;
    }
    .activity-list li::before {
      content: '▸';
      color: var(--saffron);
      font-size: 0.75rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── JOIN CTA ── */
    .join-cta {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--saffron-deep), var(--saffron), #FF8C4B);
      position: relative;
      overflow: hidden;
    }
    .join-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .join-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
      position: relative;
    }
    .join-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: white;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .join-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 48px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .join-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 36px;
      background: #25D366;
      color: white;
      font-weight: 700;
      font-size: 1.05rem;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(0,0,0,0.2);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 17px 32px;
      background: rgba(255,255,255,0.15);
      color: white;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 12px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(4px);
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-white:hover { background: rgba(255,255,255,0.25); border-color: white; }

    /* ── FOOTER ── */
    .footer {
      background: var(--navy);
      color: rgba(255,255,255,0.7);
      padding: 70px 0 0;
      border-top: 3px solid var(--saffron);
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
    }
    .footer-brand {}
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-decoration: none; }
    .footer-logo-emblem {
      width: 44px; height: 44px;
      background: rgba(255,107,23,0.15);
      border: 1px solid rgba(255,107,23,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-heading);
      font-size: 1.4rem;
      color: var(--saffron);
    }
    .footer-logo-text .name {
      font-family: var(--font-heading);
      font-size: 0.9rem;
      color: white;
      line-height: 1.2;
    }
    .footer-logo-text .slogan {
      font-size: 0.7rem;
      color: var(--saffron);
      font-weight: 600;
    }
    .footer-desc { font-size: 0.85rem; line-height: 1.8; margin-bottom: 24px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: white;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,107,23,0.2);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a::before { content: '›'; color: var(--saffron); font-size: 1.1rem; line-height: 1; }
    .footer-links a:hover { color: var(--saffron-light); }
    .contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.85rem; }
    .contact-list li svg { color: var(--saffron); flex-shrink: 0; margin-top: 2px; }
    .contact-list a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .contact-list a:hover { color: var(--saffron-light); }
    .footer-bottom {
      margin-top: 56px;
      padding: 20px 24px;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-bar {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; }
    .footer-bottom-links a:hover { color: var(--saffron); }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--navy);
      padding: 100px 24px 40px;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      display: block;
      padding: 16px 20px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.2s, background 0.2s;
    }
    .mobile-nav a:hover { color: var(--saffron); background: rgba(255,107,23,0.08); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-content { order: 2; }
      .hero-visual { order: 1; }
      .hero-actions { justify-content: center; }
      .hero-sub { margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 900px) {
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .about-inner { grid-template-columns: 1fr; gap: 48px; }
      .about-float { display: none; }
      .agenda-grid { grid-template-columns: 1fr 1fr; }
      .manifesto-inner { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .topbar { display: none; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .agenda-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .hero-emblem-big { width: 180px; height: 180px; }
      .emblem-letter { font-size: 5.5rem; }
    }
