@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #07111f;
    --bg-2: #0b1628;
    --bg-3: #0f1d35;
    --surface: rgba(11, 22, 40, 0.72);
    --surface-strong: rgba(16, 28, 48, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --text: #f8fbff;
    --text-soft: #c4d2e9;
    --text-faint: #88a0c2;
    --border: rgba(148, 163, 184, 0.18);
    --border-strong: rgba(96, 165, 250, 0.28);
    --primary: #4f8cff;
    --primary-2: #7c5cff;
    --primary-3: #00d2ff;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --glow: 0 0 0 1px rgba(255,255,255,0.03), 0 24px 80px rgba(0,0,0,0.45);
    --glow-soft: 0 18px 55px rgba(2, 8, 23, 0.45);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --container-narrow: 760px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(124, 92, 255, 0.22), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(0, 210, 255, 0.18), transparent 24%),
        radial-gradient(circle at 50% 20%, rgba(79, 140, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #081120 0%, #091425 45%, #07111f 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.6;
}

body::before {
    width: 340px;
    height: 340px;
    left: -90px;
    top: 120px;
    background: rgba(124, 92, 255, 0.22);
}

body::after {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 180px;
    background: rgba(0, 210, 255, 0.16);
}

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

code,
pre {
    font-family: var(--mono);
}

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

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.narrow-container {
    width: min(100% - 2rem, var(--container-narrow));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-shell {
    position: relative;
}

.site-header,
.admin-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.88), rgba(7, 17, 31, 0.72));
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav-inner,
.admin-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.brand span {
    font-size: 1.03rem;
}

.brand-mark,
.brand-mark-img {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    flex: 0 0 auto;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary-3), var(--primary), var(--primary-2));
    color: #fff;
    box-shadow: 0 10px 30px rgba(79, 140, 255, 0.35);
}

.nav-links,
.admin-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.nav-links a,
.admin-nav a,
.link-button {
    color: var(--text-soft);
    font-weight: 600;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    transition: 0.18s ease;
}

.nav-links a:hover,
.admin-nav a:hover,
.link-button:hover,
.nav-links a.active,
.admin-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-admin {
    color: #fff !important;
    border: 1px solid rgba(124, 92, 255, 0.35);
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.24), rgba(124, 92, 255, 0.26));
    box-shadow: 0 12px 35px rgba(79, 140, 255, 0.16);
}

.inline-form {
    display: inline;
}

.link-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.site-main {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.section,
.hero-section {
    padding: 4.5rem 0;
    position: relative;
}

.hero-section {
    padding-top: 4rem;
}

.section-muted {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-copy h1,
.page-heading h1,
.auth-card h1,
.centered-card h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: #fff;
    max-width: 11ch;
}

.hero-copy h1 {
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero-lead,
.page-heading p,
.lead {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 48rem;
}

.page-heading {
    margin-bottom: 1.6rem;
}

.page-heading.with-actions {
    align-items: end;
}

.lead-tight {
    font-size: 1.05rem;
    color: var(--text);
}

.eyebrow,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.58rem 0.95rem;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.1);
    border: 1px solid rgba(79, 140, 255, 0.2);
    color: #d9e9ff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    color: var(--text-faint);
    font-size: 0.95rem;
}

.hero-trust span,
.plan-badge {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.14);
    backdrop-filter: blur(10px);
}

.scan-form {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.7rem;
}

.scan-form input,
.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    padding: 1.02rem 1.05rem;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    font: inherit;
    color: #fff;
    backdrop-filter: blur(12px);
    transition: 0.18s ease;
}

.scan-form input::placeholder,
.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #88a0c2;
}

.scan-form input:focus,
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    outline: 0;
    border-color: rgba(79, 140, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 0 4px rgba(79, 140, 255, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.18);
}

.field-group {
    display: grid;
    gap: 0.55rem;
}

.field-group label {
    font-weight: 700;
    color: #fff;
}

.field-group small {
    color: var(--text-faint);
}

.card,
.summary-card,
.hero-panel,
.stat-card,
.stat-tile,
.auth-card,
.centered-card {
    background: linear-gradient(180deg, rgba(17, 27, 47, 0.82), rgba(9, 18, 34, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--glow);
    backdrop-filter: blur(18px);
}

.card,
.hero-panel,
.auth-card,
.centered-card {
    padding: 1.35rem;
}

.feature-card,
.plan-card,
.step-card,
.section-card,
.form-card,
.summary-card,
.stat-card,
.stat-tile {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.plan-card::before,
.step-card::before,
.hero-panel::before,
.form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.08), transparent 45%, rgba(124, 92, 255, 0.08));
    pointer-events: none;
}

.panel-head,
.sample-header,
.page-heading.with-actions,
.section-head,
.button-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-preview-grid,
.stats-grid,
.card-grid,
.steps-grid,
.report-summary-grid,
.two-col-grid {
    display: grid;
    gap: 1rem;
}

.card-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.two-up,
.two-col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.report-preview-grid,
.report-summary-grid,
.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-card,
.stat-card,
.stat-tile {
    padding: 1rem;
}

.summary-label,
.stat-card span,
.stat-tile span,
.plan-card .plan-badge {
    display: block;
    color: var(--text-faint);
    font-size: 0.88rem;
}

.summary-value,
.stat-card strong,
.stat-tile strong,
.plan-price {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.15rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
}

.plan-price {
    font-size: 2.35rem;
    font-weight: 800;
}

.plan-price small {
    font-size: 0.95rem;
    color: var(--text-faint);
    margin-left: 0.2rem;
}

.sample-preview .stat-card,
.compact-grid .stat-card {
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.035);
}

.section-heading {
    margin-bottom: 1.6rem;
}

.section-heading h2,
.section-card h2,
.section-card h3,
.feature-card h3,
.plan-card h2,
.step-card h3 {
    margin: 0 0 0.65rem;
    letter-spacing: -0.04em;
    color: #fff;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.section-heading p,
.feature-card p,
.section-card p,
.muted,
.footer-copy {
    color: var(--text-soft);
}

.feature-card p,
.plan-card ul,
.section-card ul {
    margin: 0;
}

.feature-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.7rem;
}

.icon-chip {
    width: 44px;
    height: 44px;
    padding: 0.7rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.14), rgba(124, 92, 255, 0.16));
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #eaf2ff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.check-list,
.simple-list,
.mini-chain {
    padding-left: 1rem;
    margin: 0;
}

.check-list li,
.simple-list li,
.mini-chain li {
    margin: 0.5rem 0;
    color: var(--text-soft);
}

.check-list.compact li {
    margin: 0.3rem 0;
}

.mini-chain {
    color: #d4e3fb;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.step-index {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.18), rgba(124, 92, 255, 0.18));
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 0.9rem;
    box-shadow: 0 10px 30px rgba(79, 140, 255, 0.18);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 50px;
    padding: 0.9rem 1.18rem;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-3), var(--primary), var(--primary-2));
    box-shadow: 0 16px 40px rgba(79, 140, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 20px 50px rgba(79, 140, 255, 0.38);
}

.btn-secondary {
    color: #eef5ff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(148, 163, 184, 0.16);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(148, 163, 184, 0.24);
}

.flash {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.flash-error {
    border-color: rgba(239, 68, 68, 0.22);
    background: rgba(239, 68, 68, 0.08);
    color: #ffd8d8;
}

.flash-success {
    border-color: rgba(34, 197, 94, 0.22);
    background: rgba(34, 197, 94, 0.08);
    color: #dfffe9;
}

.verdict-badge,
.badge,
.score-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.verdict-safe,
.badge-safe {
    color: #dfffe7;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.2);
}

.verdict-suspicious,
.badge-suspicious {
    color: #fff4d8;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
}

.verdict-dangerous,
.badge-dangerous {
    color: #ffd7d7;
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.2);
}

.verdict-failed,
.badge-failed {
    color: #e5ecf7;
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.18);
}

.faq-list,
.docs-stack {
    display: grid;
    gap: 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0.85rem 0 0;
    color: var(--text-soft);
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    background: linear-gradient(180deg, rgba(7,17,31,0), rgba(7,17,31,0.65));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 1.2rem;
    padding: 1.6rem 0 0;
}

.site-footer h4 {
    margin: 0 0 0.8rem;
    color: #fff;
    letter-spacing: -0.03em;
}

.site-footer a,
.site-footer span,
.footer-copy {
    display: block;
    color: var(--text-soft);
    margin-bottom: 0.55rem;
}

.brand-footer {
    margin-bottom: 0.8rem;
}

.wrap-anywhere {
    overflow-wrap: anywhere;
}

.stack-lg {
    display: grid;
    gap: 1.2rem;
}

.form-card {
    margin-bottom: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    text-align: left;
    color: var(--text-soft);
}

th {
    color: #fff;
    font-size: 0.92rem;
}

pre,
.code-block {
    overflow: auto;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: #d8e7ff;
}

.report-layout,
.report-sections,
.report-grid {
    display: grid;
    gap: 1rem;
}

.auth-card,
.centered-card {
    width: min(100%, 560px);
    margin: 4rem auto 0;
}

hr {
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    margin: 1.2rem 0;
}

@media (max-width: 1100px) {
    .hero-grid,
    .footer-grid,
    .card-grid.four-up,
    .card-grid.three-up,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .nav-inner,
    .admin-header-inner {
        min-height: auto;
        padding: 1rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links,
    .admin-nav {
        width: 100%;
    }

    .hero-grid,
    .card-grid.two-up,
    .card-grid.three-up,
    .card-grid.four-up,
    .steps-grid,
    .report-preview-grid,
    .report-summary-grid,
    .compact-grid,
    .two-col-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-heading h1,
    .auth-card h1,
    .centered-card h1 {
        max-width: none;
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .section,
    .hero-section {
        padding: 3rem 0;
    }

    .btn,
    .scan-form input,
    .field-group input,
    .field-group textarea,
    .field-group select {
        width: 100%;
    }

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

@media (max-width: 520px) {
    .container,
    .narrow-container {
        width: min(100% - 1rem, var(--container));
    }

    .card,
    .hero-panel,
    .auth-card,
    .centered-card,
    .summary-card,
    .stat-card,
    .stat-tile {
        padding: 1rem;
        border-radius: 20px;
    }

    .nav-links a,
    .admin-nav a,
    .link-button {
        padding: 0.68rem 0.85rem;
    }
}

/* === LANDING PRO START === */
.hero-section {
    padding-top: 32px;
}

.hero-grid,
.api-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.95;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.95;
    margin: 0 0 18px;
    max-width: 10ch;
}

.hero-lead {
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(232, 237, 255, 0.86);
    margin: 0 0 24px;
}

.hero-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-form input {
    min-height: 58px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 18, 40, 0.65);
    color: #fff;
    padding: 0 18px;
    font-size: 1rem;
    outline: none;
}

.hero-form input::placeholder {
    color: rgba(196, 207, 235, 0.62);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-microcopy {
    color: rgba(196, 207, 235, 0.72);
    font-size: 0.95rem;
}

.section--tight {
    padding-top: 8px;
    padding-bottom: 8px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(234, 240, 255, 0.9);
    font-size: 0.95rem;
}

.sample-report-card,
.info-card,
.api-card,
.pricing-card,
.faq-item,
.final-cta-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(25, 39, 82, 0.82), rgba(8, 16, 40, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sample-report-card {
    padding: 24px;
}

.sample-report-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.sample-report-label,
.plan-tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(116, 147, 255, 0.22);
    background: rgba(72, 96, 180, 0.16);
    color: rgba(232, 238, 255, 0.95);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.verdict-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 700;
}

.verdict-badge--warning {
    background: rgba(255, 185, 74, 0.12);
    border: 1px solid rgba(255, 185, 74, 0.22);
    color: #ffd58a;
}

.sample-report-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.sample-metric {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.sample-metric-label {
    display: block;
    font-size: 0.92rem;
    color: rgba(196, 207, 235, 0.76);
    margin-bottom: 8px;
}

.sample-metric-value {
    font-size: 1.65rem;
    line-height: 1;
    color: #fff;
}

.sample-report-list,
.feature-list {
    margin: 0;
    padding-left: 1.1rem;
}

.sample-report-list li,
.feature-list li {
    margin-bottom: 10px;
    color: rgba(232, 237, 255, 0.9);
}

.section {
    padding-top: 72px;
    padding-bottom: 72px;
}

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

.section-heading--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 14px;
}

.section-heading p {
    margin: 0;
    color: rgba(196, 207, 235, 0.8);
    font-size: 1.08rem;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

.info-card,
.api-card,
.pricing-card,
.final-cta-card {
    padding: 28px;
}

.info-card h3,
.api-card h3,
.pricing-card h3 {
    margin: 0 0 14px;
    font-size: 1.6rem;
    line-height: 1.15;
}

.info-card p,
.api-card p,
.pricing-card p {
    margin: 0;
    color: rgba(196, 207, 235, 0.82);
    line-height: 1.75;
}

.info-card--step {
    position: relative;
    overflow: hidden;
}

.step-number {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(92, 112, 210, 0.2);
    border: 1px solid rgba(122, 145, 255, 0.22);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.endpoint-list {
    display: grid;
    gap: 12px;
}

.endpoint-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.endpoint-method {
    min-width: 58px;
    font-weight: 800;
    color: #fff;
}

.endpoint-row code {
    color: rgba(221, 229, 255, 0.9);
    font-size: 0.96rem;
}

.api-card-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

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

.pricing-card--featured {
    border-color: rgba(93, 134, 255, 0.28);
    box-shadow:
        0 0 0 1px rgba(93, 134, 255, 0.08),
        0 18px 45px rgba(28, 44, 112, 0.18);
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 26px;
    font-size: 1.45rem;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    padding: 0 26px 24px;
    color: rgba(196, 207, 235, 0.82);
    line-height: 1.75;
}

.final-cta-section {
    padding-top: 40px;
}

.final-cta-card {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.final-cta-card h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.final-cta-card p {
    margin: 0 auto 24px;
    max-width: 700px;
    color: rgba(196, 207, 235, 0.82);
    line-height: 1.75;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    min-height: 58px;
    padding-inline: 24px;
    font-size: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

@media (max-width: 1080px) {
    .card-grid--3,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .api-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        white-space: nowrap;
        gap: 14px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero-form {
        grid-template-columns: 1fr;
    }

    .sample-report-grid,
    .card-grid--3,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .sample-report-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-item summary {
        font-size: 1.2rem;
        padding: 20px;
    }

    .faq-item p {
        padding: 0 20px 20px;
    }
}
/* === LANDING PRO END === */



/* =========================
   MOBILE NAVBAR PRO
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(8, 12, 20, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #ffffff;
}

.nav-cta-desktop {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

@media (max-width: 980px) {
    .nav-desktop,
    .nav-cta-desktop {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        inset: 100% 0 auto 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        padding: 0 16px 16px;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu-panel {
        background: #0f1725;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
        padding: 14px;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-menu-links a {
        display: block;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.86);
        font-size: 15px;
        font-weight: 700;
        padding: 12px 14px;
        border-radius: 14px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a.active {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .mobile-menu-footer {
        margin-top: 12px;
    }

    .mobile-menu-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .nav-inner {
        min-height: 70px;
    }

    .brand span {
        font-size: 16px;
    }

    .brand-mark-img {
        width: 28px;
        height: 28px;
    }
}

