/* ============================================================
   ADAM preday — drinkadam.com
   Design language: "the morning window"
   Cream daylight base, deep teal ink, sun-gold accents,
   pre-dawn night sections. Geometric sans, huge tonal type.
   ============================================================ */

:root {
  --cream: #f7f2e9;
  --cream-soft: #fbf8f1;
  --sand: #ede4d3;
  --sand-deep: #e3d7c1;
  --teal: #1e7887;
  --teal-deep: #135663;
  --ink: #0c333c;
  --night: #062730;
  --night-deep: #04181e;
  --sun: #f2c94c;
  --sun-soft: #f9e9ac;
  --white: #fffdf8;
  --err: #c0392b;

  --font-display: "Poppins", "Century Gothic", "Futura", sans-serif;
  --font-serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Caveat", cursive;

  --line: rgba(12, 51, 60, 0.10);
  --line-strong: rgba(12, 51, 60, 0.16);

  --max: 1120px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 44px rgba(12, 51, 60, 0.07);
  --shadow-sm: 0 6px 20px rgba(12, 51, 60, 0.05);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--sun); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- type scale ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-xl { font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 700; letter-spacing: -0.035em; }
.display-lg { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; }
.display-md { font-size: clamp(1.55rem, 3.2vw, 2.35rem); font-weight: 700; letter-spacing: -0.025em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--sun);
  border-radius: 2px;
}

.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 58ch; }
.muted { opacity: 0.72; }
.script { font-family: var(--font-script); font-size: 1.6em; color: var(--teal); font-weight: 600; }
.teal { color: var(--teal); }
.sun-txt { color: var(--sun); }

/* ---------- buttons + forms ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(19, 86, 99, 0.28); }
.btn.ghost { background: transparent; color: var(--teal); }
.btn.ghost:hover { background: var(--teal); color: var(--white); }
.btn.sun { background: var(--sun); border-color: var(--sun); color: var(--ink); }

.waitlist-form { width: 100%; max-width: 520px; }
.waitlist-form .row {
  display: flex;
  background: var(--white);
  border: 2px solid var(--sand-deep);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.waitlist-form .row:focus-within { border-color: var(--teal); box-shadow: 0 10px 34px rgba(19,86,99,0.14); }
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  padding: 10px 18px;
  color: var(--ink);
}
.waitlist-form .btn { padding: 13px 26px; }
.waitlist-form .note { font-size: 0.8rem; margin-top: 12px; opacity: 0.6; }
.waitlist-form .msg { font-weight: 600; margin-top: 12px; font-size: 0.95rem; min-height: 1.4em; }
.waitlist-form .msg.ok { color: var(--teal); }
.waitlist-form .msg.err { color: var(--err); }
.waitlist-form.done .row { display: none; }
.waitlist-form.done .note { display: none; }

@media (max-width: 480px) {
  .waitlist-form .row { flex-direction: column; border-radius: var(--radius); padding: 10px; }
  .waitlist-form .btn { width: 100%; }
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.4s, box-shadow 0.4s, transform 0.4s;
}
.nav .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}
.nav.scrolled {
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(12, 51, 60, 0.08);
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--teal-deep);
  display: flex; align-items: baseline; gap: 6px;
}
.brand .pre { font-weight: 400; color: var(--teal); }
.brand svg { height: 40px; width: auto; display: block; }
footer .brand svg { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { padding: 11px 22px; font-size: 0.8rem; }
.nav-links .btn::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--cream-soft);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.4rem; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cream);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
@media (min-width: 961px) {
  /* bias the crop left so the canister clears the right-aligned copy */
  .hero-media video, .hero-media img { object-position: left 40%; }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247,242,233,0.25) 0%, rgba(247,242,233,0) 30%, rgba(247,242,233,0) 55%, rgba(247,242,233,0.92) 88%, var(--cream) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 100px);
}

/* ---------- hero product film (home, standalone — no overlaid text) ---------- */
.hero-video { background: #10222a; }
.hero-video .hero-media video { object-position: center 46%; }
/* soft top wash so the cream nav stays legible, plus a faint bottom
   vignette for depth — the film otherwise stands on its own */
.hero-video .hero-media::after {
  background:
    linear-gradient(180deg, rgba(9,20,25,0.40) 0%, rgba(9,20,25,0) 20%, rgba(9,20,25,0) 80%, rgba(9,20,25,0.34) 100%);
}
.hero-video .scroll-cue { color: var(--cream); opacity: 0.85; }
.hero-video .scroll-cue .stem { background: linear-gradient(var(--cream), transparent); }

/* ---------- intro copy (begins under the film) ---------- */
.intro-copy {
  text-align: center; padding-top: clamp(56px, 8vh, 104px);
  position: relative; overflow: hidden;
  /* deep warm base so the white powder reads (screen-blend can only brighten,
     so the falling column + pile need a darker stage to pop against) — top stays cream */
  background:
    radial-gradient(115% 82% at 50% 118%, rgba(58,44,26,0.62), rgba(86,68,44,0.30) 40%, transparent 70%),
    linear-gradient(to bottom, transparent 26%, rgba(96,78,52,0.18) 62%, rgba(64,50,30,0.40) 100%),
    var(--cream);
}
.intro-copy .wrap { position: relative; z-index: 1; }
/* hyperrealistic falling powder — black-bg video composited onto cream via screen blend */
.intro-copy .powder-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  display: block; pointer-events: none;
  mix-blend-mode: screen;
  opacity: 1;
  filter: contrast(1.45) brightness(1.16) saturate(0.9);
  /* fade the hard top edge of the frame so powder seems to drift in from nowhere */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 100%);
}
.intro-copy .intro-inner {
  max-width: 720px; margin: 0 auto;
  display: grid; gap: 26px; justify-items: center;
}
.intro-copy .kicker { justify-content: center; color: var(--teal); }
.intro-copy .kicker::before { display: none; }
.intro-copy h1 { max-width: 18ch; line-height: 1.02; text-wrap: balance; }
.intro-copy .lede { margin-inline: auto; }
.intro-copy .waitlist-form { margin-inline: auto; }
.intro-copy .hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-deep);
}
.intro-copy .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.intro-copy .hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }

/* ---------- 10 oz / 10 min ritual band (dark cinematic) ---------- */
.tenten-band {
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(90% 60% at 50% -8%, rgba(28,120,135,0.30) 0%, transparent 58%),
    radial-gradient(70% 80% at 88% 112%, rgba(242,201,76,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 52%, #072b34 100%);
}
/* cinematic vignette + faint light-leak sweep */
.tenten-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 120% at 50% 42%, transparent 55%, rgba(2,12,16,0.55) 100%);
}
.tenten-band::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  top: -30%; left: -10%; width: 55%; height: 160%;
  background: linear-gradient(100deg, transparent, rgba(120,215,230,0.06) 45%, rgba(242,201,76,0.05) 55%, transparent);
  transform: rotate(8deg);
  filter: blur(8px);
}
.tenten-band > .wrap { position: relative; z-index: 1; }
.tenten-head { margin-inline: auto; text-align: center; }
.tenten-head .kicker { justify-content: center; color: var(--sun); }
.tenten-head .kicker::before { display: none; }
.tenten-head h2 { line-height: 1.0; color: var(--cream); }
.tenten-head h2 .ln { display: block; }
.tenten-head .lede { margin-inline: auto; color: rgba(247,242,233,0.74); }

/* directional entrances (ride the existing .reveal -> .in observer + transition) */
.reveal.tt-from-left  { transform: translateX(clamp(-96px, -9vw, -48px)); }
.reveal.tt-from-right { transform: translateX(clamp(48px, 9vw, 96px)); }
.reveal.tt-from-top   { transform: translateY(-48px); }

.tenten {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 2fr) 1fr;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  max-width: 940px;
  margin: clamp(36px, 6vh, 64px) auto 0;
}
.tt-metric { display: grid; justify-items: center; gap: 10px; }
.tt-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 6rem); line-height: 0.9;
  letter-spacing: -0.03em; color: var(--cream);
  display: inline-flex; align-items: flex-start;
  text-shadow: 0 0 34px rgba(120,215,230,0.22);
}
.tt-unit {
  font-size: 0.3em; font-weight: 700; letter-spacing: 0.04em;
  color: var(--sun); margin-top: 0.5em; margin-left: 0.12em; text-transform: lowercase;
  text-shadow: 0 0 20px rgba(242,201,76,0.35);
}
.tt-label {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(247,242,233,0.66); line-height: 1.4;
}

/* animated 10-minute timeline */
.tt-track { display: grid; gap: 12px; align-content: center; }
.tt-line {
  position: relative; height: 4px; border-radius: 999px;
  background: rgba(247,242,233,0.12);
  overflow: visible;
}
.tt-fill {
  position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #4bb0bf, var(--sun));
  box-shadow: 0 0 14px rgba(120,215,230,0.35);
}
.tt-dot {
  position: absolute; top: 50%; left: 0; width: 15px; height: 15px; border-radius: 50%;
  background: var(--sun); border: 3px solid var(--night);
  box-shadow: 0 0 0 1px rgba(242,201,76,0.5), 0 0 18px rgba(242,201,76,0.55);
  transform: translate(-50%, -50%);
}
/* timeline fills once the section scrolls in, in step with the numerals */
.tt-track.in .tt-fill { animation: ttFill 3s cubic-bezier(.5,.05,.2,1) 0.35s forwards; }
.tt-track.in .tt-dot  { animation: ttDot 3s cubic-bezier(.5,.05,.2,1) 0.35s forwards; }
.tt-tick {
  position: absolute; top: 50%; width: 2px; height: 8px; border-radius: 2px;
  background: rgba(247,242,233,0.22);
  transform: translate(-50%, -50%);
}
.tt-cap {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; color: rgba(247,242,233,0.55);
  display: flex; justify-content: space-between;
}
.tt-track { grid-template-columns: 1fr; }
.tt-cap-a { justify-content: flex-start; }
.tt-cap-b { justify-content: flex-end; }
.tt-track { position: relative; }
.tt-track .tt-cap-a { position: absolute; top: -22px; left: 0; }
.tt-track .tt-cap-b { position: absolute; top: -22px; right: 0; }
@keyframes ttFill { to { width: 100%; } }
@keyframes ttDot { to { left: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .tt-track .tt-fill, .tt-track.in .tt-fill { width: 100%; animation: none; }
  .tt-track .tt-dot, .tt-track.in .tt-dot { left: 100%; animation: none; }
}

/* three micro-steps */
.tt-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.4vw, 28px);
  max-width: 860px; margin: clamp(40px, 6vh, 70px) auto 0;
}
.tt-step {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 20px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(247,242,233,0.07), rgba(247,242,233,0.02));
  border: 1px solid rgba(247,242,233,0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 40px rgba(2,12,16,0.35);
}
.tt-step-n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--sun);
  background: rgba(242,201,76,0.10);
  border: 1px solid rgba(242,201,76,0.34);
}
.tt-step div { display: grid; gap: 2px; }
.tt-step strong { font-size: 0.98rem; color: var(--cream); }
.tt-step span { font-size: 0.85rem; color: rgba(247,242,233,0.62); }

@media (max-width: 760px) {
  .tenten { grid-template-columns: 1fr; gap: 30px; }
  .tt-track { order: 3; }
  .tt-metric-b { order: 2; }
  .tt-track .tt-cap-a, .tt-track .tt-cap-b { top: -20px; }
  .tt-steps { grid-template-columns: 1fr; max-width: 440px; }
}
.hero-copy { display: grid; gap: 26px; max-width: 620px; }
@media (min-width: 961px) {
  /* the hero video's closing shot parks the canister on the left —
     keep the copy on the right so product and type never collide */
  .hero-copy { margin-left: auto; }
}
.hero h1 { max-width: 12ch; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 0.9s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero .lede { animation: fadeUp 0.9s var(--ease) 0.4s both; }
.hero .waitlist-form { animation: fadeUp 0.9s var(--ease) 0.55s both; }
.hero .hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-deep);
  animation: fadeUp 0.9s var(--ease) 0.7s both;
}
.hero .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero .hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(24px, 5vh, 56px);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700;
  color: var(--teal-deep);
  writing-mode: vertical-rl;
}
.scroll-cue .stem {
  width: 2px; height: 54px;
  background: linear-gradient(var(--teal), transparent);
  overflow: hidden; position: relative;
}
.scroll-cue .stem::after {
  content: ""; position: absolute; left: 0; top: -20px;
  width: 2px; height: 20px; background: var(--sun);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 60%, 100% { transform: translateY(76px); } }
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* ---------- 3D spotlight hero ---------- */

.hero-3d {
  background:
    radial-gradient(85% 70% at 78% 30%, rgba(30, 120, 135, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 62%, #0a303a 100%);
  align-items: center;
}
.hero-3d .hero-inner { padding-top: 110px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero-3d .hero-copy { margin-left: 0; }
.hero-3d h1 {
  background: linear-gradient(180deg, #fffdf8 20%, #cfc4ae 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.9s var(--ease) 0.15s both;
}
.hero-3d .lede { color: var(--cream); opacity: 0.85; }
.hero-3d .kicker { color: var(--sun); }
.hero-3d .kicker::before { background: var(--sun); }
.hero-3d .hero-meta { color: var(--cream); opacity: 0.9; }
.hero-3d .waitlist-form .row { border-color: transparent; }
.hero-3d .waitlist-form .note { color: var(--cream); opacity: 0.55; }
.hero-3d .waitlist-form .msg.ok { color: var(--sun); }
.hero-3d .waitlist-form .msg.err { color: #ff9d8a; }
.hero-3d .scroll-cue { color: var(--cream); opacity: 0.75; }

.hero-stage {
  position: relative;
  height: min(72vh, 680px);
  min-height: 420px;
}
.hero-stage model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  outline: none;
  cursor: grab;
}
.hero-stage model-viewer:active { cursor: grabbing; }
.hero-stage model-viewer::part(default-progress-mask),
.hero-stage model-viewer::part(default-progress-bar) { display: none; }
.hero-stage .stage-floor {
  position: absolute;
  left: 50%; bottom: 6%;
  width: 68%; height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(242, 201, 76, 0.16) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero-stage .stage-hint {
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  white-space: nowrap;
  pointer-events: none;
}

/* aceternity-style spotlight beam */
.spotlight-beam {
  position: absolute;
  top: -40%; left: -10%;
  width: 138%; height: 169%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate(-18%, -22%) scale(0.6);
  animation: spotlightIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}
@media (min-width: 1024px) { .spotlight-beam { width: 84%; left: 12%; } }
@keyframes spotlightIn {
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* ibelick-style cursor glow */
.cursor-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(249, 233, 172, 0.16) 0%, rgba(242, 201, 76, 0.05) 45%, transparent 75%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-3d:hover .cursor-glow { opacity: 1; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-3d .hero-inner { padding-top: 96px; padding-bottom: 30px; }
  .hero-stage { height: 46vh; min-height: 340px; order: -1; }
  .hero-3d h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
}

/* nav over the dark hero (home, before scroll) */
body.home .nav:not(.scrolled) .nav-links a:not(.btn) { color: var(--cream); }
body.home .nav:not(.scrolled) .brand { color: var(--cream); }
body.home .nav:not(.scrolled) .brand .pre { color: var(--teal-300, #5fa8b4); }
body.home .nav:not(.scrolled) .nav-toggle span { background: var(--cream); }
.nav-links.open a:not(.btn) { color: var(--ink) !important; }

/* ---------- ritual video band ---------- */
.ritual { padding: 0; }
.ritual .frame {
  position: relative;
  border-radius: calc(var(--radius) * 1.6);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ritual video { width: 100%; display: block; }
.ritual .frame .tag {
  position: absolute;
  left: 24px; top: 24px;
  background: rgba(6, 39, 48, 0.75);
  color: var(--cream);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- intro veil (once per session) ---------- */

/* cinematic intro — black screen, staggered title, then reveals the film */
.veil {
  position: fixed; inset: 0; z-index: 200;
  background: #05080a;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s;
}
.veil.lift { opacity: 0; visibility: hidden; }
.veil-lines { text-align: center; display: grid; gap: 0.32em; padding: 0 22px; }
.veil .vl {
  display: block; color: var(--cream); font-family: var(--font-display);
  opacity: 0; will-change: transform, opacity, filter;
}
.veil .vl-1 {
  font-size: clamp(0.82rem, 2vw, 1.05rem); font-weight: 400; letter-spacing: 0.34em;
  text-transform: uppercase; color: rgba(246, 239, 226, 0.72);
  animation: vlFade 1s var(--ease) 0.25s both;
}
.veil .vl-2 {
  font-size: clamp(2.2rem, 7.5vw, 4.6rem); font-weight: 800; line-height: 1; letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: vlRise 1.05s var(--ease) 0.8s both;
}
.veil .vl-3 {
  font-size: clamp(3.4rem, 13vw, 8.4rem); font-weight: 800; line-height: 0.98; letter-spacing: 0.01em;
  text-transform: uppercase;
  animation: vlRise 1.15s var(--ease) 1.3s both, vlGlow 2.2s ease 1.55s both;
}
.veil .vl-3 .dot { color: var(--sun); }
@keyframes vlFade { from { opacity: 0; letter-spacing: 0.6em; } to { opacity: 0.72; letter-spacing: 0.34em; } }
@keyframes vlRise { from { opacity: 0; transform: translateY(0.5em); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes vlGlow { 0% { text-shadow: 0 0 0 rgba(242,201,76,0); } 55% { text-shadow: 0 0 46px rgba(242,201,76,0.42); } 100% { text-shadow: 0 0 22px rgba(242,201,76,0.16); } }

/* the film starts hidden under the intro, then fades in as the veil lifts */
.hero-video .hero-media { transition: opacity 1.2s var(--ease); }
body.intro-armed .hero-video .hero-media { opacity: 0; }

/* ---------- marquee ---------- */

.marquee {
  background: var(--teal-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 4;
  border-block: 1px solid rgba(247, 242, 233, 0.08);
}
.marquee .track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: marquee 34s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
}
.marquee .track span { display: inline-flex; align-items: center; gap: 52px; }
.marquee .track .sun-dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--sun); font-size: 0; opacity: 0.85;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- generic sections ---------- */

.section { padding: clamp(58px, 8vh, 108px) 0; position: relative; }
.section-head { display: grid; gap: 18px; max-width: 720px; margin-bottom: clamp(40px, 6vh, 70px); }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

/* ---------- night section (while you slept) ---------- */

.night {
  background:
    radial-gradient(120% 90% at 84% -20%, #10404c 0%, transparent 55%),
    linear-gradient(180deg, var(--night-deep) 0%, var(--night) 100%);
  color: var(--cream);
  padding: clamp(96px, 13vh, 168px) 0;
}
.night h2, .night h3 { color: var(--cream); }
.night .kicker { color: var(--sun); }
.night .kicker::before { background: var(--sun); }

.stars { display: none; }
.stars-legacy { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.stars i {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.25;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle { 50% { opacity: 0.75; transform: scale(1.4); } }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.stat-card {
  border: 1px solid rgba(247, 242, 233, 0.12);
  background: linear-gradient(180deg, rgba(247, 242, 233, 0.065), rgba(247, 242, 233, 0.015));
  border-radius: var(--radius);
  padding: 30px 28px 30px;
}
.stat-card .num { padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid rgba(247, 242, 233, 0.1); }
.stat-card p { color: var(--cream); opacity: 0.72; }
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--sun);
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-card p { margin-top: 12px; font-size: 0.95rem; opacity: 0.82; }
.night .foot-note { margin-top: 40px; font-size: 0.9rem; opacity: 0.55; font-style: italic; }

/* ---------- morning window (curve) ---------- */

.window-viz {
  margin-top: 30px;
  background:
    radial-gradient(120% 100% at 28% -10%, #10404c 0%, transparent 55%),
    linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%);
  border: 1px solid rgba(247, 242, 233, 0.08);
  border-radius: var(--radius);
  padding: 22px clamp(20px, 3vw, 30px) 18px;
  box-shadow: var(--shadow);
}
.window-viz .viz-label {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun); opacity: 0.92; margin-bottom: 6px;
}
.window-viz svg { width: 100%; height: auto; overflow: visible; }
.window-caption {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); opacity: 0.5; margin-top: 10px;
}
/* draw-in curve + fading layers when the panel scrolls into view */
.window-viz .viz-curve { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.window-viz .viz-area,
.window-viz .viz-band,
.window-viz .viz-dot,
.window-viz .viz-dot-core { opacity: 0; }
.window-viz.in .viz-curve { animation: vizDraw 1.7s var(--ease) 0.15s forwards; }
.window-viz.in .viz-area { animation: vizFade 1.2s ease 0.6s forwards; }
.window-viz.in .viz-band { animation: vizFade 1s ease 0.9s forwards; }
.window-viz.in .viz-dot { animation: vizFade 0.5s var(--ease) 1.35s forwards; }
.window-viz.in .viz-dot-core { animation: vizFade 0.5s var(--ease) 1.4s forwards; }
@keyframes vizDraw { to { stroke-dashoffset: 0; } }
@keyframes vizFade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .window-viz .viz-curve { stroke-dasharray: none; stroke-dashoffset: 0; }
  .window-viz .viz-area,
  .window-viz .viz-band,
  .window-viz .viz-dot,
  .window-viz .viz-dot-core { opacity: 1; }
}

.window-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .window-grid { grid-template-columns: 1fr; } }

/* ---------- six systems ---------- */

.systems { background: var(--cream-soft); }
.system-stack { display: grid; gap: 18px; }
.system-card {
  --accent: var(--teal);
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3.5vw, 44px);
  align-items: start;
  background:
    radial-gradient(90% 120% at 100% -10%, rgba(30, 120, 135, 0.12), transparent 46%),
    radial-gradient(80% 120% at 0% 125%, rgba(242, 201, 76, 0.06), transparent 52%),
    linear-gradient(158deg, #ffffff 0%, #eef6f5 100%);
  border: 1px solid rgba(30, 120, 135, 0.14);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 22px 54px rgba(12, 51, 60, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  max-width: 940px;
  margin: 0 auto;
  overflow: hidden;
}
/* soft glassy sheen across the top */
.system-card::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 45%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
}
.system-card > * { position: relative; z-index: 1; }
/* neon-blue hue circling the card currently pinned at the top of the stack */
@property --neon-ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.system-card.active {
  border-color: #46e0ff;
  animation: neonPulse 1.7s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1.5px #46e0ff,
      0 0 9px rgba(70, 224, 255, 0.75),
      0 0 24px rgba(70, 224, 255, 0.5),
      0 0 52px rgba(70, 224, 255, 0.26),
      0 22px 54px rgba(12, 51, 60, 0.11);
  }
  50% {
    box-shadow:
      0 0 0 2px #8bedff,
      0 0 16px rgba(70, 224, 255, 1),
      0 0 40px rgba(70, 224, 255, 0.62),
      0 0 84px rgba(70, 224, 255, 0.36),
      0 22px 54px rgba(12, 51, 60, 0.11);
  }
}
@media (prefers-reduced-motion: reduce) {
  .system-card.active { animation: none; box-shadow: 0 0 0 1.5px #46e0ff, 0 0 20px rgba(70,224,255,0.5), 0 22px 54px rgba(12,51,60,0.11); }
}
.system-card.active::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 2px;
  z-index: 0; pointer-events: none;
  background: conic-gradient(from var(--neon-ang), transparent 0 50%, #3fd0ff 66%, #c4f4ff 77%, #3fd0ff 86%, transparent 96%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: neonSpin 2.6s linear infinite;
}
@keyframes neonSpin { to { --neon-ang: 360deg; } }
@media (prefers-reduced-motion: reduce) { .system-card.active::before { animation: none; } }
.system-card .idx {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  opacity: 0.9;
  line-height: 1;
  min-width: 2ch;
}
.system-card .sys-ico {
  align-self: center;
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  border-radius: 20px;
  display: grid; place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.system-card .sys-ico svg { width: 46%; height: 46%; display: block; }
.system-card h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: 10px; }
.system-card .tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.system-card p { font-size: 0.98rem; max-width: 62ch; }
.system-card .cite { font-size: 0.78rem; opacity: 0.55; margin-top: 10px; font-style: italic; }
@media (max-width: 640px) {
  .system-card { grid-template-columns: auto 1fr; position: static; row-gap: 14px; }
  .system-card .idx { font-size: 1.7rem; }
  .system-card .sys-ico { grid-row: 1; grid-column: 2; justify-self: end; width: 52px; height: 52px; border-radius: 14px; }
  .system-card > div:not(.sys-ico) { grid-column: 1 / -1; }
}

/* ---------- split feature (image + copy) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split .pic {
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.split .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.split .pic:hover img { transform: scale(1.045); }
.split .pic .badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.check-list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; }
.check-list .tick {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sun-soft);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  margin-top: 2px;
}
.check-list .tick svg { width: 13px; height: 13px; display: block; }

/* ---------- compare table ---------- */

.compare {
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.compare .row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  align-items: center;
  padding: 16px clamp(16px, 3vw, 34px);
  border-top: 1px solid var(--sand);
  font-size: 0.95rem;
  gap: 10px;
}
.compare .row:first-child {
  border-top: 0;
  background: var(--teal-deep);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.compare .row .val { text-align: right; font-weight: 600; }
.compare .row .val.old { color: var(--ink); opacity: 0.4; text-decoration: line-through; text-decoration-thickness: 1px; }
.compare .row.total { background: var(--sun-soft); font-weight: 700; }
.compare .row.total .val.new { color: var(--teal-deep); font-family: var(--font-display); font-size: 1.2rem; }
.compare .yes { color: var(--teal); font-weight: 800; text-align: center; }
.compare .yes svg { width: 15px; height: 15px; display: inline-block; vertical-align: middle; }
@media (max-width: 560px) {
  .compare .row { grid-template-columns: 1.3fr 0.6fr 0.8fr; font-size: 0.82rem; }
}

/* ---------- manifesto ---------- */

.manifesto {
  background:
    radial-gradient(120% 90% at 50% -10%, #0e3843 0%, transparent 55%),
    var(--night-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(110px, 16vh, 200px) 0;
}
.manifesto .small-line {
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 26px;
}
.manifesto .big-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.manifesto .big-line .accent { color: var(--sun); }
.manifesto .sub {
  margin-top: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- day one club ---------- */

.club { background: linear-gradient(180deg, var(--cream) 0%, var(--sun-soft) 160%); }
.club-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) { .club-grid { grid-template-columns: 1fr; } }

.club-card {
  aspect-ratio: 1.586;
  border-radius: 26px;
  background:
    repeating-linear-gradient(128deg, rgba(255,255,255,0.035) 0 1.5px, transparent 1.5px 10px),
    radial-gradient(130% 120% at 15% 0%, #2f95a4 0%, var(--teal-deep) 52%, #0c414c 100%);
  border: 1px solid rgba(247, 242, 233, 0.12);
  color: var(--cream);
  padding: clamp(24px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 70px rgba(12, 51, 60, 0.35);
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
  position: relative;
  overflow: hidden;
}
.club-card:hover { transform: rotate(0deg) translateY(-6px); }
.club-card::after {
  content: "ADAM";
  position: absolute;
  right: -0.35em; bottom: -0.42em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 7.2rem;
  color: rgba(247, 242, 233, 0.07);
  letter-spacing: -0.03em;
  pointer-events: none;
}
.club-card .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.club-card .name { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.22em; font-size: 0.8rem; text-transform: uppercase; }
.club-card .sun-mark { width: 34px; height: 34px; }
.club-card .no { font-family: var(--font-display); font-weight: 300; letter-spacing: 0.3em; font-size: 0.95rem; opacity: 0.9; }
.club-card .foot { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.65; }
.club-card .cc-shine {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(116deg, transparent 32%, rgba(255,255,255,0.16) 47%, rgba(255,255,255,0.02) 54%, transparent 68%);
}
.club-card .top, .club-card .cc-member, .club-card .foot { position: relative; z-index: 2; }
.club-card .cc-member { margin: auto 0; display: flex; flex-direction: column; gap: 10px; }
.club-card .cc-label { font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.72; }
.club-card .cc-stamp {
  align-self: flex-start;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 3.5rem); line-height: 1; letter-spacing: 0.01em;
  color: var(--sun);
  border: 2.5px solid rgba(242, 201, 76, 0.6);
  border-radius: 12px; padding: 6px 16px 9px;
  display: inline-flex; align-items: baseline; gap: 7px;
  box-shadow: inset 0 0 0 1px rgba(242, 201, 76, 0.12);
  transform: rotate(-7deg);
  opacity: 0; /* stamped in on reveal */
}
.club-card .cc-stamp .cc-sym { font-size: 0.46em; font-weight: 700; opacity: 0.85; }
.reveal.in .club-card .cc-stamp { animation: stampIn 0.6s cubic-bezier(0.2, 1.5, 0.45, 1) 0.35s forwards; }
@keyframes stampIn {
  0%   { opacity: 0; transform: rotate(-13deg) scale(1.9); }
  55%  { opacity: 1; transform: rotate(-5deg) scale(0.9); }
  75%  { transform: rotate(-8deg) scale(1.05); }
  100% { opacity: 0.96; transform: rotate(-7deg) scale(1); }
}
.club-note {
  margin: 22px auto 0; max-width: 340px; text-align: center;
  font-size: 0.82rem; color: var(--ink); opacity: 0.55;
}
@media (prefers-reduced-motion: reduce) {
  .club-card .cc-stamp { opacity: 0.96; transform: rotate(-7deg) scale(1); animation: none; }
}

.perks { list-style: none; display: grid; gap: 16px; margin: 26px 0 34px; }
.perks li { display: flex; gap: 16px; align-items: flex-start; }
.perks .p-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(30, 120, 135, 0.08);
  border: 1px solid var(--line);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.perks .p-ico svg { width: 20px; height: 20px; display: block; }
.perks b { font-family: var(--font-display); display: block; font-size: 1rem; }
.perks p { font-size: 0.92rem; opacity: 0.75; }

/* ---------- FAQ ---------- */

.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sun-soft);
  color: var(--teal-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .a { padding: 0 26px 24px; max-width: 68ch; font-size: 0.97rem; }
.faq-item .a p + p { margin-top: 10px; }

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(150px, 22vh, 230px) 0 clamp(50px, 8vh, 90px);
  position: relative;
  overflow: hidden;
}
.page-hero .ghost {
  position: absolute;
  right: -4vw; top: 8vh;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 24vw, 22rem);
  color: var(--sand);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-hero .wrap { position: relative; z-index: 1; }

/* ---------- ingredient / pillar grids ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar .ico {
  width: 46px; height: 46px; margin-bottom: 16px;
  display: grid; place-items: center; border-radius: 13px;
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 20%, transparent);
}
.pillar .ico svg { width: 24px; height: 24px; display: block; }
.pillar h3 { font-size: 1.08rem; margin-bottom: 8px; }
.pillar p { font-size: 0.92rem; opacity: 0.8; }
.pillar .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pillar .pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--cream);
  border: 1px solid var(--sand-deep);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 5px 12px;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.badge-strip .qb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed var(--teal);
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
}
.badge-strip .qb svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ---------- supplement facts (from the printed label) ---------- */

.facts-panel {
  background: #fff;
  color: #111;
  border: 2.5px solid #111;
  border-radius: 6px;
  padding: 18px 20px;
  max-width: 460px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-shadow: var(--shadow);
}
.facts-panel h3 {
  font-family: inherit;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
}
.facts-panel .serv { font-size: 0.82rem; margin-top: 6px; line-height: 1.45; }
.facts-panel .bar { height: 9px; background: #111; margin: 10px 0 0; }
.facts-panel .bar.thin { height: 4px; }
.facts-panel table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.facts-panel th {
  text-align: right; font-size: 0.72rem; padding: 6px 0 4px;
  border-bottom: 3px solid #111;
}
.facts-panel th:first-child { text-align: left; }
.facts-panel td { padding: 4.5px 0; border-bottom: 1px solid #999; }
.facts-panel tr.grp td { font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 9px 0 3px; border-bottom: 1px solid #111; }
.facts-panel td:nth-child(2) { text-align: right; white-space: nowrap; }
.facts-panel td:nth-child(3) { text-align: right; width: 24%; }
.facts-panel tr:last-child td { border-bottom: 0; }
.facts-panel .fine { font-size: 0.72rem; margin-top: 8px; line-height: 1.5; }
.facts-panel .fine + .fine { border-top: 1px solid #999; padding-top: 6px; }

.use-card {
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
}
.use-card .glass {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 12px;
  color: var(--teal);
  background: color-mix(in srgb, var(--teal) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--teal) 20%, transparent);
}
.use-card .glass svg { width: 24px; height: 24px; display: block; }
.use-card b { font-family: var(--font-display); display: block; margin-bottom: 4px; color: var(--teal-deep); }
.label-note { font-size: 0.78rem; opacity: 0.6; font-style: italic; margin-top: 14px; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(100% 160% at 50% 130%, rgba(242, 201, 76, 0.35) 0%, transparent 55%),
    var(--teal-deep);
  color: var(--cream);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(50px, 8vw, 90px);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); max-width: 20ch; margin: 0 auto; }
.cta-band .script { color: var(--sun); }
.cta-band .waitlist-form { margin: 0 auto; }
.cta-band .waitlist-form .row { border-color: transparent; }
.cta-band .waitlist-form .note { color: var(--cream); opacity: 0.65; }
.cta-band .waitlist-form .msg.ok { color: var(--sun); }

/* ---------- footer ---------- */

footer {
  background: var(--night-deep);
  color: var(--cream);
  padding: clamp(60px, 9vh, 100px) 0 40px;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, minmax(140px, 0.8fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247, 242, 233, 0.14);
}
@media (max-width: 760px) { footer .cols { grid-template-columns: 1fr; } }
footer .brand { color: var(--cream); font-size: 1.5rem; }
footer .tagline { margin-top: 12px; font-size: 0.9rem; opacity: 0.6; max-width: 34ch; }
footer h4 {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sun); margin-bottom: 18px; font-weight: 700;
}
footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.92rem; }
footer ul a { opacity: 0.75; transition: opacity 0.25s; }
footer ul a:hover { opacity: 1; }
footer .legal {
  padding-top: 30px;
  display: grid;
  gap: 16px;
  font-size: 0.76rem;
  opacity: 0.5;
  line-height: 1.7;
}
footer .legal .row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }

/* ---------- utilities ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(30px, 5vw, 70px); }
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

.mt-1 { margin-top: 14px; } .mt-2 { margin-top: 28px; } .mt-3 { margin-top: 46px; }

.counters { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 70px); margin-top: 40px; }
.counters .c { display: grid; gap: 4px; }
.counters .c .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--teal); line-height: 1;
}
.counters .c .l { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; opacity: 0.7; }

/* ---------- flavor lifestyle band (full-bleed image behind copy) ---------- */
.flavor-band {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: center;
  min-height: min(88vh, 760px);
  background: var(--night-deep);
}
.flavor-band .flavor-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* mobile — full-bleed, centered pouch */
  background: url(../img/lifestyle-pouch.jpg) center 42% / cover no-repeat;
}
@media (min-width: 900px) {
  /* desktop — zoom a touch and park the pouch in the right third so the
     copy sits over the open, shadowed left of the scene */
  .flavor-band .flavor-bg { background-size: 148% auto; background-position: 6% 42%; }
}
.flavor-band .flavor-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* darken the open left where the copy sits, ease off over the pouch */
  background:
    linear-gradient(90deg, rgba(4,24,30,0.94) 0%, rgba(4,24,30,0.86) 26%, rgba(4,24,30,0.52) 48%, rgba(4,24,30,0.22) 68%, rgba(4,24,30,0.30) 100%),
    linear-gradient(180deg, rgba(4,24,30,0.28), rgba(4,24,30,0.42));
}
.flavor-band .wrap { position: relative; z-index: 1; }
.flavor-band .flavor-content { max-width: 620px; }
.flavor-band h2 { color: var(--cream); text-shadow: 0 2px 34px rgba(0,0,0,0.4); }
.flavor-band .kicker { color: var(--sun); }
.flavor-band .kicker::before { background: var(--sun); }
.flavor-band .check-list li { color: var(--cream); }
.flavor-band .counters .c .n { color: var(--sun); }
.flavor-band .counters .c .l { color: var(--cream); opacity: 0.72; }
.flavor-band .flavor-flag {
  position: absolute;
  z-index: 1;
  top: clamp(20px, 4vw, 42px);
  right: clamp(20px, 4vw, 46px);
  background: rgba(247, 242, 233, 0.14);
  border: 1px solid rgba(247, 242, 233, 0.30);
  color: var(--cream);
  backdrop-filter: blur(6px);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 17px; border-radius: 999px;
}
@media (max-width: 700px) {
  .flavor-band .flavor-bg::after {
    background: linear-gradient(180deg, rgba(5,16,20,0.5) 0%, rgba(5,16,20,0.72) 58%, rgba(5,16,20,0.84) 100%);
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .marquee .track { animation: none; }
}
