:root {
    --navy-950: #020711;
    --navy-900: #030b19;
    --navy-850: #061127;
    --navy-800: #081831;
    --blue: #058ee9;
    --blue-bright: #05b9ff;
    --red: #ff1d38;
    --white: #f8fbff;
    --muted: #a9bad0;
    --line: rgba(49, 139, 255, .42);
    --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--navy-950);
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 10, 24, .93);
    border-bottom: 1px solid rgba(43, 124, 225, .24);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.brand img {
    width: 70px;
    height: 54px;
    object-fit: contain;
    border-radius: 6px;
}

.brand span { display: grid; gap: 2px; }
.brand strong {
    font: 900 33px/.75 "Arial Black", Impact, sans-serif;
    letter-spacing: -.07em;
    font-style: italic;
}
.brand em {
    font: 900 14px/1 "Arial Narrow", Arial, sans-serif;
    letter-spacing: .04em;
    font-style: normal;
}

.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a { color: #dce8f8; font-weight: 700; font-size: .94rem; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--blue-bright); }

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: white; border-radius: 10px; }

.hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(2, 7, 17, .98) 0%, rgba(3, 13, 31, .92) 48%, rgba(3, 19, 48, .76) 100%),
        repeating-linear-gradient(135deg, transparent 0 48px, rgba(30, 113, 235, .035) 49px 50px);
    isolation: isolate;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    background: linear-gradient(transparent, rgba(2, 7, 17, .88));
    z-index: -1;
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .25; z-index: -2; }
.hero-glow-one { width: 500px; height: 500px; background: #005cff; right: 5%; top: 2%; }
.hero-glow-two { width: 240px; height: 240px; background: var(--red); right: 36%; bottom: -160px; opacity: .12; }

.hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
    padding-block: 74px 82px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 13px;
    color: #dbe8f8;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 3px; background: var(--red); }

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

h1 {
    margin-bottom: 20px;
    font: 900 clamp(3.4rem, 6vw, 5.7rem)/.91 "Arial Narrow", "Arial Black", Impact, sans-serif;
    letter-spacing: -.045em;
    text-transform: uppercase;
}
h1 mark { color: white; background: none; position: relative; }
h1 mark::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 72px; height: 5px; background: var(--red); }

.hero-lede { max-width: 535px; color: #c7d5e8; font-size: 1.2rem; line-height: 1.45; }

.primary-action {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    min-height: 58px;
    margin-top: 10px;
    padding: 0 24px;
    color: white;
    border: 1px solid #49d5ff;
    border-radius: 9px;
    background: linear-gradient(135deg, #007fe3, #06b8f6);
    box-shadow: 0 0 28px rgba(0, 166, 255, .28), inset 0 1px rgba(255,255,255,.3);
    font-family: "Arial Narrow", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.primary-action span { font-size: 2rem; line-height: 1; }
.primary-action:hover, .primary-action:focus-visible { transform: translateY(-2px); box-shadow: 0 0 38px rgba(0, 166, 255, .42); }

.signal-row { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 26px; color: #9fb2ca; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.signal-row span { display: inline-flex; align-items: center; gap: 7px; }
.signal-row i { width: 7px; height: 7px; background: #28d77d; border-radius: 50%; box-shadow: 0 0 10px #28d77d; }

.display-stage { perspective: 1300px; }
.tv { transform: rotateY(-5deg); transform-origin: center; filter: drop-shadow(0 28px 30px rgba(0,0,0,.52)); }
.tv-screen {
    position: relative;
    min-height: 390px;
    padding: 27px;
    overflow: hidden;
    border: 9px solid #070a10;
    border-radius: 8px;
    background: linear-gradient(155deg, #061127, #020713);
    box-shadow: inset 0 0 0 1px #2a3442, inset 0 0 55px rgba(0, 96, 255, .12);
}
.tv-screen::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, rgba(255,255,255,.06), transparent 24%); }
.tv-stand { width: 44%; height: 25px; margin: 0 auto; background: linear-gradient(#151923, #05070b); clip-path: polygon(17% 0, 83% 0, 100% 100%, 0 100%); }

.screen-brand { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 9px; margin-bottom: 22px; }
.screen-brand img { width: 58px; height: 46px; object-fit: contain; }
.screen-brand > span { font: 900 16px/1 "Arial Narrow", Arial, sans-serif; }
.screen-brand > span b { display: block; font-size: 30px; font-style: italic; }
.screen-brand p { margin: 0; padding-left: 15px; border-left: 3px solid var(--red); font: 900 12px/1.15 "Arial Narrow", Arial, sans-serif; letter-spacing: .03em; text-transform: uppercase; }

.score-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.score-card { padding: 11px 14px; border: 1px solid rgba(43, 135, 255, .9); border-radius: 7px; background: rgba(4, 15, 34, .88); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.score-card header, .score-card div { display: flex; align-items: center; justify-content: space-between; }
.score-card header { min-height: 21px; margin-bottom: 5px; color: #a9b9cf; font-family: "Arial Narrow", Arial, sans-serif; font-size: .8rem; font-weight: 800; text-transform: uppercase; }
.score-card.live header span { color: var(--red); }
.score-card div { font-family: "Arial Narrow", Arial, sans-serif; font-size: 1.2rem; line-height: 1.3; }
.score-card div strong { font-size: 1.35rem; }

.section { padding-block: 88px; }
.sports-section { background: linear-gradient(#06142d, #040d1e); border-block: 1px solid rgba(27, 103, 204, .24); }
.section-heading { max-width: 680px; margin-bottom: 38px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .launch-card h2 { margin-bottom: 13px; font: 900 clamp(2rem, 4vw, 3.5rem)/1 "Arial Narrow", "Arial Black", Impact, sans-serif; letter-spacing: -.025em; text-transform: uppercase; }
.section-heading > p:last-child, .launch-card > div > p:last-child { color: var(--muted); font-size: 1.05rem; }

.sport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sport-grid article { min-height: 105px; display: flex; align-items: center; gap: 15px; padding: 18px; border: 1px solid var(--line); border-radius: 9px; background: rgba(7, 22, 48, .75); }
.sport-grid article > span { font-size: 2.2rem; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.sport-grid h3 { margin: 0 0 2px; font-size: 1.03rem; }
.sport-grid p { margin: 0; color: #91a6c1; font-size: .78rem; line-height: 1.35; }

.benefits { background: radial-gradient(circle at 50% 30%, rgba(0, 89, 214, .12), transparent 42%); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-grid article { position: relative; min-height: 280px; padding: 32px; overflow: hidden; border: 1px solid rgba(41, 111, 207, .35); border-radius: 12px; background: linear-gradient(145deg, rgba(9, 29, 61, .92), rgba(3, 10, 24, .96)); }
.benefit-number { position: absolute; top: 13px; right: 18px; color: rgba(128, 173, 232, .13); font: 900 4.6rem/1 "Arial Black", sans-serif; }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 27px; border: 1px solid #168bff; border-radius: 9px; color: white; background: #083b78; font-size: 1.55rem; box-shadow: 0 0 24px rgba(0, 126, 255, .2); }
.benefit-grid h3 { margin-bottom: 9px; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .02em; }
.benefit-grid p { margin: 0; color: #9db0c8; }

.launch-section { padding-top: 20px; }
.launch-card { position: relative; display: grid; grid-template-columns: 170px 1fr auto; gap: 34px; align-items: center; padding: 38px 42px; overflow: hidden; border: 1px solid #1758aa; border-radius: 16px; background: linear-gradient(115deg, #07172f, #082656); }
.launch-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -120px; top: -130px; border-radius: 50%; background: var(--blue); filter: blur(70px); opacity: .23; }
.launch-card img { width: 155px; border-radius: 10px; }
.launch-card h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); }
.launch-badge { position: relative; z-index: 1; padding: 12px 18px; border: 1px solid #4dccff; border-radius: 99px; color: #cceeff; background: rgba(0, 143, 229, .18); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .07em; white-space: nowrap; }

footer { border-top: 1px solid rgba(40, 101, 176, .25); background: #01050c; }
.footer-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { transform: scale(.82); transform-origin: left center; }
.footer-inner p { margin: 0; color: #71849e; font-size: .85rem; }
.footer-meta { display: grid; justify-items: end; gap: 8px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #9fb2ca; font-size: .82rem; font-weight: 700; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--blue-bright); }

.legal-main {
    min-height: calc(100vh - 194px);
    padding-block: 72px 88px;
    background:
        radial-gradient(circle at 85% 5%, rgba(0, 107, 255, .16), transparent 32%),
        linear-gradient(145deg, #020711, #05152e);
}
.legal-card {
    max-width: 900px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(49, 139, 255, .35);
    border-radius: 16px;
    background: rgba(4, 14, 31, .92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}
.legal-card h1 {
    margin-bottom: 10px;
    font-size: clamp(2.3rem, 6vw, 4.4rem);
}
.legal-updated { margin-bottom: 34px; color: var(--muted); font-size: .92rem; }
.legal-card h2 { margin: 34px 0 10px; font-size: 1.35rem; color: #f5f9ff; }
.legal-card p, .legal-card li { color: #b8c8dc; }
.legal-card ul { padding-left: 22px; }
.legal-card a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .signal-row { justify-content: center; }
    .hero-lede { margin-inline: auto; }
    h1 mark::after { left: 50%; transform: translateX(-50%); }
    .display-stage { max-width: 680px; margin-inline: auto; }
    .sport-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-grid article { min-height: auto; }
    .launch-card { grid-template-columns: 130px 1fr; }
    .launch-badge { grid-column: 2; justify-self: start; }
}

@media (max-width: 700px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .header-inner { min-height: 72px; }
    .brand img { width: 58px; height: 45px; }
    .brand strong { font-size: 28px; }
    .brand em { font-size: 12px; }
    .menu-toggle { display: block; }
    .site-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 18px; background: rgba(2, 10, 24, .98); border-bottom: 1px solid var(--line); }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 12px 4px; }
    .hero { min-height: auto; }
    .hero-grid { gap: 40px; padding-block: 54px 68px; }
    .hero-copy { text-align: left; }
    .hero-copy .eyebrow, .signal-row { justify-content: flex-start; }
    .hero-lede { margin-inline: 0; font-size: 1.05rem; }
    h1 { font-size: clamp(3rem, 15.5vw, 4.4rem); }
    h1 mark::after { left: 0; transform: none; }
    .primary-action { display: flex; justify-content: space-between; width: 100%; }
    .signal-row { gap: 11px 15px; }
    .tv { transform: none; }
    .tv-screen { min-height: 0; padding: 15px; border-width: 6px; }
    .screen-brand { grid-template-columns: 45px 1fr; }
    .screen-brand img { width: 45px; height: 38px; }
    .screen-brand > span b { font-size: 22px; }
    .screen-brand p { grid-column: 1 / -1; padding: 8px 0 0; border: 0; border-top: 2px solid var(--red); }
    .score-grid { gap: 7px; }
    .score-card { padding: 8px 9px; }
    .score-card header { font-size: .66rem; }
    .score-card div { font-size: .96rem; }
    .score-card div strong { font-size: 1.08rem; }
    .section { padding-block: 66px; }
    .section-heading { margin-bottom: 27px; }
    .sport-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
    .sport-grid article { min-height: 88px; padding: 12px; gap: 10px; }
    .sport-grid article > span { font-size: 1.65rem; }
    .sport-grid p { display: none; }
    .launch-card { grid-template-columns: 1fr; gap: 22px; padding: 28px; text-align: center; }
    .launch-card img { width: 140px; margin-inline: auto; }
    .launch-card .eyebrow { justify-content: center; }
    .launch-badge { grid-column: 1; justify-self: center; }
    .footer-inner { flex-direction: column; justify-content: center; gap: 5px; padding-block: 20px; }
    .footer-brand { transform-origin: center; }
    .footer-meta { justify-items: center; }
    .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
