/* Eden Wellness — Dark Luxe Biotech */

:root {
  /* Base palette — deep forest at dusk, warmed & lifted */
  --eden-void: #18211C;
  --eden-bg: #1F2A24;
  --eden-surface: #26342C;
  --eden-surface-2: #2D3D34;
  --eden-hairline: rgba(232, 224, 204, 0.11);
  --eden-hairline-strong: rgba(232, 224, 204, 0.22);

  /* Foreground — warm cream/stone */
  --eden-bone: #EDE5D2;
  --eden-bone-dim: #CFC6B0;
  --eden-muted: #8E8671;
  --eden-faint: #5A554A;

  /* Accents — earth & moss */
  --eden-moss: #8DA07A;       /* foliage */
  --eden-phosphor: #B5C89C;   /* soft leaf — no glow */
  --eden-amber: #C9A875;      /* warm sunlight */
  --eden-clay: #B08868;       /* red earth */

  /* Typography */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Scale */
  --container: 1360px;
}

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

html, body {
  background: var(--eden-bg);
  color: var(--eden-bone);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 100% 55% at 50% -10%, rgba(141, 160, 122, 0.18), transparent 70%),
    radial-gradient(ellipse 75% 45% at 100% 25%, rgba(201, 168, 117, 0.12), transparent 70%),
    radial-gradient(ellipse 65% 45% at 0% 65%, rgba(176, 136, 104, 0.09), transparent 70%),
    var(--eden-bg);
  min-height: 100vh;
  position: relative;
}

/* Film grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ───────── Typography ───────── */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eden-moss);
}

.eyebrow-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eden-amber);
  margin-right: 10px;
  vertical-align: middle;
  animation: pulse 3.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.italic-serif { font-family: var(--font-display); font-style: italic; }

/* ───────── Layout ───────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.hairline {
  height: 1px;
  background: var(--eden-hairline);
  width: 100%;
}

/* ───────── Buttons ───────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--eden-bone);
  color: var(--eden-bg);
}
.btn-primary:hover {
  background: var(--eden-amber);
  color: var(--eden-void);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--eden-bone);
  border: 1px solid var(--eden-hairline-strong);
}
.btn-ghost:hover {
  border-color: var(--eden-bone);
  background: rgba(232, 226, 213, 0.03);
}

.btn-arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: currentColor;
  color: inherit;
}
.btn-arrow svg { color: var(--eden-bg); }
.btn-ghost .btn-arrow { background: var(--eden-bone); }

/* ───────── Nav ───────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(11, 20, 16, 0.6);
  border-bottom: 1px solid var(--eden-hairline);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 13px;
  color: var(--eden-bone-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--eden-amber); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  position: relative;
  z-index: 102;
  background: transparent;
  border: 1px solid rgba(245, 240, 230, 0.18);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 220ms ease, background 220ms ease;
}
.nav-hamburger:hover {
  border-color: rgba(245, 240, 230, 0.4);
  background: rgba(245, 240, 230, 0.04);
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #EDE5D2;
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms ease, background 200ms ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────── Mobile inline accordion menu ───────
   Drops down from below the nav bar as a solid extension of it.
   No overlay, no modal — just the menu pushed inline below the nav.
   Hidden on desktop (≥901px); shown on mobile/tablet (≤900px).
*/
.nav-mobile-panel {
  display: none; /* shown via media query below */
  position: absolute;
  top: 100%; /* directly below the nav, regardless of nav height */
  left: 0;
  right: 0;
  background-color: #18211C; /* solid eden-void — no transparency */
  background-image:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(201, 168, 117, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(141, 160, 122, 0.06), transparent 70%);
  z-index: 99;
  border-bottom: 1px solid rgba(232, 224, 204, 0.12);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  /* Collapsed by default */
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-panel.is-open {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-inner {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
}

/* Close (X) button is hidden in accordion mode — the hamburger toggles itself */
.nav-mobile-close { display: none; }

.nav-mobile-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E8671;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232, 224, 204, 0.1);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #EDE5D2;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 224, 204, 0.08);
  text-transform: none;
  transition: color 200ms ease, padding-left 200ms ease;
}
.nav-mobile-links .nav-link::after {
  content: '→';
  font-size: 16px;
  opacity: 0.45;
  color: #C9A875;
  transition: opacity 200ms ease, transform 200ms ease;
}
.nav-mobile-links .nav-link:hover,
.nav-mobile-links .nav-link:active {
  color: #C9A875;
  padding-left: 6px;
}
.nav-mobile-links .nav-link:hover::after,
.nav-mobile-links .nav-link:active::after {
  opacity: 1;
  transform: translateX(4px);
}
.nav-mobile-panel .btn-primary {
  align-self: stretch;
  justify-content: center;
  margin-top: 18px;
  padding: 16px 22px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .nav-mobile-panel { display: block; }
  /* Hide the desktop CTA on mobile — replaced by panel CTA */
  .nav-cta-btn { display: none !important; }
  /* Lock body scroll when menu open so background doesn't drift */
  body.nav-menu-open { overflow: hidden; }
}

/* ───────── Hero ───────── */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-title {
  font-size: clamp(56px, 8vw, 120px);
  margin: 28px 0 24px;
  color: var(--eden-bone);
}
.hero-title em {
  font-style: italic;
  color: var(--eden-amber);
  font-family: var(--font-display);
}

.hero-lede {
  font-size: 18px;
  color: var(--eden-bone-dim);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px 22px; flex-wrap: wrap; align-items: center; }
.hero-cta-hint {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eden-bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.hero-cta-hint span[aria-hidden="true"] {
  display: inline-block;
  transform: translateY(0);
  animation: heroHintBob 1.8s ease-in-out infinite;
  color: var(--eden-amber);
  font-size: 13px;
}
@keyframes heroHintBob {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(3px); opacity: 1; }
}

.hero-meta {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--eden-hairline);
}
.hero-meta-item { flex: 1; }
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--eden-bone);
  line-height: 1;
}
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
  margin-top: 8px;
}

/* Hero visual — living panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2b22 0%, #0c1611 100%);
  border: 1px solid var(--eden-hairline);
}

.hero-visual-img {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(11,20,16,0) 0%, rgba(11,20,16,0.8) 100%);
}

.vital-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--eden-hairline-strong);
  border-bottom: 1px solid var(--eden-hairline-strong);
}
.vital {
  flex: 1;
  padding: 14px 16px;
  border-right: 1px solid var(--eden-hairline);
}
.vital:last-child { border-right: none; }
.vital-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
}
.vital-value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--eden-bone);
  margin-top: 4px;
}
.vital-value sup { font-size: 10px; color: var(--eden-phosphor); margin-left: 2px; font-family: var(--font-mono); }

/* ───────── Programs Rotator ───────── */

.programs {
  padding: 140px 0;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  gap: 48px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  max-width: 700px;
  letter-spacing: -0.02em;
}
.section-header h2 em { color: var(--eden-amber); font-style: italic; }

.section-header-aside {
  max-width: 320px;
  color: var(--eden-bone-dim);
  font-size: 15px;
  line-height: 1.6;
}

.program-viewer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--eden-hairline);
  background: var(--eden-surface);
  border-radius: 4px;
  overflow: hidden;
  min-height: 640px;
}

@media (max-width: 900px) {
  .program-viewer { grid-template-columns: 1fr; }
}

.program-list {
  border-right: 1px solid var(--eden-hairline);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .program-list { border-right: none; border-bottom: 1px solid var(--eden-hairline); flex-direction: row; overflow-x: auto; }
}

.program-list-item {
  padding: 22px 24px;
  border-bottom: 1px solid var(--eden-hairline);
  text-align: left;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  width: 100%;
}
.program-list-item:last-child { border-bottom: none; }
@media (max-width: 900px) {
  .program-list-item { min-width: 180px; border-bottom: none; border-right: 1px solid var(--eden-hairline); }
}

.program-list-item:hover { background: rgba(184,216,176,0.03); }
.program-list-item.active {
  background: var(--eden-surface-2);
  color: var(--eden-bone);
}
.program-list-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--eden-amber);
}

.program-list-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
}
.program-list-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--eden-bone);
  letter-spacing: -0.01em;
}

.program-detail {
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
}
@media (max-width: 1024px) {
  .program-detail { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
}

.program-content { display: flex; flex-direction: column; }
.program-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eden-amber);
  margin-bottom: 20px;
}
.program-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.program-title em { color: var(--eden-amber); font-style: italic; }
.program-desc {
  color: var(--eden-bone-dim);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.program-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.program-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--eden-bone-dim);
  padding-left: 0;
}
.program-pillars li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--eden-amber);
  margin-top: 10px;
  flex-shrink: 0;
}

.program-cta-row { margin-top: auto; display: flex; gap: 16px; align-items: center; }
.program-cta-link {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eden-amber);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.program-cta-link:hover { opacity: 0.7; }

.program-visual {
  position: relative;
  background: var(--eden-surface-2);
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  overflow: hidden;
  min-height: 400px;
}

/* ─── Mobile programs accordion ─────────────────────────── */
.program-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--eden-hairline);
  border-bottom: 1px solid var(--eden-hairline);
}
.program-acc-item {
  border-bottom: 1px solid var(--eden-hairline);
}
.program-acc-item:last-child { border-bottom: none; }
.program-acc-item.open {
  background: var(--eden-surface-2);
}
.program-acc-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: inherit;
  position: relative;
}
.program-acc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--eden-muted);
}
.program-acc-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--eden-bone);
  line-height: 1.2;
}
.program-acc-chevron {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--eden-amber);
  width: 28px;
  text-align: center;
  font-weight: 300;
  line-height: 1;
}
.program-acc-item.open .program-acc-name {
  color: var(--eden-amber);
}
.program-acc-body {
  padding: 8px 4px 32px;
  animation: accFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.program-acc-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  border: 1px solid var(--eden-hairline);
  margin-bottom: 12px;
}
.program-acc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--eden-bone);
  margin: 8px 0 16px;
}
.program-acc-title em { color: var(--eden-amber); font-style: italic; }
@keyframes accFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.program-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}

.metric-card {
  position: absolute;
  background: rgba(15, 29, 23, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 4px;
  padding: 14px 18px;
  min-width: 140px;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
  margin-bottom: 4px;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--eden-bone);
  line-height: 1;
}
.metric-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--eden-phosphor);
  margin-top: 4px;
}

/* ───────── Eden Process ───────── */

.process {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  padding: 40px 32px 40px 0;
  border-top: 1px solid var(--eden-hairline);
  position: relative;
}
.process-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--eden-amber);
  margin-bottom: 32px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.process-step-desc {
  color: var(--eden-bone-dim);
  font-size: 14px;
  line-height: 1.6;
}

/* ───────── Quiz ───────── */

.quiz-section {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
  background: linear-gradient(180deg, var(--eden-bg) 0%, var(--eden-surface) 100%);
}

.quiz-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .quiz-wrap { grid-template-columns: 1fr; gap: 40px; }
}

.quiz-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 24px;
}
.quiz-intro h2 em { color: var(--eden-amber); font-style: italic; }
.quiz-intro p { color: var(--eden-bone-dim); max-width: 420px; line-height: 1.6; }

.quiz-intro-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quiz-intro-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--eden-hairline);
  font-size: 14px;
  color: var(--eden-bone-dim);
}
.quiz-intro-list li:last-child { border-bottom: 1px solid var(--eden-hairline); }
.quiz-intro-list-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--eden-amber);
  letter-spacing: 0.14em;
  min-width: 28px;
  padding-top: 2px;
}

.quiz-card {
  background: var(--eden-surface-2);
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 6px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
@media (max-width: 600px) { .quiz-card { padding: 32px 24px; } }

.quiz-card-pulse {
  animation: quizCardPulse 1.6s ease-out 1;
}
@keyframes quizCardPulse {
  0% {
    border-color: var(--eden-amber);
    box-shadow: 0 0 0 0 rgba(201, 168, 117, 0.55), 0 0 0 1px var(--eden-amber);
  }
  60% {
    border-color: var(--eden-amber);
    box-shadow: 0 0 0 18px rgba(201, 168, 117, 0), 0 0 0 1px var(--eden-amber);
  }
  100% {
    border-color: var(--eden-hairline-strong);
    box-shadow: 0 0 0 0 rgba(201, 168, 117, 0), 0 0 0 0 transparent;
  }
}

.quiz-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
}
.quiz-progress-bar {
  flex: 1;
  height: 1px;
  background: var(--eden-hairline);
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.quiz-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--eden-amber);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quiz-section-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--eden-hairline);
}
.quiz-section-tag-num {
  color: var(--eden-amber);
  font-weight: 500;
}
.quiz-section-tag-name {
  color: var(--eden-bone-dim);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.quiz-sub {
  color: var(--eden-bone-dim);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.quiz-sub-multi {
  display: inline;
  margin-left: 2px;
  color: var(--eden-amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(11, 20, 16, 0.5);
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  transition: all 0.2s;
  text-align: left;
  color: var(--eden-bone);
  font-size: 15px;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--eden-moss);
  background: rgba(122, 143, 111, 0.06);
}
.quiz-option.selected {
  border-color: var(--eden-amber);
  background: rgba(201, 168, 117, 0.07);
  box-shadow: inset 0 0 0 1px var(--eden-amber);
}

.quiz-option-check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--eden-hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quiz-option.selected .quiz-option-check {
  background: var(--eden-amber);
  border-color: var(--eden-amber);
}
.quiz-option.selected .quiz-option-check svg { display: block; color: var(--eden-bg); }
.quiz-option-check svg { display: none; }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.quiz-result {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.quiz-result-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eden-amber);
  margin-bottom: 16px;
}
.quiz-result-title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.quiz-result-title em { color: var(--eden-amber); font-style: italic; }
.quiz-result-desc {
  color: var(--eden-bone-dim);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 32px;
}

/* Next-steps card on the qualified outcome screen */
.quiz-next-steps {
  margin: 8px 0 32px;
  padding: 28px 32px;
  background: var(--eden-bg);
  border: 1px solid var(--eden-hairline-strong);
  border-left: 2px solid var(--eden-phosphor);
  border-radius: 4px;
}
.quiz-next-steps-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eden-phosphor);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--eden-hairline);
}
.quiz-next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quiz-next-steps-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.quiz-next-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--eden-amber);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 22px;
}
.quiz-next-steps-list li > div {
  font-size: 14px;
  line-height: 1.65;
  color: var(--eden-bone-dim);
}
.quiz-next-steps-list li strong {
  color: var(--eden-bone);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.quiz-result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* Quiz input fields */
.quiz-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(11, 20, 16, 0.5);
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  color: var(--eden-bone);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: all 0.2s;
  resize: vertical;
  outline: none;
}
.quiz-input::placeholder { color: var(--eden-muted); }
.quiz-input:hover { border-color: var(--eden-moss); }
.quiz-input:focus {
  border-color: var(--eden-amber);
  background: rgba(201, 168, 117, 0.04);
  box-shadow: inset 0 0 0 1px var(--eden-amber);
}
textarea.quiz-input { min-height: 80px; font-family: var(--font-sans); }

/* ───────── Science ───────── */

.science {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) {
  .science-grid { grid-template-columns: 1fr; }
}

.science-card {
  background: var(--eden-surface);
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  padding: 36px 32px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 300px;
}
.science-card:hover { border-color: var(--eden-moss); }

.science-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eden-amber);
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.science-card p {
  color: var(--eden-bone-dim);
  font-size: 14px;
  line-height: 1.6;
}
.science-card-ref {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
  margin-top: auto;
}

.lab-strip {
  margin-top: 80px;
  padding: 32px 40px;
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--eden-surface);
}
.lab-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
}
.lab-strip-items {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--eden-bone);
}
.lab-strip-items span { opacity: 0.8; }

/* ───────── Team ───────── */

.team {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
}

.team-member {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.team-member.reverse { direction: rtl; }
.team-member.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .team-member, .team-member.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .team-list { gap: 80px; }
}

.team-photo {
  aspect-ratio: 4/5;
  background: var(--eden-surface-2);
  border: 1px solid var(--eden-hairline);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  max-width: 420px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eden-amber);
  margin-bottom: 14px;
}
.team-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.team-suffix {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--eden-muted);
  margin-bottom: 24px;
}
.team-quote {
  border-left: 1px solid var(--eden-amber);
  padding: 8px 0 8px 24px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--eden-bone);
  max-width: 560px;
}
.team-bio {
  color: var(--eden-bone-dim);
  line-height: 1.65;
  font-size: 15px;
  max-width: 560px;
}
.team-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.cred {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border: 1px solid var(--eden-hairline);
  border-radius: 999px;
  color: var(--eden-muted);
  text-transform: uppercase;
}

/* ───────── Testimonials ───────── */

.testimonials {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 40px 32px;
  border: 1px solid var(--eden-hairline);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--eden-surface);
  min-height: 360px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--eden-bone);
  letter-spacing: -0.01em;
  flex: 1;
}
.testimonial-quote::before { content: '“'; color: var(--eden-amber); margin-right: 2px; }
.testimonial-quote::after { content: '”'; color: var(--eden-amber); }
.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--eden-hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eden-muted);
}
.testimonial-meta-name { color: var(--eden-bone); }

/* ───────── FAQ ───────── */

.faq {
  padding: 140px 0;
  border-top: 1px solid var(--eden-hairline);
}
.faq-list {
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-top: 1px solid var(--eden-hairline);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--eden-hairline); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--eden-amber);
  color: var(--eden-bg);
  border-color: var(--eden-amber);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--eden-bone-dim);
  line-height: 1.65;
  font-size: 15px;
  max-width: 700px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 20px;
}

/* ───────── CTA Final ───────── */

.final-cta {
  padding: 140px 0 160px;
  border-top: 1px solid var(--eden-hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 117, 0.08), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 24px auto 32px;
}
.final-cta h2 em { color: var(--eden-amber); font-style: italic; }
.final-cta p {
  color: var(--eden-bone-dim);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ───────── Footer ───────── */

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--eden-hairline);
  background: var(--eden-void);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--eden-muted);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--eden-bone-dim);
  line-height: 1.8;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--eden-amber); }

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-tag { color: var(--eden-bone-dim); font-size: 14px; line-height: 1.6; max-width: 320px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--eden-hairline);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--eden-muted);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--eden-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--eden-amber); }
.footer-legal span { color: var(--eden-faint); }

/* ───────── Tweaks Panel ───────── */

.tweaks-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  background: rgba(15, 29, 23, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 6px;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.tweaks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--eden-amber);
}
.tweaks-close { color: var(--eden-muted); cursor: pointer; font-size: 16px; }
.tweak-group { margin-bottom: 18px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--eden-muted);
  margin-bottom: 8px;
  display: block;
}
.tweak-row { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-chip {
  padding: 6px 12px;
  border: 1px solid var(--eden-hairline);
  border-radius: 999px;
  font-size: 11px;
  color: var(--eden-bone-dim);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.tweak-chip:hover { border-color: var(--eden-moss); color: var(--eden-bone); }
.tweak-chip.active {
  background: var(--eden-amber);
  color: var(--eden-bg);
  border-color: var(--eden-amber);
}

/* ───────── Utility ───────── */

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Palette variants — triggered by data-palette attr on :root */
html[data-palette="forest"] { /* default */ }
html[data-palette="charcoal"] {
  --eden-bg: #0E0F11;
  --eden-surface: #15171A;
  --eden-surface-2: #1C1F23;
  --eden-phosphor: #C8D4A8;
  --eden-moss: #8A8E7C;
}
html[data-palette="midnight"] {
  --eden-bg: #080B14;
  --eden-surface: #0E1320;
  --eden-surface-2: #141B2C;
  --eden-phosphor: #A8C8D8;
  --eden-moss: #6F8390;
}


/* ═══════════════════ Parallax & Scroll FX ═══════════════════ */

/* Scroll reveal: default hidden, fade + lift on .in-view */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.2,0.8,0.2,1), transform 1s cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-fade { opacity: 0; transition: opacity 1.2s ease-out; }
.reveal-fade.in-view { opacity: 1; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal-stagger > *.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }

/* Parallax layer */
.parallax-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.parallax-img {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0s linear;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero with full-bleed imagery */
.hero {
  overflow: hidden;
}
.hero > .container { z-index: 3; }

/* Ken Burns slow zoom/pan background */
.kenburns-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.kenburns-img {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  animation: kenburns 40s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate3d(-1%, -1%, 0); }
  100% { transform: scale(1.18) translate3d(2%, 2%, 0); }
}

/* Hero image vignette */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(10,17,13,0.55) 0%, rgba(10,17,13,0.80) 50%, rgba(10,17,13,0.92) 100%),
    linear-gradient(180deg, rgba(10,17,13,0.3) 0%, rgba(10,17,13,0) 30%, rgba(10,17,13,0.6) 100%);
}

/* Drifting particles */
.drifting-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.drifting-particles span {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.4px);
  opacity: 0;
  animation-name: drift;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  will-change: transform, opacity;
}
@keyframes drift {
  0%   { opacity: 0; transform: translate3d(0, 30vh, 0); }
  20%  { opacity: 1; }
  80%  { opacity: 0.9; }
  100% { opacity: 0; transform: translate3d(var(--drift, 0px), -30vh, 0); }
}

/* Parallax band between sections */
.parallax-band {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-band .parallax-band-text {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 32px;
  text-align: center;
}
.parallax-band-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eden-amber);
  margin-bottom: 24px;
}
.parallax-band-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--eden-bone);
}
.parallax-band-title em { font-style: italic; color: var(--eden-amber); }

/* Section-level ambient image layer (beneath content, behind overlay) */
.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.section-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--eden-bg) 0%, rgba(14,24,19,0.88) 12%, rgba(14,24,19,0.92) 88%, var(--eden-bg) 100%);
}
.section-bg-image > .parallax-img {
  opacity: 0.18;
}

/* Program visual — now supports real imagery with subtle parallax */
.program-visual {
  position: relative;
  overflow: hidden;
}
.program-visual .program-bg-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1), opacity 0.6s;
  will-change: transform;
}
.program-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,24,19,0.3) 0%, rgba(14,24,19,0.55) 70%, rgba(14,24,19,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.program-visual-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eden-bone-dim);
}

/* Team photo with real image support */
.team-photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.85) contrast(1.02);
  transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1);
}
.team-member:hover .team-photo-img { transform: scale(1.03); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .kenburns-img, .drifting-particles span { animation: none !important; }
  .parallax-img { transform: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}


/* Hero cinematic variant */
.hero-cinematic { min-height: 100vh; }
.hero-cinematic .hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--eden-hairline);
  aspect-ratio: 4/5;
}
.hero-visual-photo {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.03);
  animation: slowpan 60s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slowpan {
  0%   { transform: scale(1.06) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.12) translate3d(1%, -1%, 0); }
}
.hero-visual-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,17,13,0.0) 50%, rgba(10,17,13,0.75) 100%);
}
.hero-visual-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: 32px;
  bottom: 32px;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 4;
  pointer-events: none;
  color: var(--eden-bone-dim);
}
.scroll-indicator .mono {
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--eden-amber), transparent);
  animation: scrolldown 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrolldown {
  0%   { transform: scaleY(0.2); opacity: 0.2; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.2); opacity: 0.2; transform-origin: bottom; }
}

/* Section-level background images — ambient, behind content */
.programs, .process, .science, .team, .testimonials, .faq, .quiz-section {
  position: relative;
  overflow: hidden;
}
.programs::before, .process::before, .team::before, .testimonials::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
  z-index: 0;
}
.programs::before {
  top: 0; height: 320px;
  background: linear-gradient(180deg, rgba(14,24,19,0) 0%, rgba(14,24,19,0) 100%);
}

/* Team section — warm ambient background */
.team {
  background:
    radial-gradient(ellipse 60% 30% at 20% 0%, rgba(201,168,117,0.05), transparent 60%),
    var(--eden-bg);
}

/* Final CTA — now has parallax image layer */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 180px 0;
  text-align: center;
  isolation: isolate;
}
.final-cta .container { position: relative; z-index: 3; }


/* ──────────────────────────────────────────────────────────
   SEASONAL MODE + VIDEO + AUDIO (appended v5)
   ────────────────────────────────────────────────────────── */

/* Season-accent var default — overridden by data-season on <html> */
:root {
  --season-accent: var(--eden-amber);
  --season-glow: rgba(201, 168, 117, 0.10);
}

/* Tint Begin Your Journey / amber dots / underlines with seasonal accent */
[data-season] .link-arrow::after,
[data-season] .eyebrow-dot::before {
  background: var(--season-accent);
}
[data-season] .btn-primary {
  background: linear-gradient(180deg, var(--season-accent), color-mix(in oklch, var(--season-accent), black 15%));
  color: #0A110D;
}
[data-season] .btn-primary::before {
  background: var(--season-accent);
}
[data-season] body {
  background:
    radial-gradient(ellipse 90% 50% at 50% -10%, var(--season-glow), transparent 70%),
    radial-gradient(ellipse 70% 40% at 100% 30%, rgba(201, 168, 117, 0.05), transparent 70%),
    var(--eden-bg);
}

/* ── Hero video (sits behind hero-visual-photo) */
.hero-video-wrap {
  position: absolute;
  inset: -4%;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: opacity 1.2s ease;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-video.loaded { /* opacity handled by inline style */ }

/* Cursor tilt uses 3D transforms on .hero-visual — give it perspective parent */
.hero-cinematic .hero-grid {
  perspective: 1400px;
}
.hero-cinematic .hero-visual {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* ── Controls cluster (top-right, under nav) */
.ambient-controls {
  position: fixed;
  top: 78px;
  right: 24px;
  display: flex;
  gap: 10px;
  z-index: 50;
  align-items: center;
}
@media (max-width: 900px) {
  .ambient-controls { top: auto; bottom: 20px; right: 20px; }
}

/* ── Audio toggle */
.audio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(14, 24, 19, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--eden-hairline);
  color: var(--eden-bone);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.audio-toggle:hover {
  border-color: var(--season-accent);
  background: rgba(14, 24, 19, 0.95);
}
.audio-toggle.on {
  border-color: var(--season-accent);
  color: var(--season-accent);
}
.audio-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  width: 16px;
}
.audio-bars span {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  opacity: 0.55;
  height: 40%;
}
.audio-toggle.on .audio-bars span {
  animation: audio-bounce 1.1s ease-in-out infinite;
  opacity: 1;
}
.audio-toggle.on .audio-bars span:nth-child(2) { animation-delay: 0.15s; height: 70%; }
.audio-toggle.on .audio-bars span:nth-child(3) { animation-delay: 0.30s; height: 90%; }
.audio-toggle.on .audio-bars span:nth-child(4) { animation-delay: 0.45s; height: 55%; }
@keyframes audio-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ── Season chips */
.season-chips {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(14, 24, 19, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--eden-hairline);
}
.season-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--eden-bone-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.season-chip:hover { color: var(--eden-bone); }
.season-chip.active {
  background: var(--season-accent);
  color: var(--eden-void);
}
.season-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot);
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── Virtual-first badge row in hero */
.hero-reach {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--eden-bone-dim);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.hero-reach-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 999px;
  background: rgba(18, 32, 26, 0.55);
}
.hero-reach-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--season-accent);
  box-shadow: 0 0 10px var(--season-accent);
}
.hero-reach-sep {
  color: var(--eden-faint);
  letter-spacing: 0.3em;
}

/* ── Reduced-motion fallbacks */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
  .hero-cinematic .hero-visual { transition: none !important; transform: none !important; }
}


/* ──────────────────────────────────────────────────────────
   HERO — FULL-BLEED CINEMATIC (v6)
   Replaces split variant. Video covers entire hero; text sits
   centered-left with deep scrim for legibility.
   ────────────────────────────────────────────────────────── */

.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0 80px;
}
.hero-fullbleed .hero-video-wrap {
  position: absolute;
  inset: -4%;
  z-index: 0;
}
.hero-fullbleed .hero-video,
.hero-fullbleed .hero-video-poster {
  inset: 0;
}
/* Deep vignette scrim — forest at bottom, sky clear at top-right */
.hero-scrim-deep {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,17,13,0.70) 0%, rgba(10,17,13,0.25) 35%, rgba(10,17,13,0.50) 75%, rgba(10,17,13,0.92) 100%),
    linear-gradient(90deg, rgba(10,17,13,0.82) 0%, rgba(10,17,13,0.35) 45%, rgba(10,17,13,0.12) 75%, rgba(10,17,13,0.0) 100%);
}
/* Bright-poster seasons (spring, autumn) need a touch more scrim for text contrast */
[data-season="spring"] .hero-scrim-deep,
[data-season="autumn"] .hero-scrim-deep {
  background:
    linear-gradient(180deg, rgba(10,17,13,0.80) 0%, rgba(10,17,13,0.35) 35%, rgba(10,17,13,0.60) 75%, rgba(10,17,13,0.95) 100%),
    linear-gradient(90deg, rgba(10,17,13,0.88) 0%, rgba(10,17,13,0.45) 45%, rgba(10,17,13,0.18) 75%, rgba(10,17,13,0.0) 100%);
}

.hero-fullbleed .container { position: relative; z-index: 3; }
.hero-fullbleed .scroll-indicator { z-index: 4; }

/* Centered-left content column */
.hero-centered {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero-title-xl {
  font-size: clamp(80px, 12vw, 180px) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.04em !important;
  margin-top: 6px;
}
.hero-lede-wide {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--eden-bone-dim);
  margin-top: 8px;
}

/* Licensed-states strip */
.hero-states {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 8px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--eden-hairline-strong);
  width: 100%;
  max-width: 680px;
}
.hero-states-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eden-muted);
  white-space: nowrap;
}
.hero-states-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-states-list .state {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--eden-hairline-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--eden-bone);
  background: rgba(18, 32, 26, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-states-list .state.soon {
  color: var(--eden-muted);
  border-style: dashed;
}
.hero-states-list .state sup {
  color: var(--season-accent);
  margin-left: 2px;
  font-size: 9px;
}
.hero-states-foot {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eden-faint);
}
.hero-states-foot sup { color: var(--season-accent); margin-right: 4px; }

@media (max-width: 720px) {
  .hero-states { grid-template-columns: 1fr; }
  .hero-states-foot { grid-column: 1; }
}

/* Subdue the hero visual photo card (legacy) — no longer rendered in default */
.hero-fullbleed .hero-visual { display: none; }

/* ═════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
   Breakpoints: 1024px (tablet) · 720px (small tablet) · 520px (phone)
   ═════════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ───────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Nav: hide secondary CTA, keep primary */
  .nav { padding: 16px 24px; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { padding: 10px 16px !important; font-size: 12px !important; }

  /* Hero */
  .hero, .hero-fullbleed { padding: 120px 0 64px; min-height: auto; }
  .hero-meta { gap: 24px; margin-top: 48px; flex-wrap: wrap; }
  .hero-meta-item { min-width: 140px; }
  .hero-meta-value { font-size: 32px; }

  /* Sections */
  .programs, .process, .science, .team, .testimonials, .faq, .quiz-section { padding: 96px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .section-header-aside { max-width: 100%; }

  /* Program detail pad */
  .program-detail { padding: 40px 32px; gap: 28px; }

  /* Process: two columns on tablet */
  .process-steps { grid-template-columns: 1fr 1fr; }

  /* Lab strip */
  .lab-strip { padding: 28px 32px; }

  /* Footer */
  .footer { padding: 64px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Small tablet / large phone (≤720px) ──────────────── */
@media (max-width: 720px) {
  html, body { font-size: 15px; }
  .container { padding: 0 20px; }

  /* Nav: only logo + primary CTA */
  .nav { padding: 14px 18px; }
  .nav-logo img { height: 44px !important; }

  /* Reduce section padding */
  .programs, .process, .science, .team, .testimonials, .faq, .quiz-section { padding: 72px 0; }
  .hero, .hero-fullbleed { padding: 100px 0 56px; }
  .footer { padding: 48px 0 24px; }

  /* Hero polish */
  .hero-title { margin: 20px 0 18px; }
  .hero-lede, .hero-lede-wide { font-size: 16px; margin-bottom: 28px; }
  .hero-actions { gap: 12px; }
  .hero-meta { gap: 24px 32px; margin-top: 40px; padding-top: 24px; }
  .hero-meta-value { font-size: 28px; }
  .hero-reach { font-size: 9px; gap: 10px; }
  .hero-reach-sep { display: none; }

  /* Program detail stacked */
  .program-detail { padding: 32px 24px; }
  .program-list-item { padding: 18px 20px; min-width: 160px; }

  /* Process single column (already handled at 600px) — keep two-col threshold clean */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 32px 24px 32px 0; }

  /* Science */
  .science-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Team */
  .team-member, .team-member.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .team-list { gap: 64px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial { padding: 32px 24px; }

  /* FAQ */
  .faq-list { margin-top: 40px; }
  .faq-q { font-size: 17px; gap: 16px; }
  .faq-item { padding: 22px 0; }

  /* Quiz */
  .quiz-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .quiz-card { padding: 28px 22px; min-height: auto; }
  .quiz-option { padding: 14px 18px; font-size: 15px; }
  .quiz-input { padding: 14px 16px; }

  /* Footer: single column on phones */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Buttons: tighter, full width for primary hero CTAs */
  .btn { padding: 14px 22px; font-size: 13px; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }

  /* Ambient controls: push out of the way on small screens */
  .ambient-controls { bottom: 14px !important; right: 14px !important; top: auto !important; transform: scale(0.88); transform-origin: bottom right; }

  /* Parallax band type: prevent cropped feel */
  .parallax-band { min-height: 60vh !important; }

  /* Final CTA — reduce huge type */
  .final-cta { padding: 96px 0 !important; }

  /* Hero licensed states strip tighter */
  .hero-states { gap: 6px; margin-top: 28px; padding-top: 18px; }
  .hero-states-list .state { padding: 5px 10px; font-size: 10px; }
}

/* ── Phone (≤520px) ───────────────────────────────────── */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .nav { padding: 12px 14px; }

  /* Keep logo compact; CTA shrinks */
  .nav-cta .btn-primary { padding: 8px 14px !important; font-size: 11px !important; }
  .nav-cta .btn-arrow { width: 18px; height: 18px; }

  /* Section paddings */
  .programs, .process, .science, .team, .testimonials, .faq, .quiz-section { padding: 56px 0; }
  .hero, .hero-fullbleed { padding: 88px 0 48px; }

  /* Type */
  .hero-lede, .hero-lede-wide { font-size: 15px; }

  /* Lab strip scrolls */
  .lab-strip {
    padding: 20px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Program list: horizontal scroll chips */
  .program-list-item { min-width: 140px; padding: 14px 16px; font-size: 14px; }

  /* Quiz result block */
  .quiz-result-title { font-size: 32px; }

  /* Testimonials */
  .testimonial { padding: 24px 20px; }

  /* Hero meta stacks 2-wide */
  .hero-meta { gap: 16px 20px; }
  .hero-meta-item { min-width: calc(50% - 10px); }
  .hero-meta-value { font-size: 24px; }

  /* Buttons full width */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* Ambient controls — hide the chip labels, keep just dots */
  .ambient-controls { transform: scale(0.78); }
}
