/* ============================================================
   TOP TALENTS — Landing page
   Design tokens per brief: "Spotify möter The Athletic."
   ============================================================ */

:root {
  /* Surfaces */
  --bg-base: #0A1A14;
  --bg-elevated: #0F2419;
  --bg-surface: #163024;
  --bg-surface-alt: #122A1F;

  /* Accent */
  --accent: #C45C5C;
  --accent-soft: #E89898;
  --accent-muted: #3A1818;

  /* Borders */
  --border-subtle: rgba(196, 92, 92, 0.16);
  --border-faint: rgba(255, 255, 255, 0.06);

  /* Text */
  --text-primary: #F4F1E9;
  --text-secondary: #9DA99B;
  --text-tertiary: #5E6E62;

  /* Status */
  --success: #6FCB92;
  --warning: #E6C36A;
  --error: #D9534A;

  /* Gradients */
  --grad-cta: linear-gradient(180deg, #E89898 0%, #C45C5C 100%);
  --grad-hero: radial-gradient(130% 80% at 50% -10%, #1A3A2A 0%, #0A1A14 55%);
  --grad-premium: linear-gradient(160deg, #16332A 0%, #0C1F17 55%, #1A2A1E 100%);

  /* Type */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
  --font-mono: "SF Mono", ui-monospace, "Roboto Mono", Menlo, monospace;

  /* Radius */
  --r-chip: 8px;
  --r-card: 12px;
  --r-card-lg: 16px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1180px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

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

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

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

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ----- Kicker (mono label) ----- */
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}
.kicker.center { justify-content: center; }
.kicker.no-rule::before { display: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--accent);
  color: #0A0A0B;
  box-shadow: 0 0 0 0 rgba(196,92,92,0.0);
}
.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 8px 34px -8px rgba(196,92,92,0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.03);
}

.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ----- Photo / screen placeholders ----- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.022) 0 14px,
      rgba(255,255,255,0.0) 14px 28px),
    var(--bg-surface-alt);
  border: 1px solid var(--border-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 26, 20, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-faint);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(155deg, #E89898 0%, #C45C5C 62%, #A84A4A 100%);
  display: block;
  flex: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 6px rgba(120,30,30,0.35),
    0 4px 14px -4px rgba(196,92,92,0.5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-3deg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -2px 6px rgba(120,30,30,0.35),
    0 8px 22px -6px rgba(196,92,92,0.65);
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-word {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding-top: 72px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero::after {
  /* faint grain/vignette to deepen the cinematic feel */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 120%, rgba(0,0,0,0.5), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 70px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 22px;
}
.hero h1 .em { color: var(--accent-soft); }

/* Hero entrance choreography (plays once on load) */
.hero-title { position: relative; font-size: clamp(40px, 6.2vw, 70px); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; margin-top: 22px; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-title .line-in { display: inline-block; }

@keyframes hi-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes hi-line {
  from { transform: translateY(108%); }
  to { transform: translateY(0); }
}
@keyframes hi-phone-in {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.hero-intro .hi,
.hero-intro .line-in,
.hero-intro .hi-phone {
  opacity: 0;
  animation-fill-mode: both;
  animation-duration: .72s;
  animation-timing-function: cubic-bezier(.2,.75,.25,1);
  animation-delay: calc(0.12s + var(--i, 0) * 0.09s);
}
.hero-intro .hi { animation-name: hi-rise; }
.hero-intro .line-in { opacity: 1; animation-name: hi-line; animation-duration: .8s; }
.hero-intro .hi-phone { animation-name: hi-phone-in; animation-duration: .9s; }

@media (prefers-reduced-motion: reduce) {
  .hero-intro .hi, .hero-intro .line-in, .hero-intro .hi-phone {
    opacity: 1; animation: none; transform: none;
  }
}

/* Hero primary CTA: gentle breathing glow once the intro settles */
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 8px 30px -10px rgba(196,92,92,0.0), 0 0 0 0 rgba(196,92,92,0.0); }
  50% { box-shadow: 0 10px 36px -8px rgba(196,92,92,0.45), 0 0 0 0 rgba(196,92,92,0.0); }
}
.hero-cta .btn-primary {
  animation: cta-breathe 3.4s ease-in-out 1.6s infinite;
}
.hero-cta .btn-primary:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn-primary { animation: none; }
}

/* Shine sweep on hero primary CTA (keeps coral fill) */
.btn-shine-host { position: relative; overflow: hidden; }
.btn-shine-host > * { position: relative; }
.btn-shine {
  position: absolute;
  top: 0; left: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: badge-shine 4.6s ease-in-out 1.8s infinite;
  pointer-events: none;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .btn-shine { display: none; }
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-secondary);
  margin-top: 22px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}
.hero-proof .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1100px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(196,92,92,0.22), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.phone {
  position: relative;
  z-index: 1;
  width: 296px;
  flex: none;
  border-radius: 44px;
  padding: 11px;
  background: linear-gradient(160deg, #20322A, #0B1712);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  will-change: transform;
}
/* Interactive 3D tilt state (driven by JS via custom props) */
.phone.tilt {
  transition: transform .12s ease-out, box-shadow .3s ease;
  transform:
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translateY(-6px)
    scale(1.03);
  box-shadow:
    0 50px 90px -28px rgba(0,0,0,0.85),
    0 0 60px -18px rgba(196,92,92,0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
/* Rotating shining outline (same as the cards), shown on hover */
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--tt-angle),
    rgba(196,92,92,0) 0deg,
    var(--accent-soft) 60deg,
    var(--accent) 110deg,
    rgba(196,92,92,0) 200deg,
    rgba(196,92,92,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 8;
  pointer-events: none;
  animation: founder-spin 3s linear infinite;
}
.phone.tilt::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .phone, .phone.tilt { transition: none; transform: none; }
  .phone::after { animation: none; }
}
.phone-screen {
  position: relative;
  border-radius: 34px;
  background: var(--bg-base);
  overflow: hidden;
  aspect-ratio: 296 / 620;
}
.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #05100B;
  border-radius: 14px;
  z-index: 6;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.phone-statusbar .sb-icons { display: flex; gap: 5px; align-items: center; }
.phone-statusbar .sb-icons span { width: 16px; height: 9px; border-radius: 2px; background: var(--text-secondary); opacity: .7; }

.app {
  padding: 6px 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-top .app-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}
.app-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(150deg, #2A4A38, #1630240);
  border: 1px solid var(--border-subtle);
}

/* player profile card inside phone */
.pcard {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: 16px;
  overflow: hidden;
}
.pcard-media {
  aspect-ratio: 16 / 10;
  position: relative;
}
.pcard-media .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(196,92,92,0.92);
  display: grid; place-items: center;
}
.pcard-media .play svg { width: 16px; height: 16px; fill: #0A0A0B; margin-left: 2px; }
.pcard-media .tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(10,26,20,0.7);
  border: 1px solid var(--border-subtle);
  color: var(--accent-soft);
}
.pcard-body { padding: 13px 14px 15px; }
.pcard-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.verify { width: 14px; height: 14px; flex:none; }
.pos-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: var(--r-chip);
  background: var(--accent-muted);
  color: var(--accent-soft);
  margin-top: 7px;
}
.pcard-meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 6px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}
.stat {
  background: var(--bg-surface);
  border-radius: var(--r-chip);
  padding: 9px 8px;
  text-align: center;
}
.stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.stat .l {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* mini feed rows */
.feed-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: 12px;
  padding: 10px;
}
.feed-row .fr-av { width: 34px; height: 34px; border-radius: 50%; flex:none; background: var(--bg-surface); border: 1px solid var(--border-subtle); }
.feed-row .fr-name { font-weight: 600; font-size: 13px; }
.feed-row .fr-sub { font-size: 11px; color: var(--text-secondary); margin-top: 1px; }
.feed-row .fr-chip {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--accent-muted);
  color: var(--accent-soft);
  flex: none;
}

/* ============================================================
   SECTION shells
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 16px;
}

/* ============================================================
   DUAL VALUE
   ============================================================ */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.track {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-card-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.track > * { position: relative; z-index: 1; }
.dual .track:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: transparent;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8), 0 0 46px -16px rgba(196,92,92,0.42);
  z-index: 3;
}
.track::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--tt-angle),
    rgba(196,92,92,0) 0deg,
    var(--accent-soft) 60deg,
    var(--accent) 110deg,
    rgba(196,92,92,0) 200deg,
    rgba(196,92,92,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
  pointer-events: none;
  animation: founder-spin 3s linear infinite;
}
.track:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .dual .track:hover { transform: none; }
  .track::after { animation: none; }
  .track:hover::after { opacity: 1; }
}
.track.players { background: linear-gradient(170deg, #11271C 0%, #0E2017 100%); }
.track.clubs { background: linear-gradient(170deg, #15241F 0%, #0F1E18 100%); }
.track-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.track h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.track > p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 16px;
}
.track-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.track-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
}
.track-list .ic {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-muted);
  display: grid; place-items: center;
  flex: none;
  margin-top: 1px;
}
.track-list .ic svg { width: 15px; height: 15px; stroke: var(--accent-soft); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.track-list b { font-weight: 600; color: var(--text-primary); }
.track-list span { color: var(--text-secondary); }

.track-shot {
  margin-top: 28px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border-faint);
  background: var(--bg-base);
}
.track-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

/* interactive radar */
.radar-wrap { padding: 20px; display: flex; gap: 18px; align-items: center; }
.radar { flex: none; touch-action: none; overflow: visible; }
.radar-shape { transition: none; }
.radar .rh {
  fill: var(--accent-soft);
  stroke: var(--bg-base);
  stroke-width: 1.5;
  transition: r .15s ease, fill .15s ease;
}
.radar .rh-hit { cursor: grab; }
.radar .rh-hit:active { cursor: grabbing; }
.radar.dragging .rh-hit { cursor: grabbing; }
.radar .rh-hit:hover + .rh,
.radar .rh.active { fill: #fff; }

.radar-wrap .legend { display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 0; }
.radar-wrap .legend .li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "label val" "track track";
  align-items: center;
  gap: 4px 8px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
}
.radar-wrap .legend .li-label { grid-area: label; }
.radar-wrap .legend .li-val {
  grid-area: val;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.radar-wrap .legend .li-track {
  grid-area: track;
  height: 6px;
  border-radius: 4px;
  background: var(--bg-surface);
  overflow: hidden;
}
.radar-wrap .legend .li .bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width .25s cubic-bezier(.2,.7,.2,1);
}
.radar-wrap .legend .li.active .li-val { color: var(--accent-soft); }

.radar-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.radar-hint svg { width: 15px; height: 15px; stroke: var(--accent-soft); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* search dashboard mini */
.search-mini { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.search-bar {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg-surface);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-chip);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-tertiary);
}
.search-bar svg { width: 14px; height: 14px; stroke: var(--text-tertiary); stroke-width: 1.8; fill: none; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-chips .fc {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--accent-muted);
  color: var(--accent-soft);
}
.filter-chips .fc.off { background: var(--bg-surface); color: var(--text-tertiary); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  border-top: 1px solid var(--border-subtle);
  padding-top: 22px;
}
.step .num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 16px;
}
.step p { color: var(--text-secondary); margin-top: 10px; font-size: 15px; }
.step .lanes { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.step .lane {
  display: flex; gap: 9px; align-items: baseline;
  font-size: 13px; color: var(--text-secondary);
}
.step .lane .tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  flex: none;
  width: 56px;
}

/* ============================================================
   FEATURE GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.feature > * { position: relative; z-index: 1; }
.gallery .feature:hover {
  transform: translateY(-7px) scale(1.04);
  border-color: transparent;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.8), 0 0 46px -16px rgba(196,92,92,0.45);
  z-index: 3;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--tt-angle),
    rgba(196,92,92,0) 0deg,
    var(--accent-soft) 60deg,
    var(--accent) 110deg,
    rgba(196,92,92,0) 200deg,
    rgba(196,92,92,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 2;
  pointer-events: none;
  animation: founder-spin 3s linear infinite;
}
.feature:hover::before { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .gallery .feature:hover { transform: none; }
  .feature::before { animation: none; }
  .feature:hover::before { opacity: 1; }
}
.feature .feat-shot { aspect-ratio: 4 / 5; }
.feature .feat-body { padding: 18px 18px 22px; }
.feature h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.feature p { font-size: 13.5px; color: var(--text-secondary); margin-top: 8px; }

/* --- Feature mini app-screens (drawn in the app's style) --- */
.feat-screen {
  aspect-ratio: 4 / 5;
  background: radial-gradient(120% 90% at 50% -10%, #14291E 0%, var(--bg-base) 60%);
  border-bottom: 1px solid var(--border-faint);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.fs-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--text-tertiary);
}
.fs-bar .fs-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* video thumb */
.fs-video {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, #1C3A2A, #0C1E16);
  border: 1px solid var(--border-faint);
  min-height: 0;
}
.fs-video .fs-play {
  position: absolute; inset: 0; margin: auto;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(196,92,92,0.94);
  display: grid; place-items: center;
}
.fs-video .fs-play svg { width: 15px; height: 15px; fill: #0A0A0B; margin-left: 2px; }
.fs-video .fs-time {
  position: absolute; bottom: 8px; right: 8px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.06em;
  background: rgba(10,26,20,0.72); color: var(--text-primary);
  padding: 3px 6px; border-radius: 5px;
}
.fs-video .fs-tag {
  position: absolute; top: 8px; left: 8px;
  font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.12em;
  background: rgba(10,26,20,0.72); color: var(--accent-soft);
  padding: 3px 6px; border-radius: 5px; border: 1px solid var(--border-subtle);
}
.fs-scrub { height: 3px; border-radius: 3px; background: var(--bg-surface); overflow: hidden; }
.fs-scrub i { display: block; height: 100%; width: 38%; background: var(--accent); border-radius: 3px; }

/* stat bars / radar */
.fs-statgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.fs-stat { background: var(--bg-surface); border-radius: 8px; padding: 8px 6px; text-align: center; }
.fs-stat .v { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.fs-stat .l { font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.08em; color: var(--text-tertiary); margin-top: 2px; }
.fs-bars { display: flex; flex-direction: column; gap: 9px; flex: 1; justify-content: center; }
.fs-barrow { display: flex; align-items: center; gap: 8px; }
.fs-barrow .lbl { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.06em; color: var(--text-secondary); width: 52px; flex: none; }
.fs-barrow .track2 { flex: 1; height: 6px; border-radius: 4px; background: var(--bg-surface); overflow: hidden; }
.fs-barrow .track2 i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); border-radius: 4px; }

/* search results */
.fs-searchbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-surface); border: 1px solid var(--border-faint);
  border-radius: 8px; padding: 8px 10px;
  font-size: 10px; color: var(--text-tertiary);
}
.fs-searchbar svg { width: 12px; height: 12px; stroke: var(--text-tertiary); stroke-width: 1.8; fill: none; flex: none; }
.fs-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.fs-chips .c { font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.06em; padding: 4px 7px; border-radius: 5px; background: var(--accent-muted); color: var(--accent-soft); }
.fs-chips .c.off { background: var(--bg-surface); color: var(--text-tertiary); }
.fs-results { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fs-row { display: flex; align-items: center; gap: 8px; background: var(--bg-elevated); border: 1px solid var(--border-faint); border-radius: 9px; padding: 7px 8px; }
.fs-row .av { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-surface); border: 1px solid var(--border-subtle); flex: none; }
.fs-row .nm { font-size: 10px; font-weight: 600; }
.fs-row .mt { font-family: var(--font-mono); font-size: 7px; letter-spacing: 0.06em; color: var(--text-tertiary); margin-top: 1px; }
.fs-row .pct { margin-left: auto; font-family: var(--font-mono); font-size: 9px; color: var(--success); flex: none; }

/* trust / verified */
.fs-shield { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; }
.fs-shield .badge {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--accent-muted); border: 1px solid var(--border-subtle);
  display: grid; place-items: center;
}
.fs-shield .badge svg { width: 32px; height: 32px; stroke: var(--accent-soft); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.fs-verified { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.12em; color: var(--success); display: inline-flex; align-items: center; gap: 5px; }
.fs-verified .vd { width: 5px; height: 5px; border-radius: 50%; background: var(--success); }
.fs-checks { display: flex; flex-direction: column; gap: 6px; }
.fs-check { display: flex; align-items: center; gap: 8px; background: var(--bg-elevated); border: 1px solid var(--border-faint); border-radius: 8px; padding: 7px 9px; font-size: 9px; color: var(--text-secondary); }
.fs-check svg { width: 13px; height: 13px; stroke: var(--success); stroke-width: 2; fill: none; flex: none; }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust {
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.trust-lead h2 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-top: 14px;
}
.trust-item .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-muted);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.trust-item .ic svg { width: 20px; height: 20px; stroke: var(--accent-soft); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font-size: 16px; font-weight: 600; }
.trust-item p { font-size: 14px; color: var(--text-secondary); margin-top: 7px; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.founder {
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-card-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.founder > * { position: relative; z-index: 1; }
.founders .founder:hover {
  transform: translateY(-7px) scale(1.04);
  border-color: transparent;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.8), 0 0 46px -16px rgba(196,92,92,0.45);
  z-index: 3;
}

/* Shining rotating outline on hover */
@property --tt-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes founder-spin { to { --tt-angle: 360deg; } }
.founder::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--tt-angle),
    rgba(196,92,92,0) 0deg,
    var(--accent-soft) 60deg,
    var(--accent) 110deg,
    rgba(196,92,92,0) 200deg,
    rgba(196,92,92,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  pointer-events: none;
  /* Always rotating (in sync across cards) so switching cards never restarts it */
  animation: founder-spin 3s linear infinite;
}
.founder:hover::before {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .founders .founder:hover { transform: none; }
  .founder::before { animation: none; }
  .founder:hover::before { opacity: 1; }
}
.founder-photo {
  aspect-ratio: 1 / 1;
  width: 84px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 10px;
}
.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 8px;
}
.founder-bio {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-top: 16px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border-faint);
}
.founder-tags .ft {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--accent-muted);
  color: var(--accent-soft);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.download {
  background: var(--grad-premium);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(196,92,92,0.16), transparent 60%);
  pointer-events: none;
}
.download-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.download h2 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.03;
  margin-top: 20px;
}
.download-lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
}

/* Two-path structure: players vs clubs */
.path-cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  background: rgba(10,26,20,0.4);
  border: 1px solid var(--border-faint);
  border-radius: var(--r-card-lg);
  overflow: hidden;
}
.path-card {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: background .25s ease;
}
.path-card:hover { background: rgba(196,92,92,0.05); }
.path-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.path-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.path-card > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 10px;
}
.path-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.path-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text-primary);
}
.path-list svg {
  width: 18px; height: 18px;
  stroke: var(--success);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.path-sep {
  width: 1px;
  background: var(--border-faint);
  align-self: stretch;
}

/* Centered download CTA */
.download-cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* App Store badge (official black download badge) — animated */
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes badge-shine {
  0% { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(330%) skewX(-18deg); }
}
.appstore-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  padding: 0 30px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 14px 44px -16px rgba(0,0,0,0.8), 0 0 0 0 rgba(196,92,92,0);
  animation: badge-float 4s ease-in-out infinite;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}
.appstore-badge:hover {
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 18px 52px -14px rgba(0,0,0,0.85), 0 0 34px -6px rgba(196,92,92,0.5);
}
.asb-shine {
  position: absolute;
  top: 0; left: 0;
  width: 36%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: badge-shine 4.6s ease-in-out 1.2s infinite;
  pointer-events: none;
}
.appstore-badge svg.apple { width: 30px; height: 30px; fill: #fff; flex: none; position: relative; }
.appstore-badge .asb-txt { display: flex; flex-direction: column; line-height: 1; text-align: left; position: relative; }
.appstore-badge .asb-txt .small {
  font-family: var(--font-text);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.01em;
}
.appstore-badge .asb-txt .big {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-top: 3px;
}
.android-soon {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .appstore-badge { animation: none; }
  .asb-shine { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border-faint);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color .2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-tertiary); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s cubic-bezier(.2,.7,.3,1), transform .45s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   LIVE / PREMIUM MOTION
   ============================================================ */

/* Animated attribute bars: fill from 0 to --target-w when .play */
.fs-barrow .track2 i {
  width: 0;
  transition: width .9s cubic-bezier(.2,.7,.2,1);
}
.fs-barrow.play .track2 i { width: var(--target-w, 0); }

/* Scrub line: subtle indeterminate shimmer */
@keyframes scrub-pulse {
  0%, 100% { opacity: .75; }
  50% { opacity: 1; }
}
.fs-scrub i { animation: scrub-pulse 2.4s ease-in-out infinite; }

/* Play button: soft breathing glow ring */
@keyframes play-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,92,92,0.45); }
  50% { box-shadow: 0 0 0 7px rgba(196,92,92,0); }
}
.fs-video .fs-play,
.pcard-media .play { animation: play-glow 2.8s ease-in-out infinite; }

/* Verified: pulsing ring behind the shield badge + status dot */
@keyframes verify-ring {
  0% { transform: scale(0.85); opacity: .55; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.fs-shield .badge { position: relative; }
.fs-shield .badge::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  border: 1.5px solid var(--success);
  animation: verify-ring 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(0.7); }
}
.fs-verified .vd,
.hero-proof .dot { animation: dot-pulse 2.2s ease-in-out infinite; }

/* Verified checkmark: draw stroke when in view */
.fs-shield .badge svg path:last-child {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}
.fs-shield.play .badge svg path:last-child {
  animation: draw-check .7s ease forwards .3s;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }

/* Count-up numbers sit in a tabular slot so width doesn't jitter */
.stat .v, .fs-stat .v, .fs-row .pct { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .fs-barrow .track2 i { transition: none; width: var(--target-w, 0); }
  .fs-scrub i, .fs-video .fs-play, .pcard-media .play,
  .fs-shield .badge::after, .fs-verified .vd, .hero-proof .dot { animation: none; }
  .fs-shield .badge svg path:last-child { stroke-dashoffset: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 620px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .trust-lead { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,26,20,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-faint);
    padding: 8px 0;
  }
  .nav.open .nav-links a { padding: 14px var(--gutter); width: 100%; }

  .section { padding: 72px 0; }
  .dual { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step { border-top: none; padding-top: 0; border-left: 1px solid var(--border-subtle); padding-left: 20px; }
  .download-actions { flex-direction: column; gap: 20px; }
  .path-cards { grid-template-columns: 1fr; }
  .path-sep { width: auto; height: 1px; }
  .hero { padding-bottom: 64px; }
}

@media (max-width: 460px) {
  :root { --gutter: 18px; }
  .gallery { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .track { padding: 26px 22px; }
  .hero-cta .btn { width: 100%; }
}
