        :root {
            --bg: #fafaf9;
            --text: #1c1917;
            --muted: #57534e;
            --accent: #2563eb;
            --accent-hover: #1d4ed8;
            --accent-light: #dbeafe;
            --accent-subtle: #eff6ff;
            --card-bg: #ffffff;
            --border: #e7e5e4;
            --section-alt: #f5f5f4;
            --green: #16a34a;
            --green-light: #dcfce7;
            /* ---- Section tint palette (harmonized with blue) ---- */
            --tint-sky:     #eff6ff;  /* soft blue — inherits accent-subtle */
            --tint-sage:    #f0faf4;  /* low-chroma green — trust / safe */
            --tint-sand:    #faf6ee;  /* warm cream — editorial */
            --tint-lavender:#f4f3ff;  /* cool lilac — cognitive */
            --tint-cloud:   #fafaf7;  /* off-white — rest */
            --accent-sage:  #16a34a;
            --accent-sand:  #b45309;  /* amber for sand section accents */
            --accent-lavender: #6366f1; /* indigo sibling to blue */
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---- Animations ---- */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ---- Nav ---- */
        nav {
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            background: rgba(250, 250, 249, 0.9);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.02em;
        }
        .logo span { color: var(--accent); }
        nav a.cta-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        nav a.cta-link:hover { color: var(--accent-hover); text-decoration: underline; }
        .nav-links { display: flex; gap: 24px; align-items: center; }

        /* ---- Hero ---- */
        .hero {
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(240,245,255,0.55) 0%, rgba(250,250,249,0.5) 40%, rgba(245,243,255,0.55) 70%, rgba(250,250,249,0.5) 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 2px 2px, rgba(37,99,235,0.04) 1px, transparent 0);
            background-size: 32px 32px;
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5.5vw, 3rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            color: var(--text);
        }
        .hero p {
            font-size: 1.15rem;
            color: var(--muted);
            max-width: 560px;
            margin: 0 auto 12px;
        }
        .hero .promise {
            font-size: 0.95rem;
            color: var(--green);
            font-weight: 600;
            margin-bottom: 36px;
        }

        /* ---- CTA Buttons ---- */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 16px 36px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: background 0.2s, transform 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-ghost {
            display: inline-block;
            background: transparent;
            color: var(--accent);
            padding: 14px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid var(--accent);
            transition: background 0.2s, color 0.2s;
            cursor: pointer;
        }
        .btn-ghost:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-sub {
            display: block;
            margin-top: 12px;
            font-size: 0.85rem;
            color: var(--muted);
        }
        .cta-group {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        /* ---- Sections ---- */
        section {
            padding: 72px 0;
            position: relative;
        }
        section.alt {
            background: rgba(245,245,244,0.82);
        }
        section.alt-gradient {
            background: linear-gradient(180deg, rgba(245,245,244,0.82) 0%, rgba(250,250,249,0.82) 100%);
        }
        section h2 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.025em;
        }
        section .lead {
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: 36px;
        }

        /* ---- "Herkenbaar?" section ---- */
        .herkenbaar-list {
            list-style: none;
            display: grid;
            gap: 10px;
        }
        .herkenbaar-list li {
            padding: 16px 20px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            color: var(--text);
        }
        .herkenbaar-list li::before {
            content: "\2192  ";
            color: var(--muted);
            font-weight: 500;
        }

        /* ---- Audience section ---- */
        .audience-section {
            background: linear-gradient(135deg, rgba(30,58,138,0.93) 0%, rgba(17,24,39,0.93) 100%);
            color: #fff;
            text-align: center;
        }
        .audience-section h2 {
            color: #fff;
        }
        .audience-section .lead {
            color: #94a3b8;
        }
        .audience-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .audience-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 28px 20px;
        }
        /* Neural-network background overlay */
        #neural-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            opacity: 0.9;
        }
        body > *:not(#neural-bg) { position: relative; z-index: 1; }
        @media (prefers-reduced-motion: reduce) {
            #neural-bg { display: none; }
        }
        /* Icon SVG sizing (replaces emoji font-size) */
        .audience-card .card-icon,
        .feature .feature-icon,
        .trust-item .trust-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .audience-card .card-icon { color: #fff; }
        .feature .feature-icon,
        .trust-item .trust-icon { color: var(--accent); }
        .audience-card .card-icon svg { width: 28px; height: 28px; }
        .feature .feature-icon svg { width: 24px; height: 24px; }
        .trust-item .trust-icon svg { width: 22px; height: 22px; }
        .audience-card .card-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            display: block;
        }
        .audience-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #fff;
        }
        .audience-card p {
            font-size: 0.9rem;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* ---- Before/After ---- */
        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 700px;
            margin: 0 auto;
        }
        .ba-column {
            padding: 28px 24px;
            border-radius: 12px;
        }
        .ba-column.before {
            background: #fef2f2;
            border: 1px solid #fecaca;
        }
        .ba-column.after {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
        }
        .ba-column h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .ba-column.before h3 { color: #991b1b; }
        .ba-column.after h3 { color: #166534; }
        .ba-column ul {
            list-style: none;
            display: grid;
            gap: 10px;
        }
        .ba-column ul li {
            font-size: 0.95rem;
            color: var(--text);
            line-height: 1.5;
        }
        .ba-column.before ul li::before {
            content: "\2717  ";
            color: #dc2626;
            font-weight: 600;
        }
        .ba-column.after ul li::before {
            content: "\2713  ";
            color: #16a34a;
            font-weight: 600;
        }

        /* ---- Steps ---- */
        .steps {
            display: grid;
            gap: 0;
            counter-reset: step-counter;
        }
        .step {
            padding: 28px 24px 28px 80px;
            position: relative;
            border-left: 3px solid var(--border);
            margin-left: 24px;
        }
        .step:last-child {
            border-left-color: transparent;
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: -18px;
            top: 24px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .step p {
            color: var(--muted);
            font-size: 0.95rem;
        }
        .step .step-time {
            display: inline-block;
            margin-top: 8px;
            font-size: 0.85rem;
            color: var(--green);
            font-weight: 600;
        }

        /* ---- Features ---- */
        .features {
            display: grid;
            gap: 20px;
        }
        .feature {
            padding: 28px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
        }
        .feature .feature-icon {
            font-size: 1.6rem;
            margin-bottom: 10px;
            display: block;
        }
        .feature h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feature p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* ---- Email capture ---- */
        .signup-box {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.04);
        }
        .signup-form {
            display: grid;
            gap: 12px;
            max-width: 560px;
            margin-top: 18px;
        }
        .signup-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 12px;
        }
        .scan-reassurance {
            background: var(--accent-subtle);
            border: 1px solid var(--accent-light);
            border-radius: 14px;
            padding: 20px;
            margin: 18px 0 20px;
        }
        .scan-reassurance h3 {
            margin-bottom: 10px;
            font-size: 1.1rem;
            line-height: 1.3;
        }
        .scan-reassurance p {
            color: var(--muted);
            margin-bottom: 12px;
        }
        .scan-reassurance ul {
            margin: 0 0 12px 18px;
            display: grid;
            gap: 8px;
        }
        .scan-reassurance-note {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .signup-form input,
        .signup-form textarea {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 14px 16px;
            font: inherit;
            background: #fff;
            color: var(--text);
        }
        .signup-form textarea {
            min-height: 140px;
            resize: vertical;
        }
        .signup-form input:focus,
        .signup-form textarea:focus {
            outline: 2px solid var(--accent-light);
            border-color: var(--accent);
        }
        .signup-form .btn { white-space: nowrap; }
        .form-note {
            font-size: 0.92rem;
            color: var(--muted);
            margin-top: 6px;
        }
        .form-status {
            font-size: 0.95rem;
            font-weight: 500;
            min-height: 1.4em;
        }
        .form-status.success { color: var(--green); }
        .form-status.error { color: #b91c1c; }

        /* ---- Integrations bar ---- */
        .integrations-bar {
            text-align: center;
            padding: 28px 0;
            border-top: 1px solid var(--border);
        }
        .proof-band {
            padding: 18px 22px;
            margin: 28px auto 0;
            max-width: 760px;
            background: rgba(255,255,255,0.78);
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        }
        .proof-band strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 6px;
        }
        .proof-band p {
            font-size: 0.95rem;
            color: var(--muted);
            margin-bottom: 12px;
        }
        .proof-band ul {
            list-style: none;
            display: grid;
            gap: 8px;
            text-align: left;
            color: var(--text);
            font-size: 0.92rem;
        }
        .proof-band li::before {
            content: "✓  ";
            color: var(--green);
            font-weight: 700;
        }
        .integrations-bar .int-label {
            font-size: 0.8rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .integrations-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .int-logo {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--muted);
            opacity: 0.5;
        }

        /* ---- Trust ---- */
        .trust-grid {
            display: grid;
            gap: 20px;
        }
        .trust-item {
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
        }
        .trust-item .trust-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            display: block;
        }
        .trust-item h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .trust-item p {
            color: var(--muted);
            font-size: 0.95rem;
        }

        /* ---- FAQ (native details) ---- */
        details.faq-item {
            padding: 0;
            border-bottom: 1px solid var(--border);
        }
        details.faq-item:last-child { border-bottom: none; }
        details.faq-item > summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 40px 20px 0;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            position: relative;
            user-select: none;
        }
        details.faq-item > summary::-webkit-details-marker { display: none; }
        details.faq-item > summary::after {
            content: '';
            position: absolute;
            right: 8px; top: 50%;
            width: 10px; height: 10px;
            border-right: 2px solid var(--accent);
            border-bottom: 2px solid var(--accent);
            transform: translateY(-70%) rotate(45deg);
            transition: transform .25s ease;
        }
        details.faq-item[open] > summary::after {
            transform: translateY(-20%) rotate(-135deg);
        }
        details.faq-item > summary:hover { color: var(--accent); }
        details.faq-item > summary:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }
        details.faq-item > p {
            color: var(--muted);
            font-size: 0.95rem;
            padding: 0 0 22px 0;
            margin: 0;
        }
        @media (prefers-reduced-motion: no-preference) {
            details.faq-item > p {
                animation: faqFade .25s ease;
            }
        }
        @keyframes faqFade {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: none; }
        }

        /* ---- Blog list ---- */
        .blog-list {
            list-style: none;
            display: grid;
            gap: 12px;
        }
        .blog-list li {
            padding: 18px 22px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .blog-list li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
        }
        .blog-list li a:hover {
            color: var(--accent);
        }

        /* ---- Final CTA ---- */
        .final-cta {
            text-align: center;
            padding: 90px 0;
            background: linear-gradient(135deg, rgba(240,245,255,0.85) 0%, rgba(250,250,249,0.82) 50%, rgba(245,243,255,0.85) 100%);
            position: relative;
        }
        .final-cta .container { position: relative; z-index: 1; }
        .final-cta h2 {
            margin-bottom: 16px;
            font-size: 2rem;
        }
        .final-cta p {
            color: var(--muted);
            margin-bottom: 32px;
            font-size: 1.1rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .final-cta .trust-line {
            margin-top: 24px;
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* ---- Credibility line ---- */
        .credibility {
            text-align: center;
            font-size: 0.9rem;
            color: var(--muted);
            font-style: italic;
            padding: 8px 0;
        }

        /* ---- Footer ---- */
        footer {
            padding: 32px 0;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* ---- Sticky mobile CTA ---- */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            padding: 12px 20px;
            border-top: 1px solid var(--border);
            z-index: 99;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .sticky-cta.visible {
            transform: translateY(0);
        }
        .sticky-cta .btn {
            width: 100%;
            max-width: 400px;
            padding: 14px 24px;
            font-size: 0.95rem;
        }

        /* ---- Responsive ---- */
        @media (min-width: 640px) {
            .features { grid-template-columns: 1fr 1fr; }
            .trust-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 24px !important;
            }
            .audience-cards {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin: 0 auto;
            }
            .before-after {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 639px) {
            html, body {
                overflow-x: hidden;
                width: 100%;
            }
            nav .container {
                gap: 12px;
            }
            nav .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 8px);
                left: 16px;
                right: 16px;
                background: rgba(255,255,255,0.98);
                border: 1px solid var(--border);
                border-radius: 14px;
                padding: 12px;
                box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.25);
                z-index: 120;
            }
            body.menu-open nav .nav-links {
                display: flex;
            }
            .nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .container,
            .container-prose {
                width: 100%;
                max-width: 100%;
                padding-left: 16px;
                padding-right: 16px;
            }
            .hero {
                padding-top: 56px;
                padding-bottom: 40px;
            }
            .hero-grid {
                display: block !important;
                gap: 0 !important;
            }
            .hero-copy {
                text-align: left;
            }
            .hero-copy .cta-group {
                justify-content: stretch;
            }
            .hero-copy .cta-group > * {
                width: 100%;
                text-align: center;
            }
            .hero-visual {
                margin-top: 20px;
            }
            .hero-mobile-proof {
                display: grid;
                gap: 4px;
                padding: 14px 16px;
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 14px;
                box-shadow: 3px 3px 0 0 rgba(37, 99, 235, 0.08);
            }
            .hero-mobile-proof strong {
                font-size: 1rem;
                line-height: 1.3;
            }
            .hero-mobile-proof span {
                color: var(--muted);
                font-size: 0.92rem;
                line-height: 1.4;
            }
            .inbox-demo {
                display: none !important;
            }
            .inbox-caption {
                display: none;
            }
            .step {
                padding-left: 64px;
                margin-left: 16px;
            }
            .sticky-cta {
                display: block;
                padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
            }
            .signup-box {
                padding: 22px 18px;
                border-radius: 16px;
            }
            .signup-form {
                max-width: 100%;
            }
            .signup-form-row {
                grid-template-columns: 1fr;
            }
            .signup-form .btn {
                width: 100%;
                white-space: normal;
            }
            .form-note {
                font-size: 0.88rem;
            }
            .activity-toast,
            .hero-badge,
            .inbox-demo-pill {
                display: none !important;
            }
            .stat-strip {
                align-items: stretch;
            }
            .stat-cell {
                flex: 1 1 100%;
                justify-content: center;
            }
            .section-card {
                padding: 22px 18px;
            }
            .split-grid {
                gap: 20px;
            }
            .calc-wrap {
                padding: 24px 16px;
            }
            .calc-row {
                grid-template-columns: 1fr;
            }
            .calc-row output {
                text-align: left;
                min-width: 0;
            }
        }

        /* Smooth scroll */
        html { scroll-behavior: smooth; }

        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 10px;
            color: var(--text);
            font-size: 0.95rem;
            cursor: pointer;
        }

/* Team section */
.team-section { padding: 5rem 0; background: var(--bg); }
.team-section h2 { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; display: block; border: 3px solid var(--border); }
.team-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-title { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.6rem; }
.team-bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
/* Powered by */
.powered-by { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* =================================================================
   AK UPGRADE V2 — added after initial design system
   ================================================================= */

  /* ---- 1. Typography scale bump ---- */
  .container { max-width: 1120px; }
  .container-prose { max-width: 760px; margin: 0 auto; }

  .hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
  .hero p {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    max-width: 620px;
  }
  section h2 {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  /* Editorial eyebrow */
  .eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
  }

  /* ---- 2. Signature flat-shadow card system ---- */
  .pain-item,
  .audience-pill,
  .flip-face,
  .trust-item,
  .inbox-demo,
  .quiz-wrap,
  details.faq-item,
  .over-bullet,
  .calc-wrap {
    box-shadow: 6px 6px 0 0 rgba(37, 99, 235, 0.10);
    transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
                box-shadow 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
                background 0.2s ease,
                border-color 0.2s ease;
  }
  @media (max-width: 640px) {
    .pain-item, .flip-face, .trust-item, .inbox-demo, .quiz-wrap, .over-bullet, .calc-wrap {
      box-shadow: 3px 3px 0 0 rgba(37, 99, 235, 0.10);
    }
  }
  @media (hover: hover) {
    .pain-item:hover,
    .over-bullet:hover,
    .trust-item:hover {
      transform: translate(3px, 3px);
      box-shadow: 2px 2px 0 0 rgba(37, 99, 235, 0.14);
    }
  }
  details.faq-item { border-radius: 12px; padding: 0 18px; margin-bottom: 8px; background: #fff; }
  details.faq-item:last-child { border-bottom: 1px solid var(--border); }

  /* CTA glow on hover */
  .btn {
    transition: background 0.2s, transform 0.2s cubic-bezier(0.2,0.7,0.3,1),
                box-shadow 0.3s ease;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.38);
  }

  @media (prefers-reduced-motion: reduce) {
    .pain-item, .over-bullet, .trust-item, .btn, .inbox-demo {
      transition: none;
    }
    .pain-item:hover, .over-bullet:hover, .trust-item:hover, .btn:hover {
      transform: none;
    }
  }

  /* ---- 3. Hero inbox animated conic-gradient border ---- */
  @property --ak-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  .inbox-demo.glow-frame {
    position: relative;
    box-shadow: 0 30px 60px -25px rgba(37, 99, 235, 0.35),
                0 4px 12px rgba(15, 23, 42, 0.06);
  }
  .inbox-demo.glow-frame::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: conic-gradient(
      from var(--ak-angle, 0deg),
      rgba(37, 99, 235, 0)   0%,
      rgba(37, 99, 235, 0)   35%,
      rgba(37, 99, 235, 0.9) 50%,
      rgba(147, 197, 253, 0.9) 55%,
      rgba(37, 99, 235, 0)   70%,
      rgba(37, 99, 235, 0)   100%
    );
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    animation: ak-rotate-gradient 6s linear infinite;
  }
  @keyframes ak-rotate-gradient {
    to { --ak-angle: 360deg; }
  }
  @media (prefers-reduced-motion: reduce) {
    .inbox-demo.glow-frame::before {
      animation: none;
      background: linear-gradient(135deg,
        rgba(37,99,235,0.5), rgba(147,197,253,0.5));
    }
  }

  /* Floating pill above mockup on desktop */
  .hero-visual { position: relative; }
  .hero-mobile-proof { display: none; }
  .inbox-demo-pill {
    display: none;
    position: absolute; top: -16px; right: 24px; z-index: 2;
    background: #fff; border: 1px solid var(--accent-light);
    padding: 7px 14px; border-radius: 999px;
    font-size: 0.78rem; font-weight: 600; color: var(--accent);
    box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.3);
  }
  .inbox-demo-pill::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: #10b981; margin-right: 8px; vertical-align: middle;
    animation: ak-pulse 2s ease-in-out infinite;
  }
  @keyframes ak-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  }
  @media (min-width: 900px) {
    .inbox-demo-pill { display: inline-block; }
  }

  /* Integrations: edge fade, no marquee (only 4 logos) */
  .integrations-logos {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  /* Staggered reveal for card grids */
  .flip-grid > .fade-in.visible,
  .audience-strip > .fade-in.visible,
  .over-grid > .fade-in.visible,
  .pain-list > .fade-in.visible {
    transition-delay: calc(var(--i, 0) * 70ms);
  }

  /* ---- Section blocking: more breathing room, clear separators ---- */
  section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
  section + section { margin-top: 0; }

  /* Tinted section backgrounds — apply via .tint-* class on <section> */
  .tint-sky      { background: var(--tint-sky); }
  .tint-sage     { background: var(--tint-sage); }
  .tint-sand     { background: var(--tint-sand); }
  .tint-lavender { background: var(--tint-lavender); }
  .tint-cloud    { background: var(--tint-cloud); }
  .tint-dark     { background: #0f172a; color: #e2e8f0; }
  .tint-dark h2, .tint-dark h3 { color: #fff; }
  .tint-dark .lead, .tint-dark p { color: #cbd5e1; }

  /* Override the original .alt / .alt-gradient backgrounds so tints win */
  section.alt { background: transparent; }
  section.alt-gradient { background: transparent; }

  /* Section-eyebrow color variants for tinted sections */
  .tint-sage .eyebrow      { color: var(--accent-sage);     background: rgba(22, 163, 74, 0.10); }
  .tint-sand .eyebrow      { color: var(--accent-sand);     background: rgba(180, 83, 9, 0.10); }
  .tint-lavender .eyebrow  { color: var(--accent-lavender); background: rgba(99, 102, 241, 0.10); }

  /* Decorative separator — a thin accent dot line between sections */
  .divider-dots {
    display: block; width: 100%; height: 1px; position: relative;
    background: linear-gradient(90deg,
      transparent 0%,
      var(--border) 20%,
      var(--border) 80%,
      transparent 100%);
  }
  .divider-dots::before {
    content: ""; position: absolute; left: 50%; top: -4px; transform: translateX(-50%);
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 4px var(--bg);
  }

  /* Wavy top edge for hero-next section */
  .wave-top {
    position: absolute; top: -1px; left: 0; right: 0; height: 40px;
    background: inherit;
    -webkit-mask: radial-gradient(20px 40px at 20px 0, #0000 98%, #000) 0 100%/40px 40px repeat-x;
            mask: radial-gradient(20px 40px at 20px 0, #0000 98%, #000) 0 100%/40px 40px repeat-x;
    pointer-events: none;
  }

  /* Slight rounded top on tinted blocks to emphasize block-ness */
  section.tint-sky, section.tint-sage, section.tint-sand,
  section.tint-lavender, section.tint-cloud {
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
  }
  @media (max-width: 639px) {
    section.tint-sky, section.tint-sage, section.tint-sand,
    section.tint-lavender, section.tint-cloud {
      border-radius: 20px 20px 0 0;
      margin-top: -16px;
    }
  }
  section.tint-sky + section, section.tint-sage + section,
  section.tint-sand + section, section.tint-lavender + section,
  section.tint-cloud + section { z-index: 1; }

  /* Dashboard stats — colorize each stat with a different accent tint */
  /* Stat strip — inline row with dividers, no boxes */
  .stat-strip {
    display: flex; align-items: center; justify-content: space-around;
    gap: clamp(12px, 3vw, 40px); flex-wrap: wrap;
    padding: 10px 0;
  }
  .stat-cell {
    display: flex; align-items: baseline; gap: 10px;
    padding: 4px 14px;
    position: relative;
  }
  .stat-cell + .stat-cell::before {
    content: ""; position: absolute; left: -1px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 28px; background: var(--border);
  }
  .stat-cell .count-up {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800;
    letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
    color: var(--accent);
  }
  .stat-cell .stat-label { font-size: 0.88rem; color: var(--muted); font-weight: 500; }
  .stat-cell:nth-child(2) .count-up { color: var(--accent-sage); }
  .stat-cell:nth-child(3) .count-up { color: var(--accent-sand); }
  .stat-cell:nth-child(4) .count-up { color: var(--accent-lavender); }
  @media (max-width: 720px) {
    .stat-cell + .stat-cell::before { display: none; }
    .stat-cell { flex: 1 1 45%; justify-content: center; }
  }

  /* Flip cards — colored left border per card */
  .flip-grid > .flip-card:nth-child(1) .flip-face.front { border-left: 3px solid var(--accent); }
  .flip-grid > .flip-card:nth-child(2) .flip-face.front { border-left: 3px solid var(--accent-sage); }
  .flip-grid > .flip-card:nth-child(3) .flip-face.front { border-left: 3px solid var(--accent-sand); }
  .flip-grid > .flip-card:nth-child(4) .flip-face.front { border-left: 3px solid var(--accent-lavender); }
  .flip-grid > .flip-card:nth-child(2) .flip-icon { color: var(--accent-sage); background: rgba(22, 163, 74, 0.10); }
  .flip-grid > .flip-card:nth-child(3) .flip-icon { color: var(--accent-sand); background: rgba(180, 83, 9, 0.10); }
  .flip-grid > .flip-card:nth-child(4) .flip-icon { color: var(--accent-lavender); background: rgba(99, 102, 241, 0.10); }

  /* ---- Bordered section-card wrapper (fyxer pattern) ---- */
  .section-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 56px);
    box-shadow: 8px 8px 0 0 rgba(37, 99, 235, 0.08);
    max-width: 1080px;
    margin: 0 auto;
  }
  .tint-sage .section-card { box-shadow: 8px 8px 0 0 rgba(22, 163, 74, 0.10); }
  .tint-sand .section-card { box-shadow: 8px 8px 0 0 rgba(180, 83, 9, 0.10); }
  .tint-lavender .section-card { box-shadow: 8px 8px 0 0 rgba(99, 102, 241, 0.10); }
  @media (max-width: 640px) {
    .section-card { border-radius: 16px; box-shadow: 4px 4px 0 0 rgba(37, 99, 235, 0.08); }
  }
  .section-card-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
  }
  .section-card-header > div { flex: 1 1 300px; }
  .section-card-header h2 { margin: 0 0 6px; }
  .section-card-header .lead { margin: 0; color: var(--muted); }
  .section-card-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-subtle); color: var(--accent);
    padding: 8px 14px; border-radius: 999px;
    font-size: 0.82rem; font-weight: 600;
    white-space: nowrap;
  }
  .section-card-badge::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: #10b981;
    animation: ak-pulse 2s ease-in-out infinite;
  }

  /* 2-col split layout inside section-cards */
  .split-grid { display: grid; gap: 32px; }
  @media (min-width: 860px) {
    .split-grid { grid-template-columns: 1fr 1fr; align-items: start; }
    .split-grid.ratio-4-6 { grid-template-columns: 4fr 6fr; }
    .split-grid.ratio-6-4 { grid-template-columns: 6fr 4fr; }
  }

  /* Background grid / dots pattern for visual texture */
  .tint-sky::before, .tint-sage::before, .tint-sand::before, .tint-lavender::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(0,0,0,0.035) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.6;
    z-index: 0;
  }
  section > .container { position: relative; z-index: 1; }

  /* Live activity toast — floating bottom-left */
  .activity-toast {
    position: fixed; left: 20px; bottom: 20px; z-index: 60;
    background: #0f172a; color: #e2e8f0;
    border-radius: 14px; padding: 12px 42px 12px 16px;
    display: flex; align-items: center; gap: 12px;
    max-width: 420px; min-width: 280px;
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.45);
    transform: translateY(140%); opacity: 0;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  }
  .activity-toast.visible { transform: translateY(0); opacity: 1; }
  .activity-toast.hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
  .activity-toast-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #10b981;
    flex: 0 0 auto;
  }
  .activity-toast-label::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: #10b981; animation: ak-pulse 2s ease-in-out infinite;
  }
  .activity-toast-stream { flex: 1; overflow: hidden; position: relative; height: 36px; }
  .activity-toast .activity-item { font-size: 0.82rem; line-height: 1.25; align-items: flex-start; flex-direction: column; gap: 2px; }
  .activity-toast .activity-item .kantoor { color: #93c5fd; font-weight: 600; }
  .activity-toast .activity-item .action { color: #e2e8f0; }
  .activity-toast .activity-item .time { color: #64748b; font-size: 0.72rem; margin-left: 0; }
  .activity-toast-close {
    position: absolute; top: 6px; right: 8px;
    background: transparent; border: 0; color: #94a3b8;
    font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 4px 8px;
    border-radius: 6px;
  }
  .activity-toast-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
  @media (max-width: 640px) {
    .activity-toast { left: 10px; right: 10px; max-width: none; min-width: 0; bottom: 10px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .activity-toast { transition: opacity .3s ease; transform: none; }
  }

  /* Legacy selector — kept for backward compatibility */
  .activity-feed {
    background: #0f172a; color: #e2e8f0;
    border-radius: 16px; padding: 16px 20px;
    display: flex; align-items: center; gap: 16px;
    overflow: hidden; position: relative;
  }
  .activity-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #10b981;
    flex: 0 0 auto;
  }
  .activity-label::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: #10b981; animation: ak-pulse 2s ease-in-out infinite;
  }
  .activity-stream { flex: 1; overflow: hidden; position: relative; height: 24px; }
  .activity-item {
    position: absolute; inset: 0; display: flex; align-items: center;
    font-size: 0.92rem; white-space: nowrap;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .activity-item.in { opacity: 1; transform: translateY(0); }
  .activity-item.out { opacity: 0; transform: translateY(-20px); }
  .activity-item .kantoor { color: #93c5fd; font-weight: 600; margin-right: 6px; }
  .activity-item .action { color: #e2e8f0; }
  .activity-item .time { color: #64748b; margin-left: 10px; font-size: 0.85rem; }

  /* Floating notification badges on hero */
  .hero-badge {
    position: absolute; background: #fff; border: 1px solid var(--border);
    border-radius: 12px; padding: 10px 14px;
    box-shadow: 0 12px 30px -12px rgba(15, 23, 42, 0.25);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 600;
    animation: ak-float 4s ease-in-out infinite;
    z-index: 3;
  }
  .hero-badge.badge-save {
    top: 20%; left: -20px; animation-delay: 0s;
    color: var(--accent-sage);
  }
  .hero-badge.badge-time {
    bottom: 15%; right: -15px; animation-delay: 2s;
    color: var(--accent);
  }
  .hero-badge svg { width: 18px; height: 18px; }
  @keyframes ak-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  @media (max-width: 900px) {
    .hero-badge { display: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-badge { animation: none; }
  }

  /* Trust badges column for Over section */
  .trust-badges { display: grid; gap: 14px; align-content: start; }
  .trust-badge {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 4px 4px 0 0 rgba(37, 99, 235, 0.08);
  }
  .trust-badge-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; flex: 0 0 44px;
  }
  .trust-badge-icon.blue  { background: var(--tint-sky); color: var(--accent); }
  .trust-badge-icon.sage  { background: var(--tint-sage); color: var(--accent-sage); }
  .trust-badge-icon.sand  { background: var(--tint-sand); color: var(--accent-sand); }
  .trust-badge-icon.lavender { background: var(--tint-lavender); color: var(--accent-lavender); }
  .trust-badge-text strong { display: block; font-size: 0.95rem; }
  .trust-badge-text small { color: var(--muted); font-size: 0.82rem; }

  /* Typing email preview */
  .typing-email {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 20px 22px;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.88rem; line-height: 1.6;
    box-shadow: 4px 4px 0 0 rgba(37, 99, 235, 0.08);
    min-height: 180px;
  }
  .typing-email .to { color: var(--muted); font-size: 0.8rem; margin-bottom: 8px; }
  .typing-email .subject { font-weight: 700; margin-bottom: 12px; color: var(--text); }
  .typing-email .body { color: var(--text); }
  .typing-email .cursor {
    display: inline-block; width: 8px; height: 1.1em; background: var(--accent);
    vertical-align: text-bottom; animation: ak-blink 1s step-end infinite;
    margin-left: 2px;
  }
  @keyframes ak-blink {
    0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; }
  }

  /* Process diagram — multi-colored nodes when active */
  .process-node:nth-child(2).on .process-dot { background: var(--accent);      border-color: var(--accent); }
  .process-node:nth-child(3).on .process-dot { background: var(--accent-sage); border-color: var(--accent-sage); box-shadow: 0 8px 24px -8px rgba(22, 163, 74, 0.5); }
  .process-node:nth-child(4).on .process-dot { background: var(--accent-sand); border-color: var(--accent-sand); box-shadow: 0 8px 24px -8px rgba(180, 83, 9, 0.5); }
  .process-node:nth-child(5).on .process-dot { background: var(--accent-lavender); border-color: var(--accent-lavender); box-shadow: 0 8px 24px -8px rgba(99, 102, 241, 0.5); }
