    /* ─── Tokens ─────────────────────────────────────────────── */
    :root {
        --bg:          #F7F3EE;
        --surface:     #EDE8E0;
        --text:        #100C07;
        --muted:       #5C5043;
        --border:      rgba(16,12,7,0.09);
        --accent:      #C2410C;
        --accent-glow: rgba(194,65,12,0.22);
        --on-accent:   #FFFFFF;
        --video-bg:    #000;
    }

    /* Fixed light/dark section design — do not follow OS prefers-color-scheme.
       Sections are intentionally alternating light/dark as an editorial rhythm,
       not a single toggleable theme, so --bg/--surface must stay constant
       regardless of the visitor's system setting. */
    :root[data-theme="dark"] {
        --bg:          #0A0907;
        --surface:     #111008;
        --text:        #F5F0EA;
        --muted:       #8A7C6E;
        --border:      rgba(245,240,234,0.07);
        --accent:      #F97316;
        --accent-glow: rgba(249,115,22,0.25);
        --on-accent:   #0A0907;
        --video-bg:    #000;
    }

    /* ─── Reset ───────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

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

    /* Rounded section seams — body bg peeks through the gaps */
    :root { --section-radius: clamp(20px, 2.8vw, 32px); }

    .solutions, .portfolio, .numbers, .impact, .about-hero, .spotlight, .testimonials, .faq, .contact {
        position: relative;
        overflow: hidden;
        border-radius: var(--section-radius);
        margin: 0 0.75rem 0.75rem;
    }

    .hero { border-radius: var(--section-radius); margin: 0.75rem 0.75rem 0.75rem; }

    .footer { overflow: hidden; border-radius: var(--section-radius); margin: 0 0.75rem 0.75rem; }

    a { color: var(--accent); text-decoration: none; }
    a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

    /* ─── Nav — Mercury-style full-width transparent ─────────── */
    .nav {
        position: fixed;
        inset-block-start: 0;
        inset-inline: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2rem;
        background: transparent;
        transition: background 0.35s ease, backdrop-filter 0.35s ease;
    }

    .nav.scrolled {
        background: rgba(10,9,7,0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-inner {
        width: 100%;
        max-width: 120rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.125rem 0;
        gap: 2rem;
        position: relative;
    }

    .nav-brand { flex-shrink: 0; }

    /* Full wordmark+tagline lockup, tagline is baked into the image itself */
    .nav-logo {
        display: block;
        width: 155px;
    }

    .nav-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* Center links — absolute so they don't push the CTA off-right */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        list-style: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: auto;
    }

    /* Spacer that mirrors logo width so CTA stays far right */
    .nav-inner { position: relative; }

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(245,240,234,0.55);
        padding: 0.4rem 0.875rem;
        border-radius: 9999px;
        transition: color 0.2s, background 0.2s;
        white-space: nowrap;
    }

    .nav-links a:hover {
        color: rgba(245,240,234,0.95);
        background: rgba(245,240,234,0.07);
    }

    .nav-links a.active {
        color: #F97316;
        background: rgba(249,115,22,0.12);
    }

    .nav-links a.active:hover { color: #F97316; }

    /* Pill CTA — orange with arrow icon */
    .nav-cta {
        display: inline-flex !important;
        align-items: center;
        gap: 0.5rem;
        background: #F97316 !important;
        color: #0A0907 !important;
        font-family: 'Outfit', sans-serif;
        font-weight: 700 !important;
        font-size: 0.875rem !important;
        padding: 0.5625rem 1.125rem !important;
        border-radius: 9999px !important;
        transition: box-shadow 0.2s, opacity 0.2s !important;
        flex-shrink: 0;
    }

    .nav-cta:hover {
        box-shadow: 0 4px 16px rgba(249,115,22,0.4);
        opacity: 0.92;
    }

    .nav-cta-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(10,9,7,0.18);
        flex-shrink: 0;
    }

    /* Mobile menu — burger + dropdown panel */
    .nav-burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0;
    }

    .nav-burger span {
        display: block;
        width: 20px;
        height: 1.5px;
        background: #F5F0EA;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu { display: none; }

    /* ─── Sticky WhatsApp button ──────────────────────────────── */
    .whatsapp-fab {
        position: fixed;
        right: 1.5rem;
        bottom: 1.5rem;
        z-index: 150;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #F97316;
        color: #0A0907;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        transition: box-shadow 0.2s ease, opacity 0.2s ease;
    }

    .whatsapp-fab:hover {
        box-shadow: 0 10px 28px rgba(0,0,0,0.5);
        color: #0A0907;
        opacity: 0.88;
    }

    .whatsapp-fab svg { width: 28px; height: 28px; }

    @media (max-width: 640px) {
        .whatsapp-fab {
            right: 1rem;
            bottom: 1rem;
            width: 50px;
            height: 50px;
        }
        .whatsapp-fab svg { width: 25px; height: 25px; }
    }

    /* ─── Hero — Mercury centered full-bleed ─────────────────── */
    .hero {
        position: relative;
        height: 100svh;
        min-height: 680px;
        overflow: hidden;
        background: #0A0907 url('Assets/images/hero-poster.jpg') center / cover no-repeat;
        display: flex;
        flex-direction: column;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    @media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

    /* Even vignette — dark edges, lighter center */
    .hero-scrim {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(0deg, rgba(10,9,7,0.78) 0%, rgba(10,9,7,0.3) 40%, rgba(10,9,7,0.3) 60%, rgba(10,9,7,0.6) 100%),
            radial-gradient(ellipse at center, transparent 30%, rgba(10,9,7,0.5) 100%);
    }

    /* Centered column */
    .hero-layout {
        position: relative;
        z-index: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 9.5rem 2rem 4rem;
        max-width: 120rem;
        margin: 0 auto;
        width: 100%;
    }

    .hero-eyebrow {
        font-family: 'JetBrains Mono', 'Courier New', monospace;
        font-size: 0.6875rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #F97316;
        margin-bottom: 1.5rem;
    }

    .hero-headline {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.75rem, 5.5vw, 4.75rem);
        font-weight: 500;
        color: #ffffff;
        line-height: 1.12;
        letter-spacing: -0.015em;
        margin-bottom: 1.125rem;
        text-wrap: balance;
        max-width: 24ch;
    }

    .hero-sub {
        font-size: 1.125rem;
        color: #ededf3;
        line-height: 1.55;
        max-width: 34rem;
        margin-bottom: 2.5rem;
        font-weight: 400;
    }

    /* Mercury pill-split: email input + orange CTA as one pill group, ghost beside */
    .hero-cta-row {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-email-group {
        display: flex;
        align-items: stretch;
        border-radius: 9999px;
        overflow: hidden;
        border: 1px solid rgba(237,237,243,0.55);
        background: rgba(10,9,7,0.28);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .hero-email-input {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: #ededf3;
        background: transparent;
        border: none;
        outline: none;
        padding: 0.875rem 1.25rem;
        width: 210px;
        min-width: 0;
    }

    .hero-email-input::placeholder { color: rgba(200,200,212,0.65); }

    .btn-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        border-radius: 9999px;
        background: #F97316;
        color: #0A0907;
        white-space: nowrap;
        line-height: 1;
        transition: opacity 0.2s ease, box-shadow 0.2s ease;
        flex-shrink: 0;
    }

    .btn-pill:hover {
        opacity: 0.88;
        box-shadow: 0 4px 20px rgba(249,115,22,0.4);
        color: #0A0907;
    }

    /* Ghost pill — outline style for secondary CTA */
    .btn-ghost-hero {
        display: inline-flex;
        align-items: center;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        border-radius: 9999px;
        border: 1px solid rgba(237,237,243,0.5);
        background: rgba(10,9,7,0.2);
        backdrop-filter: blur(8px);
        color: #ededf3;
        white-space: nowrap;
        line-height: 1;
        transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .btn-ghost-hero:hover {
        border-color: rgba(237,237,243,0.9);
        color: #ffffff;
        background: rgba(237,237,243,0.08);
    }

    /* Mercury disclaimer strip — pinned to hero bottom edge */
    .hero-disclaimer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0.75rem 2rem;
        background: rgba(10,9,7,0.68);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(237,237,243,0.07);
    }

    .hero-disclaimer p {
        font-size: 0.8125rem;
        color: rgba(237,237,243,0.48);
        line-height: 1.5;
        text-align: center;
        font-weight: 400;
    }

    .hero-disclaimer a {
        color: rgba(237,237,243,0.65);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.2s;
    }

    .hero-disclaimer a:hover { color: #ffffff; }

    .status-dot {
        display: inline-block;
        position: relative;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #22C55E;
        margin-right: 0.4rem;
        vertical-align: middle;
        box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
        animation: status-pulse 2s ease-out infinite;
    }

    @keyframes status-pulse {
        0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
        70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
        100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
    }

    @media (prefers-reduced-motion: reduce) {
        .status-dot { animation: none; }
    }

    /* ─── Shared helpers ──────────────────────────────────────── */
    .section-h2 {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        letter-spacing: -0.015em;
        line-height: 1.1;
        text-wrap: balance;
    }

    .section-h3 {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        letter-spacing: -0.012em;
        line-height: 1.2;
    }

    /* Eyebrow — monospace uppercase, editorial chapter-marker (Dia principle) */
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.625rem;
        font-family: 'JetBrains Mono', 'Courier New', monospace;
        font-size: 0.6875rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 1.25rem;
    }

    .eyebrow::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--accent);
        flex-shrink: 0;
    }

    .btn-section {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
        border-radius: 20px;
        background: var(--accent);
        color: var(--on-accent);
        transition: box-shadow 0.2s ease, opacity 0.2s ease;
        white-space: nowrap;
        line-height: 1;
    }

    .btn-section:hover {
        box-shadow: 0 4px 20px var(--accent-glow);
        opacity: 0.88;
        color: var(--on-accent);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 0.875rem 1.75rem;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text);
        transition: border-color 0.2s, color 0.2s, background 0.2s;
        white-space: nowrap;
        line-height: 1;
    }

    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(249,115,22,0.06);
    }

    /* ─── Solutions ───────────────────────────────────────────── */
    .solutions {
        background: var(--bg);
        padding: 7.5rem 3rem;
    }

    .solutions-inner { max-width: 120rem; margin: 0 auto; }

    .solutions-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .solutions-header-text { max-width: 48rem; }

    .solutions-header h2 {
        font-size: clamp(2.5rem, 4.2vw, 3.75rem);
        font-weight: 700;
        letter-spacing: -0.025em;
        line-height: 1.15;
        margin-bottom: 1rem;
        color: var(--text);
    }

    .solutions-header p {
        font-size: 1.0625rem;
        color: var(--muted);
        line-height: 1.8;
    }

    /* 2x2 bento grid — Mercury style */
    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    /* Cards stay dark always — premium editorial feel regardless of page theme */
    .sol-card {
        background: #100D09;
        border: 1px solid rgba(245,240,234,0.08);
        border-radius: 22px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .sol-card:hover {
        border-color: rgba(249,115,22,0.4);
        box-shadow: 0 12px 48px rgba(0,0,0,0.28);
    }

    /* Visual/image area */
    .sol-visual {
        height: 230px;
        position: relative;
        overflow: hidden;
        background: #0B0906;
    }

    .sol-art {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .sol-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 55%, rgba(16,13,9,0.5) 100%);
        pointer-events: none;
    }

    .sol-body {
        padding: 2rem 2.125rem 2.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        flex: 1;
    }

    .sol-num {
        font-family: 'JetBrains Mono', 'Courier New', monospace;
        font-size: 0.8125rem;
        font-weight: 400;
        color: #F97316;
        letter-spacing: 0.08em;
        margin-bottom: 0.125rem;
    }

    .sol-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        letter-spacing: -0.02em;
        line-height: 1.3;
        color: #F5F0EA;
    }

    .sol-desc {
        font-size: 1.0625rem;
        color: rgba(245,240,234,0.55);
        line-height: 1.75;
    }

    .sol-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        margin-top: 0.375rem;
    }

    .sol-list li {
        font-size: 1.0625rem;
        color: rgba(245,240,234,0.55);
        line-height: 1.7;
        padding-left: 1.125rem;
        position: relative;
    }

    .sol-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.6em;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #F97316;
        flex-shrink: 0;
    }

    /* Glassmorphism "Learn More" pill */
    .sol-learn-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        align-self: flex-start;
        margin-top: 1.125rem;
        padding: 0.625rem 1.125rem 0.625rem 1.375rem;
        border-radius: 9999px;
        background: rgba(245,240,234,0.06);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(245,240,234,0.14);
        color: #F5F0EA;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.875rem;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .sol-learn-more svg { color: currentColor; transition: color 0.2s ease; }

    .sol-learn-more:hover {
        background: rgba(249,115,22,0.14);
        border-color: rgba(249,115,22,0.45);
        color: #F97316;
    }

    /* ─── Portfolio (placeholder slots — images added later) ──── */
    .portfolio {
        background: #F2EDE5;
        padding: 7.5rem 3rem;
    }

    .portfolio-inner { max-width: 120rem; margin: 0 auto; }

    .portfolio-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .portfolio-header h2 { font-size: clamp(2.5rem, 4.2vw, 3.75rem); max-width: 40rem; }

    /* Shared "view all" pill — outlined with a filled circular arrow */
    .section-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 0.4375rem 0.4375rem 0.4375rem 1.375rem;
        border-radius: 9999px;
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text);
        white-space: nowrap;
        flex-shrink: 0;
        transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    }

    .section-link-btn:hover {
        border-color: rgba(249,115,22,0.4);
        color: var(--accent);
        background: rgba(249,115,22,0.06);
    }

    .section-link-btn-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--on-accent);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: opacity 0.2s ease;
    }

    .section-link-btn:hover .section-link-btn-icon { opacity: 0.88; }

    /* Centered peek-carousel — big cards, partial left/right neighbors visible */
    .portfolio-carousel {
        position: relative;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
    }

    .portfolio-track {
        display: flex;
        align-items: stretch;
        gap: 1.75rem;
        will-change: transform;
    }

    .portfolio-item {
        position: relative;
        flex: 0 0 auto;
        width: min(900px, 82vw);
        aspect-ratio: 16 / 10;
        border-radius: 22px;
        border: 1px solid var(--border);
        background: var(--surface);
        overflow: hidden;
        transition: border-color 0.2s ease;
    }

    .portfolio-item:hover { border-color: rgba(249,115,22,0.4); }

    /* Media fills the entire card — the title/tags footer floats over it
       as a glass panel instead of sitting in its own section below */
    .portfolio-item-media {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.875rem;
        color: var(--muted);
        background: var(--surface);
        overflow: hidden;
    }

    .portfolio-item-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: filter 0.25s ease;
    }

    /* Very light blur on the thumbnail itself when the card is hovered,
       to draw focus toward the center expand button */
    .portfolio-item:hover .portfolio-item-media img { filter: blur(2px); }

    .portfolio-item-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
        color: var(--muted);
    }

    .portfolio-item-placeholder span {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    /* Hover-reveal expand button, top-right of the media */
    .portfolio-item-expand {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 2;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10,9,7,0.55);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(245,240,234,0.25);
        color: #F5F0EA;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.85);
        transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        cursor: pointer;
    }

    .portfolio-item:hover .portfolio-item-expand,
    .portfolio-item-expand:focus-visible {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .portfolio-item-expand:hover {
        background: rgba(249,115,22,0.85);
        border-color: rgba(249,115,22,0.85);
        color: #0A0907;
    }

    /* Footer — glass panel with title + tag pills, floating over the image */
    .portfolio-item-footer {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 1.25rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        background: rgba(10,9,7,0.6);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(245,240,234,0.14);
    }

    .portfolio-item-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.0625rem;
        color: #F5F0EA;
        letter-spacing: -0.01em;
    }

    .portfolio-item-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .portfolio-tag {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.6875rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #0A0907;
        background: #F97316;
        border: 1px solid #F97316;
        border-radius: 6px;
        padding: 0.25rem 0.5rem;
        white-space: nowrap;
    }

    /* ─── Portfolio detail modal ─────────────────────────────────── */
    .portfolio-modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 300;
        background: rgba(8,6,4,0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .portfolio-modal-overlay.open { opacity: 1; pointer-events: auto; }

    .portfolio-modal {
        position: relative;
        width: min(52rem, 100%);
        max-height: 88vh;
        overflow-y: auto;
        background: var(--bg);
        border-radius: 24px;
        border: 1px solid var(--border);
        transform: translateY(16px) scale(0.98);
        transition: transform 0.25s ease;
    }

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

    .portfolio-modal-close {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        z-index: 2;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10,9,7,0.55);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(245,240,234,0.25);
        color: #F5F0EA;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .portfolio-modal-close:hover { background: rgba(249,115,22,0.85); border-color: rgba(249,115,22,0.85); color: #0A0907; }

    .portfolio-modal-media {
        width: 100%;
        aspect-ratio: 16 / 9;
        background: var(--surface);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        border-radius: 24px 24px 0 0;
        overflow: hidden;
        position: relative;
    }

    .portfolio-modal-media img { width: 100%; height: 100%; object-fit: contain; object-position: top; }

    /* Slider — only rendered when a project has more than one image */
    .portfolio-modal-slider-track {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.4s ease;
    }

    .portfolio-modal-slider-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: contain; object-position: top; }

    .portfolio-modal-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(10,9,7,0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(245,240,234,0.25);
        color: #F5F0EA;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .portfolio-modal-slider-arrow:hover:not(:disabled) {
        background: rgba(249,115,22,0.85);
        border-color: rgba(249,115,22,0.85);
        color: #0A0907;
    }

    .portfolio-modal-slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
    .portfolio-modal-slider-arrow.prev { left: 1rem; }
    .portfolio-modal-slider-arrow.next { right: 1rem; }

    .portfolio-modal-slider-dots {
        position: absolute;
        bottom: 0.875rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        gap: 0.375rem;
    }

    .portfolio-modal-slider-dot {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: rgba(245,240,234,0.4);
        transition: background 0.2s ease, width 0.2s ease;
    }

    .portfolio-modal-slider-dot.active { background: #F97316; width: 16px; }

    .portfolio-modal-body { padding: 2.25rem 2.5rem 2.5rem; }

    .portfolio-modal-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }

    .portfolio-modal-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: clamp(1.5rem, 3vw, 2rem);
        letter-spacing: -0.02em;
        color: var(--text);
        margin-bottom: 0.875rem;
    }

    .portfolio-modal-desc {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 1.75rem;
    }

    .portfolio-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.75rem;
        margin-top: 2.5rem;
    }

    /* ─── Get In Touch modal ─────────────────────────────────────── */
    .contact-modal-overlay {
        position: fixed;
        inset: 0;
        z-index: 400;
        background: rgba(8,6,4,0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .contact-modal-overlay.open { opacity: 1; pointer-events: auto; }

    .contact-modal {
        position: relative;
        width: min(30rem, 100%);
        max-height: 90vh;
        overflow-y: auto;
        background: var(--bg);
        border-radius: 24px;
        border: 1px solid var(--border);
        transform: translateY(16px) scale(0.98);
        transition: transform 0.25s ease;
    }

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

    .contact-modal-close {
        position: absolute;
        top: 1.125rem;
        right: 1.125rem;
        z-index: 2;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface);
        border: 1px solid var(--border);
        color: var(--text);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .contact-modal-close:hover { background: #F97316; border-color: #F97316; color: #0A0907; }

    .contact-modal-body { padding: 2.5rem 2.25rem 2.25rem; }

    .contact-modal-eyebrow {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
        margin-bottom: 0.75rem;
    }

    .contact-modal-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: clamp(1.375rem, 2.5vw, 1.625rem);
        letter-spacing: -0.02em;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .contact-modal-sub {
        font-size: 0.9375rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .contact-modal-field { margin-bottom: 1.25rem; }

    .contact-modal-field label {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.8125rem;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .contact-modal-field input,
    .contact-modal-field textarea {
        width: 100%;
        font-family: 'Inter', sans-serif;
        font-size: 0.9375rem;
        color: var(--text);
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        resize: vertical;
        transition: border-color 0.2s ease;
    }

    .contact-modal-field input:focus,
    .contact-modal-field textarea:focus {
        outline: none;
        border-color: var(--accent);
    }

    .contact-modal-field input::placeholder,
    .contact-modal-field textarea::placeholder { color: var(--muted); }

    .contact-modal-error {
        font-size: 0.8125rem;
        color: #F97316;
        margin: -0.5rem 0 1rem;
    }

    .contact-modal-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.875rem;
    }

    .contact-modal-send { border: none; cursor: pointer; }

    .contact-modal-fallback {
        font-size: 0.8125rem;
        color: var(--muted);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.2s ease;
    }

    .contact-modal-fallback:hover { color: var(--accent); }

    /* ─── By The Numbers ──────────────────────────────────────── */
    .numbers {
        background: #F5F1E9;
        padding: 2rem 3rem 7.5rem;
    }

    .numbers-inner { max-width: 120rem; margin: 0 auto; }

    .numbers-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .numbers-item { display: flex; flex-direction: column; }

    .numbers-value {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: clamp(2.75rem, 5vw, 4rem);
        letter-spacing: -0.03em;
        color: var(--text);
        line-height: 1;
        margin-bottom: 1.125rem;
        font-variant-numeric: tabular-nums;
    }

    .numbers-rule {
        border: none;
        border-top: 1.5px dotted var(--border);
        margin-bottom: 1.25rem;
    }

    .numbers-label {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.0625rem;
        color: var(--text);
        margin-bottom: 0.5rem;
    }

    .numbers-desc {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.6;
    }

    /* ─── Process lead-in — big title that the pinned section overlaps ─── */
    .process-lead {
        position: relative;
        z-index: 0;
        background: #0C0A08;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7rem 2rem 14rem;
        margin: 0 0.75rem;
        border-radius: var(--section-radius) var(--section-radius) 0 0;
        overflow: hidden;
    }

    .process-lead-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(3rem, 9vw, 7rem);
        line-height: 0.95;
        letter-spacing: -0.02em;
        color: #F5F0EA;
        text-align: center;
        text-transform: uppercase;
    }

    /* ─── Working Process (in-frame hero mockup) ─────────────────── */
    .impact {
        position: relative;
        z-index: 1;
        overflow: hidden;
        background: #0C0A08;
        height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 6.5rem 2.5rem 2.5rem;
    }

    /* Pull the pinned section up to overlap and cover the lead-in title as you scroll */
    #process { margin-top: -9rem; }

    /* Full-bleed background video (source added later) */
    .impact-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .impact-scrim {
        position: absolute;
        inset: 0;
        z-index: 1;
        background:
            linear-gradient(180deg, rgba(12,10,8,0.6) 0%, rgba(12,10,8,0.08) 30%, rgba(12,10,8,0.1) 60%, rgba(12,10,8,0.65) 100%);
    }

    /* In-frame mini nav — process steps as a breadcrumb */
    .process-nav {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .process-nav-mark {
        position: absolute;
        left: 0.5rem;
        color: #F97316;
        display: inline-flex;
    }

    .process-nav-steps {
        display: flex;
        align-items: center;
        gap: 2.25rem;
        list-style: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-nav-step {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.6875rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(245,240,234,0.38);
        transition: color 0.5s ease;
    }

    .process-nav-step.active { color: #F97316; }

    /* Center content */
    .process-main {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }


    /* Step stage — panels dock left or right of the glow bar, one revealed at a time */
    .process-step-stage {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 78rem;
        min-height: clamp(260px, 34vh, 340px);
    }

    .process-step-panel {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: min(26rem, 42vw);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .process-step-panel.side-left {
        left: 0;
        text-align: left;
        align-items: flex-start;
    }

    .process-step-panel.side-right {
        right: 0;
        text-align: right;
        align-items: flex-end;
    }

    .process-step-num {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.8125rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        color: #F97316;
        margin-bottom: 1rem;
    }

    .process-step-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2.25rem, 5.5vw, 4rem);
        letter-spacing: -0.02em;
        line-height: 1.08;
        color: #F5F0EA;
        text-transform: uppercase;
        text-wrap: balance;
        margin-bottom: 1.25rem;
    }

    .process-step-desc {
        font-size: 1.0625rem;
        color: rgba(245,240,234,0.6);
        line-height: 1.75;
        max-width: 34rem;
    }

    /* ─── About Hero (Cunnet-style intro block) ─────────────────── */
    .about-hero {
        background: #0E0C09;
        padding: 8rem 3rem;
        position: relative;
    }

    .about-hero-inner {
        max-width: 120rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 15rem 1fr;
        gap: 3.5rem;
        align-items: start;
    }

    /* Rotating circular badge */
    .about-badge {
        width: 13rem;
        height: 13rem;
        position: relative;
        flex-shrink: 0;
    }

    .about-badge-svg { width: 100%; height: 100%; }

    .about-badge-ring {
        animation: about-badge-spin 18s linear infinite;
        transform-origin: 100px 100px;
    }

    @keyframes about-badge-spin { to { transform: rotate(360deg); } }

    @media (prefers-reduced-motion: reduce) { .about-badge-ring { animation: none; } }

    .about-hero-content { max-width: 62rem; }

    .about-hero-headline {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2rem, 3.6vw, 3.25rem);
        font-weight: 600;
        letter-spacing: -0.015em;
        line-height: 1.28;
        color: #F5F0EA;
        text-wrap: balance;
        margin-bottom: 2rem;
    }

    .about-hero-headline .accent { color: #F97316; }

    .about-hero-desc {
        font-size: 1.0625rem;
        color: rgba(245,240,234,0.55);
        line-height: 1.85;
        max-width: 42rem;
        margin-bottom: 2.5rem;
    }

    .about-hero-cta { display: flex; align-items: center; gap: 0.875rem; flex-wrap: wrap; }

    /* The 3 A's — inline dotted-underline terms with a hover/focus tooltip,
       instead of a separate callout block */
    .aaa-term {
        position: relative;
        display: inline-block;
        color: inherit;
        text-decoration: underline;
        text-decoration-style: dotted;
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
        text-decoration-color: rgba(249,115,22,0.7);
        cursor: help;
    }

    .aaa-term-tip {
        position: absolute;
        bottom: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%) translateY(4px);
        width: max-content;
        max-width: 250px;
        background: #17140F;
        border: 1px solid rgba(245,240,234,0.15);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.8125rem;
        font-weight: 400;
        line-height: 1.55;
        color: rgba(245,240,234,0.8);
        text-align: left;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        box-shadow: 0 12px 28px rgba(0,0,0,0.45);
        z-index: 20;
    }

    .aaa-term-tip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #17140F;
    }

    .aaa-term:hover .aaa-term-tip,
    .aaa-term:focus-visible .aaa-term-tip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    @media (max-width: 640px) {
        .aaa-term-tip { max-width: 200px; font-size: 0.75rem; }
    }

    .btn-pill-light {
        display: inline-flex;
        align-items: center;
        gap: 0.625rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
        border-radius: 9999px;
        background: #F5F0EA;
        color: #0A0907;
        transition: opacity 0.2s ease;
    }

    .btn-pill-light:hover { opacity: 0.88; color: #0A0907; }

    .btn-ghost-split {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 0.4375rem 0.4375rem 0.4375rem 1.5rem;
        border-radius: 9999px;
        border: 1px solid rgba(245,240,234,0.2);
        color: #F5F0EA;
        transition: border-color 0.2s ease;
    }

    .btn-ghost-split:hover { border-color: rgba(249,115,22,0.5); color: #F5F0EA; }

    .btn-ghost-split-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #F97316;
        color: #0A0907;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Hidden for now — remove this rule to bring the section back */
    #capability { display: none; }

    /* ─── GEOGym Spotlight ────────────────────────────────────── */
    .spotlight {
        background: #F0ECE4;
        padding: 7.5rem 3rem;
        position: relative;
    }

    .spotlight-inner { max-width: 120rem; margin: 0 auto; }

    .spotlight-intro { max-width: 54rem; margin: 0 auto 4rem; text-align: center; }

    .spotlight-intro .eyebrow { justify-content: center; }

    .spotlight-intro h2 { font-size: clamp(2.25rem, 3.8vw, 3.5rem); margin-bottom: 1.125rem; }

    .spotlight-intro p { font-size: 1.0625rem; color: var(--muted); line-height: 1.8; }

    .section-divider { height: 1px; background: var(--border); margin-bottom: 3.5rem; }

    /* Floating browser-card showcase */
    .spotlight-showcase { margin-bottom: 3rem; }

    .spotlight-frame {
        position: relative;
        border-radius: clamp(20px, 3vw, 36px);
        overflow: hidden;
        aspect-ratio: 16 / 9.4;
        background: #0B0906;
        border: 1px solid rgba(245,240,234,0.08);
        box-shadow: 0 30px 80px rgba(0,0,0,0.28);
        transform: scale(0.7);
    }

    @media (prefers-reduced-motion: reduce) {
        .spotlight-frame { transform: none; }
    }

    .spotlight-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .spotlight-frame-scrim {
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(10,9,7,0.6) 0%, transparent 32%, transparent 68%, rgba(10,9,7,0.2) 100%);
        pointer-events: none;
    }

    .spotlight-visit-btn {
        position: absolute;
        left: 1.75rem;
        bottom: 1.75rem;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.9375rem;
        padding: 0.75rem 1.375rem;
        border-radius: 9999px;
        background: rgba(10,9,7,0.45);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(245,240,234,0.25);
        color: #F5F0EA;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .spotlight-visit-btn:hover {
        background: rgba(249,115,22,0.28);
        border-color: rgba(249,115,22,0.55);
        color: #F5F0EA;
    }

    .spotlight-float-icon {
        position: absolute;
        right: 1.75rem;
        bottom: 1.75rem;
        z-index: 2;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(10,9,7,0.45);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(245,240,234,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #F97316;
    }

    /* Stat row below the frame */
    .spotlight-stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
        text-align: center;
        max-width: 54rem;
        margin: 0 auto 3.5rem;
    }

    .spotlight-stats-row h3 { font-size: 1.25rem; margin-bottom: 0.625rem; }
    .spotlight-stats-row p { font-size: 1rem; color: var(--muted); line-height: 1.75; }
    .spotlight-stats-row .benchmark { justify-content: center; }

    .benchmark {
        display: flex; align-items: baseline; gap: 0.625rem;
        margin-top: 1.25rem; padding-top: 1rem;
        border-top: 1px solid var(--border);
    }

    .benchmark-score {
        font-family: 'Outfit', sans-serif;
        font-size: 1.625rem; font-weight: 800;
        color: var(--accent); letter-spacing: -0.02em;
        font-variant-numeric: tabular-nums;
    }

    .benchmark-vs { font-size: 0.8125rem; color: var(--muted); }

    .spotlight-close {
        border-top: 1px solid var(--border);
        padding-top: 2.75rem;
        display: flex; flex-direction: column; align-items: center;
        justify-content: center; gap: 1.25rem; text-align: center;
    }

    .spotlight-close p { font-size: 1rem; color: var(--muted); }

    /* ─── Testimonials ────────────────────────────────────────── */
    .testimonials {
        background: var(--surface);
        padding: 7.5rem 3rem;
        position: relative;
        overflow: hidden;
    }

    .testimonials::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        opacity: 0.025;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
    }

    .testimonials-inner { max-width: 120rem; margin: 0 auto; position: relative; z-index: 1; }

    /* ─── FAQ ──────────────────────────────────────────────────── */
    .faq { background: var(--bg); padding: 7.5rem 3rem; }

    .faq-inner { max-width: 52rem; margin: 0 auto; }

    .faq-header { text-align: center; margin-bottom: 3rem; }
    .faq-header .eyebrow { justify-content: center; }
    .faq-header h2 { font-size: clamp(2.25rem, 3.8vw, 3.5rem); margin-bottom: 0.875rem; }
    .faq-header p { color: var(--muted); font-size: 1.0625rem; line-height: 1.7; }

    .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

    .faq-item {
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 0 1.5rem;
        background: var(--surface);
        transition: border-color 0.2s ease;
    }

    .faq-item[open] { border-color: rgba(249,115,22,0.35); }

    .faq-item summary {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.25rem;
        padding: 1.25rem 0;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 1.0625rem;
        color: var(--text);
        cursor: pointer;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary .faq-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        transition: transform 0.25s ease;
    }

    .faq-item[open] summary .faq-icon { transform: rotate(45deg); }

    .faq-item p {
        color: var(--muted);
        font-size: 0.9375rem;
        line-height: 1.75;
        padding-bottom: 1.25rem;
        padding-right: 2rem;
    }

    .testi-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: end;
        margin-bottom: 3.5rem;
    }

    .testi-header h2 { font-size: clamp(2.25rem, 3.8vw, 3.5rem); }

    .testi-header p { font-size: 1.0625rem; color: var(--muted); line-height: 1.8; }

    /* Carousel viewport */
    .testi-carousel {
        position: relative;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
    }

    .testi-track {
        display: flex;
        gap: 1.5rem;
        will-change: transform;
    }

    .testi-card {
        flex: 0 0 auto;
        width: min(380px, 82vw);
        background: #100D09;
        border: 1px solid rgba(245,240,234,0.08);
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        transition: border-color 0.25s ease;
    }

    .testi-card:hover { border-color: rgba(249,115,22,0.4); }

    .testi-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .testi-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(249,115,22,0.12);
        border: 1px solid rgba(249,115,22,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9375rem;
        color: #F97316;
        flex-shrink: 0;
    }

    .testi-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4375rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.8125rem;
        color: rgba(245,240,234,0.55);
        white-space: nowrap;
    }

    .testi-badge-icon {
        width: 16px;
        height: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #F97316;
        color: #0A0907;
        border-radius: 4px;
        font-size: 0.625rem;
        font-weight: 800;
        flex-shrink: 0;
    }

    .testi-quote-mark {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 2.75rem;
        color: #F97316;
        line-height: 0.6;
        opacity: 0.55;
        user-select: none;
    }

    .testi-text {
        font-size: 0.9375rem;
        color: rgba(245,240,234,0.72);
        line-height: 1.75;
        flex: 1;
    }

    .testi-author {
        padding-top: 1.25rem;
        border-top: 1px solid rgba(245,240,234,0.08);
    }

    .testi-name {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9375rem;
        color: #F5F0EA;
        letter-spacing: -0.01em;
    }

    .testi-role { font-size: 0.8125rem; color: rgba(245,240,234,0.45); margin-top: 0.2rem; }

    /* Controls — dots + arrows */
    .testi-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 2.5rem;
    }

    .testi-dots { display: flex; align-items: center; gap: 0.5rem; }

    .testi-dot {
        width: 8px;
        height: 8px;
        border-radius: 4px;
        background: var(--border);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s ease, width 0.2s ease;
    }

    .testi-dot.active { background: var(--accent); width: 22px; }

    .testi-arrows { display: flex; gap: 0.75rem; }

    .testi-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg);
        border: 1px solid var(--border);
        color: var(--text);
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .testi-arrow:hover:not(:disabled) {
        background: rgba(249,115,22,0.1);
        border-color: rgba(249,115,22,0.45);
        color: var(--accent);
    }

    .testi-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

    /* ─── Contact ─────────────────────────────────────────────── */
    .contact {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: #100D0A;
    }

    .contact-bg-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    @media (prefers-reduced-motion: reduce) { .contact-bg-video { display: none; } }

    /* Scrim: dark on left so text is readable, lighter on right so video shows */
    .contact-scrim {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg,
                rgba(10,9,7,0.96) 0%,
                rgba(10,9,7,0.80) 42%,
                rgba(10,9,7,0.30) 70%,
                transparent 100%
            ),
            linear-gradient(0deg, rgba(10,9,7,0.6) 0%, transparent 50%);
    }

    .contact-inner {
        position: relative;
        z-index: 1;
        max-width: 90rem;
        margin: 0 auto;
        width: 100%;
        padding: 7.5rem 3rem;
    }

    /* Text block sits on the left over the scrim */
    .contact-text {
        max-width: 32rem;
    }

    .contact-text h2 {
        font-size: clamp(2.5rem, 4.2vw, 3.75rem);
        margin-bottom: 1.25rem;
        color: #F5F0EA;
    }

    .contact-text p {
        font-size: 1.0625rem;
        color: rgba(245,240,234,0.6);
        line-height: 1.8;
        margin-bottom: 2.25rem;
    }

    .contact-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.25rem; }

    .contact-link {
        display: inline-flex; align-items: center; gap: 0.875rem;
        color: rgba(245,240,234,0.75); font-size: 0.9375rem; font-weight: 500;
        transition: color 0.2s ease;
    }

    .contact-link-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(245,240,234,0.16);
        background: rgba(245,240,234,0.04);
        color: rgba(245,240,234,0.6);
        flex-shrink: 0;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .contact-link-icon svg { width: 15px; height: 15px; }

    .contact-link:hover { color: #F5F0EA; }
    .contact-link:hover .contact-link-icon {
        background: rgba(249,115,22,0.16);
        border-color: rgba(249,115,22,0.55);
        color: #F97316;
    }

    /* ─── Footer ──────────────────────────────────────────────── */
    .footer { background: #080604; }

    /* CTA band */
    .footer-cta {
        background: #F97316;
        padding: 4.5rem 3rem;
    }

    .footer-cta-inner {
        max-width: 120rem;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .footer-cta-headline {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 4.5vw, 4rem);
        font-weight: 600;
        color: #0A0907;
        letter-spacing: -0.015em;
        line-height: 1.05;
        margin-bottom: 0.625rem;
    }

    .footer-cta-sub {
        font-size: 1.0625rem;
        color: rgba(10,9,7,0.65);
        line-height: 1.6;
    }

    .footer-cta-form {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        flex-shrink: 0;
    }

    .footer-cta-input {
        font-family: 'Inter', sans-serif;
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
        border-radius: 9999px;
        border: 1.5px solid rgba(10,9,7,0.18);
        background: rgba(255,255,255,0.55);
        color: #0A0907;
        outline: none;
        width: 220px;
        transition: border-color 0.2s, background 0.2s;
    }

    .footer-cta-input::placeholder { color: rgba(10,9,7,0.4); }
    .footer-cta-input:focus { border-color: rgba(10,9,7,0.5); background: rgba(255,255,255,0.75); }

    .footer-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.9375rem;
        padding: 0.875rem 1.625rem;
        border-radius: 9999px;
        background: #0A0907;
        color: #F5F0EA;
        transition: opacity 0.2s, transform 0.18s;
        white-space: nowrap;
        line-height: 1;
    }

    .footer-cta-btn:hover {
        opacity: 0.82;
        color: #F5F0EA;
    }

    /* Main footer grid */
    .footer-main {
        padding: 4.5rem 3rem;
        border-bottom: 1px solid rgba(245,240,234,0.06);
    }

    .footer-main-inner {
        max-width: 120rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.8fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-logo {
        display: inline-block;
        width: 190px;
        margin-bottom: 1.125rem;
    }

    .footer-logo img {
        display: block;
        width: 100%;
        height: auto;
    }

    .footer-brand-desc {
        font-size: 0.9rem;
        color: rgba(245,240,234,0.4);
        line-height: 1.75;
    }

    .footer-col-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 0.875rem;
        color: #F5F0EA;
        letter-spacing: -0.01em;
        margin-bottom: 1.25rem;
    }

    .footer-col-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-col-links a,
    .footer-col-links span {
        font-size: 0.875rem;
        color: rgba(245,240,234,0.4);
        transition: color 0.2s;
        line-height: 1.4;
    }

    .footer-col-links a:hover { color: #F97316; }

    .footer-socials {
        display: flex;
        gap: 0.625rem;
        margin-top: 1.5rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(245,240,234,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(245,240,234,0.45);
        transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .footer-social-icon:hover {
        border-color: #F97316;
        color: #F97316;
        background: rgba(249,115,22,0.08);
    }

    /* Giant brand wordmark */
    .footer-wordmark {
        padding: 1.5rem 2rem 0.5rem;
        overflow: hidden;
        text-align: center;
    }

    .footer-wordmark span {
        display: block;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: clamp(2.25rem, 11.5vw, 12rem);
        line-height: 0.98;
        letter-spacing: -0.02em;
        color: #F5F0EA;
        white-space: normal;
        overflow-wrap: break-word;
    }

    /* Copyright bar */
    .footer-bar { padding: 1.5rem 3rem; }

    .footer-bar-inner {
        max-width: 120rem;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .footer-bar span { font-size: 0.8125rem; color: rgba(245,240,234,0.25); }

    .footer-bar-link { font-size: 0.8125rem; color: rgba(245,240,234,0.4); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(245,240,234,0.3); transition: color 0.2s ease; }
    .footer-bar-link:hover { color: #F97316; }

    /* ─── Scroll reveal ───────────────────────────────────────── */
    .fade-in { opacity: 0; transition: opacity 0.15s ease; }
    .fade-in.in { opacity: 1; }
    @media (prefers-reduced-motion: reduce) { .fade-in { opacity: 1; transition: none; } }

    /* ─── Responsive ──────────────────────────────────────────── */
    @media (max-width: 1100px) {
        .solutions-grid { grid-template-columns: repeat(2, 1fr); }
        .numbers-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
    }

    @media (max-width: 960px) {
        .nav { padding-inline: 1.75rem; }
        .nav.scrolled { padding-inline: 1.75rem; }
        .nav-links { display: none; }
        .nav-burger { display: flex; }
        .nav-logo { width: 130px; }

        /* No hover on touch devices — pin the expand button top-right and
           show it permanently instead of waiting on a hover that won't happen */
        .portfolio-item-expand {
            top: 1rem;
            left: auto;
            right: 1rem;
            width: 40px;
            height: 40px;
            opacity: 1;
            transform: none;
        }

        .mobile-menu {
            display: block;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 199;
            background: rgba(10,9,7,0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid rgba(245,240,234,0.08);
            border-radius: 20px 20px 0 0;
            transform: translateY(100%);
            transition: transform 0.35s ease;
            padding-bottom: env(safe-area-inset-bottom, 0);
        }

        .mobile-menu.open { transform: translateY(0); }

        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            padding: 1.5rem 1.75rem calc(1.5rem + env(safe-area-inset-bottom, 0));
        }

        .mobile-menu-links a {
            display: block;
            padding: 0.875rem 0;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: #F5F0EA;
            border-bottom: 1px solid rgba(245,240,234,0.08);
        }

        .mobile-menu-links li:last-child a { border-bottom: none; }

        .mobile-menu-links a.active { color: #F97316; }

        .hero-layout { padding: 5.5rem 1.75rem 2.5rem; }

        .solutions, .impact, .about-hero, .spotlight, .testimonials, .contact, .portfolio, .numbers {
            padding: 5.5rem 1.75rem;
        }
        .numbers { padding-top: 1.5rem; }
        .impact { padding: 6.5rem 1.5rem 2rem; }

        .solutions-header { margin-bottom: 2.5rem; grid-template-columns: 1fr; gap: 1.25rem; }
        .portfolio-header { grid-template-columns: 1fr; gap: 1.25rem; }
        .solutions-header { grid-template-columns: 1fr; gap: 1.25rem; }
        .section-link-btn { justify-self: start; }
        .spotlight-stats-row { grid-template-columns: 1fr; gap: 2rem; }
        .testi-header { grid-template-columns: 1fr; gap: 1.5rem; }
        .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
        .spotlight-close { flex-direction: column; align-items: flex-start; }

        .about-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
        .about-badge { width: 8rem; height: 8rem; }

        .process-nav-mark { display: none; }
        .process-nav-steps { gap: 1.25rem 1.5rem; }
        .process-glow-row { gap: 1.5rem; }
        .process-flank-num { font-size: 1.375rem; }

        /* Docking panels 42vw-wide off the glow bar only works with real horizontal room —
           below 960px there isn't enough, so panels go full-width and centered instead.
           Matches .side-left/.side-right's specificity (two classes) so it actually wins. */
        /* Grid instead of absolute+top:50% — all panels share one auto-sized cell
           (grid still sizes for opacity:0 siblings, so the cell fits the tallest
           one) and the stage sits naturally in flow after the video, no height
           guessing needed. */
        .process-step-stage {
            display: grid;
            min-height: 0;
        }
        .process-step-panel.side-left,
        .process-step-panel.side-right {
            position: static;
            transform: none;
            grid-row: 1;
            grid-column: 1;
            width: 100%;
            text-align: center;
            align-items: center;
        }

        /* Stack it like Contact instead of overlaying text on the subject: nav on
           top, canvas as its own contained band in the middle (still scrubbing
           with scroll, unchanged), title/description on solid ground at the
           bottom. Uses flex order + a negative-margin overlay for the fade so
           no HTML restructuring is needed. */
        .impact { height: auto; min-height: 100svh; }

        .process-nav { order: 1; margin-bottom: 1.75rem; }

        .impact-video {
            position: relative;
            order: 2;
            inset: auto;
            height: 32vh;
            width: 100%;
            display: block;
            border-radius: 14px;
            box-shadow: 0 24px 32px -14px rgba(0,0,0,0.6);
        }

        .impact-scrim {
            position: relative;
            order: 2;
            inset: auto;
            height: 32vh;
            margin-top: -32vh;
            border-radius: 14px;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(12,10,8,0) 35%, rgba(12,10,8,0.85) 80%, rgba(12,10,8,1) 100%);
        }

        .process-main {
            order: 3;
            flex: 0 0 auto;
            justify-content: flex-start;
            padding-top: 1.75rem;
        }

        .process-step-title { font-size: clamp(1.75rem, 6vw, 2.75rem); }
        .process-step-desc { font-size: 0.9375rem; max-width: 26rem; margin: 0 auto; }
        .process-step-stage { min-height: 0; }

        .hero-email-group { width: 100%; max-width: 22rem; }
        .hero-email-input { flex: 1; width: auto; }
    }

    @media (max-width: 640px) {
        .hero { height: 88vh; min-height: 600px; }

        /* Section headings were clamped to a min font-size too large for
           narrow phones (36-40px), overflowing the viewport width */
        .portfolio-header h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
        .testi-header h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }

        /* The edge mask fade was tuned for wide desktop carousels — at 64px
           it eats a big chunk of a narrow phone card and reads as a heavy
           dark vignette across the card itself, not just a soft fade
           between cards */
        .portfolio-carousel,
        .testi-carousel {
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
        }

        /* Taller cards on mobile — 16/10 reads too short/cramped once the
           glass footer floats over it at phone width */
        .portfolio-item { aspect-ratio: 4 / 3; }

        .solutions-grid { grid-template-columns: 1fr; }
        .numbers-grid { grid-template-columns: 1fr; row-gap: 2.25rem; }
        .footer-main-inner { grid-template-columns: 1fr; gap: 2.25rem; }
        .footer-brand { grid-column: 1 / -1; }
        .footer-cta-inner { flex-direction: column; align-items: flex-start; }
        .footer-cta-input { width: 100%; }
        .footer-cta-form { width: 100%; flex-direction: column; }
        .footer-cta-btn { width: 100%; justify-content: center; }
        .footer-wordmark { display: none; }

        /* 100vh jumps around as mobile browser chrome shows/hides mid-scroll —
           svh holds steady, which matters a lot for a pinned/scrubbed section.
           auto+min lets the stacked nav/video/text layout grow past one screen
           if it needs to, instead of clipping content to a fixed height. */
        .impact { height: auto; min-height: 100svh; }
        .process-lead { padding: 5rem 1.5rem 10rem; }
        .process-nav-steps { row-gap: 0.75rem; }
        .process-step-title { font-size: clamp(1.5rem, 7vw, 2.25rem); }
        .process-step-desc { font-size: 0.875rem; line-height: 1.65; }
        .process-glow-bar { height: clamp(90px, 18vh, 150px); }

        /* Contact: the desktop left-dark/right-video scrim only reads at wide widths —
           on mobile the video becomes its own band up top, text sits below on solid ground */
        .contact {
            flex-direction: column;
            align-items: stretch;
            min-height: auto;
            padding: 0;
        }
        .contact-bg-video {
            position: relative;
            inset: auto;
            height: 30vh;
            width: 100%;
            display: block;
        }
        .contact-scrim {
            position: absolute;
            inset: 0 0 auto 0;
            height: 30vh;
            background: linear-gradient(180deg, rgba(16,13,10,0) 45%, rgba(16,13,10,0.95) 100%);
        }
        .contact-inner { padding: 2rem 1.5rem 2.5rem; }
        .contact-text { max-width: 100%; }

    }

    @media (max-width: 960px) {
        .footer-main { padding-inline: 1.75rem; }
        .footer-cta { padding-inline: 1.75rem; }
        .footer-bar { padding-inline: 1.75rem; }
        .footer-main-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
        .footer-brand { grid-column: 1 / -1; }
    }

    /* Must come after the 960px block so it wins at narrower widths */
    @media (max-width: 640px) {
        .footer { padding-inline: 0; }
        .footer-main { padding-inline: 1.25rem; }
        .footer-cta { padding-inline: 1.25rem; }
        .footer-bar { padding-inline: 1.25rem; }
    }
