/* =========================================================
   STREETPACER — LANDING PAGE STYLES
   Violet (Dark · Standard) + Blaze-Orange (Hell) — wie App
   ========================================================= */

@import url("fonts.css");

:root {
  /* --- surfaces (dark default) --- */
  --bg: #06060C;
  --bg-rgb: 6, 6, 12;
  --bg-2: #0B0A12;
  --surface: #110F18;
  --surface-2: #16131F;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --text: #ECEAF4;
  --text-2: #9C97AB;
  --text-3: #5E5970;

  /* --- accent (Violet — Streetpacer Standard) --- */
  --accent: #7C5CFF;
  --accent-2: #9B82FF;
  --accent-3: #B7A6FF;
  --accent-rgb: 124, 92, 255;
  --on-accent: #FFFFFF;
  --accent-dim: rgba(var(--accent-rgb), 0.14);

  /* --- legacy aliases (Altnamen bleiben gültig) --- */
  --cyan: var(--accent);
  --cyan-2: var(--accent-2);
  --cyan-dim: var(--accent-dim);

  /* --- semantic overlay tints (kippen im Hell-Modus) --- */
  --tint-1: rgba(255, 255, 255, 0.025);
  --tint-2: rgba(255, 255, 255, 0.05);
  --tint-3: rgba(255, 255, 255, 0.085);

  --green: #3ED56F;
  --gold: #FFD24A;
  --red: #FF4D5E;
  --orange: #FF8B3D;

  --font-ui: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-glow: 0 0 40px rgba(var(--accent-rgb), 0.25);
}

/* =========================================================
   HELL-MODUS — Blaze-Orange (data-theme="light")
   ========================================================= */
html[data-theme="light"] {
  --bg: #FBF6F2;
  --bg-rgb: 251, 246, 242;
  --bg-2: #F4EBE3;
  --surface: #FFFFFF;
  --surface-2: #FBF1EA;
  --line: rgba(20, 12, 6, 0.10);
  --line-2: rgba(20, 12, 6, 0.16);
  --text: #1A130D;
  --text-2: #5E5248;
  --text-3: #8C7E72;

  --accent: #FF5719;
  --accent-2: #FF7A47;
  --accent-3: #FF9D74;
  --accent-rgb: 255, 87, 25;
  --on-accent: #160600;
  --accent-dim: rgba(var(--accent-rgb), 0.12);

  --tint-1: rgba(20, 12, 6, 0.035);
  --tint-2: rgba(20, 12, 6, 0.06);
  --tint-3: rgba(20, 12, 6, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

.mono { font-family: var(--font-mono); font-feature-settings: "zero", "ss01"; }
.grad {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 38%, var(--accent-3) 72%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 0;
  transition: transform .2s ease, box-shadow .3s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--cyan);
  color: var(--on-accent);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.4), 0 8px 30px -8px rgba(var(--accent-rgb), 0.55);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--cyan-2);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.6), 0 12px 40px -8px rgba(var(--accent-rgb), 0.7);
}
.btn--ghost {
  background: var(--tint-2);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--ghost:hover {
  background: var(--tint-3);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.btn--lg { padding: 14px 22px; font-size: 15px; }
.btn--xl { padding: 18px 32px; font-size: 16px; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* Coming Soon button */
.btn--soon {
  position: relative;
  opacity: 0.85;
  cursor: not-allowed;
}
.btn--soon:hover { transform: none; }
.btn__badge {
  margin-left: 4px;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--cyan);
  font-family: var(--font-mono);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.3);
}

/* Live Ticker — fahrer online */
.liveTicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(62,213,111,0.08);
  border: 1px solid rgba(62,213,111,0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}
.liveTicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  position: relative;
  flex-shrink: 0;
}
.liveTicker__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  animation: liveRing 2.6s ease-out infinite;
}
@keyframes liveRing {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.liveTicker__num {
  font-weight: 700;
  color: var(--green);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.liveTicker__txt {
  color: var(--text-2);
}
.liveTicker--cta {
  background: rgba(62,213,111,0.06);
  padding: 5px 10px;
}

.hero__topRow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(var(--bg-rgb), 0.7);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo {
  height: 30px;
  width: auto;
  display: block;
}
.nav__brand:hover .nav__logo { opacity: 0.85; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.nav__links a {
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active {
  color: var(--cyan);
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--cyan);
}

@media (max-width: 760px) {
  .nav { padding: 12px 18px; }
  .nav__links { display: none; }
  .nav__logo { height: 24px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 32px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%, rgba(var(--accent-rgb), 0.10), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(var(--accent-rgb), 0.06), transparent 70%),
    var(--bg);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--tint-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--tint-1) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  will-change: opacity;
}
.hero__glow--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.6), transparent 60%);
  top: -120px; left: -80px;
  animation: pulse 12s ease-in-out infinite;
}
.hero__glow--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.35), transparent 60%);
  bottom: -100px; right: 10%;
  animation: pulse 14s ease-in-out infinite 3s;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.hero__track {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}

.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.25);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 24px 0 24px;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero__sub b { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 480px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.metric__num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric__num i {
  font-size: 16px;
  color: var(--cyan);
  font-style: normal;
  margin-left: 2px;
  font-weight: 500;
}
.metric__label {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ----------- PHONE (HERO HUD) ----------- */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  width: 340px;
  aspect-ratio: 9/19.5;
  background: linear-gradient(150deg, #1c1f25 0%, #0a0c10 100%);
  border-radius: 48px;
  padding: 8px;
  box-shadow:
    0 0 0 2px #2a2f37,
    0 0 0 8px #0a0c10,
    0 0 0 9px #1c1f25,
    0 50px 100px -20px rgba(0,0,0,0.7),
    0 0 80px rgba(var(--accent-rgb), 0.2);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 35px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 0 0 1px var(--tint-2);
}
.phone__notch::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0a0c10;
  box-shadow: inset 0 0 0 1px var(--tint-3), inset 0 0 4px rgba(var(--accent-rgb), 0.15);
}
.phone__notch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0c10;
  box-shadow: inset 0 0 0 1px var(--tint-2);
}
.phone__notch--sm {
  width: 90px;
  height: 26px;
  top: 11px;
}
.phone__notch--sm::before {
  right: 9px;
  width: 6px; height: 6px;
}
.phone__notch--sm::after {
  left: 12px;
  width: 4px; height: 4px;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone__shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.4), transparent 70%);
  filter: blur(15px);
  z-index: -1;
}

/* HUD */
.hud {
  height: 100%;
  background: linear-gradient(180deg, #050608 0%, #0a0c10 100%);
  color: var(--text);
  padding: 60px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-ui);
}
.hud__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hud__stop {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,77,94,0.12);
  color: var(--red);
  border: 1px solid rgba(255,77,94,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.hud__stop:hover {
  background: rgba(255,77,94,0.22);
}
.hud__status {
  display: flex;
  flex-direction: column;
  background: rgba(62,213,111,0.08);
  border: 1px solid rgba(62,213,111,0.25);
  border-radius: 10px;
  padding: 4px 8px;
  gap: 0;
  min-width: 78px;
}
.hud__statusRow {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  line-height: 1;
}
.hud__statusRow + .hud__statusRow {
  border-top: 1px solid rgba(62,213,111,0.18);
}
.hud__statusRow svg {
  filter: drop-shadow(0 0 4px rgba(62,213,111,0.5));
  flex-shrink: 0;
}
.hud__statusRow span:nth-of-type(1) {
  flex: 1;
}
.hud__statusDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
.hud__pill {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--tint-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-2);
  font-family: var(--font-mono);
}
.hud__pill b { color: var(--text); }
.hud__pill--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  background: rgba(62,213,111,0.12);
  box-shadow: inset 0 0 0 1px rgba(62,213,111,0.25);
}
.hud__rec {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
.hud__track {
  margin-top: 4px;
}
.hud__trackName {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.1;
}
.hud__trackMeta {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
  font-weight: 500;
}
.hud__trackMeta .mono {
  color: var(--text-2);
  font-weight: 600;
}
.hud__trackMeta b {
  color: var(--text-2);
  font-weight: 600;
}
.hud__time {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.hud__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: stretch;
}
.hud__delta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 5px 12px;
  background: rgba(62,213,111,0.12);
  border-radius: 10px;
  transition: background .3s;
  min-width: 76px;
}
.hud__delta.is-slower { background: rgba(255,77,94,0.12); }
.hud__delta.is-slower .hud__deltaSign,
.hud__delta.is-slower .hud__deltaVal { color: var(--red); }
.hud__deltaTop {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.hud__deltaSign, .hud__deltaVal {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hud__deltaWord {
  font-size: 8px;
  color: var(--text-3);
  letter-spacing: 0.16em;
  font-weight: 700;
  font-family: var(--font-mono);
  margin: 0;
}

.hud__nav {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  min-width: 0;
  overflow: hidden;
}
.hud__navIcon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.5);
  flex-shrink: 0;
}
.hud__navIcon svg { width: 28px; height: 28px; display: block; }
.hud__navMeta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  line-height: 1.1;
  min-width: 0;
  overflow: hidden;
}
.hud__navName {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.hud__navDist {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hud__pace { margin-top: 6px; }
.hud__paceLabel {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-mono);
}
.hud__pacePred b { color: var(--text); }
.hud__paceBar {
  position: relative;
  height: 8px;
  background: var(--tint-2);
  border-radius: 999px;
  overflow: hidden;
}
.hud__paceBar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  bottom: -2px;
  width: 2px;
  margin-left: -1px;
  background: rgba(255,255,255,0.35);
  z-index: 2;
  border-radius: 1px;
}
.hud__paceBar::after {
  content: "SLOW   ·   FAST";
  position: absolute;
  inset: 0;
  display: none;
}
.hud__paceFill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  background: var(--green);
  border-radius: 0;
  box-shadow: 0 0 12px rgba(62,213,111,0.55);
  transition: width .25s ease, left .25s ease, background .3s ease, box-shadow .3s ease;
}
.hud__paceFill.is-slower {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255,77,94,0.55);
}
.hud__paceEnds {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-3);
}
.hud__paceEnds .slow { color: rgba(255,77,94,0.6); }
.hud__paceEnds .fast { color: rgba(62,213,111,0.7); }

.hud__sectors {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sector {
  padding: 10px 12px;
  background: var(--tint-2);
  border-radius: 10px;
  font-family: var(--font-mono);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
  transition: background .3s;
}
.sector__head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sector__name {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.sector__badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--cyan);
}
.sector__badge--gold {
  background: rgba(255,210,74,0.12);
  color: var(--gold);
}
.sector__delta {
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.sector b {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sector--ok b { color: var(--text); }
.sector--best b { color: var(--gold); }
.sector--live {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 0 20px -8px rgba(var(--accent-rgb), 0.5);
}
.sector--live b { color: var(--cyan); }
.sector--live .sector__badge {
  animation: blink 2.2s infinite;
}

.hud__bottom {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
}
.hud__speed {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
.hud__speedNum {
  font-family: var(--font-mono);
  font-size: 84px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  text-shadow: 0 0 28px rgba(var(--accent-rgb), 0.5);
}
.hud__speedUnit {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.14em;
  font-family: var(--font-mono);
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-weight: 600;
}
.hero__scrollLine {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
  animation: scrollLine 3.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 960px) {
  .hero { padding: 110px 20px 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__phone { order: -1; }
  .phone { width: 280px; transform: rotateY(0) rotateX(0); }
  .hero__metrics { max-width: none; }
  .hero__scroll { display: none; }
  .hud { padding: 54px 16px 16px; gap: 10px; }
  .hud__time { font-size: 40px; }
  .hud__speedNum { font-size: 68px; }
  .hud__trackName { font-size: 15px; }
  .hud__deltaSign, .hud__deltaVal { font-size: 16px; }
  .hud__delta { padding: 6px 10px; }
}
@media (max-width: 400px) {
  .phone { width: 240px; }
  .hud { padding: 48px 14px 14px; gap: 8px; }
  .hud__time { font-size: 34px; }
  .hud__speedNum { font-size: 56px; }
  .sector b { font-size: 12px; }
}

/* =========================================================
   PAGE HERO — sub-pages (features/pricing/download)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 160px 32px 80px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--accent-rgb), 0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 22px 0 22px;
  text-wrap: balance;
}
.page-hero__sub {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .page-hero { padding: 120px 20px 60px; }
}
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-2);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-3);
}
.marquee .dot2 { color: var(--cyan); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 140px 32px;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.section__head {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.section__title {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  text-wrap: balance;
}
.section__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
.caption {
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .section { padding: 90px 20px; }
  .section__head { margin-bottom: 50px; }
}

/* =========================================================
   TELEMETRY
   ========================================================= */
.telem__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
}
.telem__card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.telem__card--main {
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.telem__cardHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.telem__sessionTitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.telem__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,77,94,0.08);
  color: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.rec {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: blink 1.8s infinite;
}
.telem__chart {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--line);
}
.telem__axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-3);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.telem__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpi {
  background: var(--tint-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.kpi__label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-3);
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 6px;
}
.kpi__val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.kpi__val i {
  font-size: 11px;
  color: var(--text-3);
  font-style: normal;
  font-weight: 500;
}
.kpi__val--gold { color: var(--gold); }
.kpi__val--green { color: var(--green); }

.telem__sideTitle {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 10px;
  letter-spacing: -0.02em;
}
.telem__sideText {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.telem__bigStat {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
}
.telem__bigStat span {
  font-size: 56px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
  line-height: 1;
}
.telem__bigStat i {
  font-size: 16px;
  color: var(--text-3);
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-mono);
}
.telem__statSub {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  color: var(--text-3);
  letter-spacing: 0.15em;
  font-weight: 600;
}

.telem__wrongway {
  margin-top: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.ww__arrow {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-mono);
  width: 80px;
  text-align: center;
  border-radius: 12px;
  padding: 18px 0;
}
.ww__arrow--ok { color: var(--green); background: rgba(62,213,111,0.08); box-shadow: inset 0 0 0 1px rgba(62,213,111,0.2); }
.ww__arrow--bad { color: var(--red); background: rgba(255,77,94,0.08); box-shadow: inset 0 0 0 1px rgba(255,77,94,0.2); }
.ww__divider {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}

.laps {
  margin-top: 6px;
}
.laps li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr 70px;
  align-items: center;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.laps li:last-child { border-bottom: 0; }
.laps__n { color: var(--text-3); font-family: var(--font-mono); font-size: 12px; }
.laps__t { color: var(--text); font-variant-numeric: tabular-nums; font-size: 14px; font-weight: 600; }
.laps__d { font-size: 12px; color: var(--text-3); font-variant-numeric: tabular-nums; text-align: right; }
.delta--green { color: var(--green) !important; }
.delta--red { color: var(--red) !important; }
.delta--gold { color: var(--gold) !important; font-weight: 700; }
.laps__pb {
  background: linear-gradient(90deg, rgba(255,210,74,0.08), transparent);
  border-radius: 6px;
}
.laps__live {
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.08), transparent);
  border-radius: 6px;
}
.laps__live .laps__d { color: var(--cyan); animation: blink 2s infinite; }

@media (max-width: 960px) {
  .telem__grid { grid-template-columns: 1fr; }
  .telem__card--main { grid-row: auto; }
  .telem__kpis { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   FEATURES
   ========================================================= */
.features__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.features__phones {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone--small {
  position: absolute;
  width: 240px;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.phone--back { transform: translate(-110px, 30px) rotate(-8deg); opacity: 0.55; z-index: 1; }
.phone--mid { transform: translate(110px, -30px) rotate(8deg); opacity: 0.75; z-index: 2; }
.phone--front { z-index: 3; }
.features__phones:hover .phone--back { transform: translate(-150px, 30px) rotate(-12deg); }
.features__phones:hover .phone--mid { transform: translate(150px, -30px) rotate(12deg); }

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  counter-reset: feat;
}
.feat {
  position: relative;
  overflow: hidden;
  counter-increment: feat;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
/* top accent line (sweeps in on hover) */
.feat::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
/* index number (01 … 08) */
.feat::after {
  content: "0" counter(feat);
  position: absolute; top: 26px; right: 24px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--text-3);
  transition: color .3s ease;
}
.feat:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6), 0 0 44px -18px rgba(var(--accent-rgb), 0.5);
}
.feat:hover::before { transform: scaleX(1); }
.feat:hover::after { color: var(--accent); }
.feat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-rgb), 0.07));
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.28), 0 10px 24px -12px rgba(var(--accent-rgb), 0.55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feat:hover .feat__icon {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.45), 0 14px 30px -10px rgba(var(--accent-rgb), 0.6);
}
.feat h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feat p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .features__layout { grid-template-columns: 1fr; gap: 40px; }
  .features__grid { grid-template-columns: 1fr; }
  .features__phones { height: 480px; }
  .phone--small { width: 200px; }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.how__steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 5%; right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  transition: transform .3s ease, border-color .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.3);
}
.step__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  padding: 4px 10px;
  background: var(--cyan-dim);
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.25);
}
.step__icon {
  color: var(--cyan);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(var(--accent-rgb), 0.3));
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .how__steps { grid-template-columns: 1fr 1fr; }
  .how__steps::before { display: none; }
}
@media (max-width: 540px) {
  .how__steps { grid-template-columns: 1fr; }
}

/* =========================================================
   PRICING
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 34px 34px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); }
.plan--pro {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.22),
    0 44px 88px -34px rgba(var(--accent-rgb), 0.45);
  background:
    radial-gradient(120% 55% at 50% -8%, rgba(var(--accent-rgb), 0.20), transparent 62%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--bg-2) 100%);
}
/* glowing top edge on the Pro card */
.plan--pro::before {
  content: "";
  position: absolute; top: 0; left: 22px; right: 22px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.7);
}
.plan--pro:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.6);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.35), 0 52px 96px -32px rgba(var(--accent-rgb), 0.55);
}
.plan__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--on-accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px -6px rgba(var(--accent-rgb), 0.7), inset 0 0 0 1px rgba(255,255,255,0.16);
}
.plan__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--tint-2);
  border: 1px solid var(--line-2);
}
.plan__badge--pro {
  color: var(--on-accent);
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 26px -6px rgba(var(--accent-rgb), 0.75);
}
.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.plan__amount {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
}
.plan--pro .plan__amount { color: var(--accent); text-shadow: 0 0 32px rgba(var(--accent-rgb), 0.4); }
.plan__per {
  font-size: 15px;
  color: var(--text-3);
  font-weight: 500;
}
.plan__note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.plan__alt { color: var(--text-3); }
.plan__save {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  padding: 3px 9px;
  border-radius: 999px;
}
.plan__sep {
  height: 1px;
  margin: 26px 0 22px;
  background: linear-gradient(90deg, transparent, var(--line-2) 18%, var(--line-2) 82%, transparent);
}
.plan__body { flex: 1; }
.plan__lead {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.plan__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.35;
}
.plan__list li b { font-weight: 700; }
.plan__list li.muted { color: var(--text-3); }
.plan .btn { margin-top: 28px; }

/* crisp SVG tick / dash badges (mask-based, theme-tinted) */
.tick {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 6px;
}
.tick::before {
  content: "";
  width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206%209%2017l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206%209%2017l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tick--no::before {
  width: 11px; height: 11px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3C/svg%3E");
}
.tick--yes { background: rgba(var(--accent-rgb), 0.13); color: var(--accent); }
.tick--pro {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 4px 14px -4px rgba(var(--accent-rgb), 0.7);
}
.tick--no { background: var(--tint-2); color: var(--text-3); }

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; gap: 30px; }
  .plan { padding: 30px 26px; }
  .plan__amount { font-size: 40px; }
}

/* =========================================================
   DOWNLOAD PAGE
   ========================================================= */
.dl-hero .hero__topRow {
  justify-content: center;
  margin-bottom: 20px;
}

.dl-buttons {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.dl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.dl-card:hover:not(.dl-card--soon) {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 20px 40px -15px rgba(var(--accent-rgb), 0.35);
}
.dl-card--soon { cursor: default; opacity: 0.7; }
.dl-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cyan-dim);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.25);
}
.dl-card--soon .dl-card__icon {
  background: var(--tint-2);
  color: var(--text-3);
  box-shadow: inset 0 0 0 1px var(--line);
}
.dl-card__body {
  flex: 1;
  text-align: left;
  min-width: 0;
}
.dl-card__caption {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.dl-card__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dl-card__arrow {
  color: var(--cyan);
  flex-shrink: 0;
}
.dl-card__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--tint-2);
  color: var(--text-3);
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 1px var(--line);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .dl-buttons { grid-template-columns: 1fr; }
}

/* QUICK START */
.qs-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.qs-step {
  padding: 26px 22px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.qs-step:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.3);
}
.qs-step__num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  padding: 4px 10px;
  background: var(--cyan-dim);
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.25);
}
.qs-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.qs-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .qs-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .qs-steps { grid-template-columns: 1fr; }
}

/* REQUIREMENTS */
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.req-card {
  padding: 26px 22px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.req-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cyan-dim);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.2);
}
.req-card__label {
  font-size: 10px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 6px;
}
.req-card__val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.req-card__sub {
  font-size: 12px;
  color: var(--text-2);
}

@media (max-width: 880px) {
  .req-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .req-grid { grid-template-columns: 1fr; }
}

/* DOWNLOAD TIP */
.dl-tip {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 22px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255,210,74,0.06), var(--surface));
  border: 1px solid rgba(255,210,74,0.2);
  border-radius: var(--radius);
}
.dl-tip__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,210,74,0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dl-tip__body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.dl-tip__body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.compare {
  max-width: 940px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
}
.compare__table th,
.compare__table td {
  padding: 15px 26px;
  text-align: left;
  font-size: 14px;
}
.compare__table tbody td { border-bottom: 1px solid var(--line); }
.compare__table tbody tr:last-child td { border-bottom: 0; }
/* head */
.compare__table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-3);
  text-transform: uppercase;
  background: var(--tint-2);
  border-bottom: 1px solid var(--line-2);
  padding-top: 18px;
  padding-bottom: 18px;
}
.compare__table thead th:nth-child(2),
.compare__table thead th:nth-child(3) { text-align: center; }
/* body */
.compare__table tbody td { color: var(--text-2); }
.compare__table tbody td:first-child { color: var(--text); font-weight: 500; }
.compare__table tbody td:nth-child(2),
.compare__table tbody td:nth-child(3) { text-align: center; font-weight: 600; color: var(--text); }
.compare__table tbody tr:hover td { background: var(--tint-1); }
/* category sub-heads */
.compare__cat td {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.compare__cat:hover td { background: rgba(var(--accent-rgb), 0.05); }
/* highlighted Pro lane */
.compare__pro {
  color: var(--accent) !important;
  font-weight: 700 !important;
  background: rgba(var(--accent-rgb), 0.07);
  box-shadow: inset 1px 0 0 rgba(var(--accent-rgb), 0.2), inset -1px 0 0 rgba(var(--accent-rgb), 0.2);
}
.compare__table thead th.compare__pro {
  color: var(--accent) !important;
  background: rgba(var(--accent-rgb), 0.13);
  box-shadow: inset 1px 1px 0 rgba(var(--accent-rgb), 0.28), inset -1px 0 0 rgba(var(--accent-rgb), 0.28);
}
.compare__table tbody tr:hover td.compare__pro { background: rgba(var(--accent-rgb), 0.11); }
/* mark badges (✓ / —) */
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 8px;
}
.mark::before {
  content: "";
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206%209%2017l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M20%206%209%2017l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.mark--yes { color: var(--green); background: rgba(62, 213, 111, 0.13); }
.mark--yes::before { width: 13px; height: 13px; }
.mark--no { color: var(--text-3); }
.mark--no::before {
  width: 12px; height: 12px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='3'%20stroke-linecap='round'%3E%3Cpath%20d='M5%2012h14'/%3E%3C/svg%3E");
}
@media (max-width: 640px) {
  /* Tabelle in die Viewport-Breite zwingen statt horizontal scrollen (iPhone) */
  .compare { max-width: 100%; }
  .compare__table { table-layout: fixed; width: 100% !important; min-width: 0 !important; }
  .compare__table th, .compare__table td { padding: 12px 10px; font-size: 12px; overflow-wrap: anywhere; word-break: break-word; }
  .compare__table th:first-child, .compare__table td:first-child { width: 46%; }
  .compare__table th:nth-child(n+2), .compare__table td:nth-child(n+2) { width: 27%; text-align: center; }
  .compare__cat td { font-size: 10px; }
  .mark { width: 22px; height: 22px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] {
  border-color: rgba(var(--accent-rgb), 0.3);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg {
  transition: transform .25s ease;
  color: var(--text-3);
  flex-shrink: 0;
}
.faq__item[open] summary svg {
  transform: rotate(180deg);
  color: var(--cyan);
}
.faq__item p {
  padding: 0 22px 22px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.faq__item p b { color: var(--text); }
.cta {
  max-width: none;
  padding: 0;
  margin: 0;
}
.cta__inner {
  max-width: 1200px;
  margin: 80px auto 120px;
  padding: 80px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta__bg svg { width: 100%; height: 100%; }
.cta__inner > * { position: relative; z-index: 1; }
.cta__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.cta__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  justify-content: center;
}
.cta__meta .liveTicker {
  font-family: var(--font-ui);
  letter-spacing: normal;
}
.cta__meta .dot2 { color: var(--cyan); font-size: 6px; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 60px 32px 30px;
}
.foot__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.foot__brand img {
  width: 48px; height: 48px;
  display: block;
}
.foot__brand--wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.foot__brand--wordmark img {
  width: auto;
  height: 32px;
  display: block;
}
.foot__brand--wordmark .foot__tag {
  font-size: 12px;
  color: var(--text-3);
}
.foot__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.foot__name b { color: var(--cyan); }
.foot__tag {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.foot__h {
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot__cols a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 4px 0;
  transition: color .2s;
}
.foot__cols a:hover { color: var(--cyan); }
.foot__addr {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-3);
  margin-top: 12px;
}
.foot__soon {
  opacity: 0.55;
  pointer-events: none;
}
.foot__legal {
  max-width: 1320px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  color: var(--text-3);
}
.foot__disc {
  flex: 1 1 auto;
  text-align: center;
  color: var(--text-3);
  opacity: 0.85;
}

@media (max-width: 760px) {
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .foot__disc { text-align: left; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
