/* =========================================================================
   F1Track — marketing site design system
   Hand-authored, zero dependencies. Dark-first, broadcast timing-tower look.
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Brand */
  --accent: #E10600;          /* racing red */
  --accent-2: #FF4D00;        /* gradient orange */

  /* Surfaces */
  --bg: #000000;
  --bg-2: #0A0A0C;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --card: rgba(0, 0, 0, 0.92);

  /* Lines */
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-2: rgba(255, 255, 255, 0.12);

  /* Text */
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.65);
  --text-mute: rgba(255, 255, 255, 0.45);

  /* Misc palette */
  --grey: #2D2D2F;
  --gold: #FFD700;
  --silver: #C0C0C0;
  --bronze: #CD7F32;
  --purple: #B23BD3;          /* fastest lap */
  --amber: #FFA500;           /* safety car */

  /* Tyres */
  --tyre-soft: #E10600;
  --tyre-medium: #FFD500;
  --tyre-hard: #FFFFFF;
  --tyre-inter: #39B54A;
  --tyre-wet: #0B6BFF;

  /* Team colors (demo tower) */
  --team-mclaren: #FF8000;
  --team-ferrari: #E80020;
  --team-mercedes: #27F4D2;
  --team-redbull: #3671C6;
  --team-aston: #229971;
  --team-williams: #64C4FF;

  /* Typography */
  --font-rounded: ui-rounded, "SF Pro Rounded", "Hiragino Maru Gothic ProN", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo", monospace;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: clamp(0.7rem, 0.66rem + 0.2vw, 0.78rem);
  --fs-body: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  --fs-h3: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --fs-h2: clamp(1.5rem, 1.2rem + 1.4vw, 2.3rem);
  --fs-h1: clamp(2.3rem, 1.6rem + 3.4vw, 4.2rem);

  /* Radii & spacing */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --maxw: 1100px;
  --pad-x: clamp(18px, 5vw, 40px);

  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 18px 40px -24px rgba(0,0,0,0.9);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-rounded);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------- Utilities */
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.accent { color: var(--accent); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

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

/* --------------------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: clamp(56px, 9vw, 110px);
  position: relative;
}

.section + .section { padding-top: 0; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.section-head .eyebrow { margin-bottom: 14px; }

.section-title { font-size: var(--fs-h2); }

.section-sub {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: var(--fs-lead);
  line-height: 1.5;
}

/* Hero / page background glow */
.bg-stage {
  position: relative;
  background:
    radial-gradient(900px 520px at 50% -8%, rgba(225, 6, 0, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 46%);
}

/* --------------------------------------------------------------- Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.brand__logo { height: 22px; width: auto; color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  margin-left: auto;
  list-style: none;
  padding: 0; margin-block: 0;
}

.nav-links a {
  font-family: var(--font-rounded);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 0.18s var(--ease);
}

.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: 4px; }

@media (max-width: 560px) {
  .site-nav__inner { flex-wrap: wrap; gap: 10px 16px; }
  .nav-links { margin-left: 0; width: 100%; justify-content: flex-start; order: 3; }
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s var(--ease), background 0.18s var(--ease),
              border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff1a0d 0%, var(--accent) 60%, #b80500 100%);
  box-shadow: 0 8px 24px -10px rgba(225, 6, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(225, 6, 0, 0.85);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--hairline-2);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

/* App Store badge (styled stand-in) */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  transition: transform 0.16s var(--ease), border-color 0.18s var(--ease);
}

.btn-appstore:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-appstore__logo { width: 22px; height: 22px; flex: 0 0 auto; fill: #fff; }

.btn-appstore__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-appstore__small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.btn-appstore__large {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.btn-appstore.is-disabled { opacity: 0.78; cursor: default; }
.btn-appstore.is-disabled:hover { transform: none; border-color: rgba(255,255,255,0.28); }

/* --------------------------------------------------------------- Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --------------------------------------------------------------- Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  padding-block: clamp(48px, 8vw, 96px);
}

.hero-copy { max-width: 560px; }

.hero-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  margin-top: 18px;
  letter-spacing: -0.035em;
}

.hero-title .accent { color: var(--accent); }

.hero-sub {
  margin-top: 20px;
  color: var(--text-dim);
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-microcopy {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .hero-sub { max-width: none; }
  .hero-visual { order: 2; }
}

/* ===================================================================
   THE SIGNATURE PIECE — CSS timing tower
   =================================================================== */
.tower {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px 10px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-rounded);
}

.tower-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px 10px;
}

.tower-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
}

.tower-brand__f1 { font-size: 1.05rem; color: #fff; }
.tower-brand__track { font-size: 0.74rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.02em; }

.tower-lap {
  margin-left: auto;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
}

.tower-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 8px;
}

.tower-track-name {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.tower-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tower-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 8px 0 10px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

/* left team accent bar + soft gradient bleed (set --team per row) */
.tower-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--team, var(--grey));
}

.tower-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--team, transparent) 14%, transparent),
    transparent 42%);
  pointer-events: none;
}

.tower-row.is-featured {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.10);
}

.tower-row > * { position: relative; z-index: 1; }

.tower-acro {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #fff;
  min-width: 44px;
}

.tower-star {
  color: var(--gold);
  font-size: 0.8rem;
  line-height: 1;
}

.tower-gap {
  margin-left: auto;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  min-width: 66px;
}

.tower-gap.is-leader,
.tower-gap.is-muted { color: var(--text-mute); }
.tower-gap.is-lapped { color: rgba(225, 6, 0, 0.9); }

.tower-foot {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 4px 2px;
  color: var(--text-mute);
  font-size: 0.7rem;
  font-weight: 600;
}

/* --------------------------------------------------------------- Pos badge */
.pos-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: var(--r-sm);
  font-family: var(--font-rounded);
  font-weight: 900;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
}

.pos-badge.p1 {
  color: #000;
  background: linear-gradient(180deg, #FFE07A, #D4A017);
  border-color: rgba(255, 215, 0, 0.6);
}

.pos-badge.p2 {
  color: #000;
  background: linear-gradient(180deg, #E8E8E8, #9A9A9A);
  border-color: rgba(192, 192, 192, 0.5);
}

.pos-badge.p3 {
  color: #000;
  background: linear-gradient(180deg, #D9904D, #8B5A2B);
  border-color: rgba(205, 127, 50, 0.5);
}

/* --------------------------------------------------------------- Tyre dot */
.tyre-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--grey);
  font-family: var(--font-rounded);
  font-weight: 900;
  font-size: 0.5rem;
  line-height: 1;
  flex: 0 0 auto;
  background: transparent;
}

.tyre-dot.soft   { border-color: var(--tyre-soft);   color: var(--tyre-soft); }
.tyre-dot.medium { border-color: var(--tyre-medium); color: var(--tyre-medium); }
.tyre-dot.hard   { border-color: var(--tyre-hard);   color: var(--tyre-hard); }
.tyre-dot.inter  { border-color: var(--tyre-inter);  color: var(--tyre-inter); }
.tyre-dot.wet    { border-color: var(--tyre-wet);    color: var(--tyre-wet); }

/* --------------------------------------------------------------- Pills / chips */
.pill,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--hairline-2);
}

/* tinted variants — set --tint to recolor fill + stroke + text */
.chip[style*="--tint"],
.pill[style*="--tint"] {
  color: var(--tint);
  background: color-mix(in srgb, var(--tint) 16%, transparent);
  border-color: color-mix(in srgb, var(--tint) 45%, transparent);
}

.chip--flag-green { --tint: #2ecc71; }
.chip--flag-yellow { color: #000; background: var(--gold); border-color: var(--gold); }
.chip--flag-red { --tint: var(--accent); }
.chip--flag-chequered {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55);
}
.chip--sc { color: #000; background: var(--amber); border-color: var(--amber); }
.chip--fastest { --tint: var(--purple); }

/* LIVE chip with pulsing dot */
.chip-live {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.chip-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55);
  animation: pulse-dot 1.6s var(--ease) infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

/* --------------------------------------------------------------- Lap ring */
.lap-ring {
  --pct: 72;
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--bg) 71%, transparent 72% 100%),
    conic-gradient(var(--accent-2) 0, var(--accent) calc(var(--pct) * 1%), rgba(255,255,255,0.08) 0);
  display: grid;
  place-items: center;
}

.lap-ring__label {
  text-align: center;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.lap-ring__num { display: block; font-size: 1.3rem; font-weight: 700; color: #fff; }
.lap-ring__cap { display: block; font-size: 0.58rem; letter-spacing: 0.14em; color: var(--text-mute); text-transform: uppercase; }

/* --------------------------------------------------------------- Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--hairline-2);
  background: var(--surface-2);
}

.feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  color: var(--accent);
  font-size: 1.2rem;
}

.feature-card__title { font-size: var(--fs-h3); margin-bottom: 8px; }
.feature-card__body { color: var(--text-dim); font-size: 0.95rem; line-height: 1.55; }

/* --------------------------------------------------------------- Platforms */
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.platform {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.platform:hover { border-color: var(--hairline-2); background: var(--surface-2); }

.platform__icon { font-size: 1.4rem; color: var(--text-dim); }

.platform__name {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 0.98rem;
}

.platform__note { color: var(--text-mute); font-size: 0.8rem; }

/* --------------------------------------------------------------- Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 760px;
}

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.plan-pro {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background:
    radial-gradient(420px 220px at 50% -10%, rgba(225,6,0,0.14), transparent 70%),
    var(--surface);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent),
              0 24px 60px -34px rgba(225,6,0,0.6);
}

.plan__badge {
  position: absolute;
  top: -11px;
  left: 28px;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  background: var(--accent);
}

.plan__name {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.plan__price {
  font-family: var(--font-rounded);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.plan__price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0;
}

.plan__tag { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 20px; }

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.94rem;
  color: var(--text-dim);
}

.plan-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    color-mix(in srgb, var(--accent) 22%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.4 2.4L12 5.2' fill='none' stroke='%23E10600' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.plan-list li.is-off { color: var(--text-mute); }
.plan-list li.is-off::before {
  background: rgba(255,255,255,0.05);
  content: "–";
  color: var(--text-mute);
  font-weight: 700;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
}

/* --------------------------------------------------------------- Gallery / devices */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.device-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  aspect-ratio: 9 / 19;
  max-width: 240px;
  border-radius: 28px;
  background: var(--bg-2);
  border: 1px solid var(--hairline-2);
  box-shadow: inset 0 0 0 6px rgba(0,0,0,0.6), var(--shadow-card);
  color: var(--text-mute);
  text-align: center;
  padding: 24px;
}

.phone-frame { /* alias for hand-authored markup */ }

.device-frame__label {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.device-frame__note { font-size: 0.74rem; }

.device-frame__icon {
  font-size: 1.6rem;
  opacity: 0.6;
}

/* Real screenshots in a lightweight phone frame */
.shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 248px;
}

.shot__frame {
  width: 100%;
  padding: 6px;
  border-radius: 30px;
  background: #0c0c0e;
  border: 1px solid var(--hairline-2);
  box-shadow: var(--shadow-card);
}

.shot__frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.shot figcaption {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------- Legal */
.legal {
  max-width: 70ch;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-dim);
}

.legal h1 {
  font-size: var(--fs-h2);
  color: var(--text);
  margin-bottom: 8px;
}

.legal h2 {
  font-size: var(--fs-h3);
  color: var(--text);
  margin: 36px 0 12px;
}

.legal h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 24px 0 8px;
}

.legal p { margin: 0 0 16px; }

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li { margin-bottom: 8px; }

.legal strong { color: var(--text); font-weight: 700; }

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover { color: var(--accent-2); }

/* Buttons inside legal/body copy keep their own colour + no underline
   (otherwise `.legal a` paints the label accent-red over a red button). */
.legal a.btn { text-decoration: none; }
.legal a.btn-primary,
.legal a.btn-appstore { color: #fff; }
.legal a.btn-ghost { color: var(--text); }
.legal a.btn:hover { color: #fff; }

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 14px;
}

.feedback-note {
  font-size: 0.92rem;
  color: var(--text-mute);
}

.legal-meta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-bottom: 28px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.legal-back:hover { color: var(--text); }

/* --------------------------------------------------------------- Footer */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-2);
  padding-block: clamp(40px, 6vw, 64px);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 32px;
}

.footer-brand__logo { height: 22px; margin-bottom: 14px; color: var(--text); }

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 34ch;
}

.footer-col h3,
.footer-col h4 {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: var(--text-dim);
  font-size: 0.92rem;
  transition: color 0.18s var(--ease);
}

.footer-col a:hover { color: var(--text); }

.footer-soon {
  font-size: 0.84rem;
  color: var(--text-mute);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.disclaimer {
  color: var(--text-mute);
  font-size: 0.76rem;
  line-height: 1.55;
  max-width: 90ch;
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 440px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .chip-live .dot { animation: none; }
}

/* =========================================================================
   Conversion landing page
   Editorial race-broadcast direction: real product first, benefit-led story.
   ========================================================================= */

.landing-page {
  --maxw: 1180px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 100% 84px,
    #000;
}

.landing-page main { overflow: hidden; }

.landing-page .site-nav {
  background: rgba(0, 0, 0, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.landing-page .site-nav__inner { min-height: 68px; }

.landing-page .section {
  padding-block: clamp(84px, 11vw, 150px);
}

.landing-page .section + .section {
  padding-top: clamp(84px, 11vw, 150px);
}

.landing-page section[id] { scroll-margin-top: 80px; }

.landing-page .eyebrow {
  color: #ff3b30;
  letter-spacing: 0.18em;
}

.section-title--large {
  font-size: clamp(2.25rem, 4.9vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-title--display {
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 1rem;
}

/* Hero */
.hero-sales {
  position: relative;
  min-height: min(880px, calc(100svh - 68px));
  background:
    radial-gradient(700px 520px at 76% 48%, rgba(225, 6, 0, 0.2), transparent 64%),
    radial-gradient(800px 420px at 30% 18%, rgba(255, 77, 0, 0.08), transparent 68%),
    linear-gradient(180deg, #08090b 0%, #030303 66%, #000 100%);
}

.hero-sales::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(118deg, transparent 0 61%, rgba(255,255,255,0.05) 61.1% 61.3%, transparent 61.4%),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,0.018) 119px 120px);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  min-height: min(800px, calc(100svh - 116px));
  padding-top: clamp(44px, 6vw, 80px);
  padding-bottom: clamp(52px, 7vw, 88px);
}

.hero-sales .hero-copy { max-width: 680px; align-self: start; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.76);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-beacon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.55);
  animation: beacon 1.8s var(--ease) infinite;
}

@keyframes beacon {
  0% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

.hero-sales .hero-title {
  margin-top: 20px;
  font-size: clamp(3.2rem, 6.15vw, 5.85rem);
  line-height: 0.9;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.hero-sales .hero-sub {
  max-width: 53ch;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

.hero-sales .hero-cta { margin-top: 34px; }

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.proof-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--font-rounded);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-row li span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.hero-product {
  position: relative;
  min-height: 690px;
  margin: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 52px;
  border: 1px dashed rgba(255,255,255,0.08);
}

.hero-orbit::after {
  inset: 128px;
  border-style: solid;
  border-color: rgba(225,6,0,0.2);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  padding: 7px;
  border-radius: 43px;
  background: linear-gradient(145deg, #555 0%, #101012 11%, #030303 70%, #333 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 50px 90px -28px rgba(0,0,0,0.95),
    0 20px 70px -28px rgba(225,6,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 31%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #000;
}

.phone-shell img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 36px;
}

.phone-shell--hero {
  width: min(350px, 82vw);
  transform: rotate(2.2deg);
  animation: phone-arrive 0.9s var(--ease) both;
}

@keyframes phone-arrive {
  from { opacity: 0; transform: translateY(28px) rotate(4deg) scale(0.96); }
  to { opacity: 1; transform: translateY(0) rotate(2.2deg) scale(1); }
}

.product-callout {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  background: rgba(7,7,8,0.88);
  box-shadow: 0 18px 42px rgba(0,0,0,0.48);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--text-dim);
  font-size: 0.72rem;
  line-height: 1.25;
}

.product-callout strong { color: #fff; }
.product-callout--gap { top: 22%; left: -2%; flex-direction: column; align-items: flex-start; gap: 2px; }
.product-callout--gap strong { font-size: 1.35rem; }
.product-callout--gap .callout-label { color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.product-callout--tyre { right: -3%; bottom: 21%; }

.tyre-mark {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 3px solid var(--tyre-medium);
  border-radius: 50%;
  color: var(--tyre-medium);
  font-family: var(--font-rounded);
  font-size: 0.9rem;
  font-weight: 900;
}

.signal-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.09);
  background: #070708;
  transform: rotate(-1deg) scale(1.01);
}

.signal-strip__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  min-width: max-content;
  padding: 13px 20px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-strip__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Why / benefits */
.section--statement {
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,0.035) 50%, transparent 50.1%),
    radial-gradient(900px 430px at 50% 36%, rgba(225,6,0,0.08), transparent 68%);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.5fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.statement-heading .eyebrow { margin-bottom: 18px; }

.statement-copy {
  padding-left: 22px;
  border-left: 2px solid var(--accent);
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(48px, 7vw, 86px);
}

.benefit-card {
  min-height: 350px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), transparent 46%),
    #070708;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.benefit-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.22); }

.benefit-card--red {
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(255,77,0,0.17), transparent 70%),
    linear-gradient(145deg, rgba(225,6,0,0.13), transparent 48%),
    #080606;
  border-color: rgba(225,6,0,0.34);
}

.benefit-card__index {
  color: var(--text-mute);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin-top: auto;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.benefit-card p {
  margin-top: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 0.94rem;
}

.gap-visual,
.stint-visual,
.driver-visual {
  margin-block: 42px 32px;
}

.gap-visual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.driver-tag {
  color: #fff;
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  font-weight: 900;
}

.gap-line { position: relative; height: 2px; background: rgba(255,255,255,0.1); }
.gap-line i { position: absolute; left: 0; top: -1px; width: 72%; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.gap-visual strong { font-size: 1.05rem; }

.stint-visual { display: grid; grid-template-columns: 1.2fr 1.5fr 0.7fr; gap: 3px; }
.stint { height: 16px; border-radius: 999px; }
.stint--soft { background: var(--tyre-soft); }
.stint--hard { background: var(--tyre-hard); }
.stint--medium { background: var(--tyre-medium); }

.driver-visual {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(54,113,198,0.36), rgba(54,113,198,0.05));
  border-left: 3px solid var(--team-redbull);
}

.position-box { padding: 7px 9px; border-radius: 6px; background: rgba(255,255,255,0.13); font-family: var(--font-mono); font-weight: 700; }
.driver-visual strong { display: block; font-family: var(--font-rounded); font-size: 1.25rem; }
.driver-visual small { display: block; color: var(--text-mute); font-size: 0.7rem; }
.favourite-star { color: var(--gold); font-size: 1.15rem; }

/* Product story */
.race-view {
  position: relative;
  background: #050506;
  border-block: 1px solid rgba(255,255,255,0.07);
}

.race-view::before {
  content: "RACE MODE";
  position: absolute;
  top: 95px;
  right: -0.05em;
  color: rgba(255,255,255,0.018);
  font-family: var(--font-rounded);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.section-head--center {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.story-stack {
  display: grid;
  gap: 22px;
  margin-top: clamp(44px, 7vw, 84px);
}

.story-panel {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background:
    radial-gradient(540px 380px at 86% 60%, rgba(225,6,0,0.11), transparent 72%),
    linear-gradient(135deg, #0c0c0e, #050506 72%);
}

.story-panel--strategy {
  background:
    radial-gradient(540px 380px at 12% 50%, rgba(255,213,0,0.08), transparent 72%),
    linear-gradient(225deg, #0c0c0e, #050506 72%);
}

.story-panel--driver {
  background:
    radial-gradient(540px 380px at 86% 50%, rgba(54,113,198,0.12), transparent 72%),
    linear-gradient(135deg, #0c0c0e, #050506 72%);
}

.story-panel__copy { padding: clamp(34px, 6vw, 76px); }
.story-panel__number { display: block; margin-bottom: 50px; color: rgba(255,255,255,0.18); font-size: 0.84rem; }
.story-panel__copy .eyebrow { margin-bottom: 16px; }
.story-panel__copy h3 { max-width: 13ch; font-size: clamp(2rem, 4.1vw, 3.75rem); line-height: 0.98; letter-spacing: -0.045em; }
.story-panel__copy > p { max-width: 52ch; margin-top: 22px; color: var(--text-dim); line-height: 1.65; }

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.story-points li,
.detail-chips span {
  padding: 7px 11px;
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-family: var(--font-rounded);
  font-size: 0.72rem;
  font-weight: 700;
}

.story-panel__visual {
  align-self: end;
  display: flex;
  justify-content: center;
  padding: 38px 28px 0;
}

.screen-crop {
  width: min(365px, 100%);
  height: 590px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 34px 34px 0 0;
  background: #08080a;
  box-shadow: 0 35px 70px rgba(0,0,0,0.6);
}

.screen-crop img { width: 100%; height: auto; border-radius: 28px 28px 0 0; }

.story-panel--strategy .story-panel__copy { grid-column: 2; grid-row: 1; }
.story-panel--strategy .story-panel__visual { grid-column: 1; grid-row: 1; }
.story-panel--strategy .screen-crop img { transform: translateY(-12px); }
.story-panel--driver .screen-crop img { transform: translateY(-36px); }

.projection-note {
  padding-left: 18px;
  border-left: 2px solid var(--tyre-medium);
  color: rgba(255,255,255,0.52) !important;
  font-size: 0.82rem;
}

.detail-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.detail-chips span { font-family: var(--font-mono); }
.detail-chips .detail-chip--purple { color: #e28aff; border-color: rgba(178,59,211,0.4); background: rgba(178,59,211,0.12); }

/* Everywhere */
.everywhere {
  position: relative;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(225,6,0,0.04) 48.1% 67%, transparent 67.1%),
    #000;
}

.everywhere-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.everywhere-copy .eyebrow { margin-bottom: 18px; }
.everywhere-copy .section-sub { max-width: 48ch; }

.platform-list { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--hairline); }
.platform-list div { display: grid; grid-template-columns: 140px 1fr; gap: 18px; padding-block: 15px; border-bottom: 1px solid var(--hairline); }
.platform-list strong { font-family: var(--font-rounded); font-size: 0.9rem; }
.platform-list span { color: var(--text-mute); font-size: 0.85rem; }

.glance-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.025);
  box-shadow: 0 32px 90px rgba(0,0,0,0.58);
}

.glance-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  background: linear-gradient(145deg, #121214, #080809);
}

.glance-card--widget { grid-column: 1 / -1; min-height: 185px; }
.glance-card__label { color: var(--text-mute); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; }

.lock-activity {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 38px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: #050506;
}

.lock-activity .live-beacon { width: 6px; height: 6px; }
.lock-activity strong { font-family: var(--font-rounded); }
.lock-activity .mono { color: var(--text-dim); font-size: 0.78rem; }

.glance-card--watch { display: flex; flex-direction: column; align-items: center; }
.glance-card--watch .glance-card__label { align-self: flex-start; }
.watch-face {
  width: 116px;
  height: 130px;
  margin-top: 12px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #353539;
  border-radius: 34px;
  background: #000;
  box-shadow: 0 10px 26px rgba(0,0,0,0.5);
}

.watch-face span { color: var(--text-mute); font-size: 0.58rem; }
.watch-face strong { color: var(--accent); font-size: 2rem; }

.mini-tower { display: grid; gap: 6px; margin-top: 22px; }
.mini-tower div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; padding: 9px 11px; border-left: 3px solid var(--team-mclaren); border-radius: 7px; background: rgba(255,128,0,0.08); }
.mini-tower div:nth-child(2) { border-color: var(--team-mclaren); }
.mini-tower div:nth-child(3) { border-color: var(--team-redbull); background: rgba(54,113,198,0.15); }
.mini-tower b { color: var(--text-dim); font-family: var(--font-mono); }
.mini-tower strong { font-family: var(--font-rounded); }
.mini-tower span { color: var(--text-dim); font-size: 0.75rem; }
.mini-tower .is-favourite strong { color: #fff; }

/* Race weekend */
.weekend { background: #060607; border-block: 1px solid rgba(255,255,255,0.07); }
.weekend .section-head { max-width: 780px; }
.weekend .section-head .eyebrow { margin-bottom: 18px; }

.weekend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.weekend-step {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 30px 26px 0;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: #0b0b0d;
}

.weekend-step--live { border-color: rgba(225,6,0,0.38); background: linear-gradient(180deg, rgba(225,6,0,0.08), #0b0b0d 36%); }
.weekend-step__phase { color: var(--text-mute); font-size: 0.68rem; letter-spacing: 0.12em; }
.weekend-step__phase i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.weekend-step h3 { margin-top: 26px; font-size: 1.55rem; }
.weekend-step p { margin-top: 11px; color: var(--text-dim); font-size: 0.9rem; line-height: 1.55; }
.weekend-step__image { position: absolute; left: 22px; right: 22px; top: 235px; height: 430px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); border-radius: 25px 25px 0 0; background: #000; }
.weekend-step__image img { width: 100%; height: auto; }

/* Pro */
.pro-section {
  background:
    radial-gradient(900px 520px at 75% 52%, rgba(225,6,0,0.12), transparent 68%),
    #000;
}

.pro-intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.45fr); gap: 60px; align-items: end; }
.pro-intro .eyebrow { margin-bottom: 18px; }
.pro-intro > p { padding-left: 22px; border-left: 2px solid var(--accent); color: var(--text-dim); line-height: 1.65; }

.pricing--sales {
  max-width: none;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  margin-top: 66px;
}

.pricing--sales .plan { padding: clamp(28px, 4vw, 44px); }
.pricing--sales .plan-pro { transform: translateY(-12px); }
.plan__eyebrow { color: var(--text-mute); font-size: 0.68rem; letter-spacing: 0.14em; }
.pricing--sales .plan__name { margin-top: 22px; font-size: clamp(1.5rem, 2.5vw, 2.15rem); }
.pricing--sales .plan__price { margin-top: 14px; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.pricing--sales .plan__price small { display: block; margin-top: 3px; }
.plan-list--columns { display: grid; grid-template-columns: 1fr 1fr; column-gap: 22px; }
.pricing-note { margin-top: 18px; color: var(--text-mute); font-size: 0.78rem; }

/* Final conversion */
.final-cta { padding-top: clamp(50px, 7vw, 80px) !important; }

.final-cta__inner {
  position: relative;
  overflow: hidden;
  width: calc(100% - (2 * var(--pad-x)));
  padding: clamp(58px, 10vw, 112px) clamp(24px, 7vw, 76px);
  text-align: center;
  border: 1px solid rgba(225,6,0,0.38);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px) 0 0 / 100% 54px,
    radial-gradient(600px 360px at 50% 110%, rgba(225,6,0,0.24), transparent 72%),
    #080809;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.final-cta__inner::before,
.final-cta__inner::after {
  content: "";
  position: absolute;
  top: -30%;
  width: 1px;
  height: 170%;
  background: rgba(255,255,255,0.08);
  transform: rotate(24deg);
}

.final-cta__inner::before { left: 18%; }
.final-cta__inner::after { right: 18%; }
.final-cta__inner > * { position: relative; z-index: 1; }
.final-cta__signal { display: flex; justify-content: center; gap: 10px; margin-bottom: 34px; }
.starting-light { width: 13px; height: 13px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px rgba(225,6,0,0.7); }
.starting-light:nth-child(2) { opacity: 0.85; }
.starting-light:nth-child(3) { opacity: 0.7; }
.starting-light:nth-child(4) { opacity: 0.55; }
.starting-light:nth-child(5) { opacity: 0.4; }
.final-cta .eyebrow { margin-bottom: 24px; }
.final-cta p { max-width: 560px; margin: 26px auto 0; color: var(--text-dim); font-size: 1.05rem; }
.hero-cta--center { justify-content: center; }
.final-cta .hero-microcopy { font-size: 0.8rem; color: var(--text-mute); }

.waitlist-form {
  width: min(680px, 100%);
  margin: 34px auto 0;
  text-align: left;
}

.waitlist-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 22px 60px rgba(0,0,0,0.28);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.waitlist-form__row:focus-within {
  border-color: rgba(225,6,0,0.8);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.14), 0 22px 60px rgba(0,0,0,0.32);
}

.waitlist-form__input {
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 600 1rem/1.2 var(--font-body);
}

.waitlist-form__input::placeholder { color: rgba(255,255,255,0.4); }
.waitlist-form__button { border: 0; }
.waitlist-form__button:disabled { cursor: wait; opacity: 0.68; transform: none; }

.waitlist-form__consent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 0.76rem;
  line-height: 1.45;
}

.waitlist-form__consent input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.waitlist-form__consent a {
  color: var(--text-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waitlist-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.waitlist-form__message {
  min-height: 24px;
  margin-top: 16px !important;
  color: var(--text-mute) !important;
  font-size: 0.84rem !important;
  text-align: center;
}

.waitlist-form[data-state="pending"] .waitlist-form__message { color: var(--text-dim) !important; }
.waitlist-form[data-state="success"] .waitlist-form__message { color: #63e68b !important; }
.waitlist-form[data-state="error"] .waitlist-form__message { color: #ff7b74 !important; }
.waitlist-form[data-state="success"] .waitlist-form__fields { display: none; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr); }
  .hero-product { min-height: 610px; }
  .phone-shell--hero { width: 300px; }
  .hero-orbit { width: 430px; }
  .product-callout--gap { left: -5%; }
  .product-callout--tyre { right: -5%; }
  .story-panel { grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr); }
  .everywhere-grid { grid-template-columns: 1fr; }
  .glance-board { max-width: 700px; width: 100%; margin-inline: auto; }
}

@media (max-width: 820px) {
  .landing-page .nav-links { display: none; }
  .landing-page .nav-cta { margin-left: auto; }
  .hero-sales { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sales .hero-copy { max-width: 720px; margin-inline: auto; }
  .hero-sales .hero-sub { margin-inline: auto; }
  .hero-sales .hero-cta, .proof-row { justify-content: center; }
  .hero-product { min-height: 670px; }
  .phone-shell--hero { width: 330px; }
  .statement-grid, .pro-intro { grid-template-columns: 1fr; gap: 34px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 300px; }
  .story-panel { grid-template-columns: 1fr; min-height: auto; }
  .story-panel__copy { padding-bottom: 38px; }
  .story-panel__copy h3 { max-width: 15ch; }
  .story-panel__visual { align-self: auto; }
  .story-panel--strategy .story-panel__copy,
  .story-panel--strategy .story-panel__visual { grid-column: 1; }
  .story-panel--strategy .story-panel__copy { grid-row: 1; }
  .story-panel--strategy .story-panel__visual { grid-row: 2; }
  .screen-crop { height: 520px; }
  .weekend-grid { grid-template-columns: 1fr; }
  .weekend-step { min-height: 520px; }
  .pricing--sales { grid-template-columns: 1fr; }
  .pricing--sales .plan-pro { transform: none; }
}

@media (max-width: 560px) {
  .landing-page .site-nav__inner { flex-wrap: nowrap; }
  .landing-page .nav-cta { padding: 10px 14px; font-size: 0.78rem; }
  .landing-page .section, .landing-page .section + .section { padding-block: 78px; }
  .hero-grid { padding-top: 50px; }
  .hero-sales .hero-title { font-size: clamp(3rem, 15.7vw, 4.25rem); }
  .hero-sales .hero-sub { font-size: 1rem; }
  .hero-sales .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-sales .hero-cta .btn { width: 100%; }
  .proof-row { gap: 10px 16px; }
  .proof-row li { font-size: 0.72rem; }
  .hero-product { min-height: 610px; margin-inline: -8px; }
  .phone-shell--hero { width: 285px; }
  .hero-orbit { width: 370px; }
  .product-callout { min-width: 120px; padding: 10px; }
  .product-callout--gap { top: 25%; left: 0; }
  .product-callout--tyre { right: 0; bottom: 18%; }
  .signal-strip__track { justify-content: flex-start; }
  .statement-copy, .pro-intro > p { padding-left: 16px; }
  .benefit-card { min-height: 320px; }
  .story-panel { border-radius: 14px; }
  .story-panel__copy { padding: 32px 24px; }
  .story-panel__number { margin-bottom: 34px; }
  .story-panel__copy h3 { font-size: 2.35rem; }
  .story-panel__visual { padding-inline: 16px; }
  .screen-crop { width: 300px; height: 500px; }
  .platform-list div { grid-template-columns: 1fr; gap: 2px; }
  .glance-board { grid-template-columns: 1fr; }
  .glance-card--widget { grid-column: 1; }
  .glance-card--watch { min-height: 220px; }
  .weekend-step { min-height: 540px; }
  .weekend-step__image { top: 250px; }
  .plan-list--columns { grid-template-columns: 1fr; }
  .final-cta__inner { border-radius: 16px; }
  .final-cta .hero-cta { flex-direction: column; align-items: stretch; }
  .final-cta .btn { width: 100%; }
  .waitlist-form__row { grid-template-columns: 1fr; border-radius: 18px; }
  .waitlist-form__input { min-height: 54px; text-align: center; }
  .waitlist-form__button { width: 100%; }
  .waitlist-form__consent { justify-content: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .live-beacon,
  .phone-shell--hero { animation: none; }
}
