:root {
    --ink: #07111f;
    --navy: #0f1b2d;
    --text: #1f2937;
    --muted: #64748b;
    --line: #e2e8f0;
    --paper: #f7fafc;
    --white: #ffffff;
    --teal: #0891b2;
    --green: #16a34a;
    --amber: #f59e0b;
    --red: #dc2626;
    --violet: #7c3aed;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--text);
}

body::selection {
    background: #67e8f9;
    color: #052733;
}

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

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 72px);
    background: rgba(247, 250, 252, 0.86);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    min-width: 170px;
}

.brand img {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
}

.brand strong {
    display: block;
    color: var(--ink);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    gap: 26px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a,
.nav-cta,
.primary-btn,
.secondary-btn,
.pricing-grid a,
.lead-form button,
.mobile-bottom-cta a {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.nav-cta,
.primary-btn,
.secondary-btn,
.pricing-grid a,
.lead-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border-radius: 7px;
    font-weight: 800;
    border: 1px solid transparent;
}

.nav-cta {
    padding: 0 16px;
    color: #fff;
    background: var(--teal);
    font-size: 13px;
}

.nav-cta:hover,
.primary-btn:hover,
.pricing-grid a:hover,
.lead-form button:hover,
.mobile-bottom-cta a:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(8, 145, 178, 0.22);
}

.secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.14);
}

.mobile-bottom-cta {
    display: none;
}

.mobile-report-preview {
    display: none;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 110px clamp(20px, 6vw, 86px) 70px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.78) 48%, rgba(7, 17, 31, 0.35)),
        linear-gradient(135deg, #07111f 0%, #123046 48%, #eef6f9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 72px 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.45), transparent);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(0deg, var(--paper), transparent);
    pointer-events: none;
}

.hero-visual {
    position: absolute;
    inset: 88px -90px 0 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.dashboard-backdrop {
    width: min(660px, 52vw);
    min-height: 460px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    transform: perspective(1100px) rotateY(-10deg) rotateX(4deg);
    overflow: hidden;
}

.dash-top {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: #0f172a;
    color: #e2e8f0;
}

.dash-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #94a3b8;
}

.dash-top span:first-child { background: #ef4444; }
.dash-top span:nth-child(2) { background: #f59e0b; }
.dash-top span:nth-child(3) { background: #22c55e; }
.dash-top b { margin-left: auto; font-size: 12px; }

.dash-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: 170px 1fr;
    gap: 18px;
    padding: 22px;
}

.dash-score,
.dash-chart,
.dash-table,
.dash-alerts {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.dash-score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.dash-score small,
.dash-score span { color: var(--muted); font-weight: 800; font-size: 12px; }
.dash-score strong { color: var(--ink); font-size: 64px; line-height: 1; letter-spacing: 0; }

.dash-chart {
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 22px;
}

.dash-chart i {
    flex: 1;
    display: block;
    border-radius: 7px 7px 0 0;
    background: #94a3b8;
    min-height: 24px;
}

.dash-chart i:nth-child(1) { background: var(--green); }
.dash-chart i:nth-child(2) { background: var(--amber); }
.dash-chart i.target { background: var(--teal); }
.dash-chart i:nth-child(4) { background: var(--green); }
.dash-chart i:nth-child(6) { background: var(--red); }

.dash-table {
    padding: 16px;
}

.dash-table p {
    display: grid;
    grid-template-columns: 34px 1fr 42px;
    gap: 10px;
    align-items: center;
    margin: 0 0 12px;
    padding: 8px;
    border-radius: 7px;
}

.dash-table p.active { background: #ecfeff; }
.dash-table b, .dash-table span, .dash-table em { display: block; height: 11px; border-radius: 999px; background: #cbd5e1; }
.dash-table span { background: #e2e8f0; }
.dash-table em { background: var(--teal); }

.dash-alerts {
    padding: 16px;
    display: grid;
    gap: 10px;
}

.dash-alerts span {
    display: flex;
    align-items: center;
    min-height: 34px;
    border-radius: 7px;
    background: #fff;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    padding: 0 12px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(650px, 100%);
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    color: #67e8f9;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.eyebrow.dark { color: var(--teal); }

.hero h1 {
    margin: 0;
    font-size: 112px;
    line-height: 0.88;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 650px;
    margin: 28px 0 0;
    color: #dbeafe;
    font-size: 23px;
    line-height: 1.45;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 610px;
    margin-top: 28px;
}

.hero-stats div {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.hero-stats strong {
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.hero-stats span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.primary-btn {
    padding: 0 22px;
    background: #67e8f9;
    color: #052733;
}

.secondary-btn {
    padding: 0 20px;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    color: #cbd5e1;
    font-size: 13px;
}

.hero-proof span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    padding: 8px 10px;
}

.hero-proof strong { color: #fff; }

.trust-strip {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    padding: 28px clamp(20px, 6vw, 86px);
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.trust-strip p {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}

.trust-strip div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip span {
    color: #475569;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 800;
}

.section {
    padding: 86px clamp(20px, 6vw, 86px);
}

.section-head {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-head span {
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 900;
}

.section h2 {
    margin: 10px 0 0;
    color: var(--ink);
    font-size: 54px;
    line-height: 1;
    letter-spacing: 0;
}

.section-head p,
.split-section > div > p,
.cta-section p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

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

.feature-grid article,
.process-grid article,
.pricing-grid article,
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.feature-grid article,
.process-grid article,
.pricing-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-grid article:hover,
.process-grid article:hover,
.pricing-grid article:hover {
    transform: translateY(-3px);
    border-color: #bae6fd;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.feature-grid i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #ecfeff;
    color: var(--teal);
    border-radius: 8px;
    font-size: 18px;
}

.outcome-section {
    padding-top: 24px;
}

.outcome-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: stretch;
    padding: clamp(24px, 4vw, 42px);
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(7, 17, 31, 0.18);
}

.outcome-copy h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 52px;
    line-height: 1;
}

.outcome-copy p {
    margin: 20px 0 0;
    color: #cbd5e1;
    line-height: 1.65;
    font-size: 16px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.outcome-grid article {
    min-height: 150px;
    padding: 18px;
    border: 1px solid #1f2a3d;
    border-radius: 8px;
    background: #111c2f;
}

.outcome-grid strong {
    color: #67e8f9;
    font-size: 12px;
}

.outcome-grid span {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-weight: 900;
}

.outcome-grid p {
    margin: 8px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.feature-grid h3,
.process-grid h3,
.pricing-grid h3 {
    color: var(--ink);
    margin: 20px 0 8px;
    font-size: 18px;
}

.feature-grid p,
.process-grid p,
.pricing-grid p,
.faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
    gap: 44px;
    align-items: center;
    background: #fff;
}

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

.check-list li {
    display: flex;
    gap: 12px;
    color: #334155;
    font-weight: 700;
}

.check-list i { color: var(--green); margin-top: 3px; }

.sample-report {
    background: var(--ink);
    color: #fff;
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 24px 70px rgba(7, 17, 31, 0.22);
}

.sample-header,
.sample-kpis {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.sample-header {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 900;
}

.sample-kpis {
    margin: 20px 0;
}

.sample-kpis div {
    flex: 1;
    background: #111c2f;
    border: 1px solid #1f2a3d;
    border-radius: 8px;
    padding: 14px;
}

.sample-kpis small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
}

.sample-kpis strong {
    display: block;
    margin-top: 6px;
    font-size: 26px;
}

.sample-bars {
    display: grid;
    gap: 12px;
}

.sample-bars p {
    display: grid;
    grid-template-columns: 120px 1fr 34px;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.sample-bars span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
}

.sample-bars i {
    height: 14px;
    background: #1f2a3d;
    border-radius: 999px;
    overflow: hidden;
}

.sample-bars em {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 999px;
}

.sample-bars .you em { background: #67e8f9; }
.sample-bars b { text-align: right; font-size: 13px; }

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

.process-grid b {
    color: var(--teal);
    font-size: 13px;
}

.pricing-section { background: #fff; }

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-grid article.featured {
    border-color: #67e8f9;
    box-shadow: 0 24px 70px rgba(8, 145, 178, 0.18);
}

.plan-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #ecfeff;
    color: var(--teal);
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 900;
}

.pricing-grid strong {
    display: block;
    margin: 20px 0;
    color: var(--ink);
    font-size: 42px;
    letter-spacing: 0;
}

.pricing-grid strong span {
    color: var(--muted);
    font-size: 15px;
}

.pricing-grid ul {
    margin: 0 0 24px;
    padding-left: 18px;
    color: #475569;
    line-height: 1.9;
    font-weight: 600;
    font-size: 14px;
}

.pricing-grid a {
    margin-top: auto;
    background: var(--ink);
    color: #fff;
}

.faq-list {
    max-width: 920px;
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 900;
    font-size: 17px;
}

.faq-list p { margin-top: 12px; }

.cta-section {
    display: grid;
    grid-template-columns: 1fr minmax(340px, 440px);
    gap: 40px;
    align-items: center;
    margin: 40px clamp(20px, 6vw, 86px) 86px;
    padding: 46px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, #67e8f9, var(--teal));
}

.cta-section h2 {
    color: var(--ink);
    margin: 8px 0 0;
    font-size: 52px;
    line-height: 1;
}

.lead-form {
    display: grid;
    gap: 10px;
}

.lead-form label {
    color: #334155;
    font-weight: 900;
    font-size: 12px;
}

.lead-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    padding: 0 14px;
    font: inherit;
}

.lead-form button {
    margin-top: 8px;
    background: var(--teal);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(20px, 6vw, 86px);
    color: #64748b;
    border-top: 1px solid var(--line);
    background: #fff;
}

.site-footer strong { color: var(--ink); }

@media (max-width: 1020px) {
    .nav-links { display: none; }
    .hero { min-height: auto; padding-top: 120px; }
    .hero-visual { opacity: 0.28; inset: 92px -120px 0 20%; }
    .dashboard-backdrop { width: 820px; }
    .hero h1 { font-size: 88px; }
    .section h2,
    .cta-section h2,
    .outcome-copy h2 { font-size: 46px; }
    .hero-copy { font-size: 21px; }
    .feature-grid,
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .split-section,
    .pricing-grid,
    .cta-section,
    .outcome-card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    body { padding-bottom: 74px; }
    .site-nav {
        height: 62px;
        padding: 0 14px;
        background: rgba(247, 250, 252, 0.96);
    }
    .brand { min-width: 150px; }
    .brand img { width: 34px; height: 34px; flex-basis: 34px; }
    .brand strong { font-size: 17px; }
    .nav-cta { display: none; }
    .mobile-bottom-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
        display: block;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(247, 250, 252, 0.92);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(16px);
    }
    .mobile-bottom-cta a {
        min-height: 52px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 8px;
        background: var(--teal);
        color: #fff;
        font-weight: 900;
    }
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        padding: 88px 18px 46px;
        align-items: flex-start;
        background:
            linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.9) 64%, rgba(18, 48, 70, 0.86)),
            linear-gradient(135deg, #07111f, #123046);
    }
    .hero-content { width: 100%; }
    .hero-visual { display: none; }
    .eyebrow {
        font-size: 11px;
        margin-bottom: 14px;
    }
    .hero h1 {
        font-size: 58px;
        line-height: 0.94;
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .hero-copy {
        font-size: 17px;
        line-height: 1.48;
        margin-top: 20px;
        color: #e2e8f0;
    }
    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        margin-top: 22px;
    }
    .hero-stats div {
        min-height: 76px;
        padding: 10px;
    }
    .hero-stats strong {
        font-size: 18px;
        line-height: 1.05;
    }
    .hero-stats span {
        font-size: 10px;
        line-height: 1.25;
    }
    .hero-actions {
        margin-top: 22px;
        gap: 9px;
    }
    .hero-actions a { width: 100%; }
    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 18px;
    }
    .hero-proof span {
        width: 100%;
        padding: 9px 10px;
        font-size: 12px;
    }
    .mobile-report-preview {
        display: block;
        padding: 0 18px 28px;
        margin-top: -22px;
        background: var(--paper);
    }
    .mobile-report-card {
        position: relative;
        z-index: 3;
        padding: 18px;
        border-radius: 8px;
        background: #fff;
        border: 1px solid #dbeafe;
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    }
    .mobile-report-card > div {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
    }
    .mobile-report-card span {
        color: #64748b;
        font-size: 12px;
        font-weight: 800;
    }
    .mobile-report-card b {
        color: var(--teal);
        font-size: 13px;
    }
    .mobile-report-card p {
        display: flex;
        align-items: end;
        gap: 8px;
        margin: 12px 0;
    }
    .mobile-report-card p strong {
        color: var(--ink);
        font-size: 42px;
        line-height: 1;
    }
    .mobile-report-card i {
        display: block;
        height: 13px;
        border-radius: 999px;
        background: #e2e8f0;
        overflow: hidden;
    }
    .mobile-report-card em {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: var(--teal);
    }
    .mobile-report-card small {
        display: block;
        margin-top: 12px;
        color: #475569;
        line-height: 1.45;
        font-size: 12px;
        font-weight: 700;
    }
    .trust-strip,
    .site-footer { flex-direction: column; align-items: flex-start; }
    .trust-strip { padding: 24px 18px; }
    .trust-strip div { width: 100%; }
    .trust-strip span { width: 100%; }
    .section { padding: 52px 18px; }
    .section h2,
    .cta-section h2,
    .outcome-copy h2 { font-size: 38px; }
    .section-head {
        margin-bottom: 24px;
    }
    .section-head p,
    .split-section > div > p,
    .cta-section p {
        font-size: 15px;
        line-height: 1.58;
    }
    .feature-grid,
    .process-grid,
    .outcome-grid { grid-template-columns: 1fr; }
    .feature-grid article,
    .process-grid article,
    .pricing-grid article,
    .faq-list details { padding: 20px; }
    .split-section {
        gap: 26px;
    }
    .sample-report { padding: 16px; border-radius: 8px; }
    .sample-kpis { flex-direction: column; }
    .sample-bars p { grid-template-columns: minmax(82px, 95px) 1fr 30px; }
    .process-grid article,
    .feature-grid article,
    .pricing-grid article {
        min-height: auto;
    }
    .pricing-grid strong { font-size: 36px; }
    .cta-section {
        margin: 8px 18px 62px;
        padding: 24px 20px;
    }
    .lead-form input,
    .lead-form button { min-height: 52px; }
}

@media (max-width: 374px) {
    .hero h1 { font-size: 50px; }
    .hero-stats { grid-template-columns: 1fr; }
    .hero-stats div { min-height: 58px; }
    .section h2,
    .cta-section h2,
    .outcome-copy h2 { font-size: 34px; }
}
