  :root {
            --ink: #f2f2f0;
            --ink-2: #888884;
            --ink-3: #444440;
            --surface: #0a0a09;
            --raised: #111110;
            --border: #1e1e1c;
            --border-2: #2a2a28;
            --gold: #ca8a04;
            --gold-dim: rgba(202, 138, 4, .12);
            --r: 5px;
        }

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

        [x-cloak] {
            display: none !important;
        }

        html {
            color-scheme: dark;
        }

        body {
            font-family: 'Geist', system-ui, sans-serif;
            background: var(--surface);
            color: var(--ink);
            font-size: 15px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        :focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
        }

        /* ── NAV ── */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 60px;
            border-bottom: 1px solid var(--border);
            background: rgba(10, 10, 9, .85);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            padding: 0 24px;
        }

        .nav-inner {
            max-width: 1120px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--ink);
            font-family: 'Geist Mono', monospace;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: .02em;
            flex-shrink: 0;
        }

        .logo-mark {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            position: relative;
        }

        .logo-mark::before {
            content: '';
            position: absolute;
            inset: 3px;
            background: var(--gold);
            transform: rotate(45deg);
            border-radius: 2px;
        }

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

        .nav-link {
            padding: 6px 12px;
            border-radius: var(--r);
            font-size: 13px;
            color: var(--ink-2);
            text-decoration: none;
            transition: color .12s, background .12s;
        }

        .nav-link:hover {
            color: var(--ink);
            background: rgba(255, 255, 255, .06);
        }

        .nav-cta {
            padding: 7px 14px;
            border-radius: var(--r);
            border: 1px solid var(--border-2);
            font-size: 13px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            transition: border-color .12s, background .12s;
        }

        .nav-cta:hover {
            border-color: var(--gold);
            background: var(--gold-dim);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 24px 80px;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .hero-inner {
            max-width: 1120px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-eyebrow {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        .hero-h1 {
            font-size: clamp(2.4rem, 6vw, 5rem);
            font-weight: 600;
            letter-spacing: -.03em;
            line-height: 1.08;
            color: var(--ink);
            margin-bottom: 28px;
            max-width: 840px;
        }

        .hero-sub {
            font-size: clamp(15px, 1.8vw, 18px);
            color: var(--ink-2);
            font-weight: 300;
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 48px;
        }

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

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--r);
            background: var(--ink);
            color: var(--surface);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: opacity .12s;
        }

        .btn-primary:hover {
            opacity: .88;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--r);
            border: 1px solid var(--border-2);
            font-size: 13px;
            font-weight: 500;
            color: var(--ink);
            text-decoration: none;
            transition: border-color .12s, background .12s;
        }

        .btn-secondary:hover {
            border-color: var(--ink-2);
            background: rgba(255, 255, 255, .04);
        }

        /* hero rule / scroll cue */
        .hero-rule {
            position: absolute;
            bottom: 32px;
            left: 24px;
            right: 24px;
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-n {
            font-family: 'Geist Mono', monospace;
            font-size: 22px;
            font-weight: 500;
            color: var(--ink);
            display: block;
        }

        .hero-stat-l {
            font-size: 11px;
            color: var(--ink-3);
            letter-spacing: .06em;
            text-transform: uppercase;
            font-family: 'Geist Mono', monospace;
        }

        /* ── SECTION WRAPPER ── */
        .section {
            padding: 96px 24px;
            border-bottom: 1px solid var(--border);
        }

        .section-inner {
            max-width: 1120px;
            margin: 0 auto;
        }

        .section-label {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--ink-3);
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .section-h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 600;
            letter-spacing: -.025em;
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 16px;
        }

        .section-body {
            font-size: 15px;
            color: var(--ink-2);
            line-height: 1.75;
            font-weight: 300;
            max-width: 600px;
        }

        /* ── PORTFOLIO GRID ── */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }

        .portfolio-card {
            background: var(--raised);
            padding: 28px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            transition: background .15s;
            position: relative;
        }

        .portfolio-card:hover {
            background: var(--border-2);
        }

        .portfolio-card:hover .card-arrow {
            opacity: 1;
            transform: translate(2px, -2px);
        }

        .card-domain {
            font-family: 'Geist Mono', monospace;
            font-size: 16px;
            font-weight: 500;
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .card-arrow {
            opacity: 0;
            transition: opacity .15s, transform .15s;
            color: var(--ink-3);
        }

        .card-desc {
            font-size: 13px;
            color: var(--ink-2);
            line-height: 1.6;
        }

        .card-tag {
            display: inline-flex;
            align-items: center;
            height: 20px;
            padding: 0 7px;
            border-radius: 3px;
            border: 1px solid var(--border-2);
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            color: var(--ink-3);
            align-self: flex-start;
            margin-top: auto;
        }

        /* ── ETHOS LIST ── */
        .ethos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .ethos-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ethos-num {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            color: var(--gold);
            letter-spacing: .06em;
        }

        .ethos-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
        }

        .ethos-body {
            font-size: 14px;
            color: var(--ink-2);
            line-height: 1.7;
            font-weight: 300;
        }

        /* ── LEADERSHIP ── */
        .quote-block {
            border-left: 2px solid var(--gold);
            padding: 4px 0 4px 24px;
            margin-bottom: 32px;
        }

        .quote-text {
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 400;
            color: var(--ink);
            line-height: 1.6;
            font-style: italic;
        }

        /* ── CREDENTIALS ROW ── */
        .cred-row {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            border-top: 1px solid var(--border);
            padding-top: 32px;
            margin-top: 32px;
        }

        .cred-item {}

        .cred-val {
            font-family: 'Geist Mono', monospace;
            font-size: 14px;
            font-weight: 500;
            color: var(--ink);
            display: block;
            margin-bottom: 3px;
        }

        .cred-label {
            font-size: 11px;
            color: var(--ink-3);
            letter-spacing: .06em;
            text-transform: uppercase;
        }

        /* ── IN PRESS ── */
        .press-card {
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 28px 32px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: var(--raised);
            max-width: 600px;
        }

        .press-badge {
            font-family: 'Geist Mono', monospace;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .press-title {
            font-size: 17px;
            font-weight: 500;
            color: var(--ink);
            line-height: 1.4;
        }

        .press-desc {
            font-size: 13px;
            color: var(--ink-2);
            line-height: 1.65;
        }

        /* ── FOOTER ── */
        .footer {
            padding: 48px 24px;
            background: var(--raised);
        }

        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-tagline {
            font-size: 13px;
            color: var(--ink-3);
            max-width: 220px;
            line-height: 1.6;
        }

        .footer-cols {
            display: flex;
            gap: 48px;
        }

        .footer-col-h {
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--ink-3);
            margin-bottom: 16px;
        }

        .footer-col-link {
            display: block;
            font-size: 13px;
            color: var(--ink-2);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color .12s;
        }

        .footer-col-link:hover {
            color: var(--ink);
        }

        .footer-bottom {
            max-width: 1120px;
            margin: 32px auto 0;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-family: 'Geist Mono', monospace;
            font-size: 11px;
            color: var(--ink-3);
            letter-spacing: .06em;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        /* ── MOBILE ── */
        @media (max-width:767px) {

            .nav-links,
            .nav-cta {
                display: none;
            }

            .mobile-menu-btn {
                display: flex !important;
            }

            .hero-stats {
                display: none;
            }
        }

        .mobile-menu-btn {
            display: none;
            width: 36px;
            height: 36px;
            border-radius: var(--r);
            border: 1px solid var(--border-2);
            background: transparent;
            color: var(--ink-2);
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .mobile-menu {
            border-bottom: 1px solid var(--border);
            background: rgba(10, 10, 9, .97);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-link {
            display: block;
            padding: 10px 12px;
            border-radius: var(--r);
            font-size: 15px;
            font-weight: 500;
            color: var(--ink-2);
            text-decoration: none;
            transition: background .1s, color .1s;
        }

        .mobile-link:hover {
            background: rgba(255, 255, 255, .06);
            color: var(--ink);
        }