/* ================================================================
   JUVION SWISS — Design System
   Swiss Precision · Neuromuscular Longevity
   ================================================================ */

/* -------- Tokens (premium, light, white-first) -------- */
:root {
  /* Backgrounds */
  --c-white: #ffffff;
  --c-cream: #fbf6ee;              /* primary cream — soft sections */
  --c-cream-2: #f5ebda;            /* deeper cream block */
  --c-peach: #ffe4cc;              /* premium peach accent */
  --c-blush: #ffd2b0;              /* deeper peach */
  --c-sage: #d8e2c9;               /* refined sage */
  --c-sage-deep: #95a87f;
  --c-soft: #fbf6ee;
  --c-soft-2: #f5ebda;

  /* Lines & greys */
  --c-line: #ece0cd;               /* refined hairline */
  --c-line-strong: #d8c8b0;
  --c-grey: #bfb29e;
  --c-grey-mid: #6b6258;
  --c-grey-deep: #3a312a;

  /* Text — warm near-black */
  --c-text: #1a1410;
  --c-deep: #1a1410;
  --c-midnight: #0e0a06;

  /* Accent — Juvion orange */
  --c-accent: #e8782c;              /* primary brand orange (logo) */
  --c-accent-deep: #c66417;
  --c-accent-darker: #a55211;
  --c-accent-soft: #fde6cf;         /* tint */
  --c-accent-tint: #fef2e3;         /* very soft tint */
  --c-terracotta: #e8782c;          /* alias to brand */
  --c-terracotta-deep: #c66417;
  --c-coral: #e8782c;
  --c-coral-deep: #c66417;
  --c-yellow: #f5c84d;
  --c-yellow-soft: #fdecb0;
  --c-mint: var(--c-sage);
  --c-mint-deep: var(--c-sage-deep);
  --c-sky: #cfe0eb;
  --c-swiss-red: #d52b1e;

  /* Type — Geist everywhere (display alias points to the same family) */
  --f-sans: "Geist", "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  --f-display: "Geist", "Inter", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Layout */
  --content-max: 1280px;
  --content-narrow: 880px;
  --content-prose: 680px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-std: 300ms;
  --t-slow: 500ms;

  /* Header */
  --header-h: 88px;
}

/* -------- Reset -------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { color: var(--c-text); }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--t-std) var(--ease), color var(--t-std) var(--ease);
}

p { margin: 0 0 var(--s-3) 0; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-deep);
}
h1, h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-feature-settings: "ss01";
}

ul { padding-left: 1.1em; margin: 0 0 var(--s-3) 0; }
ul.unstyled { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--c-coral); color: var(--c-white); }

/* -------- Type scale (premium — Geist throughout, refined hierarchy) -------- */
.h-display {
  font-family: var(--f-sans);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.h1 {
  font-family: var(--f-sans);
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.h2 {
  font-family: var(--f-sans);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.h3 {
  font-size: clamp(19px, 1.9vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}
.lead {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--c-grey-deep);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.muted { color: var(--c-grey-mid); }
.serif-italic { font-style: italic; font-weight: 400; }

/* -------- Layout primitives -------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.container-prose {
  width: 100%;
  max-width: var(--content-prose);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================================
   Global section rhythm — tighter, balanced top/bottom breathing
   ===================================================================== */
.section { padding: clamp(56px, 6.5vw, 96px) 0; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }
.section-tight { padding: clamp(32px, 4vw, 56px) 0; }
.section-lg { padding: clamp(72px, 8.5vw, 120px) 0; }

/* Inline padding-top overrides on pages get a sane (lower) minimum */
.section[style*="padding-top"] { padding-top: clamp(48px, 6vw, 80px) !important; }
.section-sm[style*="padding-top"] { padding-top: clamp(40px, 5vw, 64px) !important; }

/* Visual-only sections (no .section class) — modest margin */
.lifestyle-band { margin: clamp(32px, 4vw, 56px) 0; }
.recognised { margin-top: 0; }

/* Section heads — tighter spacing before content */
.section-head { margin-bottom: clamp(32px, 4vw, 56px) !important; }
.section-head .eyebrow { margin-bottom: 18px; }

/* Section + section seam: keep both paddings — feels more deliberate
   than collapsing them. Add a hairline divider behavior via border-top
   only when sections share the same background. */
.section + .section { border-top: 1px solid var(--c-line); }
.section + .section.section-ritual,
.section + .section.section-plans,
.section + .section.section-benefits,
.section + .section.section-expect,
.section + .section.section-faq-teaser,
.section + .section.section-why,
.section + .section.testimonials { border-top: none; } /* these provide their own */

/* "Dark section" — pure white with refined hairline framing */
.dark-section {
  background: var(--c-white);
  color: var(--c-text);
  position: relative;
  overflow: hidden;
}
.dark-section::before { content: none; }
.dark-section .container { position: relative; z-index: 1; }
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 { color: var(--c-text); }
.dark-section .lead { color: var(--c-grey-deep); }
.dark-section .muted { color: var(--c-grey-mid); }
.dark-section .eyebrow { color: var(--c-accent); }

.soft-section { background: var(--c-white); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.peach-section { background: var(--c-white); }
.mint-section { background: var(--c-white); }
.yellow-section { background: var(--c-white); }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); }
.gap-4 { gap: var(--s-4); }

.text-center { text-align: center; }

.divider {
  height: 1px;
  background: var(--c-line);
  border: 0;
  margin: 0;
}

/* -------- Buttons (premium) -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 350ms var(--ease),
              background 350ms var(--ease),
              color 350ms var(--ease),
              box-shadow 350ms var(--ease),
              border-color 350ms var(--ease);
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 14px 28px -10px rgba(232,120,44,0.4);
}
.btn-primary:hover {
  background: var(--c-accent-deep);
  box-shadow: 0 18px 36px -10px rgba(232,120,44,0.55);
}
.btn-primary svg { transition: transform 350ms var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-accent {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 14px 28px -10px rgba(232,120,44,0.4);
}
.btn-accent:hover {
  background: var(--c-accent-deep);
  box-shadow: 0 18px 36px -10px rgba(232,120,44,0.55);
}

.btn-secondary {
  background: var(--c-white);
  color: var(--c-text);
  border: 1px solid var(--c-line-strong);
}
.btn-secondary:hover {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 14px 28px -10px rgba(232,120,44,0.4);
}

.dark-section .btn-secondary {
  background: transparent;
  border-color: var(--c-line);
  color: var(--c-text);
}
.dark-section .btn-secondary:hover {
  border-color: var(--c-text);
  background: transparent;
  color: var(--c-text);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  height: auto;
  padding: 0;
  border-radius: 0;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 2px;
  letter-spacing: -0.005em;
  transition: color var(--t-std) var(--ease), border-color var(--t-std) var(--ease);
}
.btn-link:hover { color: var(--c-accent); border-color: var(--c-accent); }
.dark-section .btn-link { color: var(--c-text); border-color: var(--c-text); }
.dark-section .btn-link:hover { color: var(--c-accent); border-color: var(--c-accent); }

.btn-sm { height: 40px; padding: 0 18px; font-size: 13px; }

/* -------- Header -------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--header-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 350ms var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 32px -16px rgba(26,20,16,0.08);
}
/* Dark header variant for the cinematic AVEA-style home hero */
.site-header.is-dark {
  background: rgba(20,15,10,0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.10);
  color: var(--c-white);
}
.site-header.is-dark .nav-link { color: rgba(255,255,255,0.92); }
.site-header.is-dark .nav-link.is-active { color: var(--c-white); }
.site-header.is-dark .logo-mark { color: var(--c-white); }
.site-header.is-dark .logo-mark .sub { color: rgba(255,255,255,0.6); }
.site-header.is-dark .logo-glyph path.j { fill: var(--c-white); }
.site-header.is-dark .menu-toggle { border-color: rgba(255,255,255,0.25); color: var(--c-white); }
.site-header.is-dark .btn-secondary { border-color: rgba(255,255,255,0.5); color: var(--c-white); background: transparent; }
.site-header.is-dark .btn-secondary:hover { border-color: var(--c-white); background: rgba(255,255,255,0.08); color: var(--c-white); }
.site-header.is-dark .btn-accent { background: var(--c-terracotta); }
.site-header.is-dark .btn-accent:hover { background: var(--c-terracotta-deep); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo-mark .logo-glyph {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-mark .logo-text {
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  color: var(--c-accent);
}
.logo-mark .logo-text .sub {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: var(--c-accent);
  opacity: 0.78;
  margin-top: 4px;
  font-weight: 500;
}

.nav {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 2px;
  transition: color 300ms var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--c-accent);
  transition: width 350ms var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--c-accent); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--c-accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Premium icon buttons (search, cart) */
.header-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text);
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  transition: background 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
  cursor: pointer;
}
.header-icon-btn:hover {
  background: var(--c-cream);
  color: var(--c-accent);
  border-color: var(--c-line);
}
.header-cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--c-white);
  font-feature-settings: "tnum";
}

/* Premium header CTA pill */
.header-cta {
  margin-left: 8px;
  height: 44px;
  padding: 0 22px;
  font-size: 13px;
}
.header-cta svg { transition: transform 300ms var(--ease); }
.header-cta:hover svg { transform: translateX(3px); }
@media (max-width: 980px) {
  .header-icon-btn[aria-label="Search"] { display: none; }
  .header-cta { display: none; }
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  color: var(--c-text);
}
.site-header.is-dark .menu-toggle { border-color: rgba(255,255,255,0.2); color: var(--c-white); }

@media (min-width: 980px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--c-white);
  transform: translateX(100%);
  transition: transform 400ms var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--c-line);
}
.drawer-body {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-link {
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--c-deep);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line);
}
.drawer-link.is-active { color: var(--c-accent); }
.drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* -------- Logo glyph (legacy SVG fallback) -------- */
.logo-glyph circle.dot { fill: var(--c-accent); }
.logo-glyph path.j { fill: var(--c-accent); }

/* -------- Brand logo image — used in header, drawer, footer -------- */
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.drawer-head .logo-img { height: 48px; max-width: 220px; }
.footer .logo-img { height: 64px; max-width: 280px; }
@media (max-width: 720px) {
  .logo-img { height: 44px; max-width: 200px; }
  .footer .logo-img { height: 52px; max-width: 230px; }
}

/* ============================================================
   HERO TICKER — full-width brand statement scroll above hero
   ============================================================ */
.hero-ticker {
  position: relative;
  margin-top: var(--header-h);
  padding: 14px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
  z-index: 5;
}
.hero-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: heroTickerScroll 38s linear infinite;
}
.hero-ticker:hover .hero-ticker-track { animation-play-state: paused; }
.hero-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
  flex-shrink: 0;
}
.hero-ticker-mark { color: var(--c-accent); font-size: 10px; }
@keyframes heroTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO BLEED — AG1-style full-bleed cinematic hero
   Used across home + all interior pages
   ============================================================ */
.hero-bleed {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: var(--c-text);
  overflow: hidden;
  isolation: isolate;
  margin-top: 0;
  padding-top: var(--header-h);
  display: flex;
  align-items: flex-end;
}
.hero-bleed-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
  will-change: transform;
}
.hero-bleed:hover .hero-bleed-bg { transform: scale(1.08); }
.hero-bleed-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

/* Slider arrows + pagination — hidden (no slider) */
.hero-bleed-arrow,
.hero-bleed-pagination { display: none !important; }

/* Original carousel-style arrows (kept for reference if re-enabled) */
.hero-bleed-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--c-text);
  transition: background 300ms var(--ease), transform 300ms var(--ease);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}
.hero-bleed-arrow:hover {
  background: var(--c-white);
  transform: translateY(-50%) scale(1.06);
}
.hero-bleed-arrow-prev { left: 14px; }
.hero-bleed-arrow-next { right: 14px; }
@media (max-width: 720px) { .hero-bleed-arrow { display: none; } }

/* Content block — anchored to bottom-left */
.hero-bleed-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(40px, 6vw, 96px) clamp(80px, 10vh, 160px);
  color: var(--c-white);
}
.hero-bleed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-white);
}
.hero-bleed-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.25);
  animation: pulseDot 2.4s var(--ease) infinite;
}
.hero-bleed-headline {
  font-family: var(--f-sans);
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 28px;
  max-width: 16ch;
  color: var(--c-white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.hero-bleed-headline em {
  font-style: normal;
  color: var(--c-accent);
}
.hero-bleed-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 50ch;
  margin: 0 0 36px;
}
.hero-bleed-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* Pill button — primary (orange) */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 300ms var(--ease), transform 300ms var(--ease), box-shadow 300ms var(--ease);
  box-shadow: 0 14px 30px -10px rgba(232,120,44,0.5);
  white-space: nowrap;
}
.btn-pill-primary:hover {
  background: var(--c-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -10px rgba(232,120,44,0.6);
}
.btn-pill-primary svg { transition: transform 300ms var(--ease); }
.btn-pill-primary:hover svg { transform: translateX(4px); }

/* Pill button — secondary (outlined white) */
.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--c-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid rgba(255,255,255,0.7);
  transition: background 300ms var(--ease), border-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
  white-space: nowrap;
}
.btn-pill-secondary:hover {
  background: var(--c-white);
  color: var(--c-text);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

/* Bottom-right page indicator (e-commerce slider feel) */
.hero-bleed-pagination {
  position: absolute;
  right: clamp(40px, 6vw, 96px);
  bottom: clamp(80px, 10vh, 160px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-white);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-bleed-pagination strong {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.hero-bleed-pagination-line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
@media (max-width: 980px) { .hero-bleed-pagination { display: none; } }

/* Hide the old heroes when bleed is used */

/* ============================================================
   HERO V2 — Full-width premium e-commerce, edge-to-edge image
   ============================================================ */
.hero-v2 {
  position: relative;
  background: var(--c-white);
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-h);
}
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-h));
  align-items: stretch;
  width: 100%;
}
@media (min-width: 980px) {
  .hero-v2-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1280px) {
  .hero-v2-grid { grid-template-columns: 1.02fr 1fr; }
}

/* Left edge vertical label */
.hero-v2-edge {
  position: absolute;
  left: 24px;
  top: calc(var(--header-h) + 24px);
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.hero-v2-edge span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 600;
  white-space: nowrap;
}
.hero-v2-edge-bar {
  flex: 1;
  width: 1px;
  background: var(--c-line);
}
@media (max-width: 1180px) { .hero-v2-edge { display: none; } }

/* Left content column — full-bleed with internal padding */
.hero-v2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px) clamp(48px, 6vw, 96px) clamp(48px, 6vw, 120px);
  max-width: 760px;
  margin-left: auto;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-v2-content { padding: clamp(40px, 5vw, 64px) 24px; max-width: 100%; margin: 0; }
}

/* Overline pill */
.hero-v2-overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 36px;
  width: max-content;
  max-width: 100%;
  box-shadow: 0 4px 16px -8px rgba(26,20,16,0.08);
}
.hero-v2-overline-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.18);
  animation: pulseDot 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
.hero-v2-overline-pill {
  padding: 4px 10px;
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* Headline */
.hero-v2-headline {
  font-family: var(--f-sans);
  font-size: clamp(52px, 7.8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 0.9;
  color: var(--c-text);
  margin: 0 0 36px;
}
.hero-v2-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: lineReveal 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-v2-headline .line:nth-child(1) { animation-delay: 200ms; }
.hero-v2-headline .line:nth-child(2) { animation-delay: 350ms; }
.hero-v2-headline .line:nth-child(3) { animation-delay: 500ms; }
.hero-v2-headline .line:nth-child(4) { animation-delay: 650ms; }
.hero-v2-headline em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 500;
}

.hero-v2-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--c-grey-deep);
  max-width: 50ch;
  margin: 0 0 40px;
}

/* Premium CTAs */
.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-v2-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 60px;
  padding: 0 8px 0 32px;
  background: var(--c-accent);
  color: var(--c-white);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: background 350ms var(--ease), transform 350ms var(--ease), box-shadow 350ms var(--ease);
  box-shadow: 0 14px 36px -10px rgba(232,120,44,0.45);
}
.hero-v2-cta-primary:hover {
  background: var(--c-accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -10px rgba(232,120,44,0.55);
}
.hero-v2-cta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 350ms var(--ease);
}
.hero-v2-cta-primary:hover .hero-v2-cta-arrow svg { transform: translateX(3px); }
.hero-v2-cta-arrow svg { transition: transform 350ms var(--ease); }

.hero-v2-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 24px 0 8px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 350ms var(--ease), gap 350ms var(--ease);
}
.hero-v2-cta-secondary:hover { color: var(--c-accent); gap: 14px; }
.hero-v2-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--c-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 350ms var(--ease), background 350ms var(--ease), color 350ms var(--ease);
}
.hero-v2-cta-secondary:hover .hero-v2-cta-icon {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-white);
}

/* Trust row */
.hero-v2-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
  padding: 14px 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  width: max-content;
  max-width: 100%;
}
.hero-v2-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--c-accent);
}
.hero-v2-trust-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.4;
}
.hero-v2-trust-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.hero-v2-trust-text span { color: var(--c-grey-mid); }

/* 4-cell editorial meta */
.hero-v2-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  margin: 0;
  max-width: 540px;
}
@media (min-width: 640px) {
  .hero-v2-meta { grid-template-columns: repeat(4, 1fr); }
}
.hero-v2-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-v2-meta dt {
  font-size: 28px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  line-height: 1;
  margin: 0;
}
.hero-v2-meta dt span {
  font-size: 0.55em;
  color: var(--c-grey-mid);
  margin-left: 2px;
  font-weight: 500;
}
.hero-v2-meta dd {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
  line-height: 1.4;
}

/* RIGHT — edge-to-edge full-bleed visual */
.hero-v2-visual {
  position: relative;
  padding: 0;
  display: flex;
}
@media (max-width: 980px) {
  .hero-v2-visual { min-height: 70vh; }
}
.hero-v2-visual-frame {
  position: relative;
  flex: 1;
  border-radius: 0;
  overflow: hidden;
  background: var(--c-cream);
  isolation: isolate;
}
@media (min-width: 980px) {
  /* Soft rounded inner corners only on the left edge for premium card feel */
  .hero-v2-visual-frame { border-radius: 32px 0 0 32px; }
}
.hero-v2-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 1500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  filter: saturate(0.95) contrast(1.02);
}
.hero-v2-visual:hover .hero-v2-photo { transform: scale(1.08); }

/* Vertical brand label on photo */
.hero-v2-photo-vlabel {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-v2-photo-vlabel span:first-child {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.6);
}
@media (max-width: 720px) { .hero-v2-photo-vlabel { display: none; } }

/* Editorial number callout (big "01") on photo */
.hero-v2-photo-num {
  position: absolute;
  bottom: 120px;
  left: 32px;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-v2-photo-num-line {
  width: 2px;
  height: 80px;
  background: var(--c-accent);
}
.hero-v2-photo-num-big {
  font-size: 92px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--c-white);
  font-feature-settings: "tnum";
}
.hero-v2-photo-num-meta {
  padding-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 720px) {
  .hero-v2-photo-num { bottom: 100px; left: 20px; }
  .hero-v2-photo-num-big { font-size: 64px; }
  .hero-v2-photo-num-line { height: 56px; }
}

/* Live pulse indicator (top-right of photo, balances vertical brand label) */
.hero-v2-live {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,0.22);
}
.hero-v2-live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-accent);
  position: relative;
}
.hero-v2-live-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--c-accent);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Rotating circular brand stamp — bottom-right corner */
.hero-v2-stamp {
  position: absolute;
  z-index: 5;
  width: 130px;
  height: 130px;
  top: 30%;
  left: 10%;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero-v2-stamp-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--c-white);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  animation: stampSpin 24s linear infinite;
}
@keyframes stampSpin {
  to { transform: rotate(360deg); }
}
.hero-v2-stamp-center {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-white);
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
@media (max-width: 980px) {
  .hero-v2-stamp { width: 100px; height: 100px; top: 24%; left: 6%; }
  .hero-v2-stamp-center { width: 36px; height: 36px; }
}

/* Floating chip top-right (with stat) */
.hero-v2-chip-top {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(-12px);
  animation: chipIn 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.0s forwards;
}
.hero-v2-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.2);
  animation: pulseDot 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
.hero-v2-chip-top div { display: flex; flex-direction: column; gap: 2px; }
.hero-v2-chip-top strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.hero-v2-chip-top span {
  font-size: 11px;
  color: var(--c-grey-mid);
}

/* Floating product over photo */
.hero-v2-product {
  position: absolute;
  z-index: 3;
  width: 44%;
  max-width: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.5)) drop-shadow(0 22px 36px rgba(0,0,0,0.35));
  animation: heroV2Float 6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-v2-visual:hover .hero-v2-product { transform: translate(-50%, -55%) scale(1.04); }
@keyframes heroV2Float {
  0%, 100% { transform: translate(-50%, -52%); }
  50% { transform: translate(-50%, -56%); }
}

/* Annotation tags around product */
.hero-v2-tag {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--c-text);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.25);
  white-space: nowrap;
  opacity: 0;
}
.hero-v2-tag-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--c-accent);
}
.hero-v2-tag-l {
  left: 8%;
  top: 32%;
  transform: rotate(-3deg) translateY(-12px);
  animation: chipIn 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s forwards;
}
.hero-v2-tag-r {
  right: 8%;
  bottom: 30%;
  transform: rotate(3deg) translateY(12px);
  animation: chipIn 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 1.4s forwards;
}

/* Bottom info card */
.hero-v2-info-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8px 18px 22px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.32);
}
.hero-v2-info-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-v2-info-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}
.hero-v2-info-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.hero-v2-info-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c-text);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.hero-v2-info-arrow:hover {
  background: var(--c-accent);
  transform: translate(2px, -2px);
}

/* Scroll cue */
.hero-v2-scroll {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 600;
}
.hero-v2-scroll-line {
  width: 56px;
  height: 1px;
  background: var(--c-grey);
  position: relative;
  overflow: hidden;
}
.hero-v2-scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  transform: translateX(-100%);
  animation: scrollLineSlide 2.4s var(--ease) infinite;
}
@keyframes scrollLineSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@media (max-width: 980px) { .hero-v2-scroll { display: none; } }

/* Hide the OLD .hero entirely (we use .hero-v2 now) */
.hero { display: none !important; }

/* -------- Hero (pure white · editorial · photo-card composition) -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  color: var(--c-text);
  isolation: isolate;
  overflow: hidden;
  background: var(--c-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--c-white);
}
.hero-bg::before, .hero-bg::after { content: none; }
.hero-content {
  width: 100%;
  padding: 80px 24px 96px;
  position: relative;
  z-index: 1;
}
.hero-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}
.hero-headline {
  font-family: var(--f-sans);
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--c-text);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.hero-headline em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.04em;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: heroUnderline 1s var(--ease) 600ms forwards;
}
@keyframes heroUnderline {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--c-grey-deep);
  max-width: 50ch;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-index-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-grey-mid);
  margin-bottom: 24px;
}
.hero-index-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-terracotta);
}
.hero-index-tag strong {
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-feature-settings: "tnum";
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero .btn-primary {
  background: var(--c-terracotta);
  color: var(--c-white);
  height: 56px;
  padding: 0 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero .btn-primary:hover { background: var(--c-terracotta-deep); }
.hero .btn-arrow { color: var(--c-text); border-color: var(--c-text); height: 52px; }
.hero .btn-arrow:hover { color: var(--c-terracotta); border-color: var(--c-terracotta); }

.hero-meta { display: none; }

/* Removed: dark hero-trust bottom strip and scroll cue (kept light alternatives below) */
.hero-trust, .hero-scroll-cue { display: none; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  position: static;
  width: max-content;
  box-shadow: 0 6px 20px -10px rgba(42,31,24,0.12);
}
.hero-tag .swiss-cross {
  width: 14px; height: 14px; flex-shrink: 0;
  background: var(--c-swiss-red);
  border-radius: 2px;
  position: relative;
}
.hero-tag .swiss-cross::before,
.hero-tag .swiss-cross::after {
  content: "";
  position: absolute;
  background: white;
}
.hero-tag .swiss-cross::before {
  top: 3px; bottom: 3px; left: 6px; width: 2px;
}
.hero-tag .swiss-cross::after {
  left: 3px; right: 3px; top: 6px; height: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: var(--c-grey);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* -------- Section header -------- */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* -------- Cards / Modules -------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 400ms var(--ease),
              box-shadow 400ms var(--ease),
              border-color 400ms var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width 500ms var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.18);
}
.card:hover::before { width: 100%; }
.card .eyebrow { margin-bottom: 16px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--c-grey-deep); font-size: 15px; }

.dark-section .card {
  background: var(--c-white);
  border-color: var(--c-line);
}
.dark-section .card:hover {
  border-color: var(--c-coral);
}
.dark-section .card p { color: var(--c-grey-deep); }

.kpi {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0;
  border-top: 2px solid var(--c-line);
  position: relative;
  transition: padding 400ms var(--ease);
}
.kpi::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 24px;
  height: 2px;
  background: var(--c-accent);
  transition: width 600ms var(--ease);
}
.kpi:hover::before { width: 64px; }
.kpi-num {
  font-family: var(--f-sans);
  font-size: clamp(44px, 5.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--c-deep);
  line-height: 0.95;
  font-feature-settings: "tnum";
}
.kpi-num strong { color: var(--c-accent); font-weight: 500; }
.kpi-label {
  font-size: 13px;
  color: var(--c-grey-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dark-section .kpi { border-top-color: var(--c-line); }
.dark-section .kpi-num { color: var(--c-text); }
.dark-section .kpi-label { color: var(--c-grey-mid); }

/* -------- Pillar / feature row -------- */
.pillar {
  display: grid;
  gap: 12px;
  padding: 32px 0;
  border-top: 1px solid var(--c-line);
}
.pillar-num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-grey-mid);
}
.pillar { padding: 40px 0; }
.pillar h3 { font-family: var(--f-sans); font-size: 24px; font-weight: 500; letter-spacing: -0.018em; }
.pillar-num {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--c-accent);
  font-weight: 600;
  font-feature-settings: "tnum";
}
.pillar:hover { background: linear-gradient(180deg, transparent, var(--c-cream) 100%); }
.pillar { transition: background 400ms var(--ease); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 12px; }
.pillar p { color: var(--c-grey-deep); font-size: 15px; }
@media (min-width: 980px) {
  .pillar { grid-template-columns: 80px 1fr 1fr; gap: 48px; align-items: start; }
  .pillar p { padding-top: 4px; }
}

/* -------- Product showcase -------- */
.product-stage {
  position: relative;
  background: linear-gradient(160deg, var(--c-cream) 0%, var(--c-peach) 100%);
  border-radius: 28px;
  padding: clamp(48px, 8vw, 96px) 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--c-line);
}
.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(232,120,44,0.1), transparent 60%);
  z-index: -1;
}
.product-stage::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(232,120,44,0.18);
  border-radius: 50%;
  animation: spinRing 80s linear infinite;
  pointer-events: none;
}
.product-image {
  width: clamp(220px, 30vw, 380px);
  filter: drop-shadow(0 50px 70px rgba(26,20,16,0.22));
}
.product-image {
  width: clamp(220px, 30vw, 360px);
  filter: drop-shadow(0 30px 60px rgba(11,31,42,0.18));
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-meta .price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 32px;
  font-weight: 500;
  color: var(--c-deep);
  letter-spacing: -0.02em;
}
.product-meta .price small {
  font-size: 13px;
  color: var(--c-grey-mid);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.subscription-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-soft);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
}
.subscription-toggle button {
  height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-grey-deep);
  transition: background var(--t-std) var(--ease), color var(--t-std) var(--ease);
}
.subscription-toggle button.is-active {
  background: var(--c-text);
  color: var(--c-white);
}

.product-bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.product-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--c-grey-deep); list-style: none; padding-left: 0;
}
.product-bullets li svg { flex-shrink: 0; margin-top: 3px; color: var(--c-terracotta); }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-size: 12px;
  color: var(--c-grey-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { color: var(--c-terracotta); }

/* -------- Ingredient card -------- */
.ing-card {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  background: var(--c-white);
  transition: border-color 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease);
  overflow: hidden;
}
.ing-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width 500ms var(--ease);
}
.ing-card:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -32px rgba(232,120,44,0.22);
}
.ing-card:hover::before { width: 100%; }
.ing-card .ing-symbol {
  font-family: var(--f-sans);
  font-size: 40px;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  display: block;
  font-feature-settings: "tnum";
}
.ing-card h3 { font-size: 20px; margin-bottom: 8px; }
.ing-card .role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  margin-bottom: 12px;
}
.ing-card p { font-size: 14px; color: var(--c-grey-deep); }

/* -------- Accordion -------- */
.accordion { display: flex; flex-direction: column; }
.acc-item { border-top: 1px solid var(--c-line); }
.acc-item:last-child { border-bottom: 1px solid var(--c-line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--f-sans);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 500;
  text-align: left;
  color: var(--c-deep);
  letter-spacing: -0.015em;
  gap: 16px;
  transition: color 300ms var(--ease);
}
.acc-trigger:hover { color: var(--c-accent); }
.acc-trigger .acc-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-std) var(--ease), background var(--t-std) var(--ease), color var(--t-std) var(--ease);
}
.acc-item.is-open .acc-icon {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-color: var(--c-terracotta);
  transform: rotate(45deg);
}
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}
.acc-panel-inner {
  padding: 0 0 28px 0;
  max-width: 60ch;
  color: var(--c-grey-deep);
  font-size: 15px;
  line-height: 1.6;
}

/* -------- Diagram (science) -------- */
.diagram-stage {
  background: linear-gradient(160deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  border: 1px solid var(--c-line);
}
.diagram-stage svg { width: 100%; height: auto; }

.flow-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .flow-row { grid-template-columns: repeat(4, 1fr); }
}
.flow-step {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.flow-step:hover {
  border-color: var(--c-line-strong);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(26,20,16,0.18);
}
.flow-step .step-n {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}
.flow-step strong {
  font-size: 18px;
  letter-spacing: -0.012em;
}
.flow-step strong {
  font-size: 16px;
  color: var(--c-deep);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.flow-step span {
  font-size: 13px;
  color: var(--c-grey-mid);
}

/* -------- Image / media -------- */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-soft);
  aspect-ratio: 4 / 5;
}
.media-frame img,
.media-frame .ph {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.media-frame.wide { aspect-ratio: 16 / 9; }
.media-frame.square { aspect-ratio: 1 / 1; }

/* -------- Banner — premium peach block with refined gradient -------- */
.banner {
  position: relative;
  min-height: 56vh;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-peach) 100%);
  display: grid;
  place-items: center;
  color: var(--c-text);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.banner::before {
  content: "";
  position: absolute;
  width: 50vw;
  max-width: 600px;
  aspect-ratio: 1;
  right: -10vw;
  top: -10%;
  background: radial-gradient(circle, var(--c-blush), transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}
.banner::after {
  content: "";
  position: absolute;
  width: 30vw;
  max-width: 400px;
  aspect-ratio: 1;
  left: -8vw;
  bottom: -10%;
  background: radial-gradient(circle, rgba(232,120,44,0.12), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.banner-text {
  text-align: center;
  max-width: 720px;
  padding: 96px 24px;
  position: relative;
}
.banner-text h2 { color: var(--c-text); margin-bottom: 16px; font-size: clamp(32px, 4.4vw, 56px); }
.banner-text p { color: var(--c-grey-deep); font-size: 17px; max-width: 56ch; margin-left:auto; margin-right:auto; }

/* -------- CTA — premium light card with peach gradient + accent -------- */
.cta {
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 28px;
  padding: clamp(56px, 8vw, 112px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  right: -8%; top: -40%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, var(--c-blush), transparent 60%);
  opacity: 0.65;
  z-index: -1;
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  left: clamp(56px, 8vw, 112px);
  top: clamp(56px, 8vw, 112px);
  width: 40px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}
.cta h2 { color: var(--c-text); max-width: 20ch; }
.cta p { color: var(--c-grey-deep); max-width: 60ch; font-size: 17px; }
.cta .btn-primary { background: var(--c-accent); color: var(--c-white); }
.cta .btn-primary:hover { background: var(--c-accent-deep); }
.cta .btn-secondary { background: var(--c-white); color: var(--c-text); border-color: var(--c-line-strong); }
.cta .btn-secondary:hover { background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent); }
.cta .eyebrow { color: var(--c-accent); }
.cta .eyebrow::before { background: var(--c-accent); }
.cta .inline-form { background: var(--c-white); border-color: var(--c-line); }
.cta .inline-form input { color: var(--c-text); }
.cta .inline-form input::placeholder { color: var(--c-grey-mid); }
.cta .inline-form button { background: var(--c-accent); color: var(--c-white); }
.cta .inline-form button:hover { background: var(--c-accent-deep); }
.cta .muted { color: var(--c-grey-mid); }

/* -------- FAQ category nav -------- */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 16px;
}
.faq-tab {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--c-soft);
  color: var(--c-grey-deep);
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.faq-tab.is-active { background: var(--c-terracotta); color: var(--c-white); border-color: var(--c-terracotta); }

/* -------- Forms -------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
  background: var(--c-white);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  transition: border-color 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: var(--c-line-strong);
}
.field textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 18px;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.12);
}

.inline-form {
  display: flex;
  gap: 8px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px;
  max-width: 460px;
}
.inline-form input {
  flex: 1; min-width: 0;
  height: 44px;
  padding: 0 16px;
  border: 0;
  font: inherit;
  font-size: 14px;
  background: transparent;
}
.inline-form input:focus { outline: none; }
.inline-form button {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--c-text);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--t-std) var(--ease);
}
.inline-form button:hover { background: var(--c-grey-deep); }

/* -------- Subscription cards -------- */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 980px) {
  .plan-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.plan {
  position: relative;
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 40px 36px;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 400ms var(--ease), transform 400ms var(--ease), box-shadow 400ms var(--ease);
  overflow: hidden;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px -32px rgba(232,120,44,0.22);
  border-color: var(--c-line-strong);
}
.plan.featured {
  border-color: var(--c-accent);
  border-width: 2px;
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-accent-tint) 100%);
  color: var(--c-text);
  box-shadow: 0 32px 72px -32px rgba(232,120,44,0.28);
  transform: translateY(-4px);
}
.plan.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px -32px rgba(232,120,44,0.4);
}
.plan.featured h3,
.plan.featured .plan-price strong { color: var(--c-text); }
.plan.featured p { color: var(--c-grey-deep); }
.plan.featured .plan-flag { background: var(--c-terracotta); color: var(--c-white); }
.plan.featured ul.unstyled li svg { color: var(--c-terracotta); }
.plan.featured ul.unstyled li { color: var(--c-grey-deep); }
.plan-flag {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-terracotta);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.plan h3 { font-size: 18px; }
.plan-price {
  display: flex; align-items: baseline; gap: 10px;
  margin: 12px 0 4px;
}
.plan-price strong {
  font-size: 36px; font-weight: 500;
  letter-spacing: -0.025em; color: var(--c-deep);
}
.plan-price small {
  font-size: 13px; color: var(--c-grey-mid);
}
.plan ul.unstyled li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--c-grey-deep);
  padding: 6px 0;
}
.plan.featured ul.unstyled li { color: rgba(255,255,255,0.78); }
.plan ul.unstyled li svg { flex-shrink: 0; color: var(--c-accent); margin-top: 3px; }

/* -------- Footer — pure white minimal -------- */
.footer {
  background: var(--c-white);
  color: var(--c-grey-deep);
  padding: 112px 0 40px;
  border-top: 1px solid var(--c-line);
  position: relative;
}
.footer::before { content: none; }
.footer .container { position: relative; z-index: 1; }
.footer h4 {
  color: var(--c-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer a { color: var(--c-grey-deep); font-size: 14px; }
.footer a:hover { color: var(--c-coral); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 980px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 56px; }
}
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--c-grey-mid); font-size: 14px; line-height: 1.55; margin-top: 16px; }
.footer-brand .logo-mark { color: var(--c-text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--c-grey-mid);
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ==================== FOOTER · PRO (orange · editorial) ==================== */
.footer.footer-pro {
  background: var(--c-accent);
  color: rgba(255,255,255,0.92);
  border-top: none;
  padding: 0 0 40px;
  overflow: hidden;
}
.footer.footer-pro::before { content: none; }
.footer.footer-pro .container { padding-top: 96px; }

/* Marquee strip */
.footer-marquee {
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 28px 0;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  order: 2;
}
.footer.footer-pro { display: flex; flex-direction: column; }
.footer.footer-pro > .container { order: 1; }
.footer.footer-pro > .footer-marquee { order: 2; margin-top: 64px; }
.footer-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: footerMarquee 38s linear infinite;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer-marquee-track .fm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  flex: 0 0 auto;
}
@keyframes footerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Top grid: cols + newsletter */
.footer-pro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 980px) {
  .footer-pro-grid { grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: start; }
}

/* Link columns */
.footer-pro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
@media (min-width: 720px) {
  .footer-pro-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer.footer-pro .footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0 0 18px;
}
.footer.footer-pro .footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.footer.footer-pro .footer-col a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer.footer-pro .footer-col a:hover { color: #fff; }
.footer.footer-pro .footer-col--brand { max-width: 320px; }
.footer.footer-pro .footer-col--brand p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}
.footer-pro-logo .logo-img {
  height: 56px; max-width: 240px;
  filter: brightness(0) invert(1);
}

/* Newsletter card */
.footer-pro-newsletter { color: #fff; }
.footer-pro-news-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #fff;
}
.footer-pro-news-copy {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 22px;
  max-width: 38ch;
}
.footer-pro-news-form {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .2s ease;
  max-width: 460px;
}
.footer-pro-news-form:focus-within { border-color: #fff; }
.footer-pro-news-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 12px 0;
  min-width: 0;
}
.footer-pro-news-form input::placeholder { color: rgba(255,255,255,0.7); }
.footer-pro-news-form button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  flex: 0 0 auto;
}
.footer-pro-news-form button:hover {
  background: #fff; color: var(--c-accent); border-color: #fff;
}
.footer-pro-news-note {
  margin-top: 16px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 42ch;
}

/* Socials */
.footer-pro-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.footer-pro-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-pro-socials a:hover {
  background: #fff;
  color: var(--c-accent);
  border-color: #fff;
}

/* Bottom row */
.footer-pro-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.footer-pro-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-pro-legal a {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-pro-legal a:hover { color: #fff; }

.footer-pro-disclaimer {
  margin-top: 28px;
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 92ch;
}

@media (max-width: 720px) {
  .footer.footer-pro .container { padding-top: 64px; }
  .footer-pro-news-title { font-size: 28px; }
  .footer-marquee-track { font-size: 24px; gap: 32px; }
}

/* -------- Reveal animation (premium) -------- */
/* Reveal class — kept visible by default (no scroll-wait hiding) */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }
.reveal[data-delay="5"] { transition-delay: 500ms; }

/* Variant: fade in from left */
.reveal.from-left {
  transform: translateX(-32px);
}
.reveal.from-left.is-in { transform: translateX(0); }
.reveal.from-right {
  transform: translateX(32px);
}
.reveal.from-right.is-in { transform: translateX(0); }
.reveal.scale-in {
  transform: scale(0.96);
}
.reveal.scale-in.is-in { transform: scale(1); }

/* -------- Page hero (interior pages) -------- */
/* Page hero — luxury editorial: split with photo card on the right */
.page-hero {
  position: relative;
  min-height: 70vh;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-cream) 100%);
  color: var(--c-text);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before { content: none; }
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
}
/* 2-column layout only when a .page-hero-card is present */
.page-hero:has(.page-hero-card) .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .page-hero:has(.page-hero-card) .container { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* Right-side luxury image card on every interior hero */
.page-hero-card {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-cream);
  box-shadow:
    0 50px 100px -40px rgba(26,20,16,0.25),
    0 24px 48px -20px rgba(26,20,16,0.15),
    0 0 0 1px var(--c-line);
  transform: rotate(1deg);
  transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.page-hero-card:hover { transform: rotate(0deg); }
.page-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transform: scale(1.04);
}
.page-hero-card:hover img { transform: scale(1.08); }
.page-hero-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,20,16,0.4) 100%);
  pointer-events: none;
}
.page-hero-card-meta {
  position: absolute;
  left: 18px; right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
}
.page-hero-card-meta strong { color: var(--c-accent); font-weight: 600; }

.page-hero .container { width: 100%; position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 22ch;
  margin-bottom: 24px;
  font-weight: 500;
}
.page-hero .lead {
  max-width: 60ch;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--c-grey-deep);
  line-height: 1.6;
}
.page-hero .eyebrow {
  color: var(--c-terracotta);
  margin-bottom: 18px;
}
.page-hero .eyebrow::before {
  background: var(--c-terracotta);
  opacity: 0.9;
}

/* Crumbs (light surface) */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  margin-bottom: 28px;
}
.crumbs a:hover { color: var(--c-terracotta); }
.crumbs span.sep { color: var(--c-grey); }
.page-hero .crumbs { color: var(--c-grey-mid); }

/* Right-edge corner accent (light) */
.page-hero .ph-corner {
  position: absolute;
  top: calc(var(--header-h) + 32px);
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--c-text);
  font-feature-settings: "tnum";
  text-transform: uppercase;
}
.page-hero .ph-corner::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--c-terracotta);
}
@media (max-width: 720px) { .page-hero .ph-corner { display: none; } }

/* -------- Sticky CTA bar (mobile) — coral on white -------- */
.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 50;
  background: var(--c-white);
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,0.18);
  font-size: 14px;
  transform: translateY(120%);
  transition: transform 400ms var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta strong { font-weight: 500; }
.sticky-cta button {
  background: var(--c-coral);
  color: var(--c-white);
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* -------- Quote -------- */
.quote {
  border-left: 3px solid var(--c-terracotta);
  padding: 8px 0 8px 32px;
  font-family: var(--f-display);
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--c-deep);
  font-weight: 400;
  font-feature-settings: "ss01";
}
.quote-cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}

/* -------- Misc -------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: var(--c-cream);
  border-radius: 999px;
  color: var(--c-grey-deep);
  border: 1px solid var(--c-line);
  font-weight: 500;
}
.tag.dark { background: var(--c-text); color: var(--c-white); border-color: var(--c-text); }

.cert-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .cert-row { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 0;
  border-top: 1px solid var(--c-line);
  position: relative;
  transition: padding 400ms var(--ease);
}
.cert::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 600ms var(--ease);
}
.cert:hover::before { width: 100%; }
.cert strong { font-family: var(--f-sans); font-size: 18px; color: var(--c-deep); font-weight: 500; letter-spacing: -0.012em; }
.cert span { font-size: 13px; color: var(--c-grey-mid); line-height: 1.55; }

/* -------- Helpers -------- */
.no-scroll { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   HOMEPAGE SECTION DESIGNS — premium, minimal, white-dominant
   ============================================================ */

/* ============================================================
   DESIGNED FOR · benefits cards (replaces Pillars)
   ============================================================ */
.section-benefits {
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
}
.benefits-head {
  max-width: 760px;
  margin-bottom: clamp(56px, 7vw, 80px);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1180px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.benefit-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.22);
}
.benefit-card-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.benefit-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
}
.benefit-card-num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  display: grid;
  place-items: center;
  font-feature-settings: "tnum";
}
.benefit-card-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.benefit-card-body h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--c-text);
  margin: 0;
}
.benefit-card-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-grey-mid);
  margin: 0;
  flex: 1;
}
.benefit-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap 300ms var(--ease);
}
.benefit-card-link:hover { gap: 12px; }
.benefit-card-link svg { transition: transform 300ms var(--ease); }
.benefit-card-link:hover svg { transform: translateX(3px); }

/* ============================================================
   THE DAILY RITUAL · 3-step routine
   ============================================================ */
.section-ritual {
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
}
.ritual-head {
  max-width: 760px;
  margin-bottom: clamp(56px, 7vw, 80px);
}
.ritual-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 980px) { .ritual-steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }

.ritual-step {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ritual-step-image {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 24px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
}
.ritual-step-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1200ms var(--ease);
}
.ritual-step:hover .ritual-step-photo { transform: scale(1.08); }
.ritual-step-num {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: var(--c-white);
  color: var(--c-accent);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 10px 16px;
  border-radius: 999px;
  font-feature-settings: "tnum";
  box-shadow: 0 8px 18px -8px rgba(26,20,16,0.18);
}
.ritual-step-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ritual-step-time {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.ritual-step-body h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
}
.ritual-step-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-grey-mid);
  margin: 0;
}

/* ============================================================
   WHAT TO EXPECT · 3-stage card grid
   ============================================================ */
.section-expect { background: var(--c-white); border-top: 1px solid var(--c-line); }
.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .expect-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.expect-stage {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
  position: relative;
  overflow: hidden;
}
.expect-stage:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.18);
}
.expect-stage-bar {
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--c-accent);
  transition: width 600ms var(--ease);
}
.expect-stage:hover .expect-stage-bar,
.expect-stage--active .expect-stage-bar { width: 100%; }
.expect-stage--active {
  border-color: var(--c-accent);
  box-shadow: 0 24px 50px -24px rgba(232,120,44,0.25);
}
.expect-stage-weeks {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
}
.expect-stage-weeks::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-accent);
}
.expect-stage-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
}
.expect-stage > p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-grey-mid);
  margin: 0;
}
.expect-stage-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.expect-stage-list li {
  font-size: 13px;
  color: var(--c-grey-deep);
  position: relative;
  padding-left: 18px;
}
.expect-stage-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--c-accent);
}

/* ============================================================
   SUBSCRIPTION PLANS · pricing teaser
   ============================================================ */
.section-plans { background: var(--c-cream); border-top: 1px solid var(--c-line); }
.plans-head {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 980px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center; } }
.plan-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
}
.plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.2);
}
.plan-card--featured {
  border: 2px solid var(--c-accent);
  background: var(--c-white);
  box-shadow: 0 32px 60px -28px rgba(232,120,44,0.32);
  transform: translateY(-8px);
}
@media (min-width: 980px) {
  .plan-card--featured { transform: translateY(-12px); }
}
.plan-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 40px 72px -28px rgba(232,120,44,0.4);
}
.plan-card-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}
.plan-card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}
.plan-card-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--c-text);
  margin: 0;
}
.plan-card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.plan-card-price strong {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--c-text);
  line-height: 1;
  font-feature-settings: "tnum";
}
.plan-card-price span {
  font-size: 13px;
  color: var(--c-grey-mid);
}
.plan-card-price em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 4px;
}
.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--c-grey-deep);
  line-height: 1.5;
}
.plan-card-features li svg {
  color: var(--c-accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.plan-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-text);
  border: 1px solid var(--c-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 300ms var(--ease);
}
.plan-card-cta:hover {
  background: var(--c-text);
  color: var(--c-white);
}
.plan-card-cta--featured {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 14px 28px -10px rgba(232,120,44,0.45);
}
.plan-card-cta--featured:hover {
  background: var(--c-accent-deep);
  border-color: var(--c-accent-deep);
  box-shadow: 0 18px 36px -10px rgba(232,120,44,0.55);
}
.plan-card-cta--featured svg { transition: transform 300ms var(--ease); }
.plan-card-cta--featured:hover svg { transform: translateX(3px); }
.plans-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--c-grey-mid);
  text-align: center;
}
.plans-foot svg { color: var(--c-accent); }

/* ============================================================
   FAQ TEASER · accordion before CTA
   ============================================================ */
.section-faq-teaser { background: var(--c-white); border-top: 1px solid var(--c-line); }
.faq-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 980px) {
  .faq-teaser-grid { grid-template-columns: 1fr 1.2fr; gap: 96px; }
}
.faq-teaser-head h2 em {
  font-style: normal;
  color: var(--c-accent);
}
.faq-teaser-list .accordion {
  border-top: 1px solid var(--c-line);
}

/* ============================================================
   RECOGNISED BY · press strip below hero
   ============================================================ */
.recognised {
  padding: 36px 0;
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.recognised-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
}
@media (min-width: 980px) {
  .recognised-inner { grid-template-columns: auto 1fr; gap: 64px; }
}
.recognised-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-grey-mid);
}
.recognised-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 48px;
}
.recognised-logo {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-grey-mid);
  line-height: 1;
  text-align: center;
  transition: color 300ms var(--ease), transform 300ms var(--ease);
  filter: grayscale(100%);
  opacity: 0.7;
}
.recognised-logo:hover {
  color: var(--c-text);
  opacity: 1;
  transform: translateY(-1px);
}
.recognised-logo em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 4px;
  color: var(--c-grey);
}
/* Stylized variants per logo */
.recognised-logo-1 { font-size: 22px; letter-spacing: 0.18em; }
.recognised-logo-2 { font-size: 18px; font-style: italic; }
.recognised-logo-3 { font-size: 18px; }
.recognised-logo-4 { font-size: 22px; letter-spacing: 0.16em; font-weight: 700; }
.recognised-logo-5 { font-size: 22px; letter-spacing: 0.12em; }
.recognised-logo-6 { font-size: 16px; }

/* ============================================================
   TESTIMONIALS · expert / clinician voices
   ============================================================ */
.testimonials {
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
}
.testimonials-head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
}
@media (min-width: 980px) {
  .testimonials-head { grid-template-columns: 1fr auto; }
}
.testimonials-rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
@media (min-width: 980px) {
  .testimonials-rating { align-items: flex-end; }
}
.testimonials-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-accent);
}
.testimonials-rating strong {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-text);
  font-feature-settings: "tnum";
  margin-top: 4px;
}
.testimonials-rating span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 40px 36px 32px;
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.18);
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.5;
  color: var(--c-accent);
  font-weight: 500;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: -8px;
}
.testimonial-card p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-grey-deep);
  letter-spacing: -0.005em;
  margin: 0;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid var(--c-line);
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author-info strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--c-grey-mid);
}

/* Bottom press logos within testimonials */
.testimonials-press {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .testimonials-press { grid-template-columns: auto 1fr; gap: 56px; }
}
.testimonials-press-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-grey-mid);
}
.testimonials-press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px 56px;
}
.testimonials-press-logos span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-grey);
  font-family: Georgia, serif;
  font-style: italic;
  transition: color 300ms var(--ease);
}
.testimonials-press-logos span:hover {
  color: var(--c-text);
}

/* -------- Trust strip (post-hero) -------- */
.trust-strip {
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 26px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 40px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-grey-mid);
}
.trust-strip-inner > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 300ms var(--ease);
}
.trust-strip-inner > span:hover { color: var(--c-accent); }
.trust-strip-inner svg { color: var(--c-accent); flex-shrink: 0; }

/* ============================================================
   SECTION 02 — Why Movement Is Life · premium editorial
   ============================================================ */
.section-why {
  position: relative;
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
}

/* Editorial header */
.why-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.why-header > .eyebrow {
  margin-bottom: 28px;
}

.why-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 980px) {
  .why-header-grid { grid-template-columns: 1.3fr 1fr; gap: 96px; }
}
.why-headline {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--c-text);
  margin: 0;
  max-width: 18ch;
}
.why-headline em {
  font-style: normal;
  color: var(--c-accent);
}
.why-body {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-grey-deep);
  margin: 0;
}

/* Premium link with growing line */
.why-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
  transition: color 350ms var(--ease), gap 350ms var(--ease);
}
.why-cta-line {
  flex: 1;
  height: 1px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
  min-width: 32px;
  max-width: 80px;
  transition: background 350ms var(--ease);
}
.why-cta-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-accent);
  transform: translateX(-100%);
  transition: transform 500ms var(--ease);
}
.why-cta-link:hover { color: var(--c-accent); gap: 18px; }
.why-cta-link:hover .why-cta-line::before { transform: translateX(0); }
.why-cta-link svg { transition: transform 350ms var(--ease); }
.why-cta-link:hover svg { transform: translateX(4px); }

/* ============================================================
   Premium pathway diagram (refined)
   ============================================================ */
.why-pathway-pro {
  position: relative;
  margin-bottom: clamp(56px, 7vw, 88px);
  padding: 0 16px;
}

/* Top timing scale */
.pathway-scale {
  display: none;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 600;
  font-feature-settings: "tnum";
}
@media (min-width: 768px) { .pathway-scale { display: flex; } }

/* Track + connecting line */
.pathway-track {
  position: relative;
}
.pathway-svg {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  height: 24px;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) { .pathway-svg { display: none; } }
.pathway-svg-active {
  stroke-dasharray: 4 8;
  animation: pathwayDash 6s linear infinite;
}
@keyframes pathwayDash {
  to { stroke-dashoffset: -24; }
}
.pathway-svg-dot {
  filter: drop-shadow(0 0 6px var(--c-accent-soft));
}

/* 4 nodes */
.pathway-nodes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) { .pathway-nodes { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.p-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.p-node-circle {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  color: var(--c-text);
  transition: all 400ms var(--ease);
  z-index: 2;
}
.p-node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--c-line);
  opacity: 0.5;
  transition: opacity 400ms var(--ease), inset 400ms var(--ease);
  pointer-events: none;
}
.p-node:hover .p-node-ring {
  inset: -12px;
  opacity: 1;
  border-color: var(--c-accent);
}
.p-node:hover .p-node-circle {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -16px rgba(232,120,44,0.35);
}

/* Vertical drop line from node to card */
.p-node::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 28px;
  background: var(--c-line);
  z-index: 1;
}
@media (max-width: 768px) { .p-node::after { display: none; } }

/* Active state for the highlighted node (Motor neurons / Delivery) */
.p-node--active .p-node-circle {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 18px 40px -14px rgba(232,120,44,0.45);
}
.p-node--active .p-node-ring {
  border-color: var(--c-accent);
  border-style: dashed;
  opacity: 0.6;
  animation: ringSpin 24s linear infinite;
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.p-node-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  opacity: 0;
  animation: nodePulse 2.4s ease-out infinite;
}
@keyframes nodePulse {
  0% { transform: scale(1); opacity: 0.7; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

/* Card below each node */
.p-node-card {
  margin-top: 36px;
  text-align: center;
  max-width: 28ch;
  position: relative;
}
@media (min-width: 768px) { .p-node-card { margin-top: 44px; } }
.p-node-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.p-node-meta::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--c-accent);
}
.p-node-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0 0 10px;
}
.p-node-desc {
  font-size: 14px;
  color: var(--c-grey-mid);
  line-height: 1.55;
  margin: 0;
}

/* Bottom legend */
.pathway-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: clamp(48px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 600;
}
.pathway-legend-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pathway-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pathway-legend-dot--active {
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(232,120,44,0.18);
}
.pathway-legend-dot--idle {
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
}
.pathway-legend-meta {
  margin-left: auto;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--c-grey);
}
@media (max-width: 768px) {
  .pathway-legend-meta { margin-left: 0; }
}

/* =====================================================================
   Refined "How to read" caption · subtle, breathable, scannable
   ===================================================================== */
.pathway-readme {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px 56px;
  margin-top: clamp(56px, 6vw, 80px);
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.pathway-readme-label {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-grey-mid);
  white-space: nowrap;
}
.pathway-readme-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}
.prk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-text);
}
.prk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.prk-dot--active {
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.16);
}
.prk-dot--idle {
  background: transparent;
  border: 1.5px solid var(--c-line-strong);
}
.prk-label {
  font-weight: 600;
  letter-spacing: -0.005em;
}
.prk-help {
  font-size: 12.5px;
  color: var(--c-grey-mid);
  letter-spacing: -0.005em;
}
.prk-help::before { content: "·"; margin-right: 8px; color: var(--c-grey-mid); opacity: 0.7; }
.pathway-readme-source {
  font-size: 12px;
  color: var(--c-grey-mid);
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .pathway-readme { grid-template-columns: 1fr; gap: 18px; }
  .pathway-readme-source { text-align: left; white-space: normal; }
}

/* =====================================================================
   Editorial insight — full-bleed centered quote moment
   ===================================================================== */
.why-insight {
  position: relative;
  max-width: 880px;
  margin: clamp(96px, 12vw, 160px) auto clamp(48px, 6vw, 80px);
  padding: 0 clamp(16px, 4vw, 48px);
  text-align: center;
}
.why-insight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.why-insight-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.16);
  display: inline-block;
}
.why-insight-quote {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--c-text);
  margin: 0;
  font-style: normal;
  quotes: none;
}
.why-insight-quote::before,
.why-insight-quote::after { content: none; }
.why-insight-quote em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 500;
}
.why-insight-cite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(36px, 4.5vw, 56px);
  padding-top: clamp(28px, 3vw, 36px);
  position: relative;
}
.why-insight-cite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--c-accent);
}
.why-insight-cite-name {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
}
.why-insight-cite-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-grey-mid);
  opacity: 0.6;
}
.why-insight-cite-role {
  font-size: 12.5px;
  color: var(--c-grey-mid);
  letter-spacing: -0.005em;
}
@media (max-width: 640px) {
  .why-insight-cite { flex-direction: column; gap: 8px; }
  .why-insight-cite-sep { display: none; }
}

/* -------- Editorial split (Why Movement) -------- */
.split-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 32px 0;
}
@media (min-width: 980px) {
  .split-editorial { grid-template-columns: 1.3fr 1fr; gap: 96px; }
}
.split-editorial-left {
  position: relative;
  padding-left: 0;
}
.split-editorial-num {
  display: block;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.split-editorial-headline {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--c-text);
}
.split-editorial-headline em {
  font-style: normal;
  color: var(--c-accent);
}
.split-editorial-right {
  padding-top: 8px;
}
.split-editorial-right p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-grey-deep);
  margin-bottom: 20px;
}
.split-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-text);
  padding-bottom: 4px;
  transition: gap 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}
.split-editorial-link:hover { gap: 14px; color: var(--c-accent); border-color: var(--c-accent); }

/* -------- Pathway data viz -------- */
.pathway {
  position: relative;
  padding-top: 64px;
  margin-top: 32px;
}
.pathway-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  margin-bottom: 56px;
}
.pathway-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 36px; right: 36px;
  height: 1px;
  background: var(--c-line);
  z-index: 0;
}
.pathway-node {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}
.pathway-node svg { color: var(--c-grey-mid); transition: color 400ms var(--ease); }
.pathway-node:hover {
  border-color: var(--c-accent);
  background: var(--c-accent);
  transform: scale(1.06);
}
.pathway-node:hover svg { color: var(--c-white); }
.pathway-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .pathway-cards { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.pathway-card {
  padding: 28px 24px;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  background: var(--c-white);
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.pathway-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-strong);
  box-shadow: 0 32px 60px -32px rgba(26,20,16,0.18);
}
.pathway-card-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.pathway-card-num::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--c-accent);
}
.pathway-card h4 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--c-text);
}
.pathway-card p {
  font-size: 14px;
  color: var(--c-grey-mid);
  line-height: 1.55;
  margin: 0;
}

/* -------- Magazine product showcase -------- */
.magazine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .magazine { grid-template-columns: 1fr 1.05fr; gap: 80px; }
}
.magazine-text { padding: 0; }
.magazine-num {
  display: block;
  font-size: 96px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--c-accent);
  line-height: 0.85;
  margin-bottom: 24px;
  font-feature-settings: "tnum";
}
.magazine-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.magazine-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-grey-deep);
  margin-bottom: 24px;
  max-width: 50ch;
}
.magazine-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.magazine-chip {
  padding: 8px 14px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-text);
  font-weight: 500;
  transition: all 300ms var(--ease);
}
.magazine-chip:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}
.magazine-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--c-cream);
  box-shadow: 0 50px 100px -40px rgba(26,20,16,0.18);
  border: 1px solid var(--c-line);
  /* overflow visible so callouts can extend outside */
}
.magazine-image img {
  position: relative;
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 40px 60px rgba(26,20,16,0.18));
  animation: magazineFloat 7s var(--ease) infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes magazineFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -54%); }
}
.magazine-image-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,120,44,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,120,44,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* AG1-style numbered ingredient callouts radiating from product */
.callout {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  box-shadow: 0 14px 32px -14px rgba(26,20,16,0.18);
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease), border-color 350ms var(--ease);
  white-space: nowrap;
  cursor: default;
  opacity: 0;
  animation: calloutIn 700ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.callout:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: 0 20px 40px -14px rgba(232,120,44,0.32);
}
.callout-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-white);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  font-feature-settings: "tnum";
  flex-shrink: 0;
}
.callout-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
  line-height: 1.2;
}
.callout-text strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.callout-text span,
.callout-text strong + br + * { /* fallback for text-only */ }
.callout-text {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}

/* Position each callout INSIDE the product card so nothing clips */
.callout-1 { top: 5%;   left: 4%;   animation-delay: 200ms; }
.callout-2 { top: 18%;  right: 4%;  animation-delay: 320ms; }
.callout-3 { top: 42%;  left: 4%;   animation-delay: 440ms; }
.callout-4 { top: 56%;  right: 4%;  animation-delay: 560ms; }
.callout-5 { bottom: 18%; left: 4%; animation-delay: 680ms; }
.callout-6 { bottom: 5%; right: 4%; animation-delay: 800ms; }

@keyframes calloutIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Compact callouts on small screens — still inside the card */
@media (max-width: 1180px) {
  .callout { padding: 8px 12px 8px 8px; box-shadow: 0 8px 18px -10px rgba(26,20,16,0.18); }
  .callout-num { width: 26px; height: 26px; font-size: 10px; }
  .callout-text strong { font-size: 12px; }
  .callout-text { font-size: 10px; }
  .callout-1, .callout-3, .callout-5 { left: 3%; }
  .callout-2, .callout-4, .callout-6 { right: 3%; }
}
@media (max-width: 768px) {
  .callout-3, .callout-4, .callout-5, .callout-6 { display: none; }
}

/* -------- Pillars editorial grid (no boxes) -------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 56px; }
}
@media (min-width: 1180px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); gap: 56px; }
}
.pillar-item {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  transition: border-top-color 400ms var(--ease);
}
.pillar-item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 600ms var(--ease);
}
.pillar-item:hover::before { width: 56px; }
.pillar-item-num {
  display: block;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 24px;
  font-feature-settings: "tnum";
}
.pillar-item h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--c-text);
}
.pillar-item p {
  font-size: 15px;
  color: var(--c-grey-mid);
  line-height: 1.6;
  margin: 0;
}

/* -------- Big typographic statement (New Category) -------- */
.statement {
  text-align: center;
  padding: 48px 0;
}
.statement-headline {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 auto 56px;
  max-width: 18ch;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em;
  align-items: center;
}
.statement-headline .grey { color: var(--c-grey); }
.statement-headline .accent { color: var(--c-accent); }
.statement-headline .arrow {
  display: inline-block;
  font-size: 0.5em;
  vertical-align: middle;
  color: var(--c-accent);
  margin: 0 0.2em;
  animation: arrowPulse 2.4s var(--ease) infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
.statement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 56px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .statement-stats { grid-template-columns: repeat(4, 1fr); }
}
.statement-stat dt {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 8px;
  font-feature-settings: "tnum";
}
.statement-stat dt strong { color: var(--c-accent); font-weight: 500; }
.statement-stat dd {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}

/* -------- Lifestyle band (full-width image, no dark overlay) -------- */
.lifestyle-band {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lifestyle-band-quote {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 40px;
  background: var(--c-white);
  border-radius: 24px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.25);
  margin: 0 24px 32px;
  width: calc(100% - 48px);
  max-width: 1280px;
  align-self: flex-end;
  margin-left: auto;
  margin-right: auto;
}
.lifestyle-band-quote-text {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-text);
  max-width: 32ch;
}
.lifestyle-band-quote-text em { font-style: normal; color: var(--c-accent); }
.lifestyle-band-quote-cite {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

/* -------- Horizontal connected timeline -------- */
.timeline {
  position: relative;
  padding: 24px 0;
}
.timeline-line {
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-line) 0%, var(--c-accent) 33%, var(--c-line) 66%, var(--c-accent) 100%);
  background-size: 200% 100%;
  animation: timelineLine 8s var(--ease) infinite;
}
@keyframes timelineLine {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.timeline-stage {
  text-align: center;
  position: relative;
  padding-top: 80px;
}
.timeline-stage::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-white);
  border: 2px solid var(--c-accent);
  box-shadow: 0 0 0 6px rgba(255,255,255,1);
  transition: transform 400ms var(--ease), background 400ms var(--ease);
}
.timeline-stage:hover::before { background: var(--c-accent); transform: translateX(-50%) scale(1.3); }
.timeline-stage-weeks {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.timeline-stage h4 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--c-text);
}
.timeline-stage p {
  font-size: 15px;
  color: var(--c-grey-mid);
  line-height: 1.6;
  max-width: 32ch;
  margin: 0 auto;
}

/* -------- Refined Trust Cert Grid -------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-cell {
  position: relative;
  padding: 56px 32px;
  border-right: 1px solid var(--c-line);
  transition: background 400ms var(--ease);
}
.trust-cell:last-child { border-right: none; }
.trust-cell::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width 600ms var(--ease);
}
.trust-cell:hover::before { width: 100%; }
.trust-cell:hover { background: linear-gradient(180deg, rgba(232,120,44,0.025) 0%, transparent 100%); }
@media (max-width: 768px) {
  .trust-cell { border-right: none; border-bottom: 1px solid var(--c-line); padding: 40px 24px; }
  .trust-cell:last-child { border-bottom: none; }
}
.trust-cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--c-accent);
  transition: all 400ms var(--ease);
}
.trust-cell:hover .trust-cell-icon {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: var(--c-white);
}
.trust-cell h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin-bottom: 10px;
}
.trust-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-grey-mid);
  margin: 0;
}

/* -------- Premium CTA card — split with product visual right -------- */
.cta-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 32px;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  isolation: isolate;
}
@media (min-width: 980px) {
  .cta-card { grid-template-columns: 1.15fr 1fr; }
}
.cta-card::before {
  content: "";
  position: absolute;
  left: clamp(48px, 6vw, 88px);
  top: clamp(48px, 6vw, 88px);
  width: 40px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  z-index: 2;
}

/* Left content column */
.cta-card-content {
  padding: clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.cta-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-card-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.18);
  animation: pulseDot 2.4s var(--ease) infinite;
}
.cta-card h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0;
  color: var(--c-text);
}
.cta-card h2 em {
  font-style: normal;
  color: var(--c-accent);
}
.cta-card-content > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-grey-deep);
  max-width: 50ch;
  margin: 0;
}
.cta-card-form {
  display: flex;
  gap: 6px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px;
  max-width: 460px;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease);
  margin-top: 8px;
}
.cta-card-form:focus-within {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.12);
}
.cta-card-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 20px;
  border: 0;
  font: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--c-text);
}
.cta-card-form input::placeholder { color: var(--c-grey-mid); }
.cta-card-form input:focus { outline: none; }
.cta-card-form button {
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.cta-card-form button:hover { background: var(--c-accent-deep); transform: translateY(-1px); }
.cta-card-microcopy {
  font-size: 12px;
  color: var(--c-grey-mid);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-card-microcopy svg { color: var(--c-accent); }

/* Trust marks row */
.cta-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid var(--c-line);
  font-size: 12px;
  color: var(--c-grey-mid);
  font-weight: 500;
}
.cta-card-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-card-trust svg {
  color: var(--c-accent);
  flex-shrink: 0;
}

/* Right visual column */
.cta-card-visual {
  position: relative;
  background: linear-gradient(135deg, var(--c-white) 0%, var(--c-cream) 100%);
  border-left: 1px solid var(--c-line);
  display: grid;
  place-items: center;
  padding: 56px 32px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 980px) {
  .cta-card-visual { border-left: none; border-top: 1px solid var(--c-line); min-height: 380px; }
}
/* Soft radial glow only behind the product (not section bg) */
.cta-card-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--c-accent-soft) 0%, var(--c-accent-tint) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
/* Decorative dashed orbit ring */
.cta-card-visual::after {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(232,120,44,0.32);
  border-radius: 50%;
  animation: spinRing 60s linear infinite;
  z-index: 0;
}
.cta-card-product {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 200px;
  filter: drop-shadow(0 40px 56px rgba(26,20,16,0.22));
  animation: floatSachet 6s var(--ease) infinite;
}
/* Floating stat chip */
.cta-card-stat {
  position: absolute;
  z-index: 3;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px -16px rgba(26,20,16,0.18);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 130px;
}
.cta-card-stat strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
}
.cta-card-stat span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-mid);
  font-weight: 500;
}
.cta-card-stat--top { top: 14%; right: 8%; }
.cta-card-stat--bottom { bottom: 14%; left: 8%; }
@media (max-width: 980px) {
  .cta-card-stat--top { top: 8%; right: 12px; }
  .cta-card-stat--bottom { bottom: 8%; left: 12px; }
}

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

/* =====================================================================
   PREMIUM ANIMATION LAYER
   ===================================================================== */

html { scroll-behavior: smooth; }

/* (Scroll progress bar removed — element is hidden globally) */
.scroll-progress { display: none !important; }

/* --- Header hide-on-scroll-down --- */
.site-header {
  transition: transform 380ms cubic-bezier(0.22,0.61,0.36,1),
              background 280ms ease,
              box-shadow 280ms ease,
              backdrop-filter 280ms ease;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled {
  box-shadow: 0 6px 24px -18px rgba(11,31,42,0.25);
  backdrop-filter: saturate(140%) blur(8px);
}

/* --- Magnetic / interactive button transition --- */
.btn-pill-primary, .btn-pill-secondary, .header-cta,
.footer-pro-news-form button {
  transition: transform 240ms cubic-bezier(0.22,0.61,0.36,1),
              background 220ms ease,
              color 220ms ease,
              border-color 220ms ease,
              box-shadow 240ms ease;
  will-change: transform;
}

/* --- Card hover lift (universal) --- */
.card, .plan-card, .testimonial-card, .benefit-card, .ritual-card,
.expect-card, .faq-teaser-item, .trust-card {
  transition: transform 380ms cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 380ms cubic-bezier(0.22,0.61,0.36,1),
              border-color 280ms ease;
  will-change: transform;
}
.card:hover, .plan-card:hover, .testimonial-card:hover, .benefit-card:hover,
.ritual-card:hover, .expect-card:hover, .faq-teaser-item:hover, .trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -36px rgba(11,31,42,0.22);
}

/* --- Tilt cards smooth transition --- */
.tilt, .card.tilt-on, .magazine-image {
  transition: transform 360ms cubic-bezier(0.22,0.61,0.36,1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* --- Image zoom containers --- */
.lifestyle-band, .hero-bleed-bg { transition: background-size 240ms linear; }

/* --- Word-by-word headline reveal --- */
[data-words] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
[data-words] .w-i {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.22,0.61,0.36,1),
              opacity 720ms cubic-bezier(0.22,0.61,0.36,1);
}
[data-words].words-in .w-i {
  transform: translateY(0);
  opacity: 1;
}
[data-words].words-in .w:nth-child(2n) .w-i  { transition-delay: 40ms; }
[data-words].words-in .w:nth-child(3n) .w-i  { transition-delay: 80ms; }
[data-words].words-in .w:nth-child(4n) .w-i  { transition-delay: 120ms; }
[data-words].words-in .w:nth-child(5n) .w-i  { transition-delay: 160ms; }
[data-words].words-in .w:nth-child(6n) .w-i  { transition-delay: 200ms; }
[data-words].words-in .w:nth-child(7n) .w-i  { transition-delay: 240ms; }
[data-words].words-in .w:nth-child(8n) .w-i  { transition-delay: 280ms; }

/* --- Reveal variants --- */
.reveal { transition-duration: 1000ms; }
.reveal.fade-up      { transform: translateY(36px); }
.reveal.fade-down    { transform: translateY(-32px); }
.reveal.fade-left    { transform: translateX(-40px); }
.reveal.fade-right   { transform: translateX(40px); }
.reveal.scale-in     { transform: scale(0.94); }
.reveal.blur-in      { filter: blur(10px); }
.reveal.fade-up.is-in,
.reveal.fade-down.is-in   { transform: translateY(0); }
.reveal.fade-left.is-in,
.reveal.fade-right.is-in  { transform: translateX(0); }
.reveal.scale-in.is-in    { transform: scale(1); }
.reveal.blur-in.is-in     { filter: blur(0); }

/* --- Auto-stagger via [data-stagger] uses inline transition-delay --- */

/* --- Float / pulse decorative animations --- */
@keyframes floatDot {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-slow { animation: floatDot 5.4s ease-in-out infinite; }
.float-med  { animation: floatDot 4.0s ease-in-out infinite; }
.float-fast { animation: floatDot 2.8s ease-in-out infinite; }

@keyframes pulseRing {
  0%   { transform: scale(0.95); opacity: 0.8; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}
.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  animation: pulseRing 2.4s cubic-bezier(0.22,0.61,0.36,1) infinite;
}

/* --- Underline grow on text links --- */
a.btn-link, .nav-link {
  position: relative;
  display: inline-block;
}
a.btn-link::after, .nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 360ms cubic-bezier(0.22,0.61,0.36,1);
}
a.btn-link:hover::after, .nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

/* --- Image hover zoom (gallery) --- */
.zoom-img-wrap { overflow: hidden; }
.zoom-img-wrap img,
.zoom-img-wrap > div[style*="background"] {
  transition: transform 900ms cubic-bezier(0.22,0.61,0.36,1);
}
.zoom-img-wrap:hover img,
.zoom-img-wrap:hover > div[style*="background"] { transform: scale(1.06); }

/* --- KPI counter pop --- */
.kpi-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- Cursor accent on logo (subtle) --- */
.logo-img { transition: transform 600ms cubic-bezier(0.22,0.61,0.36,1); }
.logo-mark:hover .logo-img { transform: scale(1.04); }

/* --- Reduced motion: disable animation layer --- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress, .float-slow, .float-med, .float-fast,
  .pulse-ring::after { display: none !important; animation: none !important; }
  [data-words] .w-i { transform: none; opacity: 1; }
  .site-header.is-hidden { transform: none; }
}

/* =====================================================================
   ZOOKI-INSPIRED REFINEMENT LAYER
   - signature wavy section dividers
   - softer, shadow-driven card system
   - warmer button hover treatment
   - subtle background tint variations
   - keeps existing content + structure intact
   ===================================================================== */

/* --- Wavy SVG section divider (Zooki signature) ---------------------- */
.wave-divider {
  position: relative;
  display: block;
  width: 100%;
  height: 56px;
  margin: 0;
  pointer-events: none;
  background: transparent;
}
.wave-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,28 C240,4 480,52 720,28 C960,4 1200,52 1440,28 L1440,56 L0,56 Z' fill='%23fbf6ee'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.wave-divider--white::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,28 C240,4 480,52 720,28 C960,4 1200,52 1440,28 L1440,56 L0,56 Z' fill='%23ffffff'/></svg>");
}
.wave-divider--accent::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,28 C240,4 480,52 720,28 C960,4 1200,52 1440,28 L1440,56 L0,56 Z' fill='%23e8782c'/></svg>");
}
.wave-divider--flip::before { transform: scaleY(-1); }

/* Auto-wave between named sections on homepage */
.section-ritual::before,
.section-plans::before,
.section-faq-teaser::before,
.testimonials::before,
.section-benefits::before,
.section-expect::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'><path d='M0,0 C240,40 480,8 720,24 C960,40 1200,8 1440,24 L1440,0 Z' fill='%23ffffff'/></svg>");
  z-index: 1;
  pointer-events: none;
}
.section-ritual, .section-plans, .testimonials, .section-benefits,
.section-expect, .section-faq-teaser { position: relative; }

/* When the previous section is on cream, draw a cream wave instead */
.section-ritual + .section .section-head,
.section-plans + .section .section-head { position: relative; z-index: 2; }
.section-ritual::before,
.section-plans::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'><path d='M0,0 C240,40 480,8 720,24 C960,40 1200,8 1440,24 L1440,48 L0,48 Z' fill='%23fbf6ee'/></svg>");
}

/* --- Softer Zooki-style card system ---------------------------------- */
.card,
.plan-card,
.testimonial-card,
.benefit-card,
.ritual-card,
.expect-card,
.faq-teaser-item,
.trust-card {
  border-radius: 16px !important;
  border: 1px solid rgba(11,31,42,0.06) !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 32px -24px rgba(11,31,42,0.18);
  background: var(--c-white);
  transition: transform 380ms cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 380ms cubic-bezier(0.22,0.61,0.36,1);
}
.card:hover,
.plan-card:hover,
.testimonial-card:hover,
.benefit-card:hover,
.ritual-card:hover,
.expect-card:hover,
.faq-teaser-item:hover,
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 30px 60px -30px rgba(232,120,44,0.22);
  border-color: rgba(232,120,44,0.18) !important;
}

/* --- Refined buttons (Zooki-style warm hover) ------------------------ */
.btn-primary,
.btn-pill-primary,
.header-cta {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 14px -6px rgba(232,120,44,0.55);
  transition: background 220ms ease,
              box-shadow 280ms ease,
              transform 240ms cubic-bezier(0.22,0.61,0.36,1);
}
.btn-primary:hover,
.btn-pill-primary:hover,
.header-cta:hover {
  background: var(--c-accent-deep);
  box-shadow: 0 10px 24px -8px rgba(232,120,44,0.55);
}

/* --- Section background tints (Zooki alternates white / cream) ------- */
.section-ritual { background: var(--c-cream); }
.section-plans  { background: var(--c-cream); }
.section-benefits,
.section-expect,
.section-faq-teaser,
.testimonials  { background: var(--c-white); }

/* --- Body type warm-up (Zooki's friendly tone) ----------------------- */
body { color: var(--c-text); }
.lead, .why-body p { color: var(--c-grey-deep); }
.eyebrow { color: var(--c-accent); }

/* --- Soft accent block helper (for any "Stay in the loop" style) ----- */
.tint-accent-soft { background: var(--c-accent-tint); }
.tint-cream { background: var(--c-cream); }

/* --- Reduced motion respect ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .card:hover, .plan-card:hover, .testimonial-card:hover, .benefit-card:hover,
  .ritual-card:hover, .expect-card:hover, .faq-teaser-item:hover, .trust-card:hover {
    transform: none;
  }
}

/* =====================================================================
   ZOOKI-LAYOUT VISUAL HELPERS
   ===================================================================== */

/* Horizontal pinned scroll track */
[data-horizontal] {
  position: relative;
  overflow: hidden;
}
[data-horizontal] .h-track {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.4vw, 40px);
  padding: clamp(20px, 3vw, 48px) 0;
  will-change: transform;
}
[data-horizontal] .h-track > * {
  flex: 0 0 clamp(280px, 32vw, 420px);
  min-width: 0;
}

/* Generic Zooki banner (full-bleed centered quote on image) */
.zooki-banner {
  position: relative;
  min-height: clamp(420px, 56vw, 720px);
  background-size: 110% 110%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) 5vw;
}
.zooki-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
  pointer-events: none;
}
.zooki-banner-inner {
  position: relative;
  max-width: 920px;
  z-index: 1;
}
.zooki-banner-quote {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
  font-style: italic;
}
.zooki-banner-quote em { color: var(--c-accent); font-style: italic; font-weight: 500; }
.zooki-banner-cite {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 40px);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.zooki-banner-cite::before {
  content: "";
  width: 28px; height: 1px; background: var(--c-accent);
  display: inline-block;
}

/* (Scroll affordance label removed) */

/* =====================================================================
   TKS.WORLD-STYLE TEXT REVEAL
   - Generous vertical padding so descenders (g, p, y) and italics
     never clip when the per-character mask wraps each glyph.
   ===================================================================== */
.tks-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding: 0.20em 0.04em 0.24em;
  margin: -0.20em -0.04em -0.24em;
}
.tks-c {
  display: inline-block;
  will-change: transform, opacity;
  line-height: inherit;
  padding-bottom: 0.06em;
}
/* Preserve italic styling on <em> children of split headlines */
em > .tks-w > .tks-c { font-style: italic; color: var(--c-accent); }
em > .tks-w {
  padding-right: 0.10em;
  margin-right: -0.10em;
}

/* Generic body pre-reveal class (avoids FOUC before observer fires) */
.rev-pre { opacity: 0; transform: translateY(24px); }

@media (prefers-reduced-motion: reduce) {
  .tks-c { transform: none !important; opacity: 1 !important; }
  .rev-pre { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   RESERVE / WAITLIST FORM — premium two-pane layout
   ===================================================================== */
.reserve-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(232,120,44,0.06), transparent 55%),
    var(--c-cream);
  scroll-margin-top: 96px;
}
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .reserve-grid { grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: stretch; }
}

/* LEFT brand panel */
.reserve-aside {
  position: relative;
  padding: clamp(32px, 4vw, 56px);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--c-text) 0%, #1a2a36 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}
.reserve-aside::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,120,44,0.32), transparent 70%);
  pointer-events: none;
}
.reserve-aside-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
}
.reserve-aside-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.22);
}
.reserve-aside-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.reserve-aside-title em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 500;
}
.reserve-aside-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 42ch;
}
.reserve-aside-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reserve-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.reserve-aside-list svg {
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 4px;
}
.reserve-aside-footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.reserve-aside-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  font-feature-settings: "tnum";
}
.reserve-aside-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* RIGHT form card */
.reserve-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 22px;
  padding: clamp(28px, 3.6vw, 48px);
  box-shadow: 0 24px 64px -32px rgba(11,31,42,0.18);
  display: flex;
  flex-direction: column;
}
.reserve-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}
.reserve-step {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.reserve-card-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--c-text);
}
.reserve-card-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-grey-mid);
  margin: 0;
}

/* Form layout */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reserve-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .reserve-row { grid-template-columns: 1fr 1fr; }
}
.reserve-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reserve-field label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.reserve-field-optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 11px;
  color: var(--c-grey-mid);
}
.reserve-field input,
.reserve-field textarea,
.reserve-select select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none;
}
.reserve-field input::placeholder,
.reserve-field textarea::placeholder {
  color: var(--c-grey-mid);
}
.reserve-field input:focus,
.reserve-field textarea:focus,
.reserve-select select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(232,120,44,0.14);
  background: #fff;
}
.reserve-field textarea { resize: vertical; min-height: 96px; }

/* Custom select with chevron */
.reserve-select {
  position: relative;
}
.reserve-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.reserve-select svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--c-grey-mid);
}

/* Consent row */
.reserve-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-grey-deep);
  cursor: pointer;
  margin-top: 4px;
}
.reserve-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--c-line-strong, #d4cdc1);
  border-radius: 5px;
  background: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background .15s ease, border-color .15s ease;
}
.reserve-consent input[type="checkbox"]:checked {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.reserve-consent input[type="checkbox"]:checked::after {
  content: "";
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.reserve-consent input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(232,120,44,0.25);
}

/* Submit row */
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 8px;
}
.reserve-submit {
  padding: 16px 28px;
  font-size: 14.5px;
}
.reserve-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-grey-mid);
}
.reserve-secure svg { color: var(--c-accent); }
.reserve-form-note {
  font-size: 13px;
  color: var(--c-accent);
  margin-top: 4px;
  min-height: 18px;
}

@media (max-width: 640px) {
  .reserve-aside { padding: 28px; border-radius: 18px; }
  .reserve-card { padding: 24px; border-radius: 18px; }
}
