/* =========================================================================
   EVA — Soin précieux régénérant
   Design system : élégance intemporelle (registre haute parfumerie)
   Couleurs OKLCH · Type : Bodoni Moda (display) + Jost (texte)
   ========================================================================= */

:root {
  /* --- Surfaces (tinted neutrals, never pure white/black) --- */
  --cream:      oklch(0.962 0.014 80);   /* fond principal ivoire */
  --cream-2:    oklch(0.935 0.018 72);   /* sable, sections alternées */
  --porcelain:  oklch(0.987 0.007 86);   /* blanc cassé, cartes */
  --ink:        oklch(0.245 0.014 58);   /* espresso, textes/titres */
  --ink-2:      oklch(0.395 0.013 56);   /* texte secondaire */
  --ink-3:      oklch(0.560 0.012 56);   /* légendes, méta */

  /* --- Or champagne (couleur porteuse) --- */
  --gold:       oklch(0.705 0.085 78);   /* accents, filets */
  --gold-deep:  oklch(0.560 0.080 66);   /* or foncé lisible sur clair */
  --gold-soft:  oklch(0.86 0.045 80);    /* halos, fonds dorés très clairs */

  /* --- Rosé poudré (touche féminine) --- */
  --blush:      oklch(0.905 0.028 32);
  --blush-deep: oklch(0.82 0.05 30);

  /* --- Lignes --- */
  --line:       oklch(0.705 0.085 78 / 0.32);
  --line-soft:  oklch(0.245 0.014 58 / 0.12);

  /* --- Type --- */
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;

  /* --- Échelle fluide --- */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1.06rem, 1.0rem + 0.3vw, 1.2rem);
  --step-1:  clamp(1.3rem, 1.18rem + 0.6vw, 1.6rem);
  --step-2:  clamp(1.7rem, 1.45rem + 1.25vw, 2.6rem);
  --step-3:  clamp(2.1rem, 1.7rem + 2.1vw, 3.5rem);
  --step-4:  clamp(2.1rem, 1.7rem + 1.7vw, 2.95rem);

  --container: 1180px;
  --container-wide: 1320px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo */
  --shadow-soft: 0 24px 60px -28px oklch(0.245 0.014 58 / 0.4);
  --shadow-card: 0 30px 70px -40px oklch(0.245 0.014 58 / 0.55);
}

/* ------------------------------ Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }

/* --------------------------- Typographie -------------------------------- */
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; color: var(--ink); }
.display { font-family: var(--display); }
.eyebrow {
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }
.eyebrow.center::after { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }
.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); font-weight: 300; }
em, .italic { font-style: italic; }

/* ------------------------------ Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 3rem); }
.container.wide { max-width: var(--container-wide); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); position: relative; }
.section.tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.bg-cream2 { background: var(--cream-2); }
.bg-porcelain { background: var(--porcelain); }
.bg-ink { background: var(--ink); color: var(--cream); }
.center { text-align: center; }
.section-head { max-width: 46rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--step-3); margin-top: 1.1rem; }
.section-head p { margin-top: 1.2rem; }

/* ------------------------------ Buttons --------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  font-family: var(--sans); font-weight: 500; font-size: var(--step-0);
  letter-spacing: 0.02em;
  padding: 1.05em 2.1em;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 100px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
  box-shadow: 0 12px 30px -16px oklch(0.245 0.014 58 / 0.6);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, oklch(0.9 0.06 85 / 0.5) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform 0.8s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -18px oklch(0.245 0.014 58 / 0.7); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(-1px); }
.btn-gold { --btn-bg: var(--gold-deep); --btn-fg: oklch(0.99 0.01 85); }
.btn-lg { font-size: var(--step-1); padding: 1.15em 2.6em; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); box-shadow: none; padding: 1.0em 1.9em;
}
.btn-ghost:hover { background: oklch(0.705 0.085 78 / 0.1); border-color: var(--gold); box-shadow: none; }
.btn-block { display: flex; width: 100%; }
.btn-arrow { transition: transform 0.5s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-text {
  font-family: var(--sans); font-weight: 500; font-size: var(--step--1);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 0.6em;
  padding-bottom: 3px; border-bottom: 1px solid var(--line);
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.btn-text:hover { color: var(--gold-deep); border-color: var(--gold); gap: 0.9em; }

/* --------------------------- Announce bar ------------------------------- */
.announce {
  background: var(--ink); color: var(--cream);
  font-size: var(--step--1); letter-spacing: 0.04em;
  position: relative; z-index: 60;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding-block: 0.7rem; flex-wrap: wrap; }
.announce strong { color: var(--gold-soft); font-weight: 600; }
.countdown { display: inline-flex; align-items: center; gap: 0.35rem; font-variant-numeric: tabular-nums; font-weight: 500; }
.countdown .unit {
  background: oklch(0.99 0.01 85 / 0.1); border: 1px solid oklch(0.99 0.01 85 / 0.18);
  border-radius: 3px; padding: 0.12em 0.42em; min-width: 2.1em; text-align: center;
  color: var(--cream); font-variant-numeric: tabular-nums;
}
.countdown .sep { opacity: 0.5; }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding-block: 0.4rem;
}
.site-header.scrolled {
  background: oklch(0.962 0.014 80 / 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.6rem; }
.brand { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); letter-spacing: 0.22em; color: var(--ink); padding-left: 0.22em; }
.brand small { display: block; font-family: var(--sans); font-size: 0.5rem; letter-spacing: 0.55em; color: var(--gold-deep); text-transform: uppercase; margin-top: -0.1em; padding-left: 0.1em; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); position: relative; transition: color 0.4s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width 0.45s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-cta { padding: 0.75em 1.5em; font-size: var(--step--1); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); position: relative; transition: 0.4s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 24px; height: 1.5px; background: var(--ink); transition: 0.4s var(--ease); }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------- Hero ----------------------------------- */
.hero { position: relative; padding-top: clamp(1rem, 2.5vw, 2rem); padding-bottom: clamp(2rem, 5vw, 4rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy { max-width: 40rem; }
.hero h1 { font-size: var(--step-4); font-weight: 500; line-height: 1.02; margin-top: 0.9rem; }
.hero h1 .accent { font-style: italic; color: var(--gold-deep); }
.hero-sub { margin-top: 1.2rem; font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); font-weight: 300; max-width: 30rem; }
.hero-cta-row { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-trust { margin-top: 1.4rem; display: flex; align-items: center; gap: 0.9rem; color: var(--ink-2); font-size: var(--step--1); }
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1.05em; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 280px 280px 8px 8px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.4;
}
.hero-frame::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px oklch(0.99 0.01 85 / 0.25); border-radius: inherit; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 30%; }
.hero-halo { position: absolute; inset: -12% -12% auto auto; width: 60%; aspect-ratio: 1; background: radial-gradient(circle, var(--gold-soft), transparent 68%); opacity: 0.7; z-index: -1; filter: blur(8px); }
.hero-ring { position: absolute; inset: -3.5%; border: 1px solid var(--line); border-radius: 290px 290px 12px 12px; pointer-events: none; }

.badge-float {
  position: absolute; background: var(--porcelain); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 0.95rem 1.2rem; display: flex; align-items: center; gap: 0.75rem;
}
.badge-rating { left: -6%; bottom: 12%; }
.badge-rating .num { font-family: var(--display); font-size: 1.7rem; line-height: 1; color: var(--ink); }
.badge-rating .meta { font-size: 0.72rem; line-height: 1.3; color: var(--ink-3); }
.badge-rating .meta .stars { font-size: 0.8rem; display: block; }
.badge-jar {
  right: -4%; top: 8%; width: clamp(86px, 11vw, 128px); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; box-shadow: var(--shadow-card); border: 3px solid var(--porcelain); padding: 0;
}
.badge-jar img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------- Reassurance -------------------------------- */
.assure { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--cream); }
.assure-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 4vw, 3.2rem); padding-block: 1.4rem; }
.assure-item { display: flex; align-items: center; gap: 0.65rem; font-size: var(--step--1); letter-spacing: 0.05em; color: var(--ink-2); }
.assure-item svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }

/* ------------------------------ Mirror ---------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.media-framed { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.media-framed::after { content:""; position:absolute; inset:0; box-shadow: inset 0 0 0 1px oklch(0.99 0.01 85 / 0.2); }
.media-tag {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: oklch(0.245 0.014 58 / 0.55); backdrop-filter: blur(8px);
  color: var(--cream); padding: 0.8rem 1.1rem; border-radius: var(--radius); font-size: var(--step--1);
}
.mirror-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.mirror-list li { list-style: none; display: flex; gap: 0.9rem; align-items: flex-start; color: var(--ink-2); }
.mirror-list li svg { width: 19px; height: 19px; color: var(--gold-deep); flex: none; margin-top: 0.35em; }
.pull { font-family: var(--display); font-style: italic; font-size: var(--step-2); line-height: 1.2; color: var(--ink); margin-top: 2rem; }

/* ------------------------------ Results --------------------------------- */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; border-top: 1px solid var(--line); }
.result {
  padding: 2.2rem 1.4rem 0.4rem; border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line-soft);
}
.result:last-child { border-right: none; }
.result .num { font-family: var(--display); font-size: clamp(3rem, 2rem + 4vw, 5rem); font-weight: 500; line-height: 1; color: var(--ink); display: flex; align-items: baseline; gap: 0.06em; }
.result .num span { font-size: 0.42em; color: var(--gold-deep); }
.result p { margin-top: 0.9rem; color: var(--ink-2); font-size: var(--step-0); }
.results-note { margin-top: 1.5rem; font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.02em; }
.timeline { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.tl-step { flex: 1; min-width: 200px; padding: 1.6rem 1.5rem; background: var(--porcelain); border-radius: 6px; border: 1px solid var(--line-soft); }
.tl-step .day { font-family: var(--display); font-style: italic; color: var(--gold-deep); font-size: var(--step-1); }
.tl-step h4 { font-family: var(--sans); font-weight: 600; font-size: var(--step-0); margin: 0.6rem 0 0.4rem; letter-spacing: 0.01em; }
.tl-step p { color: var(--ink-2); font-size: var(--step--1); }

/* ------------------------------ Formula --------------------------------- */
.formula-media { position: relative; }
.formula-media .product-shot { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); }
.formula-media .texture-chip {
  position: absolute; right: -5%; bottom: -7%; width: 42%; aspect-ratio: 1.2; border-radius: 6px;
  overflow: hidden; box-shadow: var(--shadow-card); border: 5px solid var(--porcelain);
}
.formula-media .texture-chip img { width: 100%; height: 100%; object-fit: cover; }
.actives { margin-top: 2rem; display: grid; gap: 0; }
.active-row { display: grid; grid-template-columns: auto 1fr; gap: 1.3rem; padding: 1.4rem 0; border-top: 1px solid var(--line-soft); align-items: start; }
.active-row:last-child { border-bottom: 1px solid var(--line-soft); }
.active-row .ico { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-deep); }
.active-row .ico svg { width: 22px; height: 22px; }
.active-row h4 { font-family: var(--display); font-weight: 500; font-size: var(--step-1); }
.active-row p { color: var(--ink-2); font-size: var(--step-0); margin-top: 0.25rem; }
.sensory { margin-top: 2rem; font-family: var(--display); font-style: italic; font-size: var(--step-1); color: var(--ink); line-height: 1.4; }

/* ------------------------------ Ritual ---------------------------------- */
.ritual-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 3rem; }
.ritual-step { position: relative; }
.ritual-step .step-n { font-family: var(--display); font-size: var(--step-3); color: var(--gold); line-height: 1; opacity: 0.85; }
.ritual-step h4 { font-family: var(--display); font-weight: 500; font-size: var(--step-1); margin: 0.7rem 0 0.6rem; }
.ritual-step p { color: var(--ink-2); font-size: var(--step-0); }
.ritual-rule { height: 1px; background: var(--line); margin-top: 1.2rem; position: relative; }
.ritual-rule::before { content: ""; position: absolute; left: 0; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ------------------------------ Proof ----------------------------------- */
.proof-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.rating-big { display: flex; align-items: center; gap: 1.2rem; }
.rating-big .score { font-family: var(--display); font-size: clamp(3rem, 2rem + 4vw, 4.6rem); line-height: 1; color: var(--ink); }
.rating-big .stars { font-size: 1.4rem; }
.rating-big .meta { font-size: var(--step--1); color: var(--ink-3); letter-spacing: 0.04em; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); margin-top: 3rem; }
.testi {
  background: var(--porcelain); border: 1px solid var(--line-soft); border-radius: 6px;
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.testi .stars { font-size: 0.95rem; }
.testi blockquote { font-family: var(--display); font-size: var(--step-1); line-height: 1.4; color: var(--ink); font-weight: 400; }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 0.8rem; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; font-family: var(--display); color: var(--ink); font-size: 1.1rem; flex: none; }
.testi .who-name { font-weight: 600; font-size: var(--step--1); color: var(--ink); }
.testi .who-meta { font-size: 0.74rem; color: var(--ink-3); display: flex; align-items: center; gap: 0.35rem; }
.verified { color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.25rem; }
.verified svg { width: 13px; height: 13px; }

/* ------------------------------- Offer ---------------------------------- */
.offer { position: relative; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); margin-top: 3.4rem; align-items: stretch; }
.plan {
  background: var(--porcelain); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 2.2rem 1.9rem; display: flex; flex-direction: column; position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line); }
.plan.featured {
  background: var(--ink); color: var(--cream); border-color: var(--gold);
  transform: scale(1.03); z-index: 2; box-shadow: var(--shadow-card);
}
.plan.featured:hover { transform: scale(1.03) translateY(-6px); }
.plan.featured h3, .plan.featured .price { color: var(--cream); }
.plan.featured .plan-sub, .plan.featured .plan-feat li { color: oklch(0.9 0.01 85 / 0.82); }
.plan-flag {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--gold-deep); color: oklch(0.99 0.01 85); font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.4em 1.2em; border-radius: 100px; white-space: nowrap; font-weight: 600;
}
.plan-name { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--gold-deep); font-weight: 600; }
.plan.featured .plan-name { color: var(--gold-soft); }
.plan h3 { font-family: var(--display); font-size: var(--step-2); margin-top: 0.5rem; }
.plan-sub { font-size: var(--step--1); color: var(--ink-3); margin-top: 0.2rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 1.3rem; }
.plan .price { font-family: var(--display); font-size: clamp(2.6rem, 1.8rem + 3vw, 3.6rem); line-height: 1; color: var(--ink); }
.plan .price-old { font-size: var(--step-0); color: var(--ink-3); text-decoration: line-through; }
.plan .per { font-size: var(--step--1); color: var(--ink-3); }
.plan .save { display: inline-block; margin-top: 0.7rem; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--gold-deep); background: oklch(0.705 0.085 78 / 0.14); padding: 0.3em 0.8em; border-radius: 100px; font-weight: 500; }
.plan.featured .save { background: oklch(0.705 0.085 78 / 0.22); color: var(--gold-soft); }
.plan-feat { list-style: none; margin: 1.6rem 0; display: grid; gap: 0.7rem; }
.plan-feat li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--step--1); color: var(--ink-2); }
.plan-feat li svg { width: 16px; height: 16px; color: var(--gold-deep); flex: none; margin-top: 0.25em; }
.plan.featured .plan-feat li svg { color: var(--gold-soft); }
.plan .btn { margin-top: auto; }
.plan.featured .btn { --btn-bg: var(--gold-deep); --btn-fg: oklch(0.99 0.01 85); }

.guarantee {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.6rem; justify-content: center;
  flex-wrap: wrap; text-align: center;
}
.seal { width: 84px; height: 84px; flex: none; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-deep); position: relative; }
.seal::before { content:""; position:absolute; inset:5px; border:1px solid var(--line); border-radius:50%; }
.seal svg { width: 36px; height: 36px; }
.guarantee .g-text { text-align: left; max-width: 34rem; }
.guarantee h4 { font-family: var(--display); font-size: var(--step-1); }
.guarantee p { color: var(--ink-2); font-size: var(--step--1); margin-top: 0.3rem; }
.scarcity { margin-top: 2.4rem; text-align: center; }
.scarcity-bar { max-width: 30rem; margin: 0.8rem auto 0; height: 7px; border-radius: 100px; background: var(--cream-2); overflow: hidden; border: 1px solid var(--line-soft); }
.scarcity-bar i { display: block; height: 100%; width: 18%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 100px; }
.scarcity p { font-size: var(--step--1); color: var(--ink-2); }
.scarcity strong { color: var(--gold-deep); }

/* ------------------------------- FAQ ------------------------------------ */
.faq-wrap { max-width: 56rem; margin-inline: auto; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; text-align: left; font-family: var(--display); font-size: var(--step-1); color: var(--ink); transition: color 0.4s var(--ease); }
.faq-q:hover { color: var(--gold-deep); }
.faq-q .pm { width: 24px; height: 24px; flex: none; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--gold-deep); transition: transform 0.45s var(--ease); }
.faq-q .pm::before { width: 14px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 14px; }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { color: var(--ink-2); padding-bottom: 1.6rem; max-width: 50rem; }

/* ------------------------------ Capture --------------------------------- */
.capture { background: var(--cream-2); border-radius: 14px; padding: clamp(2.4rem, 5vw, 4rem); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; overflow: hidden; }
.capture::before { content:""; position:absolute; right:-8%; top:-30%; width:45%; aspect-ratio:1; background: radial-gradient(circle, var(--gold-soft), transparent 70%); opacity: 0.55; }
.capture h2 { font-size: var(--step-2); position: relative; }
.capture p { color: var(--ink-2); margin-top: 0.9rem; position: relative; }
.capture-form { display: flex; gap: 0.6rem; flex-wrap: wrap; position: relative; }
.capture-form input {
  flex: 1; min-width: 220px; font: inherit; font-size: var(--step-0); padding: 1.05em 1.3em;
  border: 1px solid var(--line); border-radius: 100px; background: var(--porcelain); color: var(--ink);
}
.capture-form input::placeholder { color: var(--ink-3); }
.capture-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px oklch(0.705 0.085 78 / 0.18); }
.capture-note { font-size: 0.74rem; color: var(--ink-3); margin-top: 0.9rem; }
.form-success { color: var(--gold-deep); font-weight: 500; display: none; }
.capture.done .form-success { display: block; }
.capture.done .capture-form { display: none; }

/* ----------------------------- Final CTA -------------------------------- */
.final { text-align: center; position: relative; overflow: hidden; }
.final h2 { font-size: var(--step-3); max-width: 18ch; margin-inline: auto; }
.final .stars { font-size: 1.2rem; }
.final p { color: oklch(0.9 0.01 85 / 0.8); max-width: 40rem; margin: 1.2rem auto 2.4rem; }
.final .btn { --btn-bg: var(--gold-deep); --btn-fg: oklch(0.99 0.01 85); }

/* ------------------------------ Footer ---------------------------------- */
.site-footer { background: var(--ink); color: oklch(0.9 0.01 85 / 0.7); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { color: var(--cream); }
.footer-brand p { margin-top: 1.2rem; font-size: var(--step--1); max-width: 26rem; line-height: 1.6; }
.foot-col h5 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold-soft); margin-bottom: 1.1rem; font-weight: 600; }
.foot-col a { display: block; font-size: var(--step--1); padding: 0.35rem 0; transition: color 0.3s var(--ease); }
.foot-col a:hover { color: var(--cream); }
.pay-row { display: flex; gap: 0.6rem; margin-top: 1.4rem; flex-wrap: wrap; }
.pay-row span { font-size: 0.6rem; letter-spacing: 0.12em; border: 1px solid oklch(0.9 0.01 85 / 0.2); border-radius: 4px; padding: 0.45em 0.7em; color: oklch(0.9 0.01 85 / 0.6); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid oklch(0.9 0.01 85 / 0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.74rem; color: oklch(0.9 0.01 85 / 0.5); }
.footer-bottom a:hover { color: var(--cream); }

/* ---------------------------- Sticky buybar ----------------------------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: oklch(0.962 0.014 80 / 0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -22px oklch(0.245 0.014 58 / 0.5);
  transform: translateY(110%); transition: transform 0.6s var(--ease);
  padding: 0.7rem 0;
}
.buybar.show { transform: translateY(0); }
.buybar .inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.buybar .bb-left { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.buybar .bb-thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex: none; }
.buybar .bb-name { font-family: var(--display); font-size: var(--step-0); line-height: 1.1; }
.buybar .bb-price { font-size: var(--step--1); color: var(--ink-2); }
.buybar .bb-price b { color: var(--ink); font-weight: 600; }
.buybar .bb-price s { color: var(--ink-3); }
.buybar .btn { padding: 0.85em 1.6em; white-space: nowrap; }

/* ---------------------------- Reveal anim ------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 1080px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 30rem; margin-inline: auto; order: -1; }
  .hero-copy { max-width: none; text-align: center; margin-inline: auto; }
  .hero .eyebrow, .section-head:not(.center) .eyebrow { }
  .hero-cta-row, .hero-trust { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .ritual-steps { grid-template-columns: 1fr; gap: 1.6rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .plan.featured { transform: none; } .plan.featured:hover { transform: translateY(-6px); }
  .capture { grid-template-columns: 1fr; }
  .proof-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu {
    position: fixed; inset: 0; z-index: 45; background: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
    opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
  }
  body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  .mobile-menu a:not(.btn) { font-family: var(--display); font-size: var(--step-2); color: var(--ink); }
  .mobile-menu .btn { margin-top: 1rem; font-family: var(--sans); font-size: var(--step-0); color: var(--cream); }
  .results-grid { grid-template-columns: 1fr; }
  .result { border-right: none; }
  body { padding-bottom: 76px; } /* space for sticky buybar */
}
@media (min-width: 761px) { .mobile-menu { display: none; } }
@media (max-width: 480px) {
  .badge-rating { left: 0; bottom: 4%; }
  .badge-jar { right: 0; }
  .announce .container { gap: 0.6rem; font-size: 0.72rem; }
  .guarantee { flex-direction: column; } .guarantee .g-text { text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
