:root {
  --navy: #07122e;
  --navy-2: #0b1f4a;
  --blue: #114fc4;
  --red: #d91f32;
  --red-2: #aa1021;
  --gold: #f8c747;
  --gold-2: #c99112;
  --white: #ffffff;
  --muted: #b8c4dd;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 31, 50, 0.28), transparent 32rem),
    radial-gradient(circle at top right, rgba(17, 79, 196, 0.38), transparent 34rem),
    linear-gradient(135deg, #050816 0%, var(--navy) 42%, #080b18 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
  z-index: -2;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(248, 199, 71, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button-primary {
  color: #120b00;
  background: linear-gradient(135deg, var(--gold), #fff1a6 48%, var(--gold-2));
  box-shadow: 0 16px 34px rgba(248, 199, 71, 0.28);
}

.button-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 16px 34px rgba(217, 31, 50, 0.25);
}

.button-ghost {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(248, 199, 71, 0.24);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 72px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: 720px;
  height: 720px;
  right: -240px;
  top: 40px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 18deg, rgba(255, 255, 255, 0.1) 0 4deg, transparent 4deg 11deg),
    radial-gradient(circle, rgba(248, 199, 71, 0.18), transparent 58%);
  opacity: 0.62;
}

.hero::after {
  inset: auto 0 0;
  height: 30%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(255, 255, 255, 0.08) 56px 58px);
  clip-path: polygon(0 58%, 100% 8%, 100% 100%, 0 100%);
  opacity: 0.34;
}

.stadium-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.stadium-glow::before,
.stadium-glow::after {
  content: "";
  position: absolute;
  top: 60px;
  width: 38vw;
  height: 180px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.32), transparent 64%);
  filter: blur(10px);
  transform: rotate(-10deg);
}

.stadium-glow::before {
  left: -12vw;
}

.stadium-glow::after {
  right: -12vw;
  transform: rotate(10deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

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

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    16px 0 0 var(--white),
    32px 0 0 var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(4rem, 11vw, 9.2rem);
  line-height: 0.84;
  text-shadow:
    0 6px 0 rgba(217, 31, 50, 0.9),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.ticker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 16px;
  color: #081129;
  border-radius: 999px;
  background: var(--white);
  font-weight: 1000;
  letter-spacing: 0.08em;
  box-shadow: 8px 8px 0 var(--red);
}

.hero-text,
.section-heading p,
.content-card p,
.step-card p,
.join-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.stats div,
.content-card,
.step-card,
.buy-panel,
.chart-frame,
.banner-card {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stats div {
  padding: 18px;
  border-radius: 20px;
}

.stats span,
.buy-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats strong,
.buy-panel strong {
  font-size: 1rem;
}

.hero-card {
  position: relative;
  isolation: isolate;
  padding: 16px;
  border: 1px solid rgba(248, 199, 71, 0.38);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(17, 79, 196, 0.26), rgba(217, 31, 50, 0.2));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 28px;
  object-fit: cover;
}

.ball-orbit {
  position: absolute;
  inset: -22px;
  z-index: -1;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 42px;
}

.champion-ribbon {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(18px);
}

.champion-ribbon span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.champion-ribbon strong {
  text-align: right;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.content-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
}

.content-card p:last-child,
.step-card p:last-child,
.join-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.step-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: 26px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: "Anton", Impact, sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.buy-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(217, 31, 50, 0.2), rgba(17, 79, 196, 0.18)),
    var(--panel);
}

.chart-frame {
  height: min(720px, 76vh);
  min-height: 520px;
  padding: 8px;
  border-radius: 30px;
  overflow: hidden;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  background: #0b0f19;
}

.join-us {
  padding-bottom: 112px;
}

.join-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 34px;
}

.join-copy {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(217, 31, 50, 0.24), rgba(17, 79, 196, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.banner-card {
  padding: 12px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(248, 199, 71, 0.22), rgba(255, 255, 255, 0.08)),
    var(--panel);
}

.banner-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 22, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.footer span {
  color: var(--gold);
  font-weight: 900;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  font-weight: 800;
}

.footer a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 620px;
    margin-inline: auto;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 72px 0;
  }

  .nav {
    min-height: 70px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3.55rem, 21vw, 5.2rem);
  }

  .hero-actions,
  .buy-panel,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .champion-ribbon {
    right: 24px;
    bottom: 24px;
    left: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .champion-ribbon strong {
    text-align: left;
  }

  .chart-frame {
    min-height: 480px;
  }

  .footer div {
    flex-wrap: wrap;
  }
}
