/* ==========================================================================
   CELIMAX The Vita-A Retinal Shot — Landing Page
   Design tokens, base, layout, sections, motion, responsive
   ========================================================================== */

:root {
  /* Palette (derived from the product: chrome silver, lime, acid green, black) */
  --black: #0a0a0b;
  --ink: #131315;
  --graphite: #1c1c20;
  --slate: #2a2b30;
  --silver: #c9ccd1;
  --silver-2: #e6e8eb;
  --white: #fafaf8;
  --paper: #f4f5f2;
  --accent-rgb: 216, 240, 58;
  --accent2-rgb: 155, 226, 45;
  --accent3-rgb: 111, 179, 26;
  --lime: #d8f03a;
  --lime-2: #eefc6a;
  --acid: #9be22d;
  --acid-deep: #6fb31a;
  --text: #121214;
  --text-muted: #5f636b;
  --text-on-dark: #f2f3f0;
  --text-on-dark-muted: rgba(242, 243, 240, 0.64);

  --glow: rgba(var(--accent-rgb), 0.55);
  --glow-soft: rgba(var(--accent-rgb), 0.22);

  /* Type */
  --font-display: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 22px;
  --radius-sm: 12px;
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-intro { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  padding: 10px 16px; background: var(--lime); color: var(--black); font-weight: 600; border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.muted { color: var(--text-on-dark-muted); }
.nowrap { white-space: nowrap; }

/* ------------------------------ Typography ----------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted); margin-bottom: 18px;
}
.eyebrow--light { color: var(--text-on-dark-muted); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 4px var(--glow-soft), 0 0 14px var(--glow);
}
.h2 {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(30px, 4.2vw, 56px); line-height: 1.06; text-wrap: balance; max-width: 18ch;
}
.h2--center { text-align: center; margin-inline: auto; max-width: 24ch; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.6; color: var(--text-muted); margin-top: 22px; max-width: 54ch; text-wrap: pretty; }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em;
  border-radius: 999px; padding: 14px 24px; font-size: 15px; line-height: 1;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.3s, color 0.3s;
  will-change: transform; white-space: nowrap; overflow: hidden; isolation: isolate;
}
.btn svg { flex: none; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--sm { padding: 11px 18px; font-size: 13px; }
.btn--lg { padding: 18px 30px; font-size: 15px; }
.btn--xl { padding: 22px 36px; font-size: 16px; }
.btn--lime {
  background: linear-gradient(135deg, var(--lime-2) 0%, var(--lime) 50%, var(--acid) 100%);
  color: var(--black);
  box-shadow: 0 10px 30px -10px var(--glow), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn--lime::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease);
}
.btn--lime:hover::after { transform: translateX(120%); }
.btn--lime:hover { box-shadow: 0 18px 40px -12px var(--glow), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn--dark { background: var(--black); color: var(--white); box-shadow: 0 12px 30px -14px rgba(0,0,0,0.6); }
.btn--dark:hover { background: var(--ink); }
.btn--ghost {
  color: currentColor; border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.cta-row__hint { font-size: 13px; color: var(--text-muted); letter-spacing: 0.02em; }

/* ------------------------------ Cursor glow ----------------------------- */
.cursor-glow {
  position: fixed; left: 0; top: 0; z-index: 5; pointer-events: none;
  width: 420px; height: 420px; margin: -210px 0 0 -210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.14) 0%, rgba(var(--accent-rgb),0.05) 35%, transparent 65%);
  opacity: 0; transition: opacity 0.6s; mix-blend-mode: screen;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* ------------------------------ Header ---------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  color: var(--text-on-dark);
  transition: transform 0.5s var(--ease), background-color 0.4s, backdrop-filter 0.4s, opacity 0.4s;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity 0.4s;
  background: rgba(10,10,11,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header.is-scrolled::before { opacity: 1; }
.header.is-hidden { transform: translateY(-100%); }
body.is-intro .header { opacity: 0; }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: baseline; gap: 6px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.045em; line-height: 1; }
.brand__tag { font-size: 11px; letter-spacing: 0.34em; text-transform: lowercase; opacity: 0.8; }
.nav { display: flex; gap: 28px; font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em; }
.nav a { position: relative; opacity: 0.78; transition: opacity 0.3s; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ------------------------------ Sticky buy bars ------------------------- */
.buybar {
  position: fixed; inset: 0 0 auto 0; z-index: 59; height: 64px;
  background: rgba(10,10,11,0.86); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.18); color: var(--text-on-dark);
  transform: translateY(-110%); transition: transform 0.5s var(--ease); display: none;
}
.buybar.is-visible { transform: translateY(0); }
.buybar__inner { height: 100%; display: flex; align-items: center; gap: 18px; }
.buybar__thumb { height: 52px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.buybar__info { display: flex; flex-direction: column; line-height: 1.2; }
.buybar__info strong { font-family: var(--font-display); font-size: 15px; }
.buybar__info span { font-size: 12px; opacity: 0.6; }
.buybar__price { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.buybar__price strong { font-family: var(--font-display); font-size: 20px; color: var(--lime); letter-spacing: -0.02em; }
.buybar__price span { font-size: 11px; opacity: 0.6; letter-spacing: 0.04em; text-transform: uppercase; }

.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 59; height: 72px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 12px;
  background: rgba(10,10,11,0.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(var(--accent-rgb),0.2); color: var(--text-on-dark);
  transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.mobilebar.is-visible { transform: translateY(0); }
.mobilebar__price { display: flex; flex-direction: column; line-height: 1.1; min-width: 96px; }
.mobilebar__price strong { font-family: var(--font-display); font-size: 19px; color: var(--lime); letter-spacing: -0.02em; }
.mobilebar__price span { font-size: 10.5px; opacity: 0.62; letter-spacing: 0.04em; }
.mobilebar__btn { flex: 1; padding: 15px 16px; font-size: 15px; }

/* ==========================================================================
   01 HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--black); color: var(--text-on-dark); overflow: hidden; isolation: isolate;
  padding: calc(var(--header-h) + 24px) 0 64px;
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.4s; }
.hero__gl.is-ready { opacity: 1; }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.55; will-change: transform; transform: translateZ(0); }
.hero__orb--1 { width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; right: -12vw; top: -14vw; background: radial-gradient(circle, rgba(var(--accent-rgb),0.42), rgba(var(--accent2-rgb),0.12) 45%, transparent 70%); animation: orbA 14s ease-in-out infinite alternate; }
.hero__orb--2 { width: 44vw; height: 44vw; max-width: 560px; max-height: 560px; left: -14vw; bottom: -18vw; background: radial-gradient(circle, rgba(var(--accent3-rgb),0.32), transparent 65%); animation: orbB 18s ease-in-out infinite alternate; }
@keyframes orbA { to { transform: translate(-6%, 8%) scale(1.08); } }
@keyframes orbB { to { transform: translate(8%, -6%) scale(1.12); } }
.hero__grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse at 65% 50%, #000 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at 65% 50%, #000 20%, transparent 70%);
}
.hero__inner {
  position: relative; z-index: 5; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center; gap: clamp(24px, 4vw, 56px);
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.028em;
  font-size: clamp(38px, 5.3vw, 72px); line-height: 1.02; text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 0%, #e9ebe4 55%, #b8bbb0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin-top: 22px; font-size: clamp(16px, 1.3vw, 19px); color: var(--text-on-dark-muted); max-width: 46ch; text-wrap: pretty; }
.hero__actives { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__actives li {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 9px 14px; border-radius: 999px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em; font-weight: 600;
  border: 1px solid rgba(var(--accent-rgb),0.32); background: rgba(var(--accent-rgb),0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__actives strong { font-size: 15px; color: var(--lime); letter-spacing: -0.01em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; font-size: 12.5px; letter-spacing: 0.04em; color: var(--text-on-dark-muted); }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust svg { width: 16px; height: 16px; fill: none; stroke: var(--lime); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
[data-hero-text] { opacity: 0; transform: translateY(24px); }
body.no-gsap [data-hero-text], body.intro-done [data-hero-text] { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* Product stage (CSS 3D) */
.hero__stage { position: relative; height: clamp(440px, 72vh, 720px); display: flex; align-items: center; justify-content: center; }
.stage__halo {
  position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.34) 0%, rgba(var(--accent-rgb),0.08) 40%, transparent 68%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.06); opacity: 0.85; } }
.stage__ring {
  position: absolute; width: 66%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(201,204,209,0.18);
  box-shadow: inset 0 0 40px rgba(var(--accent-rgb),0.06), 0 0 0 1px rgba(255,255,255,0.02);
  background: conic-gradient(from 210deg, transparent 0 60%, rgba(var(--accent-rgb),0.18) 72%, transparent 84%);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stage__scene { position: relative; width: 100%; height: 100%; perspective: 1400px; display: flex; align-items: center; justify-content: center; }
.stage__product {
  position: relative; height: 86%; aspect-ratio: 199 / 890; transform-style: preserve-3d;
  will-change: transform; transform: translateY(80px); opacity: 0;
  animation: floatY 7s ease-in-out infinite; animation-play-state: paused;
}
body.no-gsap .stage__product { opacity: 1; transform: none; animation-play-state: running; }
.stage__product.is-floating { animation-play-state: running; }
@keyframes floatY { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.stage__tube { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(var(--accent-rgb),0.12)); }
.stage__shine {
  position: absolute; inset: 0; pointer-events: none;
  -webkit-mask-image: url("assets/img/tube-hero.webp"); mask-image: url("assets/img/tube-hero.webp");
  -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.0) 44%, rgba(255,255,255,0.7) 50%, rgba(var(--accent-rgb),0.35) 54%, transparent 62%);
  background-size: 300% 100%; background-position: 120% 0; mix-blend-mode: screen; opacity: 0.9;
}
.stage__reflect {
  position: absolute; left: 0; right: 0; top: 100%; height: 40%; overflow: hidden; pointer-events: none;
  transform: scaleY(-1); opacity: 0.22;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
.stage__reflect img { width: 100%; height: 250%; object-fit: contain; object-position: bottom; filter: blur(2px); }
.stage__shadow {
  position: absolute; bottom: 4%; width: 40%; height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.75) 0%, transparent 70%); filter: blur(6px);
}
.float-chip {
  position: absolute; display: inline-flex; align-items: baseline; gap: 6px; padding: 10px 14px; border-radius: 14px;
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  color: var(--text-on-dark); background: rgba(19,19,21,0.55); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(14px);
}
.float-chip b { color: var(--lime); font-size: 16px; letter-spacing: -0.01em; }
.float-chip--a { left: 4%; top: 22%; }
.float-chip--b { right: 2%; top: 44%; }
.float-chip--c { left: 10%; bottom: 20%; }
body.no-gsap .float-chip, .float-chip.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; z-index: 3; width: 26px; height: 42px; margin-left: -13px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; opacity: 0.7;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 3px; background: var(--lime); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* Intro overlay */
.intro {
  position: absolute; inset: 0; z-index: 4; background: var(--black);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.intro__light {
  position: absolute; left: 50%; top: 55%; width: 90vmax; height: 90vmax; transform: translate(-50%, -50%) scale(0.2);
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.42) 0%, rgba(var(--accent2-rgb),0.14) 28%, transparent 60%);
  opacity: 0;
}
.intro__words { position: relative; display: grid; place-items: center; text-align: center; padding: 0 24px; }
.intro__words > * { grid-area: 1 / 1; opacity: 0; }
.intro__word { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.18em; font-size: clamp(22px, 4vw, 44px); color: var(--text-on-dark); }
.intro__word em { font-style: normal; color: var(--lime); }
.intro__tag { font-family: var(--font-body); font-size: clamp(15px, 1.5vw, 19px); color: var(--text-on-dark-muted); letter-spacing: 0.02em; }
.intro__skip {
  position: absolute; right: 24px; bottom: 24px; pointer-events: auto; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-on-dark-muted); padding: 10px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
}
.intro.is-done { display: none; }
body.no-gsap .intro { display: none; }
body.is-intro .hero__inner { pointer-events: none; }

/* ==========================================================================
   02 TRUST STRIP + QUICK BENEFITS
   ========================================================================== */
.trustbar { background: var(--ink); color: var(--text-on-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.marquee { overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 34s linear infinite; font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.marquee__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
.quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: clamp(36px, 5vw, 56px) 0; }
.quick__item { display: flex; flex-direction: column; gap: 8px; padding: 22px 24px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.07); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); }
.quick__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 3vw, 42px); letter-spacing: -0.03em; line-height: 1; color: var(--lime); }
.quick__label { font-size: 13.5px; color: var(--text-on-dark-muted); line-height: 1.45; }

/* ==========================================================================
   03 STORY / ORBIT
   ========================================================================== */
.story { position: relative; background: radial-gradient(ellipse at 70% 50%, #17181b 0%, var(--black) 60%); color: var(--text-on-dark); padding: var(--section) 0; overflow: hidden; }
.story__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 5vw, 80px); }
.story .lead { color: var(--text-on-dark-muted); }
.story__list { margin-top: 36px; display: grid; gap: 12px; }
.story__list li { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.025); font-size: 15px; }
.story__list span { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.1em; color: var(--lime); }
.orbit { position: relative; aspect-ratio: 1; max-width: 600px; margin-inline: auto; width: 100%; display: flex; align-items: center; justify-content: center; }
.orbit__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit__ring { fill: none; stroke: rgba(201,204,209,0.14); stroke-width: 1; stroke-dasharray: 2 6; }
.orbit__ring--2 { stroke-dasharray: 1 10; stroke: rgba(201,204,209,0.08); }
.orbit__link { fill: none; stroke: url(#lineGrad); stroke-width: 1.6; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 400; }
body.no-gsap .orbit__link { stroke-dashoffset: 0; }
.orbit__glow { position: absolute; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.3), transparent 65%); animation: pulse 7s ease-in-out infinite; }
.orbit__particles { position: absolute; inset: 0; pointer-events: none; }
.orbit__particles i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--glow); opacity: 0; animation: drift var(--dur, 9s) linear infinite var(--delay, 0s); left: var(--x); top: var(--y); }
@keyframes drift { 0% { transform: translate(0, 0) scale(0.6); opacity: 0; } 15% { opacity: 0.9; } 85% { opacity: 0.6; } 100% { transform: translate(var(--dx, 40px), var(--dy, -80px)) scale(0.2); opacity: 0; } }
.orbit__tube { position: relative; z-index: 2; height: 78%; width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.65)); will-change: transform; }
.node {
  position: absolute; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 108px; padding: 14px 16px; border-radius: 16px; text-align: center;
  background: rgba(19,19,21,0.7); border: 1px solid rgba(var(--accent-rgb),0.32);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 20px 40px -20px rgba(0,0,0,0.7), 0 0 30px -10px var(--glow);
  opacity: 0; transform: scale(0.8);
}
.node.is-in, body.no-gsap .node { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.node b { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em; color: var(--lime); line-height: 1; }
.node span { font-family: var(--font-display); font-size: 10.5px; letter-spacing: 0.16em; color: var(--text-on-dark-muted); }
.node--a { left: 8%; top: 20%; transform-origin: right bottom; }
.node--b { right: 4%; top: 46%; transform-origin: left center; }
.node--c { left: 8%; bottom: 20%; transform-origin: right top; }

/* ==========================================================================
   04 INGREDIENTS
   ========================================================================== */
.ingredients { position: relative; background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%); padding: var(--section) 0; overflow: hidden; }
.ingredients::before { content: ""; position: absolute; left: 50%; top: -10%; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.2), transparent 62%); pointer-events: none; }
.cards { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.glass {
  position: relative; border-radius: var(--radius); padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,0.86), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 30px 60px -30px rgba(20,20,30,0.25), 0 0 0 1px rgba(18,18,20,0.04);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transform-style: preserve-3d; transition: box-shadow 0.4s var(--ease);
}
.glass:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 40px 80px -30px rgba(20,20,30,0.32), 0 0 0 1px rgba(18,18,20,0.05), 0 0 60px -20px var(--glow); }
.card { display: flex; flex-direction: column; overflow: hidden; }
.card__media { position: relative; height: 210px; border-radius: 16px; overflow: hidden; margin-bottom: 26px; background: radial-gradient(circle at 50% 60%, #f7f8ee, #eef0e3); display: flex; align-items: center; justify-content: center; }
.card__media img { width: 68%; height: auto; will-change: transform; filter: drop-shadow(0 20px 30px rgba(120,140,40,0.25)); }
.card__media--molecule { background: radial-gradient(circle at 60% 40%, #fffdf0, #f3edcf); }
.molecule { width: 78%; height: auto; filter: drop-shadow(0 18px 24px rgba(160,140,40,0.28)); animation: dropFloat 6s ease-in-out infinite; }
.card__media--drop { background: radial-gradient(circle at 50% 40%, #fbfcee, #eef2dd); }
.drop { position: absolute; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #f8ffb0, var(--lime) 55%, #a5cc26); box-shadow: 0 16px 30px -12px rgba(120,150,20,0.5), inset 0 -6px 12px rgba(255,255,255,0.4); animation: dropFloat 5s ease-in-out infinite; }
.drop--1 { width: 84px; height: 84px; left: 40%; top: 32%; }
.drop--2 { width: 40px; height: 40px; left: 22%; top: 20%; animation-delay: -1.5s; }
.drop--3 { width: 26px; height: 26px; left: 68%; top: 62%; animation-delay: -3s; }
@keyframes dropFloat { 50% { transform: translateY(-10px) scale(1.04); } }
.card__num { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; color: var(--text-muted); }
.card__title { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: 0.02em; margin: 8px 0 12px; }
.card__title b { font-size: 34px; letter-spacing: -0.03em; background: linear-gradient(120deg, var(--acid-deep), #b7d31a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.card p { color: var(--text-muted); font-size: 15.5px; line-height: 1.6; }
.card__note { margin-top: auto; padding-top: 18px; font-size: 12.5px !important; letter-spacing: 0.02em; color: #7c8089 !important; border-top: 1px solid rgba(18,18,20,0.08); margin-top: 20px; }

/* ==========================================================================
   05 A-SHOT
   ========================================================================== */
.ashot { position: relative; background: var(--black); color: var(--text-on-dark); padding: var(--section) 0; overflow: hidden; }
.ashot::after { content: ""; position: absolute; right: -10%; top: 10%; width: 50vw; height: 50vw; max-width: 700px; max-height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.14), transparent 62%); pointer-events: none; }
.ashot__inner { position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.ashot .lead { color: var(--text-on-dark-muted); }
.ashot__text { margin-top: 18px; font-size: 16px; color: var(--text-on-dark); max-width: 50ch; }
.ashot__steps { margin-top: 34px; display: grid; gap: 8px; }
.ashot__steps li { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); font-family: var(--font-display); font-size: 14px; letter-spacing: 0.04em; color: var(--text-on-dark-muted); transition: all 0.5s var(--ease); }
.ashot__steps li span { font-size: 11px; letter-spacing: 0.14em; color: rgba(var(--accent-rgb),0.5); }
.ashot__steps li.is-active { color: var(--text-on-dark); border-color: rgba(var(--accent-rgb),0.4); background: rgba(var(--accent-rgb),0.06); transform: translateX(6px); }
.ashot__steps li.is-active span { color: var(--lime); }
.ashot__source { margin-top: 36px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); max-width: 460px; }
.ashot__source img { width: 100%; opacity: 0.92; }
.ashot__source figcaption { padding: 12px 16px; font-size: 12px; color: var(--text-on-dark-muted); line-height: 1.5; }
.ashot__viz { position: relative; aspect-ratio: 1; max-width: 640px; width: 100%; margin-inline: auto; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, #0e0e10 0%, #151619 100%); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9), inset 0 0 120px rgba(var(--accent-rgb),0.04); }
.ashot__svg { width: 100%; height: 100%; }
.ashot__caption { position: absolute; left: 20px; bottom: 20px; padding: 8px 14px; border-radius: 999px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; background: rgba(var(--accent-rgb),0.1); border: 1px solid rgba(var(--accent-rgb),0.3); color: var(--lime); }
.ashot__svg circle.p { fill: url(#pGrad); }

/* ==========================================================================
   06 BENEFITS
   ========================================================================== */
.benefits { background: var(--paper); padding: var(--section) 0; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bento__item {
  position: relative; grid-column: span 2; padding: 30px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(18,18,20,0.06);
  box-shadow: 0 20px 50px -30px rgba(20,20,30,0.25);
  transform-style: preserve-3d; transition: box-shadow 0.4s var(--ease); overflow: hidden;
}
.bento__item::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(var(--accent-rgb),0.18), transparent 45%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.bento__item:hover::after { opacity: 1; }
.bento__item:hover { box-shadow: 0 30px 60px -30px rgba(20,20,30,0.3), 0 0 0 1px rgba(var(--accent2-rgb),0.3); }
.bento__item--wide { grid-column: span 4; }
.bento__item--lime { background: linear-gradient(135deg, #f3ffa1 0%, var(--lime) 60%, #c9e836 100%); border-color: transparent; }
.bento__item--lime .bento__icon { background: rgba(10,10,11,0.9); color: var(--lime); }
.bento__item--lime p { color: rgba(10,10,11,0.7); }
.bento__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--black); color: var(--lime); margin-bottom: 22px; }
.bento__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bento__item h3 { font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 23px); font-weight: 600; line-height: 1.22; letter-spacing: -0.01em; text-wrap: balance; }
.bento__item p { margin-top: 10px; color: var(--text-muted); font-size: 15px; }
@media (min-width: 900px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__item { grid-column: span 2; }
  .bento__item--wide { grid-column: span 4; }
}

/* ==========================================================================
   07 TEXTURE
   ========================================================================== */
.texture { position: relative; background: var(--white); padding: var(--section) 0; overflow: hidden; }
.texture__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(32px, 5vw, 80px); }
.texture__visual { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin-inline: auto; }
.blob { position: absolute; inset: 8%; overflow: hidden; will-change: border-radius, transform; }
.blob--main { border-radius: 58% 42% 55% 45% / 48% 56% 44% 52%; animation: morph 14s ease-in-out infinite; box-shadow: 0 50px 90px -40px rgba(180,200,40,0.6), inset 0 0 80px rgba(255,255,255,0.35); }
.blob--main img { width: 112%; height: 112%; max-width: none; object-fit: cover; object-position: 50% 50%; margin: -6%; }
.blob--back { inset: 0; background: radial-gradient(circle at 40% 40%, rgba(var(--accent-rgb),0.5), rgba(var(--accent-rgb),0.1) 55%, transparent 70%); border-radius: 50%; animation: morph 18s ease-in-out infinite reverse; }
.blob--front { inset: 30% 10% 12% 45%; border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%; background: linear-gradient(140deg, rgba(255,255,255,0.7), rgba(255,255,255,0.1)); mix-blend-mode: soft-light; animation: morph 11s ease-in-out infinite -4s; pointer-events: none; }
@keyframes morph {
  0%, 100% { border-radius: 58% 42% 55% 45% / 48% 56% 44% 52%; }
  33% { border-radius: 45% 55% 42% 58% / 56% 44% 58% 42%; }
  66% { border-radius: 52% 48% 60% 40% / 42% 60% 40% 58%; }
}
.texture__video-wrap { position: absolute; right: -4%; bottom: 0; width: 42%; aspect-ratio: 9 / 13; border-radius: 20px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 40px 70px -30px rgba(0,0,0,0.35); background: var(--paper); }
.texture__video { width: 100%; height: 100%; object-fit: cover; }
.texture__video-wrap[hidden] { display: none; }
.texture__facts { margin-top: 32px; display: grid; gap: 10px; }
.texture__facts li { display: flex; align-items: baseline; gap: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid rgba(18,18,20,0.06); }
.texture__facts b { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.02em; min-width: 92px; }
.texture__facts span { color: var(--text-muted); font-size: 14.5px; }

/* ==========================================================================
   08 AUDIENCE
   ========================================================================== */
.audience { background: var(--paper); padding: var(--section) 0; border-top: 1px solid rgba(18,18,20,0.05); }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(32px, 4vw, 48px); }
.pills li {
  padding: 16px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 500; font-size: clamp(15px, 1.4vw, 18px);
  background: var(--white); border: 1px solid rgba(18,18,20,0.08); box-shadow: 0 10px 30px -20px rgba(20,20,30,0.3);
  transition: transform 0.4s var(--ease), border-color 0.3s, background-color 0.3s;
}
.pills li:hover { transform: translateY(-3px); border-color: var(--acid); background: #fbffd6; }
.audience__note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-muted); }

/* ==========================================================================
   09 HOW TO
   ========================================================================== */
.howto { position: relative; background: var(--ink); color: var(--text-on-dark); padding: var(--section) 0; overflow: hidden; }
.howto__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.howto__side { position: sticky; top: calc(var(--header-h) + 24px); }
.howto .lead { color: var(--text-on-dark-muted); }
.howto__figure { margin-top: 36px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); max-width: 480px; }
.howto__figure figcaption { padding: 12px 16px; font-size: 12.5px; color: var(--text-on-dark-muted); }
.timeline { position: relative; display: grid; gap: 14px; padding-left: 64px; }
.timeline__track { position: absolute; left: 22px; top: 28px; bottom: 28px; width: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.timeline__progress { display: block; width: 100%; height: 100%; background: linear-gradient(180deg, var(--lime), var(--acid)); transform-origin: top; transform: scaleY(0); box-shadow: 0 0 16px var(--glow); }
body.no-gsap .timeline__progress { transform: none; }
.tl { position: relative; padding: 22px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)); display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.4s; }
.tl:hover { border-color: rgba(var(--accent-rgb),0.35); }
.tl__num { position: absolute; left: -64px; top: 20px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; background: var(--black); border: 1px solid rgba(var(--accent-rgb),0.4); color: var(--lime); box-shadow: 0 0 0 6px var(--ink); }
.tl__body h3 { font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.tl__body p { margin-top: 6px; font-size: clamp(16px, 1.4vw, 19px); font-weight: 500; }

/* ==========================================================================
   10 REVIEWS
   ========================================================================== */
.reviews { background: var(--white); padding: var(--section) 0; overflow: hidden; }
.reviews__nav { display: flex; gap: 10px; }
.arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(18,18,20,0.14); display: grid; place-items: center; transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
.arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.arrow:hover { background: var(--black); color: var(--lime); border-color: var(--black); }
.reviews__summary { margin-bottom: 28px; }
.reviews__summary-btn { display: block; width: 100%; max-width: 760px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(18,18,20,0.08); box-shadow: 0 20px 40px -30px rgba(20,20,30,0.3); transition: transform 0.4s var(--ease); background: #fff; }
.reviews__summary-btn:hover { transform: translateY(-2px); }
.reviews__summary figcaption { margin-top: 10px; font-size: 12.5px; color: var(--text-muted); }
.slider { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; -ms-overflow-style: none; margin: 0 calc(-1 * var(--gutter)); padding: 8px var(--gutter) 24px; cursor: grab; }
.slider::-webkit-scrollbar { display: none; }
.slider.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.slider__track { display: flex; gap: 18px; width: max-content; }
.slide { scroll-snap-align: start; width: min(78vw, 560px); flex: none; }
.slide__btn { display: block; width: 100%; text-align: left; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid rgba(18,18,20,0.08); box-shadow: 0 24px 50px -30px rgba(20,20,30,0.35); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.slide__btn:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(20,20,30,0.4), 0 0 0 1px rgba(var(--accent2-rgb),0.4); }
.slide__btn img { width: 100%; }
.slide__meta { display: block; padding: 12px 16px; font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.06em; color: var(--text-muted); border-top: 1px solid rgba(18,18,20,0.06); }
.reviews__note { font-size: 12.5px; color: var(--text-muted); }

/* ==========================================================================
   11 OFFER
   ========================================================================== */
.offer { position: relative; background: var(--black); color: var(--text-on-dark); padding: var(--section) 0; overflow: hidden; isolation: isolate; }
.offer__bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 30% 40%, rgba(var(--accent-rgb),0.18), transparent 55%), radial-gradient(ellipse at 90% 100%, rgba(var(--accent3-rgb),0.18), transparent 55%); }
.offer__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.offer__frame { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 60px 100px -50px rgba(0,0,0,0.9), 0 0 80px -30px var(--glow); background: #fff; transform-style: preserve-3d; }
.offer__frame img { width: 100%; }
.glass-dark { border-radius: var(--radius); padding: clamp(26px, 3.4vw, 44px); background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.08); }
.offer__product { margin-top: 14px; font-size: 14px; color: var(--text-on-dark-muted); letter-spacing: 0.02em; }
.price { margin-top: 26px; display: grid; gap: 4px; }
.price__from { font-size: 15px; color: var(--text-on-dark-muted); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.35); }
.price__from small { font-size: 12px; text-decoration: none; margin-left: 4px; }
.price__main { font-family: var(--font-display); font-weight: 600; font-size: clamp(52px, 6vw, 76px); letter-spacing: -0.04em; line-height: 1; color: var(--lime); text-shadow: 0 0 40px rgba(var(--accent-rgb),0.35); display: inline-flex; align-items: flex-start; gap: 6px; }
.price__main small { font-size: 0.36em; letter-spacing: 0; margin-top: 0.35em; }
.price__main sup { font-size: 0.35em; margin-top: 0.2em; }
.price__tag { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.22em; font-weight: 600; color: var(--text-on-dark); }
.price__legal { margin-top: 16px; font-size: 12px; line-height: 1.55; color: var(--text-on-dark-muted); }
.price__alt { margin-top: 6px; font-size: 13px; color: var(--text-on-dark-muted); }
.offer .btn--xl { width: 100%; margin-top: 26px; }
.offer__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; font-size: 12.5px; color: var(--text-on-dark-muted); }
.offer__trust li { display: inline-flex; align-items: center; gap: 8px; }
.offer__trust li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.offer__import { margin-top: 20px; padding: 12px 14px; border-radius: 10px; font-size: 12.5px; line-height: 1.5; color: var(--text-on-dark-muted); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }

/* ==========================================================================
   12 FAQ
   ========================================================================== */
.faq { background: var(--white); padding: var(--section) 0; }
.faq__inner { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--header-h) + 24px); }
.accordion { display: grid; gap: 10px; }
.acc { border-radius: 16px; border: 1px solid rgba(18,18,20,0.08); background: var(--paper); overflow: hidden; transition: border-color 0.3s, background-color 0.3s; }
.acc[open] { border-color: rgba(var(--accent2-rgb),0.6); background: #fff; }
.acc summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: clamp(16px, 1.3vw, 18px); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { position: relative; flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(18,18,20,0.14); transition: transform 0.4s var(--ease), background-color 0.3s; }
.acc summary i::before, .acc summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.6px; background: currentColor; transform: translate(-50%, -50%); }
.acc summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.4s var(--ease); }
.acc[open] summary i { background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }
.acc__body { padding: 0 22px 22px; color: var(--text-muted); font-size: 15.5px; line-height: 1.65; max-width: 62ch; }

/* ==========================================================================
   SAFETY
   ========================================================================== */
.safety { background: var(--paper); padding: clamp(48px, 6vw, 80px) 0; border-top: 1px solid rgba(18,18,20,0.05); }
.safety__list { margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px 28px; }
.safety__list li { position: relative; padding-left: 20px; font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }
.safety__list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.safety__note { margin-top: 22px; font-size: 12.5px; color: var(--text-muted); }

/* ==========================================================================
   13 FINAL CTA
   ========================================================================== */
.final { position: relative; background: var(--black); color: var(--text-on-dark); padding: var(--section) 0; overflow: hidden; isolation: isolate; }
.final__glow { position: absolute; left: 50%; top: 50%; width: 80vw; height: 80vw; max-width: 1000px; max-height: 1000px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),0.2), transparent 60%); z-index: -1; }
.final__inner { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.final__tube { height: 380px; width: auto; margin-inline: auto; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(var(--accent-rgb),0.18)); transform: rotate(-8deg); }
.final .lead { color: var(--text-on-dark-muted); }
.final__cta { margin-top: 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.final__price { font-size: 13px; color: var(--text-on-dark-muted); letter-spacing: 0.02em; }

/* ==========================================================================
   14 FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--text-on-dark); padding: 56px 0 calc(56px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,0.06); }
.footer__inner { display: grid; grid-template-columns: 1fr 1.4fr 1.6fr; gap: 32px; align-items: start; }
.footer__brand { display: inline-flex; align-items: baseline; gap: 6px; }
.footer__product p { font-size: 14px; color: var(--text-on-dark-muted); }
.footer__product p strong { color: var(--text-on-dark); }
.footer__product .btn { margin-top: 16px; }
.footer__legal { display: grid; gap: 10px; font-size: 12.5px; line-height: 1.55; color: var(--text-on-dark-muted); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,10,11,0.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.lightbox__figure { position: relative; max-width: min(1100px, 100%); max-height: 100%; border-radius: 14px; overflow: auto; background: #fff; box-shadow: 0 60px 100px -40px rgba(0,0,0,0.8); animation: lbIn 0.4s var(--ease); }
.lightbox__img { max-width: 100%; max-height: calc(100vh - 48px); width: auto; height: auto; }
.lightbox__close { position: absolute; right: 20px; top: 20px; z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--black); display: grid; place-items: center; }
.lightbox__close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
@keyframes lbIn { from { opacity: 0; transform: scale(0.96) translateY(10px); } }

/* ==========================================================================
   REVEAL (GSAP-driven; CSS fallback when no GSAP)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
body.no-gsap [data-reveal], [data-reveal].is-revealed { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 1025px) {
  .buybar { display: block; }
}
@media (max-width: 1024px) {
  .nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stage { height: clamp(380px, 56vh, 560px); order: 2; }
  .hero__copy { order: 1; max-width: 100%; }
  .story__inner, .ashot__inner, .texture__inner, .offer__inner, .howto__inner, .faq__inner { grid-template-columns: 1fr; }
  .howto__side, .faq__head { position: static; }
  .ashot__copy { display: contents; }
  .ashot__copy > * { order: 1; }
  .ashot__viz { order: 2; }
  .ashot__steps { order: 3; margin-top: 0; }
  .ashot__source { order: 4; margin-top: 0; max-width: 640px; }
  .ashot__inner { gap: 28px; }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr; }
  .mobilebar { display: flex; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: calc(72px + 56px + env(safe-area-inset-bottom)); }
  .final__inner { grid-template-columns: 1fr; text-align: center; }
  .final__tube { height: 260px; }
  .final__cta { align-items: center; }
  .final .h2, .final .lead { margin-inline: auto; }
}
@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .quick { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quick__item { padding: 18px; }
  .hero { padding-top: calc(var(--header-h) + 12px); padding-bottom: 48px; }
  .hero__title { font-size: clamp(34px, 9.6vw, 44px); }
  .hero__sub { font-size: 16px; }
  .hero__cta .btn { width: 100%; }
  .hero__stage { height: clamp(320px, 48vh, 440px); margin-top: 4px; }
  .float-chip { padding: 8px 11px; font-size: 11px; }
  .float-chip b { font-size: 14px; }
  .float-chip--a { left: 0; }
  .float-chip--b { right: 0; }
  .float-chip--c { left: 2%; }
  .hero__scroll { display: none; }
  .orbit { max-width: 420px; }
  .node { min-width: 92px; padding: 10px 12px; }
  .node b { font-size: 18px; }
  .node--a { left: 0; }
  .node--b { right: 0; }
  .node--c { left: 0; }
  .story__list li { font-size: 14px; }
  .h2 { max-width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .bento__item, .bento__item--wide { grid-column: span 1; }
  .texture__video-wrap { width: 46%; right: 0; }
  .timeline { padding-left: 54px; }
  .tl__num { left: -54px; width: 40px; height: 40px; }
  .timeline__track { left: 19px; }
  .slide { width: 86vw; }
  .price__main { font-size: 56px; }
  .offer .btn--xl { padding: 20px 20px; font-size: 15px; }
  .btn--xl { white-space: normal; text-align: center; }
  .section-head--row .reviews__nav { display: none; }
  .intro__skip { right: 16px; bottom: 16px; }
  .lightbox { padding: 12px; }
  .lightbox__close { right: 14px; top: 14px; width: 42px; height: 42px; }
}
@media (max-width: 400px) {
  .hero__actives li { font-size: 11px; padding: 8px 11px; }
  .hero__actives strong { font-size: 13px; }
  .mobilebar__price { min-width: 84px; }
  .mobilebar__price strong { font-size: 17px; }
}

/* ==========================================================================
   REDUCED MOTION / SAVE-DATA / LOW POWER
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee__track { animation: none; }
  .hero__gl, .cursor-glow { display: none !important; }
  .intro { display: none; }
  body.is-intro { overflow: auto; }
  [data-hero-text], [data-reveal], .stage__product, .float-chip, .node { opacity: 1 !important; transform: none !important; }
  .orbit__link { stroke-dashoffset: 0 !important; }
  .timeline__progress { transform: none !important; }
}
body.low-power .hero__gl, body.low-power .cursor-glow { display: none; }
body.low-power .hero__orb, body.low-power .blob--back { filter: blur(30px); animation: none; }
body.low-power .orbit__particles { display: none; }
body.low-power .glass, body.low-power .glass-dark, body.low-power .float-chip, body.low-power .node { backdrop-filter: none; -webkit-backdrop-filter: none; }

@media print {
  .header, .buybar, .mobilebar, .intro, .cursor-glow, .hero__gl { display: none !important; }
  [data-reveal], [data-hero-text] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   THEME: LILYEVE (Grow:Turn) — warm orange on charcoal / marble white
   ========================================================================== */
body.theme-lilyeve {
  --accent-rgb: 255, 106, 43;
  --accent2-rgb: 255, 77, 28;
  --accent3-rgb: 217, 67, 15;
  --lime: #ff6a2b;
  --lime-2: #ffa76e;
  --acid: #ff4d1c;
  --acid-deep: #d9430f;
  --black: #0f0d0c;
  --ink: #17140f;
  --paper: #f7f4f0;
  --white: #fdfbf8;
  --glow: rgba(255, 106, 43, 0.5);
  --glow-soft: rgba(255, 106, 43, 0.2);
}
body.theme-lilyeve .btn--lime { color: #fff; box-shadow: 0 10px 30px -10px var(--glow), inset 0 1px 0 rgba(255,255,255,0.35); }
body.theme-lilyeve .bento__item--lime { background: linear-gradient(135deg, #ffd7c2 0%, var(--lime) 55%, #ff5a1f 100%); }
body.theme-lilyeve .bento__item--lime h3 { color: #fff; }
body.theme-lilyeve .bento__item--lime p { color: rgba(255,255,255,0.85); }
body.theme-lilyeve .bento__item--lime .bento__icon { background: rgba(15,13,12,0.9); color: #ffb48a; }
body.theme-lilyeve .card__title b { background: linear-gradient(120deg, var(--acid-deep), #ff7d3f); -webkit-background-clip: text; background-clip: text; }
body.theme-lilyeve .card__media { background: radial-gradient(circle at 50% 60%, #fbf7f3, #efe8e2); }
body.theme-lilyeve .pills li:hover { background: #fff1ea; }
body.theme-lilyeve .story { background: radial-gradient(ellipse at 70% 50%, #1e1713 0%, var(--black) 60%); }
body.theme-lilyeve .hero__title { background: linear-gradient(180deg, #ffffff 0%, #f5ede6 55%, #c9bdb4 100%); -webkit-background-clip: text; background-clip: text; }
body.theme-lilyeve .mobilebar__price strong, body.theme-lilyeve .buybar__price strong { color: #ffb48a; }
body.theme-lilyeve .price__main { color: #ffb48a; }
body.theme-lilyeve .buybar { border-bottom-color: rgba(255,106,43,0.25); }
body.theme-lilyeve .mobilebar { border-top-color: rgba(255,106,43,0.25); }

/* Photo-card product stage (used when there is no transparent cutout) */
.stage__product--card { height: 72%; aspect-ratio: 1; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 50px 90px -40px rgba(0,0,0,0.85), 0 0 80px -30px var(--glow), inset 0 1px 0 rgba(255,255,255,0.2); background: #fff; }
.stage__photo { width: 100%; height: 100%; object-fit: cover; }
.stage__shine--card { -webkit-mask-image: none; mask-image: none; border-radius: inherit; opacity: 0.55; }
.orbit__photo { position: relative; z-index: 2; width: 46%; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 6px solid rgba(255,255,255,0.08); box-shadow: 0 30px 60px -25px rgba(0,0,0,0.8), 0 0 60px -20px var(--glow); will-change: transform; }

/* Variant cards (4-up) */
.cards--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards--4 .card { padding: 20px; }
.cards--4 .card__media { height: 200px; }
.cards--4 .card__media img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.cards--4 .card__title { font-size: 22px; margin: 6px 0 10px; }
.cards--4 .card__title b { font-size: 26px; }
.card__list { display: grid; gap: 6px; margin-top: 4px; }
.card__list li { position: relative; padding-left: 16px; font-size: 14.5px; color: var(--text-muted); }
.card__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.card--dark { background: linear-gradient(160deg, #1c1a1f, #0f0e12); border-color: rgba(255,255,255,0.08); color: var(--text-on-dark); }
.card--dark p, .card--dark .card__list li, .card--dark .card__num { color: var(--text-on-dark-muted); }
.card--dark .card__title { color: #fff; }
.card--dark .card__note { border-top-color: rgba(255,255,255,0.1); color: var(--text-on-dark-muted) !important; }
.variants__note { margin-top: 18px; text-align: center; font-size: 13px; color: var(--text-muted); }

/* Brush applicator animation */
.brush__svg .drop { fill: url(#dropGrad); }
.brush__svg .bristle { stroke: #f4efe9; stroke-width: 3; stroke-linecap: round; }

/* Cross-sell */
.crosssell { background: var(--paper); padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid rgba(18,18,20,0.05); }
.crosssell__card { display: grid; grid-template-columns: 220px minmax(0, 1fr) auto; align-items: center; gap: clamp(20px, 3vw, 40px); padding: 22px; border-radius: var(--radius); background: var(--white); border: 1px solid rgba(18,18,20,0.07); box-shadow: 0 30px 60px -40px rgba(20,20,30,0.3); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.crosssell__card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(20,20,30,0.4); }
.crosssell__media { aspect-ratio: 1; border-radius: 16px; overflow: hidden; background: #fff; }
.crosssell__media img { width: 100%; height: 100%; object-fit: cover; }
.crosssell__media--dark { background: #0a0a0b; display: flex; align-items: center; justify-content: center; }
.crosssell__media--dark img { width: auto; height: 86%; object-fit: contain; }
.crosssell__body h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -0.01em; }
.crosssell__body p { margin-top: 8px; color: var(--text-muted); font-size: 15px; max-width: 52ch; }
.crosssell__tag { display: inline-block; margin-bottom: 10px; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
@media (max-width: 1024px) {
  .cards--4 { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
@media (max-width: 760px) {
  .cards--4 { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .crosssell__card { grid-template-columns: 1fr; text-align: center; }
  .crosssell__media { max-width: 260px; margin-inline: auto; }
  .crosssell__body p { margin-inline: auto; }
  .crosssell__card .btn { width: 100%; }
}
