/* ═════════════════════════════════════════════════════════════════════════
   RESER+ · Landing · design tokens + base
   ════════════════════════════════════════════════════════════════════════ */

:root {
  --navy:        #0F1E3D;
  --navy-deep:   #0A1529;
  --navy-soft:   #1A2D52;
  --mint:        #17B095;
  --mint-soft:   #1FCBA9;
  --mint-deep:   #0E8F78;
  --cream:       #F5F2EB;
  --paper:       #FBF9F4;
  --line-l:      rgba(15,30,61,0.12);
  --line-xs:     rgba(15,30,61,0.06);
  --wa-green:    #25D366;

  --bg:          var(--cream);
  --panel:       #ffffff;
  --panel-2:     var(--paper);
  --ink:         var(--navy);
  --ink-soft:    rgba(15,30,61,0.68);
  --ink-mute:    rgba(15,30,61,0.44);
  --line:        rgba(15,30,61,0.12);
  --line-soft:   rgba(15,30,61,0.06);
  --accent:      var(--mint);
  --accent-deep: var(--mint-deep);

  --font-display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --maxw:        1240px;
}

:root[data-theme="dark"] {
  --bg:          var(--navy-deep);
  --panel:       var(--navy-soft);
  --panel-2:     #13224A;
  --ink:         var(--cream);
  --ink-soft:    rgba(245,242,235,0.70);
  --ink-mute:    rgba(245,242,235,0.42);
  --line:        rgba(245,242,235,0.12);
  --line-soft:   rgba(245,242,235,0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background 220ms ease, color 220ms ease;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--navy); }

.texture {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(to right, var(--ink) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink) 1px, transparent 1px);
  background-size: 60px 60px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.93;
  letter-spacing: -0.045em;
  margin: 0;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0;
}
.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

h1, h2, h3, .display-xl, .display-lg, .display-md { text-wrap: balance; }
.lead { text-wrap: pretty; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--mint-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--panel); }
.btn-arrow {
  width: 34px; height: 34px; border-radius: 17px;
  background: var(--navy); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1;
}
:root[data-theme="dark"] .btn-arrow {
  background: var(--cream); color: var(--navy);
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav-links {
  display: flex; gap: 24px; align-items: center;
  margin-left: 40px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 160ms;
}
.nav-links a:hover { color: var(--ink); }
.nav-right {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
}

.logo {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.logo-plus {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.logo-plus rect { fill: var(--accent); }

.lang {
  display: flex;
  padding: 3px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 2px;
}
.lang button {
  all: unset;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 160ms;
}
.lang button[aria-selected="true"] {
  background: var(--navy);
  color: var(--cream);
}
:root[data-theme="dark"] .lang button[aria-selected="true"] {
  background: var(--accent);
  color: var(--navy);
}

.theme-toggle {
  width: 38px; height: 38px; border-radius: 19px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  padding: 0;
  transition: background 160ms;
}
.theme-toggle:hover { background: var(--panel-2); }

.hero {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left > * + * { margin-top: 24px; }
.hero-title strong { color: var(--accent); }
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2px;
  text-transform: none;
}

.hero-right {
  position: relative;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.hero-plus {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.10;
  animation: plus-rot 60s linear infinite;
}
.hero-plus svg { width: 90%; height: 90%; }
.hero-plus rect { fill: var(--accent); }
@keyframes plus-rot {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(15,30,61,0.2);
  z-index: 2;
}
:root[data-theme="dark"] .phone { box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.phone-screen {
  width: 100%; height: 100%;
  background: #0b141a;
  border-radius: 40px;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: #e9edef;
  font-size: 13px;
  position: relative;
}
.phone-status {
  display: flex; justify-content: space-between;
  padding: 14px 24px 4px;
  font-size: 12px; font-weight: 600;
}
.phone-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 10px;
  background: #1F2C34;
}
.phone-header-avatar {
  width: 32px; height: 32px; border-radius: 16px;
  background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.phone-header-avatar svg rect { fill: var(--mint); }
.phone-header-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.phone-header-status {
  font-size: 11px;
  color: rgba(233,237,239,0.55);
}
.phone-body {
  flex: 1;
  padding: 18px 14px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
  background: #0b141a;
  background-image:
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 6px 6px;
}
.msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 10px;
  line-height: 1.3;
  font-size: 13px;
  white-space: pre-line;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  animation: msg-in 400ms ease-out both;
}
.msg.in {
  align-self: flex-start;
  background: #202C33;
  border-top-left-radius: 3px;
}
.msg.out {
  align-self: flex-end;
  background: #005C4B;
  border-top-right-radius: 3px;
}
.msg.delay-1 { animation-delay: 400ms; }
.msg.delay-2 { animation-delay: 1400ms; }
.msg.delay-3 { animation-delay: 2400ms; }
.msg.delay-4 { animation-delay: 3400ms; }
@keyframes msg-in {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

section { padding: 100px 0; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 60px;
}
.section-head h2 { max-width: 22ch; }
.section-head .lead { max-width: 46ch; }

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.compare-card {
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--line);
  min-height: 320px;
  display: flex; flex-direction: column;
}
.compare-card .eyebrow { color: var(--ink-mute); }
.compare-card.before { background: var(--panel); }
.compare-card.after  { background: var(--accent); color: var(--navy); border-color: transparent; }
.compare-card.after .eyebrow { color: rgba(15,30,61,0.6); }
.compare-list {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.compare-list li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.compare-card.before .compare-list li {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(200,60,60,0.6);
}
.compare-list li .dot {
  width: 22px; height: 22px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.compare-card.before .compare-list li .dot {
  background: rgba(200,60,60,0.15);
  color: #C83C3C;
}
.compare-card.after .compare-list li {
  color: var(--navy);
  text-decoration: none;
}
.compare-card.after .compare-list li .dot {
  background: var(--navy);
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.steps-nav {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 6px;
}
.steps-nav button {
  all: unset; cursor: pointer;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  display: flex; align-items: center; gap: 16px;
  transition: all 180ms ease;
}
.steps-nav button[aria-selected="true"] {
  background: var(--panel);
  border-color: var(--line);
}
.steps-nav .step-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--line-soft);
  color: var(--ink-mute);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  transition: all 180ms ease;
}
.steps-nav button[aria-selected="true"] .step-num {
  background: var(--accent);
  color: var(--navy);
}
.steps-nav .step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
}
.steps-nav button[aria-selected="true"] .step-title {
  color: var(--ink);
}

.steps-stage {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
}
.step-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.step-panel[data-active="true"] { opacity: 1; pointer-events: auto; }

.step-copy {
  max-width: 440px;
  text-align: center;
  margin-bottom: 36px;
}
.step-copy h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}
.step-copy p { color: var(--ink-soft); margin: 0; }

.flow-phone {
  width: 300px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(15,30,61,0.25);
}
:root[data-theme="dark"] .flow-phone { box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.flow-screen {
  width: 100%; height: 100%;
  background: #0E0E0E;
  border-radius: 36px;
  overflow: hidden;
  color: #fff;
  display: flex; flex-direction: column;
  position: relative;
}
.flow-status {
  display: flex; justify-content: space-between;
  padding: 14px 22px 4px;
  font-size: 12px; font-weight: 600;
}
.flow-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-topbar-avatar {
  width: 28px; height: 28px; border-radius: 14px;
  background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
}
.flow-topbar-avatar svg rect { fill: var(--mint); }
.flow-topbar-name { font-size: 14px; font-weight: 600; opacity: 0.8; }
.flow-sheet {
  position: absolute; inset: 70px 0 0 0;
  background: #1C1C1E;
  border-top-left-radius: 16px; border-top-right-radius: 16px;
  padding: 14px 22px;
  display: flex; flex-direction: column;
}
.flow-grab {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.25);
  margin: 0 auto 14px;
}
.flow-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
}
.flow-head .back { color: var(--wa-green); font-weight: 500; }
.flow-head .title { font-weight: 700; }
.flow-progress {
  height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px;
  margin-bottom: 18px; overflow: hidden;
}
.flow-progress > span {
  display: block; height: 100%;
  background: var(--wa-green);
  border-radius: 2px;
}
.flow-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.flow-list {
  background: #2C2C2E;
  border-radius: 11px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.flow-item {
  padding: 13px 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-item:last-child { border-bottom: none; }
.flow-item.selected { background: rgba(37,211,102,0.08); font-weight: 600; }
.flow-item .check { color: var(--wa-green); font-size: 16px; }
.flow-footer { flex: 1; }
.flow-cta {
  padding: 13px 16px;
  border-radius: 22px;
  background: var(--wa-green);
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.flow-cta.disabled {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
}
.flow-admin {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.flow-admin strong { color: var(--wa-green); font-weight: 600; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}
.feature:nth-child(5) {
  background: var(--accent);
  color: var(--navy);
  border-color: transparent;
  grid-column: span 1;
}
.feature:nth-child(5) .feature-icon rect { fill: var(--navy); }
.feature:nth-child(5) p { color: rgba(15,30,61,0.75); }
.feature-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--navy);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin: 0;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.sports {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sport {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 160px;
}
.sport-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 0;
}
.sport-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
}

.stats {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  right: -120px; top: -120px;
  width: 400px; height: 400px;
  opacity: 0.08;
  background:
    linear-gradient(to right, var(--mint) 38%, transparent 38%, transparent 62%, var(--mint) 62%) 50% 0/100% 100%,
    linear-gradient(to bottom, var(--mint) 38%, transparent 38%, transparent 62%, var(--mint) 62%) 0 50%/100% 100%;
  background-clip: content-box;
}
.stat-item .n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--mint);
}
.stat-item .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-top: 12px;
}
.stat-item .sub {
  color: rgba(245,242,235,0.6);
  font-size: 14px;
  margin-top: 4px;
}

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  color: var(--accent);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.4;
  margin-bottom: 16px;
}
.testimonial-attrib {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.cta-band {
  background: var(--accent);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 360px; height: 360px;
  opacity: 0.18;
  background:
    linear-gradient(to right, var(--navy) 38%, transparent 38%, transparent 62%, var(--navy) 62%),
    linear-gradient(to bottom, var(--navy) 38%, transparent 38%, transparent 62%, var(--navy) 62%);
  background-blend-mode: multiply;
}
.cta-band h2 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  max-width: 16ch;
  position: relative;
}
.cta-band p {
  margin: 24px 0 40px;
  font-size: 20px;
  color: rgba(15,30,61,0.75);
  max-width: 48ch;
}
.cta-band .btn {
  background: var(--navy);
  color: var(--cream);
  font-size: 17px;
  padding: 18px 28px;
  position: relative;
}
.cta-band .btn:hover { background: var(--navy-soft); }
.cta-band .btn .btn-arrow {
  background: var(--accent);
  color: var(--navy);
}

.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  margin: 16px 0 0;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bot {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
}

.wrap.nav-inner,
.wrap.hero-inner,
.wrap.footer-grid,
.wrap.footer-bot { padding-left: 32px; padding-right: 32px; }

@media (max-width: 960px) {
  .hero { padding: 40px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  section { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps-nav { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
  .steps-nav button { flex-shrink: 0; }
  .features, .sports { grid-template-columns: repeat(2, 1fr); }
  .videos { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 20px; }
  .features, .sports, .videos { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .hero-meta strong { font-size: 22px; }
  .cta-band { padding: 48px 24px; }
  .stats { padding: 28px; }
}
