<link rel="icon" href="../assets/logo_round.png">
<link rel="apple-touch-icon" href="../assets/logo_round.png">

<style>
/* ═════════════════════════════════════════════════════════════
   RESET + BASE
   ═════════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg-0: #000;
  --bg-1: #0a0e1a;
  --bg-2: #131826;
  --blue-1: #4F8EFF;
  --blue-2: #2563EB;
  --green: #10B981;
  --red: #EF4444;
  --amber: #FFD700;
  --text-0: #fff;
  --text-1: rgba(255,255,255,0.75);
  --text-2: rgba(255,255,255,0.55);
  --text-3: rgba(255,255,255,0.4);
  --border-soft: rgba(255,255,255,0.08);
  --glass: rgba(255,255,255,0.04);
}

body {
  font-family: -apple-system, "SF Pro Display", "Inter", "Helvetica Neue", Roboto, sans-serif;
  background: var(--bg-0);
  color: var(--text-0);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ═════════════════════════════════════════════════════════════
   ANIMATED GRID BACKGROUND
   ═════════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,142,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  animation: gridDrift 30s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 60px 60px, 60px 60px; }
}

/* ═════════════════════════════════════════════════════════════
   NAVIGATION
   ═════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,20,0.6);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  transition: padding 0.3s, background 0.3s;
}
nav.scrolled {
  padding: 10px 0;
  background: rgba(10,10,20,0.92);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; }
.nav-logo span .lap { color: var(--blue-1); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a:not(.nav-cta) {
  color: var(--text-1);
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--blue-1);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-lang {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 3px;
}
.nav-lang a,
.nav-lang button {
  background: transparent;
  border: none;
  color: var(--text-1);
  padding: 5px 12px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.nav-lang a:hover,
.nav-lang button:hover {
  background: rgba(79,142,255,0.18);
  color: var(--blue-1);
}

.nav-cta {
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  transition: all 0.3s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.6);
}

.nav-burger {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-0);
  transition: all 0.3s;
}

.nav-drawer {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,10,20,0.97);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-soft);
  padding: 24px;
  transform: translateY(-120%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer a {
  color: var(--text-1);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  transition: background 0.2s;
}
.nav-drawer a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-drawer .nav-lang { align-self: flex-start; margin-top: 8px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ═════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: var(--bg-0);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}
.hero-orb.orb-1 {
  width: 600px; height: 600px;
  background: var(--blue-1);
  top: -100px; left: -200px;
  animation: orbFloat1 20s ease-in-out infinite;
}
.hero-orb.orb-2 {
  width: 500px; height: 500px;
  background: var(--blue-2);
  bottom: -100px; right: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}
.hero-orb.orb-3 {
  width: 300px; height: 300px;
  background: var(--amber);
  top: 50%; left: 50%;
  opacity: 0.12;
  animation: orbFloat3 30s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(100px, 50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-100px,-80px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.5); }
}

.hero-bg-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* Автоподгонка: 85% ширины вьюпорта, но не больше 1100px и не уже 320px */
  width: min(85vw, 1100px);
  height: auto;
  max-width: 100%;
  opacity: 0.22;
  z-index: 1;
  animation: bgPulse 8s ease-in-out infinite;
  filter: hue-rotate(-5deg);
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero-bg-image { width: 92vw; opacity: 0.18; }
}
@keyframes bgPulse {
  0%,100% { opacity: 0.22; }
  50% { opacity: 0.32; }
}

.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--blue-1);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue-1);
}

.hud-lines { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.4; }
.hud-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 1px solid rgba(79,142,255,0.3);
}
.hud-corner.tl { top: 100px; left: 30px; border-right: none; border-bottom: none; }
.hud-corner.tr { top: 100px; right: 30px; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: 30px; left: 30px; border-right: none; border-top: none; }
.hud-corner.br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(79,142,255,0.15);
  border: 1px solid rgba(79,142,255,0.3);
  color: var(--blue-1);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--blue-1) 0%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradientShift 4s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero .subtitle {
  font-size: clamp(16px, 2vw, 21px);
  color: var(--text-1);
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.65;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-compat {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}
.compat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--text-1);
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.compat-pill:hover {
  background: rgba(79,142,255,0.1);
  border-color: rgba(79,142,255,0.3);
  color: var(--blue-1);
  transform: translateY(-1px);
}
.pill-svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.pill-svg-fill { fill: currentColor; stroke: none; }

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out 0.85s both;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  color: #fff;
  padding: 16px 32px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.6); }
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 16px 32px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 1s both;
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat { text-align: center; }
.stat-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 200;
  letter-spacing: -1px;
  color: var(--blue-1);
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
.stat-suffix { color: var(--blue-1); font-weight: 200; }
.stat-label {
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-fade-in.visible { opacity: 1; transform: translateY(0); }

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  animation: bounceUp 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 30px;
  background: linear-gradient(180deg, transparent, var(--blue-1));
  margin: 8px auto 0;
}
@keyframes bounceUp {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═════════════════════════════════════════════════════════════
   GENERIC SECTION
   ═════════════════════════════════════════════════════════════ */
section { padding: 120px 24px; position: relative; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  color: var(--blue-1);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--blue-1);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-1);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═════════════════════════════════════════════════════════════
   LIVE HUD STRIP
   ═════════════════════════════════════════════════════════════ */
.live-hud-section {
  background: linear-gradient(180deg, #000 0%, #07101e 100%);
  padding: 100px 24px;
}

.live-hud {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(20,30,50,0.7), rgba(8,14,28,0.85));
  border: 1px solid rgba(79,142,255,0.18);
  border-radius: 28px;
  padding: 36px 40px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.live-hud::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-1), transparent);
}

.live-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.live-hud-top .meta { font-size: 11px; color: var(--text-2); letter-spacing: 2px; text-transform: uppercase; }
.live-hud-top .lap-num { font-size: 14px; font-weight: 600; letter-spacing: 3px; color: var(--text-0); }

.live-indicator { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: var(--green); letter-spacing: 1.5px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; box-shadow: 0 0 8px var(--green); }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.live-time {
  text-align: center;
  margin: 28px 0 8px;
}
.live-time .laptime {
  font-family: 'SF Mono','JetBrains Mono','Roboto Mono', monospace;
  font-size: clamp(64px, 12vw, 124px);
  font-weight: 200;
  letter-spacing: -3px;
  color: var(--text-0);
  font-feature-settings: "tnum";
  line-height: 1;
  text-shadow: 0 0 60px rgba(79,142,255,0.3);
}
.live-time .delta {
  margin-top: 8px;
  font-size: 16px;
  color: var(--green);
  letter-spacing: 1px;
  font-family: 'SF Mono', monospace;
}
.live-time .delta.negative { color: var(--red); }
.live-time .delta-label { color: var(--text-2); margin-left: 6px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

.live-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (max-width: 700px) { .live-channels { grid-template-columns: repeat(2, 1fr); } }

.live-channel {
  background: rgba(0,0,0,0.35);
  border-left: 2px solid var(--blue-1);
  border-radius: 10px;
  padding: 14px 16px;
}
.live-channel .lbl {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 6px;
}
.live-channel .val {
  font-family: 'SF Mono', monospace;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-0);
  display: flex; align-items: baseline; gap: 4px;
}
.live-channel .unit { font-size: 11px; color: var(--text-2); }

/* ═════════════════════════════════════════════════════════════
   3D REPLAY HERO (alt-section)
   ═════════════════════════════════════════════════════════════ */
.replay-section {
  background: linear-gradient(180deg, #07101e 0%, #000 100%);
  position: relative;
  overflow: hidden;
}
.replay-section::before {
  content: '';
  position: absolute;
  top: 30%; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,142,255,0.18), transparent 60%);
  pointer-events: none;
}

.alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .alt-grid { grid-template-columns: 1fr; gap: 48px; }
  .alt-grid.reverse > div:first-child { order: 2; }
}

.alt-visual {
  position: relative;
  background: linear-gradient(135deg, #1a2a40 0%, #0a1525 100%);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(79,142,255,0.25), transparent 60%);
  animation: glowShift 8s ease-in-out infinite;
}
@keyframes glowShift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px,-20px); }
}

.replay-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.phone-frame {
  position: relative;
  width: 260px;
  max-width: 100%;
  flex-shrink: 0;
  background: #000;
  border-radius: 38px;
  padding: 12px;
  border: 3px solid #2a2a35;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
  z-index: 2;
  transition: transform 0.5s;
}
.alt-visual:hover .phone-frame { transform: rotateY(-3deg) rotateX(2deg) scale(1.02); }
.phone-frame img,
.phone-frame video { border-radius: 28px; display: block; width: 100%; }
.replay-video { background: #000; aspect-ratio: 720 / 1564; object-fit: cover; }

.phone-caption-chips {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  backdrop-filter: blur(20px);
}
.chip.active { background: rgba(79,142,255,0.22); border-color: rgba(79,142,255,0.4); color: var(--blue-1); }
/* Clickable replay-mode tabs (buttons) */
.replay-tabs .chip {
  cursor: pointer;
  font-family: inherit;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.replay-tabs .chip:hover { background: rgba(79,142,255,0.14); color: var(--text-1); }
.replay-tabs .chip.active:hover { color: var(--blue-1); }

.alt-text h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.alt-text h2 .gradient {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.alt-text p {
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.alt-text ul { list-style: none; margin-top: 24px; }
.alt-text ul li {
  padding: 10px 0;
  color: var(--text-1);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alt-text ul li::before {
  content: '✓';
  color: var(--blue-1);
  font-weight: 700;
  font-size: 14px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,142,255,0.15);
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.alt-text ul li:hover::before { transform: scale(1.15); background: rgba(79,142,255,0.3); }

.alt-tag {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ═════════════════════════════════════════════════════════════
   TRACK ANIMATION
   ═════════════════════════════════════════════════════════════ */
.track-section { background: linear-gradient(180deg, #000 0%, #07101e 100%); }

.track-visualizer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 900px) { .track-visualizer { grid-template-columns: 1fr; } }

.track-svg-container {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(79,142,255,0.2);
  border-radius: 24px;
  padding: 40px;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.track-svg-container svg { width: 100%; height: 100%; }

.track-glow {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--amber), 0 0 48px var(--amber);
  pointer-events: none;
}

.track-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.track-info-card {
  background: var(--glass);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 20px;
}
.track-info-label { font-size: 10px; color: var(--text-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.track-info-value { font-size: 18px; font-weight: 300; font-family: 'SF Mono', monospace; color: var(--blue-1); }

/* ═════════════════════════════════════════════════════════════
   ANALYSIS TABS
   ═════════════════════════════════════════════════════════════ */
.analysis-section {
  background: linear-gradient(180deg, #07101e 0%, #000 100%);
}

.tabs-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  background: var(--glass);
  border: 1px solid var(--border-soft);
  color: var(--text-1);
  padding: 12px 22px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.tab-btn:hover { background: rgba(255,255,255,0.07); color: #fff; }
.tab-btn.active {
  background: rgba(79,142,255,0.18);
  border-color: rgba(79,142,255,0.5);
  color: var(--blue-1);
  box-shadow: 0 4px 16px rgba(79,142,255,0.2);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: tabFade 0.4s ease-out;
}
.tab-panel.active { display: grid; }
@media (max-width: 900px) {
  .tab-panel.active { grid-template-columns: 1fr; gap: 32px; }
  /* На мобиле порядок: вкладки → скриншот → текст (скрин сразу под кнопками вкладок) */
  .tab-panel.active > .tab-screenshot { order: 0; }
  .tab-panel.active > .tab-text { order: 1; }
}

@keyframes tabFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.tab-screenshot {
  background: linear-gradient(135deg, #1a2a40, #0a1525);
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tab-screenshot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(79,142,255,0.2), transparent 60%);
}
.tab-screenshot img {
  width: 280px;
  border-radius: 22px;
  border: 3px solid #2a2a35;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}

.tab-text h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 300; letter-spacing: -0.5px; margin-bottom: 16px; }
.tab-text p { color: var(--text-1); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.tab-text ul { list-style: none; }
.tab-text ul li {
  padding: 8px 0;
  color: var(--text-1);
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tab-text ul li::before {
  content: '→';
  color: var(--blue-1);
  font-weight: bold;
}

/* ═════════════════════════════════════════════════════════════
   DEVICES (Phone / RaceBox)
   ═════════════════════════════════════════════════════════════ */
.devices-section { background: #000; }

.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 900px) { .devices-grid { flex-direction: column; align-items: center; } }

.device-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .device-card { width: 100%; max-width: 420px; } }
/* Clickable device card (when link_url is set) */
.device-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.device-card--link:hover { text-decoration: none; }
.device-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-1), transparent);
  transition: left 0.8s;
}
.device-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79,142,255,0.35);
  background: linear-gradient(180deg, rgba(79,142,255,0.06), rgba(255,255,255,0.02));
}
.device-card:hover::after { left: 100%; }

.device-visual {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.device-icon {
  width: 110px; height: 110px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(79,142,255,0.2), rgba(37,99,235,0.05));
  border: 1px solid rgba(79,142,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.device-card:hover .device-icon { transform: scale(1.05); }

.device-svg {
  width: 60px;
  height: 60px;
  stroke: var(--blue-1);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(79,142,255,0.35));
}
.device-svg-fill { fill: var(--blue-1); stroke: none; }

/* Brand-mark icons rendered as solid fill (e.g. RaceBox «R») */
.device-svg--brand { fill: var(--blue-1); stroke: none; }

/* Feature card SVG icons — smaller container, same style */
.feature-svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-1);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(79,142,255,0.3));
}
.feature-svg-fill { fill: var(--blue-1); stroke: none; }

.ble-waves-mini {
  position: absolute;
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ble-waves-mini .w {
  position: absolute; inset: 30px;
  border: 1px solid rgba(79,142,255,0.3);
  border-radius: 50%;
  animation: bleWave 3s ease-out infinite;
  opacity: 0;
}
.ble-waves-mini .w:nth-child(2) { animation-delay: 1s; }
.ble-waves-mini .w:nth-child(3) { animation-delay: 2s; }
@keyframes bleWave {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.device-name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.device-tag {
  font-size: 11px;
  color: var(--blue-1);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.device-card p {
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.device-specs {
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.device-spec {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 10px 12px;
}
.device-spec .k { font-size: 10px; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; }
.device-spec .v { font-size: 14px; color: var(--blue-1); font-family: 'SF Mono', monospace; margin-top: 2px; }

.device-card .badge-free, .device-card .badge-ble {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 8px;
}
.device-card .badge-free { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.device-card .badge-ble  { background: rgba(79,142,255,0.15); color: var(--blue-1); border: 1px solid rgba(79,142,255,0.3); }

/* ═════════════════════════════════════════════════════════════
   DESKTOP (continue at home on a big screen)
   ═════════════════════════════════════════════════════════════ */
.desktop-section {
  background: linear-gradient(180deg, #000 0%, #07101e 100%);
  position: relative;
  overflow: hidden;
}
.desktop-section::before {
  content: '';
  position: absolute;
  top: 20%; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,142,255,0.15), transparent 60%);
  pointer-events: none;
}

.desktop-mockup {
  background: linear-gradient(180deg, #1a1a22, #0d0d12);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  transition: transform 0.5s;
}
.desktop-mockup:hover { transform: translateY(-4px); }

/* Real desktop screenshot wrapper — replaces CSS mockup */
.desktop-screenshot-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.5s;
}
.desktop-screenshot-wrap:hover { transform: translateY(-4px); }
.desktop-screenshot-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #2a2a35, #1c1c25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.desktop-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #2a2a35, #1c1c25);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.desktop-traffic {
  display: flex; gap: 7px;
}
.desktop-traffic span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #ff5f57;
}
.desktop-traffic span:nth-child(2) { background: #febc2e; }
.desktop-traffic span:nth-child(3) { background: #28c840; }
.desktop-title {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
}

.desktop-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
  background: #0a0e1a;
}
@media (max-width: 600px) {
  .desktop-body { grid-template-columns: 1fr; }
  .desktop-sidebar { display: none; }
}

.desktop-sidebar {
  background: linear-gradient(180deg, #0f1320, #0a0e1a);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 18px 12px;
}
.desktop-sidebar h5 {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding: 0 8px;
}
.desktop-sidebar .session {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-1);
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: default;
}
.desktop-sidebar .session.active {
  background: rgba(79,142,255,0.15);
  color: var(--blue-1);
}
.desktop-sidebar .session small {
  font-size: 10px;
  color: var(--text-3);
  font-family: 'SF Mono', monospace;
}

.desktop-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.desktop-tabs {
  display: flex;
  background: #0f1320;
  padding: 0 14px;
  gap: 4px;
}
.desktop-tabs .t {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  cursor: default;
}
.desktop-tabs .t.active {
  color: var(--blue-1);
  border-bottom-color: var(--blue-1);
}

.desktop-canvas {
  background: linear-gradient(135deg, #0a0e1a, #0f1828);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 14px;
}
@media (max-width: 700px) {
  .desktop-canvas { grid-template-columns: 1fr; }
  .desktop-canvas .desktop-panel { display: none; }
}

.desktop-map {
  background: linear-gradient(135deg, #1a2a40, #0a1525);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.desktop-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.desktop-map-meta {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-1);
  letter-spacing: 0.5px;
}
.desktop-map-meta strong { color: var(--blue-1); font-family: 'SF Mono', monospace; }

.desktop-panel {
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.desktop-panel h6 {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.desktop-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  font-family: 'SF Mono', monospace;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.desktop-row:last-child { border: none; }
.desktop-row .k { color: var(--text-2); }
.desktop-row .v { color: var(--text-0); }
.desktop-row .v.delta-pos { color: var(--green); }
.desktop-row .v.delta-neg { color: var(--red); }

.desktop-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(79,142,255,0.1);
  border: 1px solid rgba(79,142,255,0.3);
  border-radius: 14px;
  color: var(--blue-1);
  font-size: 13px;
  font-weight: 500;
}
.desktop-cta::before { content: '⬇'; font-size: 16px; }

/* ═════════════════════════════════════════════════════════════
   COMPARE LAPS
   ═════════════════════════════════════════════════════════════ */
.compare-section { background: linear-gradient(180deg, #000 0%, #07101e 100%); }

.compare-mockup {
  background: linear-gradient(135deg, #1a2a40, #0a1525);
  border-radius: 28px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.compare-mockup::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(79,142,255,0.18), transparent 60%);
}
.compare-mockup img {
  position: relative; z-index: 2;
  width: 280px; margin: 0 auto;
  border-radius: 22px;
  border: 3px solid #2a2a35;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  display: block;
}

.sector-list { margin-top: 28px; position: relative; z-index: 2; }
.sector-row {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(0,0,0,0.35);
  border-radius: 12px;
  margin-bottom: 8px;
  font-family: 'SF Mono', monospace;
  font-size: 13px;
}
.sector-row .sec-name { color: var(--text-2); letter-spacing: 1px; }
.sector-row .sec-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.sector-row .sec-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #6ee7b7);
  border-radius: 3px;
}
.sector-row.lost .sec-bar .fill { background: linear-gradient(90deg, var(--red), #fca5a5); }
.sector-row .sec-delta { text-align: right; }
.sector-row.won .sec-delta { color: var(--green); }
.sector-row.lost .sec-delta { color: var(--red); }

/* ═════════════════════════════════════════════════════════════
   FEATURES GRID
   ═════════════════════════════════════════════════════════════ */
.features-section { background: linear-gradient(180deg, #07101e 0%, #000 100%); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  width: 1px; height: 0;
  background: linear-gradient(180deg, var(--blue-1), transparent);
  right: 0; top: 0;
  transition: height 0.6s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(79,142,255,0.3);
  transform: translateY(-4px);
}
.feature-card:hover::after { height: 100%; }

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(79,142,255,0.2), rgba(37,99,235,0.08));
  border: 1px solid rgba(79,142,255,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: rotate(-6deg) scale(1.08); }

.feature-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-1);
  font-size: 14px;
  line-height: 1.7;
}

/* ═════════════════════════════════════════════════════════════
   SUPPORTED CARS
   ═════════════════════════════════════════════════════════════ */
.cars-section { background: #000; }

.cars-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .cars-split { grid-template-columns: 1fr; } }

.cars-pane {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
}
.cars-pane.pro {
  border-color: rgba(255,215,0,0.25);
  background: linear-gradient(180deg, rgba(255,215,0,0.05), rgba(255,255,255,0.02));
}

.cars-pane-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cars-pane-icon {
  font-size: 32px;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(79,142,255,0.12);
  border: 1px solid rgba(79,142,255,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cars-pane.pro .cars-pane-icon {
  background: rgba(255,215,0,0.12);
  border-color: rgba(255,215,0,0.3);
}
.cars-pane-svg {
  width: 28px; height: 28px;
  stroke: var(--blue-1);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cars-pane-svg-fill { fill: var(--blue-1); stroke: none; }
.cars-pane.pro .cars-pane-svg { stroke: var(--amber); }
.cars-pane.pro .cars-pane-svg-fill { fill: var(--amber); }
.cars-pane-title { font-size: 22px; font-weight: 500; letter-spacing: -0.3px; }
.cars-pane-subtitle { font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }

.cars-pane p { color: var(--text-1); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.cars-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cars-list span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-1);
  letter-spacing: 0.5px;
}
.cars-pane.pro .cars-list span { background: rgba(255,215,0,0.06); border-color: rgba(255,215,0,0.2); }

/* ═════════════════════════════════════════════════════════════
   PRO TEASER (waitlist)
   ═════════════════════════════════════════════════════════════ */
.pro-section {
  background: linear-gradient(180deg, #000 0%, #1a1408 100%);
  position: relative;
  overflow: hidden;
}
.pro-section::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,0.15), transparent 60%);
  pointer-events: none;
}
.pro-section::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,142,255,0.18), transparent 60%);
  pointer-events: none;
}

.pro-wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--amber);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pro-badge::before { content: '⚡'; font-size: 14px; }

.pro-section h2 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.pro-section h2 .gradient {
  background: linear-gradient(135deg, var(--amber), #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pro-section .lead {
  font-size: 18px;
  color: var(--text-1);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 720px;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 40px 0;
}
@media (max-width: 700px) { .tier-grid { grid-template-columns: 1fr; } }

.tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 24px;
  position: relative;
}
.tier.pro {
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(180deg, rgba(255,215,0,0.06), rgba(255,255,255,0.02));
}

.tier-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tier-name { font-size: 18px; font-weight: 500; }
.tier-price { font-size: 14px; color: var(--text-2); font-family: 'SF Mono', monospace; }
.tier.pro .tier-name { color: var(--amber); }

.tier ul { list-style: none; }
.tier ul li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-1);
  display: flex; gap: 10px; align-items: flex-start;
}
.tier ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.tier.pro ul li::before { color: var(--amber); }

.waitlist-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 240px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 16px 20px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.waitlist-form input:focus { outline: none; border-color: rgba(255,215,0,0.5); }
.waitlist-form button {
  background: linear-gradient(180deg, var(--amber), #d4a800);
  color: #000;
  border: none;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(255,215,0,0.25);
}
.waitlist-form button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,215,0,0.4); }

/* ═════════════════════════════════════════════════════════════
   DOWNLOAD / EARLY ACCESS
   ═════════════════════════════════════════════════════════════ */
.download-section {
  text-align: center;
  background: linear-gradient(180deg, #1a1408 0%, #000 100%);
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.dl-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px 28px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: all 0.3s;
  min-width: 220px;
}
.dl-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); border-color: rgba(79,142,255,0.3); }
.dl-btn-icon { font-size: 28px; display: flex; align-items: center; justify-content: center; }
.dl-btn-svg {
  width: 28px; height: 28px;
  fill: var(--text-0);
  stroke: none;
}
.dl-btn-text { text-align: left; }
.dl-btn-text small { display: block; font-size: 11px; color: var(--text-2); letter-spacing: 0.5px; }
.dl-btn-text strong { display: block; font-size: 15px; font-weight: 500; }

/* ═════════════════════════════════════════════════════════════
   FAQ
   ═════════════════════════════════════════════════════════════ */
.faq-section { background: #000; }
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--glass);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(79,142,255,0.2);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500; font-size: 16px;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--blue-1);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s, padding-top 0.3s;
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 16px; }

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
footer {
  background: #000;
  padding: 80px 24px 32px;
  border-top: 1px solid var(--border-soft);
}
.footer-container { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-2); font-size: 14px; line-height: 1.7; max-width: 320px; }

.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-1); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--blue-1); }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-3);
  flex-wrap: wrap; gap: 12px;
}

/* ═════════════════════════════════════════════════════════════
   COUNT-UP UTIL
   ═════════════════════════════════════════════════════════════ */
.count-up { display: inline-block; font-variant-numeric: tabular-nums; }

/* ═════════════════════════════════════════════════════════════
   iPhone mockup (new style — Dynamic Island, glow, tilt)
   Used by Pro Beta section and future visual-heavy sections.
   ═════════════════════════════════════════════════════════════ */
.iphone-mock {
  position: relative;
  background: linear-gradient(160deg, #1c1c24, #0a0a12);
  border-radius: 44px;
  padding: 8px;
  width: 320px;
  flex-shrink: 0;
  box-shadow:
    0 40px 70px rgba(0,0,0,0.65),
    0 0 0 1.5px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.iphone-mock:hover {
  transform: translateY(-8px) rotateZ(-1deg);
}
.iphone-mock-screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #0a0e1a;
  aspect-ratio: 9 / 19.5;
}
.iphone-mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iphone-mock-island {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.iphone-mock::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 60px;
  background: radial-gradient(ellipse, rgba(79,142,255,0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

/* Amber-badge: Pro · Beta pulsing pill (matches coming-soon style) */
.amber-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--amber);
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.amber-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: amberBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--amber);
}
@keyframes amberBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Pro hero grid — phone left, copy right */
.pro-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  margin: 0 0 80px;
}
@media (max-width: 900px) {
  .pro-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pro-hero-grid > .iphone-mock { margin: 0 auto; }
}

.pro-feature-list {
  list-style: none;
  margin: 24px 0 32px;
}
.pro-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
}
.pro-feature-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.12);
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Make Pro section h2 work with amber gradient inside */
.pro-section .section-title .gradient-amber {
  background: linear-gradient(135deg, var(--amber), #ffb700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
