        :root {
            --navy-950: #0b1220;
            --navy-900: #0f172a;
            --navy-800: #1e293b;
            --brand: #1e3a8a;
            --blue: #2563eb;
            --blue-dark: #1d4ed8;
            --blue-light: #dbeafe;
            --emerald: #10b981;
            --emerald-dark: #065f46;
            --emerald-bg: #ecfdf5;
            --amber: #d97706;
            --amber-bg: #fffbeb;
            --amber-text: #92400e;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --ink: #0f172a;
            --radius: 14px;
            --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
            --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.28);
            --maxw: 1160px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 88px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--slate-700);
            background: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            font-variant-numeric: tabular-nums;
        }

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

        .wrap {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 0 24px;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--ink);
            line-height: 1.15;
            letter-spacing: -0.02em;
            font-weight: 800;
        }

        .eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--blue);
        }

        .section {
            padding: 92px 0;
        }

        .section-head {
            max-width: 720px;
            margin: 0 auto 56px;
            text-align: center;
        }

        .section-head h2 {
            font-size: clamp(1.75rem, 3.2vw, 2.5rem);
            margin: 14px 0 16px;
        }

        .section-head p {
            font-size: 1.075rem;
            color: var(--slate-500);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            font-size: 0.95rem;
            font-weight: 700;
            padding: 14px 26px;
            border-radius: 10px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: transform 0.12s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
            font-family: inherit;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--blue);
            color: #fff;
            box-shadow: 0 6px 18px -6px rgba(37, 99, 235, 0.6);
        }

        .btn-primary:hover {
            background: var(--blue-dark);
            transform: translateY(-1px);
        }

        .btn-ghost {
            background: transparent;
            color: var(--ink);
            border-color: var(--slate-300);
        }

        .btn-ghost:hover {
            border-color: var(--slate-500);
            background: var(--slate-50);
        }

        .btn-light {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.25);
        }

        .btn-light:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 1rem;
        }

        /* Header */
        header.site {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: saturate(180%) blur(12px);
            border-bottom: 1px solid var(--slate-200);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: -0.01em;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            border-radius: 9px;
            background: var(--navy-900);
            color: var(--emerald);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .brand small {
            display: block;
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--slate-500);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

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

        .nav-links a.link {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--slate-600);
            transition: color 0.15s;
        }

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

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

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--ink);
            margin: 4px 0;
            transition: 0.2s;
        }

        /* Hero */
        .hero {
            position: relative;
            background:
                radial-gradient(1200px 600px at 80% -10%, rgba(37, 99, 235, 0.16), transparent 60%),
                radial-gradient(900px 500px at 0% 10%, rgba(16, 185, 129, 0.10), transparent 55%),
                linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
            color: #e2e8f0;
            overflow: hidden;
        }

        /* Hero looping background video */
        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transform: scale(1.06);
            animation: heroPan 34s ease-in-out infinite alternate;
            will-change: transform;
        }

        /* Overlay to keep the navy tint and text contrast over the photo */
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                radial-gradient(1100px 560px at 82% -8%, rgba(37, 99, 235, 0.22), transparent 60%),
                linear-gradient(180deg, rgba(11, 18, 32, 0.5) 0%, rgba(15, 23, 42, 0.66) 100%);
        }

        .hero>.wrap {
            position: relative;
            z-index: 2;
        }

        @keyframes heroPan {
            from {
                transform: scale(1.06) translate3d(0, 0, 0);
            }

            to {
                transform: scale(1.12) translate3d(-2%, -2.5%, 0);
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 56px;
            align-items: center;
            padding: 84px 0 96px;
        }

        .hero .eyebrow {
            color: #7dd3fc;
        }

        .hero h1 {
            color: #fff;
            font-size: clamp(2.2rem, 4.6vw, 3.5rem);
            margin: 16px 0 20px;
        }

        .hero h1 .accent {
            color: var(--emerald);
        }

        .hero p.lede {
            font-size: 1.15rem;
            color: #cbd5e1;
            max-width: 560px;
            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 26px;
        }

        .hero-trust {
            font-size: 0.9rem;
            color: var(--slate-400);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-trust svg {
            flex-shrink: 0;
        }

        /* Hero visual card */
        .report-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            padding: 24px;
            color: var(--slate-700);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .rc-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--slate-200);
            margin-bottom: 18px;
        }

        .rc-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--ink);
        }

        .rc-badge {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--emerald-dark);
            background: var(--emerald-bg);
            padding: 4px 9px;
            border-radius: 20px;
        }

        .rc-hero-figure {
            background: var(--navy-900);
            border-radius: 10px;
            padding: 18px 20px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .rc-hero-figure .label {
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--slate-400);
            font-weight: 600;
        }

        .rc-hero-figure .big {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .rc-hero-figure .annual {
            text-align: right;
        }

        .rc-hero-figure .annual .val {
            color: var(--emerald);
            font-size: 1.25rem;
            font-weight: 800;
        }

        .rc-bars {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .rc-bar-row {
            display: grid;
            grid-template-columns: 96px 1fr 62px;
            align-items: center;
            gap: 10px;
        }

        .rc-bar-row .lbl {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--slate-500);
        }

        .rc-track {
            height: 12px;
            background: var(--slate-100);
            border-radius: 6px;
            overflow: hidden;
        }

        .rc-fill {
            height: 100%;
            border-radius: 6px;
            width: 0;
            transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .rc-fill.potential {
            background: var(--emerald);
        }

        .rc-fill.kept {
            background: var(--brand);
        }

        .rc-fill.leak {
            background: var(--amber);
        }

        .rc-bar-row .amt {
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--ink);
            text-align: right;
        }

        .rc-foot {
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--slate-200);
            font-size: 0.72rem;
            color: var(--slate-500);
        }

        /* Logo / trust strip */
        .trust-strip {
            border-bottom: 1px solid var(--slate-200);
            background: var(--slate-50);
            padding: 26px 0;
        }

        .trust-strip .wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px 40px;
            flex-wrap: wrap;
            text-align: center;
        }

        .trust-strip p {
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--slate-400);
        }

        .trust-tags {
            display: flex;
            gap: 14px 28px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .trust-tags span {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--slate-500);
        }

        /* Problem section */
        .problem {
            background: #fff;
        }

        .stat-hero {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 52px;
        }

        .stat-hero .num {
            font-size: clamp(3rem, 7vw, 4.75rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--ink);
            line-height: 1;
        }

        .stat-hero .num .unit {
            color: var(--amber);
        }

        .stat-hero p {
            font-size: 1.1rem;
            color: var(--slate-500);
            margin-top: 16px;
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .pain-card {
            background: var(--slate-50);
            border: 1px solid var(--slate-200);
            border-left: 4px solid var(--amber);
            border-radius: 10px;
            padding: 22px 22px;
        }

        .pain-card h4 {
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .pain-card p {
            font-size: 0.9rem;
            color: var(--slate-500);
        }

        /* Steps / how it works */
        .how {
            background: var(--slate-50);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            counter-reset: step;
        }

        .step {
            background: #fff;
            border: 1px solid var(--slate-200);
            border-radius: var(--radius);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--navy-900);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.05rem;
            margin-bottom: 18px;
        }

        .step h3 {
            font-size: 1.12rem;
            margin-bottom: 8px;
        }

        .step p {
            font-size: 0.92rem;
            color: var(--slate-500);
        }

        /* What we catch grid */
        .catch {
            background: #fff;
        }

        .catch-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .catch-card {
            border: 1px solid var(--slate-200);
            border-radius: 12px;
            padding: 22px;
            transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
        }

        .catch-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--slate-300);
        }

        .catch-icon {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--amber-bg);
            color: var(--amber);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
        }

        .catch-card h4 {
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .catch-card p {
            font-size: 0.88rem;
            color: var(--slate-500);
        }

        /* Why us / differentiators */
        .why {
            position: relative;
            background: var(--navy-900);
            color: #cbd5e1;
            overflow: hidden;
        }

        .why::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(105deg, rgba(15, 23, 42, 0.82) 38%, rgba(15, 23, 42, 0.5) 100%),
                url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?fm=jpg&q=72&w=2400&auto=format&fit=crop") center/cover fixed no-repeat;
        }

        .why>.wrap {
            position: relative;
            z-index: 1;
        }

        .why .section-head h2 {
            color: #fff;
            text-shadow: 0 2px 14px rgba(2, 6, 16, 0.7);
        }

        .why .section-head p {
            color: #e2e8f0;
            text-shadow: 0 1px 10px rgba(2, 6, 16, 0.65);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .why-card {
            background: rgba(13, 20, 36, 0.72);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: var(--radius);
            padding: 28px;
            display: flex;
            gap: 18px;
        }

        .why-check {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(16, 185, 129, 0.15);
            color: var(--emerald);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-card h3 {
            color: #fff;
            font-size: 1.12rem;
            margin-bottom: 6px;
        }

        .why-card p {
            font-size: 0.92rem;
            color: var(--slate-300);
        }

        /* Results band */
        .results {
            background: var(--emerald-bg);
        }

        .results-human {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            margin: 0 auto 56px;
            max-width: 980px;
        }

        .results-photo {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 3 / 2;
        }

        .results-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .results-copy h3 {
            font-size: clamp(1.3rem, 2.4vw, 1.7rem);
            color: var(--ink);
            margin-bottom: 12px;
        }

        .results-copy p {
            font-size: 1.02rem;
            color: var(--slate-600);
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            text-align: center;
        }

        .metric .num {
            font-size: clamp(2.2rem, 4.5vw, 3rem);
            font-weight: 800;
            color: var(--emerald-dark);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .metric p {
            margin-top: 10px;
            font-size: 0.98rem;
            color: var(--slate-600);
        }

        /* Sample report CTA */
        .sample {
            background: #fff;
        }

        .sample-box {
            background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
            border-radius: 20px;
            padding: 48px 44px;
            color: #fff;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            align-items: center;
            gap: 40px;
            overflow: hidden;
        }

        .sample-box h2 {
            color: #fff;
            font-size: clamp(1.6rem, 3vw, 2.15rem);
            margin-bottom: 14px;
        }

        .sample-box p {
            color: #cbd5e1;
            margin-bottom: 26px;
            font-size: 1.03rem;
        }

        .sample-visual {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 22px;
        }

        .sample-visual .row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
        }

        .sample-visual .row:last-child {
            border-bottom: none;
        }

        .sample-visual .row .k {
            color: var(--slate-400);
        }

        .sample-visual .row .v {
            font-weight: 800;
            color: #fff;
        }

        .sample-visual .row .v.leak {
            color: #fca5a5;
        }

        .sample-visual .row .v.up {
            color: var(--emerald);
        }

        /* Audience */
        .audience {
            background: var(--slate-50);
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .aud-card {
            background: #fff;
            border: 1px solid var(--slate-200);
            border-radius: var(--radius);
            padding: 28px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .aud-card .role {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .aud-card p {
            font-size: 0.92rem;
            color: var(--slate-500);
        }

        /* About */
        .about {
            background: #fff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 52px;
            align-items: center;
        }

        .about-photo {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            aspect-ratio: 3 / 4;
            max-width: 440px;
            width: 100%;
            justify-self: center;
        }

        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-copy h2 {
            font-size: clamp(1.75rem, 3.2vw, 2.5rem);
            margin: 14px 0 18px;
        }

        .about-copy p {
            font-size: 1.05rem;
            color: var(--slate-600);
            margin-bottom: 16px;
        }

        .about-copy p:last-of-type {
            margin-bottom: 0;
        }

        .about-sign {
            margin-top: 26px;
            font-weight: 800;
            color: var(--ink);
        }

        .about-sign small {
            display: block;
            font-weight: 600;
            color: var(--slate-500);
            font-size: 0.85rem;
            margin-top: 2px;
        }

        /* FAQ */
        .faq {
            background: #fff;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--slate-200);
        }

        .faq-q {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            padding: 22px 40px 22px 0;
            font-size: 1.06rem;
            font-weight: 700;
            color: var(--ink);
            position: relative;
            font-family: inherit;
        }

        .faq-q::after {
            content: "+";
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--blue);
            transition: transform 0.2s;
        }

        .faq-item.open .faq-q::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-a p {
            padding: 0 0 22px;
            color: var(--slate-500);
            font-size: 0.98rem;
        }

        /* Final CTA / contact */
        .cta-final {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(900px 500px at 50% -20%, rgba(37, 99, 235, 0.25), transparent 60%),
                var(--navy-950);
            color: #cbd5e1;
            text-align: center;
        }

        .cta-final::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(180deg, rgba(11, 18, 32, 0.62), rgba(11, 18, 32, 0.78)),
                url("https://images.unsplash.com/photo-1745921204896-c2011440a4e2?fm=jpg&q=70&w=2400&auto=format&fit=crop") center/cover fixed no-repeat;
        }

        .cta-final>.wrap {
            position: relative;
            z-index: 1;
        }

        /* Soft scrim so the centered copy and form stay readable over the photo */
        .cta-final>.wrap::before {
            content: "";
            position: absolute;
            inset: -8% -6%;
            z-index: -1;
            background: radial-gradient(62% 72% at 50% 44%, rgba(2, 6, 16, 0.72), rgba(2, 6, 16, 0.28) 70%, transparent 100%);
            pointer-events: none;
        }

        .cta-final h2 {
            color: #fff;
            font-size: clamp(1.9rem, 4vw, 2.75rem);
            margin-bottom: 16px;
            text-shadow: 0 2px 16px rgba(2, 6, 16, 0.7);
        }

        .cta-final p {
            font-size: 1.1rem;
            color: #e2e8f0;
            max-width: 620px;
            margin: 0 auto 34px;
            text-shadow: 0 1px 12px rgba(2, 6, 16, 0.65);
        }

        .contact-form {
            max-width: 560px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            text-align: left;
        }

        .contact-form .full {
            grid-column: 1 / -1;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 13px 15px;
            border-radius: 9px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            background: rgba(11, 18, 32, 0.62);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            color: #fff;
            font-family: inherit;
            font-size: 0.95rem;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--slate-400);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--blue);
            background: rgba(11, 18, 32, 0.78);
        }

        .contact-note {
            font-size: 0.85rem;
            color: var(--slate-300);
            margin-top: 16px;
            text-shadow: 0 1px 10px rgba(2, 6, 16, 0.6);
        }

        .contact-note a {
            color: #7dd3fc;
            font-weight: 600;
        }

        /* Footer */
        footer.site {
            background: var(--navy-950);
            color: var(--slate-400);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.85rem;
        }

        .foot .brand {
            color: #fff;
        }

        .foot-links {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .foot-links a:hover {
            color: #fff;
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.in {
            opacity: 1;
            transform: none;
        }

        /* Sub-page header banner */
        .page-hero {
            position: relative;
            background:
                radial-gradient(1000px 520px at 80% -20%, rgba(37, 99, 235, 0.22), transparent 60%),
                radial-gradient(800px 460px at 0% 10%, rgba(16, 185, 129, 0.10), transparent 55%),
                linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
            color: #e2e8f0;
            text-align: center;
            padding: 76px 0 68px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .page-hero .eyebrow {
            color: #7dd3fc;
        }

        .page-hero h1 {
            color: #fff;
            font-size: clamp(2rem, 4.4vw, 3rem);
            margin: 12px 0 14px;
        }

        .page-hero p {
            color: #cbd5e1;
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Sub-page bottom CTA strip */
        .page-cta {
            background: var(--slate-50);
            border-top: 1px solid var(--slate-200);
            text-align: center;
            padding: 64px 0;
        }

        .page-cta h2 {
            font-size: clamp(1.5rem, 3vw, 2.1rem);
            margin-bottom: 12px;
        }

        .page-cta p {
            color: var(--slate-500);
            max-width: 560px;
            margin: 0 auto 26px;
        }

        /* Responsive */
        @media (max-width: 940px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 44px;
                padding: 60px 0 72px;
            }

            .pain-grid,
            .steps,
            .catch-grid,
            .why-grid,
            .metrics,
            .audience-grid {
                grid-template-columns: 1fr 1fr;
            }

            .sample-box,
            .results-human,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .results-human {
                max-width: 520px;
                gap: 28px;
            }

            .about-grid {
                gap: 32px;
            }

            .nav-links {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: #fff;
                border-bottom: 1px solid var(--slate-200);
                padding: 18px 24px 24px;
                gap: 16px;
                align-items: flex-start;
                box-shadow: var(--shadow-md);
            }
        }

        @media (max-width: 620px) {
            .section {
                padding: 64px 0;
            }

            .pain-grid,
            .steps,
            .catch-grid,
            .why-grid,
            .metrics,
            .audience-grid,
            .contact-form {
                grid-template-columns: 1fr;
            }

            .rc-hero-figure {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .rc-hero-figure .annual {
                text-align: left;
            }

            .hero-actions .btn {
                flex: 1;
            }
        }

        /* Fixed-attachment parallax is unreliable on touch/mobile; fall back to scroll */
        @media (max-width: 940px),
        (hover: none) {

            .why::before,
            .cta-final::before {
                background-attachment: scroll;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }

            html {
                scroll-behavior: auto;
            }

            .hero-media {
                animation: none;
                transform: scale(1.06);
            }
        }
