/* ===== Design Tokens ===== */
:root {
  --indigo: #1c1f43;
  --indigo-deep: #12132e;
  --indigo-soft: #2b2f63;
  --gold: #bf9b5a;
  --gold-soft: #d8bd84;
  --gold-deep: #8a6a2c;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --bg-tint: #efece3;
  --ink: #1f2240;
  --ink-70: rgba(31, 34, 64, 0.78);
  --ink-60: rgba(31, 34, 64, 0.62);
  --ink-40: rgba(31, 34, 64, 0.42);
  --line: rgba(31, 34, 64, 0.1);
  --line-strong: rgba(31, 34, 64, 0.16);
  --shadow-sm: 0 1px 2px rgba(18, 19, 46, 0.04), 0 6px 18px rgba(18, 19, 46, 0.05);
  --shadow-md: 0 18px 48px rgba(18, 19, 46, 0.1);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-heading: "Montserrat", "Noto Sans Devanagari", system-ui, sans-serif;
  --font-body: "Open Sans", "Noto Sans Devanagari", system-ui, sans-serif;
  --font-kalam: "Kalam", "Noto Sans Devanagari", cursive;
  --font-display: var(--font-heading);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
}

:lang(hi) { font-family: "Noto Sans Devanagari", "Open Sans", system-ui, sans-serif; }

img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; -webkit-appearance: none; appearance: none; }
a { -webkit-tap-highlight-color: transparent; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.16; letter-spacing: -0.015em; color: var(--indigo); }

.kalam { font-family: var(--font-kalam); font-weight: 700; color: var(--gold-deep); letter-spacing: 0; text-transform: none; }

/* ===== Scroll-driven Sunrise Background ===== */
/* --p is the sunrise progress (0 = pre-dawn, 1 = full morning), set via JS */
.bg-canvas {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
  --p: 0;
  background: var(--bg);
}
/* Sky wash: deep pre-dawn fades out while a rich warm dawn floods up from the horizon */
.bg-canvas .sky { position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(22, 19, 46, calc(0.16 + (1 - var(--p)) * 0.16)) 0%,
      rgba(40, 36, 86, calc(0.1 + (1 - var(--p)) * 0.12)) 26%,
      rgba(28, 31, 67, 0) 52%),
    linear-gradient(180deg,
      rgba(255, 240, 214, 0) 24%,
      rgba(255, 196, 134, calc(var(--p) * 0.5)) 60%,
      rgba(241, 145, 92, calc(var(--p) * 0.62)) 84%,
      rgba(214, 109, 74, calc(var(--p) * 0.72)) 100%);
}
/* The rising sun — larger, with a luminous core */
.bg-canvas .sun {
  position: absolute; left: 50%; bottom: -12vh; z-index: 4;
  width: min(108vh, 1020px); height: min(108vh, 1020px); border-radius: 50%;
  transform: translate(-50%, calc((1 - var(--p)) * 52vh));
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 252, 244, calc(1 * var(--p))) 0%,
    rgba(255, 238, 198, calc(0.92 * var(--p))) 14%,
    rgba(255, 198, 128, calc(0.7 * var(--p))) 30%,
    rgba(240, 150, 86, calc(0.42 * var(--p))) 48%,
    rgba(220, 120, 80, calc(0.18 * var(--p))) 66%,
    rgba(220, 120, 80, 0) 76%);
  filter: blur(1px);
  will-change: transform;
}
/* Bright sun disc core that emerges near the horizon */
.bg-canvas .sun::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 30%; height: 30%; border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 45%,
    rgba(255, 253, 247, calc(0.95 * var(--p))) 0%,
    rgba(255, 235, 188, calc(0.85 * var(--p))) 45%,
    rgba(255, 210, 150, 0) 72%);
  filter: blur(6px);
}
/* Rich horizon haze that intensifies and glows as the sun rises */
.bg-canvas .haze {
  position: absolute; left: 0; right: 0; bottom: 0; height: 72vh; z-index: 9;
  background:
    radial-gradient(140% 100% at 50% 122%, rgba(255, 176, 110, calc(var(--p) * 0.55)), transparent 58%),
    radial-gradient(90% 70% at 50% 128%, rgba(255, 138, 92, calc(var(--p) * 0.4)), transparent 55%);
}

/* Pre-dawn stars that fade as morning arrives */
.bg-canvas .stars {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 28% 8%, rgba(255,255,255,0.75), transparent),
    radial-gradient(1.5px 1.5px at 44% 14%, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 58% 6%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 72% 12%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 86% 20%, rgba(255,255,255,0.65), transparent),
    radial-gradient(1px 1px at 18% 28%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 36% 22%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 64% 26%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 82% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 8% 10%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 92% 8%, rgba(255,255,255,0.55), transparent);
  opacity: calc((1 - var(--p)) * 0.85);
}

/* Soft sun rays emerging from the horizon */
.bg-canvas .sun-rays {
  position: absolute; left: 50%; bottom: -8vh; z-index: 3;
  width: min(140vh, 1200px); height: min(140vh, 1200px);
  transform: translate(-50%, calc((1 - var(--p)) * 52vh)) rotate(calc(var(--p) * 8deg));
  background: conic-gradient(from 180deg at 50% 50%,
    transparent 0deg,
    rgba(255, 220, 160, calc(0.14 * var(--p))) 18deg,
    transparent 36deg,
    rgba(255, 200, 140, calc(0.1 * var(--p))) 54deg,
    transparent 72deg,
    rgba(255, 215, 155, calc(0.12 * var(--p))) 90deg,
    transparent 108deg,
    rgba(255, 195, 130, calc(0.09 * var(--p))) 126deg,
    transparent 144deg,
    rgba(255, 210, 150, calc(0.11 * var(--p))) 162deg,
    transparent 180deg,
    rgba(255, 200, 140, calc(0.1 * var(--p))) 198deg,
    transparent 216deg,
    rgba(255, 215, 155, calc(0.12 * var(--p))) 234deg,
    transparent 252deg,
    rgba(255, 195, 130, calc(0.09 * var(--p))) 270deg,
    transparent 288deg,
    rgba(255, 210, 150, calc(0.11 * var(--p))) 306deg,
    transparent 324deg,
    rgba(255, 200, 140, calc(0.1 * var(--p))) 342deg,
    transparent 360deg);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 18%, transparent 62%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 18%, transparent 62%);
  filter: blur(10px);
  opacity: calc(0.35 + var(--p) * 0.65);
  will-change: transform;
}

/* Cloud layers — drift slowly and catch golden light as sun rises */
.cloud-layer { position: absolute; inset: 0; overflow: hidden; }
.cloud-back { z-index: 5; transform: translateY(calc(var(--p) * -10px)); }
.cloud-mid { z-index: 6; transform: translateY(calc(var(--p) * -18px)); }
.cloud-front { z-index: 7; transform: translateY(calc(var(--p) * -26px)); }
.cloud {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg,
    rgba(255, 248, 238, calc(0.35 + var(--p) * 0.45)),
    rgba(230, 210, 195, calc(0.2 + var(--p) * 0.3)));
  filter: blur(14px);
  animation: cloudDrift linear infinite;
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; border-radius: 50%;
  background: inherit;
}
.cloud-back .cloud { filter: blur(18px); opacity: calc(0.55 + var(--p) * 0.25); }
.cloud-mid .cloud { filter: blur(12px); opacity: calc(0.65 + var(--p) * 0.2); }
.cloud-front .cloud { filter: blur(10px); opacity: calc(0.75 + var(--p) * 0.15); }

/* Individual cloud shapes & positions */
.c1 { width: 180px; height: 52px; top: 18%; left: -4%; animation-duration: 90s; }
.c1::before { width: 72px; height: 72px; top: -38px; left: 28px; }
.c1::after { width: 96px; height: 64px; top: -28px; left: 78px; }

.c2 { width: 220px; height: 58px; top: 28%; right: 6%; animation-duration: 110s; animation-direction: reverse; }
.c2::before { width: 84px; height: 84px; top: -42px; left: 36px; }
.c2::after { width: 110px; height: 70px; top: -32px; left: 96px; }

.c3 { width: 160px; height: 48px; top: 12%; left: 38%; animation-duration: 100s; }
.c3::before { width: 64px; height: 64px; top: -34px; left: 22px; }
.c3::after { width: 88px; height: 58px; top: -26px; left: 68px; }

.c4 { width: 200px; height: 54px; top: 38%; left: 12%; animation-duration: 75s; }
.c4::before { width: 78px; height: 78px; top: -40px; left: 30px; }
.c4::after { width: 102px; height: 66px; top: -30px; left: 86px; }

.c5 { width: 240px; height: 60px; top: 44%; right: -2%; animation-duration: 85s; animation-direction: reverse; }
.c5::before { width: 90px; height: 90px; top: -44px; left: 40px; }
.c5::after { width: 118px; height: 74px; top: -34px; left: 104px; }

.c6 { width: 170px; height: 50px; top: 32%; left: 55%; animation-duration: 95s; }
.c6::before { width: 68px; height: 68px; top: -36px; left: 24px; }
.c6::after { width: 92px; height: 60px; top: -28px; left: 72px; }

.c7 { width: 190px; height: 56px; top: 52%; left: 28%; animation-duration: 65s; }
.c7::before { width: 76px; height: 76px; top: -38px; left: 28px; }
.c7::after { width: 100px; height: 64px; top: -30px; left: 82px; }

.c8 { width: 210px; height: 58px; top: 48%; right: 14%; animation-duration: 70s; animation-direction: reverse; }
.c8::before { width: 82px; height: 82px; top: -40px; left: 34px; }
.c8::after { width: 108px; height: 68px; top: -32px; left: 90px; }

@keyframes cloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(32px); }
  100% { transform: translateX(0); }
}

/* Distant horizon silhouette */
.bg-canvas .horizon {
  position: absolute; left: 0; right: 0; bottom: 0; height: 28vh; z-index: 8;
  background:
    linear-gradient(180deg, transparent 0%, rgba(28, 31, 67, calc(0.04 + (1 - var(--p)) * 0.06)) 40%, rgba(28, 31, 67, calc(0.08 + (1 - var(--p)) * 0.04)) 100%),
    radial-gradient(120% 80% at 15% 100%, rgba(28, 31, 67, calc(0.12 + (1 - var(--p)) * 0.08)) 0%, transparent 55%),
    radial-gradient(100% 70% at 45% 100%, rgba(28, 31, 67, calc(0.1 + (1 - var(--p)) * 0.06)) 0%, transparent 50%),
    radial-gradient(110% 75% at 72% 100%, rgba(28, 31, 67, calc(0.11 + (1 - var(--p)) * 0.07)) 0%, transparent 52%),
    radial-gradient(90% 65% at 92% 100%, rgba(28, 31, 67, calc(0.09 + (1 - var(--p)) * 0.05)) 0%, transparent 48%);
  opacity: calc(0.7 + var(--p) * 0.3);
}

/* Soft edge vignette for depth */
.bg-canvas .vignette {
  position: absolute; inset: 0; z-index: 10;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(18, 19, 46, calc(0.08 + (1 - var(--p)) * 0.06)) 100%);
  pointer-events: none;
}

/* Subtle dot texture, fading toward the top */
.bg-canvas .dots {
  position: absolute; inset: 0; z-index: 11;
  background-image: radial-gradient(rgba(31, 34, 64, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 30%, transparent 75%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.01em;
  padding: 12px 24px; border-radius: 10px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap; line-height: 1.2;
}
.btn-gold { background: var(--indigo); color: #fff; box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-2px); background: var(--indigo-deep); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--indigo); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--indigo); }
.btn-lg { padding: 14px 30px; font-size: 0.94rem; }
.btn-block { width: 100%; }
.btn-accent { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: var(--indigo-deep); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(191, 155, 90, 0.32); }

/* ===== Navbar (floating dark pill differentiator) ===== */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  transition: top .3s var(--ease);
}
.nav .container { max-width: calc(var(--container) + 40px); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #2f3470 0%, var(--indigo) 52%, var(--indigo-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 11px 14px 11px 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 30px rgba(0, 0, 0, 0.34);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.nav.scrolled { top: 10px; }
.nav.scrolled .nav-inner { padding: 9px 12px 9px 24px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.4); }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: #fff; }
.brand-mark { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: #fff; display: inline-flex; align-items: baseline; letter-spacing: -0.04em; }
.brand-am { font-size: 0.74rem; font-weight: 700; color: var(--gold-soft); margin-left: 2px; letter-spacing: 0.06em; }
.brand-text { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -0.03em; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 10px 22px; font-size: 0.85rem; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: var(--indigo-deep); border-color: transparent; }
.nav-cta:hover { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(191, 155, 90, 0.4); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 132px 0 84px; background: linear-gradient(165deg, #fdfcf9 0%, #f7f5ef 46%, #f1eee5 100%); }
.hero-inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(2.1rem, 4.4vw, 3.35rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 20px; }
.hero-sub { font-size: 1.08rem; color: var(--ink-70); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-price { font-size: 0.92rem; color: var(--ink-60); font-weight: 500; }
.hero-price strong { color: var(--indigo); font-weight: 700; }

/* Countdown */
.countdown { display: inline-flex; flex-direction: column; gap: 12px; padding-top: 28px; border-top: 1px solid var(--line); width: 100%; max-width: 420px; }
.countdown-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-40); }
.countdown-timer { display: flex; gap: 10px; }
.cd-unit { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; min-width: 62px; text-align: center; }
.cd-num { display: block; font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; color: var(--indigo); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-lbl { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); margin-top: 6px; }

/* Hero quiz */
.quiz-card { background: var(--surface); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); border: 1px solid var(--line); position: relative; }
.quiz-tag { display: inline-block; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.quiz-cta { display: inline-block; margin-top: 12px; color: var(--gold-soft); font-weight: 700; text-decoration: none; font-size: 0.92rem; }
.quiz-cta:hover { color: #fff; }
.quiz-q { font-family: var(--font-heading); font-size: 1.18rem; font-weight: 700; color: var(--indigo); margin-bottom: 18px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt { text-align: left; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 16px 13px 44px; font-family: var(--font-body); font-size: 0.94rem; color: var(--ink); cursor: pointer; transition: all .22s var(--ease); position: relative; }
.quiz-opt::before { content: ""; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border: 1.5px solid var(--line-strong); border-radius: 5px; transition: all .22s; }
.quiz-opt:hover { border-color: var(--gold); background: rgba(191, 155, 90, 0.06); }
.quiz-opt.selected { border-color: var(--gold); background: rgba(191, 155, 90, 0.1); }
.quiz-opt.selected::before { background: var(--gold-deep); border-color: var(--gold-deep); content: "✓"; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.quiz-result { margin-top: 18px; padding: 18px; background: var(--indigo); color: #fff; border-radius: 12px; font-size: 0.98rem; font-weight: 400; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.quiz-result.show { opacity: 1; transform: translateY(0); }

/* Scroll hint */
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 1.5px solid var(--line-strong); border-radius: 12px; }
.scroll-hint span { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold-deep); border-radius: 2px; animation: scrolldot 1.7s infinite; }
@keyframes scrolldot { 0%{opacity:0;top:7px} 40%{opacity:1} 80%{opacity:0;top:20px} 100%{opacity:0} }

/* ===== Value strip ===== */
.value-strip { background: var(--indigo); border-top: 1px solid rgba(255,255,255,0.06); }
.value-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 22px 0; }
.vs-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,0.86); font-family: var(--font-heading); font-weight: 500; font-size: 0.92rem; }
.vs-ico { display: inline-flex; color: var(--gold-soft); }
.vs-ico svg { width: 22px; height: 22px; }

/* ===== Sections ===== */
.section { padding: 104px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 58px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.kicker::before, .kicker::after { content: ""; width: 22px; height: 1px; background: var(--gold); opacity: 0.7; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.lead { font-size: 1.08rem; color: var(--ink-60); line-height: 1.7; }

/* Grids */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.card p { font-size: 0.94rem; color: var(--ink-60); }

/* Problem */
.problem-card { position: relative; padding-top: 30px; }
.card-num { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-deep); display: block; margin-bottom: 12px; }
.problem-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }

/* Science */
.science { background: var(--bg-tint); }
.science-card { text-align: left; }
.sci-icon { width: 50px; height: 50px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(28, 31, 67, 0.05); color: var(--indigo); margin-bottom: 18px; }
.sci-icon svg { width: 26px; height: 26px; }

/* Experience */
.exp-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.exp-item { display: flex; align-items: center; gap: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s; }
.exp-item:hover { transform: translateX(4px); border-color: var(--line-strong); }
.exp-no { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--gold-deep); flex-shrink: 0; width: 38px; height: 38px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.exp-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.exp-item p { color: var(--ink-60); font-size: 0.95rem; }

/* How (steps) */
.how-grid { counter-reset: step; }
.step-card { text-align: left; position: relative; }
.step-badge { display: inline-block; font-family: var(--font-heading); color: var(--gold-deep); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }

/* Why 6AM */
.why { background: var(--indigo); color: #fff; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why .kicker { color: var(--gold-soft); }
.why .kicker::before, .why .kicker::after { background: var(--gold-soft); }
.why-text h2 { color: #fff; }
.why-text .lead { color: rgba(255,255,255,0.74); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-size: 1.02rem; color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 16px 20px; border-radius: 12px; }
.why-list .tick { color: var(--gold-soft); font-weight: 700; }

/* Assessment */
/* Mentor / Coach */
.mentor { background: var(--bg-tint); }
.mentor-card { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.mentor-aside { background: linear-gradient(160deg, var(--indigo-soft) 0%, var(--indigo) 55%, var(--indigo-deep) 100%); color: #fff; padding: 34px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mentor-photo { width: 132px; height: 132px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.22); margin-bottom: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); flex-shrink: 0; }
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.mentor-name { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.mentor-role { color: var(--gold-soft); font-family: var(--font-heading); font-weight: 600; font-size: 0.86rem; margin-bottom: 2px; }
.mentor-org { color: rgba(255,255,255,0.68); font-size: 0.82rem; }
.mentor-tags { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 22px; }
.mentor-tags li { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 6px 12px; border-radius: 999px; }
.mentor-body { padding: 38px 40px; }
.mentor-body p { color: var(--ink-70); font-size: 0.98rem; margin-bottom: 16px; }
.mentor-body p strong { color: var(--indigo); font-weight: 700; }
.mentor-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.mentor-pillar { display: flex; flex-direction: column; gap: 4px; }
.mp-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; color: var(--gold-deep); letter-spacing: 0.04em; text-transform: uppercase; }
.mp-text { font-size: 0.84rem; color: var(--ink-60); }

.assess-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.assess-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 20px; cursor: pointer; color: var(--indigo); display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left; transition: all .26s var(--ease); }
/* Mood meter (equalizer-style level indicator, not an icon) */
.mood-meter { display: flex; align-items: flex-end; gap: 5px; height: 34px; margin-bottom: 12px; }
.mood-meter i { width: 7px; border-radius: 3px; background: var(--line-strong); transition: background .26s, transform .26s; }
.mood-meter i:nth-child(1) { height: 40%; }
.mood-meter i:nth-child(2) { height: 60%; }
.mood-meter i:nth-child(3) { height: 80%; }
.mood-meter i:nth-child(4) { height: 100%; }
.assess-card[data-level="1"] .mood-meter i:nth-child(-n+1),
.assess-card[data-level="2"] .mood-meter i:nth-child(-n+2),
.assess-card[data-level="3"] .mood-meter i:nth-child(-n+3),
.assess-card[data-level="4"] .mood-meter i:nth-child(-n+4) { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
.mood-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--indigo); }
.mood-desc { font-size: 0.82rem; color: var(--ink-60); }
.assess-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.assess-card:hover .mood-meter i { transform: scaleY(1.06); }
.assess-card.selected { border-color: var(--gold); background: rgba(191, 155, 90, 0.1); }
.assess-result { max-width: 600px; margin: 34px auto 0; text-align: center; background: var(--indigo); color: #fff; padding: 36px; border-radius: var(--radius-lg); }
.assess-result p { font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem; margin-bottom: 22px; line-height: 1.4; }

/* Who is this for */
.whofor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
.whofor-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.whofor-col h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.whofor-yes { color: #2f7d4f; }
.whofor-not { color: #b04a3d; }
.whofor-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.whofor-col li { font-size: 0.98rem; color: var(--ink-70); padding-left: 26px; position: relative; }
.whofor-col li::before { content: "✓"; position: absolute; left: 0; color: #2f7d4f; font-weight: 700; }
.whofor-no { background: var(--bg-tint); }
.whofor-no li::before { content: "✕"; color: #b04a3d; }

/* Membership */
.membership { background: var(--bg-tint); }
.price-card { position: relative; max-width: 440px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: 44px 38px; box-shadow: var(--shadow-md); text-align: center; }
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: linear-gradient(90deg, var(--gold-soft), var(--gold)); }
.price-ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--indigo); color: #fff; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 18px; border-radius: 999px; }
.price-title { font-size: 1.35rem; margin-bottom: 10px; }
.price-tease { font-size: 0.92rem; color: var(--ink-60); margin-bottom: 18px; }
.price-tease strong { color: var(--gold-deep); }
.price-amount { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800; color: var(--indigo); line-height: 1; margin-bottom: 28px; letter-spacing: -0.02em; }
.price-cur { font-size: 1.5rem; vertical-align: super; font-weight: 600; }
.price-per { font-size: 0.95rem; font-family: var(--font-body); color: var(--ink-40); font-weight: 500; }
.price-feats { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.price-feats li { display: flex; align-items: center; gap: 12px; font-size: 0.97rem; color: var(--ink-70); }
.price-feats .tick { color: var(--gold-deep); font-weight: 700; }
.price-note { font-size: 0.8rem; color: var(--ink-40); margin-top: 14px; }

/* FAQ */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--line-strong); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-size: 1.02rem; font-weight: 600; color: var(--indigo); text-align: left; }
.faq-ico { font-size: 1.4rem; color: var(--gold-deep); transition: transform .3s; flex-shrink: 0; font-weight: 400; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 20px; color: var(--ink-60); font-size: 0.96rem; }

/* Final CTA card */
.final-cta { background: var(--indigo); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 360px at 50% 0%, rgba(191, 155, 90, 0.18), transparent 62%); }
.final-cta .container { position: relative; }
.cta-card { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 40px 44px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
.cta-left { text-align: left; }
.cta-tag { display: inline-block; font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo-deep); background: linear-gradient(180deg, var(--gold-soft), var(--gold)); padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.1rem); color: #fff; margin-bottom: 10px; }
.cta-title .kalam { color: var(--gold-soft); }
.cta-sub { color: rgba(255,255,255,0.74); font-size: 0.98rem; margin-bottom: 20px; }
.cta-start { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 18px; margin-bottom: 18px; text-align: left; }
.cta-start-ico { color: var(--gold-soft); display: inline-flex; }
.cta-start-ico svg { width: 24px; height: 24px; }
.cta-start-lbl { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cta-start-date { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.96rem; color: #fff; }
.cta-right { background: linear-gradient(160deg, var(--indigo-soft) 0%, var(--indigo) 45%, var(--indigo-deep) 100%); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.3); }
.cta-countdown { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; }
.cta-countdown .cd-unit { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); min-width: 0; flex: 1; padding: 8px 6px; }
.cta-countdown .cd-num { color: #fff; font-size: 1.25rem; }
.cta-countdown .cd-lbl { color: rgba(255,255,255,0.55); }
.cta-price-row { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 14px; }
.cta-price { font-family: var(--font-heading); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.cta-cur { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.cta-per { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.55); }
.cta-price-note { font-size: 0.82rem; color: var(--gold-soft); }
.cta-btn { width: 100%; }
.cta-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 4px; }
.cta-trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.72); }
.cta-trust svg { width: 15px; height: 15px; color: var(--gold-soft); flex-shrink: 0; }

/* Footer */
.footer { background: var(--indigo-deep); color: rgba(255,255,255,0.55); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer .brand-mark { color: #fff; }
.footer .brand-am { color: var(--gold-soft); }
.footer p { font-size: 0.85rem; }

/* Sticky mobile CTA */
.sticky-cta { display: none; position: fixed; bottom: calc(14px + env(safe-area-inset-bottom)); left: 16px; right: 16px; z-index: 90; background: var(--indigo); color: #fff; text-align: center; padding: 15px; border-radius: 12px; font-family: var(--font-heading); font-weight: 600; text-decoration: none; box-shadow: var(--shadow-md); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .assess-cards { grid-template-columns: repeat(2, 1fr); }
  .mentor-card { grid-template-columns: 1fr; max-width: 560px; }
  .mentor-body { padding: 32px 28px; }
  .whofor-grid { grid-template-columns: 1fr; }
  .value-strip-inner { justify-content: center; gap: 18px 30px; }
  .hero-quiz { max-width: 520px; }
  .cta-card { grid-template-columns: 1fr; gap: 28px; max-width: 560px; padding: 36px 32px; }
  .cta-trust { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 66px 0; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 100px 0 58px; }
  .brand-text { display: none; }
  .nav-cta { display: none; }
  .grid-5 { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .hero-sub { font-size: 1rem; }
  .vs-item { font-size: 0.85rem; }
  .countdown-timer { gap: 8px; }
  .cd-unit { min-width: 0; flex: 1; padding: 10px 6px; }
  .cd-num { font-size: 1.25rem; }
  .price-card { padding: 38px 24px; }
  .quiz-card { padding: 24px; }
  .mentor-pillars { grid-template-columns: 1fr; gap: 12px; }
  .cta-start { width: 100%; }
  body { padding-bottom: 84px; }
}
@media (max-width: 380px) {
  .brand-mark { font-size: 1.5rem; }
  .hero-title { font-size: 1.55rem; }
  .price-amount { font-size: 2.7rem; }
}
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding: 90px 0 40px; }
  .scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .cloud { animation: none !important; }
}
