:root {
  --color-bg: #0a0c0f;
  --color-surface: #111318;
  --color-surface-2: #1a1d24;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  --color-gold: #f5a623;
  --color-gold-dim: #c47d0e;
  --color-teal: #00d4b4;
  --color-teal-dim: #00a896;
  --color-text-primary: #f0f2f5;
  --color-text-secondary: #a4acba;
  --color-text-muted: #667080;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --gradient-hero: radial-gradient(ellipse 80% 60% at 52% -10%, rgba(245, 166, 35, 0.18) 0%, transparent 70%);
  --gradient-card-hover: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, rgba(0, 212, 180, 0.06) 100%);
  --gradient-cta: linear-gradient(135deg, #f5a623 0%, #f5c842 100%);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 128px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --max-width: 1200px;
  --gutter: clamp(20px, 4vw, 80px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  color-scheme: dark;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-primary);
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 360px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 96px),
    var(--color-bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

main,
.site-header,
.site-footer,
.hero,
.section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

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

p {
  color: var(--color-text-secondary);
}

strong {
  font-weight: 600;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  color: #141006;
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  border-bottom: 1px solid var(--color-border);
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
  max-width: var(--max-width);
  height: 64px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: baseline;
  gap: 2px;
  min-height: 44px;
  color: var(--color-text-primary);
  line-height: 1;
}

.logo span {
  font-family: var(--font-display);
  font-size: 30px;
}

.logo strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--color-text-primary);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  flex: 0 0 auto;
  gap: 10px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text-primary);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
}

.mobile-panel {
  position: fixed;
  top: 56px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  align-items: start;
  height: calc(100dvh - 56px);
  padding: 28px var(--gutter) 40px;
  overflow-y: auto;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  backdrop-filter: blur(20px);
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

.mobile-panel a:not(.btn) {
  display: grid;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 20px;
}

.breadcrumbs {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
  background: rgba(8, 10, 13, 0.74);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px var(--gutter);
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.breadcrumbs li + li::before {
  content: ">";
  flex: 0 0 auto;
  margin-right: 8px;
  color: var(--color-gold);
}

.breadcrumbs a,
.breadcrumbs span {
  max-width: min(72vw, 520px);
  overflow-wrap: anywhere;
}

.breadcrumbs a {
  color: var(--color-text-secondary);
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

.btn {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn-primary,
.btn-nav {
  background: var(--gradient-cta);
  color: #130f05;
}

.btn-nav {
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-secondary {
  border-color: rgba(0, 212, 180, 0.3);
  background: rgba(0, 212, 180, 0.08);
  color: var(--color-teal);
}

.btn-ghost {
  border-color: var(--color-border-hover);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-primary);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary:hover,
.btn-nav:hover {
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 140px);
  background:
    var(--gradient-hero),
    linear-gradient(135deg, rgba(0, 212, 180, 0.08), transparent 30%),
    var(--color-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(245, 166, 35, 0.08) 8% 9%, transparent 9% 91%, rgba(0, 212, 180, 0.08) 91% 92%, transparent 92%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.018) 18px 19px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(1) infinite;
}

.home-hero {
  min-height: calc(100svh - 64px);
  isolation: isolate;
  background: #07090c;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  height: auto;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.86) 34%, rgba(7, 9, 12, 0.42) 66%, rgba(7, 9, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.2) 48%, rgba(7, 9, 12, 0.42) 100%);
}

.home-hero::after {
  z-index: 3;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.01);
}

.home-hero-shade {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 34%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(245, 166, 35, 0.12) 7% 8%, transparent 8% 91%, rgba(0, 212, 180, 0.13) 91% 92%, transparent 92%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.024) 18px 19px);
}

.home-hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
  align-items: end;
  gap: var(--space-xl);
  width: 100%;
  max-width: var(--max-width);
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 132px) var(--gutter) clamp(52px, 7vw, 88px);
}

.home-hero-copy {
  align-self: center;
  max-width: 760px;
}

.home-hero h1 {
  max-width: 780px;
  font-size: clamp(64px, 7.8vw, 112px);
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.62);
}

.home-hero .hero-lead {
  max-width: 680px;
  color: #c7cedb;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.home-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(7, 9, 12, 0.52);
  backdrop-filter: blur(10px);
}

.home-hero-panel {
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(100%, 340px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(9, 11, 15, 0.58);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.home-hero-panel span {
  display: grid;
  align-items: center;
  min-height: 54px;
  padding: 12px 16px;
  border-left: 2px solid transparent;
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.home-hero-panel span:nth-child(1) {
  border-left-color: var(--color-gold);
  color: var(--color-gold);
}

.home-hero-panel span:nth-child(3) {
  border-left-color: var(--color-teal);
  color: var(--color-teal);
}

.hero-with-image {
  min-height: auto;
  isolation: isolate;
  background: #07090c;
}

.hero-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.84) 38%, rgba(7, 9, 12, 0.46) 68%, rgba(7, 9, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.16) 56%, rgba(7, 9, 12, 0.46) 100%);
}

.hero-with-image::after {
  z-index: 3;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-media img,
.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-with-image .hero-grid,
.hero-with-image.hero-compact .hero-grid {
  position: relative;
  z-index: 4;
  min-height: 430px;
  padding-top: 84px;
  padding-bottom: 82px;
}

.hero-with-image.hero-no-visual .hero-grid {
  grid-template-columns: minmax(0, 840px);
}

.hero-with-image .hero-copy {
  max-width: 840px;
}

.hero-with-image h1 {
  max-width: 860px;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.62);
}

.hero-with-image .hero-lead {
  color: #c7cedb;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.hero-with-image .btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(7, 9, 12, 0.52);
  backdrop-filter: blur(10px);
}

.hero-compact {
  min-height: auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: center;
  gap: var(--space-xl);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px var(--gutter);
}

.hero-compact .hero-grid {
  grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
  padding-top: 76px;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.nav-shell > *,
.hero-grid > *,
.section-heading > *,
.feature-grid > *,
.sport-grid > *,
.blog-grid > *,
.link-grid > *,
.steps > *,
.pricing-row > *,
.article-layout > *,
.footer-grid > *,
.footer-bottom > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--color-teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-text-primary);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 104px;
}

h2 {
  margin-bottom: 18px;
  font-size: 60px;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.18;
}

.hero-lead,
.article-hero > p,
.section-heading > p {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-visual {
  min-width: 0;
  width: 100%;
}

.hero-no-visual .hero-grid {
  grid-template-columns: minmax(0, 900px);
}

.hero-no-visual .hero-copy {
  max-width: 900px;
}

.hero-stadium-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 166, 35, 0.22), transparent 18%),
    radial-gradient(circle at 82% 26%, rgba(0, 212, 180, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 44%),
    #090b0f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  isolation: isolate;
}

.hero-stadium-media::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -28%;
  left: -18%;
  height: 62%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50% 50% 0 0;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, rgba(0, 212, 180, 0.09), transparent 60%);
  opacity: 0.72;
}

.hero-stadium-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.stadium-lightbar {
  position: absolute;
  top: 34px;
  right: 30px;
  left: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  z-index: 2;
}

.stadium-lightbar span {
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.72), transparent);
  box-shadow: 0 0 42px rgba(245, 166, 35, 0.32);
}

.stadium-lightbar span:nth-child(2),
.stadium-lightbar span:nth-child(4) {
  background: linear-gradient(90deg, transparent, rgba(0, 212, 180, 0.72), transparent);
  box-shadow: 0 0 42px rgba(0, 212, 180, 0.28);
}

.stadium-rings {
  position: absolute;
  inset: 116px 22px auto;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.stadium-rings span {
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-right-color: rgba(0, 212, 180, 0.18);
  border-left-color: rgba(245, 166, 35, 0.16);
  transform: perspective(520px) rotateX(58deg);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.012);
}

.broadcast-core {
  position: absolute;
  right: 42px;
  bottom: 76px;
  left: 42px;
  z-index: 3;
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 212, 180, 0.12), rgba(245, 166, 35, 0.08)),
    rgba(13, 15, 19, 0.86);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.core-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.core-top span,
.core-top strong,
.device-pills span,
.test-ticket span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  font-style: normal;
}

.core-top strong {
  color: var(--color-gold);
}

.signal-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 136px;
  border: 1px solid rgba(0, 212, 180, 0.2);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle, rgba(0, 212, 180, 0.2), transparent 16%),
    radial-gradient(circle, transparent 0 25%, rgba(245, 166, 35, 0.12) 25% 26%, transparent 26% 45%, rgba(0, 212, 180, 0.13) 45% 46%, transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.signal-mark span {
  position: absolute;
  border: 1px solid rgba(0, 212, 180, 0.34);
  border-radius: 50%;
}

.signal-mark span:nth-child(1) {
  width: 74px;
  height: 74px;
}

.signal-mark span:nth-child(2) {
  width: 132px;
  height: 132px;
  border-color: rgba(245, 166, 35, 0.28);
}

.signal-mark span:nth-child(3) {
  width: 194px;
  height: 194px;
  border-color: rgba(0, 212, 180, 0.16);
}

.signal-mark i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 34px rgba(245, 166, 35, 0.75);
}

.stream-bars {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.55fr;
  gap: 9px;
}

.stream-bars span {
  height: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.stream-bars span:nth-child(1),
.stream-bars span:nth-child(3) {
  background: var(--color-teal);
}

.stream-bars span:nth-child(2),
.stream-bars span:nth-child(4) {
  background: var(--color-gold);
}

.device-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.device-pills span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-primary);
  text-align: center;
}

.test-ticket {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 128px;
  min-height: 112px;
  padding: 18px 14px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  background: rgba(10, 12, 15, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.test-ticket strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gold);
}

.test-ticket span {
  color: var(--color-text-secondary);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: var(--max-width);
  margin: -18px auto 0;
  padding: 0 var(--gutter) 42px;
  gap: 1px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: rgba(17, 19, 24, 0.82);
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 500;
}

.icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.trust-strip .icon,
.icon-wrap .icon {
  flex: 0 0 auto;
  color: var(--color-teal);
}

.section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

.section-first {
  border-top: 0;
  padding-top: 90px;
}

.section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.012);
}

.section-inner,
.footer-grid,
.footer-bottom,
.cta-band,
.article-hero,
.article-layout {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(280px, 7fr);
  gap: var(--space-lg);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 620px;
}

.section-heading p {
  justify-self: end;
  margin-top: 10px;
}

.feature-grid,
.sport-grid,
.blog-grid,
.link-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.feature-grid.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.sport-card,
.plan-card,
.link-card,
.step-card,
.blog-card,
.notice-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.feature-card,
.sport-card,
.link-card,
.step-card,
.blog-card,
.notice-panel {
  padding: 26px;
}

.feature-card,
.sport-card,
.plan-card,
.link-card,
.step-card,
.blog-card {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feature-card:hover,
.sport-card:hover,
.plan-card:hover,
.link-card:hover,
.step-card:hover,
.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-hover);
  background: var(--gradient-card-hover), var(--color-surface);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 212, 180, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 180, 0.06);
}

.feature-card p,
.sport-card p,
.step-card p,
.blog-card p,
.link-card small {
  margin-bottom: 0;
}

.text-link {
  display: inline-grid;
  align-items: center;
  min-height: 44px;
  margin-top: 14px;
  color: var(--color-gold);
  font-weight: 600;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

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

.sport-card {
  min-height: 240px;
  border-left: 2px solid var(--color-gold);
}

.sport-card.teal {
  border-left-color: var(--color-teal);
}

.sport-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-gold);
  text-transform: uppercase;
}

.sport-card.teal h3 {
  color: var(--color-teal);
}

.sport-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-top: 24px;
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.sport-card span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
}

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

.link-card {
  display: grid;
  align-content: start;
  min-height: 156px;
}

.link-card span {
  margin-bottom: 10px;
  color: var(--color-text-primary);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.link-card small {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 540px;
  padding: var(--space-xl) var(--space-lg);
}

.plan-card.featured {
  z-index: 1;
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(245, 166, 35, 0.85);
  background: var(--color-surface-2);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: var(--radius-sm);
  background: rgba(245, 166, 35, 0.14);
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.plan-card h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  text-transform: uppercase;
}

.plan-card p {
  margin-bottom: 0;
}

.price {
  display: grid;
  gap: 4px;
}

.price span,
.score-cell strong {
  font-variant-numeric: tabular-nums;
}

.price span {
  color: var(--color-text-primary);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.price small {
  color: var(--color-text-muted);
  font-size: 14px;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.chip-grid span,
.category-row span {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.plan-card .btn {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.step-card {
  min-height: 250px;
}

.step-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--color-gold);
  font-size: 34px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.scoreboard {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 2px, transparent 2px 8px),
    var(--color-surface);
}

.scoreboard::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(0, 212, 180, 0.08), transparent);
  animation: scan 4s ease-in-out infinite;
}

.score-cell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  min-height: 138px;
  padding: 28px;
  border-left: 2px solid var(--color-teal);
}

.score-cell + .score-cell {
  border-left-color: rgba(0, 212, 180, 0.42);
}

.score-cell strong {
  color: var(--color-text-primary);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.score-cell span {
  color: var(--color-text-secondary);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-table {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.comparison-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  border-left: 0;
}

.comparison-table th {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

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

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 62px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--color-text-primary);
  font-weight: 600;
}

.faq-list summary::after {
  content: "+";
  color: var(--color-gold);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details > div {
  padding: 0 22px 20px;
  color: var(--color-text-secondary);
}

.faq-list a,
.article-content a,
.section-heading a {
  color: var(--color-gold);
  font-weight: 500;
}

.faq-category {
  display: grid;
  grid-template-columns: minmax(220px, 3fr) minmax(0, 9fr);
  gap: var(--space-lg);
  padding: 34px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-category h2 {
  margin: 0;
  font-size: 42px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-top: 44px;
  padding-bottom: 44px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(0, 212, 180, 0.08)),
    var(--color-surface);
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: 50px;
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
}

.cta-band .section-kicker {
  margin-bottom: 10px;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

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

.blog-card {
  min-height: 308px;
}

.blog-card > span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  margin-bottom: 20px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 180, 0.08);
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 600;
}

.blog-card h2 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.14;
  text-transform: none;
}

.article {
  padding-bottom: var(--space-xl);
}

.article-hero {
  padding-top: 82px;
  padding-bottom: 62px;
}

.article-with-hero-image .article-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.article-with-hero-image .article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.84) 42%, rgba(7, 9, 12, 0.48) 70%, rgba(7, 9, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.18) 56%, rgba(7, 9, 12, 0.48) 100%);
}

.article-with-hero-image .article-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 36%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(245, 166, 35, 0.1) 7% 8%, transparent 8% 92%, rgba(0, 212, 180, 0.1) 92% 93%, transparent 93%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.02) 18px 19px);
}

.article-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.article-hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 82px var(--gutter) 64px;
}

.article-hero h1 {
  max-width: 940px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 26px;
}

.article-meta span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(0, 212, 180, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 180, 0.06);
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 600;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 780px);
  gap: var(--space-xl);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.article-aside h2 {
  margin-bottom: 6px;
  font-size: 28px;
}

.article-aside a {
  min-height: 34px;
  color: var(--color-text-secondary);
  font-size: 14px;
}

.article-aside a:hover {
  color: var(--color-gold);
}

.article-content {
  max-width: 780px;
}

.article-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--color-border);
}

.article-section:first-child {
  padding-top: 0;
}

.article-section h2 {
  font-size: 44px;
}

.article-section p {
  margin-bottom: 18px;
  font-size: 18px;
}

.article-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-teal);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text-secondary);
}

.policy-page .article-content {
  width: min(100%, 860px);
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.notice-panel {
  max-width: 820px;
  border-left: 2px solid var(--color-gold);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent),
    #080a0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(245px, 1fr) minmax(120px, 0.55fr) minmax(165px, 0.7fr) minmax(230px, 0.9fr) minmax(220px, 0.85fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 22px;
}

.footer-brand .btn {
  width: auto;
}

.footer-col {
  min-width: 0;
  padding-left: 18px;
  border-left: 1px solid var(--color-border);
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.footer-grid nav a {
  display: grid;
  align-items: center;
  min-height: 34px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.35;
}

.footer-grid nav a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  animation: fadeUp 460ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  30% {
    transform: translate(3%, 2%);
  }

  50% {
    transform: translate(-1%, 4%);
  }

  70% {
    transform: translate(4%, -1%);
  }

  90% {
    transform: translate(-3%, 1%);
  }
}

@keyframes scan {
  0%,
  35% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 52px;
  }

  .hero-grid {
    gap: var(--space-lg);
  }

  .sport-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-lg);
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
  }

  .footer-brand p {
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .logo {
    flex: 0 0 auto;
  }

  .nav-actions {
    margin-left: auto;
  }

  .desktop-nav {
    display: none;
  }

  .nav-actions .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .logo span {
    font-size: 27px;
  }

  .hero::after {
    animation: none;
  }

  .home-hero,
  .home-hero-inner {
    min-height: calc(100svh - 56px);
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.78) 54%, rgba(7, 9, 12, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 9, 12, 0.98) 0%, rgba(7, 9, 12, 0.36) 58%, rgba(7, 9, 12, 0.52) 100%);
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    width: 100%;
    max-width: 100%;
    padding-top: 78px;
    padding-bottom: 44px;
  }

  .home-hero-copy {
    align-self: end;
  }

  .home-hero h1 {
    font-size: clamp(54px, 11vw, 86px);
  }

  .home-hero-panel {
    justify-self: start;
    width: min(100%, 520px);
  }

  .hero-with-image::before,
  .article-with-hero-image .article-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.95) 0%, rgba(7, 9, 12, 0.78) 58%, rgba(7, 9, 12, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.3) 58%, rgba(7, 9, 12, 0.55) 100%);
  }

  .hero-with-image .hero-grid,
  .hero-with-image.hero-compact .hero-grid {
    min-height: 380px;
    padding-top: 70px;
    padding-bottom: 64px;
  }

  .article-with-hero-image .article-hero {
    min-height: 380px;
  }

  .article-hero-copy {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero-grid,
  .hero-compact .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .hero-visual {
    width: 100%;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin-top: 0;
    padding-bottom: 28px;
    gap: 8px;
  }

  .trust-strip span {
    justify-content: flex-start;
    min-height: 56px;
  }

  .section {
    padding: 86px 0;
  }

  .section-first {
    padding-top: 68px;
  }

  .section-heading,
  .faq-category,
  .article-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    justify-self: start;
    margin-top: 0;
  }

  .feature-grid,
  .feature-grid.compact-grid,
  .steps,
  .scoreboard {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .pricing-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 18px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    overflow: visible;
  }

  .plan-card {
    width: 100%;
    max-width: min(480px, 100%);
    margin: 0 auto;
  }

  .plan-card.featured {
    transform: none;
  }

  .article-aside {
    position: static;
  }

  .cta-band .btn {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
  }

  html,
  body {
    width: 100%;
    max-width: 100vw;
  }

  body {
    font-size: 15px;
  }

  .nav-shell,
  .mobile-panel,
  .hero-grid,
  .hero-compact .hero-grid,
  .trust-strip,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .cta-band,
  .article-hero,
  .article-layout,
  .policy-page .article-content {
    width: 100vw;
    max-width: 100vw;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .nav-shell,
  .hero-grid,
  .hero-compact .hero-grid,
  .trust-strip,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .article-hero,
  .article-layout,
  .policy-page .article-content {
    margin-right: 0;
    margin-left: 0;
  }

  .mobile-panel {
    top: 56px;
    padding-top: 22px;
    background:
      linear-gradient(180deg, rgba(245, 166, 35, 0.05), transparent 260px),
      var(--color-bg);
  }

  .mobile-panel nav {
    max-width: 100%;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 12, 0.96) 0%, rgba(7, 9, 12, 0.82) 70%, rgba(7, 9, 12, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 9, 12, 0.98) 0%, rgba(7, 9, 12, 0.38) 54%, rgba(7, 9, 12, 0.64) 100%);
  }

  .home-hero-media img {
    object-position: 68% center;
  }

  .home-hero-inner {
    width: 100vw;
    max-width: 100vw;
    padding: 58px var(--gutter) 34px;
  }

  .home-hero-copy,
  .home-hero-panel {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: calc(100vw - (var(--gutter) * 2));
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .home-hero .hero-lead {
    font-size: 17px;
  }

  .home-hero-panel {
    gap: 6px;
    border: 0;
    border-left: 2px solid var(--color-teal);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero-panel span {
    min-height: 46px;
    border: 1px solid var(--color-border);
    background: rgba(10, 12, 15, 0.68);
    backdrop-filter: blur(10px);
  }

  .hero-with-image .hero-grid,
  .hero-with-image.hero-compact .hero-grid {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .hero-bg-media img,
  .article-hero-media img {
    object-position: 68% center;
  }

  .article-with-hero-image .article-hero {
    min-height: auto;
  }

  .article-hero-copy {
    width: 100vw;
    max-width: 100vw;
    padding: 56px var(--gutter) 52px;
  }

  .hero-copy,
  .hero-grid > *,
  .section-heading,
  .section-heading > p,
  .hero-lead,
  .article-hero > p,
  .feature-card,
  .sport-card,
  .link-card,
  .step-card,
  .blog-card,
  .notice-panel {
    width: calc(100vw - (var(--gutter) * 2));
    max-width: calc(100vw - (var(--gutter) * 2));
    margin-right: auto;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .hero-compact .hero-grid {
    gap: 28px;
    padding-top: 50px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h1,
  h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }

  .hero-lead,
  .article-hero > p,
  .section-heading > p {
    font-size: 17px;
  }

  .cta-row,
  .cta-row .btn,
  .hero-copy .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero-stadium-media {
    width: 100%;
    max-width: 100%;
    min-height: 430px;
    overflow: hidden;
  }

  .stadium-lightbar {
    top: 24px;
    right: 18px;
    left: 18px;
    gap: 8px;
  }

  .stadium-rings {
    inset: 90px 14px auto;
  }

  .broadcast-core {
    right: 18px;
    bottom: 72px;
    left: 18px;
    gap: 16px;
    padding: 20px;
  }

  .signal-mark {
    min-height: 112px;
  }

  .signal-mark span:nth-child(3) {
    width: 154px;
    height: 154px;
  }

  .device-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .test-ticket {
    right: 18px;
    bottom: 18px;
    width: 108px;
    min-height: 88px;
  }

  .test-ticket strong {
    font-size: 32px;
  }

  .feature-grid,
  .feature-grid.compact-grid,
  .sport-grid,
  .link-grid,
  .steps,
  .scoreboard,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-bottom: 22px;
  }

  .footer-brand .btn {
    width: 100%;
  }

  .footer-col {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .score-cell {
    min-height: 108px;
  }

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

  .plan-card {
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    padding: 40px 24px;
  }

  .article-hero {
    padding-top: 56px;
  }

  .article-section h2 {
    font-size: 34px;
  }

  .article-section p {
    font-size: 16px;
  }

  .cta-band {
    margin-top: 78px;
    margin-bottom: 78px;
  }

  .cta-band h2 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    transition-duration: 0.001ms;
  }
}
