:root {
  --bg: #070b0a;
  --panel: #0d1713;
  --panel-strong: #10231a;
  --green: #24f271;
  --green-dark: #089647;
  --green-soft: rgba(36, 242, 113, 0.16);
  --text: #f1fff6;
  --muted: #a2b7aa;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 242, 113, 0.16), transparent 34%),
    linear-gradient(135deg, #050807 0%, #08120e 44%, #03130b 100%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #041108;
  background: var(--green);
  box-shadow: 0 0 28px rgba(36, 242, 113, 0.22);
}

.topbar-cta {
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid rgba(36, 242, 113, 0.42);
  border-radius: 8px;
  color: var(--green);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  color: #061109;
  background: var(--green);
  transform: translateY(-2px);
  outline: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 190px);
  padding: 56px 0 74px;
}

.hero::before {
  position: absolute;
  inset: 4% -8% 0;
  z-index: -1;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, transparent 88%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  color: #031009;
  background: linear-gradient(135deg, var(--green), #9cff57);
  box-shadow: 0 16px 42px rgba(36, 242, 113, 0.25);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(36, 242, 113, 0.34);
  filter: saturate(1.08);
  outline: none;
}

.trust-note {
  max-width: 220px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.score-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(36, 242, 113, 0.12), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.match-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 34px 24px 26px;
}

.team {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}

.team-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(36, 242, 113, 0.36);
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.team-badge.away {
  color: #d8ffea;
  background: rgba(255, 255, 255, 0.08);
}

.score {
  color: var(--text);
  font-size: clamp(2.8rem, 8vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.score span {
  margin: 0 10px;
  color: var(--green);
  font-size: 0.5em;
}

.pitch-lines {
  position: relative;
  height: 150px;
  margin: 0 20px 22px;
  border: 1px solid rgba(36, 242, 113, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.18) 49.5%, rgba(255, 255, 255, 0.18) 50.5%, transparent 50.5%),
    linear-gradient(135deg, rgba(36, 242, 113, 0.12), rgba(36, 242, 113, 0.02));
}

.pitch-lines span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pitch-lines span:nth-child(1) {
  inset: 18px auto 18px 18px;
  width: 58px;
}

.pitch-lines span:nth-child(2) {
  inset: 18px 18px 18px auto;
  width: 58px;
}

.pitch-lines span:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stats-grid div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}

.stats-grid strong {
  font-size: 1.1rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px 0 70px;
}

.benefits article {
  min-height: 204px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 23, 19, 0.78);
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #061109;
  background: var(--green);
  font-weight: 900;
}

.benefits h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.benefits p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding: 30px;
  border: 1px solid rgba(36, 242, 113, 0.3);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(36, 242, 113, 0.13), rgba(255, 255, 255, 0.04));
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
  }

  .score-card {
    max-width: 560px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .footer {
    width: min(100% - 22px, 1120px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-cta,
  .primary-button {
    width: 100%;
  }

  .score-row {
    gap: 10px;
    padding-inline: 14px;
  }

  .team-badge {
    width: 48px;
    height: 48px;
  }

  .team strong {
    font-size: 0.85rem;
  }

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

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}
