:root {
  --bg: #070707;
  --surface: #111111;
  --card: #171717;
  --line: #2b2b2b;
  --text: #ffffff;
  --muted: #c9c9c9;
  --soft: #f4f4f4;
  --blue: #3152ff;
  --blue-light: #5872ff;
  --shadow: 0 24px 90px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top right, rgba(49, 82, 255, .14), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
img, video { max-width: 100%; }

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, .9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand img { width: 132px; display: block; }
nav { display: flex; gap: 42px; font-weight: 800; }
nav a { text-decoration: none; color: var(--text); }
nav a:hover, nav a.active { color: var(--blue-light); }

.section { padding: 78px 5vw; }
.center { text-align: center; }
.narrow { max-width: 760px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--blue-light); border-color: var(--blue-light); transform: translateY(-2px); }
.btn-small { padding: 12px 22px; font-size: 14px; }
.btn-outline { background: transparent; border-color: rgba(255, 255, 255, .25); }
.btn-full { width: 100%; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.065em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
  margin-bottom: 16px;
}
h3 { font-size: 24px; margin-bottom: 12px; }
.lead, .section-heading p, .section-text {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.centered { margin-left: auto; margin-right: auto; }
.section-heading { max-width: 860px; margin: 0 auto 34px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 92px);
}
.hero-copy { max-width: 780px; }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
}
.pill-row span {
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 900;
}
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-visual {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.58), rgba(0,0,0,.05) 55%, rgba(49,82,255,.22));
}
.hero-visual img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; display: block; }
.badge {
  position: absolute;
  z-index: 2;
  background: rgba(7, 7, 7, .78);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}
.badge-top { top: 22px; right: 22px; }
.badge-bottom { bottom: 22px; left: 22px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
}
.feature-grid, .steps-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.feature-card, .step-card { padding: 32px; }
.feature-card p, .step-card p, .price-card p, .sample-card p, .final-cta p, .site-footer p {
  color: var(--muted);
  line-height: 1.55;
}
.icon { font-size: 34px; margin-bottom: 18px; }
.step-number { color: var(--blue-light); font-weight: 900; letter-spacing: .08em; }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 50px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.price-card { padding: 42px; text-align: center; }
.price-label { color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; }
.price { font-size: 94px; line-height: 1; font-weight: 900; letter-spacing: -.075em; margin: 8px 0 22px; }
.check-list { display: inline-grid; gap: 10px; text-align: left; margin: 0 0 22px; padding: 0; list-style: none; }
.check-list li::before { content: "✓"; color: var(--blue-light); font-weight: 900; margin-right: 10px; }
.small-note { font-size: 14px; font-weight: 800; }

.contact-card { max-width: 900px; margin: 34px auto 0; padding: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; margin-bottom: 18px; color: var(--text); font-size: 13px; font-weight: 900; }
input, textarea {
  width: 100%;
  margin-top: 8px;
  background: #101010;
  border: 1px solid #343434;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  padding: 14px;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus { outline: 2px solid rgba(49, 82, 255, .5); border-color: var(--blue-light); }

.samples-hero { padding-bottom: 30px; }
.samples-hero h1 { margin-bottom: 18px; }
.samples-grid { max-width: 1120px; margin: 0 auto; padding-top: 20px; }
.sample-card { padding: 30px; margin-bottom: 36px; }
.sample-info { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.sample-info h2 { margin-bottom: 4px; }
.sport-tag { color: var(--blue-light) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; }
video { width: 100%; border-radius: 18px; background: #000; display: block; }
.final-cta { max-width: 820px; margin: 0 auto; padding: 44px; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 52px 5vw;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 110px; }
.site-footer strong { display: block; margin-bottom: 4px; }
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; padding: 18px 5vw; }
  .site-header .btn { display: none; }
  nav { order: 3; width: 100%; justify-content: center; gap: 30px; }
  .hero, .split-section, .feature-grid, .steps-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 330px; }
  .section { padding: 56px 5vw; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 560px) {
  .brand img { width: 116px; }
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .lead, .section-heading p, .section-text { font-size: 18px; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .price { font-size: 76px; }
  .contact-card, .feature-card, .step-card, .sample-card, .price-card { padding: 24px; }
}
