:root {
    --page-bg: #05070a;
    --panel: #111318;
    --panel-strong: #181b20;
    --text: #f7f8fb;
    --muted: #9da3ae;
    --line: rgba(255, 255, 255, 0.11);
    --accent: #2fa8ff;
    --accent-strong: #7bd88f;
    --warn: #ff9f3d;
}

body.analyzer-page {
    height: auto;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 6%, rgba(47, 168, 255, 0.16), transparent 32rem),
        radial-gradient(circle at 86% 12%, rgba(123, 216, 143, 0.12), transparent 30rem),
        linear-gradient(180deg, #06080d 0%, var(--page-bg) 45%, #07090c 100%);
    background-color: var(--page-bg);
    background-repeat: no-repeat;
    background-size: 100% 1200px, 100% 1200px, 100% 100%;
    color: var(--text);
}

.analyzer-page main {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    margin: 0 auto;
    padding: 32px 0 72px;
    text-align: left;
    line-height: 1.55;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 600;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

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

.nav-links a {
    color: inherit;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
    gap: 70px;
    align-items: center;
    min-height: 650px;
    margin-top: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #c7d2de;
    font-size: 13px;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 20px rgba(123, 216, 143, 0.7);
}

h1 {
    max-width: 780px;
    margin: 0;
    color: var(--text);
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0;
}

.subtitle {
    max-width: 680px;
    margin: 26px 0 0;
    color: #c5ccd6;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: #001724;
    box-shadow: 0 18px 50px rgba(47, 168, 255, 0.28);
}

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

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 430px;
    margin-top: 38px;
}

.proof-item {
    min-height: 92px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.proof-value {
    color: var(--text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.proof-label {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

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

.phone-stack {
    position: relative;
    width: min(100%, 430px);
    height: 670px;
}

.phone-shot {
    position: absolute;
    width: 300px;
    border-radius: 34px;
    background: #000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54);
}

.phone-shot.primary {
    right: 0;
    top: 0;
    z-index: 2;
}

.phone-shot.secondary {
    left: 0;
    bottom: 4px;
    opacity: 0.76;
    transform: scale(0.9);
}

.floating-callout {
    position: absolute;
    right: 16px;
    bottom: 92px;
    z-index: 3;
    max-width: 230px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(17, 19, 24, 0.86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
}

.callout-kicker {
    color: var(--warn);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.callout-title {
    margin-top: 5px;
    color: var(--text);
    font-weight: 700;
}

section {
    margin-top: 96px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 28px;
}

h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.section-sub {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

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

.feature-card,
.step-item,
.trust-stat {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.feature-card {
    min-height: 250px;
    padding: 26px;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(47, 168, 255, 0.12);
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
}

h3 {
    margin: 24px 0 10px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.15;
}

.feature-card p,
.step-item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: steps;
}

.step-item {
    position: relative;
    min-height: 230px;
    padding: 24px;
    overflow: hidden;
    counter-increment: steps;
}

.step-item::before {
    content: counter(steps, decimal-leading-zero);
    display: block;
    color: rgba(255, 255, 255, 0.28);
    font-size: 15px;
    font-weight: 700;
}

.step-item h3 {
    margin-top: 42px;
}

.privacy-band {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(47, 168, 255, 0.16), rgba(123, 216, 143, 0.08)),
        var(--panel);
}

.privacy-band h2 {
    font-size: clamp(32px, 4vw, 50px);
}

.trust-banner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
}

.trust-stat {
    padding: 24px;
}

.trust-stat h4 {
    margin: 0;
    color: var(--text);
    font-size: 22px;
}

.trust-stat .small {
    margin-top: 8px;
    color: var(--muted);
    opacity: 1;
}

.analyzer-page footer {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    color: var(--muted);
    opacity: 1;
}

@media (max-width: 920px) {
    .analyzer-page main {
        padding-top: 24px;
    }

    .site-nav {
        margin-bottom: 46px;
    }

    .hero,
    .section-heading,
    .privacy-band {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 40px;
        min-height: 0;
    }

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

    .phone-stack {
        height: 590px;
    }

    .phone-shot {
        width: 260px;
    }

    .feature-grid,
    .steps,
    .trust-banner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .analyzer-page main,
    .analyzer-page footer {
        width: min(100% - 28px, 1180px);
    }

    .site-nav {
        align-items: flex-start;
    }

    .nav-links {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .hero-proof,
    .feature-grid,
    .steps,
    .privacy-band,
    .trust-banner {
        grid-template-columns: 1fr;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-visual {
        min-height: 500px;
        overflow: hidden;
    }

    .phone-stack {
        height: 500px;
    }

    .phone-shot {
        width: 220px;
        border-radius: 28px;
    }

    .phone-shot.secondary {
        left: -8px;
        bottom: 46px;
    }

    .floating-callout {
        right: 0;
        bottom: 22px;
        max-width: 210px;
    }

    section {
        margin-top: 72px;
    }
}
