*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #080c12;
    --surface: #0f1520;
    --surface-2: #16202e;
    --border: rgba(255, 255, 255, 0.07);
    --border-bright: rgba(72, 226, 255, 0.2);
    --text: #e8f0fa;
    --muted: #7a8fa8;
    --cyan: #3dd8f5;
    --cyan-dim: rgba(61, 216, 245, 0.12);
    --green: #3de89a;
    --yellow: #f5c842;
    --red: #f55a5a;
    --blue: #5b8fff;
    --r: 10px;
    --r-lg: 16px;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden
}

/* Ambient background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 20% -10%, rgba(61, 216, 245, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 110%, rgba(61, 232, 154, 0.05) 0%, transparent 60%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

/* ─── HEADER ─────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 clamp(20px, 5vw, 80px);
    min-height: 68px;
    border-bottom: 1px solid var(--border);
    background: rgba(8, 12, 18, 0.85);
    backdrop-filter: blur(20px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    flex-shrink: 0
}

nav {
    display: flex;
    align-items: center;
    gap: 8px
}

nav a {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s, background .2s
}

nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .2s
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), #5b8fff);
    color: #040c14;
    letter-spacing: -0.01em
}

.btn-primary:hover {
    opacity: .88;
    transform: translateY(-1px)
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-bright);
    color: var(--text)
}

.btn-ghost:hover {
    background: rgba(61, 216, 245, 0.07)
}

/* ─── HERO ────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: minmax(420px, 0.86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
    padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px) clamp(60px, 6vw, 100px);
    min-height: calc(100vh - 68px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--cyan)
}

h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h1 em {
    font-style: normal;
    color: var(--cyan)
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 36px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--muted)
}

.trust-sep {
    width: 1px;
    height: 16px;
    background: var(--border);
    flex-shrink: 0
}

/* Hero product visual */
.product-visual {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border);
}

.visual-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}

.vis-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.vis-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-left: auto;
    font-family: 'DM Mono', monospace
}

.visual-body {
    padding: 20px;
    display: grid;
    gap: 14px
}

.screenshot-visual .visual-body {
    display: none;
}

.screenshot-carousel {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #06080d;
    overflow: hidden;
}

.screenshot-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.01);
    animation: screenshotCycle 25s infinite;
}

.screenshot-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.screenshot-slide figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(6, 8, 13, 0.72);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: -20s;
}

.slide-3 {
    animation-delay: -15s;
}

.slide-4 {
    animation-delay: -10s;
}

.slide-5 {
    animation-delay: -5s;
}

.screenshot-dots {
    position: absolute;
    right: 16px;
    bottom: 18px;
    display: flex;
    gap: 6px;
    z-index: 6;
}

.screenshot-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    animation: screenshotDotCycle 25s infinite;
}

.screenshot-dots span:nth-child(1) {
    animation-delay: 0s;
}

.screenshot-dots span:nth-child(2) {
    animation-delay: -20s;
}

.screenshot-dots span:nth-child(3) {
    animation-delay: -15s;
}

.screenshot-dots span:nth-child(4) {
    animation-delay: -10s;
}

.screenshot-dots span:nth-child(5) {
    animation-delay: -5s;
}

@keyframes screenshotCycle {
    0% {
        opacity: 0;
        transform: scale(1.01);
        z-index: 1;
    }

    3%,
    17% {
        opacity: 1;
        transform: scale(1);
        z-index: 2;
    }

    20%,
    100% {
        opacity: 0;
        transform: scale(1.01);
        z-index: 1;
    }
}

@keyframes screenshotDotCycle {
    0% {
        background: rgba(255, 255, 255, 0.32);
        box-shadow: none;
    }

    3%,
    17% {
        background: var(--cyan);
        box-shadow: 0 0 12px rgba(61, 216, 245, 0.6);
    }

    20%,
    100% {
        background: rgba(255, 255, 255, 0.32);
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .screenshot-slide,
    .screenshot-dots span {
        animation: none;
    }

    .screenshot-slide {
        opacity: 0;
        transform: none;
    }

    .screenshot-slide:first-child {
        opacity: 1;
    }
}

.scan-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px
}

.scan-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px
}

.scan-info p {
    font-size: 12px;
    color: var(--muted)
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tag-red {
    background: rgba(245, 90, 90, 0.12);
    color: var(--red);
    border: 1px solid rgba(245, 90, 90, 0.2)
}

.tag-yellow {
    background: rgba(245, 200, 66, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(245, 200, 66, 0.2)
}

.tag-cyan {
    background: var(--cyan-dim);
    color: var(--cyan);
    border: 1px solid rgba(61, 216, 245, 0.2)
}

.tag-green {
    background: rgba(61, 232, 154, 0.1);
    color: var(--green);
    border: 1px solid rgba(61, 232, 154, 0.2)
}

.divider {
    height: 1px;
    background: var(--border)
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.stat-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em
}

.stat-box span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.stat-box.s-red strong {
    color: var(--red)
}

.stat-box.s-yellow strong {
    color: var(--yellow)
}

.stat-box.s-cyan strong {
    color: var(--cyan)
}

/* Pulse animation on scan orb */
@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.scanning-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s ease-in-out infinite
}

/* ─── METRICS BAND ────────────────────────────── */
.metrics-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.metric {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.metric:last-child {
    border-right: none
}

.metric strong {
    display: block;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.metric span {
    font-size: 14px;
    color: var(--muted)
}

/* ─── SECTION COMMON ──────────────────────────── */
section {
    padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 80px)
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

.section-label::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--cyan)
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.06;
    margin-bottom: 16px
}

.section-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 640px
}

/* ─── HOW IT WORKS ────────────────────────────── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px
}

.how-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s;
}

.how-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px)
}

.how-card::before {
    content: attr(data-num);
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    font-family: 'DM Mono', monospace;
}

.how-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--cyan-dim);
    border: 1px solid rgba(61, 216, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.how-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em
}

.how-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6
}

/* ─── CHECKS ──────────────────────────────────── */
.checks-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 52px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden
}

.check-cell {
    background: var(--surface);
    padding: 28px;
    transition: background .2s;
}

.check-cell:hover {
    background: var(--surface-2)
}

.check-icon {
    font-size: 28px;
    margin-bottom: 14px
}

.check-cell h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em
}

.check-cell p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55
}

/* ─── SOCIAL PROOF ────────────────────────────── */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.proof-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
}

.proof-quote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text)
}

.proof-quote::before {
    content: "\201C";
    font-size: 32px;
    color: var(--cyan);
    line-height: 0;
    vertical-align: -12px;
    margin-right: 4px
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.proof-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #040c14;
    flex-shrink: 0;
}

.proof-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 600
}

.proof-author-info span {
    font-size: 13px;
    color: var(--muted)
}

.stars {
    color: var(--yellow);
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 1px
}

/* ─── PRICING ─────────────────────────────────── */
.pricing-section {
    border-top: 1px solid var(--border)
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    margin-top: 32px;
}

.toggle-opt {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    color: var(--muted);
    user-select: none;
}

.toggle-opt.active {
    background: var(--cyan-dim);
    color: var(--cyan)
}

.badge-save {
    background: rgba(61, 232, 154, 0.12);
    color: var(--green);
    border: 1px solid rgba(61, 232, 154, 0.22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    margin-left: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: start
}

.pricing-grid.is-loading {
    grid-template-columns: 1fr
}

.pricing-state {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    display: grid;
    gap: 6px;
    color: var(--muted)
}

.pricing-state strong {
    color: var(--text);
    font-size: 18px
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: border-color .2s, transform .2s;
}

.plan-card:hover {
    transform: translateY(-4px)
}

.plan-card.featured {
    border-color: var(--border-bright);
    background: linear-gradient(160deg, rgba(61, 216, 245, 0.05) 0%, var(--surface) 50%);
}

.plan-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    color: #040c14;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .04em;
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px
}

.plan-price strong {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text)
}

.plan-price sup {
    font-size: 22px;
    font-weight: 700;
    color: var(--muted);
    margin-right: -4px
}

.plan-price sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500
}

.plan-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.5
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

.plan-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-features li.dim::before {
    content: "–";
    color: var(--border-bright)
}

.plan-features li.dim {
    color: rgba(122, 143, 168, 0.5)
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    border: none;
}

.btn-plan-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #040c14
}

.btn-plan-primary:hover {
    opacity: .88;
    transform: translateY(-1px)
}

.btn-plan-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted)
}

.btn-plan-ghost:hover {
    border-color: var(--border-bright);
    color: var(--text)
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--muted)
}

/* ─── FAQ ─────────────────────────────────────── */
.faq-section {
    border-top: 1px solid var(--border)
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 52px
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 28px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em
}

.faq-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6
}

/* ─── CTA BANNER ──────────────────────────────── */
.cta-section {
    margin: 0 clamp(20px, 5vw, 80px) clamp(60px, 8vw, 110px);
    background: linear-gradient(135deg, rgba(61, 216, 245, 0.08), rgba(91, 143, 255, 0.08));
    border: 1px solid var(--border-bright);
    border-radius: var(--r-lg);
    padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
    text-align: center;
    display: grid;
    place-items: center;
    gap: 24px;
}

.cta-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    max-width: 640px
}

.cta-section p {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center
}

/* ─── FOOTER ──────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    transition: color .2s
}

.footer-links a:hover {
    color: var(--text)
}

.footer-copy {
    font-size: 13px;
    color: rgba(122, 143, 168, 0.6)
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media(max-width:960px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .product-visual {
        width: 100%;
        max-width: 760px
    }

    .metrics-band {
        grid-template-columns: repeat(2, 1fr)
    }

    .metric:nth-child(2) {
        border-right: none
    }

    .metric:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .checks-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .faq-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:620px) {
    .header nav {
        display: none
    }

    .metrics-band {
        grid-template-columns: 1fr 1fr
    }

    .how-grid {
        grid-template-columns: 1fr
    }

    .checks-grid {
        grid-template-columns: 1fr
    }

    .proof-grid {
        grid-template-columns: 1fr
    }

    .footer {
        flex-direction: column;
        align-items: flex-start
    }
}

/* ─── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-copy>* {
    animation: fadeUp .6s ease both
}

.hero-copy .eyebrow {
    animation-delay: .1s
}

.hero-copy h1 {
    animation-delay: .18s
}

.hero-copy .hero-sub {
    animation-delay: .26s
}

.hero-copy .hero-actions {
    animation-delay: .34s
}

.hero-copy .hero-trust {
    animation-delay: .42s
}

.product-visual {
    animation: fadeUp .7s ease .3s both
}
