/* ═══════════════════════════════════════════════════
   SANVRIDDHI 4.0 — DESIGN SYSTEM
   Color Palette:
     Navy Dark:  #0a0f1e
     Navy:       #0e1628
     Navy Mid:   #1a2540
     Gold:       #c9a227
     Gold Light: #e0b84a
     Cream:      #f5f0e8
     Text:       #e8e0d0
     Muted:      #8b96aa
═══════════════════════════════════════════════════ */

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

:root {
  --navy-dark:  #070c1a;
  --navy:       #0e1628;
  --navy-mid:   #1a2540;
  --navy-light: #243050;
  --gold:       #c9a227;
  --gold-light: #e0b84a;
  --gold-glow:  rgba(201, 162, 39, 0.15);
  --cream:      #f5f0e8;
  --cream-dark: #e8e2d8;
  --text-light: #ddd8cc;
  --text-muted: #8b96aa;
  --text-dark:  #1a2540;
  --white:      #ffffff;
  --border-dark: rgba(255,255,255,0.08);
  --border-gold: rgba(201,162,39,0.3);

  --font-serif: 'DM Serif Text', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --section-pad: 100px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar partners styling */
.nav-partners {
  display: flex;
  align-items: center;
}
.nav-partners .partners-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-partners .partner-logo {
  height: 38px;
  width: auto;
  opacity: 0.95;
  transition: opacity var(--transition);
}
.nav-partners .partner-logo:hover {
  opacity: 1;
}
.nav-partners .partner-logo.aim {
  height: 38px;
}
.nav-partners .partner-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Hero logo styling */
.hero-logo-container {
  margin-bottom: 24px;
}
.hero-logo {
  height: 96px;
  width: auto;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em; text-decoration: none; border: none; cursor: pointer;
  border-radius: 6px; padding: 12px 24px; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-gold {
  background: var(--gold); color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,162,39,0.25);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.4); }
.btn-ghost {
  background: transparent; color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.btn-large { padding: 16px 36px; font-size: 0.95rem; border-radius: 8px; }

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 14px;
}
.light-eye { color: var(--gold-light); }
.section-headline {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.18; color: var(--navy);
}
.section-headline.light { color: var(--white); }
.section-headline em {
  font-style: italic;
  color: var(--gold);
}
.section-header.center { text-align: center; margin-bottom: 60px; }

/* ── SECTION BACKGROUNDS ── */
.section-dark { background: var(--navy); }
.section-dark-deep { background: var(--navy-dark); }
.section-light { background: var(--cream); }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: var(--max-w); z-index: 1000;
  padding: 0 24px; border-radius: 100px;
  background: rgba(10, 15, 30, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  top: 12px;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto;  }
.nav-links {
  list-style: none; display: flex; gap: 36px; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { padding: 10px 22px; font-size: 0.85rem; }
.mobile-only-cta { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 130px 24px 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,162,39,0.14) 0%, transparent 70%);
  top: 10%; left: 5%; pointer-events: none; filter: blur(40px);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  bottom: 10%; right: 5%; pointer-events: none; filter: blur(50px);
  z-index: 0;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,162,39,0.06) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 1080px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.12); border: 1px solid var(--border-gold);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
  animation: badgeBlink 2.5s infinite ease-in-out;
}
@keyframes badgeBlink {
  0%, 100% {
    background: rgba(201, 162, 39, 0.12);
    border-color: var(--border-gold);
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
  50% {
    background: rgba(201, 162, 39, 0.25);
    border-color: rgba(201, 162, 39, 0.6);
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.2);
  }
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 18px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 28px; border-radius: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.65);
  max-width: 620px; margin: 0 auto 32px; line-height: 1.75;
  text-align: justify;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-partners {
  display: flex; align-items: center; gap: 20px; justify-content: center;
  flex-wrap: wrap;
}
.partners-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
.partners-logos { display: flex; align-items: center; gap: 20px; }
.partner-logo {
  height: 36px; width: auto; opacity: 0.8;
  transition: opacity var(--transition);
}
.partner-logo:hover { opacity: 1; }
.partner-logo.aim { height: 28px; }
.partner-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 5;
}
.hero-scroll-hint.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 24px;
}
.stats-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 40px; gap: 4px;
}
.stat-number {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-number sup {
  font-size: 1.6rem;
  vertical-align: super;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════ */
.problem { padding: var(--section-pad) 24px; }
.problem-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: start;
}
.problem-text { max-width: 580px; }
.problem-text .section-headline { margin-bottom: 36px; }
.problem-quote {
  display: flex; gap: 18px; margin-bottom: 24px;
}
.quote-bar {
  width: 3px; min-height: 100%; background: var(--gold);
  border-radius: 2px; flex-shrink: 0;
}
.problem-quote p {
  font-size: 1.05rem; color: var(--text-dark); line-height: 1.7;
  text-align: justify;
}
.problem-body {
  color: #4a5568; line-height: 1.8; margin-bottom: 20px; font-size: 0.975rem;
  text-align: justify;
}
.problem-highlight {
  color: var(--navy); font-weight: 500; line-height: 1.7; font-size: 0.975rem;
  text-align: justify;
}
/* Gap Visual Card */
.gap-card {
  background: rgba(14, 22, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
.gap-stage {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 0; font-weight: 600; color: var(--text-light); font-size: 0.95rem;
  flex-wrap: wrap;
}
.gap-stage p.gap-note { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); width: 100%; margin-top: 2px; padding-left: 28px; }
.gap-stage--faded { opacity: 0.45; }
.gap-stage--active { opacity: 1; }
.gap-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.3); flex-shrink: 0;
}
.gap-dot--gold { background: var(--gold); box-shadow: 0 0 12px rgba(201,162,39,0.5); }
.gap-middle {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 8px 0;
}
.gap-arrow { font-size: 1.2rem; color: var(--text-muted); }
.gap-label-box {
  background: var(--gold-glow); border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm); padding: 12px 20px; text-align: center;
  width: 100%;
}
.gap-label-box .gap-label-icon { font-size: 1.4rem; display: block; margin-bottom: 4px; }
.gap-label-box strong { color: var(--gold-light); font-size: 0.9rem; display: block; margin-bottom: 4px; }
.gap-label-box p { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   BENTO GRID — PILLARS
═══════════════════════════════════════════════════ */
.pillars { padding: var(--section-pad) 24px; }

/* ── Grid layout: 3 columns, 2 rows ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Column / row assignments */
.bento-card--gtm          { grid-column: 1; grid-row: 1; }
.bento-card--revenue      { grid-column: 2; grid-row: 1; }
.bento-card--accountability { grid-column: 3; grid-row: 1; }
.bento-card--investor     { grid-column: 1; grid-row: 2; }
.bento-card--ecosystem    {
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.ecosystem-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Base card ── */
.bento-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: default; min-height: 220px;
  backdrop-filter: blur(20px);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(201, 162, 39, 0.03) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.bento-card:hover {
  transform: translateY(-6px);
  background: rgba(20, 30, 55, 0.6);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 162, 39, 0.12);
}
.bento-card:hover::before {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
}

/* ── Glow accent blob per card ── */
.bento-bg-accent {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(50px); opacity: 0.12;
  transition: opacity 0.4s ease;
}
.bento-card:hover .bento-bg-accent { opacity: 0.22; }
.gtm-accent            { width: 220px; height: 220px; top: -50px; right: -50px; background: rgba(201, 162, 39, 0.45); }
.revenue-accent        { width: 180px; height: 180px; top: -40px; right: -40px; background: rgba(56, 189, 248, 0.45); }
.accountability-accent { width: 180px; height: 180px; top: -40px; right: -40px; background: rgba(201, 162, 39, 0.45); }
.investor-accent       { width: 180px; height: 180px; top: -40px; right: -40px; background: rgba(167, 139, 250, 0.45); }
.ecosystem-accent      { width: 200px; height: 200px; top: -45px; right: -45px; background: rgba(201, 162, 39, 0.45); }

/* ── Card number tag ── */
.bento-tag {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.2);
  border-radius: 100px; padding: 3px 10px; width: fit-content;
}

/* ── Icon ── */
.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 8px;
  transition: all 0.4s ease;
}
.bento-card:hover .bento-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* ── Text ── */
.bento-card h3 {
  font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700;
  color: var(--white); line-height: 1.3; margin: 0;
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65;
  flex: 1; margin: 0;
}

/* ── Bottom pill label ── */
.bento-pill {
  margin-top: auto; width: fit-content;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  animation: ecoPulse 3s ease-in-out infinite;
}

/* ── 100-Day counter decoration ── */
.bento-days-counter {
  margin-top: auto; display: flex; align-items: baseline; gap: 6px;
}
.days-num {
  font-family: var(--font-serif); font-size: 4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.days-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ── Ecosystem dots ── */
.bento-ecosystem-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
.eco-dot {
  display: inline-flex;
  font-size: 0.72rem; font-weight: 600; text-align: center;
  background: rgba(201,162,39,0.06); border: 1px solid rgba(201,162,39,0.15);
  color: var(--gold-light); padding: 5px 12px; border-radius: 100px;
  animation: ecoPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--d) * 0.4s);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bento-card:hover .eco-dot {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.35);
}
@keyframes ecoPulse {
  0%, 100% {
    background: rgba(201, 162, 39, 0.06);
    border-color: rgba(201, 162, 39, 0.15);
    box-shadow: 0 0 0 rgba(201, 162, 39, 0);
  }
  50% {
    background: rgba(201, 162, 39, 0.16);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
  }
}

/* ═══════════════════════════════════════════════════
   ELIGIBILITY
═══════════════════════════════════════════════════ */
.eligibility { padding: var(--section-pad) 24px; }
.eligibility-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start;
}
.eligibility-main .section-headline { margin-bottom: 36px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem; color: var(--navy); line-height: 1.5;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.eligibility-aside { display: flex; flex-direction: column; gap: 20px; }
.not-right-card {
  background: var(--cream-dark); border: 1px solid var(--cream-dark);
  border-left: 3px solid #94a3b8; border-radius: var(--radius-md);
  padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start;
  margin-top: 32px;
}
.not-right-icon { font-size: 1.2rem; flex-shrink: 0; }
.not-right-card p { font-size: 0.875rem; color: #64748b; line-height: 1.65; font-style: italic; }
.sectors-card-large {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.sectors-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.sectors-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.sector-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  background: #fdfcf9;
  transition: all var(--transition);
}
.sector-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.sector-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(201,162,39,0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.sector-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.sector-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease;
  margin-top: 0;
}
.sector-details ul {
  list-style: none;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sector-details li {
  font-size: 0.85rem;
  color: #4a5568;
  position: relative;
  text-align: left;
}
.sector-details li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: -14px;
}

/* Hover reveal effect */
.sector-item:hover {
  border-color: var(--border-gold);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(201,162,39,0.08);
}
.sector-item:hover .sector-icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.sector-item:hover .sector-details {
  max-height: 250px;
  margin-top: 14px;
}

/* ═══════════════════════════════════════════════════
   PROGRAM TIMELINE
═══════════════════════════════════════════════════ */
.program { padding: var(--section-pad) 24px; }
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative; align-items: stretch;
}
.timeline-line {
  display: none;
}
.phase-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 20px; position: relative; z-index: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: default;
}
.phase-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.phase-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.15), 0 4px 20px rgba(201,162,39,0.3);
}
.phase-weeks {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.phase-name {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.phase-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   APPLY CTA
═══════════════════════════════════════════════════ */
.apply-cta { padding: 100px 24px; text-align: center; }
.cta-content { max-width: 620px; margin: 0 auto; }
.cta-headline {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.15;
}
.cta-sub { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; }
.cta-footnote {
  margin-top: 24px; font-size: 0.82rem; color: var(--text-muted);
}
.cta-footnote a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
.cta-footnote a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq { padding: var(--section-pad) 24px; }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; gap: 16px;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-chevron { font-size: 0.7rem; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 4px 22px; font-size: 0.93rem; color: #4a5568; line-height: 1.75; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border-dark);
  padding: 64px 24px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { height: 32px; width: auto; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.footer-links-col a {
  font-size: 0.875rem; color: var(--text-muted); text-decoration: none;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold-glow); border-color: var(--border-gold); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding-top: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-partners-row {
  display: flex; align-items: center; gap: 28px;
}
.footer-partner-logo {
  height: 28px; width: auto; opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-partner-logo:hover { opacity: 0.7; }
.footer-copy {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase; text-align: center;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-text { max-width: 100%; }
  .gap-card { max-width: 480px; }
  .eligibility-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }

  /* 2-column bento grid for tablets */
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-card--gtm, .bento-card--revenue, .bento-card--accountability, .bento-card--investor {
    grid-column: auto;
    grid-row: auto;
  }
  .bento-card--ecosystem {
    grid-column: 1 / 3;
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .mobile-only-cta {
    display: block !important;
    width: 100%;
    margin-top: 16px;
  }
  .mobile-only-cta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
    position: fixed; top: 88px; left: 16px; right: 16px;
    background: rgba(10, 15, 30, 0.98); backdrop-filter: blur(20px);
    padding: 24px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px;
    z-index: 999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }
  .nav-links.mobile-open a { font-size: 1rem; padding: 8px 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-bar .container { gap: 0; }
  .stat-item { padding: 8px 20px; }
  .stat-divider { display: none; }

  .hero-partners {
    flex-direction: column;
    gap: 16px;
  }
  .partners-logos {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .partner-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
  }

  /* 1-column bento grid for mobile */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--gtm, .bento-card--revenue, .bento-card--accountability, .bento-card--investor, .bento-card--ecosystem {
    grid-column: auto;
    grid-row: auto;
  }
  .bento-card--ecosystem {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bento-ecosystem-dots {
    grid-template-columns: 1fr 1fr;
  }

  .timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-line { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .timeline { grid-template-columns: 1fr; }
  .bento-ecosystem-dots { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   LENIS SMOOTH SCROLL RECOMMENDATIONS
═══════════════════════════════════════════════════ */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════════════════ */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
  z-index: 1001; /* Above navbar (1000) */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  transform: translateY(12px);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
}
.scroll-to-top svg {
  transition: transform 0.3s ease;
}
.scroll-to-top:hover svg {
  transform: translateY(-2px);
}


