:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #152033;
  --muted: #627086;
  --line: #dce3ec;
  --primary: #173b70;
  --primary-dark: #0d274e;
  --accent: #b51f2e;
  --shadow: 0 12px 30px rgba(19, 41, 75, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
  color: var(--primary-dark);
}
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--primary); }

.hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(181,31,46,.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef3f9 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--accent);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: .98;
  margin: 0 0 22px;
  max-width: 900px;
}
h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
h3 { margin: 10px 0 8px; font-size: 1.35rem; }
.lead {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 760px;
}
.lead.small { font-size: 1.05rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-block;
  padding: 13px 19px;
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
}
.btn.primary { background: var(--primary); color: white; }
.btn.secondary { background: white; color: var(--primary); border: 1px solid var(--line); }

.hero-card, .sport-card, .store-card, .empty-state {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.hero-card ul { padding-left: 20px; color: var(--muted); line-height: 1.9; }

.section { padding: 74px 0; }
.section.alt { background: #eef3f8; }
.cards { display: grid; gap: 20px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.sport-card { padding: 24px; }
.sport-card p { color: var(--muted); line-height: 1.55; min-height: 74px; }
.sport-card a { color: var(--primary); font-weight: 800; text-decoration: none; }
.sport-icon { font-size: 2.25rem; }

.empty-state {
  margin-top: 26px;
  padding: 26px;
  display: grid;
  gap: 7px;
}
.empty-state span { color: var(--muted); }

.cards.compact { margin-top: 24px; }
.store-card {
  padding: 21px;
  text-decoration: none;
  display: grid;
  gap: 6px;
}
.store-card span { color: var(--muted); font-size: .9rem; }

footer {
  background: #101c2d;
  color: white;
  padding: 32px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer span { color: #b8c4d4; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  nav { gap: 12px 16px; font-size: .9rem; }
  .hero { padding: 56px 0; }
  .cards.four { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
}
