/* ============================================================
   Move Phase — one-page landing (test variant)
   Layered ON TOP of theme.css (design tokens + ph- utilities).
   Namespace: lp-
   ============================================================ */

:root {
  --lp-blue: #5fb8ff;
  --lp-red: #ff5f6d;
  --lp-countbar-h: 38px;
  --lp-header-h: 68px;
  --lp-pad: clamp(20px, 5vw, 56px);
}

html {
  scroll-behavior: smooth;
  /* fixed chrome: progress + countbar + header */
  scroll-padding-top: calc(var(--lp-countbar-h) + var(--lp-header-h) + 16px);
}

.lp-wrap {
  width: min(100% - 2 * var(--lp-pad), 1280px);
  margin-inline: auto;
}

/* sentence-length microcopy = Satoshi, never mono (mono = label rule) */
.lp-micro {
  font-family: var(--ph-font-body);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(243, 239, 230, 0.55);
}

.lp-link {
  color: var(--ph-bone);
  text-decoration: none;
  border-bottom: 1px solid var(--ph-line);
  transition: color var(--ph-dur-fast) ease, border-color var(--ph-dur-fast) ease;
}
.lp-link:hover { color: var(--ph-acid); border-color: var(--ph-acid); }

/* Section heading scale — Clash, uppercase, italic accents stay lowercase serif */
.lp-h2 {
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ph-bone);
  margin: 0;
}
.lp-h2 .ph-italic { text-transform: none; letter-spacing: -0.005em; }

.lp-body {
  font-family: var(--ph-font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--ph-mist);
  max-width: 56ch;
}

/* EXAMPLE / PLACEHOLDER chip — visible, honest, designed */
.lp-ex {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 2px 8px 1px;
  border: 1px solid rgba(255, 181, 107, 0.55);
  border-radius: 999px;
  font-family: var(--ph-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ph-amber);
  white-space: nowrap;
}

/* Example-content notice strip */
.lp-notice {
  margin: 0 0 clamp(28px, 4vw, 44px);
  padding: 14px 18px;
  border: 1px dashed rgba(255, 181, 107, 0.45);
  border-radius: 12px;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 181, 107, 0.9);
  max-width: 62ch;
}
.lp-notice strong { color: var(--ph-amber); }

.lp-stars {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ph-acid);
}

/* ============ Scroll progress hairline ============ */
.lp-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 240;
  background: transparent;
  pointer-events: none;
}
.lp-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ph-acid), var(--ph-glow));
  box-shadow: 0 0 10px rgba(200, 255, 61, 0.55);
}

/* ============ Countdown bar (EXAMPLE) ============ */
.lp-countbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--lp-countbar-h);
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: #0b0d10;
  border-bottom: 1px solid var(--ph-line);
  font-family: var(--ph-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.78);
  white-space: nowrap;
  overflow: hidden;
}
.lp-countbar strong { color: var(--ph-acid); font-weight: 600; }
.lp-countbar__sep { color: rgba(243, 239, 230, 0.3); }

/* ============ Header ============ */
.lp-header {
  position: fixed;
  top: var(--lp-countbar-h);
  left: 0; right: 0;
  height: var(--lp-header-h);
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--lp-pad);
  transition: background var(--ph-dur) ease, backdrop-filter var(--ph-dur) ease;
}
.lp-header.is-stuck {
  background: rgba(7, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ph-line);
}
.lp-header__logo {
  font-family: var(--ph-font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ph-bone);
  text-decoration: none;
}
.lp-header__logo span { color: var(--ph-acid); }
.lp-header__right { display: flex; align-items: center; gap: 14px; }
.lp-header__buy { min-height: 44px; padding: 12px 22px; font-size: 11px; }

.lp-burger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  background: rgba(7, 8, 10, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ph-line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ph-bone);
  transition: border-color var(--ph-dur-fast) ease;
}
.lp-burger:hover { border-color: var(--ph-line-strong); }
.lp-burger__lines { display: flex; flex-direction: column; gap: 5px; width: 18px; }
.lp-burger__lines i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ph-dur) var(--ph-ease-out), opacity var(--ph-dur-fast) ease;
}
.lp-burger__label {
  font-family: var(--ph-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
body.lp-menu-open .lp-burger__lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
body.lp-menu-open .lp-burger__lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ Takeover menu ============ */
.lp-takeover {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 5vh, 56px);
  padding: calc(var(--lp-countbar-h) + var(--lp-header-h) + 24px) var(--lp-pad) 40px;
  background: rgba(7, 8, 10, 0.92);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ph-dur) ease, visibility 0s linear var(--ph-dur);
}
body.lp-menu-open .lp-takeover {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--ph-dur) ease;
}
.lp-takeover__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.4vh, 14px);
}
.lp-takeover__links a {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.6vh, 48px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ph-bone);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: color var(--ph-dur-fast) ease, opacity 0.5s var(--ph-ease-out), transform 0.5s var(--ph-ease-out);
  transition-delay: 0ms, var(--d, 0ms), var(--d, 0ms);
}
body.lp-menu-open .lp-takeover__links a { opacity: 1; transform: translateY(0); }
.lp-takeover__links li:nth-child(1) a { --d: 60ms; }
.lp-takeover__links li:nth-child(2) a { --d: 110ms; }
.lp-takeover__links li:nth-child(3) a { --d: 160ms; }
.lp-takeover__links li:nth-child(4) a { --d: 210ms; }
.lp-takeover__links li:nth-child(5) a { --d: 260ms; }
.lp-takeover__links li:nth-child(6) a { --d: 310ms; }
.lp-takeover__links li:nth-child(7) a { --d: 360ms; }
.lp-takeover__links a:hover { color: var(--ph-acid); }
.lp-takeover__links a span {
  font-family: var(--ph-font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(243, 239, 230, 0.4);
}
.lp-takeover__links .is-cta a { color: var(--ph-acid); }
.lp-takeover__links .is-cta a em { font-style: normal; font-size: 0.7em; }
.lp-takeover__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  color: rgba(243, 239, 230, 0.55);
}
.lp-takeover__foot a { color: var(--ph-bone); text-decoration: none; }
.lp-takeover__foot a:hover { color: var(--ph-acid); }

/* ============ HERO ============ */
.lp-hero {
  position: relative;
  margin-top: var(--lp-countbar-h);
  height: calc(100svh - var(--lp-countbar-h));
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ph-black);
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* bottle lives in the clip's right third — keep it out of cover-crop */
  object-position: 72% center;
  z-index: 0;
}
.lp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* same scrim family as the movie hero: pool shadow under the text floor (left),
     leave the bottle column (right third) in light */
  background:
    radial-gradient(100% 60% at 28% 118%, rgba(7,8,10,0.95) 0%, rgba(7,8,10,0.5) 38%, rgba(7,8,10,0) 68%),
    linear-gradient(90deg, rgba(7,8,10,0.92) 0%, rgba(7,8,10,0.6) 26%, rgba(7,8,10,0.2) 46%, rgba(7,8,10,0) 64%),
    linear-gradient(180deg, rgba(7,8,10,0.55) 0%, rgba(7,8,10,0.05) 24%, rgba(7,8,10,0) 52%, rgba(7,8,10,0.15) 78%, rgba(7,8,10,0.55) 100%);
}
.lp-hero__top {
  position: absolute;
  z-index: 2;
  top: calc(var(--lp-header-h) + clamp(18px, 4vh, 44px));
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--lp-pad);
  font-family: var(--ph-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.72);
}
.lp-hero__chapter { display: inline-flex; align-items: center; gap: 12px; }
.lp-hero__tick {
  width: clamp(22px, 3vw, 44px);
  height: 2px;
  background: var(--ph-acid);
  box-shadow: 0 0 10px rgba(200, 255, 61, 0.7);
}
.lp-hero__mark { color: var(--ph-acid); }

.lp-hero__stage {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(880px, 68vw);
  padding: 0 16px clamp(64px, 10vh, 120px) var(--lp-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.8vh, 30px);
  will-change: translate;
}
.lp-hero__headline {
  margin: 0;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ph-bone);
  /* filter, not text-shadow — word reveal spans would clip a text-shadow into boxes */
  filter: drop-shadow(0 2px 8px rgba(7,8,10,0.6)) drop-shadow(0 8px 34px rgba(7,8,10,0.72));
}
.lp-hero__line { display: block; }
.lp-hero__lede {
  margin: 0;
  max-width: 44ch;
  font-family: var(--ph-font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(243, 239, 230, 0.82);
  text-shadow: 0 1px 16px rgba(7,8,10,0.5);
}
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  color: rgba(243, 239, 230, 0.66);
}
.lp-hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.lp-hero__trust li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 14px;
  background: rgba(243, 239, 230, 0.25);
}
.lp-hero__cue {
  position: absolute;
  z-index: 2;
  bottom: clamp(20px, 3.5vh, 44px);
  right: var(--lp-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ph-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.6);
  transition: opacity 0.4s ease;
}
.lp-hero__cue i {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(243,239,230,0.6), rgba(243,239,230,0));
  animation: lp-cue 2.4s var(--ph-ease-inout) infinite;
  transform-origin: top;
}
@keyframes lp-cue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* word-reveal spans (built by JS) */
.lp-word { display: inline-block; }
.lp-word-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.42em);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}
.lp-hero [data-late] { opacity: 0; transform: translateY(18px); will-change: opacity, transform; }

/* accent word — solid acid base + travelling light band, both clipped to the glyphs.
   NEVER sweep the only paint source off the text (banked movie-hero gotcha). */
.lp-shine {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  background-image:
    linear-gradient(100deg,
      rgba(255,255,255,0) 42%,
      rgba(245,255,210,0.85) 48%,
      #ffffff 50%,
      rgba(245,255,210,0.85) 52%,
      rgba(255,255,255,0) 58%),
    linear-gradient(var(--ph-acid), var(--ph-acid));
  background-size: 280% 100%, 200% 360%;
  background-position: 180% 0, center;
  background-repeat: no-repeat, no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(200, 255, 61, 0.28));
  animation: lp-shine 5.4s ease-in-out 1.2s infinite;
}
@keyframes lp-shine {
  0%   { background-position: 180% 0, center; }
  46%  { background-position: -80% 0, center; }
  100% { background-position: -80% 0, center; }
}

/* ============ Marquee divider ============ */
.lp-marquee {
  padding: clamp(22px, 3vw, 36px) 0;
  background: var(--ph-black);
}
.lp-marquee__group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.82);
  white-space: nowrap;
}
.lp-marquee__group i {
  font-style: normal;
  font-size: 0.65em;
  color: var(--ph-acid);
}
.lp-marquee__it {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--ph-acid);
}

/* ============ Sections — shared rhythm ============ */
.lp-story, .lp-journey, .lp-how, .lp-inside, .lp-reviews, .lp-buy, .lp-faq {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
  background: var(--ph-black);
}

/* ============ LIFE STRIP — real brand photography ============ */
.lp-life {
  position: relative;
  padding: 0 0 clamp(88px, 11vw, 150px);
  background: var(--ph-black);
}
.lp-life__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.lp-life__line {
  margin: 0;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-life__line .ph-italic { text-transform: none; }
.lp-life__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
}
.lp-life__card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* middle card drops — editorial rhythm, not a flat row */
.lp-life__card--drop { margin-top: clamp(24px, 3.4vw, 56px); }
.lp-life__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--ph-radius);
  border: 1px solid var(--ph-line);
  filter: saturate(0.92) contrast(1.02);
  transition: transform var(--ph-dur) var(--ph-ease-out), border-color var(--ph-dur-fast) ease;
}
.lp-life__card:hover img {
  transform: translateY(-4px);
  border-color: var(--ph-line-strong);
}
.lp-life__card figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ph-font-body);
  font-size: 14px;
  color: var(--ph-mist);
}
.lp-life__card figcaption span {
  font-family: var(--ph-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ph-acid);
}

/* ============ STORY ============ */
.lp-story__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px);
  align-items: start;
}
/* NOT sticky: in a multi-row grid Chrome confines sticky to the whole grid,
   so the head rode down over the costs panel — hard text collision. */
.lp-story__head {
  grid-column: 1 / 6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-story__body {
  grid-column: 7 / 13;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  font-family: var(--ph-font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ph-mist);
  max-width: 58ch;
}
.lp-story__quote {
  grid-column: 1 / 13;
  margin: clamp(16px, 3vw, 40px) 0;
  padding: 0;
}
.lp-story__quote p {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.12;
  color: var(--ph-bone);
  text-align: center;
  text-wrap: balance;
}
.lp-story__quote em { color: var(--ph-acid); font-style: italic; }
.lp-story__costs {
  grid-column: 1 / 6;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--ph-line);
  border-radius: var(--ph-radius);
  background: linear-gradient(160deg, rgba(21, 24, 29, 0.65), rgba(7, 8, 10, 0.4));
}
.lp-story__costs-title {
  margin: 0 0 16px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-story__costs ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-story__costs li {
  position: relative;
  padding-left: 26px;
  font-family: var(--ph-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ph-mist);
}
.lp-story__costs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 2px;
  background: var(--ph-acid);
}
.lp-story__body--turn { grid-column: 7 / 13; }
.lp-story__land {
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-story__land .ph-italic { text-transform: none; }
.lp-story__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

/* ============ JOURNEY (signature) ============ */
.lp-journey__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(56px, 8vw, 110px);
  max-width: 760px;
}
.lp-journey__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 10vw, 140px);
  padding: clamp(20px, 3vw, 40px) 0 clamp(40px, 5vw, 72px);
}
.lp-journey__beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(243, 239, 230, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.lp-journey__beam span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--ph-acid) 0%, var(--ph-acid) 30%, var(--lp-blue) 62%, var(--lp-red) 100%);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.5);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}
.lp-jphase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: center;
}
.lp-jphase__node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--ph-ink);
  border: 2px solid rgba(243, 239, 230, 0.25);
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.lp-jphase.is-lit .lp-jphase__node {
  background: var(--pa);
  border-color: var(--pa);
  box-shadow: 0 0 0 6px rgba(var(--pa-rgb), 0.16), 0 0 22px rgba(var(--pa-rgb), 0.65);
}
.lp-jphase__ghost {
  font-family: var(--ph-font-display);
  font-weight: 700;
  font-size: clamp(110px, 16vw, 230px);
  line-height: 0.8;
  color: transparent;
  /* width + color split so the stroke COLOR can transition when the node ignites */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(var(--pa-rgb), 0.22);
  user-select: none;
  justify-self: center;
  align-self: center;
  transition: opacity 0.6s ease, -webkit-text-stroke-color 0.6s ease, filter 0.6s ease;
  opacity: 0.55;
}
/* beam reaches the node → the outline itself pops: brighter stroke + a soft
   accent halo hugging the digits. Outline only — the fill stays transparent. */
.lp-jphase.is-lit .lp-jphase__ghost {
  opacity: 1;
  -webkit-text-stroke-color: rgba(var(--pa-rgb), 0.8);
  filter: drop-shadow(0 0 14px rgba(var(--pa-rgb), 0.4)) drop-shadow(0 0 42px rgba(var(--pa-rgb), 0.22));
}
/* alternate: odd cards left of beam, even cards right */
.lp-jphase--one .lp-jphase__card, .lp-jphase--three .lp-jphase__card { grid-column: 1; grid-row: 1; }
.lp-jphase--one .lp-jphase__ghost, .lp-jphase--three .lp-jphase__ghost { grid-column: 3; grid-row: 1; }
.lp-jphase--two .lp-jphase__card { grid-column: 3; grid-row: 1; }
.lp-jphase--two .lp-jphase__ghost { grid-column: 1; grid-row: 1; }

.lp-jphase__card {
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(var(--pa-rgb), 0.22);
  border-radius: var(--ph-radius-lg);
  background:
    radial-gradient(120% 130% at 18% 0%, rgba(var(--pa-rgb), 0.08) 0%, rgba(var(--pa-rgb), 0) 52%),
    linear-gradient(165deg, rgba(21, 24, 29, 0.9), rgba(7, 8, 10, 0.72));
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.lp-jphase.is-lit .lp-jphase__card {
  border-color: rgba(var(--pa-rgb), 0.5);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(var(--pa-rgb), 0.35);
}
.lp-jphase__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(var(--pa-rgb), 0.5);
  border-radius: 999px;
  font-family: var(--ph-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pa);
}
.lp-jphase__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pa);
  box-shadow: 0 0 8px rgba(var(--pa-rgb), 0.8);
}
.lp-jphase__title {
  margin: 18px 0 6px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-jphase.is-lit .lp-jphase__title {
  text-shadow: 0 0 32px rgba(var(--pa-rgb), 0.3);
}
.lp-jphase__name {
  margin: 0 0 14px;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  letter-spacing: 0.005em;
  color: rgba(var(--pa-rgb), 0.85);
}
.lp-jphase__copy {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ph-mist);
  max-width: 48ch;
}
.lp-jphase__expect {
  list-style: none;
  margin: 20px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--ph-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-jphase__expect li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ph-font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ph-mist);
}
.lp-jphase__expect li span {
  flex: 0 0 auto;
  font-family: var(--ph-font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pa);
}
.lp-jphase__cta { margin-top: 22px; }

/* ============ BREAK — full-bleed product scene between black sections ============ */
.lp-break {
  position: relative;
  height: clamp(440px, 72vh, 720px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}
.lp-break__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-break__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  /* slow ambient drift — the window feels alive; exempt from reduce-motion (project ambient rule) */
  animation: lp-break-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes lp-break-drift {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.1) translateY(-2.2%); }
}
.lp-break__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* melt the window into the black page above and below + anchor the text floor left */
  background:
    linear-gradient(180deg, var(--ph-black) 0%, rgba(7,8,10,0) 22%, rgba(7,8,10,0) 62%, rgba(7,8,10,0.78) 88%, var(--ph-black) 100%),
    linear-gradient(90deg, rgba(7,8,10,0.62) 0%, rgba(7,8,10,0.25) 36%, rgba(7,8,10,0) 62%);
}
.lp-break__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 2.4vh, 26px);
  padding-bottom: clamp(48px, 8vh, 88px);
}
.lp-break__line {
  margin: 0;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ph-bone);
  filter: drop-shadow(0 2px 10px rgba(7,8,10,0.55));
}
.lp-break__line .ph-italic { text-transform: none; }

/* ============ HOW TO USE ============ */
.lp-how__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.lp-how__media {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lp-how__media img {
  position: relative;
  z-index: 1;
  width: min(78%, 360px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}
.lp-how__halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 120%;
  aspect-ratio: 1;
  transform: translate(-50%, -54%);
  background: radial-gradient(closest-side, rgba(200, 255, 61, 0.16) 0%, rgba(200, 255, 61, 0.05) 45%, transparent 70%);
  pointer-events: none;
}
/* photo variant — real table scene instead of the transparent PNG */
.lp-how__media--photo img {
  width: 100%;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-line);
  filter: saturate(0.94) contrast(1.02);
}
.lp-how__steps { display: flex; flex-direction: column; gap: 18px; }
.lp-how__list {
  list-style: none;
  margin: clamp(16px, 2vw, 28px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lp-how__list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.4vw, 32px);
  padding: clamp(20px, 2.4vw, 30px) 0;
  border-top: 1px solid var(--ph-line);
}
.lp-how__list li:last-child { border-bottom: 1px solid var(--ph-line); }
.lp-how__num {
  flex: 0 0 auto;
  font-family: var(--ph-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ph-acid);
  padding-top: 5px;
}
.lp-how__list h3 {
  margin: 0 0 6px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-how__list p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ph-mist);
  max-width: 50ch;
}

/* ============ WHAT'S INSIDE ============ */
.lp-inside__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin-bottom: clamp(40px, 5.5vw, 72px);
}
.lp-inside__claims {
  list-style: none;
  margin: 0 0 clamp(36px, 5vw, 64px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.lp-inside__claims li {
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid var(--ph-line);
  border-radius: var(--ph-radius);
  background: linear-gradient(165deg, rgba(21, 24, 29, 0.7), rgba(7, 8, 10, 0.5));
  transition: border-color var(--ph-dur-fast) ease, transform var(--ph-dur) var(--ph-ease-out);
}
.lp-inside__claims li:hover {
  border-color: rgba(200, 255, 61, 0.35);
  transform: translateY(-4px);
}
.lp-inside__idx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ph-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ph-acid);
}
.lp-inside__idx::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(200, 255, 61, 0.5);
}
.lp-inside__claims h3 {
  margin: 14px 0 8px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-inside__claims p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ph-mist);
}
/* photo + ingredient panel pair */
.lp-inside__row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(20px, 2.6vw, 36px);
  align-items: stretch;
}
.lp-inside__media {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-inside__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--ph-radius-lg);
  border: 1px solid var(--ph-line);
  filter: saturate(0.92) contrast(1.02);
}
/* real label data now — solid border, no more dashed placeholder framing */
.lp-inside__label {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--ph-line-strong);
  border-radius: var(--ph-radius-lg);
  background: linear-gradient(165deg, rgba(21, 24, 29, 0.8), rgba(7, 8, 10, 0.55));
}
.lp-inside__label-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.lp-inside__label-head h3 {
  margin: 0;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-inside__label-per {
  font-family: var(--ph-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.45);
  margin-left: auto;
}
.lp-inside__ings {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(20px, 2.6vw, 40px);
}
.lp-inside__ings li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--ph-line);
}
.lp-inside__ings li div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lp-inside__ings li span {
  font-family: var(--ph-font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ph-bone);
}
.lp-inside__ings li em {
  font-style: normal;
  font-family: var(--ph-font-body);
  font-size: 12px;
  color: rgba(243, 239, 230, 0.5);
}
.lp-inside__ings li b {
  flex: 0 0 auto;
  font-family: var(--ph-font-mono);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ph-acid);
}

/* ============ REVIEWS ============ */
.lp-reviews__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.lp-reviews__score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 15px;
  color: var(--ph-mist);
}
.lp-reviews__score strong {
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--ph-bone);
}
/* --- Inside-the-sphere review wall (phantom.land-style) ---------------------
   .lp-orbit is the camera: `perspective` puts the eye INSIDE a sphere of cards.
   Cards are absolutely centered, then placed by JS via
   `rotateY(θ) rotateX(φ) translateZ(-R)` so each card sits on the inner
   surface facing the viewer. Spin/tilt/drag live in lp.js §10. Cards near the
   edges foreshorten hard — that's the warp, don't fight it. */
.lp-orbit {
  position: relative;
  height: clamp(480px, 68vh, 680px);
  margin-top: clamp(18px, 2.6vw, 40px);
  perspective: 620px;
  perspective-origin: 50% 50%;
  overflow: clip;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  --orbit-card-w: 300px;
  --orbit-card-h: 212px;
  --orbit-gap: 56px;
  --orbit-row: 15; /* row latitude in deg — JS reads this per breakpoint */
}
.lp-orbit.is-dragging { cursor: grabbing; }
.lp-orbit::before {
  /* faint pool of light at the centre of the sphere */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 42% at 50% 50%, rgba(200, 255, 61, 0.05) 0%, rgba(200, 255, 61, 0) 70%);
  pointer-events: none;
}
.lp-orbit__stage {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.lp-orbit__fade {
  /* cards melt into the void at the edges instead of cropping flat */
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--ph-black) 0%, rgba(7, 8, 10, 0) 12%, rgba(7, 8, 10, 0) 88%, var(--ph-black) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.9) 0%, rgba(7, 8, 10, 0) 16%, rgba(7, 8, 10, 0) 84%, rgba(7, 8, 10, 0.9) 100%);
}
.lp-orb-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-card-w);
  height: var(--orbit-card-h);
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 20px;
  border: 1px solid var(--ph-line);
  border-radius: var(--ph-radius);
  background: linear-gradient(165deg, rgba(21, 24, 29, 0.92), rgba(7, 8, 10, 0.88));
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.lp-orb-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-orb-card__ava {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 255, 61, 0.1);
  border: 1px solid rgba(200, 255, 61, 0.22);
  font-family: var(--ph-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ph-acid);
}
.lp-orb-card__who {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  font-family: var(--ph-font-body);
}
.lp-orb-card__who strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ph-bone);
}
.lp-orb-card__who span {
  font-size: 12px;
  color: rgba(243, 239, 230, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-orb-card__top .lp-ex { margin-left: auto; flex-shrink: 0; }
.lp-orb-card .lp-stars { font-size: 13px; }
.lp-orb-card__text {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ph-mist);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-orb-card__ver {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ph-font-body);
  font-size: 12px;
  color: rgba(243, 239, 230, 0.55);
}
.lp-orb-card__ver::before {
  content: "✓";
  color: var(--ph-acid);
  font-weight: 700;
}

/* ============ BUY ============ */
.lp-buy {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(200, 255, 61, 0.06) 0%, rgba(200, 255, 61, 0) 60%),
    var(--ph-black);
}
.lp-buy__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.lp-buy__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.lp-buy__product {
  position: sticky;
  top: calc(var(--lp-countbar-h) + var(--lp-header-h) + 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.lp-buy__media { position: relative; width: 100%; display: flex; justify-content: center; }
.lp-buy__media img {
  position: relative;
  z-index: 1;
  width: min(64%, 320px);
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}
.lp-buy__halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 110%;
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  background: radial-gradient(closest-side, rgba(200, 255, 61, 0.15) 0%, rgba(200, 255, 61, 0.04) 45%, transparent 70%);
  pointer-events: none;
}
.lp-buy__name {
  margin: 18px 0 0;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ph-bone);
}
.lp-buy__sub {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 14px;
  color: var(--ph-mist);
}
.lp-buy__bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.lp-buy__bullets li {
  position: relative;
  padding-left: 24px;
  font-family: var(--ph-font-body);
  font-size: 14.5px;
  color: var(--ph-mist);
}
.lp-buy__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 13px;
  height: 2px;
  background: var(--ph-acid);
}
.lp-buy__offers {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}
.lp-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--ph-line);
  border-radius: var(--ph-radius-lg);
  background: linear-gradient(165deg, rgba(21, 24, 29, 0.85), rgba(7, 8, 10, 0.65));
}
.lp-offer--featured {
  border-color: rgba(200, 255, 61, 0.45);
  box-shadow: 0 0 60px -24px rgba(200, 255, 61, 0.35);
}
.lp-offer__flag {
  position: absolute;
  top: -13px;
  left: clamp(24px, 3vw, 38px);
  padding: 5px 14px;
  background: var(--ph-acid);
  color: var(--ph-black);
  border-radius: 999px;
  font-family: var(--ph-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lp-offer__head h4 {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-offer__head p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  color: var(--ph-mist);
}
.lp-offer__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}
.lp-offer__price s {
  font-family: var(--ph-font-body);
  font-size: 18px;
  color: rgba(243, 239, 230, 0.4);
}
.lp-offer__price strong {
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  color: var(--ph-acid);
}
.lp-offer__price span {
  font-family: var(--ph-font-body);
  font-size: 14px;
  color: var(--ph-mist);
}
.lp-offer__perks {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--ph-line);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-offer__perks li {
  position: relative;
  padding-left: 24px;
  font-family: var(--ph-font-body);
  font-size: 14.5px;
  color: var(--ph-mist);
}
.lp-offer__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  color: var(--ph-acid);
}
.lp-offer__timer {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  color: var(--ph-mist);
}
.lp-offer__timer strong {
  font-family: var(--ph-font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ph-amber);
}
.lp-offer__cta { align-self: flex-start; }
.lp-buy__trust {
  list-style: none;
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: clamp(24px, 3vw, 40px) 0 0;
  border-top: 1px solid var(--ph-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.lp-buy__trust h5 {
  margin: 0 0 8px;
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ph-bone);
}
.lp-buy__trust p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ph-mist);
}

/* ============ FAQ ============ */
.lp-faq__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.lp-faq__head {
  position: sticky;
  top: calc(var(--lp-countbar-h) + var(--lp-header-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lp-faq__list { display: flex; flex-direction: column; }
.lp-faq__item {
  border-top: 1px solid var(--ph-line);
}
.lp-faq__item:last-child { border-bottom: 1px solid var(--ph-line); }
.lp-faq__item summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--ph-font-display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.005em;
  color: var(--ph-bone);
  transition: color var(--ph-dur-fast) ease;
}
.lp-faq__item summary:hover { color: var(--ph-acid); }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__num {
  font-family: var(--ph-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(243, 239, 230, 0.45);
}
.lp-faq__item summary i {
  position: relative;
  margin-left: auto;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}
.lp-faq__item summary i::before,
.lp-faq__item summary i::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ph-acid);
  transition: transform var(--ph-dur) var(--ph-ease-out);
}
.lp-faq__item summary i::before { width: 14px; height: 2px; }
.lp-faq__item summary i::after { width: 2px; height: 14px; }
.lp-faq__item[open] summary i::after { transform: rotate(90deg); }
.lp-faq__a { padding: 0 0 clamp(18px, 2vw, 26px) 0; }
.lp-faq__a p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ph-mist);
  max-width: 58ch;
}

/* ============ FOOTER ============ */
.lp-footer {
  position: relative;
  padding: clamp(64px, 8vw, 110px) 0 calc(clamp(28px, 4vw, 48px) + 84px); /* room for sticky bar */
  background: var(--ph-ink);
  border-top: 1px solid var(--ph-line);
  overflow: hidden;
}
.lp-footer__monogram {
  margin: 0 0 clamp(40px, 5vw, 72px);
  font-family: var(--ph-font-display);
  font-weight: 700;
  font-size: clamp(80px, 14.5vw, 230px);
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 239, 230, 0.18);
  background-image: radial-gradient(40% 90% at var(--x, -20%) 50%, rgba(200, 255, 61, 0.55) 0%, rgba(200, 255, 61, 0) 100%);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  animation: lp-monolight 12s linear infinite;
  user-select: none;
}
@keyframes lp-monolight {
  0% { --x: -20%; background-position: -150% 0; background-size: 60% 100%; background-image: linear-gradient(90deg, rgba(200,255,61,0) 0%, rgba(200,255,61,0.5) 50%, rgba(200,255,61,0) 100%); }
  100% { background-position: 250% 0; background-size: 60% 100%; background-image: linear-gradient(90deg, rgba(200,255,61,0) 0%, rgba(200,255,61,0.5) 50%, rgba(200,255,61,0) 100%); }
}
.lp-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(36px, 4vw, 56px);
}
.lp-footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.lp-footer__col h4 {
  margin: 0 0 4px;
  font-family: var(--ph-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.5);
}
.lp-footer__disclaimer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 22px;
  border: 1px solid var(--ph-line);
  border-radius: 12px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.lp-footer__disclaimer p {
  margin: 0;
  font-family: var(--ph-font-body);
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(243, 239, 230, 0.45);
  max-width: 90ch;
}
.lp-footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--ph-line);
  font-family: var(--ph-font-body);
  font-size: 13px;
  color: rgba(243, 239, 230, 0.45);
}

/* ============ Sticky CTA bar ============ */
.lp-sticky {
  position: fixed;
  bottom: 14px;
  left: 50%;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(92vw, 480px);
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--ph-line-strong);
  border-radius: 999px;
  background: rgba(14, 16, 20, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  transform: translate(-50%, calc(100% + 24px));
  transition: transform 0.6s var(--ph-ease-out);
}
.lp-sticky.is-on { transform: translate(-50%, 0); }
.lp-sticky__thumb {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}
.lp-sticky__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.lp-sticky__info strong {
  font-family: var(--ph-font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--ph-bone);
  white-space: nowrap;
}
.lp-sticky__info span {
  font-family: var(--ph-font-body);
  font-size: 12px;
  color: var(--ph-mist);
  white-space: nowrap;
}
.lp-sticky__btn {
  margin-left: auto;
  min-height: 44px;
  padding: 12px 22px;
  font-size: 11px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .lp-story__head { grid-column: 1 / 13; position: static; }
  .lp-story__body, .lp-story__body--turn { grid-column: 1 / 13; }
  .lp-story__costs { grid-column: 1 / 13; max-width: 560px; }
}

@media (max-width: 980px) {
  .lp-header__buy { display: none; }

  /* journey: beam moves to the left edge, cards stack right of it */
  .lp-journey__beam { left: 10px; transform: none; }
  .lp-jphase {
    grid-template-columns: 1fr;
    padding-left: 44px;
  }
  .lp-jphase__node { left: 11px; top: 28px; }
  .lp-jphase__card,
  .lp-jphase--one .lp-jphase__card,
  .lp-jphase--two .lp-jphase__card,
  .lp-jphase--three .lp-jphase__card { grid-column: 1; grid-row: 1; }
  .lp-jphase__ghost,
  .lp-jphase--one .lp-jphase__ghost,
  .lp-jphase--two .lp-jphase__ghost,
  .lp-jphase--three .lp-jphase__ghost { display: none; }
  .lp-journey__rail { gap: clamp(40px, 7vw, 72px); }

  .lp-how__grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-how__media img { width: min(56%, 280px); }
  .lp-inside__claims { grid-template-columns: repeat(2, 1fr); }
  .lp-inside__row { grid-template-columns: 1fr; }
  .lp-inside__media img { min-height: 0; max-height: 420px; }
  .lp-orbit { --orbit-card-w: 268px; --orbit-card-h: 204px; --orbit-gap: 44px; perspective: 560px; }
  .lp-buy__grid { grid-template-columns: 1fr; }
  .lp-buy__product { position: static; }
  .lp-buy__trust { grid-template-columns: repeat(2, 1fr); }
  .lp-faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-faq__head { position: static; }
  .lp-footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --lp-header-h: 60px; }

  .lp-countbar { font-size: 9.5px; gap: 8px; }
  .lp-countbar__label { overflow: hidden; text-overflow: ellipsis; }

  .lp-hero__stage { width: 100%; padding-right: var(--lp-pad); }
  .lp-hero__headline { font-size: clamp(40px, 11.5vw, 56px); }
  .lp-hero__cue { display: none; }
  .lp-hero__mark { display: none; } /* top row wraps at 390 — chapter label alone is enough */
  .lp-hero__trust { font-size: 12.5px; gap: 8px 18px; }
  /* separators orphan at line-wrap on narrow widths — gap carries the rhythm instead */
  .lp-hero__trust li + li::before { display: none; }
  /* portrait cover-crop zooms the clip hard; the lede/trust sit over the bright
     bottle column — anchor the whole bottom band in shadow */
  .lp-hero__scrim {
    background:
      linear-gradient(180deg, rgba(7,8,10,0.55) 0%, rgba(7,8,10,0.1) 22%, rgba(7,8,10,0) 36%, rgba(7,8,10,0.45) 54%, rgba(7,8,10,0.9) 72%, rgba(7,8,10,0.97) 100%),
      linear-gradient(90deg, rgba(7,8,10,0.6) 0%, rgba(7,8,10,0.25) 40%, rgba(7,8,10,0) 70%);
  }

  .lp-story__quote p { text-align: left; }
  /* life strip becomes a swipeable row — three stacked photos would eat the page */
  .lp-life__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-right: calc(-1 * var(--lp-pad));
    padding-right: var(--lp-pad);
    scrollbar-width: none;
  }
  .lp-life__grid::-webkit-scrollbar { display: none; }
  .lp-life__card { flex: 0 0 78%; scroll-snap-align: start; }
  .lp-life__card--drop { margin-top: 0; }
  .lp-inside__claims { grid-template-columns: 1fr; }
  .lp-orbit {
    --orbit-card-w: 240px;
    --orbit-card-h: 196px;
    --orbit-gap: 32px;
    --orbit-row: 17;
    perspective: 500px;
    height: clamp(420px, 60vh, 540px);
  }
  .lp-buy__trust { grid-template-columns: 1fr; gap: 20px; }
  .lp-footer__cols { grid-template-columns: 1fr; }
  .lp-footer__base { flex-direction: column; }
  .lp-inside__label li { flex-direction: column; gap: 6px; }
  .lp-inside__label li span { flex: none; }

  .lp-sticky__info span { display: none; }
}

/* ============ Reduced motion — surgical, ambient brand motion stays ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-hero__cue i { animation: none; }
  /* word reveals + late fades are JS-driven and finish quickly; reveals in theme.css
     are already handled there. Marquee, shine sweep and monogram light keep running —
     slow ambient brand motion is intentionally exempt (project rule). */
}
