@font-face {
  font-family: "Athletics";
  src: url("./assets/fonts/athletics_regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Athletics";
  src: url("./assets/fonts/athletics_medium-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Athletics";
  src: url("./assets/fonts/athletics_bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Athletics";
  src: url("./assets/fonts/athletics_extrabold-webfont.woff2") format("woff2");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./assets/fonts/SFProDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("./assets/fonts/SFProDisplay-Semibold.woff2") format("woff2");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-muted: #f5f7fb;
  --text: #172033;
  --muted: #5d687d;
  --primary: #1457d9;
  --primary-dark: #0d3f9d;
  --accent: #18a058;
  --border: #dfe5f0;
  --card: #ffffff;
  --shadow: 0 24px 80px rgba(23, 32, 51, 0.12);
  --radius: 24px;
  --container: 1120px;
  --font-heading: "Athletics", "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "SF Pro Display", "Athletics", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 99;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-grid {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 168px;
  height: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(20, 87, 217, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 18px 36px rgba(20, 87, 217, 0.3);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: #eef4ff;
  color: var(--primary-dark);
}

.btn-small {
  display: none;
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(20, 87, 217, 0.16), transparent 34%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid,
.split-grid,
.faq-grid {
  display: grid;
  gap: 36px;
}

.hero-copy h1,
.section-heading h2,
.split-grid h2,
.faq-grid h2,
.final-cta h2,
.legal-content h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 10vw, 2.8rem);
  max-width: 830px;
}

.lead {
  font-size: clamp(1.08rem, 3.5vw, 1.35rem);
  color: var(--muted);
  max-width: 720px;
  margin: 22px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions.center {
  align-items: stretch;
  justify-content: center;
}

.trust-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 600;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.hero-card,
.info-card,
.compliance-panel,
.about-card,
.steps article,
.legal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(23, 32, 51, 0.08);
}

.hero-card {
  padding: 26px;
  align-self: center;
}

.card-badge {
  display: inline-flex;
  color: #0f7a43;
  background: #eafaf1;
  border: 1px solid #c9f1da;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-card h2 {
  margin: 18px 0 10px;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-card p,
.section-heading p,
.split-grid p,
.faq-grid p,
.info-card p,
.steps p,
.final-cta p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.metric-grid div {
  padding: 16px;
  border-radius: 18px;
  background: var(--bg-muted);
}

.metric-grid strong {
  display: block;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.logos-strip {
  position: relative;
  padding: 30px 0;
  border-block: 1px solid rgba(20, 87, 217, 0.18);
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 50%, #ffffff 100%);
}

.logos-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(20, 87, 217, 0.12), transparent 32%), radial-gradient(circle at 88% 70%, rgba(24, 160, 88, 0.12), transparent 30%);
  pointer-events: none;
}

.strip-grid {
  position: relative;
  display: grid;
  gap: 14px;
  text-align: left;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.01em;
}

.strip-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 18px 18px;
  border: 1px solid rgba(20, 87, 217, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.1);
}

.strip-grid span::before {
  content: "✓";
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #35c77a);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(24, 160, 88, 0.26);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.split-grid h2,
.faq-grid h2,
.final-cta h2 {
  font-size: clamp(2rem, 7vw, 3.25rem);
}

.cards,
.steps {
  display: grid;
  gap: 18px;
}

.info-card,
.steps article,
.compliance-panel,
.about-card {
  padding: 24px;
}

.info-card h3,
.steps h3,
.compliance-panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.info-card p,
.steps p {
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  padding: 20px;
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 16px;
}

.benefit-list strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.benefit-list p {
  margin: 0;
}

.compliance-panel {
  background: #0f1b33;
  color: #fff;
  box-shadow: var(--shadow);
}

.compliance-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #d9e4ff;
}

.text-link {
  display: inline-flex;
  margin: 12px 14px 0 0;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.about-card img {
  width: 190px;
  margin-bottom: 22px;
}

.about-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.about-card dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-card dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.steps article span {
  display: inline-flex;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin-bottom: 0;
}

.final-cta {
  background: linear-gradient(135deg, #0f1b33 0%, #1457d9 100%);
  color: #fff;
}

.final-cta-box {
  text-align: center;
  max-width: 820px;
}

.final-cta .eyebrow,
.final-cta p {
  color: #d9e4ff;
}

.final-cta .eyebrow::before {
  background: #7df0b0;
}

.microcopy {
  font-size: 0.85rem;
}

.site-footer {
  padding: 48px 0 24px;
  background: #091124;
  color: #d9e4ff;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  width: 165px;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aab7d3;
}

.legal-hero {
  padding: 54px 0 28px;
  background: var(--bg-muted);
}

.legal-content {
  padding: 28px;
  margin: 28px auto 72px;
  max-width: 900px;
}

.legal-content h1 {
  font-size: clamp(2rem, 8vw, 3.4rem);
}

.legal-content h2 {
  margin-top: 34px;
  line-height: 1.2;
}

@media (min-width: 680px) {
  .hero-actions,
  .hero-actions.center {
    flex-direction: row;
    align-items: center;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-columns,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 96px 0;
  }

  .main-nav,
  .btn-small {
    display: inline-flex;
  }

  .hero-grid,
  .split-grid,
  .faq-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 64px;
  }

  .reverse-mobile {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .three-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
