/* ============================================================================
   MixPill — marketing site

   Concept: the page IS the signal path. One merged stream at the top splits
   into per-app channels, each taking its own level, shape and destination.

   Type system has a point of view:
     · Archivo (variable grotesk) for display — the poster voice
     · Instrument Serif italic for accent words — contrast without colour
     · the platform system font for body AND for the mock-up, because the
       mock-up is pretending to be a native app and has to look like one
   ========================================================================== */

/* ─────────────────────────────  FONTS  ──────────────────────────────── */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;        /* width axis — display type runs wide */
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 62% 125%;        /* width axis — display type runs wide */
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/instrument-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─────────────────────────────  TOKENS  ─────────────────────────────── */
:root {
  --font-display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI Variable Text',
             'Segoe UI', Inter, system-ui, sans-serif;

  /* Hot signal. The ramp a level meter runs through as it drives harder:
     cream → amber → orange → red. This is the product's own colour language,
     and it is nothing like the violet every dark SaaS page defaults to. */
  --brand-300: #FFD9A8;
  --brand-400: #FFC061;
  --brand-500: #FF9F1C;
  --brand-600: #FF6B35;
  --brand-700: #D93A24;
  --brand-800: #A32717;
  --hot-rgb: 255, 107, 53;

  /* Live signal — green, because in audio green means "present and safe".
     Reserved for live states; never decoration. */
  --signal: #2DD4A0;
  --signal-rgb: 45, 212, 160;

  /* Warm near-black: a console, not a cold dashboard. */
  --bg:        #0A0908;
  --surface:   #141210;
  --surface-2: #1B1815;

  --mat-thin:  rgba(255, 242, 228, 0.045);
  --mat-reg:   rgba(255, 242, 228, 0.075);
  --mat-thick: rgba(26, 22, 18, 0.74);
  --hairline:  rgba(255, 242, 228, 0.10);
  --hairline-2:rgba(255, 242, 228, 0.06);
  --edge-light:rgba(255, 242, 228, 0.16);

  --text:   #F7F3ED;
  --text-2: #ACA69C;
  --text-3: #79736A;
  --text-4: #524C45;

  --green: #30D158;
  --amber: #FF9F0A;
  --red:   #FF453A;
  --blue:  #0A84FF;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --wrap: 76rem;
  --sec-y: clamp(5rem, 11vw, 9rem);

  --shadow-md: 0 2px 6px rgba(0,0,0,.42), 0 18px 48px rgba(0,0,0,.44);
  --shadow-xl: 0 4px 12px rgba(0,0,0,.45), 0 48px 120px rgba(0,0,0,.62);

  --ease-out: cubic-bezier(.16,.84,.36,1);
}

/* ─────────────────────────────  RESET  ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--font-ui);
  font-size: 100%;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; }
::selection { background: var(--brand-600); color: #fff; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 50%; z-index: 200;
  transform: translateX(-50%);
  padding: .7rem 1.2rem;
  background: var(--brand-600); color: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.skip-link:focus { top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec-y); position: relative; }

/* ──────────────────────────  TYPOGRAPHY  ───────────────────────────
   Tracking is size-specific — hard negative as display type grows,
   neutral at body, positive on small uppercase labels. */

/* Archivo carries a width axis; running display type wide gives it the broad,
   squared presence of American gothic signage instead of a default grotesk. */
.display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.5vw, 8.5rem);
  line-height: .9;
  letter-spacing: -0.048em;
  font-weight: 820;
  font-stretch: 112%;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.6vw, 4.25rem);
  line-height: .96;
  letter-spacing: -0.038em;
  font-weight: 820;
  font-stretch: 110%;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* The accent: a serif italic against a heavy grotesk. Style contrast, not
   colour contrast — it reads as considered rather than decorated. */
.display em, .h2 em, .act__title em, .zero__statement em, .bleed__line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  letter-spacing: -0.015em;
  color: var(--brand-400);
}
/* The italic's own right side bearing is enough; adding padding only opens a
   visible gap before the punctuation that follows most of these phrases. */

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--text-2);
  max-width: 34ch;
}
.body {
  font-size: 1.03rem;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 42ch;
}
.body--sm { font-size: .92rem; color: var(--text-3); }
.body + .body { margin-top: .9rem; }

.kicker {
  font-family: var(--font-display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-400);
}

code, kbd {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86em;
}
kbd {
  display: inline-block;
  padding: .1em .4em;
  background: var(--mat-reg);
  border: 1px solid var(--hairline);
  border-radius: 5px;
  color: var(--text-2);
}

/* Non-gestural, so a transition is the right tool here. */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 70ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ─────────────────────────────  BUTTONS  ───────────────────────────── */
/* Squared-off with a lit top edge and real press depth — a control on a piece
   of hardware, not the gradient pill every SaaS landing page ships. */
.btn {
  --btn-y: .85rem; --btn-x: 1.4rem;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--btn-y) var(--btn-x);
  border-radius: 11px;
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 640; letter-spacing: -.008em;
  white-space: nowrap;
  transition: transform 110ms var(--ease-out), filter 180ms var(--ease-out),
              background-color 160ms var(--ease-out), border-color 160ms var(--ease-out),
              box-shadow 220ms var(--ease-out);
}
.btn--sm { --btn-y: .52rem; --btn-x: 1rem; font-size: .855rem; border-radius: 9px; }
.btn--lg { --btn-y: 1rem; --btn-x: 1.75rem; font-size: 1rem; border-radius: 13px; }
.btn--block { display: flex; width: 100%; }

.btn--primary {
  color: #1A0C03;
  background: linear-gradient(178deg, var(--brand-400) 0%, var(--brand-500) 46%, var(--brand-600) 100%);
  box-shadow:
    0 1px 0 rgba(255,244,225,.55) inset,
    0 -1px 0 rgba(120,40,10,.32) inset,
    0 6px 0 -1px #8E2A14,                       /* the body of the key */
    0 14px 30px -10px rgba(var(--hot-rgb), .55);
}
.btn--primary:hover { filter: brightness(1.06) saturate(1.05); }
.btn--primary:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 rgba(255,244,225,.4) inset,
    0 3px 0 -1px #8E2A14,
    0 6px 16px -8px rgba(var(--hot-rgb), .5);
}

.btn--ghost {
  color: var(--text);
  background: var(--mat-thin);
  border: 1px solid var(--hairline);
  box-shadow: 0 1px 0 rgba(255,242,228,.07) inset;
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}
.btn--ghost:hover { background: var(--mat-reg); border-color: var(--edge-light); }
.btn--ghost:active { transform: translateY(1px); }

.btn__glyph { flex: none; opacity: .8; }
.btn__arrow { transition: transform 240ms var(--ease-out); }
.btn--ghost:hover .btn__arrow { transform: translateX(3px); }

/* ──────────────────────────────  NAV  ──────────────────────────────
   Translucent layer, content scrolling underneath, boundary is a soft
   scroll-edge fade rather than a 1px divider. */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; padding-block: .55rem; }
.nav::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,7,13,.86), rgba(8,7,13,.62) 62%, rgba(8,7,13,0));
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent);
  mask-image: linear-gradient(180deg, #000 58%, transparent);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.nav.is-stuck::after { opacity: 1; }
.nav__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: .58rem; }
.nav__mark { border-radius: 22%; box-shadow: 0 2px 8px rgba(0,0,0,.5); }
.nav__word { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
/* Channel labels on a console, not pills in a SaaS header: small, wide-tracked
   display caps with a hairline that grows from the left on hover. */
.nav__links {
  display: flex;
  gap: clamp(1.15rem, 2.6vw, 2.1rem);
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  padding: .5rem 0;
  font-family: var(--font-display);
  font-size: .715rem;
  font-weight: 700;
  font-stretch: 104%;
  letter-spacing: .155em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color .25s var(--ease-out);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .18rem;
  height: 1px;
  background: var(--brand-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out), background-color .25s var(--ease-out);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

/* Wayfinding — the section you are actually in stays lit in signal green,
   so the nav answers "where am I?" and not only "where can I go?". */
.nav__links a.is-current { color: var(--text); }
.nav__links a.is-current::after { transform: scaleX(1); background: var(--signal); }
@media (max-width: 860px) { .nav__links { display: none; } .nav__cta { margin-left: auto; } }

/* ──────────────────────────────  HERO  ─────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero__aurora {
  position: absolute; top: -32vh; left: 50%;
  width: min(150vw, 1500px); aspect-ratio: 1.5;
  transform: translateX(-50%);
  pointer-events: none;
  /* Three lights, not one tint: amber core, red-orange to the left, and a cool
     teal counter-light so the warmth has something to sit against. */
  background:
    radial-gradient(42% 38% at 52% 36%, rgba(255,159,28,.15), transparent 68%),
    radial-gradient(32% 30% at 22% 52%, rgba(217,58,36,.13), transparent 70%),
    radial-gradient(30% 28% at 80% 54%, rgba(45,212,160,.08), transparent 72%);
  filter: blur(30px);
}
.hero__copy { position: relative; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem 1rem .42rem .7rem;
  margin-bottom: 1.9rem;
  border-radius: 999px;
  font-size: .8rem; letter-spacing: .012em;
  color: var(--text-2);
  background: var(--mat-thin);
  border: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(var(--signal-rgb),.16);
}
.hero .lede { margin: 1.5rem auto 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 2.2rem; }
.hero__meta { margin-top: 1.1rem; font-size: .83rem; color: var(--text-3); }

/* ──────────────────  THE MENU-BAR ILLUSION  ────────────────────── */
.stage { position: relative; margin-top: clamp(3rem, 6vw, 4.5rem); padding-inline: var(--gut); }
.mac {
  width: min(100%, 62rem); margin-inline: auto;
  border-radius: clamp(12px, 1.4vw, 20px) clamp(12px, 1.4vw, 20px) 4px 4px;
  background: linear-gradient(150deg, #35323F, #17161D 42%, #0D0C12);
  padding: clamp(5px, .7vw, 9px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.075), 0 1px 0 rgba(255,255,255,.13) inset, var(--shadow-xl);
}
.mac__screen {
  position: relative;
  border-radius: clamp(8px, 1vw, 14px);
  overflow: hidden;
  aspect-ratio: 16 / 10.2;
  background: #05040A;
  box-shadow: 0 0 0 1px rgba(0,0,0,.9) inset;
}
.mac__wallpaper {
  position: absolute; inset: 0; overflow: hidden;
  background: linear-gradient(158deg, #2E1A0C, #14100C 52%, #0A0908);
}
.mac__wallpaper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.mac__wallpaper::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,5,12,.5), rgba(6,5,12,.06) 26%,
                              rgba(6,5,12,.06) 72%, rgba(6,5,12,.42));
}
.mac__chin {
  height: clamp(9px, 1.1vw, 14px);
  width: min(100%, 62rem); margin: 0 auto;
  border-radius: 0 0 clamp(9px, 1.1vw, 14px) clamp(9px, 1.1vw, 14px);
  background: linear-gradient(180deg, #26242E, #131219);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.85);
}
.mac__chin::after {
  content: ""; display: block; width: 14%; height: 100%; margin-inline: auto;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), transparent);
}
.stage__caption {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: 1.4rem; font-size: .81rem; color: var(--text-3);
}
.stage__captionDot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-400); box-shadow: 0 0 0 3px rgba(var(--hot-rgb),.16);
}

.dock {
  position: absolute; z-index: 1;
  left: 50%; bottom: clamp(4px, .7vw, 9px);
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: clamp(4px, .62vw, 8px);
  padding: clamp(3px, .45vw, 6px);
  border-radius: clamp(7px, .95vw, 13px);
  background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.1) inset, 0 1px 0 rgba(255,255,255,.16) inset,
              0 10px 26px -8px rgba(0,0,0,.7);
}
.dock__item {
  position: relative; width: clamp(15px, 2.1vw, 26px); aspect-ratio: 1;
  border-radius: 23%;
  background: linear-gradient(160deg, var(--a, #666), var(--b, #333));
  box-shadow: 0 1px 3px rgba(0,0,0,.5), 0 0 0 .5px rgba(255,255,255,.12) inset;
}
.dock__item--app { background: none; box-shadow: none; }
.dock__item--app img { width: 100%; height: 100%; border-radius: 23%; box-shadow: 0 2px 6px rgba(0,0,0,.55); }
.dock__dot {
  position: absolute; left: 50%; bottom: -3px;
  width: 2.5px; height: 2.5px; border-radius: 50%;
  transform: translateX(-50%); background: rgba(255,255,255,.75);
}
@media (max-width: 560px) { .dock { display: none; } }

.menubar {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: clamp(20px, 2.6vw, 30px);
  padding-inline: clamp(8px, 1.2vw, 14px);
  font-size: clamp(9px, 1.06vw, 12.5px); font-weight: 500;
  color: rgba(255,255,255,.9);
  background: rgba(14,12,24,.5);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.07) inset;
}
.menubar__left, .menubar__right { display: flex; align-items: center; gap: clamp(7px, 1.05vw, 13px); }
.menubar__apple { display: flex; opacity: .95; }
.menubar__app { font-weight: 660; }
.menubar__item { color: rgba(255,255,255,.86); }
@media (max-width: 720px) { .menubar__item { display: none; } }
.menubar__sysicon { display: flex; opacity: .8; }
.menubar__clock { font-variant-numeric: tabular-nums; opacity: .92; }
.menubar__trigger {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 2px clamp(3px, .5vw, 6px); border-radius: 5px;
  color: rgba(255,255,255,.95);
}
.menubar__trigger.is-active { background: rgba(255,255,255,.17); }
.menubar__glyph { width: clamp(12px, 1.5vw, 17px); height: auto; }
.menubar__triggerGlow {
  position: absolute; inset: -6px; border-radius: 9px;
  background: radial-gradient(circle, rgba(var(--hot-rgb),.5), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease-out); pointer-events: none;
}
.menubar__trigger.is-active .menubar__triggerGlow { opacity: 1; }

/* The popover scales and un-blurs FROM the menu bar item it belongs to. */
.popover {
  position: absolute; z-index: 2;
  top: clamp(24px, 3.1vw, 35px);
  right: clamp(8px, 1.4vw, 18px);
  width: min(56%, 25.5rem); min-width: 15rem;
  border-radius: clamp(9px, 1.15vw, 15px);
  background: var(--mat-thick);
  -webkit-backdrop-filter: blur(46px) saturate(190%);
  backdrop-filter: blur(46px) saturate(190%);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 30px 70px -18px rgba(0,0,0,.85);
  overflow: hidden;
  transform-origin: 88% 0;
}
.popover__tail {
  position: absolute; top: -5px; right: clamp(12px, 2vw, 26px);
  width: 10px; height: 10px; transform: rotate(45deg);
  background: var(--mat-thick);
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
  border-radius: 2px;
}
.popover__head {
  display: flex; align-items: center; gap: 8px;
  padding: clamp(7px, .95vw, 11px) clamp(8px, 1.05vw, 12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.popover__search {
  flex: 1; display: flex; align-items: center; gap: 6px;
  padding: clamp(3px, .45vw, 5px) clamp(6px, .8vw, 9px);
  border-radius: 7px; background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.42); font-size: clamp(8.5px, .95vw, 11.5px);
}
.popover__search svg { flex: none; }
.popover__headActions { display: flex; align-items: center; gap: 6px; }
.popover__gear { display: flex; color: rgba(255,255,255,.5); }
.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 7px 2px 5px; border-radius: 999px;
  font-size: clamp(7.5px, .82vw, 10px); font-weight: 600; white-space: nowrap;
}
.pill--live { background: rgba(var(--signal-rgb),.18); color: var(--signal); }
.pill__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--signal); animation: pulseDot 1.6s var(--ease-out) infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.strips { padding: clamp(4px, .55vw, 7px); display: grid; gap: clamp(1px, .2vw, 3px); }
.strip {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(6px, .85vw, 10px);
  padding: clamp(5px, .7vw, 8px) clamp(6px, .8vw, 9px);
  border-radius: 8px;
  transition: background-color .22s var(--ease-out);
}
.strip:hover { background: rgba(255,255,255,.05); }
.strip.is-ducked { background: rgba(var(--signal-rgb),.07); }
.strip__icon {
  width: clamp(15px, 1.9vw, 22px); aspect-ratio: 1; border-radius: 24%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--tint) 22%, transparent);
  color: var(--tint);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--tint) 26%, transparent) inset;
  flex: none;
}
.strip__icon svg { width: 62%; height: auto; }
.strip__mid { min-width: 0; }
.strip__row1 { display: flex; align-items: baseline; gap: 6px; margin-bottom: clamp(2px, .3vw, 4px); }
.strip__name {
  font-size: clamp(8.5px, .98vw, 11.5px); font-weight: 590;
  color: rgba(255,255,255,.94);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.strip__db {
  margin-left: auto; font-size: clamp(7.5px, .84vw, 10px);
  font-variant-numeric: tabular-nums; color: rgba(255,255,255,.42); white-space: nowrap;
}
.strip__tag {
  font-size: clamp(6.5px, .72vw, 8.5px); font-weight: 640; letter-spacing: .05em;
  text-transform: uppercase; padding: 1px 4px; border-radius: 4px;
  background: rgba(255,159,10,.18); color: #FFC46B; white-space: nowrap;
}
.strip__mute {
  width: clamp(15px, 1.85vw, 21px); aspect-ratio: 1; border-radius: 6px;
  display: grid; place-items: center;
  color: rgba(255,255,255,.45); background: rgba(255,255,255,.06);
  transition: background-color .18s var(--ease-out), color .18s var(--ease-out), transform .11s var(--ease-out);
}
.strip__mute:hover { background: rgba(255,255,255,.13); color: rgba(255,255,255,.8); }
.strip__mute:active { transform: scale(.9); }
.strip.is-muted .strip__mute { background: rgba(255,69,58,.22); color: #FF8A82; }
.strip.is-muted .strip__name, .strip.is-muted .strip__db { opacity: .42; }
.strip__mute svg { width: 58%; height: auto; }

/* Meter: gradient spans the whole dBFS scale and the level CLIPS it, so amber
   and red stay at the levels they represent instead of sliding with the bar. */
.meter {
  position: relative; height: clamp(2.5px, .34vw, 4px);
  border-radius: 999px; background: rgba(255,255,255,.09);
  overflow: hidden; margin-bottom: clamp(3px, .4vw, 5px);
}
.meter__fill {
  position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 62%, var(--amber) 82%, var(--red) 96%);
  clip-path: inset(0 100% 0 0);
}
.meter__tick { position: absolute; top: -1px; bottom: -1px; left: 80%; width: 1px; background: rgba(255,255,255,.28); }
.meter__clip {
  position: absolute; top: 0; right: 0; bottom: 0; width: 4%;
  border-radius: 999px; background: var(--red);
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.meter__clip.is-held { opacity: 1; transition-duration: 0s; }

.fader { position: relative; height: clamp(11px, 1.35vw, 15px); touch-action: none; cursor: grab; }
.fader:active { cursor: grabbing; }
.fader__track {
  position: absolute; top: 50%; left: 0; right: 0;
  height: clamp(3px, .38vw, 4.5px); transform: translateY(-50%);
  border-radius: 999px; background: rgba(255,255,255,.13); overflow: hidden;
}
/* Faders stay neutral so green/amber/red mean level and nothing else — the
   same division of labour a real console uses. */
.fader__fill { position: absolute; inset: 0 auto 0 0; width: 86%; border-radius: 999px;
  background: linear-gradient(90deg, #8C8377, #E8DFD1); }
.fader__knob {
  position: absolute; top: 50%; left: 86%;
  width: clamp(9px, 1.15vw, 13px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #fff, #EDE4D6);
  box-shadow: 0 1px 3px rgba(0,0,0,.55), 0 0 0 .5px rgba(0,0,0,.25);
  transition: box-shadow .2s var(--ease-out);
}
.fader__knob:hover, .fader.is-drag .fader__knob {
  box-shadow: 0 1px 3px rgba(0,0,0,.55), 0 0 0 .5px rgba(0,0,0,.25), 0 0 0 5px rgba(var(--hot-rgb),.22);
}
.strip.is-muted .fader__fill { background: rgba(255,255,255,.2); }
.strip.is-daw .fader { opacity: .38; pointer-events: none; }
.strip.is-daw .meter__fill { background: rgba(255,255,255,.22); }

.popover__foot {
  padding: clamp(6px, .85vw, 10px) clamp(8px, 1.05vw, 12px) clamp(7px, .95vw, 11px);
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.028);
}
.master { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; }
.master__label {
  font-size: clamp(8px, .9vw, 10.5px); font-weight: 620; letter-spacing: .045em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.master__db { font-size: clamp(7.5px, .84vw, 10px); font-variant-numeric: tabular-nums; color: rgba(255,255,255,.5); }
.fader--master .fader__fill { background: linear-gradient(90deg, #FFD9A8, #fff); }
.popover__hint {
  margin-top: clamp(4px, .55vw, 7px); font-size: clamp(7px, .78vw, 9.5px);
  color: rgba(255,255,255,.3); display: flex; align-items: center; gap: 5px;
}
.popover__hint kbd { font-size: .95em; padding: 0 3px; border-color: rgba(255,255,255,.14); }

@media (max-width: 900px) { .mac__screen { aspect-ratio: 16 / 11; } }
@media (max-width: 640px) {
  .mac__screen { aspect-ratio: 16 / 12.6; }
  .popover { width: min(80%, 22rem); }
  .popover__hint, .popover__foot { display: none; }
}
@media (max-width: 420px) {
  .mac__screen { aspect-ratio: 16 / 14; }
  .popover { width: 84%; min-width: 0; }
}

/* ══════════════════════  THE SIGNAL PATH  ══════════════════════════
   A sticky full-viewport stage; the spacer below it supplies the scroll
   distance. Progress drives both the canvas and which act is showing. */
.signal { position: relative; }
.signal__sticky {
  position: sticky; top: 0;
  height: 100svh; min-height: 34rem;
  overflow: hidden;
  display: grid;
}
.signal__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.signal__frame {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gut);
  display: grid; align-content: center;
}
.signal__spacer { height: 520vh; }

.signal__index {
  position: absolute; top: clamp(4.5rem, 9vh, 6.5rem); left: var(--gut);
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  color: var(--text-4);
  font-variant-numeric: tabular-nums;
}
.signal__count i { font-style: normal; color: var(--signal); }
.signal__rail { display: block; width: clamp(3rem, 8vw, 6rem); height: 1px; background: var(--hairline); }
.signal__rail i {
  display: block; height: 100%; width: 0%;
  background: var(--signal);
  box-shadow: 0 0 8px rgba(var(--signal-rgb),.7);
}

.signal__acts { position: relative; min-height: 22rem; }
.act {
  position: absolute; inset: 0 auto auto 0;
  width: min(100%, 32rem);
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  pointer-events: none;
}
.act.is-on { opacity: 1; transform: none; pointer-events: auto; }
.act__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 820;
  font-stretch: 110%;
  margin-bottom: 1.1rem;
}
.act__body { font-size: 1.02rem; line-height: 1.55; color: var(--text-2); max-width: 36ch; }
.act__widget { margin-top: 1.75rem; }

.act__trigger {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  font-size: .93rem; font-weight: 560;
  color: var(--text);
  background: var(--mat-thin);
  border: 1px solid var(--hairline);
  transition: background-color .2s var(--ease-out), border-color .2s var(--ease-out), transform .11s var(--ease-out);
}
.act__trigger:hover { background: var(--mat-reg); border-color: var(--edge-light); }
.act__trigger:active { transform: scale(.97); }
.act__triggerDot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-4);
  transition: background-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.act__trigger[aria-pressed="true"] { border-color: rgba(var(--signal-rgb),.4); background: rgba(var(--signal-rgb),.1); }
.act__trigger[aria-pressed="true"] .act__triggerDot {
  background: var(--signal); box-shadow: 0 0 0 3px rgba(var(--signal-rgb),.22);
}

/* Below this the copy cannot sit beside the ribbons, so it drops underneath
   them instead — the JS breakpoint matches, and moves the ribbon field up. */
@media (max-width: 1080px) {
  .signal__frame { align-content: end; padding-bottom: clamp(2rem, 7vh, 4rem); }
  .signal__acts { min-height: 0; }     /* hug the copy so it really sits at the bottom */
  .act { position: relative; width: min(100%, 36rem); }
  .act:not(.is-on) { position: absolute; }
  .act__widget { margin-top: 1.25rem; }
}

/* vertical faders — act 03 */
.vfaders { display: flex; gap: clamp(1rem, 2.4vw, 1.9rem); align-items: flex-end; }
.vfader { display: grid; grid-template-columns: auto auto; gap: .45rem; justify-content: center; }
.vfader__meterTrack {
  grid-row: 1; width: 4px; height: 8.5rem;
  border-radius: 999px; background: rgba(255,255,255,.07);
  overflow: hidden; position: relative; align-self: end;
}
.vfader__meter {
  position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(0deg, var(--green) 0%, var(--green) 58%, var(--amber) 80%, var(--red) 97%);
  clip-path: inset(100% 0 0 0);
}
.vfader__track {
  grid-row: 1; position: relative;
  width: 11px; height: 8.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
  touch-action: none; cursor: grab;
}
.vfader__track:active { cursor: grabbing; }
.vfader__fill {
  position: absolute; inset: auto 0 0 0; height: 86%; border-radius: 999px;
  background: linear-gradient(0deg, #6E665C, #A79D8E 74%, #E8DFD1);
}
.vfader__unity { position: absolute; left: -5px; right: -5px; bottom: 80%; height: 1px; background: rgba(255,217,168,.5); }
.vfader__knob {
  position: absolute; left: 50%; bottom: 86%;
  width: 24px; height: 12px; border-radius: 4px;
  transform: translate(-50%, 50%);
  background: linear-gradient(180deg, #FFFDF9, #DCD1BE);
  box-shadow: 0 1px 4px rgba(0,0,0,.6), 0 0 0 .5px rgba(0,0,0,.3), 0 1px 0 rgba(255,255,255,.7) inset;
  transition: box-shadow .2s var(--ease-out);
}
.vfader__knob:hover, .vfader.is-drag .vfader__knob {
  box-shadow: 0 1px 4px rgba(0,0,0,.6), 0 0 0 .5px rgba(0,0,0,.3),
              0 1px 0 rgba(255,255,255,.7) inset, 0 0 0 6px rgba(var(--hot-rgb),.2);
}
.vfader__name {
  grid-column: 1 / -1; margin-top: .6rem;
  font-size: .72rem; color: var(--text-3); text-align: center;
}
.vfader__db {
  grid-column: 1 / -1;
  font-size: .7rem; color: var(--brand-300);
  font-variant-numeric: tabular-nums; text-align: center;
}

/* routing matrix — act 05 */
.matrix { display: grid; gap: .35rem; font-size: .8rem; }
.matrix__row { display: grid; grid-template-columns: minmax(4.5rem, 1fr) repeat(3, minmax(3rem, .8fr)); gap: .35rem; align-items: center; }
.matrix__corner, .matrix__head {
  font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-4); text-align: center; padding-bottom: .15rem;
}
.matrix__corner { text-align: left; }
.matrix__app { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--text-2); white-space: nowrap; }
.matrix__dot { width: .5rem; height: .5rem; border-radius: 50%; background: var(--tint); flex: none; }
.matrix__cell {
  height: 1.85rem; border-radius: var(--r-sm);
  background: var(--mat-thin); border: 1px solid var(--hairline-2);
  display: grid; place-items: center;
  transition: background-color .2s var(--ease-out), border-color .2s var(--ease-out), transform .11s var(--ease-out);
}
.matrix__cell:hover { background: var(--mat-reg); border-color: var(--edge-light); }
.matrix__cell:active { transform: scale(.94); }
.matrix__cell::after {
  content: ""; width: .45rem; height: .45rem; border-radius: 50%;
  background: var(--text-4);
  transition: transform .28s var(--ease-out), background-color .28s var(--ease-out), box-shadow .28s var(--ease-out);
}
.matrix__cell.is-on { background: rgba(var(--signal-rgb),.16); border-color: rgba(var(--signal-rgb),.42); }
.matrix__cell.is-on::after { background: var(--signal); transform: scale(1.3); box-shadow: 0 0 0 4px rgba(var(--signal-rgb),.18); }

/* ═════════════════════════  SHAPE / EQ  ════════════════════════════ */
.shape__grid {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
/* The display face needs room; below this the heading takes the full width
   and the equalizer sits underneath rather than being squeezed beside it. */
@media (max-width: 1080px) { .shape__grid { grid-template-columns: 1fr; } }
.shape__lead .kicker { margin-bottom: 1rem; }
.shape__lead .h2 { margin-bottom: 1.3rem; }
.shape__note { margin-top: 1rem; }
.demoHead {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: .9rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--hairline-2);
}
.demoHead__title {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3);
}
.demoHead__value { font-size: .86rem; font-variant-numeric: tabular-nums; color: var(--brand-300); }
.eq {
  position: relative; border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(var(--hot-rgb),.07), rgba(0,0,0,.22));
  border: 1px solid var(--hairline-2); overflow: hidden; touch-action: none;
}
.eq__canvas { width: 100%; height: auto; aspect-ratio: 1120 / 440; }
.eq__bands { position: absolute; inset: 0; }
.eq__handle {
  position: absolute; width: 22px; height: 22px; margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #E3D8C6);
  box-shadow: 0 2px 6px rgba(0,0,0,.55), 0 0 0 .5px rgba(0,0,0,.3);
  cursor: grab; touch-action: none;
  transition: box-shadow .2s var(--ease-out);
}
.eq__handle:hover, .eq__handle.is-drag {
  box-shadow: 0 2px 6px rgba(0,0,0,.55), 0 0 0 .5px rgba(0,0,0,.3), 0 0 0 7px rgba(var(--hot-rgb),.2);
}
.eq__handle.is-drag { cursor: grabbing; }
.eq__presets { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.chip {
  padding: .45rem .9rem; border-radius: 999px;
  font-size: .84rem; font-weight: 540; color: var(--text-3);
  background: var(--mat-thin); border: 1px solid var(--hairline-2);
  transition: color .2s var(--ease-out), background-color .2s var(--ease-out),
              border-color .2s var(--ease-out), transform .11s var(--ease-out);
}
.chip:hover { color: var(--text); background: var(--mat-reg); }
.chip:active { transform: scale(.96); }
.chip.is-on {
  color: #fff; border-color: transparent;
  background: linear-gradient(180deg, var(--brand-500), var(--brand-700));
  box-shadow: 0 6px 18px -8px rgba(var(--hot-rgb),.9);
}

/* ══════════════════════  ZERO SETUP (USP)  ═════════════════════════ */
.zero { border-top: 1px solid var(--hairline-2); }
.zero__statement {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.4vw, 5.5rem);
  line-height: .93;
  letter-spacing: -.045em;
  font-weight: 820;
  font-stretch: 112%;
  margin-bottom: clamp(3rem, 7vw, 5rem);
  text-wrap: balance;
}
.zero__statement s { text-decoration: line-through; text-decoration-thickness: .06em; color: var(--text-4); }
.zero__cols {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
}
@media (max-width: 820px) { .zero__cols { grid-template-columns: 1fr; } }
.zero__label {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-4); margin-bottom: 1.5rem;
}
.zero__label--us { color: var(--signal); }
.steps { display: grid; gap: .9rem; }
.steps li {
  display: flex; align-items: baseline; gap: .8rem;
  font-size: 1rem; color: var(--text-4);
  text-decoration: line-through;
  text-decoration-color: rgba(255,69,58,.4);
  text-decoration-thickness: 1.5px;
}
.steps__n {
  flex: none; width: 1.5rem; text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: .78rem; color: var(--text-4);
  text-decoration: none;
}
.zero__one {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1; letter-spacing: -.035em; font-weight: 800;
}
.zero__oneSub {
  font-size: 1.05rem; color: var(--text-2);
  margin-top: .6rem; padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--hairline-2);
}
.checklist { display: grid; gap: .7rem; margin-top: 1.8rem; }
.checklist li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--text-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: .95rem; height: .95rem; border-radius: 50%;
  background: rgba(var(--signal-rgb),.14);
  box-shadow: 0 0 0 1px rgba(var(--signal-rgb),.3) inset;
}
.checklist li::after {
  content: ""; position: absolute; left: .28rem; top: .68em;
  width: .38rem; height: .2rem;
  border-left: 1.5px solid var(--signal); border-bottom: 1.5px solid var(--signal);
  transform: rotate(-45deg);
}

/* ═══════════════════════  FULL-BLEED BEAT  ═════════════════════════ */
.bleed { position: relative; min-height: min(70vh, 34rem); display: grid; overflow: hidden; }
.bleed img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
}
.bleed::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg), rgba(10,9,8,.32) 30%, rgba(10,9,8,.48) 70%, var(--bg)),
    radial-gradient(66% 64% at 42% 52%, rgba(255,107,53,.2), transparent 70%);
}
.bleed__inner {
  position: relative; z-index: 1;
  place-self: center;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gut);
}
.bleed__line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 3rem);
  line-height: 1.12; letter-spacing: -.032em; font-weight: 700;
  max-width: 22ch;
  text-wrap: balance;
}

/* ══════════════════════════  DETAILS  ══════════════════════════════ */
.details { border-top: 1px solid var(--hairline-2); }
.details__kicker { margin-bottom: 2.5rem; }
.details__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.details__list > div {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: .35rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--hairline-2);
}
.details__list dt {
  font-family: var(--font-display);
  font-size: .98rem; font-weight: 700; letter-spacing: -.014em;
}
.details__list dd { font-size: .92rem; line-height: 1.55; color: var(--text-3); }

/* ══════════════════════════  TRUST  ════════════════════════════════ */
.trust { border-top: 1px solid var(--hairline-2); }
.trust__head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
/* Explicit columns: auto-fit lands on 3 at common widths, and four items in
   three columns leaves an orphan. */
.trust__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}
@media (min-width: 1140px) { .trust__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 520px) { .trust__grid { grid-template-columns: 1fr; } }
.trust__grid li { display: grid; gap: .5rem; align-content: start; }
.trust__grid strong {
  font-family: var(--font-display);
  font-size: .98rem; font-weight: 700; letter-spacing: -.014em;
}
.trust__grid span { font-size: .9rem; line-height: 1.55; color: var(--text-3); }
.trust__foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-2);
  font-size: .9rem; color: var(--text-3); max-width: 52ch;
}

/* ═════════════════════════  PRICING  ═══════════════════════════════ */
.pricing { border-top: 1px solid var(--hairline-2); }
.pricing__head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
/* One offer stated plainly, with the terms next to it — closer to how a real
   licence is sold than two cards competing over a "recommended" ribbon. */
.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .pricing__grid { grid-template-columns: 1fr; } }

.offer {
  padding: clamp(1.75rem, 3.2vw, 2.5rem);
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, rgba(255,159,28,.09), rgba(255,159,28,.02)),
    var(--mat-thin);
  border: 1px solid rgba(var(--hot-rgb), .26);
  box-shadow: 0 40px 100px -60px rgba(var(--hot-rgb), .8);
}
.offer__label {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-400);
  margin-bottom: 1.1rem;
}
.offer__price { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1rem; }
.offer__amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 820; font-stretch: 110%;
  line-height: .9; letter-spacing: -.05em;
}
.offer__per { font-size: .8rem; line-height: 1.35; color: var(--text-3); }
.offer__note {
  font-size: .95rem; line-height: 1.55; color: var(--text-2);
  padding-bottom: 1.6rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--hairline-2);
}
.offer__actions { display: grid; gap: .6rem; }
.offer__trust {
  display: flex; flex-wrap: wrap; gap: .45rem 1.25rem;
  margin-top: 1.4rem;
}
.offer__trust li {
  position: relative; padding-left: 1.1rem;
  font-size: .82rem; color: var(--text-3);
}
.offer__trust li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: .38rem; height: .2rem;
  border-left: 1.5px solid var(--signal); border-bottom: 1.5px solid var(--signal);
  transform: rotate(-45deg);
}

.spec { display: grid; }
.spec > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding-block: .85rem;
  border-bottom: 1px solid var(--hairline-2);
}
.spec > div:first-child { padding-top: 0; }
.spec dt { font-size: .85rem; color: var(--text-3); white-space: nowrap; }
.spec dd { font-size: .88rem; color: var(--text); text-align: right; }

.faq { margin-top: 1.75rem; display: grid; }
.faq details { border-bottom: 1px solid var(--hairline-2); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-block: .95rem;
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 640; letter-spacing: -.012em;
  transition: color .2s var(--ease-out);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-size: 1.1rem; font-weight: 500; line-height: 1;
  color: var(--text-4);
  transition: transform .3s var(--ease-out), color .2s var(--ease-out);
}
.faq summary:hover { color: var(--brand-400); }
.faq summary:hover::after { color: var(--brand-400); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p {
  padding-bottom: 1.1rem;
  font-size: .89rem; line-height: 1.6; color: var(--text-3);
  max-width: 46ch;
}

/* ═════════════════════════════  CTA  ═══════════════════════════════ */
.cta { position: relative; padding-block: clamp(5rem, 10vw, 8rem); text-align: center; overflow: hidden; }
.cta__glow {
  position: absolute; bottom: -55%; left: 50%;
  width: min(130vw, 1200px); aspect-ratio: 1.4;
  transform: translateX(-50%);
  background:
    radial-gradient(46% 50% at 44% 50%, rgba(255,159,28,.26), transparent 70%),
    radial-gradient(40% 44% at 64% 46%, rgba(217,58,36,.2), transparent 72%);
  filter: blur(28px); pointer-events: none;
}
.cta__inner { position: relative; display: grid; justify-items: center; }
.cta__icon {
  width: clamp(64px, 10vw, 92px); border-radius: 23%; margin-bottom: 1.6rem;
  box-shadow: 0 24px 60px -20px rgba(var(--hot-rgb),.9), 0 8px 20px rgba(0,0,0,.6);
}
.cta .h2 { margin-bottom: 1.8rem; }

/* ═══════════════════════════  FOOTER  ══════════════════════════════ */
.footer {
  border-top: 1px solid var(--hairline-2);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer__inner {
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__tag { margin-top: 1rem; font-size: .9rem; line-height: 1.5; color: var(--text-3); max-width: 30ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.footer__col { display: grid; align-content: start; gap: .6rem; }
.footer__col h5 {
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-4); margin-bottom: .25rem;
}
.footer__col a { font-size: .9rem; color: var(--text-3); justify-self: start; transition: color .2s var(--ease-out); }
.footer__col a:hover { color: var(--text); }
.footer__base {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding-block: 1.5rem; border-top: 1px solid var(--hairline-2);
  font-size: .79rem; color: var(--text-4);
}
.footer__note { max-width: 46ch; }

/* ══════════════════════  ACCESSIBILITY PREFERENCES  ════════════════
   Reduced motion is a gentler equivalent, not the absence of feedback.
   The three signals are independent and handled independently. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { transform: none; transition: opacity .3s linear !important; transition-delay: 0s !important; }
  .btn:active, .chip:active, .act__trigger:active { transform: none; }
  .pill__dot { animation: none; opacity: .85; }

  /* The scrollytelling stage becomes an ordinary stack — no pinning, no
     scrubbed canvas, every act simply present and readable. */
  .signal__sticky { position: static; height: auto; min-height: 0; padding-block: var(--sec-y); }
  .signal__spacer { display: none; }
  .signal__canvas { display: none; }
  .signal__index { display: none; }
  .signal__acts { min-height: 0; display: grid; gap: clamp(3rem, 8vw, 5rem); }
  .act { position: static; opacity: 1; transform: none; pointer-events: auto; width: min(100%, 40rem); }
}

@media (prefers-reduced-transparency: reduce) {
  .nav::after, .menubar, .popover, .popover__tail, .dock, .btn--ghost, .eyebrow, .act__trigger {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .nav::after { background: var(--bg); opacity: 1; }
  .menubar { background: #14121E; }
  .popover, .popover__tail { background-color: #171522; }
  .btn--ghost, .eyebrow, .act__trigger { background: var(--surface-2); }
}

@media (prefers-contrast: more) {
  :root {
    --text-2: #D6D3E4; --text-3: #B2AEC4; --text-4: #8D89A0;
    --hairline: rgba(255,255,255,.3); --hairline-2: rgba(255,255,255,.22);
  }
  .offer, .offer__detail, .matrix__cell, .act__trigger { background: #1A1613; border-color: rgba(255,242,228,.3); }
  .display em, .h2 em, .act__title em { color: #FFE0B8; }
}

@media print {
  .nav, .stage, .cta__glow, .hero__aurora, .signal__canvas { display: none !important; }
  body { background: #fff; color: #000; }
}
