/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base);
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--s-4);
}

.nav {
  display: none;
  align-items: center;
  gap: var(--s-8);
}
@media (min-width: 1024px) {
  .nav { display: flex; }
}
.nav__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t-base);
  position: relative;
}
.nav__link:hover { color: var(--white); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}
.nav__link:hover::after { transform: scaleX(1); }

.header .btn--sm { display: none; }
@media (min-width: 1024px) {
  .header .btn--sm { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--s-6) var(--container-px);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  z-index: 99;
}
.mobile-nav[hidden] { display: none; }
@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav__link {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + var(--s-4));
  padding-bottom: var(--s-20);
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}
@media (min-width: 720px) {
  .hero { padding-top: calc(var(--header-h) + var(--s-20)); }
}

.hero__shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, transparent 0%, var(--black) 95%),
    linear-gradient(180deg, transparent 65%, var(--black) 100%);
}

/* Background speedometer — sleek */
.hero__gauge {
  position: absolute;
  z-index: 2;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(95vh, 100vw);
  max-width: 1100px;
  aspect-ratio: 1;
  pointer-events: none;
  /* Mute the track + decorative parts per-element so the needle keeps full opacity */
}
.hero__gauge-ticks { opacity: 0.6; }
.hero__gauge > path { opacity: 0.78; }
.hero__gauge-fill { opacity: 0.88 !important; }
.hero__gauge-fill {
  animation: gauge-fill 5s ease-out 0.3s both;
  filter: drop-shadow(0 0 18px rgba(225, 6, 0, 0.42));
}
@keyframes gauge-fill {
  from { stroke-dashoffset: 1131; }
  to { stroke-dashoffset: 226; }
}
.hero__needle {
  transform-origin: 500px 540px;
  transform: rotate(54deg);
  animation: needle-sweep 8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s infinite alternate;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 8px rgba(225, 6, 0, 0.5));
}
@keyframes needle-sweep {
  0% { transform: rotate(48deg); }
  40% { transform: rotate(56deg); }
  60% { transform: rotate(52deg); }
  100% { transform: rotate(58deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__gauge-fill,
  .hero__needle { animation: none; }
  .hero__needle { transform: rotate(54deg); }
}

/* Score readout — minimal */
.hero__readout {
  display: inline-flex;
  align-items: baseline;
  gap: 0.625rem;
  margin: 0;
}
.hero__readout-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__readout-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 18;
  font-size: 1.125rem;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Athlete figures — bookend the hero, female on left, male on right.
   Each figure absolutely positioned to its edge with entrance + float animation. */
.hero__figure {
  position: absolute;
  top: 28%;
  z-index: 4;
  width: clamp(170px, 20vw, 330px);
  pointer-events: none;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.75));
  opacity: 0;
  will-change: transform, opacity;
  animation:
    hero-figure-rise 1.3s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards,
    hero-figure-float 7.5s ease-in-out 1.8s infinite;
}
.hero__figure--left {
  left: clamp(-1.5rem, -1vw, 1.5rem);
  --rise-x: -28px;
}
.hero__figure--right {
  right: clamp(-1.5rem, -1vw, 1.5rem);
  --rise-x: 28px;
}
.hero__figure picture,
.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
}
.hero__figure-glow {
  position: absolute;
  inset: 18% -20% -8% -20%;
  z-index: -1;
  filter: blur(40px);
}
/* Glow position mirrors the figure's rim-lit side */
.hero__figure--left .hero__figure-glow {
  background:
    radial-gradient(ellipse 55% 45% at 70% 50%, rgba(225, 6, 0, 0.32) 0%, transparent 65%);
}
.hero__figure--right .hero__figure-glow {
  background:
    radial-gradient(ellipse 55% 45% at 30% 50%, rgba(225, 6, 0, 0.32) 0%, transparent 65%);
}

/* Entrance: fade + slide in from outer edge */
@keyframes hero-figure-rise {
  0%   { opacity: 0; transform: translate(var(--rise-x, 0), 32px); }
  100% { opacity: 1; transform: translate(0, 0); }
}
/* Loop: subtle vertical float so the figures feel alive */
@keyframes hero-figure-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(0, -6px); }
}

@media (max-width: 720px) {
  .hero__figure {
    width: 30vw;
    top: 38%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  }
  .hero__figure--left  { left: -5vw; }
  .hero__figure--right { right: -5vw; }
}
@media (max-width: 480px) {
  /* Keep both bookends on phone, just smaller and offset outward
     so the headline + form keep the center stage */
  .hero__figure {
    width: 38vw;
    top: 44%;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.85));
  }
  .hero__figure--left  { left: -10vw; }
  .hero__figure--right { right: -10vw; }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__deco { animation: none !important; }
  .hero__figure {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero__container {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.hero__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.hero__topline .eyebrow { margin: 0; }

/* Stage with overlapping title + athlete (athlete sits over middle of headline) */
.hero__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 0;
}
@media (min-width: 720px) {
  .hero__stage {
    justify-content: center;
    min-height: 50vh;
  }
}

.hero__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 72;
  font-size: clamp(1.85rem, 7vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.hero__line {
  position: relative;
  display: block;
  white-space: normal;
  text-wrap: balance;
  max-width: 100%;
  overflow-wrap: break-word;
}
/* Desktop only — keep each line on one row, since there's room */
@media (min-width: 900px) {
  .hero__line { white-space: nowrap; text-wrap: auto; }
  .hero__title { font-size: clamp(3rem, 5.6vw, 4.75rem); }
}

/* Top line — solid white, sits BEHIND the athlete (athlete masks part of it) */
.hero__line--solid {
  z-index: 1;
  color: var(--white);
  mix-blend-mode: normal;
}

/* Bottom line — same solid treatment as top, slightly softened for hierarchy */
.hero__line--muted {
  z-index: 5;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 0.02em;
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: -0.025em; }
}

/* Brand mark — landscape lockup, so we size by WIDTH and let height auto.
   This keeps the logo prominent (primary anchor of the hero above the H1)
   without letting it exceed the mobile viewport or wash out on desktop. */
.hero__logo {
  position: relative;
  z-index: 5;
  display: block;
  margin: 0 auto var(--s-5);
  width: clamp(240px, 62vw, 380px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (min-width: 720px) {
  .hero__logo {
    width: clamp(300px, 40vw, 420px);
    margin-bottom: var(--s-4);
  }
}
@media (min-width: 1024px) {
  .hero__logo { width: 440px; }
}

/* Primary hero headline — red italic, this is the H1. */
.hero__movement {
  display: block;
  position: relative;
  z-index: 5;
  margin: 0 auto 0.3em;
  max-width: 20ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-variation-settings: 'wdth' 100, 'opsz' 72;
  font-size: clamp(1.9rem, 8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--red);
  filter: drop-shadow(0 4px 22px rgba(225, 6, 0, 0.45));
}
@media (min-width: 720px) {
  .hero__movement { font-size: clamp(2.75rem, 6vw, 4.5rem); }
}

/* Small white subline directly under the red headline. */
.hero__subline {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  max-width: 32rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  opacity: 0.92;
}
@media (min-width: 720px) {
  .hero__subline { font-size: 0.88rem; letter-spacing: 0.26em; }
}

/* Hero bottom */
.hero__bottom {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
  margin-top: var(--s-16);
}
@media (min-width: 720px) {
  .hero__bottom { margin-top: var(--s-20); }
}

.hero__lead {
  font-size: var(--fs-base);
  color: var(--text-muted);
  max-width: 34rem;
  line-height: var(--lh-relaxed);
  margin-top: calc(-1 * var(--s-2));
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

.hero__cta {
  min-width: min(100%, 20rem);
}

.hero__watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ===== Section head — editorial single column with red divider ===== */
.section-head--split {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-5);
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}
.section-head--split::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 1px;
  background: var(--red);
}
.section-head--split > div {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  width: 100%;
}
.section-head--split .section-title {
  text-align: left;
  margin: 0;
}
.section-head--split .section-sub {
  margin: 0;
  max-width: 38rem;
  text-align: left;
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* When the section head has a side block (e.g. stat) keep it inline on desktop */
.section-head--split:has(.social__stat) {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) {
  .section-head--split:has(.social__stat) {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

/* ===== Goals — minimal list rows ===== */
.goal-list {
  margin-top: var(--s-12);
  border-top: 1px solid var(--border);
}
.goal-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-5);
  width: 100%;
  padding: var(--s-6) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: padding var(--t-base), color var(--t-base);
}
.goal-row::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-base);
}
.goal-row:hover,
.goal-row:focus-visible {
  padding-left: var(--s-3);
  outline: none;
}
.goal-row:hover::before,
.goal-row:focus-visible::before { transform: scaleX(1); }
.goal-row:hover .goal-row__arrow,
.goal-row:focus-visible .goal-row__arrow {
  transform: translateX(8px);
  color: var(--red);
}
.goal-row.is-selected { color: var(--white); }
.goal-row.is-selected .goal-row__num { color: var(--red); }
.goal-row.is-selected::before { transform: scaleX(1); background: var(--red); }
.goal-row.is-selected .goal-row__title { color: var(--red); }

.goal-row__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}
.goal-row__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 48;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--white);
  transition: color var(--t-base);
}
.goal-row__desc {
  display: none;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 24rem;
  text-align: right;
}
@media (min-width: 720px) {
  .goal-row {
    grid-template-columns: auto 1fr auto auto;
  }
  .goal-row__desc { display: block; }
}
.goal-row__arrow {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: transform var(--t-base), color var(--t-base);
}
.goal-row__arrow svg { width: 100%; height: 100%; }

/* Rotate arrow when the associated panel is open (accordion indicator). */
.goal-item.is-open .goal-row__arrow {
  transform: rotate(90deg);
  color: var(--red);
}

/* ===== Goal panel — expandable educational content ===== */
.goal-item {
  border-bottom: 1px solid var(--border);
}
.goal-item .goal-row {
  border-bottom: 0;
}

.goal-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.goal-item.is-open .goal-panel {
  grid-template-rows: 1fr;
}
.goal-panel__inner {
  overflow: hidden;
  min-height: 0;
}
.goal-panel__content {
  padding: var(--s-2) 0 var(--s-10);
  max-width: 48rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 280ms ease 80ms, transform 320ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
}
.goal-item.is-open .goal-panel__content {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 720px) {
  .goal-panel__content {
    padding-left: calc(var(--s-8) + 1.5rem);
  }
}

.goal-panel__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 var(--s-2);
}
.goal-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 48;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 var(--s-4);
}
.goal-panel__body {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
  margin: 0 0 var(--s-4);
}
.goal-panel__body:last-of-type {
  margin-bottom: var(--s-6);
}

.goal-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color var(--t-base), border-color var(--t-base), background var(--t-base), transform var(--t-base);
}
.goal-panel__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-base);
}
.goal-panel__cta:hover,
.goal-panel__cta:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.08);
  outline: none;
}
.goal-panel__cta:hover svg,
.goal-panel__cta:focus-visible svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .goal-panel,
  .goal-panel__content {
    transition: none;
  }
}

/* =========================================================
   FUNNEL DEMO — interactive menu → scan → recommendation
   Lives inside the "How Dialed In Works" section.
   ========================================================= */
.demo {
  position: relative;
  margin: var(--s-12) auto 0;
  max-width: 760px;
  width: 100%;
}
.demo__device {
  position: relative;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(225,6,0,0.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- Status bar (top) ---------- */
.demo__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.demo__app {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 600;
}
.demo__app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}
.demo__goal strong {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.14em;
}

/* ---------- Stage ---------- */
.demo__stage {
  position: relative;
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(225,6,0,0.05), transparent 70%),
    #050505;
}

/* ---------- The menu (printed paper aesthetic) ---------- */
.demo__menu {
  position: absolute;
  inset: var(--s-6);
  border-radius: var(--r-md);
  background:
    radial-gradient(140% 80% at 50% 0%, rgba(0,0,0,0.04), transparent 50%),
    linear-gradient(180deg, #f5ede0 0%, #ece2cf 100%);
  color: #1a1108;
  padding: clamp(var(--s-5), 4vw, var(--s-10)) clamp(var(--s-5), 4vw, var(--s-12));
  font-family: 'Georgia', 'Times New Roman', serif;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -1px 0 rgba(0,0,0,0.08) inset,
    0 20px 40px rgba(0,0,0,0.4);
  transition: filter 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-3), 1.5vw, var(--s-6));
}
.demo.is-detail .demo__menu { filter: blur(4px) brightness(0.5); }

.demo__menu-header {
  text-align: center;
  border-bottom: 1px solid rgba(26,17,8,0.18);
  padding-bottom: clamp(var(--s-3), 1.5vw, var(--s-5));
}
.demo__menu-name {
  margin: 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.02em;
}
.demo__menu-sub {
  margin: 0.2rem 0 0;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,17,8,0.55);
}
.demo__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-2), 1.2vw, var(--s-4));
}
.demo__item {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.15rem 0;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  line-height: 1.3;
  color: #1a1108;
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.45s ease, color 0.45s ease;
}
.demo__item-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.demo__item-dots {
  border-bottom: 1px dotted rgba(26,17,8,0.35);
  height: 0.8em;
  align-self: end;
  transform: translateY(-2px);
}

/* Match item — its score is hidden until reveal */
.demo__item--match { font-weight: 700; }
.demo__item-score {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(20px, -50%) scale(0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  box-shadow: 0 6px 18px rgba(225,6,0,0.4), 0 0 0 2px rgba(255,255,255,0.9);
  pointer-events: none;
}
.demo__item-score-num { font-size: 0.95rem; }
.demo__item-score-label { font-size: 0.6rem; opacity: 0.85; }

/* Scan-state dimming */
.demo.is-scanning .demo__item { opacity: 0.55; }
.demo.is-revealed .demo__item:not(.demo__item--match) {
  opacity: 0.28;
  filter: saturate(0.6);
}
.demo.is-revealed .demo__item--match {
  transform: translateX(2px);
  color: #1a1108;
}
.demo.is-revealed .demo__item--match .demo__item-name {
  text-shadow: 0 0 0 currentColor;
}
.demo.is-revealed .demo__item--match .demo__item-score {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

/* ---------- Viewfinder overlay ---------- */
.demo__viewfinder {
  position: absolute;
  inset: var(--s-6);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.demo.is-scanning .demo__viewfinder,
.demo.is-revealed .demo__viewfinder { opacity: 1; }
.demo.is-detail .demo__viewfinder { opacity: 0; }

.demo__bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  filter: drop-shadow(0 0 6px var(--red-glow));
}
.demo__bracket--tl { top: 12px; left: 12px; border-right: none; border-bottom: none; border-top-left-radius: 6px; }
.demo__bracket--tr { top: 12px; right: 12px; border-left: none; border-bottom: none; border-top-right-radius: 6px; }
.demo__bracket--bl { bottom: 12px; left: 12px; border-right: none; border-top: none; border-bottom-left-radius: 6px; }
.demo__bracket--br { bottom: 12px; right: 12px; border-left: none; border-top: none; border-bottom-right-radius: 6px; }

.demo__scanline {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  top: 8px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 20%, #ff5040 50%, var(--red) 80%, transparent 100%);
  box-shadow: 0 0 18px var(--red), 0 0 36px var(--red-glow);
  opacity: 0;
  pointer-events: none;
}
.demo.is-scanning .demo__scanline {
  opacity: 1;
  animation: demo-scan 1.8s cubic-bezier(0.45, 0, 0.55, 1);
}
@keyframes demo-scan {
  0%   { top: 8px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% - 10px); opacity: 0; }
}

.demo__chip {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%, -8px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  background: rgba(0,0,0,0.78);
  border: 1px solid rgba(225,6,0,0.45);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.35s ease;
}
.demo.is-scanning .demo__chip {
  opacity: 1;
  transform: translate(-50%, 0);
}
.demo__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: demo-pulse 1s ease-in-out infinite;
}
@keyframes demo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ---------- Best match card (Phase B) ---------- */
.demo__match {
  position: absolute;
  left: clamp(var(--s-4), 3vw, var(--s-8));
  right: clamp(var(--s-4), 3vw, var(--s-8));
  bottom: clamp(var(--s-4), 3vw, var(--s-6));
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: var(--s-4);
  row-gap: var(--s-3);
  padding: clamp(var(--s-3), 1.6vw, var(--s-5)) clamp(var(--s-4), 2vw, var(--s-6));
  border-radius: var(--r-lg);
  background: rgba(8,8,8,0.78);
  border: 1px solid rgba(225,6,0,0.35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 30px rgba(225,6,0,0.18);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  pointer-events: none;
}
.demo.is-revealed .demo__match {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.demo.is-detail .demo__match { opacity: 0; transform: translateY(20px); pointer-events: none; transition-delay: 0s; }

.demo__match-head { min-width: 0; }
.demo__match-eyebrow {
  margin: 0 0 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.demo__match-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: demo-pulse 1.6s ease-in-out infinite;
}
.demo__match-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #fff;
}
.demo__match-sub {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.demo__match-score {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 var(--s-3);
  border-left: 1px solid rgba(255,255,255,0.08);
  align-self: center;
}
.demo__match-score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 18px rgba(225,6,0,0.45);
  letter-spacing: -0.02em;
}
.demo__match-score-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.1;
}
.demo__match-cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(225,6,0,0.3);
}
.demo__match-cta:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(225,6,0,0.45); }
.demo__match-cta:active { transform: translateY(0); }
.demo__match-cta svg { width: 16px; height: 16px; }

/* ---------- Detail card (Phase C) ---------- */
.demo__detail {
  position: absolute;
  inset: var(--s-5);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--s-3), 1.8vw, var(--s-5));
  padding: clamp(var(--s-4), 2.5vw, var(--s-7));
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #0c0c0c 0%, #060606 100%);
  border: 1px solid var(--border-soft);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.02) inset;
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  overflow: auto;
}
.demo.is-detail .demo__detail {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.demo__detail-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.demo__back {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.demo__back:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: var(--border-strong); }
.demo__back svg { width: 16px; height: 16px; }
.demo__detail-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.demo__detail-hero {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
}
.demo__detail-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.6rem 0.4rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  /* Colour comes from the [data-detail-score-tier="..."] rules below */
}
.demo__detail-score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 20px rgba(225,6,0,0.55);
  letter-spacing: -0.02em;
}
.demo__detail-score-label {
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.demo__detail-titles { min-width: 0; flex: 1; }
.demo__detail-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}
.demo__detail-tag {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  transition: color 0.35s ease;
}
/* Tint the tag colour to match the active score tier */
.demo__detail-hero:has([data-detail-score-tier="ok"]) .demo__detail-tag { color: #f5b642; }
.demo__detail-hero:has([data-detail-score-tier="low"]) .demo__detail-tag { color: #b8b8bd; }
.demo__detail-section { display: flex; flex-direction: column; gap: var(--s-3); }
.demo__detail-section-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.demo__detail-why {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: #e5e5e5;
  font-size: 0.92rem;
  line-height: 1.4;
}
.demo__detail-why li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: flex-start;
  gap: 0.6rem;
}
.demo__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.18em;
  position: relative;
  box-shadow: 0 0 10px rgba(225,6,0,0.4);
}
.demo__check::after {
  content: '';
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -1px);
}

.demo__detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(225,6,0,0.32);
}
.demo__detail-cta:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(225,6,0,0.45); }
.demo__detail-cta svg { width: 18px; height: 18px; }

.demo__detail-alts ul {
  list-style: none;
  margin: var(--s-3) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.demo__detail-alts li {
  display: block;
}
.demo__alt {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.02);
  color: #e5e5e5;
  font-family: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.demo__alt:hover,
.demo__alt:focus-visible {
  background: rgba(225,6,0,0.06);
  border-color: rgba(225,6,0,0.42);
  transform: translateY(-1px);
  outline: none;
}
.demo__alt:active { transform: translateY(0); }
.demo__alt-name {
  min-width: 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.demo__alt-name::before {
  content: '';
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.18rem;
}
.demo__alt[data-alt="ribeye"] .demo__alt-name::before { content: '2nd choice'; }
.demo__alt[data-alt="squid_pasta"] .demo__alt-name::before { content: '3rd choice'; }
.demo__alt[data-alt="black_cod"] .demo__alt-name::before { content: 'Top pick'; }
/* Hide the redundant separate .demo__alt-tag once .demo__alt-name::before renders it */
.demo__alt-tag { display: none; }
.demo__alt-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.28rem 0.5rem;
  border-radius: var(--r-sm);
  background: rgba(225,6,0,0.08);
  border: 1px solid rgba(225,6,0,0.22);
  color: var(--red);
  font-family: var(--font-display);
}
.demo__alt-score-num {
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.demo__alt-score-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.demo__alt-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform 0.15s ease, color 0.15s ease;
}
.demo__alt:hover .demo__alt-arrow,
.demo__alt:focus-visible .demo__alt-arrow {
  color: var(--red);
  transform: translateX(2px);
}

/* Score tier styling — signals fit against the goal */
[data-detail-score-tier="best"] {
  background: radial-gradient(60% 70% at 50% 30%, rgba(225,6,0,0.22), rgba(225,6,0,0.05) 100%);
  border-color: rgba(225,6,0,0.32);
}
[data-detail-score-tier="best"] .demo__detail-score-num {
  color: var(--red);
  text-shadow: 0 0 20px rgba(225,6,0,0.55);
}
[data-detail-score-tier="ok"] {
  background: radial-gradient(60% 70% at 50% 30%, rgba(240,180,50,0.22), rgba(240,180,50,0.05) 100%);
  border-color: rgba(240,180,50,0.32);
}
[data-detail-score-tier="ok"] .demo__detail-score-num {
  color: #f5b642;
  text-shadow: 0 0 20px rgba(240,180,50,0.5);
}
[data-detail-score-tier="low"] {
  background: radial-gradient(60% 70% at 50% 30%, rgba(120,120,130,0.22), rgba(120,120,130,0.05) 100%);
  border-color: rgba(150,150,160,0.32);
}
[data-detail-score-tier="low"] .demo__detail-score-num {
  color: #b8b8bd;
  text-shadow: 0 0 18px rgba(120,120,130,0.5);
}
[data-detail-score-tier] {
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}
[data-detail-score-tier] .demo__detail-score-num {
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

/* Flash the score container briefly when the value changes */
@keyframes demo-score-flash {
  0%   { transform: scale(1); box-shadow: 0 0 0 rgba(225,6,0,0); }
  35%  { transform: scale(1.08); box-shadow: 0 0 22px rgba(255,255,255,0.18); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(225,6,0,0); }
}
[data-detail-score-tier].is-flash {
  animation: demo-score-flash 420ms ease-out;
}
@media (prefers-reduced-motion: reduce) {
  [data-detail-score-tier].is-flash { animation: none; }
}

/* ---------- Footer ---------- */
.demo__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.demo__footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
}
.demo__footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: demo-pulse 1.8s ease-in-out infinite;
}
.demo__footer-meta { color: var(--text-muted); }
.demo__replay {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.demo__replay:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: var(--border-strong); }
.demo__replay svg { width: 13px; height: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .demo__stage { aspect-ratio: 4 / 5; }
  .demo__menu { padding: var(--s-4); gap: var(--s-2); }
  .demo__menu-name { font-size: 1.1rem; }
  .demo__item { font-size: 0.85rem; }
  .demo__item-score { font-size: 0.7rem; padding: 0.25rem 0.5rem; }
  .demo__match { grid-template-columns: 1fr; row-gap: 0.6rem; }
  .demo__match-score {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--s-3) 0 0;
    width: 100%;
    justify-content: flex-start;
  }
  .demo__detail-hero { flex-direction: row; align-items: flex-start; }
  .demo__detail { inset: var(--s-3); }
  .demo__footer-meta { display: none; }
}

@media (max-width: 480px) {
  .demo__menu-list { gap: 0.4rem; }
  .demo__item { font-size: 0.78rem; }
  .demo__menu { padding: var(--s-3); }
  .demo__statusbar { padding: var(--s-3) var(--s-4); font-size: 0.65rem; }
  .demo__footer { padding: var(--s-2) var(--s-4); font-size: 0.62rem; }
}

@media (prefers-reduced-motion: reduce) {
  .demo__scanline,
  .demo__chip-dot,
  .demo__match-pulse,
  .demo__footer-dot { animation: none; }
  .demo__match,
  .demo__detail,
  .demo__item,
  .demo__item-score,
  .demo__menu,
  .demo__viewfinder { transition: none; }
}

/* ===== How It Works — editorial numbered rows ===== */
.steps {
  margin-top: var(--s-12);
  border-top: 1px solid var(--border);
}
.steps__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-6) var(--s-10);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (min-width: 720px) {
  .steps__row {
    grid-template-columns: 7rem 14rem 1fr;
    gap: var(--s-12);
    padding: var(--s-10) 0;
  }
}
.steps__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
}
.steps__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 36;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .steps__title { grid-column: auto; }
}
.steps__desc {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  max-width: 36rem;
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .steps__desc { grid-column: auto; }
}

/* ===== Dial Score ===== */
.dial__grid {
  display: grid;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .dial__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-16);
  }
}
.dial__content .section-title {
  text-align: left;
  font-size: var(--fs-4xl);
}
.dial__lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin: var(--s-5) 0 var(--s-8);
}
.dial__bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.dial__bullets li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dial__bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* App device shot — Dial Score showcase */
.dial__device {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  isolation: isolate;
}
.dial__device picture,
.dial__device img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 60px rgba(225, 6, 0, 0.18));
}
.dial__device-glow {
  position: absolute;
  inset: 5% -10% -5% -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 55% 50%, rgba(225, 6, 0, 0.32) 0%, transparent 65%);
  filter: blur(48px);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .dial__device { max-width: 420px; }
}

/* =========================================================
   SECTION 5 — Four Ways to Get Dialed In
   Four outcome cards mirroring the PWA home (Meal / Order /
   Week / Plate). Each card carries a small product visual
   so the feature is legible without a real screenshot. All
   visuals are pure HTML/CSS except the reused fridge photo
   on the Plate card.

   Grid: single column on mobile, 2x2 above 900px so every
   card still has enough width to render its mock cleanly.
   We intentionally stay at 2 columns on wide desktops rather
   than jumping to 4 — the cards are content-dense, and going
   4-across only shortens each card without adding value.
   ========================================================= */
.outcomes {
  margin-top: var(--s-12);
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .outcomes { grid-template-columns: repeat(2, 1fr); }
}

.outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-7);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 60%),
    #0a0a0a;
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.outcome-card:hover {
  border-color: rgba(225, 6, 0, 0.55);
  transform: translateY(-2px);
}
.outcome-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  /* Safari renders the first glyph of a monospace tracked string slightly
     to the left of the box origin, which — combined with the card's
     `overflow: hidden` — clips the leading character on some builds.
     A tiny inline-start buffer gives the glyph room to breathe without
     visibly indenting the label. */
  padding-inline-start: 0.15em;
}
.outcome-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: 'wdth' 100, 'opsz' 36;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.outcome-card__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
  opacity: 0.9;
}
.outcome-card__body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 var(--s-2);
}
.outcome-card__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 320px;
  margin-top: var(--s-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #050505;
  isolation: isolate;
}
.outcome-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  background: var(--white);
  color: #050505;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.outcome-card__cta:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.outcome-card__cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Card 1 — Build My Meal (static menu card) ---
   Mocks sit in normal flex flow (not absolute) so the visual
   grows with content — absolute + overflow:hidden was clipping
   Order Smart's footer tag and Build My Week's Day 1 block. */
.meal-mock {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(225,6,0,0.10) 0%, transparent 55%),
    #0a0a0a;
}
.meal-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.meal-mock__name { color: var(--white); }
.meal-mock__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.meal-mock__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.meal-mock__item--best {
  border-color: rgba(225,6,0,0.55);
  background:
    linear-gradient(90deg, rgba(225,6,0,0.15), rgba(225,6,0,0.04));
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(225,6,0,0.25), 0 8px 24px -12px rgba(225,6,0,0.5);
}
.meal-mock__item-name { line-height: 1.2; }
.meal-mock__score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--red);
  color: var(--white);
  min-width: 44px;
}
.meal-mock__score-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.meal-mock__score-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.meal-mock__tag {
  margin: auto 0 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.meal-mock__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

/* --- Card 2 — Order Smart (preloaded restaurant picker) ---
   Mirrors the PWA /order picker: personalization pill, a
   search affordance, "Recent" chips, and a scored list where
   one row is highlighted as the AI's top pick. Designed to
   read as *decision already made*, not as a form the user has
   to fill out — that's the whole promise of Order Smart. */
.order-mock {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(225,6,0,0.10) 0%, transparent 55%),
    #0a0a0a;
}
.order-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.order-mock__label { color: var(--white); }
.order-mock__pill {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(225,6,0,0.15);
  color: var(--red);
  letter-spacing: 0.12em;
}
.order-mock__search {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.55rem 0.75rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
}
.order-mock__search svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.order-mock__search-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.order-mock__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.order-mock__row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.order-mock__row--best {
  border-color: rgba(225,6,0,0.55);
  background:
    linear-gradient(90deg, rgba(225,6,0,0.15), rgba(225,6,0,0.04));
  box-shadow: 0 0 0 1px rgba(225,6,0,0.25), 0 8px 24px -12px rgba(225,6,0,0.5);
}
.order-mock__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(225,6,0,0.35), rgba(255,255,255,0.08));
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.order-mock__avatar[data-brand="sg"] {
  background: linear-gradient(135deg, #2f6d3a, #1a3d21);
}
.order-mock__avatar[data-brand="ch"] {
  background: linear-gradient(135deg, #a23028, #5c1613);
}
.order-mock__avatar[data-brand="cv"] {
  background: linear-gradient(135deg, #b06a2c, #5c3617);
}
.order-mock__row-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.order-mock__row-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1.2;
}
.order-mock__row--best .order-mock__row-name { color: var(--white); }
.order-mock__row-tags {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.order-mock__row-score {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--red);
  color: var(--white);
  min-width: 56px;
}
.order-mock__row-score-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.order-mock__row-score-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.order-mock__tag {
  margin: auto 0 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.order-mock__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

/* --- Card 3 — Build My Week (planner mock) --- */
.week-mock {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(225,6,0,0.08) 0%, transparent 55%),
    #0a0a0a;
}
.week-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.week-mock__title { color: var(--white); }
.week-mock__goal {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(225,6,0,0.15);
  color: var(--red);
}
.week-mock__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
}
.week-mock__stat {
  padding: var(--s-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.week-mock__stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.week-mock__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  line-height: 1;
}
.week-mock__stat-hint {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
}
.week-mock__category {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: var(--s-1) 0 0;
}
.week-mock__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.week-mock__row {
  display: grid;
  grid-template-columns: 14px 1fr auto auto;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 8px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.02);
  font-size: 0.75rem;
}
.week-mock__check {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid var(--text-muted);
  position: relative;
}
.week-mock__row--checked .week-mock__check {
  background: var(--red);
  border-color: var(--red);
}
.week-mock__row--checked .week-mock__check::after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 5px; height: 2px;
  border-left: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
  transform: rotate(-45deg);
}
.week-mock__row--checked .week-mock__row-name {
  text-decoration: line-through;
  color: var(--text-muted);
}
.week-mock__row-name { color: var(--white); }
.week-mock__row-qty {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.week-mock__row-cost {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}
.week-mock__day {
  margin-top: auto;
  padding: var(--s-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.week-mock__day-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 var(--s-2);
}
.week-mock__meals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.week-mock__meals li {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: baseline;
  gap: var(--s-2);
  font-size: 0.75rem;
}
.week-mock__meal-type {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.week-mock__meal-name { color: var(--white); }

/* --- Card 4 — Build My Plate (fridge photo + best-plate chip) --- */
.outcome-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outcome-card--plate .outcome-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.7) 65%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.outcome-card__overlay {
  position: absolute;
  left: var(--s-4);
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.outcome-card__overlay-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}
.outcome-card__overlay-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.outcome-card__overlay-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.outcome-card__overlay-sub {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

/* --- 'Also works at…' line below the three cards --- */
.also-works {
  margin: var(--s-10) 0 0;
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Mobile refinements for the outcomes section ---
   All four cards stack single-column below 900px (see the .outcomes
   grid rule above). These rules just tighten paddings and internal
   mock density so the cards don't feel oversized on phones. */
@media (max-width: 720px) {
  .outcomes { margin-top: var(--s-8); gap: var(--s-4); }
  .outcome-card {
    padding: var(--s-5);
    border-radius: var(--r-lg);
  }
  .outcome-card__visual { min-height: 280px; }
  .outcome-card__cta {
    padding: var(--s-3) var(--s-4);
    font-size: 0.6875rem;
  }
  .meal-mock { padding: var(--s-4); }
  .order-mock { padding: var(--s-4); gap: var(--s-2); }
  .week-mock { padding: var(--s-3); gap: var(--s-2); }
  .also-works {
    margin-top: var(--s-6);
    padding-top: var(--s-4);
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .outcome-card { padding: var(--s-4); }
  .outcome-card__visual { min-height: 260px; }
  .meal-mock__item { padding: var(--s-2) var(--s-3); font-size: 0.8125rem; }
  .order-mock__row { padding: 6px 8px; gap: var(--s-2); }
  .order-mock__avatar { width: 30px; height: 30px; font-size: 0.6875rem; }
  .order-mock__row-name { font-size: 0.8125rem; }
  .week-mock__row { grid-template-columns: 12px 1fr auto; padding: 5px 6px; }
  /* Hide qty on very narrow screens so name + cost stay readable */
  .week-mock__row-qty { display: none; }
  .week-mock__stat-value { font-size: 1rem; }
  .week-mock__meals li { grid-template-columns: 60px 1fr; }
}

/* ===== Quotes / Testimonials ===== */
.quotes {
  margin-top: var(--s-12);
  display: grid;
  gap: var(--s-8);
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .quotes .quote { border-right: 1px solid var(--border); padding: var(--s-10); }
  .quotes .quote:last-child { border-right: 0; }
}
.quote {
  padding: var(--s-10) 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .quote { border-bottom: 0; }
}
.quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'wdth' 100, 'opsz' 20;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 var(--s-6);
}
.quote__text::before {
  content: '“';
  display: inline-block;
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6em;
  line-height: 0.5;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.quote__by {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.quote__name { color: var(--white); font-weight: 500; }
.quote__role { color: var(--text-muted); }
.quote__role::before { content: '— '; }

/* Social stat block (right side of section head) */
.social__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
@media (min-width: 900px) { .social__stat { align-items: flex-end; } }
.social__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 60;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--red);
  letter-spacing: -0.04em;
  line-height: 0.85;
}
.social__stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== Final CTA — editorial split ===== */
.cta { padding-top: var(--s-20); padding-bottom: var(--s-20); }
.cta__grid {
  display: grid;
  gap: var(--s-10);
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: var(--s-12);
}
@media (min-width: 900px) {
  .cta__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-16);
  }
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 72;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: var(--s-3) 0 var(--s-3);
}
.cta__movement {
  display: block;
  width: clamp(180px, 20vw, 260px);
  height: auto;
  max-width: 100%;
  margin: 0 0 var(--s-6);
  opacity: 0.95;
  filter: drop-shadow(0 4px 16px rgba(225, 6, 0, 0.35));
}
.cta__lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  max-width: 32rem;
  margin-bottom: var(--s-6);
}
.cta__lead strong { color: var(--white); font-weight: 600; }
.cta__perks {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.cta__perks li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta__perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.cta__form {
  background: transparent;
  border: 0;
  padding: 0;
}
.cta__form--founding {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: var(--s-4);
  padding: clamp(var(--s-6), 4vw, var(--s-10));
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.cta__form-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.cta__form-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.cta__form-note {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}
.cta__form--founding .cta__form-note { margin-top: 0; }

/* ===== Section head — centered variant ===== */
.section-head--center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  padding-bottom: var(--s-6);
  margin-bottom: var(--s-10);
  border-bottom: 1px solid var(--border);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 64px;
  height: 1px;
  background: var(--red);
  transform: translateX(-50%);
}
.section-head--center .section-title { text-align: center; margin: 0; }
.section-head--center .section-sub {
  margin: 0;
  max-width: 40rem;
  text-align: center;
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ===== SECTION 7 — Founding Member Pricing ===== */
.pricing {
  padding-block: var(--s-24);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 6, 0, 0.08) 0%, transparent 60%),
    var(--bg);
}
.pricing__card {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(var(--s-8), 5vw, var(--s-16));
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 50%), var(--bg-elevated, #0a0a0a);
  overflow: hidden;
}
.pricing__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.7;
}

.pricing__price-block {
  text-align: center;
  margin-bottom: var(--s-12);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--border);
}
.pricing__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: 'wdth' 100, 'opsz' 96;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.045em;
}
.pricing__price-symbol {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 0.4em;
}
.pricing__price-num {
  font-size: clamp(5rem, 14vw, 10rem);
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.pricing__price-unit {
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 0.6rem;
  align-self: center;
  font-variation-settings: normal;
}
.pricing__price-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.pricing__perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin: 0 0 var(--s-12);
  padding: 0;
  list-style: none;
}
@media (min-width: 760px) {
  .pricing__perks { grid-template-columns: repeat(3, 1fr); gap: var(--s-8); }
}
.pricing__perks li {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5) 0 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.pricing__perks li::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--red);
}
.pricing__perk-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s-1);
}
.pricing__perk-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  font-variation-settings: 'wdth' 100, 'opsz' 24;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
}
.pricing__perk-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

.pricing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  text-align: center;
}
.pricing__note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  max-width: 32rem;
  line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
  padding-block: var(--s-10);
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: var(--fs-sm);
  color: var(--text-dim);
}
