

:root {
  --carbon: #0A0A0B;
  --graphite: #141417;
  --steel: #1E1E22;
  --mist: #B4B4BC;
  --brand: #E10600;
  --brand-bright: #FF2D1A;

  --brand-rgb: 225 6 0;
  --brand-bright-rgb: 255 45 26;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --white: #FFFFFF;

  --display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  --wide: 1180px;
  --shadow-card: 0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
                 0 12px 30px -18px rgba(0, 0, 0, 0.9);
  --shadow-red: 0 0 0 1px rgb(var(--brand-rgb) / 0.5),
                0 8px 30px -10px rgb(var(--brand-rgb) / 0.35);
}

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

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

body {
  margin: 0;
  background: var(--carbon);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04";
}

h1, h2, h3, h4, .display {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

a { color: inherit; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid rgb(var(--brand-rgb) / 0.8);
  outline-offset: 3px;
  border-radius: 4px;
}

.nums { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mist);
  margin: 0;
}
.eyebrow.red { color: var(--brand-bright); }

.lede { color: var(--mist); font-size: 18px; line-height: 1.65; }
.mist { color: var(--mist); }
.small { font-size: 14px; line-height: 1.6; }
.tiny { font-size: 12.5px; line-height: 1.55; }
.white { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .bar {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 66px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.logo .mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-red);
}
.logo .word {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.logo .word em { font-style: normal; color: var(--brand-bright); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--white); }

.menu { display: none; position: relative; }
.menu > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary::after { content: "▾"; font-size: 10px; }
.menu[open] > summary::after { content: "▴"; }

.menu-panel {
  position: fixed;
  top: 74px;
  left: 12px;
  right: 12px;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: var(--graphite);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.menu-panel a {
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--mist);
  text-decoration: none;
  font-size: 14.5px;
}
.menu-panel a:hover { background: rgba(255, 255, 255, 0.05); color: var(--white); }

@media (max-width: 900px) {
  .nav { display: none; }
  .site-header .menu { display: block; }
  .site-header .bar { gap: 12px; }
  .site-header .btn-sm { padding: 9px 15px; font-size: 11.5px; }
}

@media (max-width: 720px) { .site-header .btn-signin { display: none; } }

@media (max-width: 460px) { .logo .word { display: none; } }

.btn {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
  color: var(--white);
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: var(--shadow-red); }
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover { border-color: rgb(var(--brand-rgb) / 0.55); }
.btn-sm { padding: 9px 18px; font-size: 12px; }

section { position: relative; }

.band {
  border-top: 1px solid var(--line);
  padding: 76px 0;
}
.band.tight { padding: 56px 0; }

.band-head { margin-bottom: 34px; }
.band-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-top: 10px;
}
.band-head p { margin-top: 12px; max-width: 720px; }

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 84px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 62% at 50% 0%,
              rgb(var(--brand-rgb) / 0.18), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero h1 {
  margin-top: 16px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.04;
  max-width: 19ch;
}
.hero h1 .red { color: var(--brand); }
.hero .lede { margin-top: 22px; max-width: 60ch; }

.plainlink {
  color: var(--mist);
  font-size: 14.5px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--line-strong);
}
.plainlink:hover { color: var(--white); text-decoration-color: currentColor; }

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-facts {
  margin-top: 46px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.hero-facts div {
  background: var(--graphite);
  padding: 20px 22px;
}
.hero-facts .k {
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.05;
}
.hero-facts .v { margin-top: 8px; font-size: 13px; line-height: 1.4; color: var(--mist); }

@media (max-width: 760px) {
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--graphite);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.card h3 { font-size: 19px; }
.card > * + * { margin-top: 12px; }

.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .g3 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .g2 { grid-template-columns: 1fr; } }

.steps { counter-reset: step; }
.step .n {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--steel);
  border: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-bright);
}

.price-card { display: flex; flex-direction: column; }
.price-card.featured {
  border-color: rgb(var(--brand-rgb) / 0.42);
  box-shadow: var(--shadow-red);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}
.price-row .amt {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.price-row .unit { font-size: 13px; color: var(--mist); }

.ticks { list-style: none; margin: 18px 0 0; padding: 0; }
.ticks li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mist);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.ticks li b { color: var(--white); font-weight: 600; }

.packs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pack {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--steel);
}
.pack .a { font-family: var(--display); font-weight: 700; font-size: 17px; }
.pack .b { font-size: 12px; color: var(--mist); margin-top: 2px; }

.proof {
  background: var(--steel);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
}
.proof-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--graphite);
}
.proof-body { padding: 22px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--line-strong);
  color: var(--mist);
}
.tag.red {
  border-color: rgb(var(--brand-bright-rgb) / 0.6);
  color: var(--brand-bright);
}

.kv { margin-top: 14px; }
.kv .row { display: flex; gap: 14px; padding: 9px 0; border-top: 1px solid var(--line); }
.kv .row:first-child { border-top: 0; }
.kv .lab {
  flex: none;
  width: 74px;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-bright);
  padding-top: 3px;
}
.kv .txt { font-size: 14.5px; line-height: 1.6; color: var(--mist); }
.kv .txt b { color: var(--white); font-weight: 600; }

.ladder { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.ladder .rung { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.ladder .rung .t { font-family: var(--display); font-weight: 700; font-size: 17px; }
.ladder .rung .l { font-size: 13px; color: var(--mist); }
.ladder .gap {
  font-size: 12.5px;
  color: var(--mist);
  padding: 6px 0 6px 14px;
  border-left: 2px solid rgb(var(--brand-rgb) / 0.45);
  margin: 6px 0 6px 2px;
}

.grid > *, .trust > *, .hero-facts > * { min-width: 0; }
.card, .proof, .proof-body, .honest, .price-card { min-width: 0; }
.tbl-scroll { overflow-x: auto; margin-top: 16px; min-width: 0; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}
table.data th {
  text-align: left;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 0 14px 10px 0;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
table.data td {
  padding: 11px 14px 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  white-space: nowrap;
}
table.data td.w { white-space: normal; min-width: 260px; }
table.data td b { color: var(--white); font-weight: 600; }

.trust { display: grid; gap: 1px; background: var(--line);
         border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
         grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .trust { grid-template-columns: 1fr; } }
.trust .item { background: var(--graphite); padding: 24px; }
.trust .item h3 { font-size: 16.5px; }
.trust .item p { margin-top: 9px; font-size: 14.5px; color: var(--mist); line-height: 1.6; }
.trust .item .src {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--mist);
  opacity: 0.75;
}

.honest {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--brand);
  border-radius: 14px;
  background: var(--graphite);
  padding: 26px;
}
.honest ul { margin: 14px 0 0; padding-left: 20px; color: var(--mist); }
.honest li { padding: 5px 0; font-size: 14.5px; line-height: 1.6; }
.honest li b { color: var(--white); font-weight: 600; }

details.faq {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  color: var(--brand-bright);
  font-size: 20px;
  line-height: 1;
  flex: none;
}
details.faq[open] summary::after { content: "\2013"; }
details.faq p { margin-top: 12px; color: var(--mist); font-size: 14.5px; max-width: 74ch; }

.cta {
  border: 1px solid rgb(var(--brand-rgb) / 0.35);
  border-radius: 20px;
  background:
    radial-gradient(80% 140% at 50% 0%, rgb(var(--brand-rgb) / 0.16), transparent 70%),
    var(--graphite);
  padding: 46px 32px;
  text-align: center;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 34px); }
.cta p { margin: 14px auto 0; max-width: 56ch; color: var(--mist); }
.cta .hero-actions { justify-content: center; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 34px;
  margin-top: 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mist);
  font-weight: 700;
}
.foot-grid ul { list-style: none; margin: 14px 0 0; padding: 0; }
.foot-grid li { padding: 5px 0; }
.foot-grid li a {
  font-size: 14px;
  color: var(--mist);
  text-decoration: none;
}
.foot-grid li a:hover { color: var(--white); }
.foot-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--mist);
}

.doc { padding: 56px 0 80px; }
.doc h1 { font-size: clamp(30px, 4.4vw, 42px); }
.doc .updated { margin-top: 12px; font-size: 13px; color: var(--mist); }
.doc h2 {
  font-size: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.doc h3 { font-size: 16px; margin-top: 26px; }
.doc p, .doc li { color: var(--mist); font-size: 15.5px; line-height: 1.7; }
.doc p { margin-top: 14px; }
.doc ul, .doc ol { margin-top: 14px; padding-left: 22px; }
.doc li { padding: 4px 0; }
.doc strong { color: var(--white); font-weight: 600; }
.doc .toc {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--graphite);
  padding: 20px 24px;
}
.doc .toc ol { margin: 10px 0 0; }
.doc .toc a { color: var(--mist); text-decoration: none; }
.doc .toc a:hover { color: var(--white); }

.todo {
  border: 1px dashed var(--brand);
  border-radius: 12px;
  background: rgb(var(--brand-rgb) / 0.07);
  padding: 18px 20px;
  margin-top: 22px;
}
.todo p { margin-top: 8px; font-size: 14px; }
.todo p:first-child { margin-top: 0; }
.todo .lab {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bright);
}
code {
  font-family: var(--mono);
  font-size: 0.9em;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

.versus {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } }

.versus .side {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--graphite);
  padding: 26px;
}
.versus .side.now { background: var(--carbon); }
.versus .side.slip { border-color: rgb(var(--brand-rgb) / 0.4); }
.versus .side h3 { font-size: 17px; }
.versus .side .lead {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mist);
}
.versus ul { list-style: none; margin: 16px 0 0; padding: 0; }
.versus li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mist);
}
.versus li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 15px;
  line-height: 1.55;
}
.versus .now li::before { content: "—"; color: var(--mist); opacity: 0.6; }
.versus .slip li::before { content: "+"; color: var(--brand-bright); }
.versus li b { color: var(--white); font-weight: 600; }

.figure {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--white);
}

.flow { counter-reset: flow; display: grid; gap: 14px; }
.flow .beat {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.flow .beat:first-child { border-top: 0; padding-top: 0; }
.flow .beat .num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-bright);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  text-align: center;
  padding: 7px 0;
}
.flow .beat h3 { font-size: 17px; }
.flow .beat p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--mist); }

.privacy { display: grid; gap: 12px; margin-top: 18px; }
.privacy .row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mist);
}
.privacy .row span:first-child { color: var(--brand-bright); font-weight: 700; }
.privacy .row b { color: var(--white); font-weight: 600; }

:root {
  
  --race: "Barlow Condensed", "Oswald", "Arial Narrow", var(--display);
}

.home .hero {
  position: relative;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.home .hero::before { display: none; }

.home .hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(64%, 1180px);
  z-index: 0;
}
.home .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  display: block;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, transparent 8%, #000 46%, #000 100%),
    linear-gradient(180deg, #000 58%, transparent 96%);
  mask-image:
    linear-gradient(90deg, transparent 0%, transparent 8%, #000 46%, #000 100%),
    linear-gradient(180deg, #000 58%, transparent 96%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.home .hero-inner {
  position: relative;
  z-index: 1;
  
  padding-block: 74px 40px;
}

.home .hero-title {
  font-family: var(--race);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(40px, 6.6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  
  max-width: 19ch;
  text-wrap: balance;
}
.home .hero-title em { font-style: italic; color: var(--brand-bright); }

.home .hero-lede {
  margin: 18px 0 0;
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.62;
  color: var(--mist);
}

.home .hero-lede b { color: var(--white); font-weight: 700; }

.home .timing {
  margin: 24px 0 0;
  padding: 15px 18px 13px;
  max-width: 420px;
  background: rgb(10 10 11 / 0.72);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--brand);
  backdrop-filter: blur(6px);
}
.home .timing-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.home .timing-row + .timing-row { margin-top: 6px; }
.home .timing-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist);
}
.home .timing-value {
  font-family: var(--mono);
  font-size: 27px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.home .timing-row.is-ultimate .timing-value { color: var(--brand-bright); }
.home .timing-bar {
  margin-top: 12px; height: 3px; background: var(--steel); overflow: hidden;
}
.home .timing-bar i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  transform-origin: left;
  transform: scaleX(1);
}
.home .timing.is-in .timing-bar i {
  animation: sweep 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes sweep { from { transform: scaleX(1); } to { transform: scaleX(0.32); } }
.home .timing-foot { margin: 10px 0 0; font-size: 13px; color: var(--mist); }
.home .timing-foot strong { color: var(--white); }

.home .hero-actions { margin-top: 24px; }

.home .statbar {
  position: relative; z-index: 1;
  list-style: none; margin: 0; padding: 20px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  background: rgb(20 20 23 / 0.66);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.home .statbar li { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.home .statbar li + li { border-left: 1px solid var(--line); padding-left: 22px; }
.home .statbar b {
  font-family: var(--race); font-style: italic; font-weight: 800;
  font-size: 30px; line-height: 1; letter-spacing: 0.005em;
}
.home .statbar b.is-red { color: var(--brand-bright); }
.home .statbar span { font-size: 12.5px; color: var(--mist); line-height: 1.45; }

.home .band { padding: 96px 0; }
.home .band-alt { background: var(--graphite); }
.home .band-head h2 {
  font-family: var(--race); font-style: italic; font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 0.98; letter-spacing: -0.005em;
  
  max-width: 26ch;
}
.home .band-head h2 em { font-style: italic; color: var(--brand-bright); }
.home .band-cta {
  margin-top: 32px; display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.home .btn-lg { padding: 15px 30px; font-size: 15px; }

.home .gapfoot { margin-top: 26px; max-width: 62ch; color: var(--mist); }
.home .gapfoot em { color: var(--white); font-style: normal; font-weight: 600; }

.home .voice {
  padding: 26px 26px 24px;
  background: var(--carbon);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.home .voice.is-in { opacity: 1; transform: none; }
.home .voice-tag {
  margin: 0 0 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-bright);
}
.home .voice h3 {
  margin: 0 0 18px; font-size: 20px; line-height: 1.25; text-wrap: balance;
}
.home .voice dl { margin: 0; display: grid; gap: 14px; }
.home .voice dt {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 3px;
}
.home .voice dd { margin: 0; font-size: 15px; line-height: 1.6; }

.home .steps {
  list-style: none; margin: 36px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.home .steps li { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.home .step-n {
  flex: none;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid rgb(var(--brand-rgb) / 0.55);
  color: var(--brand-bright);
  font-family: var(--mono); font-size: 14px;
}
.home .steps p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--mist); }

.home .band-close {
  background:
    radial-gradient(60% 120% at 50% 100%, rgb(var(--brand-rgb) / 0.16), transparent 70%),
    var(--carbon);
  border-top: 1px solid var(--line);
  text-align: center;
}
.home .close-inner h2 {
  font-family: var(--race); font-style: italic; font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 0.98;
  margin: 0 auto; max-width: 24ch;
}
.home .close-inner .mist { margin: 16px auto 0; max-width: 46ch; }
.home .close-inner .band-cta { justify-content: center; }

.home .site-foot {
  border-top: 1px solid var(--line); padding: 26px 0;
  font-size: 13.5px; color: var(--mist);
}
.home .foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.home .foot-inner nav { display: flex; gap: 20px; flex-wrap: wrap; }
.home .foot-inner a { color: var(--mist); text-decoration: none; }
.home .foot-inner a:hover { color: var(--white); }

@media (max-width: 1000px) {
  .home .hero-media { width: 100%; opacity: 0.42; }
  .home .hero-media img {
    object-position: 58% 40%;
    -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 40%, transparent 92%);
  }
  .home .hero-inner { padding-block: 84px 48px; }
  .home .hero-title { max-width: 100%; }
  .home .statbar { grid-template-columns: repeat(2, 1fr); }
  .home .statbar li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .home .steps { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 620px) {
  .home .band { padding: 68px 0; }
  .home .timing { max-width: 100%; }
  .home .timing-value { font-size: 23px; }
  .home .statbar { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .home .statbar li + li { border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line); padding-top: 14px; }
  .home .gapchart li { grid-template-columns: 76px 1fr 64px; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .home .timing.is-in .timing-bar i,
  .home .gapchart.is-in .gc-bar i { animation: none; }
  .home .gc-bar i { transform: scaleX(1); }
  .home .timing-bar i { transform: scaleX(0.32); }
  .home .voice { opacity: 1; transform: none; transition: none; }
}

.home .rules {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 42px;
  max-width: 900px;
}
.home .rules li { min-width: 0; padding-left: 18px; border-left: 2px solid var(--brand); }
.home .rules h3 {
  margin: 0 0 7px; font-size: 16.5px; line-height: 1.3; text-wrap: balance;
}
.home .rules p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--mist); }
@media (max-width: 760px) {
  .home .rules { grid-template-columns: 1fr; gap: 24px; }
}

.home .qa {
  margin: 40px 0 0; display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 30px 46px;
}
.home .qa > div { min-width: 0; }
.home .qa dt {
  font-family: var(--race); font-style: italic; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em;
  font-size: 19px; line-height: 1.12; margin: 0 0 9px;
  text-wrap: balance;
}
.home .qa dd {
  margin: 0; padding-left: 14px;
  border-left: 2px solid rgb(var(--brand-rgb) / 0.6);
  font-size: 15px; line-height: 1.62; color: var(--mist);
}
.home .qa dd b { color: var(--white); }
@media (max-width: 760px) {
  .home .qa { grid-template-columns: 1fr; gap: 26px; }
}

.home .how {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
}
.home .how li { min-width: 0; padding-top: 18px; border-top: 2px solid var(--brand); }
.home .how-n {
  display: block; font-family: var(--race); font-style: italic;
  font-weight: 800; font-size: 26px; line-height: 1; color: var(--brand-bright);
  margin-bottom: 8px;
}
.home .how h3 { margin: 0 0 9px; font-size: 18px; line-height: 1.25; }
.home .how p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--mist); }
.home .how code {
  font-family: var(--mono); font-size: 13px; color: var(--white);
}
@media (max-width: 860px) {
  .home .how { grid-template-columns: 1fr; gap: 26px; }
}
