:root {
    --ink: #111111;
    --muted: #707070;
    --paper: #f4f4f1;
    --card: #ffffff;
    --line: #e7e3dc;
    --red: #ff3b3b;
    --red-dark: #d92222;
    --green: #29a36a;
    --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
    --radius-lg: 34px;
    --radius-md: 22px;
    --font-heading: "Space Grotesk", sans-serif;
    --font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 5%, rgba(255, 59, 59, 0.10), transparent 24rem),
        linear-gradient(180deg, #fbfaf7 0%, var(--paper) 100%);
    color: var(--ink);
    font-family: var(--font-body);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 76px);
    background: rgba(251, 250, 247, 0.86);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 20px;
    font-weight: 800;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover {
    color: var(--red-dark);
}

.nav-cta,
.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
}

.nav-cta {
    min-height: 44px;
    padding: 0 18px;
    background: var(--ink);
    color: white;
    font-size: 14px;
}

.header-store-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    overflow: hidden;
    border-radius: 9px;
    transition: transform 160ms ease, filter 160ms ease;
}

.header-store-badge:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.header-store-badge img {
    display: block;
    height: 34px;
    width: auto;
}

.google-header-badge img {
    height: 49px;
    margin: -7px -8px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(34px, 6vw, 90px);
    min-height: calc(100vh - 82px);
    padding: clamp(42px, 6vw, 84px) clamp(20px, 6vw, 96px);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 59, 59, 0.22);
    border-radius: 999px;
    background: rgba(255, 59, 59, 0.08);
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 7.4vw, 104px);
    line-height: 0.91;
}

.hero-copy p {
    max-width: 660px;
    margin: 24px 0 0;
    color: #454545;
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.store-badge-row {
    align-items: center;
    gap: 16px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    border-radius: 14px;
    transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.store-badge img {
    display: block;
    height: 58px;
    width: auto;
}

.google-play-badge img {
    height: 84px;
    margin: -13px -14px;
}

.store-button {
    min-width: 172px;
    min-height: 58px;
    padding: 10px 20px;
    border: 1px solid var(--ink);
    font-size: 18px;
}

.store-button span {
    display: block;
    margin-right: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0.78;
}

.store-dark {
    background: var(--ink);
    color: white;
}

.store-light {
    background: white;
    color: var(--ink);
}

.launch-note {
    max-width: 560px;
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--red);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    color: #4f4f4f;
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.07);
}

.launch-note strong {
    color: var(--ink);
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
}

.phone-frame {
    position: relative;
    width: min(360px, 78vw);
    min-height: 630px;
    padding: 28px 22px;
    border: 14px solid #050505;
    border-radius: 46px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 244, 241, 0.96)),
        radial-gradient(circle at 45% 15%, rgba(255, 59, 59, 0.18), transparent 170px);
    box-shadow: var(--shadow);
}

.phone-top {
    width: 112px;
    height: 28px;
    margin: -16px auto 24px;
    border-radius: 0 0 18px 18px;
    background: #050505;
}

.app-card,
.sports-hero-card,
.joined-card {
    border-radius: 24px;
    background: white;
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.10);
}

.location-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.location-card small {
    display: block;
    color: var(--muted);
}

.pin {
    color: var(--red);
    font-size: 22px;
}

.sports-hero-card {
    margin-top: 18px;
    min-height: 235px;
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(17, 17, 17, 0.74), rgba(17, 17, 17, 0.20)),
        linear-gradient(135deg, #dff2e7, #ffffff 48%, #ffd9d9);
    color: white;
}

.sports-hero-card span {
    font-weight: 900;
}

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

.sport-grid b {
    padding: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-size: 13px;
}

.joined-card {
    margin-top: 18px;
    padding: 18px;
}

.joined-card small,
.joined-card strong,
.joined-card span {
    display: block;
}

.joined-card small {
    color: var(--muted);
}

.joined-card strong {
    margin-top: 5px;
    font-size: 18px;
}

.joined-card span {
    margin-top: 10px;
    color: var(--green);
    font-weight: 900;
}

.orbit-badge {
    position: absolute;
    padding: 13px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.18);
}

.badge-one {
    left: 2%;
    top: 18%;
}

.badge-two {
    right: 0;
    top: 35%;
    background: var(--red);
}

.badge-three {
    left: 8%;
    bottom: 20%;
    background: white;
    color: var(--ink);
}

.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 clamp(20px, 6vw, 96px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--line);
    box-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
}

.metric-strip div {
    padding: 28px;
    background: white;
}

.metric-strip strong,
.metric-strip span {
    display: block;
}

.metric-strip strong {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 46px);
    letter-spacing: -0.04em;
}

.metric-strip span {
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.section {
    padding: clamp(70px, 9vw, 124px) clamp(20px, 6vw, 96px);
}

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

.section-heading.compact {
    margin-bottom: 0;
}

.section-heading h2,
.download-panel h2,
.page-hero h1 {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 0.96;
}

.section-heading p,
.page-hero p,
.download-panel p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

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

.feature-card {
    min-height: 245px;
    padding: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-md);
    background: var(--card);
    box-shadow: 0 12px 35px rgba(17, 17, 17, 0.05);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 30px;
    border-radius: 14px;
    background: var(--ink);
    color: white;
    font-weight: 900;
}

.feature-card h3 {
    font-size: 25px;
    line-height: 1.05;
}

.feature-card p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
    background: #111;
    color: white;
}

.split-section .section-heading p {
    color: rgba(255, 255, 255, 0.68);
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
}

.step b {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
}

.step span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.5;
}

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

.preview-card {
    min-height: 330px;
    padding: 26px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow);
}

.preview-label {
    display: inline-flex;
    margin-bottom: 48px;
    color: var(--red-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-card h3 {
    font-size: 30px;
    line-height: 1;
}

.preview-card p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.preview-card strong {
    display: inline-flex;
    margin-top: 22px;
    color: var(--green);
    font-weight: 900;
}

.preview-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.preview-pills b {
    padding: 12px;
    border-radius: 14px;
    background: #f4f4f1;
    font-size: 13px;
}

.audience-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.audience-card {
    min-height: 300px;
    padding: 30px;
    border-radius: var(--radius-lg);
}

.audience-card span {
    display: inline-flex;
    margin-bottom: 76px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.audience-card h3 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}

.audience-card.dark {
    background: var(--ink);
    color: white;
}

.audience-card.red {
    background: var(--red);
    color: white;
}

.audience-card.light {
    background: white;
    color: var(--ink);
}

.download-panel {
    margin: 0 clamp(20px, 6vw, 96px) clamp(70px, 8vw, 110px);
    padding: clamp(38px, 6vw, 76px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 59, 59, 0.20), transparent 280px),
        var(--ink);
    color: white;
    box-shadow: var(--shadow);
}

.download-panel p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.72);
}

.page-hero {
    padding: clamp(70px, 9vw, 126px) clamp(20px, 6vw, 96px) 38px;
}

.page-hero p {
    max-width: 720px;
}

.content-card {
    width: calc(100% - clamp(40px, 12vw, 192px));
    max-width: 1040px;
    margin: 0 auto clamp(70px, 9vw, 126px);
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 16px 50px rgba(17, 17, 17, 0.08);
}

.content-card h2 {
    font-size: clamp(28px, 4vw, 46px);
}

.content-card p {
    color: #555;
    font-size: 18px;
    line-height: 1.75;
}

.legal-copy ul {
    margin: 12px 0 24px;
    padding-left: 22px;
    color: #555;
    font-size: 18px;
    line-height: 1.75;
}

.legal-copy li + li {
    margin-top: 8px;
}

.content-card a {
    color: var(--red-dark);
    font-weight: 900;
}

.muted {
    color: var(--muted) !important;
}

.legal-copy {
    max-width: 920px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 34px clamp(20px, 6vw, 96px);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: -0.04em;
}

.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.site-footer p {
    max-width: 380px;
    margin: 10px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    font-weight: 800;
}

.footer-store-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-store-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    overflow: hidden;
    border-radius: 11px;
    transition: transform 160ms ease, filter 160ms ease;
}

.footer-store-badge:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.footer-store-badge img {
    display: block;
    height: 42px;
    width: auto;
}

.google-footer-badge img {
    height: 61px;
    margin: -9px -10px;
}

.footer-copy {
    grid-column: 1 / -1;
    max-width: none !important;
    margin: 8px 0 0 !important;
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 30;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: var(--ink);
    color: white;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 14px 36px rgba(17, 17, 17, 0.22);
    transition: transform 160ms ease, background 160ms ease;
}

.back-to-top:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .hero,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-visual {
        min-height: 560px;
    }

    .feature-grid,
    .preview-grid,
    .audience-section {
        grid-template-columns: 1fr 1fr;
    }

    .metric-strip,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-links,
    .footer-store-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 4px;
    }

    .nav-cta {
        min-height: 38px;
        padding: 0 14px;
    }

    .header-store-links {
        margin-left: auto;
    }

    .header-store-badge {
        height: 30px;
    }

    .header-store-badge img {
        height: 30px;
    }

    .google-header-badge img {
        height: 43px;
        margin: -6px -7px;
    }

    .hero h1 {
        font-size: clamp(44px, 15vw, 70px);
    }

    .hero-visual {
        min-height: 510px;
    }

    .phone-frame {
        min-height: 540px;
        border-width: 10px;
    }

    .orbit-badge {
        display: none;
    }

    .metric-strip,
    .feature-grid,
    .preview-grid,
    .audience-section {
        grid-template-columns: 1fr;
    }

    .preview-card {
        min-height: 310px;
    }

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

    .store-badge-row {
        align-items: flex-start;
    }

    .store-badge {
        width: fit-content;
    }

    .store-button {
        width: 100%;
    }
}
