        /* ===== VynMed Brand Tokens ===== */
        :root {
            --deep-blue: #065A82;
            --deep-blue-hover: #084e6f;
            --deep-blue-dark: #03415f;
            --teal: #1C7293;
            --midnight: #21295C;
            --midnight-2: #2b3470;
            --paper: #F7F8FA;
            --cloud: #EEF1F5;
            --line: #E5E7EB;
            --graphite: #4B5563;
            --graphite-2: #6B7280;
            --ink: #0F1629;
            --ink-2: #1F2937;
            --quiet-ice: #DBE7FB;
            --quiet-ice-2: #EEF4FE;
            --moss: #97BC62;
            --coral: #F96167;
            --white: #FFFFFF;
            --shadow-xs: 0 1px 2px rgba(15, 22, 41, 0.05);
            --shadow-sm: 0 2px 4px rgba(15, 22, 41, 0.06), 0 1px 2px rgba(15, 22, 41, 0.04);
            --shadow-md: 0 8px 24px rgba(15, 22, 41, 0.08), 0 2px 6px rgba(15, 22, 41, 0.04);
            --shadow-lg: 0 24px 48px rgba(15, 22, 41, 0.12), 0 8px 16px rgba(15, 22, 41, 0.06);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --max-width: 1200px;
            --gutter: 1.5rem;
        }
        @media (min-width: 720px) { :root { --gutter: 2rem; } }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--graphite);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: 'ss01', 'cv11';
        }
        img, svg { display: block; max-width: 100%; }
        a { color: var(--deep-blue); text-decoration: none; }
        a:hover { color: var(--deep-blue-hover); }

        h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.15; letter-spacing: -0.022em; }
        h1 {
            font-family: 'DM Serif Display', 'Inter', Georgia, serif;
            font-size: clamp(2.5rem, 5.5vw, 4.25rem);
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.05;
        }
        h2 {
            font-family: 'DM Serif Display', 'Inter', Georgia, serif;
            font-size: clamp(1.875rem, 3.6vw, 2.75rem);
            font-weight: 600;
            letter-spacing: -0.025em;
        }
        h3 { font-size: 1.125rem; font-weight: 700; }
        p { color: var(--graphite); }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 var(--gutter);
        }

        /* ===== Skip link (a11y) ===== */
        .skip-link {
            position: absolute;
            top: -48px;
            left: 0;
            background: var(--deep-blue);
            color: var(--white);
            padding: 0.625rem 1rem;
            z-index: 1000;
            font-weight: 600;
            border-radius: 0 0 var(--radius-sm) 0;
        }
        .skip-link:focus { top: 0; color: var(--white); }

        /* ===== Announcement bar ===== */
        .announce {
            background: var(--midnight);
            color: var(--white);
            font-size: 0.8125rem;
            padding: 0.5rem var(--gutter);
            text-align: center;
            letter-spacing: 0.01em;
        }
        .announce a { color: var(--quiet-ice); font-weight: 600; }
        .announce a:hover { color: var(--white); }
        .announce .dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--moss);
            border-radius: 50%;
            margin-right: 0.5rem;
            vertical-align: middle;
        }

        /* ===== Header ===== */
        .site-header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: saturate(180%) blur(12px);
            -webkit-backdrop-filter: saturate(180%) blur(12px);
            border-bottom: 1px solid var(--line);
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--ink);
            letter-spacing: -0.025em;
        }
        .brand-logo {
            height: 32px;
            width: auto;
            display: block;
        }
        @media (max-width: 640px) {
            .brand-logo { height: 28px; }
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 2.25rem;
        }
        .nav a {
            color: var(--graphite);
            font-weight: 500;
            font-size: 0.9375rem;
            transition: color 0.15s;
        }
        .nav a:hover { color: var(--ink); }
        .nav .cta-compact {
            background: var(--deep-blue);
            color: var(--white);
            padding: 0.625rem 1.125rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: var(--shadow-xs);
        }
        .nav .cta-compact:hover { background: var(--deep-blue-hover); color: var(--white); box-shadow: var(--shadow-sm); }
        .nav-toggle {
            display: none;
            background: none;
            border: 0;
            color: var(--ink);
            font-size: 1.375rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 840px) {
            .nav {
                display: none;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: var(--white);
                border-bottom: 1px solid var(--line);
                padding: 1rem 1.5rem 1.5rem;
                box-shadow: var(--shadow-md);
            }
            .nav.open { display: flex; }
            .nav a { padding: 0.875rem 0; border-bottom: 1px solid var(--line); width: 100%; }
            .nav a:last-child { border-bottom: 0; }
            .nav .cta-compact { margin-top: 0.75rem; text-align: center; }
            .nav-toggle { display: block; }
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            padding: 5.5rem 0 5rem;
            background: var(--paper);
            overflow: hidden;
            border-bottom: 1px solid var(--line);
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 1px 1px, rgba(15, 22, 41, 0.06) 1px, transparent 0);
            background-size: 28px 28px;
            mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black, transparent 75%);
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 4rem;
            align-items: center;
        }
        @media (max-width: 980px) {
            .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--midnight);
            padding: 0.375rem 0.875rem 0.375rem 0.5rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-xs);
        }
        .hero-badge::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--moss);
            box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.2);
        }
        .hero h1 {
            color: var(--ink);
            margin-bottom: 1.5rem;
        }
        .hero h1 .highlight {
            color: var(--deep-blue);
            font-style: italic;
            font-weight: 700;
        }
        .hero-sub {
            font-size: 1.1875rem;
            color: var(--graphite);
            margin-bottom: 2.25rem;
            max-width: 36rem;
            line-height: 1.55;
        }
        .cta-row {
            display: flex;
            gap: 0.875rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9375rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.9375rem;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
            line-height: 1;
        }
        .btn-primary {
            background: var(--deep-blue);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(6, 90, 130, 0.25);
        }
        .btn-primary:hover {
            background: var(--deep-blue-hover);
            color: var(--white);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(6, 90, 130, 0.3);
        }
        .btn-secondary {
            background: var(--white);
            color: var(--ink);
            border-color: var(--line);
            box-shadow: var(--shadow-xs);
        }
        .btn-secondary:hover { border-color: var(--deep-blue); color: var(--deep-blue); }
        .btn-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.2s;
        }
        .btn:hover .btn-arrow { transform: translateX(2px); }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-top: 2.25rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--line);
            flex-wrap: wrap;
        }
        .hero-trust-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--graphite-2);
        }
        .hero-trust-items {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
        }
        .hero-trust-item {
            font-size: 0.8125rem;
            color: var(--graphite);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
        }
        .hero-trust-item svg { color: var(--teal); flex-shrink: 0; }

        /* Hero device card */
        .hero-visual {
            position: relative;
        }
        .hero-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-xl);
            padding: 1.75rem;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .hero-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: var(--radius-xl);
            padding: 1px;
            background: linear-gradient(160deg, rgba(6, 90, 130, 0.3), rgba(6, 90, 130, 0) 60%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }
        .device-window {
            background: linear-gradient(160deg, var(--midnight) 0%, var(--ink) 100%);
            border-radius: var(--radius-lg);
            padding: 1.25rem 1.25rem 1.5rem;
            color: var(--white);
            margin-bottom: 1.25rem;
        }
        .device-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
            opacity: 0.7;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .device-top .live {
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            color: var(--moss);
        }
        .device-top .live::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--moss);
            box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.25);
            animation: pulse 1.8s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 3px rgba(151, 188, 98, 0.25); }
            50% { box-shadow: 0 0 0 5px rgba(151, 188, 98, 0.12); }
        }
        .device-result {
            display: flex;
            align-items: baseline;
            gap: 0.625rem;
            margin-bottom: 0.25rem;
        }
        .device-result .label {
            font-size: 0.8125rem;
            opacity: 0.65;
        }
        .device-result .value {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.625rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .device-result .value.pass { color: var(--moss); }
        .device-strip {
            height: 8px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            margin-top: 1rem;
            overflow: hidden;
            position: relative;
        }
        .device-strip::after {
            content: "";
            position: absolute;
            inset: 0;
            width: 72%;
            background: linear-gradient(90deg, var(--teal), var(--moss));
            border-radius: 4px;
        }
        .device-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.6875rem;
            opacity: 0.55;
            margin-top: 0.5rem;
            letter-spacing: 0.04em;
        }
        .hero-card-list {
            list-style: none;
            display: grid;
            gap: 0.625rem;
        }
        .hero-card-list li {
            display: flex;
            gap: 0.625rem;
            align-items: flex-start;
            font-size: 0.875rem;
            color: var(--ink);
            font-weight: 500;
        }
        .hero-card-list li .check {
            flex: 0 0 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--quiet-ice);
            color: var(--deep-blue);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        /* ===== Section scaffolding ===== */
        section { padding: 5.5rem 0; }
        .section-header {
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3.5rem;
        }
        .eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.875rem;
        }
        .section-header h2 { margin-bottom: 0.875rem; }
        .section-header p {
            font-size: 1.0625rem;
            color: var(--graphite);
            line-height: 1.6;
        }

        /* ===== Problem strip ===== */
        .problem {
            background: var(--paper);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 840px) {
            .problem-grid { grid-template-columns: 1fr; }
        }
        .problem-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            position: relative;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .problem-card::before {
            content: "";
            position: absolute;
            top: 1.75rem;
            left: 0;
            width: 3px;
            height: 24px;
            background: var(--coral);
            border-radius: 0 2px 2px 0;
        }
        .problem-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .problem-card h3 {
            color: var(--ink);
            font-size: 1.0625rem;
            margin-bottom: 0.5rem;
        }
        .problem-card p {
            color: var(--graphite);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* ===== How It Works (4 in a row) ===== */
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            position: relative;
        }
        @media (max-width: 1020px) {
            .steps { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 540px) {
            .steps { grid-template-columns: 1fr; }
        }
        .step {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 1.875rem 1.5rem;
            text-align: left;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            position: relative;
        }
        .step:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--quiet-ice);
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(160deg, var(--deep-blue), var(--midnight));
            color: var(--white);
            border-radius: 10px;
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 12px rgba(6, 90, 130, 0.2);
        }
        .step h3 {
            font-size: 1.0625rem;
            margin-bottom: 0.5rem;
        }
        .step p {
            font-size: 0.9375rem;
            color: var(--graphite);
            line-height: 1.55;
        }

        /* ===== Stats ===== */
        .stats {
            background: var(--midnight);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .stats::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
            background-size: 32px 32px;
            pointer-events: none;
        }
        .stats .container { position: relative; }
        .stats h2 { color: var(--white); }
        .stats .eyebrow { color: var(--quiet-ice); }
        .stats .section-header p { color: rgba(255, 255, 255, 0.72); }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        @media (max-width: 880px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .stat {
            padding: 2rem 1.5rem;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }
        .stat:last-child { border-right: 0; }
        @media (max-width: 880px) {
            .stat:nth-child(2) { border-right: 0; }
            .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
        }
        .stat-num {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: -0.035em;
            line-height: 1;
            margin-bottom: 0.625rem;
        }
        .stat-label {
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
        }

        /* ===== Features ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 980px) {
            .features-grid { grid-template-columns: 1fr; }
        }
        .feature {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 2.25rem 1.875rem;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }
        .feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--quiet-ice);
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--quiet-ice-2);
            color: var(--deep-blue);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.375rem;
            border: 1px solid var(--quiet-ice);
        }
        .feature h3 {
            margin-bottom: 0.625rem;
            font-size: 1.125rem;
        }
        .feature p {
            color: var(--graphite);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* ===== Patent strip ===== */
        .patent {
            background: var(--paper);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
        .patent-inner {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 4rem;
            align-items: center;
        }
        @media (max-width: 880px) {
            .patent-inner { grid-template-columns: 1fr; gap: 2.5rem; }
        }
        .patent-seal {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        .patent-seal::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--deep-blue), var(--teal), var(--deep-blue));
        }
        .patent-seal-ring {
            width: 128px;
            height: 128px;
            margin: 0 auto 1.25rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .patent-seal-ring svg {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
        }
        .patent-seal-ring .inner {
            position: relative;
            z-index: 1;
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: linear-gradient(160deg, var(--deep-blue), var(--midnight));
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 4px 16px rgba(6, 90, 130, 0.3);
        }
        .patent-seal-ring .inner .us {
            font-size: 0.625rem;
            letter-spacing: 0.12em;
            opacity: 0.8;
            margin-bottom: 0.125rem;
        }
        .patent-seal-ring .inner .stars {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
        }
        .patent-seal-ring .inner .pt {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.375rem;
            font-weight: 700;
            line-height: 1;
            margin-top: 0.125rem;
        }
        .patent-seal .patent-label {
            font-size: 0.6875rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.375rem;
        }
        .patent-seal .patent-num {
            font-family: 'DM Serif Display', Georgia, serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.01em;
            margin-bottom: 0.375rem;
        }
        .patent-seal .patent-country {
            font-size: 0.8125rem;
            color: var(--graphite-2);
            letter-spacing: 0.02em;
        }
        .patent-content h2 { margin-bottom: 1.125rem; }
        .patent-content p {
            font-size: 1rem;
            line-height: 1.65;
            margin-bottom: 1rem;
        }
        .patent-content p:last-child { margin-bottom: 0; }

        /* ===== CTA band ===== */
        .cta-band {
            background: linear-gradient(160deg, var(--deep-blue) 0%, var(--midnight) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-band::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
            background-size: 28px 28px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent 70%);
            pointer-events: none;
        }
        .cta-band .container { position: relative; }
        .cta-band h2 { color: var(--white); margin-bottom: 1rem; }
        .cta-band p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 1.0625rem;
            max-width: 38rem;
            margin: 0 auto 2.25rem;
            line-height: 1.6;
        }
        .cta-band .cta-row { justify-content: center; }
        .cta-band .btn-primary {
            background: var(--white);
            color: var(--deep-blue);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        }
        .cta-band .btn-primary:hover { background: var(--paper); color: var(--deep-blue); }
        .cta-band .btn-secondary {
            background: transparent;
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: none;
        }
        .cta-band .btn-secondary:hover { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.06); }

        /* ===== Footer ===== */
        footer {
            background: var(--ink);
            color: rgba(255, 255, 255, 0.72);
            padding: 3.5rem 0 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 840px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }
        @media (max-width: 540px) {
            .footer-grid { grid-template-columns: 1fr; }
        }
        .footer-brand .brand {
            color: var(--white);
            margin-bottom: 1rem;
        }
        .footer-brand p {
            font-size: 0.9375rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 22rem;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }
        .footer-contact {
            display: grid;
            gap: 0.5rem;
            font-size: 0.9375rem;
        }
        .footer-contact a {
            color: rgba(255, 255, 255, 0.82);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-contact a:hover { color: var(--white); }
        .footer-contact svg { color: var(--quiet-ice); opacity: 0.8; }
        footer h4 {
            color: var(--white);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }
        .footer-list {
            list-style: none;
            display: grid;
            gap: 0.625rem;
        }
        .footer-list a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9375rem;
            transition: color 0.15s;
        }
        .footer-list a:hover { color: var(--white); }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.75rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.48);
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .footer-bottom a { color: rgba(255, 255, 255, 0.48); }
        .footer-bottom a:hover { color: var(--white); }

        /* ===== Focus styles (a11y) ===== */
        a:focus-visible, button:focus-visible, .btn:focus-visible {
            outline: 3px solid var(--teal);
            outline-offset: 2px;
            border-radius: 6px;
        }

        /* ===== Contact / Request Demo ===== */
        .contact {
            background: var(--paper);
            border-top: 1px solid var(--line);
            padding: clamp(3rem, 6vw, 5rem) 0;
        }
        .contact-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 5vw, 4rem);
            align-items: start;
        }
        @media (max-width: 860px) {
            .contact-inner { grid-template-columns: 1fr; }
        }
        .contact-copy h2 { margin-bottom: 1rem; }
        .contact-copy p {
            color: var(--graphite);
            font-size: 1.0625rem;
            max-width: 36ch;
            margin-bottom: 1.75rem;
        }
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .contact-method {
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            color: var(--ink);
            font-weight: 500;
            text-decoration: none;
            font-size: 0.9375rem;
        }
        .contact-method svg { color: var(--deep-blue); flex-shrink: 0; }
        .contact-method:hover { color: var(--deep-blue); }

        .contact-form {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: clamp(1.5rem, 3vw, 2rem);
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-form .field {
            display: flex;
            flex-direction: column;
            gap: 0.375rem;
        }
        .contact-form label {
            font-size: 0.8125rem;
            font-weight: 600;
            color: var(--ink);
            letter-spacing: 0.01em;
        }
        .contact-form .optional {
            font-weight: 400;
            color: var(--graphite-2);
            font-size: 0.75rem;
        }
        .contact-form input,
        .contact-form textarea {
            font: inherit;
            color: var(--ink);
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            padding: 0.75rem 0.875rem;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--deep-blue);
            box-shadow: 0 0 0 3px rgba(6, 90, 130, 0.15);
        }
        .contact-form textarea { resize: vertical; min-height: 5rem; }
        .contact-form button {
            align-self: flex-start;
            margin-top: 0.5rem;
        }
        .contact-form .form-status {
            margin: 0;
            font-size: 0.8125rem;
            color: var(--graphite-2);
            min-height: 1.2em;
        }

        
        .contact-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-left: 3px solid var(--deep-blue);
            border-radius: var(--radius);
            padding: 1.25rem 1.5rem;
            box-shadow: var(--shadow-sm);
            margin: 1.5rem 0;
        }
        .contact-card p { margin: 0.375rem 0; }
        .contact-card a { color: var(--deep-blue); text-decoration: none; font-weight: 600; }
        .contact-card a:hover { text-decoration: underline; }

/* ===== Reveal animations ===== */
        .reveal {
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

/* ===== Subpage Generic Styles ===== */
.page-hero {
    background: linear-gradient(135deg, var(--quiet-ice-2) 0%, var(--paper) 100%);
    padding: 7rem 0 4rem;
    border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { color: var(--deep-blue); }
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 0.75rem 0 1rem;
    max-width: 780px;
}
.page-hero p.lead {
    font-size: 1.2rem;
    color: var(--graphite);
    max-width: 720px;
    line-height: 1.55;
}
.page-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--line);
}
.page-section:last-of-type { border-bottom: none; }
.page-section h2 {
    margin-bottom: 0.75rem;
}
.page-section h3 {
    font-size: 1.35rem;
    margin: 2rem 0 0.5rem;
    color: var(--ink);
}
.page-section p,
.page-section li {
    color: var(--graphite);
    font-size: 1.05rem;
    line-height: 1.7;
}
.page-section ul {
    padding-left: 1.25rem;
    margin: 0.75rem 0 1.25rem;
}
.page-section ul li { margin-bottom: 0.5rem; }
.prose {
    max-width: 760px;
    margin: 0 auto;
}
.prose > * + * { margin-top: 1rem; }
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 820px) {
    .two-col { grid-template-columns: repeat(2, 1fr); }
}
.three-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 820px) {
    .three-col { grid-template-columns: repeat(3, 1fr); }
}
.tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.tile h3 { margin-top: 0; font-size: 1.15rem; }
.tile p { font-size: 0.98rem; margin-top: 0.5rem; }
.tile .tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--quiet-ice);
    color: var(--deep-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--quiet-ice);
    color: var(--deep-blue-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(6, 90, 130, 0.15);
}
.cta-band {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight) 100%);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0.75rem auto 1.75rem;
    font-size: 1.1rem;
}
.cta-band .btn-primary {
    background: var(--white);
    color: var(--deep-blue);
}
.cta-band .btn-