:root {
    --bg: #06101e;
    --panel: #0d1828;
    --text: #f7f8fb;
    --muted: #aeb8ca;
    --line: rgba(255, 255, 255, .12);
    --orange: #ffac2f;
    --orange2: #ff6b35
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: radial-gradient(circle at 70% 0, #18345e 0, #07101e 42%, #030812 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif
}

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

.nav {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 9vw;
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 18, .78);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 10
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800
}

.logo {
    width: 42px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: var(--orange)
}

nav {
    display: flex;
    gap: 34px;
    color: #d8deeb;
    font-weight: 600
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 800;
    border: 1px solid var(--line)
}

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

.small {
    padding: 10px 18px
}

.primary {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #160d04;
    border: 0;
    box-shadow: 0 0 30px rgba(255, 172, 47, .28)
}

.dark {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .2)
}

.full {
    width: 100%
}

.hero {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: center;
    padding: 64px 9vw 52px;
    border-bottom: 1px solid var(--line)
}

.pill {
    display: inline-flex;
    border: 1px solid rgba(255, 172, 47, .45);
    background: rgba(255, 172, 47, .08);
    color: #ffd48a;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 22px
}

h1 {
    font-size: clamp(46px, 5.4vw, 82px);
    line-height: .96;
    margin: 0;
    letter-spacing: -.06em
}

h1 span {
    background: linear-gradient(135deg, #ffb42e, #ff4b28);
    -webkit-background-clip: text;
    color: transparent
}

.lead {
    font-size: 22px;
    color: #d2d9e7;
    line-height: 1.45;
    max-width: 620px
}

.actions {
    display: flex;
    gap: 16px;
    margin: 28px 0 16px;
    flex-wrap: wrap
}

.platforms {
    display: flex;
    gap: 18px;
    color: #cbd5e1;
    font-weight: 700
}

.platforms span:before {
    content: "• ";
    opacity: .55
}

.visual {
    height: 460px;
    position: relative
}

.window,
.pip {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(9, 14, 24, .84);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px)
}

.code {
    right: 0;
    top: 0;
    width: 72%;
    height: 310px;
    border-radius: 18px;
    padding: 18px;
    color: #9fd2ff
}

.code pre {
    font-size: 17px;
    line-height: 1.6
}

.sheet {
    left: 0;
    bottom: 52px;
    width: 54%;
    height: 210px;
    border-radius: 16px;
    padding: 16px
}

.grid {
    height: 160px;
    background: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 42px 28px
}

.pip {
    right: 20px;
    top: 120px;
    width: 430px;
    border-radius: 18px;
    overflow: hidden;
    border-color: rgba(255, 172, 47, .3)
}

.pipbar {
    height: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    background: rgba(0, 0, 0, .55)
}

.pipbar b {
    margin-right: auto
}

.video {
    height: 210px;
    position: relative;
    background: linear-gradient(135deg, #183a5d, #101827 40%, #1a321d)
}

.video i {
    position: absolute;
    left: 14px;
    top: 14px;
    background: #ef4444;
    border-radius: 6px;
    padding: 4px 7px;
    font-size: 11px;
    font-weight: 900
}

.video strong {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 54px
}

.playerbar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    background: #020617
}

.playerbar em {
    height: 6px;
    flex: 1;
    background: #475569;
    border-radius: 99px
}

.playerbar u {
    display: block;
    width: 58%;
    height: 100%;
    background: var(--orange);
    border-radius: 99px
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 28px 9vw;
    border-bottom: 1px solid var(--line)
}

.features article,
.plan,
.compare,
.downloads a,
.football,
.faq details {
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    border: 1px solid var(--line);
    border-radius: 18px
}

.features article {
    padding: 22px
}

.features div {
    font-size: 34px
}

.features h3 {
    margin: 12px 0 6px
}

.features p,
.football p,
.title p,
.note,
.faq p {
    color: var(--muted);
    line-height: 1.5
}

.football {
    margin: 28px 9vw;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 26px
}

.ball {
    font-size: 44px
}

.pricing,
.download,
.faq {
    padding: 34px 9vw
}

.title {
    text-align: center;
    margin-bottom: 24px
}

.title h2 {
    font-size: 34px;
    margin: 0 0 6px
}

.plans {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.05fr;
    gap: 28px
}

.plan,
.compare {
    padding: 28px;
    position: relative
}

.price {
    font-size: 52px;
    font-weight: 900
}

.plan ul {
    list-style: none;
    padding: 0;
    line-height: 1.9
}

.plan li:before {
    content: "✓ ";
    color: var(--orange);
    font-weight: 900
}

.pro {
    border-color: rgba(255, 172, 47, .6);
    box-shadow: 0 0 40px rgba(255, 172, 47, .11)
}

.popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    border: 1px solid rgba(255, 172, 47, .7);
    color: #ffd48a;
    border-radius: 999px;
    padding: 5px 18px;
    font-weight: 900
}

.compare table {
    width: 100%;
    border-collapse: collapse
}

.compare td,
.compare th {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 8px
}

.compare td:not(:first-child) {
    text-align: center;
    color: #4ade80;
    font-weight: 900
}

.downloads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.downloads a {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    padding: 22px
}

.downloads span {
    font-size: 42px
}

.downloads b {
    font-size: 22px
}

.downloads em {
    display: block;
    color: var(--muted);
    font-style: normal
}

.faq {
    max-width: 1000px;
    margin: auto
}

.faq h2 {
    text-align: center;
    font-size: 34px
}

.faq details {
    padding: 20px;
    margin: 14px 0
}

.faq summary {
    cursor: pointer;
    font-weight: 800
}

footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    padding: 24px 9vw;
    color: #98a6bd;
    border-top: 1px solid var(--line);
    font-size: 14px
}

footer div:last-child {
    text-align: right
}

@media(max-width:1000px) {

    .hero,
    .plans {
        grid-template-columns: 1fr
    }

    .visual {
        height: 420px
    }

    .features,
    .downloads {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:720px) {
    .nav {
        padding: 0 18px
    }

    .nav nav,
    .nav>.btn {
        display: none
    }

    .hero {
        padding: 42px 22px
    }

    .visual {
        display: none
    }

    .features,
    .downloads {
        grid-template-columns: 1fr;
        padding-left: 22px;
        padding-right: 22px
    }

    .pricing,
    .download,
    .faq {
        padding-left: 22px;
        padding-right: 22px
    }

    .football {
        margin-left: 22px;
        margin-right: 22px
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center
    }

    footer div:last-child {
        text-align: center
    }
}

.support-section{
    padding:90px 20px;
    background:#08111f;
}

.support-card{

    max-width:700px;
    margin:auto;

    text-align:center;

    padding:50px;

    border-radius:24px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.10);

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}

.support-icon{

    font-size:46px;
    margin-bottom:18px;

}

.support-card h2{

    color:white;
    font-size:38px;
    margin-bottom:18px;

}

.support-card p{

    color:#b8c6e4;
    font-size:18px;
    line-height:1.6;
    max-width:560px;
    margin:auto auto 30px;

}

.support-button{

    display:inline-block;

    padding:18px 36px;

    border-radius:16px;

    text-decoration:none;

    color:#08111f;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #ffb84d,
        #ff7a1a
    );

    transition:.2s;

}

.support-button:hover{

    transform:translateY(-2px);

}

.support-email{

    margin-top:25px;

    color:#ffb84d;

    font-size:18px;

    font-weight:700;

}

.support-card small{

    display:block;

    margin-top:12px;

    color:#9fb1d4;

}