/* ==========================================================================
   SleepKraft · v3 "The Section"
   Light porcelain field, logo-derived violet gradient, champagne accent.
   Every colour, type and easing decision lives in :root. Nothing hard-codes.
   ========================================================================== */

:root {
  /* --- brand: violet sampled directly off the logo artwork (#84388C) ------ */
  --brand:       #84388C;
  --brand-lift:  #A24FAB;
  --brand-soft:  #CE9CD5;
  --brand-wash:  #F3E9F6;
  --brand-deep:  #4A1B54;
  --plum:        #2A0E33;

  /* --- gradient partners: cool iris + warm blush, both tuned to --brand --- */
  --iris:        #6E4FD8;
  --blush:       #D06BB4;

  /* --- alternate premium accent: champagne, replaces the old amber ------- */
  --gold:        #B9944E;
  --gold-lt:     #E7CE93;
  --gold-ink:    #8A6A2A;   /* AA on porcelain */

  /* --- neutrals ---------------------------------------------------------- */
  --white:       #FFFFFF;
  --porcelain:   #FCFBFD;
  --mist:        #F6F2F9;
  --line:        #EAE2F0;
  --line-soft:   #F1EBF5;
  --ink:         #1B1320;
  --ink-2:       #453B4D;
  --muted:       #6E6377;

  /* --- gradients --------------------------------------------------------- */
  --grad:        linear-gradient(115deg, var(--iris) 0%, var(--brand) 50%, var(--blush) 100%);
  --grad-soft:   linear-gradient(115deg, #8E6BE6 0%, var(--brand-lift) 50%, #E08FC8 100%);
  --grad-deep:   linear-gradient(155deg, #3B1345 0%, #5E2169 44%, #2A0E33 100%);
  --grad-gold:   linear-gradient(115deg, var(--gold-lt) 0%, var(--gold) 55%, #9C7A38 100%);
  --grad-text:   linear-gradient(100deg, #5B3BC9 0%, var(--brand) 46%, #B23E97 100%);

  /* --- shadow ladder ----------------------------------------------------- */
  --sh-1: 0 1px 2px rgba(42,14,51,.04), 0 4px 14px rgba(42,14,51,.05);
  --sh-2: 0 2px 6px rgba(42,14,51,.05), 0 14px 34px rgba(42,14,51,.08);
  --sh-3: 0 4px 12px rgba(42,14,51,.06), 0 30px 64px rgba(42,14,51,.13);
  --sh-brand: 0 12px 30px rgba(132,56,140,.26);

  /* --- type -------------------------------------------------------------- */
  --display: "Schibsted Grotesk", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* --- motion ------------------------------------------------------------ */
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, .84, .30, 1);
  --ease-soft: cubic-bezier(.33, 1, .68, 1);
  --dur:       .8s;

  /* --- rhythm ------------------------------------------------------------ */
  --pad:  clamp(20px, 5vw, 64px);
  --gap:  clamp(18px, 2.4vw, 30px);
  --sect: clamp(76px, 10vw, 148px);
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-loading { overflow: hidden; }
body.is-locked  { overflow: hidden; }

img, svg, picture, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p, dl, dd, figure, blockquote, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
input { font: inherit; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--pad); }

/* ==========================================================================
   TYPE SCALE
   ========================================================================== */
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.038em;
  color: var(--ink);
  max-width: 16ch;
}
.h2--sm     { font-size: clamp(1.85rem, 3.6vw, 2.85rem); max-width: 18ch; }
.h2--inv    { color: #fff; }
.h2--center { margin-inline: auto; text-align: center; max-width: 20ch; }

.lede {
  font-size: clamp(1rem, 1.25vw, 1.115rem);
  line-height: 1.72;
  color: var(--muted);
  max-width: 52ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: .705rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow__rule {
  display: block;
  width: 32px; height: 1px;
  background: var(--grad);
  transform-origin: left;
  animation: ruleDraw 1s var(--ease-out) both;
}
.eyebrow--center  { justify-content: center; }
.eyebrow--gold    { color: var(--gold-lt); }
.eyebrow--gold .eyebrow__rule { background: var(--grad-gold); }

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes ruleDraw  { from { transform: scaleX(0); opacity: 0 } to { transform: scaleX(1); opacity: 1 } }
@keyframes sheen     { 0% { transform: translateX(-130%) skewX(-18deg) } 55%, 100% { transform: translateX(230%) skewX(-18deg) } }
@keyframes drift     { 0%, 100% { transform: translate3d(0,0,0) scale(1) } 50% { transform: translate3d(2%, -3%, 0) scale(1.07) } }
@keyframes floaty    { 0%, 100% { transform: translateY(0) rotate(0deg) } 50% { transform: translateY(-14px) rotate(-.28deg) } }
@keyframes ping      { 0% { transform: scale(.6); opacity: .65 } 70% { opacity: 0 } 100% { transform: scale(2.4); opacity: 0 } }
@keyframes marquee   { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes shimmer   { 0% { background-position: 0% 50% } 100% { background-position: 200% 50% } }
@keyframes barGrow   { from { transform: scaleY(.55); opacity: .4 } to { transform: scaleY(1); opacity: 1 } }

/* ==========================================================================
   ANIMATION ENGINE
   `data-anim` is set in markup, `--d` (delay) is set inline by JS.
   The attribute is stripped once the transition ends, so component hover
   transitions are never shadowed by the reveal transition.
   ========================================================================== */
.js [data-anim] {
  opacity: 0;
  transition:
    opacity     var(--dur) var(--ease-out),
    transform   var(--dur) var(--ease-out),
    clip-path   var(--dur) var(--ease-out),
    filter      var(--dur) var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.js [data-anim="up"]    { transform: translateY(30px); }
.js [data-anim="left"]  { transform: translateX(-26px); }
.js [data-anim="right"] { transform: translateX(26px); }
.js [data-anim="scale"] { transform: scale(.955); }
.js [data-anim="rise"]  { transform: translateY(58px) scale(.972); filter: blur(6px); }
.js [data-anim="fade"]  { transform: none; }
.js [data-anim="clip"]  { clip-path: inset(0 0 100% 0); transform: scale(1.05); }

.js [data-anim].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

/* word-split headings */
.w      {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  /* Padding widens the clip box so no face's ascenders or descenders are cut;
     the matching negative margin keeps layout identical. Font-agnostic. */
  padding: .18em .05em .38em;
  margin:  -.18em -.05em -.38em;
}
.js .w > i, .w > i {
  display: inline-block;
  font-style: inherit;
  padding-bottom: .28em;
  margin-bottom: -.28em;
  transform: translateY(112%) rotate(3deg);
  transition: transform .95s var(--ease-out);
  transition-delay: var(--wd, 0ms);
}
.js .is-in .w > i, .js .w.is-in > i { transform: none; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
html:not(.js) .loader { display: none; }
.loader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: var(--porcelain);
}
.loader__curtain {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--porcelain);
  transition: transform 1.05s cubic-bezier(.76, 0, .24, 1);
}
.loader__curtain--a { top: 0; }
.loader__curtain--b { bottom: 0; }
.loader__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  transition: opacity .4s ease, transform .6s var(--ease);
}
.loader__mark { position: relative; overflow: hidden; padding: 4px 2px; }
.loader__mark img {
  width: clamp(168px, 26vw, 226px);
  opacity: 0;
  animation: markIn 1s var(--ease-out) .12s forwards;
}
@keyframes markIn { from { opacity: 0; transform: translateY(14px) scale(.97); filter: blur(5px) } to { opacity: 1; transform: none; filter: blur(0) } }
.loader__sheen {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 12%, rgba(255,255,255,.92) 48%, transparent 84%);
  animation: sheen 2.1s var(--ease) .55s infinite;
}
.loader__meter {
  width: clamp(168px, 26vw, 226px); height: 2px;
  border-radius: 2px; overflow: hidden;
  background: var(--line);
}
.loader__fill {
  display: block; width: 0%; height: 100%;
  background: var(--grad);
  transition: width .28s var(--ease-soft);
}
.loader__note {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: .655rem;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted);
}
.loader__note em { font-style: normal; color: var(--brand); font-variant-numeric: tabular-nums; }

.loader.is-done .loader__inner  { opacity: 0; transform: translateY(-12px); }
.loader.is-done .loader__curtain--a { transform: translateY(-101%); }
.loader.is-done .loader__curtain--b { transform: translateY(101%); }
.loader.is-gone { visibility: hidden; pointer-events: none; }

/* ==========================================================================
   SCROLL PROGRESS
   ========================================================================== */
.progress {
  position: fixed; top: 0; left: 0; z-index: 90;
  width: 100%; height: 2px;
  pointer-events: none;
}
.progress span {
  display: block; width: 100%; height: 100%;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .12s linear;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.head {
  position: fixed; top: 0; left: 0; z-index: 80;
  width: 100%;
  padding: clamp(12px, 1.6vw, 20px) 0;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.head::before {
  content: ""; position: absolute; inset: 0;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  background: rgba(252, 251, 253, .78);
  opacity: 0; transition: opacity .5s var(--ease);
}
.head.is-stuck { padding: 10px 0; border-bottom-color: var(--line); }
.head.is-stuck::before { opacity: 1; }
.head.is-hidden { transform: translateY(-102%); transition: transform .5s var(--ease), background .5s var(--ease); }

.head__in {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin-inline: auto;
  padding-inline: var(--pad);
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 38px);
}
.head__logo img {
  width: clamp(124px, 12vw, 152px);
  transition: transform .5s var(--ease), opacity .3s ease;
}
.head__logo:hover img { transform: scale(1.035); }

.head__nav { display: flex; align-items: center; gap: clamp(6px, 1.4vw, 22px); margin-inline: auto; }
.head__nav a {
  position: relative;
  padding: 8px 2px;
  font-size: .845rem; font-weight: 600; letter-spacing: -.008em;
  color: var(--ink-2);
  transition: color .32s var(--ease);
  overflow: hidden;
}
.head__nav a > span { display: block; transition: transform .42s var(--ease-out); }
.head__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1.5px; border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.head__nav a:hover { color: var(--brand); }
.head__nav a:hover > span { transform: translateY(-1px); }
.head__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.head__nav a.is-active { color: var(--brand); }
.head__nav a.is-active::after { transform: scaleX(1); }

.head__act { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.ico {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: var(--ink-2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.ico svg { width: 17px; height: 17px; }
.ico:hover { color: var(--brand); border-color: var(--brand-soft); background: var(--brand-wash); transform: translateY(-2px); }

.burger {
  display: none; position: relative;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.6);
}
.burger span {
  position: absolute; left: 50%; width: 16px; height: 1.6px; border-radius: 2px;
  background: var(--ink);
  transition: transform .42s var(--ease), width .42s var(--ease);
}
.burger span:nth-child(1) { top: 16px; transform: translateX(-50%); }
.burger span:nth-child(2) { top: 22px; width: 11px; transform: translateX(-50%); }
.burger:hover span:nth-child(2) { width: 16px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: .875rem; font-weight: 700; letter-spacing: -.008em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform .42s var(--ease), box-shadow .42s var(--ease), color .32s var(--ease), background .32s var(--ease), border-color .32s var(--ease);
}
.btn > span, .btn > svg { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 18%, rgba(255,255,255,.4) 50%, transparent 82%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform .85s var(--ease-out);
}
.btn:hover::before { transform: translateX(230%) skewX(-18deg); }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__arw { width: 16px; height: 16px; transition: transform .42s var(--ease); }
.btn:hover .btn__arw { transform: translateX(4px); }
.btn__pin { width: 16px; height: 16px; }
.btn--sm { padding: 11px 20px; font-size: .81rem; }

.btn--brand {
  color: #fff;
  background: var(--grad);
  background-size: 180% 180%;
  box-shadow: var(--sh-brand);
}
.btn--brand:hover { box-shadow: 0 16px 38px rgba(132,56,140,.34); background-position: 100% 50%; }

.btn--gold {
  color: #33270D;
  background: var(--grad-gold);
  box-shadow: 0 12px 30px rgba(154,120,54,.3);
}
.btn--gold:hover { box-shadow: 0 16px 38px rgba(154,120,54,.4); }

.btn--line {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-1);
}
.btn--line:hover { border-color: var(--brand-soft); color: var(--brand); box-shadow: var(--sh-2); }

.btn--glass {
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.44); }

/* arrow links */
.link-arw {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 700; color: var(--brand);
  transition: gap .38s var(--ease), color .32s var(--ease);
}
.link-arw svg { width: 15px; height: 15px; transition: transform .42s var(--ease); }
.link-arw:hover { gap: 13px; }
.link-arw:hover svg { transform: translateX(2px); }
.link-arw--sm { font-size: .8rem; }

/* ==========================================================================
   DRAWER
   ========================================================================== */
.drawer { position: fixed; inset: 0; z-index: 200; }
.drawer[hidden] { display: none; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(26, 12, 32, .5);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  opacity: 0; transition: opacity .5s var(--ease);
}
.drawer__panel {
  position: absolute; top: 0; right: 0;
  width: min(400px, 88vw); height: 100%;
  display: flex; flex-direction: column;
  padding: 26px clamp(22px, 5vw, 34px) 30px;
  background: var(--grad-deep);
  color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .6s var(--ease-out);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }

.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.drawer__logo { width: 138px; opacity: .95; }
.drawer__close {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; border: 1px solid rgba(255,255,255,.2);
  transition: background .32s var(--ease), transform .5s var(--ease), border-color .32s var(--ease);
}
.drawer__close svg { width: 19px; height: 19px; }
.drawer__close:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: rotate(90deg); }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-family: var(--display); font-size: 1.28rem; font-weight: 600; letter-spacing: -.028em;
  opacity: 0; transform: translateX(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s ease, padding-left .38s var(--ease);
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a em {
  font-family: var(--mono); font-style: normal;
  font-size: .62rem; letter-spacing: .18em;
  color: var(--gold-lt); opacity: .8;
}
.drawer__nav a:hover { color: var(--gold-lt); padding-left: 12px; }

.drawer__foot { margin-top: auto; padding-top: 30px; }
.drawer__cta { width: 100%; }
.drawer__meta { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 20px; }
.drawer__meta a {
  display: flex; align-items: center; gap: 10px;
  font-size: .855rem; color: rgba(255,255,255,.82);
  transition: color .3s ease;
}
.drawer__meta a svg { width: 15px; height: 15px; color: var(--gold-lt); flex: none; }
.drawer__meta a:hover { color: #fff; }
.drawer__social { display: flex; gap: 9px; }
.drawer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .32s var(--ease), transform .38s var(--ease), border-color .32s var(--ease);
}
.drawer__social a svg { width: 16px; height: 16px; }
.drawer__social a:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); transform: translateY(-3px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(126px, 15vw, 172px) 0 0;
  overflow: hidden;
  background: var(--white);
}
.hero__aura { position: absolute; inset: -12% -10% 0; pointer-events: none; }
.aura { position: absolute; border-radius: 50%; filter: blur(78px); opacity: .62; }
.aura--1 { top: -6%;  left: 8%;   width: 44vw; height: 44vw; background: radial-gradient(circle, rgba(110,79,216,.44), transparent 68%); animation: drift 17s ease-in-out infinite; }
.aura--2 { top: 12%;  right: 2%;  width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(208,107,180,.40), transparent 68%); animation: drift 21s ease-in-out -6s infinite; }
.aura--3 { top: 46%;  left: 32%;  width: 46vw; height: 34vw; background: radial-gradient(circle, rgba(132,56,140,.34), transparent 70%); animation: drift 25s ease-in-out -12s infinite; }

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(132,56,140,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(132,56,140,.055) 1px, transparent 1px);
  background-size: clamp(52px, 6vw, 86px) clamp(52px, 6vw, 86px);
  mask-image: radial-gradient(120% 82% at 50% 24%, #000 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(120% 82% at 50% 24%, #000 12%, transparent 74%);
}

.hero__in {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px; margin-inline: auto;
  padding-inline: var(--pad);
  text-align: center;
}

.hero__title {
  margin: 0 auto 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.75rem, 8.8vw, 7.4rem);
  line-height: .98;
  letter-spacing: -.052em;
  color: var(--ink);
  max-width: 14ch;
}
.hero__title .w:last-child > i {
  background: var(--grad-text);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 11s ease-in-out infinite alternate;
}

.hero__lede {
  margin: 0 auto;
  max-width: 46ch;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
  color: var(--muted);
}

.hero__cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 30px;
}

/* --- product stage ------------------------------------------------------ */
.stage {
  position: relative;
  margin: clamp(34px, 5vw, 58px) auto 0;
  max-width: 1080px;
  padding-bottom: clamp(96px, 12vw, 150px);
}
.stage__glow {
  position: absolute; left: 50%; top: 46%;
  width: 86%; height: 72%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(132,56,140,.30), rgba(110,79,216,.14) 44%, transparent 72%);
  filter: blur(46px);
}
.stage__plinth {
  position: absolute; left: 50%; bottom: clamp(88px, 11.4vw, 138px);
  width: min(74%, 720px); height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(42,14,51,.24), transparent 70%);
  filter: blur(14px);
}
.stage__product {
  position: relative; margin: 0;
  animation: floaty 8.5s ease-in-out 1.4s infinite;
  transition: transform .9s var(--ease);
}
.stage__product img {
  width: 100%;
  filter: drop-shadow(0 34px 48px rgba(42,14,51,.20));
}

/* hotspot · anchored to .stage, never to the floating figure */
.stage { --spot-y: 33%; }
.spot {
  position: absolute; left: 50.5%; top: var(--spot-y);
  z-index: 5;
  width: 38px; height: 38px;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
}
.spot__dot {
  position: relative; z-index: 2;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(255,255,255,.9), 0 4px 14px rgba(132,56,140,.5);
  transition: transform .42s var(--ease);
}
.spot__ping {
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--brand-lift);
  animation: ping 2.8s var(--ease-out) infinite;
}
.spot:hover .spot__dot, .spot.is-on .spot__dot { transform: scale(1.28); }

.tip {
  position: absolute; left: 50.5%; top: var(--spot-y);
  width: min(310px, 78vw);
  transform: translate(-50%, 8px) scale(.95);
  margin-top: 30px;
  opacity: 0; visibility: hidden;
  transition: opacity .42s var(--ease), transform .42s var(--ease-out), visibility .42s;
  z-index: 6;
}
.tip.is-on { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.tip__card {
  position: relative;
  padding: 18px 20px 19px;
  text-align: left;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--sh-3);
}
.tip__no {
  font-family: var(--mono); font-size: .615rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand);
}
.tip__ttl { margin-top: 5px; font-family: var(--display); font-size: 1.06rem; font-weight: 700; letter-spacing: -.024em; }
.tip__txt { margin-top: 7px; font-size: .82rem; line-height: 1.6; color: var(--muted); }
.tip__x {
  position: absolute; top: 12px; right: 12px;
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  color: var(--muted); background: var(--mist);
  transition: background .3s ease, color .3s ease, transform .45s var(--ease);
}
.tip__x svg { width: 13px; height: 13px; }
.tip__x:hover { background: var(--brand-wash); color: var(--brand); transform: rotate(90deg); }

/* --- firmness gauge ----------------------------------------------------- */
.gauge {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(420px, 92%);
  padding: 18px 22px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 6px 18px rgba(42,14,51,.07), 0 28px 60px rgba(42,14,51,.16);
  text-align: center;
}
.gauge__lbl {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.gauge__dials {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin: 12px 0 10px;
  padding: 4px;
  border-radius: 100px;
  background: var(--mist);
}
.gauge__ink {
  position: absolute; top: 4px; left: 4px;
  width: calc((100% - 8px) / 3); height: calc(100% - 8px);
  border-radius: 100px;
  background: var(--grad);
  box-shadow: 0 4px 14px rgba(132,56,140,.32);
  transition: transform .55s var(--ease-out);
}
.dial {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 8px 4px 7px;
  border-radius: 100px;
  color: var(--muted);
  transition: color .38s var(--ease);
}
.dial em {
  font-family: var(--display); font-style: normal;
  font-size: 1.14rem; font-weight: 700; line-height: 1;
}
.dial span { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.dial:hover { color: var(--brand); }
.dial.is-on, .dial.is-on:hover { color: #fff; }
.gauge__note { margin-top: 2px; font-size: .795rem; color: var(--muted); min-height: 1.3em; transition: opacity .3s ease; }
.gauge__note.is-fade { opacity: 0; }

/* --- trust ticker ------------------------------------------------------- */
.ticker {
  position: relative; z-index: 3;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 30px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: var(--mono); font-size: .68rem; font-weight: 400;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.ticker__track i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-soft); flex: none; }

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.sect { position: relative; padding: var(--sect) 0; }
.sect--inside  { background: var(--porcelain); }
.sect--range   { background: var(--mist); }
.sect--advisor { background: var(--white); }
.sect--acc     { background: var(--porcelain); }
.sect--advice  { background: var(--white); }

.sect--inside::before,
.sect--acc::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 44% at 88% 6%, rgba(110,79,216,.08), transparent 68%),
    radial-gradient(50% 40% at 4% 92%, rgba(208,107,180,.08), transparent 68%);
}
.sect > .wrap { position: relative; z-index: 2; }

.head-row {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 68px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 66px);
}
.head-row--split { grid-template-columns: 1fr auto; align-items: end; }
.head-row__r { font-size: .975rem; line-height: 1.72; color: var(--muted); max-width: 46ch; }

/* ==========================================================================
   SIGNATURE · exploded cross-section
   ========================================================================== */
.section-x {
  display: grid; grid-template-columns: minmax(280px, .82fr) 1fr;
  gap: clamp(30px, 4.6vw, 68px);
  align-items: center;
}

.xsec {
  position: relative;
  padding: 26px 26px 26px 62px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #fff, var(--mist));
  box-shadow: var(--sh-2);
}
.xsec__stack {
  display: flex; flex-direction: column; gap: 5px;
  height: clamp(310px, 40vw, 424px);
  perspective: 900px;
}
.band {
  position: relative;
  display: block;
  border-radius: 9px;
  overflow: hidden;
  transform-origin: left center;
  box-shadow: 0 2px 8px rgba(42,14,51,.09);
  transition:
    transform .62s var(--ease-out),
    opacity   .48s var(--ease),
    box-shadow .62s var(--ease),
    filter    .48s var(--ease);
}
.band > i {
  position: absolute; inset: 0;
  opacity: .9;
}
/* proportional to the real build: 4 / 5 / 2 / 3 / 10 / 4 cm = 28 cm */
.band[data-band="1"] { flex: 4;  background: linear-gradient(120deg, #FFFFFF, #F4EDF7); }
.band[data-band="2"] { flex: 5;  background: linear-gradient(120deg, #EFE3F5, #DDC8EA); }
.band[data-band="3"] { flex: 2;  background: linear-gradient(120deg, #DCD6FA, #B9AEEE); }
.band[data-band="4"] { flex: 3;  background: linear-gradient(120deg, #F6D9EC, #E3A5CF); }
.band[data-band="5"] { flex: 10; background: linear-gradient(120deg, var(--brand-lift), var(--brand-deep)); }
.band[data-band="6"] { flex: 4;  background: linear-gradient(120deg, #4A1B54, var(--plum)); }

/* material textures, drawn not decorated */
.band[data-band="1"] > i {
  background-image:
    repeating-linear-gradient( 46deg, rgba(132,56,140,.14) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(-46deg, rgba(132,56,140,.14) 0 1px, transparent 1px 22px);
}
.band[data-band="2"] > i,
.band[data-band="4"] > i {
  background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1.6px);
  background-size: 9px 9px;
}
.band[data-band="3"] > i {
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 1px, transparent 1px 14px);
}
.band[data-band="5"] > i {
  background-image: repeating-radial-gradient(circle at 12px 50%, rgba(255,255,255,.34) 0 1px, transparent 1px 9px);
  background-size: 24px 100%;
}
.band[data-band="6"] > i {
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 2px, transparent 2px 10px);
}

.xsec__stack.is-live .band { opacity: .48; filter: saturate(.72); }
.xsec__stack.is-live .band.is-on {
  opacity: 1; filter: saturate(1.06);
  transform: translateX(16px) scaleY(1.035);
  box-shadow: 0 10px 26px rgba(42,14,51,.2);
  z-index: 3;
}

.xsec__caliper {
  position: absolute; left: 26px; top: 26px; bottom: 26px;
  width: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.xsec__caliper i { flex: 1; width: 1px; background: linear-gradient(var(--brand-soft), var(--line)); }
.xsec__caliper em {
  font-family: var(--mono); font-style: normal;
  font-size: .58rem; letter-spacing: .14em; color: var(--muted);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.xsec__caliper::before, .xsec__caliper::after {
  content: ""; position: absolute; left: 3px; width: 13px; height: 1px; background: var(--brand-soft);
}
.xsec__caliper::before { top: 0; }
.xsec__caliper::after  { bottom: 0; }

/* --- layer rows --------------------------------------------------------- */
.layers { display: flex; flex-direction: column; gap: 3px; }
.layer {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: start; gap: clamp(14px, 1.8vw, 24px);
  padding: 17px clamp(14px, 1.8vw, 22px);
  border-radius: var(--r);
  cursor: pointer;
  transition: background .48s var(--ease), transform .48s var(--ease-out), box-shadow .48s var(--ease);
}
.layer::before {
  content: ""; position: absolute; left: 0; top: 12%;
  width: 2.5px; height: 76%; border-radius: 3px;
  background: var(--grad);
  transform: scaleY(0); transform-origin: center;
  transition: transform .5s var(--ease-out);
}
.layer:not(:last-child)::after {
  content: ""; position: absolute; left: clamp(14px, 1.8vw, 22px); right: clamp(14px, 1.8vw, 22px); bottom: 0;
  height: 1px; background: var(--line-soft);
}
.layer__n {
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; color: var(--brand-soft);
  padding-top: 4px;
  transition: color .4s var(--ease);
}
.layer__b h3 {
  font-family: var(--display); font-size: 1.09rem; font-weight: 700;
  letter-spacing: -.022em; color: var(--ink);
  transition: color .4s var(--ease);
}
.layer__b p { margin-top: 3px; font-size: .875rem; line-height: 1.6; color: var(--muted); }
.layer__mm {
  font-family: var(--mono); font-size: .655rem; letter-spacing: .08em;
  color: var(--muted); padding-top: 5px; white-space: nowrap;
  transition: color .4s var(--ease);
}
.layer:hover { background: rgba(255,255,255,.72); }
.layer.is-on {
  background: #fff;
  box-shadow: var(--sh-2);
  transform: translateX(4px);
}
.layer.is-on::before { transform: scaleY(1); }
.layer.is-on::after  { opacity: 0; }
.layer.is-on .layer__n  { color: var(--brand); }
.layer.is-on .layer__mm { color: var(--brand); }

/* ==========================================================================
   RANGE
   ========================================================================== */
.range {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.prod {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease), border-color .5s var(--ease);
}
.prod__hit { position: absolute; inset: 0; z-index: 4; }
.prod::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  border-radius: inherit; pointer-events: none;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s var(--ease);
}
.prod:hover { transform: translateY(-7px); box-shadow: var(--sh-3); }
.prod:hover::after { opacity: 1; }

.prod__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.prod__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s var(--ease-out); }
.prod:hover .prod__media img { transform: scale(1.06); }
.prod__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(42,14,51,.16));
  opacity: 0; transition: opacity .55s var(--ease);
}
.prod:hover .prod__media::after { opacity: 1; }

.prod__body { display: flex; flex-direction: column; gap: 11px; padding: clamp(18px, 2vw, 24px); flex: 1; }
.prod__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prod__top h3 {
  font-family: var(--display); font-size: 1.38rem; font-weight: 700; letter-spacing: -.032em;
}
.prod__body > p { font-size: .885rem; line-height: 1.66; color: var(--muted); flex: 1; }
.prod__body .link-arw { margin-top: 2px; }

.chip {
  padding: 5px 11px; border-radius: 100px;
  font-family: var(--mono); font-size: .615rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-wash); border: 1px solid #EADCEF;
  white-space: nowrap;
}
.chip--gold { color: var(--gold-ink); background: #FBF4E4; border-color: #F0E3C6; }

.scale { height: 4px; border-radius: 4px; background: var(--line); overflow: hidden; }
.scale i {
  display: block; width: var(--w); height: 100%; border-radius: 4px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease-out) .2s;
}
.prod.is-seen .scale i { transform: scaleX(1); }

.prod--hero { border-color: transparent; box-shadow: var(--sh-2); }
.prod--hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  border-radius: inherit; pointer-events: none; padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55; transition: opacity .5s var(--ease);
}
.prod--hero:hover::before { opacity: 0; }
.prod--hero .prod__media { aspect-ratio: 4 / 3.2; }
.ribbon {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  padding: 6px 13px; border-radius: 100px;
  font-family: var(--mono); font-size: .59rem; letter-spacing: .14em; text-transform: uppercase;
  color: #33270D; background: var(--grad-gold);
  box-shadow: 0 6px 16px rgba(154,120,54,.34);
}

/* ==========================================================================
   ADVISOR
   ========================================================================== */
.advisor {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 78px); align-items: center;
}
.advisor__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 3vw, 44px);
  justify-content: start;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stats dt {
  font-family: var(--display); font-size: clamp(1.65rem, 2.9vw, 2.2rem);
  font-weight: 700; line-height: 1; letter-spacing: -.042em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stats dd {
  margin-top: 6px;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}

.advisor__fig { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-3); }
.advisor__fig > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.advisor__fig:hover > img { transform: scale(1.045); }
.advisor__badge {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 13px;
  padding: 12px 15px; border-radius: var(--r);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--sh-2);
  transform: translateY(0); transition: transform .55s var(--ease-out);
}
.advisor__fig:hover .advisor__badge { transform: translateY(-4px); }
.advisor__badge img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.advisor__badge strong { display: block; font-size: .875rem; font-weight: 700; letter-spacing: -.012em; }
.advisor__badge span   { font-size: .765rem; color: var(--muted); }

/* ==========================================================================
   ACCESSORIES
   ========================================================================== */
.acc { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.tile {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff; overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease), border-color .5s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: #E6D4EB; }
.tile__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--mist); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s var(--ease-out); }
.tile:hover .tile__media img { transform: scale(1.07); }
.tile__body { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px 20px; flex: 1; }
.tile__body h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.026em; }
.tile__body p  { font-size: .83rem; line-height: 1.58; color: var(--muted); flex: 1; }
.tile__go {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 6px;
  font-size: .775rem; font-weight: 700; color: var(--brand);
  transition: gap .38s var(--ease);
}
.tile__go svg { width: 14px; height: 14px; transition: transform .42s var(--ease); }
.tile:hover .tile__go { gap: 11px; }
.tile:hover .tile__go svg { transform: translateX(2px); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.sect--reviews {
  position: relative;
  padding: var(--sect) 0;
  background: var(--grad-deep);
  color: #fff;
  overflow: hidden;
}
.reviews__aura {
  position: absolute; top: -20%; left: 50%; width: 90vw; height: 70vw;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(162,79,171,.34), transparent 62%);
  filter: blur(70px); pointer-events: none;
  animation: drift 24s ease-in-out infinite;
}
.sect--reviews .wrap { position: relative; z-index: 2; }
.sect--reviews .head-row { align-items: center; }

.score { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; text-align: right; }
.score__n {
  font-family: var(--display); font-size: clamp(2.3rem, 4.4vw, 3.2rem);
  font-weight: 700; line-height: 1; letter-spacing: -.045em;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.score__stars { display: flex; gap: 3px; color: var(--gold-lt); }
.score__stars svg, .quote__stars svg { width: 15px; height: 15px; }
.score__m { font-size: .765rem; color: rgba(255,255,255,.62); max-width: 22ch; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.quote {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(22px, 2.6vw, 30px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: transform .55s var(--ease-out), background .5s var(--ease), border-color .5s var(--ease);
}
.quote:hover { transform: translateY(-6px); background: rgba(255,255,255,.095); border-color: rgba(255,255,255,.26); }
.quote__stars { display: flex; gap: 3px; color: var(--gold-lt); }
.quote__stars .is-off { color: rgba(255,255,255,.24); }
.quote blockquote {
  font-family: var(--display); font-size: 1.02rem; font-weight: 500;
  line-height: 1.6; letter-spacing: -.018em; color: rgba(255,255,255,.94);
  flex: 1;
}
.quote figcaption { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.av {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .05em;
  color: #fff; background: var(--grad);
}
.quote figcaption strong { display: block; font-size: .86rem; font-weight: 700; }
.quote figcaption small  { font-size: .735rem; color: rgba(255,255,255,.58); }

/* ==========================================================================
   ADVICE
   ========================================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.post {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  box-shadow: var(--sh-1);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease), border-color .5s var(--ease);
}
.post:hover { transform: translateY(-7px); box-shadow: var(--sh-3); border-color: #E6D4EB; }
.post__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.05s var(--ease-out); }
.post:hover .post__media img { transform: scale(1.06); }
.post__tag {
  position: absolute; top: 13px; left: 13px;
  padding: 5px 11px; border-radius: 100px;
  font-family: var(--mono); font-size: .585rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.post__body { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 22px; flex: 1; }
.post__body h3 {
  font-family: var(--display); font-size: 1.11rem; font-weight: 700;
  line-height: 1.32; letter-spacing: -.026em;
  transition: color .38s var(--ease);
}
.post:hover .post__body h3 { color: var(--brand); }
.post__body p { font-size: .85rem; line-height: 1.62; color: var(--muted); flex: 1; }
.post__read {
  margin-top: 4px;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-soft);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding: clamp(70px, 9vw, 122px) 0;
  background: var(--grad);
  background-size: 200% 200%;
  color: #fff; overflow: hidden;
  animation: shimmer 16s ease-in-out infinite alternate;
}
.cta-band__aura {
  position: absolute; inset: 0;
  background:
    radial-gradient(46% 62% at 16% 8%,  rgba(255,255,255,.24), transparent 62%),
    radial-gradient(52% 68% at 86% 96%, rgba(42,14,51,.36), transparent 66%);
}
.cta-band__in { position: relative; z-index: 2; text-align: center; }
.cta-band__lede {
  margin: 18px auto 0; max-width: 52ch;
  font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.86);
}
.cta-band__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot {
  position: relative;
  padding: clamp(60px, 7vw, 92px) 0 0;
  background: var(--plum);
  color: rgba(255,255,255,.72);
  overflow: hidden;
}
.foot::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(64% 46% at 12% 0%, rgba(132,56,140,.34), transparent 64%);
  pointer-events: none;
}
.foot .wrap { position: relative; z-index: 2; }

.foot__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.35fr;
  gap: clamp(24px, 3vw, 46px);
  padding-bottom: clamp(38px, 5vw, 58px);
}
.foot__logo { width: 152px; margin-bottom: 16px; opacity: .95; }
.foot__brand > p { font-size: .845rem; line-height: 1.68; max-width: 34ch; }
.foot__line {
  display: flex; align-items: center; gap: 9px;
  margin-top: 11px; font-size: .845rem;
  transition: color .3s ease;
}
.foot__line svg { width: 15px; height: 15px; color: var(--gold-lt); flex: none; }
.foot__line:hover { color: #fff; }
.foot__social { display: flex; gap: 9px; margin-top: 20px; }
.foot__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8);
  transition: background .34s var(--ease), transform .4s var(--ease), color .3s ease, border-color .34s var(--ease);
}
.foot__social a svg { width: 16px; height: 16px; }
.foot__social a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.36); color: #fff; transform: translateY(-3px); }

.foot__col { display: flex; flex-direction: column; }
.foot__col h3, .foot__letter h3 {
  margin-bottom: 15px;
  font-family: var(--mono); font-size: .625rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt);
}
.foot__col a {
  padding: 6px 0; font-size: .855rem;
  transition: color .3s ease, transform .38s var(--ease);
}
.foot__col a:hover { color: #fff; transform: translateX(4px); }
.foot__letter > p { font-size: .845rem; line-height: 1.66; max-width: 30ch; }

.sub {
  display: flex; gap: 6px; margin-top: 15px;
  padding: 5px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.sub:focus-within { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.09); }
.sub input {
  flex: 1; min-width: 0;
  padding: 9px 14px; border: 0; background: none;
  font-size: .84rem; color: #fff; outline: none;
}
.sub input::placeholder { color: rgba(255,255,255,.42); }
.sub button {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  color: #fff; background: var(--grad);
  transition: transform .42s var(--ease), box-shadow .42s var(--ease);
}
.sub button svg { width: 16px; height: 16px; transition: transform .38s var(--ease); }
.sub button:hover { transform: scale(1.06); box-shadow: 0 6px 18px rgba(132,56,140,.5); }
.sub button:hover svg { transform: translateX(2px); }
.sub__msg {
  min-height: 1.2em; margin-top: 9px;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-lt); opacity: 0; transform: translateY(-4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sub__msg.is-on { opacity: 1; transform: none; }
.sub__msg.is-err { color: #F0A8C4; }

.foot__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: rgba(255,255,255,.52);
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.foot__legal a { transition: color .3s ease; }
.foot__legal a:hover { color: #fff; }

.foot__mark {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  padding: 0 var(--pad);
  pointer-events: none; overflow: hidden;
}
.foot__mark span {
  display: block;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.4rem, 16vw, 14rem);
  line-height: .8; letter-spacing: -.058em;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,0) 82%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .18em; margin-bottom: -.18em;
  transform: translateY(14%);
}

.totop {
  position: fixed; right: clamp(16px, 3vw, 30px); bottom: clamp(16px, 3vw, 30px);
  z-index: 70;
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  color: #fff; background: var(--grad);
  box-shadow: var(--sh-brand);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: opacity .45s var(--ease), transform .45s var(--ease-out), visibility .45s, box-shadow .4s var(--ease);
}
.totop svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { box-shadow: 0 16px 38px rgba(132,56,140,.42); }
.totop:hover svg { transform: translateY(-2px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .head__nav { gap: 12px; }
  .head__nav a { font-size: .8rem; }
  .foot__cols { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 40px; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__letter { grid-column: 1 / -1; }
  .foot__letter > p { max-width: 44ch; }
  .sub { max-width: 420px; }
}

@media (max-width: 1020px) {
  html { scroll-padding-top: 88px; }
  .head__nav, .ico--hide { display: none; }
  .burger { display: block; }
  .head__act { margin-left: auto; }

  .head-row, .head-row--split { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .section-x { grid-template-columns: 1fr; gap: 30px; }
  .xsec { order: 2; }
  .xsec__stack { height: clamp(230px, 40vw, 300px); }
  .layers { order: 1; }

  .range, .posts, .quotes { grid-template-columns: 1fr 1fr; }
  .prod--hero .prod__media { aspect-ratio: 4 / 3; }
  .acc { grid-template-columns: 1fr 1fr; }
  .advisor { grid-template-columns: 1fr; }
  .advisor__fig { order: -1; }
  .advisor__fig > img { aspect-ratio: 16 / 11; }
  .score { align-items: flex-start; text-align: left; }
  .sect--reviews .head-row { gap: 26px; }
}

@media (max-width: 760px) {
  .head__cta { display: none; }
  .hero { padding-top: clamp(104px, 24vw, 132px); }
  .stage { padding-bottom: 0; }
  .gauge { position: static; transform: none; width: 100%; margin-top: 26px; }
  .stage__plinth { bottom: -6px; }
  .stage { --spot-y: 44%; }

  .range, .posts, .quotes, .acc { grid-template-columns: 1fr; }
  .prod, .post, .tile { max-width: 520px; margin-inline: auto; width: 100%; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .layer { grid-template-columns: auto 1fr; row-gap: 6px; }
  .layer__mm {
    grid-column: 2; padding: 3px 9px; justify-self: start;
    border-radius: 100px; background: var(--brand-wash); color: var(--brand);
  }
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero__cta, .cta-band__btns { flex-direction: column; align-items: stretch; }
  .hero__cta .btn, .cta-band__btns .btn, .advisor__cta .btn { width: 100%; }
  .advisor__cta { flex-direction: column; }
  .foot__cols { grid-template-columns: 1fr; }
  .foot__bar { flex-direction: column; align-items: flex-start; }
  .xsec { padding: 18px 18px 18px 50px; }
  .xsec__caliper { left: 18px; top: 18px; bottom: 18px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 18px 12px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
  .js .w > i { transform: none !important; }
  .loader { display: none; }
  .ticker__track { animation: none; }
}

/* ==========================================================================
   INTERACTION EXTRAS
   Hover and pointer easing lives here so timings stay in sync across the page.
   ========================================================================== */
.stage__product img { transition: transform .9s var(--ease), filter .6s var(--ease); }
.stage__glow        { transition: transform 1.1s var(--ease); }
.layer              { outline-offset: -2px; }
.prod__hit:focus-visible { outline-offset: -4px; }

/* skip the no-js duplicate block, superseded by the html.js scoping above */
