:root[data-theme="dark"] {
            --green: #22c55e;
            --green-hover: #16a34a;
            --green-glow: rgba(34, 197, 94, 0.15);
            --green-border: rgba(34, 197, 94, 0.20);
            --on-green: #000;
            --bg: #0a0a0a;
            --surface: #111111;
            --surface-2: #161616;
            --border: #1f1f1f;
            --border-hover: #383838;
            --text: #e5e5e5;
            --heading: #ffffff;
            --muted: #737373;
            --faint: #4a4a4a;
            --grid-line: rgba(255, 255, 255, 0.02);
            --dot-glow: 0 0 8px var(--green);
        }

        :root[data-theme="light"] {
            --green: #16a34a;
            --green-hover: #15803d;
            --green-glow: rgba(22, 163, 74, 0.10);
            --green-border: rgba(22, 163, 74, 0.30);
            --on-green: #ffffff;
            --bg: #fafafa;
            --surface: #ffffff;
            --surface-2: #f4f4f5;
            --border: #e6e6e8;
            --border-hover: #c9c9cf;
            --text: #1a1a1a;
            --heading: #0a0a0a;
            --muted: #6b7280;
            --faint: #9ca3af;
            --grid-line: rgba(0, 0, 0, 0.02);
            --dot-glow: none;
        }

        html { transition: background 0.2s ease; }
        body, .pain-item, .feature-card, .btn-ghost, .theme-toggle,
        .form-card input, .form-card select, .form-card textarea {
            transition: background 0.2s ease, color 0.2s ease, border-color 0.15s ease;
        }

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

        body {
            font-family: 'Sora', sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }

        code, .mono {
            font-family: 'IBM Plex Mono', monospace;
        }

        /* Subtle grid background */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                    linear-gradient(var(--grid-line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 680px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Nav */
        nav {
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }

        nav .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 18px;
            font-weight: 500;
            color: var(--heading);
            letter-spacing: -0.5px;
        }

        .logo-mark {
            height: 22px;
            width: auto;
            display: block;
        }

        .logo-dot {
            color: var(--green);
        }

        /* .nav-demo, .nav-badge and .theme-toggle all resolve to a 31px pill:
           15px line box + 7px vertical padding + 1px border on each side. */
        .nav-demo {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            line-height: 15px;
            color: var(--text);
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 7px 13px;
            border-radius: 100px;
            text-decoration: none;
            white-space: nowrap;
            transition: border-color 0.15s, color 0.15s, background 0.15s;
        }

        .nav-demo:hover {
            border-color: var(--green-border);
            color: var(--green);
            background: var(--green-glow);
        }

        .nav-badge {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            line-height: 15px;
            color: var(--green);
            background: var(--green-glow);
            border: 1px solid var(--green-border);
            padding: 7px 10px;
            border-radius: 100px;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

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

        .theme-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--muted);
            border-radius: 100px;
            padding: 7px;
            cursor: pointer;
        }
        .theme-toggle:hover { border-color: var(--border-hover); color: var(--text); }
        .theme-toggle svg { width: 15px; height: 15px; display: block; }
        .theme-toggle .icon-sun  { display: none; }
        .theme-toggle .icon-moon { display: block; }
        :root[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
        :root[data-theme="light"] .theme-toggle .icon-moon { display: none; }

        /* Hero */
        .hero {
            padding: 96px 0 72px;
            border-bottom: 1px solid var(--border);
        }

        .hero-eyebrow {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            color: var(--green);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-eyebrow::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1px;
            background: var(--green);
        }

        h1 {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -1.5px;
            color: var(--heading);
            margin-bottom: 20px;
        }

        h1 em {
            font-style: normal;
            color: var(--green);
        }

        .hero-sub {
            font-size: 16px;
            line-height: 1.7;
            color: var(--muted);
            max-width: 520px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .hero-cta {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--green);
            color: var(--on-green);
            font-weight: 600;
            font-size: 14px;
            line-height: 20px;
            padding: 11px 24px;
            border-radius: 6px;
            /* Matches .btn-ghost's 1px border so both buttons are the same height */
            border: 1px solid var(--green);
            cursor: pointer;
            transition: background 0.15s, border-color 0.15s, transform 0.1s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary:hover {
            background: var(--green-hover);
            border-color: var(--green-hover);
            transform: translateY(-1px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--muted);
            font-size: 14px;
            line-height: 20px;
            padding: 11px 24px;
            border-radius: 6px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: border-color 0.15s, color 0.15s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-ghost:hover {
            border-color: var(--border-hover);
            color: var(--text);
        }

        /* Pain section */
        .pain {
            padding: 72px 0;
            border-bottom: 1px solid var(--border);
        }

        .section-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            color: var(--muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 32px;
        }

        .pain-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pain-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 20px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
            transition: border-color 0.2s;
        }

        .pain-item:hover {
            border-color: var(--border-hover);
        }

        .pain-icon {
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 1px;
            opacity: 0.6;
        }

        /* Features */
        .features {
            padding: 72px 0;
            border-bottom: 1px solid var(--border);
        }

        .features h2 {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.8px;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .features-sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 40px;
            font-weight: 300;
        }

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

        .feature-card {
            background: var(--surface);
            padding: 24px;
            transition: background 0.2s;
        }

        .feature-card:hover {
            background: var(--surface-2);
        }

        .feature-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            margin-bottom: 14px;
            box-shadow: var(--dot-glow);
        }

        .feature-card h3 {
            font-size: 13px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 6px;
            letter-spacing: -0.2px;
        }

        .feature-card p {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 300;
        }

        /* How it works */
        .how {
            padding: 72px 0;
            border-bottom: 1px solid var(--border);
        }

        .how h2 {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.8px;
            color: var(--heading);
            margin-bottom: 40px;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .step {
            display: flex;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
        }

        .step:last-child {
            border-bottom: none;
        }

        .step-num {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            color: var(--green);
            font-weight: 500;
            flex-shrink: 0;
            padding-top: 2px;
            width: 24px;
        }

        .step-content h3 {
            font-size: 14px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 4px;
        }

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

        /* Connect / How it works */
        .connect {
            padding: 72px 0;
            border-bottom: 1px solid var(--border);
        }

        .connect h2 {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.8px;
            color: var(--heading);
            margin-bottom: 12px;
        }

        .connect-sub {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
            max-width: 520px;
            margin-bottom: 48px;
        }

        .connect-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .connect-tile {
            flex: 1 1 0;
            max-width: 240px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            background: linear-gradient(160deg, #151515, #0b0b0b);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .connect-logo-fr {
            width: 100%;
            max-width: 160px;
            height: auto;
        }

        .connect-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 26px;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .connect-mark {
            height: 34px;
            width: auto;
            display: block;
        }

        .connect-arrow {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 96px;
        }

        .connect-arrow-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--green);
            white-space: nowrap;
        }

        .connect-track {
            position: relative;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--green-border), var(--green));
            border-radius: 2px;
        }

        .connect-track::after {
            content: "";
            position: absolute;
            right: -1px;
            top: 50%;
            width: 7px;
            height: 7px;
            border-top: 2px solid var(--green);
            border-right: 2px solid var(--green);
            transform: translateY(-50%) rotate(45deg);
        }

        .connect-pulse {
            position: absolute;
            top: 50%;
            left: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 8px var(--green);
            transform: translateY(-50%);
            animation: connectFlow 1.8s ease-in-out infinite;
        }

        @keyframes connectFlow {
            0%   { left: 0;                 opacity: 0; }
            15%  { opacity: 1; }
            85%  { opacity: 1; }
            100% { left: calc(100% - 6px);  opacity: 0; }
        }

        @keyframes connectFlowV {
            0%   { top: 0;                  opacity: 0; }
            15%  { opacity: 1; }
            85%  { opacity: 1; }
            100% { top: calc(100% - 6px);   opacity: 0; }
        }

        .connect-help {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            padding: 0;
            background: none;
            border: none;
            cursor: pointer;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            color: var(--green);
            transition: opacity 0.2s;
        }

        .connect-help:hover { opacity: 0.72; }
        .connect-help svg { width: 15px; height: 15px; flex-shrink: 0; }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 48px 20px;
            background: rgba(0, 0, 0, 0.7);
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.22s ease, visibility 0.22s ease;
        }

        .modal-overlay.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .modal {
            position: relative;
            width: 100%;
            max-width: 640px;
            margin: auto;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
            transform: translateY(10px) scale(0.985);
            transition: transform 0.22s ease;
        }

        .modal-overlay.is-open .modal {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--muted);
            font-size: 20px;
            line-height: 1;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }

        .modal-close:hover { color: var(--text); border-color: var(--border-hover); }

        .modal-body { padding: 40px 36px; }

        .modal-body h2 {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: -0.6px;
            color: var(--heading);
            margin-bottom: 12px;
        }

        .modal-intro {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 28px;
        }

        .modal-step {
            display: flex;
            gap: 16px;
            padding: 24px 0;
            border-top: 1px solid var(--border);
        }

        .modal-step-num {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-glow);
            border: 1px solid var(--green-border);
            border-radius: 50%;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            color: var(--green);
        }

        .modal-step-body { flex: 1; min-width: 0; }

        .modal-step-body h3 {
            font-size: 15px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 6px;
        }

        .modal-meta {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 300;
            margin-bottom: 14px;
        }

        .modal-meta a { color: var(--green); text-decoration: none; }
        .modal-meta a:hover { text-decoration: underline; }

        .modal-tpl {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-left: 2px solid var(--green);
            border-radius: 8px;
            padding: 14px 18px 16px;
        }

        .modal-tpl-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .modal-tpl-label {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .modal-copy {
            padding: 4px 11px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            color: var(--muted);
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s;
        }

        .modal-copy:hover { color: var(--green); border-color: var(--green-border); }

        .modal-tpl-text p {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .modal-tpl-text p:last-child { margin-bottom: 0; }
        .modal-tpl-text strong { color: var(--heading); font-weight: 600; }

        .modal-list { margin: 0; padding-left: 18px; }

        .modal-list li {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.7;
            font-weight: 300;
            margin-bottom: 8px;
        }

        .modal-list li:last-child { margin-bottom: 0; }
        .modal-list li strong { color: var(--heading); font-weight: 600; }

        /* Waitlist form */
        .waitlist {
            padding: 72px 0 96px;
        }

        .waitlist h2 {
            font-size: 26px;
            font-weight: 600;
            letter-spacing: -0.8px;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .waitlist-sub {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .form-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 32px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .form-group:last-of-type {
            margin-bottom: 24px;
        }

        label {
            font-size: 12px;
            font-weight: 500;
            color: var(--muted);
            letter-spacing: 0.02em;
        }

        .form-card input, .form-card select, .form-card textarea {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 13px 15px;
            font-size: 14px;
            color: var(--text);
            font-family: 'Sora', sans-serif;
            outline: none;
            transition: border-color 0.15s;
            width: 100%;
        }

        .form-card input::placeholder, .form-card textarea::placeholder {
            color: var(--faint);
        }

        .form-card input:focus, .form-card select:focus, .form-card textarea:focus {
            border-color: var(--green);
        }

        select {
            appearance: none;
            cursor: pointer;
            color: var(--muted);
        }

        select option {
            background: var(--surface-2);
            color: var(--text);
        }

        .form-note {
            font-size: 12px;
            color: var(--muted);
            margin-top: 16px;
            font-weight: 300;
        }

        .success-msg {
            display: none;
            text-align: center;
            padding: 40px 0;
        }

        .success-msg .check {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .success-msg h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 8px;
        }

        .success-msg p {
            font-size: 14px;
            color: var(--muted);
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 28px 0;
        }

        footer .inner {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        footer .logo {
            font-size: 14px;
        }

        footer .logo-mark {
            height: 17px;
        }

        footer .footer-copy {
            flex: 1;
            text-align: center;
            font-size: 12px;
            color: var(--muted);
            font-family: 'IBM Plex Mono', monospace;
        }

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

        footer .footer-links a {
            font-size: 11px;
            color: var(--faint);
            font-family: 'IBM Plex Mono', monospace;
            text-decoration: none;
            transition: color 0.15s;
        }

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

        /* Animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(16px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero > * {
            animation: fadeUp 0.5s ease forwards;
            opacity: 0;
        }

        .hero-eyebrow { animation-delay: 0.05s; }
        .hero h1 { animation-delay: 0.1s; }
        .hero-sub { animation-delay: 0.15s; }
        .hero-cta { animation-delay: 0.2s; }

        /* "Commission tracking is complicated" marquee */
        .complicated {
            padding: 72px 0;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .complicated .container {
            text-align: center;
            margin-bottom: 44px;
        }

        .complicated .section-label {
            margin-bottom: 16px;
        }

        .complicated h2 {
            font-size: clamp(26px, 4vw, 34px);
            font-weight: 600;
            letter-spacing: -1px;
            line-height: 1.15;
            color: var(--heading);
        }

        .complicated h2 em {
            font-style: normal;
            color: var(--green);
        }

        /* Full-bleed track viewport with tapered fades on both edges.
           mask-image fades cards to transparent, so it reads correctly
           in both light and dark mode without hardcoding a bg color. */
        .marquee {
            display: flex;
            flex-direction: column;
            gap: 14px;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
        }

        .marquee-row {
            display: flex;
        }

        .marquee-track {
            display: flex;
            width: max-content;
            flex-shrink: 0;
            will-change: transform;
        }

        /* Animations turn on only after JS duplicates each row's cards,
           so a no-JS visitor gets a static row instead of a half-empty scroll. */
        .marquee.is-ready .marquee-left  { animation: marquee-left  57.5s linear infinite; }
        .marquee.is-ready .marquee-right { animation: marquee-right 75s linear infinite; }
        .marquee.is-ready .marquee-left-2 { animation: marquee-left  65s linear infinite; }

        @keyframes marquee-left {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        @keyframes marquee-right {
            from { transform: translateX(-50%); }
            to   { transform: translateX(0); }
        }

        .marquee-card {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            margin-right: 14px;
            padding: 13px 20px 13px 13px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            font-size: 14px;
            font-weight: 400;
            color: var(--text);
            white-space: nowrap;
            transition: border-color 0.2s, background 0.2s;
        }

        .marquee-card:hover {
            border-color: var(--border-hover);
            background: var(--surface-2);
        }

        .marquee-card .ic {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            border-radius: 9px;
            background: var(--green-glow);
            border: 1px solid var(--green-border);
            color: var(--green);
        }

        .marquee-card .ic svg {
            width: 17px;
            height: 17px;
            display: block;
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee.is-ready .marquee-track { animation: none; }
            .connect-pulse { animation: none; }
            .modal { transform: none; transition: opacity 0.22s ease; }
        }

        @media (max-width: 560px) {
            .feature-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            h1 { font-size: 28px; }
            .marquee-card { font-size: 13px; padding: 11px 16px 11px 11px; }
            .marquee-card .ic { width: 30px; height: 30px; }
            .marquee-card .ic svg { width: 15px; height: 15px; }

            .connect-flow { flex-direction: column; }
            .connect-tile { width: 100%; max-width: 300px; aspect-ratio: 16 / 9; }
            .connect-arrow { flex-direction: row; width: auto; height: 44px; }
            .connect-arrow-label { order: 2; }
            .connect-track {
                width: 2px;
                height: 100%;
                background: linear-gradient(180deg, var(--green-border), var(--green));
            }
            .connect-track::after {
                right: 50%;
                top: auto;
                bottom: -1px;
                transform: translateX(50%) rotate(135deg);
            }
            .connect-pulse {
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                animation: connectFlowV 1.8s ease-in-out infinite;
            }

            .modal-overlay { padding: 20px 12px; }
            .modal-body { padding: 32px 20px; }

            /* Keep the demo link; drop the static badge on narrow screens */
            .nav-badge { display: none; }
        }
