﻿:root {
    --background: #101115;
    --surface: #191a20;
    --surface-2: #23242b;
    --text: #ffffff;
    --muted: #c9cbd3;
    --soft: #8f929d;
    --gold: #f4b43e;
    --gold-dark: #c98919;
    --purple: #8b5cf6;
    --green: #22c55e;
    --border: #31333d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 32px;
    background: rgba(16, 17, 21, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

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

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

.nav a:hover {
    color: var(--text);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    padding: 58px 24px 80px;
    background:
        radial-gradient(circle at 50% 32%, rgba(244, 180, 62, 0.22), transparent 34%),
        linear-gradient(180deg, #15161b 0%, var(--background) 100%);
}

.hero-content {
    max-width: 980px;
    text-align: center;
}

.hero-logo {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 28px;
    box-shadow: 0 24px 80px rgba(244, 180, 62, 0.22);
}

.badge,
.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1 {
    max-width: 940px;
    margin: 0 auto;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
}

.lead {
    max-width: 760px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.55;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
    background: var(--gold);
    color: #18120a;
}

.button.primary:hover {
    background: #d99b25;
}

.button.secondary {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.button.full {
    width: 100%;
}

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 96px 24px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 36px;
}

h2 {
    margin: 0;
    font-size: clamp(32px, 4.5vw, 48px);
    line-height: 1.08;
}

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

.feature {
    min-height: 220px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.feature h3,
.included h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.feature p,
.proof p,
.price-text,
.cta p,
.legal p,
.legal li {
    color: var(--muted);
    line-height: 1.6;
}

.feature p {
    margin: 0;
}

.proof {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 62px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof p {
    margin: 0;
    font-size: 19px;
}

.price-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 26px;
    align-items: stretch;
}

.price-card,
.included,
.download-card,
.cta,
.legal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.price-card {
    padding: 30px;
}

.price-card h2 {
    font-size: 34px;
}

.launch-offer {
    display: inline-flex;
    margin: 18px 0 0;
    padding: 8px 11px;
    color: #18120a;
    background: rgba(244, 180, 62, 0.92);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.price {
    margin-top: 20px;
    color: var(--gold);
    font-size: 48px;
    font-weight: 900;
}

.price span {
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.price-text {
    margin: 18px 0 28px;
}

.included {
    padding: 30px;
}

.included ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.included li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
}

.included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
}

.download-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

.download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
}

.download-card h2 {
    max-width: 620px;
}

.download-card p:not(.eyebrow) {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.cta {
    max-width: 980px;
    margin: 0 auto 96px;
    padding: 44px 28px;
    text-align: center;
}

.cta p {
    max-width: 680px;
    margin: 18px auto 28px;
    font-size: 18px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px 32px;
    color: var(--soft);
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer div {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer a:hover {
    color: var(--text);
}

.legal-page {
    padding: 48px 24px 80px;
}

.legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px;
}

.legal h1 {
    font-size: 42px;
    line-height: 1.1;
}

.legal h2 {
    margin-top: 34px;
    font-size: 24px;
}

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

@media (max-width: 880px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 18px 20px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
    }

    .features-grid,
    .proof,
    .price-section,
    .download-card {
        grid-template-columns: 1fr;
    }

    .download-card {
        align-items: stretch;
        flex-direction: column;
    }

    .feature {
        min-height: auto;
    }

    .price-section,
    .section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 520px) {
    .hero-logo {
        width: 118px;
        height: 118px;
    }

    h1 {
        font-size: 40px;
    }

    .lead {
        font-size: 18px;
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}

.video-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 86px 24px 20px;
}

.section-heading.centered {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}


.video-text {
    max-width: 620px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


