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

    :root {
        --ink: #0a0f1e;
        --ink-2: #1a2035;
        --ink-3: #2d3a55;
        --slate: #64748b;
        --muted: #94a3b8;
        --border: #1e2d45;
        --pulse: #00d4ff;
        --pulse-dark: #0099bb;
        --pulse-glow: rgba(0, 212, 255, 0.15);
        --green: #00e5a0;
        --amber: #f59e0b;
        --red: #ef4444;
        --white: #ffffff;
        --off-white: #f0f4ff;
        --card-bg: rgba(255, 255, 255, 0.03);
        --card-border: rgba(255, 255, 255, 0.07);
        --radius: 12px;
        --radius-lg: 20px;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--ink);
        color: var(--white);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    /* ─── UTILITIES ──────────────────────────────────── */
    .container {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.25);
        color: var(--pulse);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 100px;
    }

    .tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--pulse);
        border-radius: 50%;
        animation: blink 1.8s ease-in-out infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: 0.3
        }
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--pulse);
        color: var(--ink);
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: var(--radius);
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-primary:hover {
        background: #33ddff;
        transform: translateY(-1px);
        box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--muted);
        font-weight: 500;
        font-size: 15px;
        padding: 14px 24px;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        cursor: pointer;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .btn-ghost:hover {
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .section-label {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--pulse);
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        line-height: 1.15;
        color: var(--white);
    }

    .section-sub {
        font-size: 18px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 560px;
    }

    /* ─── NAV ────────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(10, 15, 30, 0.85);
        border-bottom: 1px solid var(--border);
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 24px;
        max-width: 1160px;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 20px;
        color: var(--white);
        text-decoration: none;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        background: var(--pulse);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulseRing 2.5s ease-out infinite;
    }

    .logo-icon svg {
        width: 18px;
        height: 18px;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
    }

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

    .nav-cta {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-signin {
        color: var(--muted);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s;
    }

    .nav-signin:hover {
        color: var(--white);
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
    }

    /* Language switcher */
    .lang-switcher {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
    }

    .lang-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--muted);
        padding: 4px 6px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        font-family: inherit;
        transition: color 0.2s;
    }

    .lang-btn.active {
        color: var(--white);
    }

    .lang-btn:hover {
        color: var(--white);
    }

    .lang-sep {
        color: var(--border);
    }

    /* ─── HERO ───────────────────────────────────────── */
    #hero {
        padding: 160px 0 100px;
        position: relative;
        overflow: hidden;
    }

    .hero-glow {
        position: absolute;
        top: -200px;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 600px;
        background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(40px, 6vw, 76px);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin: 24px 0 28px;
    }

    .hero-title em {
        font-style: normal;
        background: linear-gradient(135deg, var(--pulse) 0%, #7c3aed 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-sub {
        font-size: clamp(16px, 2vw, 21px);
        color: var(--muted);
        max-width: 620px;
        margin: 0 auto 40px;
        line-height: 1.65;
    }

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

    .hero-proof {
        margin-top: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        color: var(--muted);
        font-size: 13px;
    }

    .hero-proof-dots {
        display: flex;
    }

    .hero-proof-dots span {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid var(--ink);
        display: inline-block;
        background: linear-gradient(135deg, #334155, #475569);
        margin-left: -8px;
    }

    .hero-proof-dots span:first-child {
        margin-left: 0;
    }

    /* ─── DEAL WORKSPACE VISUAL ─────────────────────────── */
    .deal-workspace {
        margin-top: 72px;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        background: var(--ink-2);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .dw-titlebar {
        background: var(--ink-3);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--border);
    }

    .dw-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dw-dot-r {
        background: #ff5f57;
    }

    .dw-dot-y {
        background: #febc2e;
    }

    .dw-dot-g {
        background: #28c840;
    }

    .dw-url {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        padding: 4px 12px;
        font-size: 12px;
        color: var(--muted);
        font-family: 'JetBrains Mono', monospace;
        text-align: center;
        max-width: 340px;
        margin: 0 auto;
    }

    .dw-body {
        padding: 28px 32px;
    }

    .dw-deal-name {
        font-size: 18px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 6px;
    }

    .dw-deal-sub {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 24px;
    }

    /* Contributors */
    .dw-contributors {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 24px;
    }

    .dw-contributor {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 5px 12px 5px 5px;
    }

    .dw-avatar {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .dw-contributor-info {
        line-height: 1.3;
    }

    .dw-contributor-name {
        font-size: 12px;
        font-weight: 600;
        color: var(--white);
    }

    .dw-contributor-role {
        font-size: 10px;
        color: var(--muted);
    }

    /* Completion bar */
    .dw-completion {
        margin-bottom: 24px;
    }

    .dw-completion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .dw-completion-label {
        font-size: 13px;
        color: var(--muted);
    }

    .dw-completion-pct {
        font-size: 13px;
        font-weight: 700;
        color: var(--amber);
    }

    .dw-bar-track {
        height: 8px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 4px;
        overflow: hidden;
    }

    .dw-bar-fill {
        height: 100%;
        width: 58%;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--amber), #fbbf24);
    }

    /* Product rows */
    .dw-products {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
    }

    .dw-product-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 11px 14px;
    }

    .dw-product-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--white);
    }

    .dw-product-status {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        font-weight: 600;
    }

    .dw-product-status.validated {
        color: var(--green);
    }

    .dw-product-status.in-progress {
        color: var(--amber);
    }

    .dw-product-status.not-started {
        color: var(--muted);
    }

    /* Readiness pill */
    .dw-readiness {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(245, 158, 11, 0.1);
        border: 1px solid rgba(245, 158, 11, 0.25);
        border-radius: 100px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 700;
        color: #fbbf24;
    }

    .dw-readiness-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--amber);
        animation: blink 1.8s ease-in-out infinite;
    }

    /* ─── PAIN SECTION ───────────────────────────────── */
    #pain {
        padding: 100px 0;
    }

    .pain-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-top: 56px;
    }

    @media (max-width: 768px) {
        .pain-grid {
            grid-template-columns: 1fr;
        }
    }

    .pain-card {
        background: var(--ink);
        padding: 40px 36px;
        position: relative;
        transition: background 0.3s;
    }

    .pain-card:hover {
        background: var(--ink-2);
    }

    .pain-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .pain-card p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65;
    }

    .pain-quote {
        margin-top: 16px;
        padding: 14px 16px;
        background: rgba(239, 68, 68, 0.06);
        border-left: 3px solid rgba(239, 68, 68, 0.4);
        border-radius: 0 8px 8px 0;
        font-size: 13px;
        color: #fca5a5;
        font-style: italic;
        line-height: 1.5;
    }

    /* ─── COST SECTION ───────────────────────────────── */
    #cost {
        padding: 100px 0;
        background: var(--ink-2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .cost-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-top: 56px;
    }

    @media (max-width: 768px) {
        .cost-stats {
            grid-template-columns: 1fr;
        }
    }

    .cost-stat-card {
        background: var(--ink-2);
        padding: 48px 36px;
        transition: background 0.3s;
    }

    .cost-stat-card:hover {
        background: var(--ink-3);
    }

    .cost-stat-number {
        font-size: clamp(48px, 6vw, 72px);
        font-weight: 900;
        line-height: 1;
        color: var(--pulse);
        margin-bottom: 8px;
        font-family: 'Inter', sans-serif;
        letter-spacing: -0.03em;
    }

    .cost-stat-label {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 12px;
    }

    .cost-stat-description {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.6;
    }

    .cost-closing {
        margin-top: 40px;
        padding: 24px 32px;
        background: rgba(0, 212, 255, 0.04);
        border: 1px solid rgba(0, 212, 255, 0.12);
        border-radius: var(--radius-lg);
        text-align: center;
        font-size: 17px;
        color: var(--muted);
        line-height: 1.65;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .cost-closing strong {
        color: var(--white);
        font-weight: 600;
    }

    /* ─── HOW IT WORKS ───────────────────────────────── */
    #how {
        padding: 100px 0;
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
        margin-top: 56px;
    }

    @media (max-width: 768px) {
        .steps {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }

    @media (max-width: 480px) {
        .steps {
            grid-template-columns: 1fr;
        }
    }

    .step {
        padding: 0 24px;
        text-align: center;
        position: relative;
    }

    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        right: -1px;
        width: 2px;
        height: 48px;
        background: linear-gradient(to bottom, var(--pulse), transparent);
        opacity: 0.3;
    }

    .step h3 {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
    }

    .step-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        transition: box-shadow 0.2s;
    }

    .step-icon-wrap svg {
        width: 22px;
        height: 22px;
        stroke: var(--pulse);
        stroke-width: 1.75;
    }

    .step:hover .step-icon-wrap {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    }

    .how-cta {
        text-align: center;
        margin-top: 56px;
    }

    /* ─── BENEFITS ───────────────────────────────────── */
    #benefits {
        padding: 100px 0;
        background: var(--ink-2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        margin-top: 56px;
    }

    @media (max-width: 640px) {
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    .benefit-block {
        background: var(--ink-2);
        padding: 40px 36px;
        transition: background 0.3s;
    }

    .benefit-block:hover {
        background: var(--ink-3);
    }

    .benefit-block h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--white);
    }

    .benefit-block p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ─── AUDIENCE SECTION ───────────────────────────── */
    #audience {
        padding: 100px 0;
    }

    .audience-tabs {
        display: flex;
        gap: 1px;
        background: var(--border);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 40px;
        width: fit-content;
    }

    .audience-tab {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        background: var(--ink);
        color: var(--muted);
        transition: all 0.2s;
        border: none;
    }

    .audience-tab.active {
        background: var(--ink-2);
        color: var(--white);
    }

    .audience-panels {
        position: relative;
    }

    .audience-panel {
        display: none;
    }

    .audience-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }

    @media (max-width: 768px) {
        .audience-panel.active {
            grid-template-columns: 1fr;
        }
    }

    .audience-quote {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.4;
        color: var(--white);
        margin-bottom: 24px;
    }

    .audience-quote em {
        font-style: normal;
        color: var(--pulse);
    }

    .audience-bullets {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .audience-bullet {
        display: flex;
        gap: 12px;
        font-size: 15px;
        color: var(--muted);
        line-height: 1.55;
    }

    .audience-bullet .check {
        color: var(--green);
        font-weight: 700;
        flex-shrink: 0;
    }

    .audience-visual {
        background: var(--ink-2);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        position: relative;
    }

    .stat-block {
        text-align: center;
        padding: 24px;
    }

    .stat-block .stat-num {
        font-size: 52px;
        font-weight: 900;
        color: var(--pulse);
        line-height: 1;
    }

    .stat-block .stat-label {
        font-size: 14px;
        color: var(--muted);
        margin-top: 8px;
    }

    .stat-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border-radius: 12px;
        overflow: hidden;
    }

    /* Tab icons */
    .tab-icon svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        stroke-width: 2;
        vertical-align: middle;
        margin-right: 5px;
        margin-top: -2px;
        display: inline;
    }

    /* ─── DIFFERENTIATOR ─────────────────────────────── */
    #differentiator {
        padding: 100px 0;
        background: var(--ink-2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }

    .diff-glow {
        position: absolute;
        top: -100px;
        right: -200px;
        width: 700px;
        height: 500px;
        background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.07) 0%, transparent 65%);
        pointer-events: none;
    }

    .diff-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 768px) {
        .diff-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    .diff-note {
        margin-top: 20px;
        font-size: 14px;
        color: var(--muted);
        font-family: 'JetBrains Mono', monospace;
        opacity: 0.7;
    }

    .diff-note::before {
        content: '// ';
        color: var(--ink-3);
    }

    .trust-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 40px;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
    }

    .trust-icon svg {
        width: 16px;
        height: 16px;
        stroke: var(--muted);
        stroke-width: 2;
        vertical-align: middle;
    }

    .diff-integrations-note {
        margin-top: 32px;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-size: 13px;
        color: var(--muted);
        line-height: 1.6;
    }

    .diff-integrations-note strong {
        color: var(--white);
    }

    /* ─── CTA SECTION ────────────────────────────────── */
    #cta {
        padding: 140px 0;
        position: relative;
        overflow: hidden;
        background: var(--ink);
    }

    .cta-radial {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 600px;
        background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 65%);
        pointer-events: none;
    }

    .cta-inner {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-inner h2 {
        font-size: clamp(28px, 4vw, 52px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .cta-inner h2 em {
        font-style: normal;
        color: var(--pulse);
    }

    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .cta-note {
        font-size: 13px;
        color: var(--slate);
        margin-top: 20px;
    }

    /* ─── ICON SYSTEM ────────────────────────────────── */
    .icon-box {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 20px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .icon-box svg {
        width: 24px;
        height: 24px;
        stroke-width: 1.75;
    }

    .icon-box-pain {
        background: rgba(248, 113, 113, 0.1);
        border: 1px solid rgba(248, 113, 113, 0.2);
    }

    .icon-box-pain svg {
        stroke: #f87171;
    }

    .pain-card:hover .icon-box {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(248, 113, 113, 0.2);
    }

    .icon-box-feature {
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.15);
    }

    .icon-box-feature svg {
        stroke: var(--pulse);
    }

    .benefit-block:hover .icon-box {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
        border-top: 1px solid var(--border);
        padding: 48px 0;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-left .logo {
        font-size: 16px;
    }

    .footer-copy {
        font-size: 13px;
        color: var(--slate);
        margin-top: 6px;
    }

    .footer-links {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 13px;
        color: var(--slate);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--white);
    }

    /* ─── BEFORE / AFTER (embedded in pain) ──────────── */
    .compare-grid {
        display: grid;
        grid-template-columns: 1fr 60px 1fr;
        gap: 0;
        align-items: start;
        margin-top: 56px;
    }

    @media (max-width: 768px) {
        .compare-grid {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .compare-vs {
            display: none;
        }
    }

    .compare-col {
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 1px solid var(--border);
    }

    .compare-col.before {
        border-color: rgba(239, 68, 68, 0.2);
    }

    .compare-col.after {
        border-color: rgba(0, 212, 255, 0.2);
    }

    .compare-header {
        padding: 16px 24px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .compare-col.before .compare-header {
        background: rgba(239, 68, 68, 0.08);
        color: #fca5a5;
    }

    .compare-col.after .compare-header {
        background: rgba(0, 212, 255, 0.08);
        color: var(--pulse);
    }

    .compare-item {
        padding: 16px 24px;
        font-size: 14px;
        color: var(--muted);
        border-top: 1px solid var(--border);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        line-height: 1.55;
    }

    .compare-item .icon {
        flex-shrink: 0;
        margin-top: 2px;
        display: flex;
    }

    .compare-item .icon svg {
        width: 20px;
        height: 20px;
        stroke-width: 2.25;
        flex-shrink: 0;
    }

    .compare-col.before .compare-item .icon svg {
        stroke: #f87171;
    }

    .compare-col.after .compare-item .icon svg {
        stroke: #34d399;
    }

    .compare-vs {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 13px;
        color: var(--slate);
        padding-top: 24px;
    }

    /* ─── PROSPECT SECTION ──────────────────────────── */
    #prospect {
        padding: 100px 0;
    }

    .prospect-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }

    @media (max-width: 900px) {
        .prospect-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    .prospect-text .section-label {
        margin-bottom: 12px;
    }

    .prospect-text h2 {
        font-size: clamp(26px, 3.5vw, 40px);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .prospect-text p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .prospect-bullets {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .prospect-bullet {
        display: flex;
        gap: 12px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.6;
    }

    .prospect-bullet .check {
        color: var(--green);
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

    /* Prospect UI window */
    .prospect-ui .ui-window {
        background: var(--ink-2);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .ui-titlebar {
        background: var(--ink-3);
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 7px;
        border-bottom: 1px solid var(--border);
    }

    .ui-dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
    }

    .ui-dot-r {
        background: #ff5f57;
    }

    .ui-dot-y {
        background: #febc2e;
    }

    .ui-dot-g {
        background: #28c840;
    }

    .ui-titlebar-url {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 5px;
        padding: 3px 10px;
        font-size: 11px;
        color: var(--muted);
        font-family: 'JetBrains Mono', monospace;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .sp-topbar {
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 1px solid var(--border);
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sp-topbar-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--white);
    }

    .sp-topbar-sub {
        font-size: 10px;
        color: var(--muted);
        margin-top: 1px;
    }

    .sp-progress-steps {
        display: flex;
        align-items: center;
        padding: 14px 16px 0;
        gap: 0;
    }

    .sp-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        flex: 1;
    }

    .sp-step-dot {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        flex-shrink: 0;
    }

    .sp-step-dot.done {
        background: rgba(0, 229, 160, 0.15);
        color: var(--green);
        border: 1.5px solid rgba(0, 229, 160, 0.4);
    }

    .sp-step-dot.active {
        background: rgba(0, 212, 255, 0.15);
        color: var(--pulse);
        border: 1.5px solid rgba(0, 212, 255, 0.5);
    }

    .sp-step-dot.pending {
        background: rgba(255, 255, 255, 0.03);
        color: var(--muted);
        border: 1.5px solid var(--border);
    }

    .sp-step-label {
        font-size: 9px;
        color: var(--muted);
        text-align: center;
        white-space: nowrap;
    }

    .sp-step-label.active {
        color: var(--pulse);
    }

    .sp-step-line {
        flex: 1;
        height: 1px;
        background: var(--border);
        margin-bottom: 18px;
    }

    .sp-product-header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px 4px;
        font-size: 12px;
        color: var(--muted);
    }

    .sp-product-badge {
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid rgba(139, 92, 246, 0.25);
        color: #c4b5fd;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: 5px;
    }

    .sp-product-count {
        font-size: 11px;
        color: var(--muted);
    }

    .sp-form {
        padding: 10px 16px 14px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .sp-field {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 9px;
        padding: 9px 12px;
    }

    .sp-field label {
        font-size: 9px;
        color: var(--muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        display: block;
        margin-bottom: 3px;
    }

    .sp-field-val {
        font-size: 13px;
        font-weight: 600;
        color: var(--white);
    }

    .sp-field-hint {
        color: var(--amber) !important;
        font-weight: 500 !important;
        font-style: italic;
    }

    .sp-footer {
        padding: 10px 16px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sp-footer-progress {
        font-size: 11px;
        color: var(--muted);
    }

    .sp-footer-progress strong {
        color: var(--green);
    }

    .sp-btn-save {
        background: var(--pulse);
        color: var(--ink);
        border: none;
        border-radius: 7px;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 700;
        cursor: default;
    }

    /* ─── PRICING ────────────────────────────────────── */
    #pricing {
        padding: 100px 0;
        background: var(--ink-2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .pricing-intro {
        text-align: center;
        margin-bottom: 56px;
    }

    .pricing-intro .section-sub {
        margin: 16px auto 0;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    @media (max-width: 900px) {
        .pricing-grid {
            grid-template-columns: 1fr;
        }
    }

    .pricing-card {
        background: var(--ink);
        padding: 40px 36px;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: background 0.3s;
    }

    .pricing-card:hover {
        background: var(--ink-2);
    }

    .pricing-card.featured {
        background: var(--ink-2);
        border: 1px solid rgba(0, 212, 255, 0.25);
        margin: -1px;
        z-index: 1;
    }

    .pricing-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 100px;
        background: rgba(0, 212, 255, 0.15);
        color: var(--pulse);
        border: 1px solid rgba(0, 212, 255, 0.3);
    }

    .pricing-tier {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 12px;
    }

    .pricing-tier.featured {
        color: var(--pulse);
    }

    .pricing-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 28px;
        min-height: 40px;
    }

    .pricing-price {
        display: flex;
        align-items: flex-end;
        gap: 4px;
        margin-bottom: 8px;
    }

    .pricing-amount {
        font-size: 48px;
        font-weight: 900;
        color: var(--white);
        line-height: 1;
    }

    .pricing-amount.custom {
        font-size: 32px;
        margin-top: 8px;
    }

    .pricing-period {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .pricing-billing {
        font-size: 12px;
        color: var(--slate);
        margin-bottom: 32px;
    }

    .pricing-cta {
        margin-bottom: 32px;
    }

    .pricing-cta a {
        display: block;
        text-align: center;
        padding: 12px 20px;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.2s;
    }

    .pricing-cta a.primary {
        background: var(--pulse);
        color: var(--ink);
    }

    .pricing-cta a.primary:hover {
        background: #33ddff;
        transform: translateY(-1px);
        box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    }

    .pricing-cta a.ghost {
        background: transparent;
        color: var(--muted);
        border: 1px solid var(--border);
    }

    .pricing-cta a.ghost:hover {
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .pricing-divider {
        height: 1px;
        background: var(--border);
        margin-bottom: 28px;
    }

    .pricing-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .pricing-feature {
        display: flex;
        gap: 10px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.5;
    }

    .pricing-feature .check {
        color: var(--green);
        flex-shrink: 0;
        font-weight: 700;
    }

    .pricing-feature .minus {
        color: var(--slate);
        flex-shrink: 0;
    }

    .pricing-feature strong {
        color: var(--white);
        font-weight: 600;
    }

    .pricing-footer-note {
        margin-top: 40px;
        text-align: center;
        font-size: 14px;
        color: var(--slate);
        line-height: 1.6;
    }

    .pricing-footer-note a {
        color: var(--muted);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .pricing-roi-strip {
        margin-top: 56px;
        background: var(--ink);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    .pricing-roi-strip h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 6px;
    }

    .pricing-roi-strip p {
        font-size: 15px;
        color: var(--muted);
        max-width: 480px;
        line-height: 1.6;
    }

    .pricing-roi-stats {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        flex-shrink: 0;
    }

    .pricing-roi-stat .num {
        font-size: 36px;
        font-weight: 900;
        color: var(--pulse);
        line-height: 1;
    }

    .pricing-roi-stat .lbl {
        font-size: 12px;
        color: var(--muted);
        margin-top: 4px;
    }

    /* ─── FAQ ───────────────────────────────────────── */
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
        background: var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        max-width: 960px;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    .faq-item {
        background: var(--ink);
        padding: 28px 32px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .faq-item:hover {
        background: rgba(255, 255, 255, 0.02);
    }

    .faq-item.open {
        background: rgba(0, 212, 255, 0.03);
    }

    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.4;
    }

    .faq-chevron {
        flex-shrink: 0;
        font-size: 16px;
        color: var(--muted);
        transition: transform 0.2s;
        margin-top: 1px;
        user-select: none;
    }

    .faq-item.open .faq-chevron {
        transform: rotate(180deg);
        color: var(--pulse);
    }

    .faq-a {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, margin-top 0.2s;
        margin-top: 0;
    }

    .faq-item.open .faq-a {
        max-height: 300px;
        margin-top: 12px;
    }

    /* ─── CALENDLY POPUP OVERRIDES ──────────────────── */
    /* Ensure the popup overlay sits above our nav (z-index: 100) */
    .calendly-overlay {
        z-index: 9999 !important;
    }

    .calendly-popup {
        z-index: 10000 !important;
    }

    /* Close button is always visible */
    .calendly-popup-close {
        z-index: 10001 !important;
    }

    /* ─── ANIMATIONS ─────────────────────────────────── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-up {
        animation: fadeUp 0.6s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
        opacity: 0;
    }

    .delay-2 {
        animation-delay: 0.2s;
        opacity: 0;
    }

    .delay-3 {
        animation-delay: 0.3s;
        opacity: 0;
    }

    .delay-4 {
        animation-delay: 0.4s;
        opacity: 0;
    }

    @keyframes pulseRing {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
        }

        70% {
            box-shadow: 0 0 0 8px rgba(0, 212, 255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
        }
    }