/* =====================================================================
   Velox Cybernetics / MAMS  ·  Main stylesheet
   Mobile first. Sections compose top to bottom as one scroll.
   ===================================================================== */

/* ----- Layout primitives -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 0.6rem + 2.6vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  position: relative;
  padding-block: var(--space-2xl);
}
.section + .section { border-top: 1px solid var(--line-soft); }

.section__head {
  max-width: 34ch;
  margin-bottom: var(--space-xl);
}
.section__title { font-size: var(--step-3); }
.section__lead {
  margin-top: var(--space-sm);
  max-width: var(--measure);
  color: var(--ink-muted);
  font-size: var(--step-1);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* a thin pre-heading marker used ONCE per section, tied to content,
   not a uniform uppercase eyebrow */
.marker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--step--1);
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
}
.marker::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

.signal { color: var(--gold); }

/* ----- Reveal: content is visible by default. JS adds a transient
   entrance (Web Animations API) when an element scrolls into view.
   If JS or the observer never runs, nothing is ever hidden. -------- */
.reveal { will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce) { .reveal { will-change: auto; } }

/* =====================================================================
   1 · HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--graphite-900);
  overflow: hidden;
  isolation: isolate;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
/* vignette + floor gradient so the hook always sits on enough contrast */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 18%, transparent 40%, oklch(0.145 0.007 256 / 0.55) 100%),
    linear-gradient(to bottom, oklch(0.175 0.008 256 / 0.30) 0%, transparent 30%, oklch(0.145 0.007 256 / 0.85) 100%);
}
/* keep the canvas absolute (out of flow); only lift the content layers */
.hero > *:not(.hero__canvas) { position: relative; z-index: 2; }

/* top bar */
.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  /* block-only: keep the container's inline padding so nothing clips */
  padding-block: clamp(1.1rem, 0.7rem + 1.6vw, 1.9rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}
.brand__mark {
  width: 1.45rem; height: 1.45rem;
  flex: none;
}
.brand__name {
  font-size: var(--step-0);
  letter-spacing: 0.14em;
  color: var(--ink);
}
.brand__name b { font-weight: 400; }
.brand__sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  color: var(--ink-muted);
  margin-top: 2px;
}
.product-tag {
  text-align: right;
  font-size: var(--step--1);
  color: var(--ink-muted);
  line-height: 1.3;
}
.product-tag b {
  display: block;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: var(--step-0);
}

/* hook: centered in the hero, filling the vertical space */
.hero__center {
  align-self: center;
  text-align: center;
  padding-block: var(--space-lg);
}
.hook {
  font-size: var(--display);
  letter-spacing: -0.035em;
  line-height: 0.98;
  max-width: 18ch;
  margin-inline: auto;
}
.hook .quote { color: var(--ink-dim); }
.hook__sub {
  margin: clamp(1.1rem, 0.8rem + 1.2vw, 1.8rem) auto 0;
  max-width: 46ch;
  font-size: var(--step-1);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
}
.hook__sub b { color: var(--ink-soft); font-weight: 400; }

/* scroll cue */
.scrollcue {
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0 clamp(1.4rem, 0.8rem + 2vw, 2.4rem);
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink-muted);
  z-index: var(--z-scrollcue);
}
.scrollcue__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scrollcue__arrow {
  width: 26px; height: 26px;
  color: var(--gold);
  animation: cue-bob 2.4s var(--ease-out-quint) infinite;
}
.scrollcue:hover .scrollcue__arrow { color: var(--gold-bright); }
.scrollcue:hover { color: var(--ink-soft); }
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(7px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scrollcue__arrow { animation: none; }
}

/* =====================================================================
   2 · RESULTS / MONEY
   ===================================================================== */
.results__grid {
  display: grid;
  gap: clamp(1rem, 0.5rem + 2vw, 1.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 52rem) {
  .results__grid {
    grid-template-columns: 1.15fr 1fr;
    grid-auto-rows: 1fr;
  }
  .panel--wide { grid-column: 1 / -1; }
}

.panel {
  background: linear-gradient(180deg, var(--graphite-850), var(--graphite-900));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1rem + 2vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.panel__kicker {
  font-size: var(--step--1);
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.panel__headline {
  font-size: var(--step-2);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.panel__note { color: var(--ink-muted); font-size: var(--step-0); }
.panel__caption {
  margin-top: -0.85rem;          /* hug the headline above */
  color: var(--ink-soft);
  font-size: var(--step--1);
  line-height: 1.5;
  max-width: 52ch;
}
.panel__caption b { color: var(--gold); font-weight: 400; }

/* close-rate arc */
.arc {
  display: grid;
  place-items: center;
  position: relative;
  width: min(15rem, 60vw);
  margin-inline: auto;
  aspect-ratio: 1;
}
/* overflow visible so the gold glow stays circular and is not clipped
   to the square SVG viewport (the boxy halo) */
.arc svg { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.arc__track { fill: none; stroke: var(--graphite-750); stroke-width: 10; }
.arc__value {
  fill: none;
  stroke: var(--gold);
  stroke-width: 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}
.arc__center {
  position: absolute;
  text-align: center;
}
.arc__num {
  font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.4rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  line-height: 1;
}
.arc__num .pct { font-size: 0.5em; color: var(--ink-muted); margin-left: 2px; }
.arc__cap { font-size: var(--step--1); color: var(--ink-muted); margin-top: 0.35rem; }

/* response speed: two gold bars, to scale, each ticked at its value */
.bars { display: flex; flex-direction: column; gap: 2.2rem; padding-bottom: 0.4rem; }
.bar { display: grid; gap: 0.55rem; }
.bar__cap { font-size: var(--step--1); color: var(--ink-muted); }
.bar__track {
  position: relative;
  height: 12px;
  border-radius: var(--r-pill);
  background: var(--graphite-800);
}
.bar__fill {
  height: 100%;
  border-radius: var(--r-pill);
  width: var(--target, 0%);     /* width set once: stable layout, no thrash */
  transform-origin: left;
}
.bar__fill--gold {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  box-shadow: 0 0 16px var(--gold-glow);
}
/* measurement tick + value at each bar's endpoint */
.bar__mark { position: absolute; top: 0; bottom: 0; left: var(--at, 100%); }
.bar__mark::before {
  content: "";
  position: absolute;
  top: -4px; bottom: -4px; left: -1px;
  width: 2px; border-radius: 2px;
  background: var(--gold-bright);
}
.bar__mark b {
  position: absolute;
  top: calc(100% + 8px);
  font-size: var(--step--1);
  color: var(--ink);
  white-space: nowrap;
  font-weight: 400;
  font-feature-settings: "tnum" 1;
}
.bar__mark--start b { left: 0; transform: translateX(-1px); }
.bar__mark--end b { right: 0; }
/* bars are full by default; JS animates the reveal with a composited
   scaleX via the Web Animations API (no width animation, no hiding). */

/* recovered jobs dot matrix */
.recovered { display: flex; flex-direction: column; gap: var(--space-md); }
.dotgrid {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 6px;
  max-width: 26rem;
}
.dotgrid i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--graphite-750);
  transition: background var(--dur-mid) var(--ease-out-quint),
              box-shadow var(--dur-mid) var(--ease-out-quint),
              transform var(--dur-mid) var(--ease-out-quint);
}
.dotgrid i.is-recovered {
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}
.recovered__legend {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-size: var(--step--1); color: var(--ink-muted);
}
.recovered__legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.recovered__legend i { width: 0.7rem; height: 0.7rem; border-radius: 50%; }
.swatch-base { background: var(--graphite-750); }
.swatch-gold { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }

/* =====================================================================
   3 · DATA SHOWCASE
   ===================================================================== */
.figures {
  display: grid;
  gap: clamp(1.4rem, 0.8rem + 2.4vw, 2.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .figures { grid-template-columns: repeat(2, 1fr); }
  .fig { align-items: flex-start; text-align: left; }
  .fig--fees { justify-content: flex-start; }
}
@media (min-width: 64rem) {
  .figures { grid-template-columns: repeat(12, 1fr); align-items: end; }
  .fig--hero { grid-column: span 6; grid-row: span 2; }
  .fig--a { grid-column: span 6; }
  .fig--b { grid-column: span 3; }
  .fig--c { grid-column: span 3; }
  .fig--d { grid-column: span 4; }
  .fig--e { grid-column: span 5; }
  .fig--f { grid-column: span 3; }
}
/* mobile-first: figures centered + stacked; reset to left at >=40rem above */
.fig { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; text-align: center; }
.fig--fees {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.fig--fees .fig__num { flex: none; font-size: clamp(2.6rem, 1.8rem + 3vw, 4.4rem); line-height: 1; }
.fig--fees .fig__label { text-align: center; max-width: 17ch; }
.fig__num {
  font-size: var(--numeral);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
}
.fig__num .unit { color: var(--ink-muted); font-size: 0.42em; letter-spacing: -0.01em; }
.fig__num.is-gold { color: var(--gold); text-shadow: 0 0 26px var(--gold-glow); }
.fig__label { color: var(--ink-muted); font-size: var(--step-0); max-width: 24ch; }
.fig--hero .fig__num { font-size: clamp(4rem, 2.4rem + 8vw, 8.5rem); }
.fig--hero .fig__label { font-size: var(--step-1); max-width: 18ch; color: var(--ink-soft); }
.fig--b .fig__num, .fig--c .fig__num { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.2rem); }

/* qualitative line of proof points */
.proof {
  margin-top: var(--space-xl);
  display: grid;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .proof { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .proof { grid-template-columns: repeat(4, 1fr); } }
.proof__item {
  background: var(--graphite-900);
  padding: clamp(1.1rem, 0.8rem + 1.2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.proof__icon { width: 22px; height: 22px; color: var(--gold); }
.proof__item h3 { font-size: var(--step-0); letter-spacing: -0.01em; color: var(--ink); }
.proof__item p { font-size: var(--step--1); color: var(--ink-muted); line-height: 1.45; }

/* =====================================================================
   4 · HOW IT WORKS  (live chat)
   ===================================================================== */
.how {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 60rem) {
  .how { grid-template-columns: 0.85fr 1fr; }
  .how__rail { position: sticky; top: 12vh; }
}

/* RAGE flow rail */
.flow { display: flex; flex-direction: column; gap: 0; }
.flow__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px; top: 2.4rem; bottom: -0.4rem;
  width: 1px;
  background: var(--line);
}
.flow__dot {
  width: 27px; height: 27px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  display: grid; place-items: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  background: var(--graphite-900);
  font-feature-settings: "tnum" 1;
  transition: all var(--dur-mid) var(--ease-out-quint);
  z-index: 1;
}
.flow__step.is-active .flow__dot {
  border-color: var(--gold);
  color: var(--gold-ink);
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}
.flow__body h3 { font-size: var(--step-0); color: var(--ink); letter-spacing: -0.01em; }
.flow__body p { font-size: var(--step--1); color: var(--ink-muted); line-height: 1.45; }

/* phone */
.phone {
  --bezel: clamp(0.5rem, 0.3rem + 0.8vw, 0.7rem);
  width: min(23rem, 100%);
  margin-inline: auto;
  background: var(--graphite-1000);
  border: 1px solid var(--line-bright);
  border-radius: clamp(28px, 24px + 1vw, 40px);
  padding: var(--bezel);
  box-shadow:
    0 40px 80px -30px oklch(0 0 0 / 0.7),
    inset 0 1px 0 oklch(1 0 0 / 0.05);
}
.phone__screen {
  background: var(--graphite-950);
  border-radius: clamp(22px, 18px + 1vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: clamp(30rem, 62vh, 38rem);
}
.phone__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  background: var(--graphite-900);
}
.phone__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--graphite-750);
  display: grid; place-items: center;
  color: var(--ink-muted);
  flex: none;
}
.phone__who { line-height: 1.2; flex: 1; min-width: 0; }
.phone__who b { font-size: var(--step--1); color: var(--ink); font-weight: 400; }
.phone__who span { display: block; font-size: 0.7rem; color: var(--ink-muted); }
.phone__channel {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; color: var(--ink-muted);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 0.2rem 0.55rem;
}
.phone__channel i { width: 12px; height: 12px; }

.thread {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  padding: 1rem 0.9rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: flex-end;
}
.thread::-webkit-scrollbar { display: none; }
.msg {
  max-width: 78%;
  padding: 0.6rem 0.85rem;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.msg--in {
  align-self: flex-start;
  background: var(--graphite-800);
  color: var(--ink-soft);
  border-bottom-left-radius: 5px;
}
.msg--out {
  align-self: flex-end;
  background: linear-gradient(180deg, var(--graphite-700), var(--graphite-750));
  color: var(--ink);
  border-bottom-right-radius: 5px;
}
.msg--system {
  align-self: center;
  max-width: 92%;
  background: transparent;
  border: 1px dashed var(--line-bright);
  color: var(--ink-muted);
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  padding: 0.3rem 0.8rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.msg--booked {
  align-self: center;
  max-width: 92%;
  background: var(--gold-wash);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--r-md);
  padding: 0.6rem 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem;
  box-shadow: 0 0 22px var(--gold-glow);
}
.msg--booked svg { width: 18px; height: 18px; flex: none; }
.msg__meta { font-size: 0.62rem; color: var(--ink-dim); margin-top: 0.2rem; }

/* typing indicator */
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-muted);
  animation: typing 1.2s var(--ease-out-quint) infinite;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) { .typing i { animation: none; opacity: 0.7; } }

/* chat playback: messages are visible by default. play() hides them
   (msg--enter) then reveals in sequence (msg--show). Not gated on any
   load-time class, so the static transcript always reads. */
.msg.msg--enter { opacity: 0; transform: translateY(10px) scale(0.98); }
.msg.msg--enter.msg--show {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-mid) var(--ease-out-quint),
              transform var(--dur-mid) var(--ease-out-quint);
}

.phone__replay {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0.9rem auto 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--graphite-900);
  color: var(--ink-muted);
  font-size: var(--step--1);
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.phone__replay:hover { border-color: var(--gold); color: var(--ink); }
.phone__replay svg { width: 15px; height: 15px; }

.channels {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: var(--space-md);
  justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--step--1); color: var(--ink-muted);
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 0.4rem 0.85rem;
}
.chip svg { width: 15px; height: 15px; }

/* =====================================================================
   5 · BOOKING  (the gold void)
   ===================================================================== */
.book {
  background: var(--graphite-1000);
  border-top: 1px solid var(--line);
  padding-block: var(--space-3xl);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.book::before {
  /* faint gold aura behind the CTA */
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%; top: 58%;
  width: min(40rem, 90vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 62%);
  opacity: 0.5;
  pointer-events: none;
}
.book > * { position: relative; z-index: 1; }
.book__fees {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--space-xl);
  text-align: left;
}
.book__fees-num {
  flex: none;
  font-size: clamp(2.4rem, 1.7rem + 2.8vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 26px var(--gold-glow);
}
.book__fees-text {
  font-size: var(--step-0);
  line-height: 1.35;
  color: var(--ink-muted);
}
.book__title {
  font-size: var(--step-4);
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-inline: auto;
  line-height: 1;
}
.book__sub {
  margin: var(--space-md) auto var(--space-xl);
  max-width: 42ch;
  color: var(--ink-muted);
  font-size: var(--step-1);
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.4rem;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 1px solid var(--gold-bright);
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow:
    0 0 0 1px var(--gold-deep),
    0 0 40px var(--gold-glow),
    0 0 90px var(--gold-glow);
  transition: transform var(--dur-mid) var(--ease-out-expo),
              box-shadow var(--dur-mid) var(--ease-out-expo);
  animation: cta-pulse 3.6s var(--ease-out-quint) infinite;
}
.cta svg { width: 20px; height: 20px; }
.cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px var(--gold-bright),
    0 0 56px var(--gold-glow),
    0 0 120px var(--gold-glow);
}
.cta:active { transform: translateY(0); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--gold-deep), 0 0 34px var(--gold-glow), 0 0 70px var(--gold-glow); }
  50%      { box-shadow: 0 0 0 1px var(--gold-deep), 0 0 46px var(--gold-glow), 0 0 110px var(--gold-glow); }
}
@media (prefers-reduced-motion: reduce) { .cta { animation: none; } }

.book__contact {
  margin-top: var(--space-xl);
  font-size: var(--step-0);
  color: var(--ink-muted);
}
.book__contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-bright);
  padding-bottom: 1px;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.book__contact a:hover { border-color: var(--gold); color: var(--gold); }

.colophon {
  padding: var(--space-lg) 0 var(--space-xl);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  background: var(--graphite-1000);
}

/* ----- small screens: tighten hero topbar ------------------------- */
@media (max-width: 30rem) {
  .product-tag { font-size: 0.66rem; }
  .product-tag b { font-size: var(--step--1); }
}
