* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    color-scheme: dark;
    --bg: #090a0d;
    --panel: #11141a;
    --panel-2: #151923;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f7f8fb;
    --muted: #a5acb9;
    --quiet: #707888;
    --primary: #75a2ff;
    --primary-strong: #2f6fed;
    --gold: #f0c861;
    --positive: #45c88a;
    --negative: #ff6f7c;
    --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(47, 111, 237, 0.12), transparent 42%),
        linear-gradient(260deg, rgba(240, 200, 97, 0.08), transparent 42%),
        var(--bg);
}

img { max-width: 100%; display: block; }

a { color: var(--primary); }
a:hover { color: #a8c2ff; }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(9, 10, 13, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    min-width: 0;
}

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

.nav-brand span {
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

section { padding: 5rem 2rem; }

.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 2rem 3rem;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    max-width: 940px;
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.98;
    margin-bottom: 1.25rem;
}

.hero p {
    color: var(--muted);
    max-width: 680px;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 2.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 46px;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.button:hover { transform: translateY(-1px); }
.button svg { width: 21px; height: 21px; flex: 0 0 auto; }

.button.primary {
    background: #fff;
    color: #08090b;
}

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

.button.secondary:hover { border-color: rgba(117, 162, 255, 0.5); }

.hero-screens {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.7rem, 2vw, 1.5rem);
    align-items: end;
}

.phone-shot {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    background: #111;
    overflow: hidden;
}

.phone-shot:nth-child(1),
.phone-shot:nth-child(3) {
    transform: translateY(2.25rem);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 660px;
    margin: 0 auto 3rem;
    font-size: 1.03rem;
}

.features-grid {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.pricing-card,
.proof-card,
.faq-item,
.contact-card {
    background: rgba(17, 20, 26, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature-card {
    padding: 1.35rem;
    min-height: 178px;
}

.icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    color: var(--text);
    background: rgba(117, 162, 255, 0.16);
}

.icon svg { width: 21px; height: 21px; }

.feature-card:nth-child(2) .icon,
.feature-card:nth-child(5) .icon {
    background: rgba(240, 200, 97, 0.15);
    color: var(--gold);
}

.feature-card:nth-child(3) .icon,
.feature-card:nth-child(6) .icon {
    background: rgba(69, 200, 138, 0.14);
    color: var(--positive);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
}

.feature-card p,
.proof-card p,
.step p {
    color: var(--muted);
    font-size: 0.93rem;
}

.proof-band {
    background: rgba(255, 255, 255, 0.035);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.proof-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.proof-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.proof-copy p {
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.proof-points {
    display: grid;
    gap: 0.85rem;
}

.proof-card {
    padding: 1rem;
}

.proof-card strong {
    display: block;
    margin-bottom: 0.2rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.screenshot-grid .phone-shot {
    border-radius: 22px;
}

.steps-grid,
.pricing-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    font-weight: 800;
    background: var(--primary-strong);
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
}

.pricing-card {
    padding: 1.5rem;
}

.pricing-card.premium {
    border-color: rgba(117, 162, 255, 0.65);
}

.pricing-badge {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: #08090b;
    background: var(--gold);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 850;
    line-height: 1.1;
}

.pricing-price span {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-period {
    color: var(--quiet);
    font-size: 0.85rem;
    margin: 0.2rem 0 1.25rem;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    color: #d7dbe3;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.pricing-features li::before {
    content: "\2713  ";
    color: var(--positive);
    font-weight: 800;
}

.pricing-features li.disabled {
    color: #677080;
}

.pricing-features li.disabled::before {
    content: "\2014  ";
    color: #4b5260;
}

.bottom-cta {
    text-align: center;
    border-top: 1px solid var(--line);
}

.bottom-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.bottom-cta p {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 1.5rem;
}

.content {
    max-width: 760px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
    color: #d2d7df;
}

.content h1 {
    color: var(--text);
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.updated,
.subtitle {
    color: var(--quiet);
    margin-bottom: 3rem;
}

.content h2 {
    color: var(--text);
    font-size: 1.25rem;
    margin: 2.5rem 0 0.75rem;
}

.content h3 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.content p { margin-bottom: 1rem; }
.content ul { margin: 0 0 1rem 1.35rem; }
.content li { margin-bottom: 0.4rem; }

.faq-item,
.contact-card {
    padding: 1rem;
    margin-bottom: 1rem;
}

.faq-item p,
.contact-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

footer {
    padding: 2rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--quiet);
    font-size: 0.8rem;
}

footer a {
    color: var(--muted);
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 860px) {
    .features-grid,
    .steps-grid,
    .pricing-grid,
    .proof-layout {
        grid-template-columns: 1fr;
    }

    .proof-layout {
        gap: 1.5rem;
    }
}

@media (max-width: 680px) {
    nav {
        padding: 0.85rem 1rem;
    }

    .nav-brand span {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        gap: 0.85rem;
    }

    .hero {
        min-height: auto;
        padding: 6.25rem 1rem 2rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-screens {
        width: 120%;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .phone-shot {
        border-radius: 18px;
    }

    .phone-shot:nth-child(1),
    .phone-shot:nth-child(3) {
        transform: translateY(1.1rem);
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .content {
        padding: 6.25rem 1rem 3rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
