:root {
    --blue: #0b63ce;
    --light-blue: #8fc7f5;
    --dark-blue: #061b3d;
    --navy: #071426;
    --bg: #f4f8ff;
    --text: #111827;
    --muted: #5b6475;
    --border: #dbe5f2;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4ff 100%);
    color: var(--text);
}

a {
    text-decoration: none;
}

/* HEADER */

.site-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,.10);
}


.banner-link {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.site-banner {
    display: block;
    width: 100%;
    height: auto;
}

.nav-bar {
    background: #061b3d;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 58px;
    padding: 18px 20px;

    position: sticky;
    top: 0;
    z-index: 1001;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: color .25s ease;
}

.nav-bar a:hover {
    color: #8fc7f5;
}

@media (max-width: 700px) {
    .nav-bar {
        gap: 18px;
        padding: 14px 10px;
        flex-wrap: wrap;
    }

    .nav-bar a {
        font-size: 14px;
    }
}

/* PAGE LAYOUT */

.page-wrap {
    max-width: 1100px;
    margin: 44px auto;
    padding: 0 20px;
}

.hero-card,
.content-card,
.app-card,
.product-card,
.mission-card,
.support-banner {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(7,20,38,.13);
}

.hero-card {
    text-align: center;
    padding: 46px;
    margin-bottom: 30px;
}

.content-card {
    padding: 42px;
    margin-bottom: 30px;
}

h1 {
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--navy);
}

h2 {
    font-size: 28px;
    margin: 30px 0 12px;
    color: var(--blue);
}

h3 {
    font-size: 21px;
    margin: 20px 0 10px;
    color: var(--navy);
}

p,
li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

ul {
    padding-left: 24px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--blue);
    border-radius: 99px;
    margin: 22px auto;
}

.eyebrow {
    color: var(--blue);
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 14px;
}

/* BUTTONS */

.button-primary,
.button-outline {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 900;
}

.button-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 10px 24px rgba(11,99,206,.28);
}

.button-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: white;
}

/* HOME */

.home-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 58px;
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-copy p {
    font-size: 22px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.device-preview {
    background: #071426;
    border-radius: 34px;
    padding: 30px;
    color: white;
    box-shadow: 0 28px 70px rgba(7,20,38,.28);
}

.score-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.score-row strong {
    font-size: 42px;
}

.court-preview {
    height: 150px;
    margin: 24px 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #d6a660, #f1c27a);
    color: var(--blue);
    font-size: 42px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section {
    max-width: 1180px;
    margin: 34px auto;
    padding: 0 20px;
}

.home-section > h2 {
    text-align: center;
    color: var(--navy);
}

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

.app-card {
    padding: 28px;
}

.app-icon {
    font-size: 42px;
}

.status-pill {
    display: inline-block;
    margin-top: 18px;
    background: #eaf4ff;
    color: var(--blue);
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 99px;
    font-size: 13px;
}

/* PRODUCTS */

.product-list {
    display: grid;
    gap: 28px;
}

.product-card {
    padding: 34px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 28px;
}

.product-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient(145deg, #eaf4ff, #d9ebff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

/* INFO BOX */

.info-box {
    background: #eef6ff;
    border: 1px solid #cfe3ff;
    border-radius: 18px;
    padding: 22px;
    margin: 22px 0;
}

/* FOOTER */

.footer {
    background: var(--dark-blue);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    color: #d8e5f7;
    margin: 6px 0;
    font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {
    .site-banner {
        height: 110px;
    }

    .nav-links {
        gap: 18px;
        padding: 14px 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .home-hero {
        grid-template-columns: 1fr;
        padding: 42px 22px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

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

    .product-card {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .content-card {
        padding: 30px 24px;
    }
}

.clean-hero {
    padding-top: 58px;
}

.premium-preview {
    border: 1px solid rgba(143,199,245,.25);
}

.section-label {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.home-section h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.18;
}

.app-card,
.value-item,
.support-banner {
    transition: transform .2s ease, box-shadow .2s ease;
}

.app-card:hover,
.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(7,20,38,.16);
}

.support-banner {
    background:
        radial-gradient(circle at top right, rgba(11,99,206,.12), transparent 35%),
        white;
}