/* ============================================================
   FORGE AI RESIDENCY — Static Site Stylesheet
   Ultra-light, SEO-optimized, performance-first
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #141414;
  background: #f5f2ed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.1; }

/* ---------- VARIABLES ---------- */
:root {
  --primary: #3B82F6;
  --primary-light: rgba(59, 130, 246, 0.1);
  --primary-glow: rgba(59, 130, 246, 0.3);
  --bg: #f5f2ed;
  --bg-card: #ece8e1;
  --fg: #141414;
  --fg-muted: #536078;
  --dark-bg: #0A0A0A;
  --dark-fg: #f5f5f5;
  --dark-muted: rgba(255,255,255,0.55);
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --emerald: #10B981;
  --red: #EF4444;
  --radius: 16px;
  --container: 1280px;
}

/* ---------- UTILITY CLASSES ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 80px; } }
.text-primary { color: var(--primary); }
.text-serif-italic { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 700; }
.text-light { color: var(--dark-fg); }
.text-muted-light { color: var(--dark-muted); }
.text-dark { color: var(--fg); }

/* ---------- NOISE OVERLAY ---------- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: 9999px; padding: 14px 32px;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s; text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #2563EB; }
.btn-glow:hover { box-shadow: 0 0 30px var(--primary-glow); transform: translateY(-1px); }
.btn-full { width: 100%; display: block; }
.btn-large { padding: 18px 40px; min-width: 280px; }
@media (max-width: 639px) { .btn-large { width: 100%; min-width: 0; } }

/* ---------- SECTION BASICS ---------- */
.section { position: relative; overflow: hidden; }
.section-light { background: var(--bg); }
.section-light .container { padding-top: 32px; padding-bottom: 32px; }
@media (min-width: 768px) { .section-light .container { padding-top: 96px; padding-bottom: 96px; } }
.section-dark { background: var(--dark-bg); position: relative; --fg: var(--dark-fg); --fg-muted: #9ca3af; }
.section-dark .container { padding-top: 32px; padding-bottom: 32px; }
@media (min-width: 768px) { .section-dark .container { padding-top: 96px; padding-bottom: 96px; } }
.dark-border-top, .dark-border-bottom {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}
.dark-border-top { top: 0; }
.dark-border-bottom { bottom: 0; }

.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 400;
  text-align: center; margin-bottom: 16px;
}
.section-heading {
  font-size: 36px; tracking: -0.025em; letter-spacing: -0.025em;
  text-align: center; margin-bottom: 16px; color: var(--fg);
}
@media (min-width: 768px) { .section-heading { font-size: 56px; } }
.section-text { font-size: 16px; color: var(--fg-muted); max-width: 560px; margin: 0 auto 48px; text-align: center; line-height: 1.7; }
.section-text-sm { font-size: 14px; color: var(--fg-muted); text-align: center; margin-bottom: 48px; }
.section-cta { text-align: center; margin-top: 48px; }
.section-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -25%);
  width: 600px; height: 400px; border-radius: 50%; background: var(--primary-light);
  filter: blur(100px); pointer-events: none;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Staggered children animation */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 40; }
.navbar-desktop { display: none; }
@media (min-width: 768px) {
  .navbar-desktop {
    display: flex; max-width: var(--container); margin: 0 auto;
    padding: 0 24px; align-items: center; justify-content: center; height: 64px;
  }
}
@media (min-width: 1024px) { .navbar-desktop { padding: 0 80px; } }
.navbar-pill {
  display: flex; align-items: center; gap: 24px; border-radius: 9999px;
  padding: 10px 20px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.navbar.scrolled .navbar-pill {
  background: rgba(245,243,239,0.92); border-color: rgba(0,0,0,0.06);
}
.navbar-logo { height: 20px; width: auto; margin-right: 8px; }
.navbar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.navbar.scrolled .navbar-divider { background: rgba(0,0,0,0.1); }
.navbar-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.navbar-link:hover { color: #fff; }
.navbar.scrolled .navbar-link { color: rgba(20,20,20,0.7); }
.navbar.scrolled .navbar-link:hover { color: var(--fg); }

/* Mobile Nav */
.navbar-mobile {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 56px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
@media (min-width: 768px) { .navbar-mobile { display: none; } }
.navbar.scrolled .navbar-mobile {
  background: rgba(245,243,239,0.95); border-bottom-color: rgba(0,0,0,0.06);
}
.navbar-hamburger { padding: 8px; margin-right: -8px; color: #fff; }
.navbar.scrolled .navbar-hamburger { color: var(--fg); }
.navbar-hamburger.text-dark { color: var(--fg); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 50; background: var(--bg);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 56px; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; gap: 32px; }
.mobile-menu-link { font-size: 24px; font-weight: 700; color: var(--fg); }
.mobile-menu-cta { padding: 0 24px 32px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(59,130,246,0.15), transparent 70%),
              radial-gradient(ellipse 60% 50% at 30% 60%, rgba(99,102,241,0.08), transparent 60%),
              radial-gradient(ellipse 50% 40% at 70% 30%, rgba(59,130,246,0.06), transparent 50%),
              #080810;
}
.hero-video-wrap {
  position: absolute; inset: 0; will-change: transform;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.1); object-position: 50% 30%;
  -webkit-transform: scale(1.1) translateZ(0); transform: scale(1.1) translateZ(0);
  transition: opacity 1.2s ease-out;
}
.hero-video.loaded { opacity: 0.9; }
@media (min-width: 768px) { .hero-video { object-position: center; } }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, hsla(217,91%,60%,0.12), transparent 70%);
  animation: float 12s ease-in-out infinite; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10; text-align: center; max-width: 720px; padding: 80px 24px 0;
}
.hero-logo { height: 56px; width: auto; margin: 0 auto 32px; }
@media (min-width: 768px) { .hero-logo { height: 80px; } }
.hero-heading { font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; color: #F2EEE8; }
.hero-heading-line { display: block; font-size: 48px; }
@media (min-width: 768px) { .hero-heading-line { font-size: 80px; } }
.hero-subheading {
  margin-top: 24px; font-size: 14px; letter-spacing: 0.02em; line-height: 1.7;
  max-width: 540px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.9);
}
@media (min-width: 768px) { .hero-subheading { font-size: 17px; } }
.hero-cta { margin-top: 32px; }
.hero-small-text {
  margin-top: 12px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   LOGO STRIP / MARQUEE
   ============================================================ */
.logo-strip { padding: 32px 0; background: var(--bg); overflow: hidden; }
.logo-strip-label {
  text-align: center; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 20px; color: var(--fg); font-weight: 800;
}
@media (min-width: 768px) { .logo-strip-label { font-size: 12px; } }
.marquee-container { display: flex; flex-direction: column; gap: 12px; }
.marquee-row { position: relative; width: 100%; overflow: hidden; }
.marquee-row::before, .marquee-row::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 48px; z-index: 1;
}
.marquee-row::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-row::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track {
  display: flex; width: max-content; animation: marquee 35s linear infinite;
}
.marquee-reverse { animation: marquee-reverse 35s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 8px; margin: 0 20px; flex-shrink: 0;
}
.marquee-item img { height: 28px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .marquee-item img { height: 24px; } }
.marquee-item span { font-size: 12px; font-weight: 500; color: rgba(20,20,20,0.7); white-space: nowrap; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-reverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ============================================================
   WHAT IS FORGE
   ============================================================ */
.what-is-heading { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.what-is-title-line {
  font-size: 72px; font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; color: var(--fg);
}
@media (min-width: 768px) { .what-is-title-line { font-size: 96px; } }
.what-is-title-row { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .what-is-title-row { gap: 20px; } }
.what-is-logo { height: 86px; }
@media (min-width: 768px) { .what-is-logo { height: 132px; } }
.what-is-description {
  font-size: 16px; line-height: 1.2; text-align: center; max-width: 640px;
  margin: 0 auto 40px; color: var(--fg-muted);
}
@media (min-width: 768px) { .what-is-description { font-size: 17px; } }
.group-photo {
  max-width: 900px; margin: 0 auto 32px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.group-photo img { width: 100%; height: auto; object-fit: cover; }
.stat-boxes { display: flex; align-items: center; justify-content: center; gap: 12px; }
@media (min-width: 768px) { .stat-boxes { gap: 16px; } }
.stat-box {
  background: var(--primary); border-radius: 12px; padding: 16px; text-align: center;
  min-width: 100px;
}
@media (min-width: 768px) { .stat-box { padding: 24px; min-width: 130px; } }
.stat-value { color: #fff; font-weight: 700; font-size: 28px; line-height: 1; }
@media (min-width: 768px) { .stat-value { font-size: 36px; } }
.stat-label {
  color: rgba(255,255,255,0.8); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.15em; margin-top: 4px; font-weight: 600;
}
@media (min-width: 768px) { .stat-label { font-size: 12px; } }
.stat-divider { color: rgba(20,20,20,0.3); font-size: 18px; font-weight: 300; }
@media (min-width: 768px) { .stat-divider { font-size: 22px; } }

/* ============================================================
   WHY AI NOW — DOT GRID
   ============================================================ */
.dot-grid-section { margin-bottom: 16px; }
.dot-grid-title { text-align: center; font-weight: 700; font-size: 20px; color: var(--dark-fg); margin-bottom: 4px; }
@media (min-width: 768px) { .dot-grid-title { font-size: 26px; } }
.dot-grid-subtitle {
  text-align: center; font-size: 13px; margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace; color: #fff;
}
.dot-grid {
  display: grid; grid-template-columns: repeat(40, 1fr); gap: 2px;
  max-width: 520px; margin: 0 auto;
}
.dot { aspect-ratio: 1; border-radius: 1.5px; opacity: 0; animation: dot-fade-in 0.3s ease-out forwards; }
@keyframes dot-fade-in { to { opacity: 1; } }
.dot-grey { background: rgba(255,255,255,0.15); }
.dot-green { background: rgba(16,185,129,0.8); }
.dot-amber { background: rgba(59,130,246,0.7); }
.dot-red { background: rgba(239,68,68,0.8); }
.dot-legend {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
  margin-top: 20px; font-size: 11px;
}
@media (min-width: 768px) { .dot-legend { font-size: 12px; } }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 2px; display: inline-block; flex-shrink: 0; }
.legend-text { color: var(--dark-muted); }
.legend-text strong { color: var(--dark-fg); font-weight: 600; }
.dot-conclusion {
  text-align: center; font-size: 22px; color: var(--dark-muted); margin-top: 40px;
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.4; font-weight: 500;
}
@media (min-width: 768px) { .dot-conclusion { font-size: 28px; } }
.dot-conclusion strong { color: var(--dark-fg); font-weight: 700; }

/* ============================================================
   WHO IS FOR — PERSONAS
   ============================================================ */
.personas-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 960px; margin: 0 auto;
}
@media (min-width: 768px) { .personas-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.persona-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; cursor: default;
}
.persona-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
@media (hover: hover) { .persona-card:hover img { transform: scale(1.05); } }
.persona-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 50%, transparent);
}
.persona-content {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  justify-content: flex-end; height: 100%; padding: 20px;
}
@media (min-width: 768px) { .persona-content { padding: 24px; } }
.persona-title { font-weight: 700; color: #fff; font-size: 18px; letter-spacing: -0.01em; }
@media (min-width: 768px) { .persona-title { font-size: 20px; } }
.persona-desc { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 6px; line-height: 1.6; max-width: 400px; }
@media (min-width: 768px) { .persona-desc { font-size: 15px; } }

/* ============================================================
   VENN DIAGRAM / ETHOS
   ============================================================ */
.venn-container { display: flex; justify-content: center; margin-bottom: 16px; }
.venn-desktop { display: none; }
.venn-mobile { display: block; }
@media (min-width: 768px) { .venn-desktop { display: block; } .venn-mobile { display: none; } }
/* Venn circle + label animations */
.venn-circle { opacity: 0; transform-origin: center; transform: scale(0.6); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.venn-circle:nth-child(1) { transition-delay: 0s; }
.venn-circle:nth-child(2) { transition-delay: 0.4s; }
.venn-circle:nth-child(3) { transition-delay: 0.8s; }
.venn-glow-circle { opacity: 0; transition: opacity 1s ease-out 1.2s; }
.venn-center-group { opacity: 0; transform-origin: center; transform: scale(0.7); transition: opacity 0.7s ease-out 1.4s, transform 0.7s ease-out 1.4s; }
.venn-label-anim { opacity: 0; transition: opacity 0.5s ease-out; }
.venn-label-anim:nth-of-type(1) { transition-delay: 0.3s; }
.venn-label-anim:nth-of-type(2) { transition-delay: 0.7s; }
.venn-label-anim:nth-of-type(3) { transition-delay: 1.1s; }
.venn-animated .venn-circle,
.venn-animated .venn-glow-circle,
.venn-animated .venn-center-group,
.venn-animated .venn-label-anim { opacity: 1; transform: scale(1); }
.venn-label { fill: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-family: 'DM Sans', sans-serif; }
.venn-label-sm { font-size: 10px; letter-spacing: 0.14em; }
.venn-center-the { fill: rgba(255,255,255,0.55); font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.venn-center-forge { fill: var(--primary); font-size: 26px; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; }
.venn-center-the-sm { fill: rgba(255,255,255,0.55); font-size: 11px; font-weight: 500; font-family: 'DM Sans', sans-serif; }
.venn-center-forge-sm { fill: var(--primary); font-size: 20px; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; }
.ethos-cards { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 48px auto 0; width: 100%; }
@media (min-width: 768px) { .ethos-cards { grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-top: 64px; } }
.ethos-card { text-align: center; }
.ethos-card-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 24px; color: var(--dark-fg); font-weight: 700; margin-bottom: 12px; }
@media (min-width: 768px) { .ethos-card-title { font-size: 28px; } }
.ethos-card-desc { font-size: 14px; color: var(--dark-muted); line-height: 1.8; }
@media (min-width: 768px) { .ethos-card-desc { font-size: 15px; } }

/* ============================================================
   PILLARS
   ============================================================ */
.pillar-tabs-mobile { display: flex; gap: 8px; margin-bottom: 20px; }
@media (min-width: 768px) { .pillar-tabs-mobile { display: none; } }
.pillar-tab {
  flex: 1; padding: 10px 8px; border-radius: 9999px; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; transition: all 0.3s;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-weight: 500;
}
.pillar-tab.active { background: var(--primary); color: #fff; }

.pillar-panel { display: none; }
.pillar-panel.active { display: block; }
@media (min-width: 768px) {
  .pillar-panel { display: none; position: relative; border-radius: var(--radius); overflow: hidden; height: 600px; }
  .pillar-panel.active { display: flex; }
}

.pillar-image-wrap { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 24px; }
@media (min-width: 768px) {
  .pillar-image-wrap { position: absolute; inset: 0; aspect-ratio: auto; margin-bottom: 0; border-radius: 0; }
  .pillar-image-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.25) 100%);
  }
}
.pillar-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pillar-content { text-align: center; }
@media (min-width: 768px) {
  .pillar-content {
    position: relative; z-index: 1; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 48px; max-width: 60%; text-align: left;
    height: 100%;
  }
}
.pillar-tag {
  display: inline-block; color: var(--primary); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 8px; font-size: 14px; font-weight: 600;
}
@media (min-width: 768px) {
  .pillar-tag {
    background: var(--primary); color: #fff; font-size: 12px; padding: 6px 14px;
    border-radius: 6px; margin-bottom: 16px; display: inline-block;
  }
}
.pillar-title { font-weight: 700; font-size: 30px; line-height: 1.1; margin-bottom: 12px; color: var(--dark-fg); }
@media (min-width: 768px) { .pillar-title { font-size: 56px; color: #fff; margin-bottom: 16px; } }
.pillar-desc { font-size: 14px; line-height: 1.65; max-width: 340px; margin: 0 auto 20px; color: var(--dark-muted); }
@media (min-width: 768px) { .pillar-desc { font-size: 16px; line-height: 1.7; max-width: 480px; margin: 0 0 24px; color: rgba(255,255,255,0.65); } }

.pillar-tools { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
@media (min-width: 768px) { .pillar-tools { justify-content: flex-start; margin-bottom: 24px; } }
.tool-logo {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 6px;
}
@media (min-width: 768px) { .tool-logo { width: 40px; height: 40px; } }
.tool-overlap { margin-left: -6px; }
.tool-logo { transition: transform 0.2s; }
@media (hover: hover) { .tool-logo:hover { transform: scale(1.1); z-index: 2; } }
.tool-logo img { width: 100%; height: 100%; object-fit: contain; }
.pillar-builds { text-align: left; max-width: 320px; margin: 0 auto; }
@media (min-width: 768px) { .pillar-builds { max-width: none; margin: 0; } }
.pillar-builds strong { font-size: 13px; color: var(--dark-fg); display: block; margin-bottom: 8px; }
@media (min-width: 768px) { .pillar-builds strong { font-size: 14px; color: #fff; } }
.pillar-builds p { font-size: 13px; line-height: 1.6; color: var(--dark-muted); margin-bottom: 4px; }
@media (min-width: 768px) { .pillar-builds p { font-size: 14px; color: rgba(255,255,255,0.7); } }

.pillar-progress { height: 2px; background: rgba(255,255,255,0.1); border-radius: 9999px; overflow: hidden; margin-top: 20px; }
@media (min-width: 768px) { .pillar-progress { position: absolute; bottom: 0; left: 0; right: 0; margin-top: 0; border-radius: 0; } }
.pillar-progress-bar { height: 100%; background: var(--primary); width: 0; }
.pillar-panel.active .pillar-progress-bar { animation: pillar-progress 5s linear forwards; }
@keyframes pillar-progress { from { width: 0; } to { width: 100%; } }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes-hero { display: flex; flex-direction: column; gap: 40px; margin-bottom: 56px; }
@media (min-width: 768px) { .outcomes-hero { gap: 64px; margin-bottom: 80px; } }
.outcome-row { display: flex; flex-direction: column; gap: 24px; align-items: center; }
@media (min-width: 768px) { .outcome-row { flex-direction: row; gap: 40px; } }
.outcome-row-reverse { }
@media (min-width: 768px) { .outcome-row-reverse { flex-direction: row-reverse; } }
.outcome-image { width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
@media (min-width: 768px) { .outcome-image { width: 55%; flex-shrink: 0; } }
.outcome-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.outcome-text { width: 100%; text-align: center; }
@media (min-width: 768px) { .outcome-text { width: 45%; text-align: left; } }
.outcome-meta { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.outcome-icon {
  width: 36px; height: 36px; border-radius: 12px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
}
.outcome-num {
  color: var(--primary); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 600;
}
.outcome-title { font-size: 28px; line-height: 1.1; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 16px; }
@media (min-width: 768px) { .outcome-title { font-size: 40px; } }
.outcome-desc { color: var(--fg-muted); font-size: 15px; line-height: 1.7; max-width: 400px; }
@media (min-width: 768px) { .outcome-desc { font-size: 17px; } }
@media (max-width: 767px) { .outcome-desc { margin: 0 auto; } }

.outcomes-compact { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .outcomes-compact { grid-template-columns: 1fr 1fr 1fr; } }
.outcome-compact-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.outcome-compact-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.outcome-compact-card:hover img { transform: scale(1.05); }
.outcome-compact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3) 50%, transparent);
}
.outcome-compact-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
@media (min-width: 768px) { .outcome-compact-content { padding: 24px; } }
.outcome-compact-title { font-weight: 700; color: #fff; font-size: 18px; margin-bottom: 6px; }
@media (min-width: 768px) { .outcome-compact-title { font-size: 20px; } }
.outcome-compact-desc { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }

/* (Experience section removed — not rendered in Index.tsx)
/* (OnlinePrep & Contrast sections removed — not rendered in Index.tsx) */

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule-hero {
  max-width: 780px; margin: 0 auto 32px; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); aspect-ratio: 16/10;
}
@media (min-width: 768px) { .schedule-hero { margin-bottom: 48px; aspect-ratio: 16/9; } }
.schedule-hero img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s; }
.schedule-accordion { max-width: 780px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left;
}
@media (min-width: 768px) { .accordion-trigger { padding: 24px 0; } }
.accordion-left { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .accordion-left { gap: 16px; } }
.accordion-label {
  font-size: 11px; letter-spacing: 0.08em; color: var(--primary); flex-shrink: 0;
  width: 90px; font-family: 'DM Sans', sans-serif;
}
@media (min-width: 768px) { .accordion-label { width: 120px; } }
.accordion-title { font-weight: 700; font-size: 16px; color: var(--fg-muted); transition: color 0.2s; }
@media (min-width: 768px) { .accordion-title { font-size: 18px; } }
.accordion-item.active .accordion-title { color: var(--fg); }
.accordion-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); color: var(--fg-muted); transition: all 0.2s;
}
.accordion-item.active .accordion-icon { background: var(--primary); color: #fff; }
.accordion-body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.35s ease-out, opacity 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 0 0 0;
}
@media (min-width: 768px) { .accordion-body { padding-left: 136px; } }
.accordion-item.active .accordion-body {
  max-height: 400px; opacity: 1; padding-bottom: 24px;
}
@media (min-width: 768px) { .accordion-item.active .accordion-body { padding-left: 136px; } }
.accordion-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.7; max-width: 520px; }
.accordion-outcome { margin-top: 16px; font-size: 14px; }
.accordion-outcome .text-primary { font-weight: 500; }

/* ============================================================
   MENTORS
   ============================================================ */
.mentors-carousel { max-width: 480px; margin: 0 auto; position: relative; overflow: hidden; }
.mentors-track { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1); will-change: transform; }
.mentor-card {
  flex-shrink: 0; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.mentor-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mentor-info { padding: 20px; }
.mentor-name { font-weight: 700; font-size: 17px; color: var(--fg); text-align: center; }
.mentor-role {
  font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 4px; text-align: center;
}
.mentor-bullets { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mentor-bullets li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 13px;
  color: var(--fg-muted); line-height: 1.4;
}
.mentor-bullets li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--primary);
  flex-shrink: 0; margin-top: 6px;
}
.mentor-linkedin {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px;
  color: var(--primary); font-weight: 500; margin-top: 16px;
  justify-content: center; width: 100%;
}
.mentor-linkedin:hover { text-decoration: underline; }

.mentor-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.mentor-prev, .mentor-next {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--fg-muted);
  transition: all 0.2s; background: var(--bg);
}
.mentor-prev:hover, .mentor-next:hover { border-color: var(--primary); color: var(--primary); }
.mentor-dots { display: flex; gap: 8px; }
.mentor-dot {
  width: 8px; height: 8px; border-radius: 9999px; background: rgba(83,96,120,0.3);
  transition: all 0.3s;
}
.mentor-dot.active { background: var(--primary); width: 24px; }

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-underline { position: relative; display: inline-block; }
.community-underline::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 6px;
  background: rgba(59,130,246,0.4); border-radius: 9999px; transform: translateY(-4px); z-index: -1;
}
.community-marquee { position: relative; overflow: hidden; width: 100vw; margin-left: calc(-50vw + 50%); }
.community-marquee-track {
  display: flex; width: max-content;
  animation: marquee 40s linear infinite;
}
.community-marquee-track:hover { animation-play-state: paused; }
.community-card {
  flex-shrink: 0; width: 220px; aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden; position: relative; margin: 0 8px;
}
@media (min-width: 768px) { .community-card { width: 280px; } }
.community-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.community-card:hover img { transform: scale(1.05); }
.community-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2) 50%, transparent);
}
.community-card-label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: #fff; font-weight: 600; font-size: 15px; line-height: 1.3;
}
@media (min-width: 768px) { .community-card-label { font-size: 17px; } }

/* ============================================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================================ */
.testimonial-carousel { max-width: 640px; margin: 0 auto; }
.testimonial-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.testimonial-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--primary), rgba(59,130,246,0.6), transparent);
}
.testimonial-body { padding: 32px; }
@media (min-width: 768px) { .testimonial-body { padding: 40px; } }
.testimonial-quote {
  font-family: 'Playfair Display', serif; font-style: italic; color: rgba(59,130,246,0.2);
  font-size: 80px; line-height: 1; display: block; margin-bottom: -24px; user-select: none;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 100px; margin-bottom: -32px; } }
.testimonial-text { font-size: 17px; color: var(--fg); font-weight: 500; line-height: 1.7; margin-bottom: 32px; }
@media (min-width: 768px) { .testimonial-text { font-size: 20px; } }
.testimonial-attribution { border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-name { font-weight: 600; color: var(--fg); font-size: 16px; }
.testimonial-role { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.testimonial-location { font-size: 12px; color: rgba(83,96,120,0.7); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 9999px; background: var(--border);
  transition: all 0.3s; cursor: pointer; border: none;
}
.testimonial-dot.active { background: var(--primary); width: 24px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-stack { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.pricing-location {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.pricing-location img { width: 100%; height: 100%; object-fit: cover; }
.pricing-location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2) 50%, transparent);
}
.pricing-badge {
  position: absolute; top: 16px; right: 16px; background: var(--primary); color: #fff;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
  padding: 6px 12px; border-radius: 9999px;
}
.pricing-location-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.pricing-city { color: #fff; font-weight: 700; font-size: 36px; line-height: 1; letter-spacing: -0.02em; }
@media (min-width: 768px) { .pricing-city { font-size: 48px; } }

.pricing-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-date-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; text-align: center;
}
.pricing-date-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
  padding: 4px 12px; border-radius: 9999px; margin-bottom: 8px;
}
.pricing-date-duration { font-weight: 700; color: var(--fg); font-size: 18px; }
.pricing-date-range { font-size: 13px; color: var(--fg-muted); }

.pricing-price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pricing-fee-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); font-weight: 600; }
.pricing-amount { font-weight: 700; font-size: 36px; color: var(--fg); line-height: 1; }
@media (min-width: 768px) { .pricing-amount { font-size: 44px; } }
.pricing-per-person { font-size: 14px; color: var(--fg-muted); margin-top: 4px; margin-bottom: 24px; }
.pricing-cohort-note { font-size: 13px; color: rgba(83,96,120,0.5); text-align: center; margin-top: 16px; }

.pricing-includes-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pricing-toggle { display: flex; gap: 8px; margin-bottom: 24px; }
.pricing-toggle-btn {
  flex: 1; padding: 10px 16px; border-radius: 9999px; font-size: 14px; font-weight: 600;
  transition: all 0.3s; background: var(--bg-card); color: var(--fg-muted);
}
.pricing-toggle-btn:hover { background: rgba(0,0,0,0.04); }
.pricing-toggle-btn.active[data-tab="inclusions"] { background: var(--emerald); color: #fff; box-shadow: 0 4px 12px rgba(16,185,129,0.2); }
.pricing-toggle-btn.active[data-tab="exclusions"] { background: var(--red); color: #fff; box-shadow: 0 4px 12px rgba(239,68,68,0.2); }
.pricing-list p { font-size: 15px; color: var(--fg); line-height: 2.1; }
.check-green { color: var(--emerald); margin-right: 8px; }
.cross-red { color: var(--red); margin-right: 8px; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; text-align: left; gap: 16px;
}
.faq-trigger span:first-child { font-weight: 600; font-size: 16px; color: var(--fg); }
.faq-icon { flex-shrink: 0; color: var(--primary); transition: transform 0.2s; }
.faq-body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-item.open .faq-body { max-height: 200px; opacity: 1; }
.faq-body p { padding-bottom: 20px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-final-cta {
  position: relative; overflow: hidden; padding: 6px 0; background: var(--dark-bg); text-align: center;
  --fg: var(--dark-fg); --fg-muted: var(--dark-muted); color: var(--dark-fg);
}
@media (min-width: 768px) { .section-final-cta { padding: 120px 0; } }
.final-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 400px; border-radius: 50%; background: rgba(59,130,246,0.06);
  filter: blur(100px); pointer-events: none;
}
.final-cta-sub { font-size: 17px; color: var(--dark-muted); max-width: 460px; margin: 16px auto 0; line-height: 1.7; }
.section-final-cta .btn { margin-top: 32px; }
.final-cta-note { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-bg); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0; }
@media (min-width: 768px) { .footer { padding: 80px 0; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.footer-logo-levelup { height: 24px; margin-bottom: 16px; }
.footer-logo-forge { height: 40px; margin-top: 12px; }
@media (min-width: 768px) { .footer-logo-forge { height: 48px; } }
.footer-tagline { color: #fff; font-size: 15px; font-weight: 500; margin-top: 4px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 12px; max-width: 360px; line-height: 1.7; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col-title {
  color: rgba(255,255,255,0.4); font-size: 11px; text-transform: uppercase;
  font-weight: 600; letter-spacing: 0.15em; margin-bottom: 16px;
}
.footer-links-grid nav { display: flex; flex-direction: column; gap: 10px; }
.footer-links-grid nav a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-links-grid nav a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 12px; }
.back-to-top {
  display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.4);
  font-size: 12px; transition: color 0.2s;
}
.back-to-top:hover { color: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  33% { transform: translate(calc(-50% + 30px), calc(-50% - 30px)) scale(1.05); }
  66% { transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.95); }
}
