/* ============================================================================
   LastMinutesAI — web port of the app's "Floodlit Calm" design system.
   Tokens mirror LastMinutesAI_App/LastMinutesAI/Theme/Theme.swift exactly;
   the page background mirrors Views/Components/FloodlitBackdrop.swift.
   System type stack (SF Pro on Apple devices) + SF Mono for data.
   Dark-only, navy-tinted, one brand-blue accent, amber = urgency only.
   Plain CSS, no build step.
   ============================================================================ */

:root {
  /* Surfaces (elevation by lightness, never pure black) */
  --bg:        #070D16;   /* backdrop */
  --bg-deep:   #04070D;   /* ticker void */
  --surface:   #0E1726;
  --surface-2: #142235;   /* raised: panels, sheets */
  --surface-3: #1B2C44;   /* overlay: cards, menus */
  --surface-4: #22344F;   /* pressed */

  /* Lines */
  --line:        #23354F;
  --line-strong: #3A527A;
  --hairline:    rgba(140, 190, 235, 0.10);

  /* Text (cool stadium-light off-white, never pure #FFF) */
  --text:   #EAF2FB;
  --text-2: rgba(234, 242, 251, 0.62);
  --text-3: rgba(234, 242, 251, 0.40);
  --muted:  rgba(234, 242, 251, 0.40);

  /* Brand (the one accent) */
  --brand:     #6CABDD;
  --brand-2:   #8FC4EC;
  --brand-ink: #06121F;
  --blue:      var(--brand); /* alias used by privacy.html */

  /* Semantic (always paired with a label, never colour alone) */
  --amber: #FFB020;  /* urgency: the board, match heat */
  --live:  #FF4D6D;  /* live dot + LIVE + minute */
  --win:   #3DDC84;
  --error: #FF6B6B;
  --cool:  #69C9E0;

  /* Type */
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --body:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --mono:    ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Geometry (app scale: 4 / 8 / 16 / 24 / pill) */
  --shell:    1120px;
  --r-sm:     8px;
  --r-card:   16px;
  --r-sheet:  24px;
  --r-pill:   999px;

  /* Elevation (navy-tinted, depth only) */
  --shadow-card:  0 2px 8px rgba(2, 6, 12, 0.18);
  --shadow-sheet: 0 8px 24px rgba(2, 6, 12, 0.28);

  /* Motion */
  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* ---- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
  color-scheme: dark;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
}

/* FloodlitBackdrop: a brand beam washing down from the top, the surface tone
   fading to the backdrop void below. No texture, no grid: floodlit calm. */
body {
  font-family: var(--body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(108, 171, 221, 0.13), rgba(108, 171, 221, 0)),
    linear-gradient(180deg, var(--surface), var(--bg));
  background-size: 100% 340px, 100% 820px;
  background-repeat: no-repeat;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---- helpers -------------------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.skip-link { position: absolute; left: 12px; top: -48px; z-index: 10000; background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: var(--r-sm); font-weight: 700; transition: top .15s ease; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--live); box-shadow: 0 0 0 0 rgba(255, 77, 109, .55);
  animation: pulse 2s infinite; vertical-align: middle;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 109, .5); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 77, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 109, 0); }
}

/* heat glyphs (the app's InsightHeatGlyph): monochrome amber ember / cool */
.glyph-warm { color: var(--amber); }
.glyph-cool { color: var(--cool); }

/* ---- vidiprinter ticker --------------------------------------------------- */
.ticker {
  position: relative; overflow: hidden; z-index: 60;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono); font-size: .76rem; letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 72px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0;  background: linear-gradient(90deg,  var(--bg-deep), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--bg-deep), transparent); }
.ticker-track { display: inline-flex; gap: 36px; padding: 9px 0; white-space: nowrap; animation: marquee 46s linear infinite; will-change: transform; }
.tick { color: var(--text-2); display: inline-flex; gap: 10px; align-items: center; }
.tick b { color: var(--live); font-weight: 700; letter-spacing: .08em; }
.tick .min { color: var(--text); font-weight: 600; }
.tick .min.stoppage { color: var(--amber); }
.tick i { font-style: normal; font-weight: 600; }
.tick i.hot  { color: var(--amber); }
.tick i.cold { color: var(--cool); }
.tick i.none { color: var(--text-3); font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(180deg, rgba(7, 13, 22, .9), rgba(7, 13, 22, .5));
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 34px; width: auto; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-meta { font-family: var(--mono); font-size: .74rem; color: var(--text-3); letter-spacing: .04em; }
.header-cta {
  font-weight: 600; font-size: .86rem; letter-spacing: -.005em;
  padding: 9px 16px; border-radius: var(--r-pill); border: 1px solid var(--line-strong);
  color: var(--text); transition: border-color .2s, color .2s;
}
.header-cta:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 620px) { .header-meta { display: none; } }

/* ---- shared section grammar (the app's caps eyebrow) ----------------------- */
.sec-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3);
}
.sec-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  letter-spacing: -.03em; line-height: 1.05;
  margin-top: 12px;
}

/* ---- buttons / forms ------------------------------------------------------ */
.signup {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
  padding: 8px; border-radius: var(--r-card);
  background: rgba(14, 23, 38, .6);
  border: 1px solid var(--hairline);
}
.signup-input {
  flex: 1 1 220px; min-width: 0;
  font: inherit; color: var(--text);
  background: rgba(7, 13, 22, .6);
  border: 1px solid transparent; border-radius: var(--r-pill);
  padding: 13px 18px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.signup-input::placeholder { color: var(--text-3); }
.signup-input:focus {
  border-color: var(--brand);
  background: var(--surface-2);
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 171, 221, .18);
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
  border: 0; border-radius: var(--r-pill); padding: 13px 24px;
  transition: transform .15s var(--ease), box-shadow .2s, background .2s;
}
.btn-primary {
  color: var(--brand-ink);
  background: var(--brand);
  box-shadow: 0 10px 24px -10px rgba(108, 171, 221, .5);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--brand-2); }
.btn-primary:active { transform: translateY(0); }
.btn-arrow { transition: transform .2s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.form-msg { flex-basis: 100%; font-family: var(--mono); font-size: .82rem; margin: 2px 8px 0; min-height: 1.1em; }
.form-msg.is-error { color: var(--error); }
.form-msg.is-ok    { color: var(--win); }
.micro {
  font-family: var(--mono); color: var(--text-3); font-size: .76rem;
  margin-top: 14px; letter-spacing: .01em;
}
.micro-trust { margin-top: 6px; color: var(--brand); opacity: .85; }
.cf-turnstile { flex-basis: 100%; margin: 4px 8px 0; } /* invisible until challenged */

/* ---- hero ----------------------------------------------------------------- */
.hero { position: relative; padding: clamp(40px, 6vw, 76px) 0 0; }
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }

.hero-status {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 12px 6px 14px;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: rgba(14, 23, 38, .65);
  font-family: var(--mono); font-size: .76rem; letter-spacing: .04em;
  color: var(--text-2);
}
.hero-status .sep { color: var(--text-3); }
.hero-status .pill {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--r-pill);
  background: rgba(108, 171, 221, .14); color: var(--brand-2);
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}

.hero-title {
  font-family: var(--display); font-weight: 800; line-height: .98;
  letter-spacing: -.035em;
  font-size: clamp(2.6rem, 6.6vw, 4.6rem);
  margin-top: 26px;
}
.hero-title span { display: block; }
.hero-title em { font-style: normal; color: var(--brand); }
.hero-sub {
  font-size: clamp(1.04rem, 1.9vw, 1.2rem);
  color: var(--text-2);
  max-width: 46ch; margin-top: 24px; line-height: 1.6;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* page-load stagger */
.hero-status, .hero-title span, .hero-sub, .hero .signup, .hero .micro, .hero-demo {
  animation: rise .7s var(--ease) both;
}
.hero-status        { animation-delay: .04s; }
.hero-title .l1     { animation-delay: .10s; }
.hero-title .l2     { animation-delay: .18s; }
.hero-title .l3     { animation-delay: .26s; }
.hero-sub           { animation-delay: .34s; }
.hero .signup       { animation-delay: .42s; }
.hero .micro        { animation-delay: .50s; }
.hero-demo          { animation-delay: .30s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---- the phone: the Live screen, as built ---------------------------------- */
.hero-demo { display: flex; justify-content: center; align-self: end; }
.phone {
  position: relative;
  width: min(380px, 100%);
  height: clamp(500px, 56vw, 600px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 52px 52px 0 0;
  padding: 12px 14px 0;
  background:
    linear-gradient(180deg, rgba(108, 171, 221, 0.14), rgba(108, 171, 221, 0) 220px),
    linear-gradient(180deg, var(--surface), var(--bg) 75%);
  box-shadow: var(--shadow-sheet);
  -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 76%, transparent 99%);
}
.phone-island {
  width: 96px; height: 26px; border-radius: var(--r-pill);
  background: var(--bg-deep); margin: 4px auto 0;
}
.phone-head { display: flex; align-items: center; gap: 8px; padding: 20px 8px 16px; }
.phone-head img { height: 30px; width: auto; }
.phone-head span {
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  letter-spacing: -.02em; color: var(--text-2);
}

/* the Live content panel: rounded-top raised sheet the feed scrolls inside */
.panel {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--r-sheet) var(--r-sheet) 0 0;
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
}

/* one feed match card (MatchCardView): league · crest+name | score box · minute */
.app-card {
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-card);
}
.ac-league {
  text-align: center; font-size: .74rem; color: var(--text-2);
  margin-bottom: 10px;
}
.ac-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }
.ac-team { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 0; }
.ac-badge {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: .58rem; color: #f5f8fc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .07) inset, 0 2px 6px rgba(2, 6, 12, .4);
}
/* team colours live only inside the bounded match context */
.ac-badge--ars { background: linear-gradient(135deg, #ef0107, #9b0205); }
.ac-badge--che { background: linear-gradient(135deg, #1f6dff, #0a3ea3); }
.ac-badge--bha { background: linear-gradient(135deg, #0a54a8, #063b78); }
.ac-badge--new { background: linear-gradient(135deg, #41444b, #1d1f24); }
.ac-badge--bar { background: linear-gradient(135deg, #a50044, #6b002c); }
.ac-badge--rma { background: linear-gradient(135deg, #d8e3f5, #9fb4d8); color: #1a2b4a; }
.ac-name { font-size: .82rem; font-weight: 600; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ac-center { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.ac-score {
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  padding: 4px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.ac-score .d { color: var(--text-3); font-weight: 400; padding: 0 3px; }
.ac-min {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 600; color: var(--text-2);
  font-variant-numeric: tabular-nums;
  transition: color .4s;
}
.ac-min.is-board { color: var(--amber); }
/* the fourth official's board: announced added time, dark figures on amber */
.board-chip {
  font-size: .62rem; font-weight: 700; color: var(--bg);
  background: var(--amber);
  padding: 1px 5px; border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.board-chip[hidden] { display: none; }

/* ---- the read (Match Detail anatomy) --------------------------------------- */
.read { padding: clamp(72px, 10vw, 124px) 0; border-top: 1px solid var(--hairline); }
.read-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
@media (min-width: 920px) { .read-grid { grid-template-columns: 1fr 1.05fr; } }
.read-copy { max-width: 50ch; }
@media (min-width: 920px) { .read-copy { position: sticky; top: 98px; } }
.read-copy .lede { color: var(--text-2); font-size: clamp(1.02rem, 1.8vw, 1.14rem); margin-top: 16px; line-height: 1.6; }

.read-terms { margin-top: 30px; }
.read-terms > div { padding: 16px 0; border-top: 1px solid var(--hairline); }
.read-terms dt { font-family: var(--display); font-weight: 700; font-size: 1.04rem; letter-spacing: -.015em; }
.read-terms dd { color: var(--text-2); font-size: .95rem; margin-top: 5px; line-height: 1.6; }

/* the specimen sheet: read headline + scored insights + probabilities */
.sheet {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sheet);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sheet);
}
.sheet-headline {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.25rem); letter-spacing: -.015em;
}
.insights { display: grid; gap: 14px; margin-top: 18px; }
.insight { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.insight .ig { padding-top: 3px; }
.insight .label { font-weight: 600; font-size: .95rem; }
.insight .detail { color: var(--text-2); font-size: .92rem; line-height: 1.55; margin-top: 2px; }

.sheet-divider { border: 0; border-top: 1px solid var(--hairline); margin: 22px 0 16px; }

.probs-head {
  display: flex; align-items: baseline; gap: 12px;
  font-variant-numeric: tabular-nums;
}
.probs-eyebrow {
  font-family: var(--mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-2);
  margin-right: auto;
}
.probs-col { font-size: .68rem; color: var(--text-3); width: 64px; text-align: right; flex-shrink: 0; white-space: nowrap; }
.probs-colg { width: 16px; flex-shrink: 0; }
.probs-group { margin-top: 14px; }
.probs-group + .probs-group { margin-top: 18px; }
.probs-cat { font-weight: 600; font-size: .92rem; }
.probs-side {
  font-family: var(--mono); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-3);
  margin-top: 8px;
}
.prob-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 6px 0 6px 12px;
  font-variant-numeric: tabular-nums;
}
.prob-row .th { font-size: .9rem; color: var(--text); width: 36px; flex-shrink: 0; }
.prob-row .vals { display: flex; gap: 12px; margin-left: auto; position: relative; }
.prob-row .v { font-family: var(--mono); font-size: .88rem; font-weight: 600; color: var(--text); width: 64px; text-align: right; }
.prob-row .t { font-family: var(--mono); font-size: .88rem; color: var(--text-3); width: 64px; text-align: right; }
.prob-row .pg { width: 16px; flex-shrink: 0; align-self: center; }
/* quiet premium lock: ghosted blur + a small dim lock, "there's more here" */
.prob-row.locked .vals { filter: blur(3.5px); opacity: .45; }
.prob-row.locked .lock-ic {
  position: absolute; inset: 0; margin: auto;
  width: 11px; height: 13px; color: var(--text-3);
  filter: none;
}
.prob-row.locked { position: relative; }
.prob-row.locked .lock-wrap { position: relative; display: flex; gap: 12px; margin-left: auto; }
.view-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--brand);
  margin-top: 8px; padding-left: 12px;
}
.probs-note { font-family: var(--mono); font-size: .7rem; color: var(--text-3); margin-top: 16px; letter-spacing: .02em; }

/* ---- following / the board ------------------------------------------------ */
.following {
  position: relative;
  padding: clamp(72px, 10vw, 124px) 0;
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.following-inner { max-width: 720px; margin-inline: auto; text-align: center; }
.following-inner .sec-label { justify-content: center; }
.following-sub {
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.9vw, 1.16rem);
  margin: 18px auto 0; max-width: 50ch;
  line-height: 1.6;
}
.push-stage {
  position: relative;
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 460px;
  isolation: isolate;
}
.push-glow {
  position: absolute; inset: -30% -16% -16%;
  background: radial-gradient(58% 58% at 50% 52%, rgba(255, 176, 32, .13), transparent 70%);
  filter: blur(22px);
  z-index: -1; pointer-events: none;
}
.push-card {
  background: linear-gradient(180deg, rgba(27, 44, 68, .94), rgba(20, 34, 53, .9));
  -webkit-backdrop-filter: saturate(140%) blur(20px); backdrop-filter: saturate(140%) blur(20px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 18px;
  display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start;
  box-shadow: var(--shadow-sheet);
  text-align: left;
}
.push-icon { width: 38px; height: 38px; border-radius: 9px; box-shadow: 0 0 0 1px var(--line); }
.push-body { min-width: 0; }
.push-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
  font-family: var(--mono); font-size: .66rem;
  color: var(--text-3); letter-spacing: .04em;
}
.push-app { font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.push-title { font-size: .96rem; font-weight: 700; color: var(--text); line-height: 1.3; letter-spacing: -.005em; }
.push-msg   { font-size: .88rem; color: var(--text-2); line-height: 1.5; margin-top: 4px; }
.follow-hint {
  font-family: var(--mono); font-size: .76rem; color: var(--text-3);
  margin-top: 22px; letter-spacing: .02em;
}
.follow-hint .star { color: var(--brand); }

/* ---- honesty -------------------------------------------------------------- */
.honesty {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--hairline);
}
.honesty-inner { max-width: 580px; margin-inline: auto; text-align: center; }
.honesty-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  letter-spacing: -.028em; line-height: 1.06;
}
.honesty p { color: var(--text-2); margin-top: 16px; line-height: 1.7; font-size: 1.02rem; }
.honesty p b { color: var(--text); font-weight: 600; }

/* ---- cta / kick off -------------------------------------------------------- */
.cta { position: relative; overflow: hidden; padding: clamp(80px, 11vw, 150px) 0; border-top: 1px solid var(--hairline); }
.cta-heat {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(820px 480px at 50% 135%, rgba(255, 176, 32, .14), transparent 65%);
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; text-align: center; }
.cta-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: rgba(14, 23, 38, .65);
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em; color: var(--text-2);
  margin-bottom: 22px;
}
.cta-title {
  font-family: var(--display); font-weight: 800; line-height: .98;
  letter-spacing: -.035em;
  font-size: clamp(2.4rem, 5.8vw, 4rem);
}
.cta-title em { font-style: normal; color: var(--brand); }
.cta-sub { color: var(--text-2); font-size: clamp(1.02rem, 1.9vw, 1.18rem); margin: 22px auto 0; max-width: 48ch; line-height: 1.6; }
.signup--lg { max-width: 540px; margin: 30px auto 0; }
.cta .micro { text-align: center; }

/* ---- footer ---------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
@media (min-width: 680px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand-name { font-size: 1.08rem; }
.footer-tag { color: var(--text-3); font-size: .92rem; margin-top: 8px; max-width: 34ch; line-height: 1.55; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-h { font-family: var(--mono); font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; color: var(--text-3); margin-bottom: 4px; }
.footer-col a { color: var(--text-2); font-size: .94rem; transition: color .2s; width: fit-content; }
.footer-col a:hover { color: var(--brand-2); }
.footer-18 {
  font-family: var(--mono); font-weight: 700; font-size: .72rem; color: var(--text);
  border: 1px solid var(--line); border-radius: 6px; padding: 4px 8px; width: fit-content;
}
.footer-mono { font-family: var(--mono); font-size: .8rem; color: var(--text-3); }
.footer-legal { color: var(--text-3); font-size: .78rem; margin-top: 44px; max-width: 68ch; line-height: 1.55; }
