        :root {
            --bg: #0a0a0a;
            --surface: #141414;
            --surface-2: #1c1c1c;
            --white: #ffffff;
            --text: #f2f2f0;
            --text-muted: #9a9a97;
            --border: rgba(255,255,255,0.1);

            --blue: #2E5EFF;
            --pink: #FF2D78;
            --yellow: #FFD400;

            --on-blue: #ffffff;
            --on-pink: #ffffff;
            --on-yellow: #0a0a0a;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
            overflow-x: hidden;
        }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
        .section { padding: 120px 0; }
        .section-narrow { padding: 80px 0; }
        section.on-white { background: var(--white); color: #111; }
        section.on-white .text-muted { color: #6b6b68; }
        section.on-white .card { background: #f6f6f4; border-color: rgba(0,0,0,0.08); }

        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
        h2 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); margin-bottom: 1.25rem; }
        h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: 1rem; }
        p { margin-bottom: 1.5rem; }
        .text-muted { color: var(--text-muted); }
        .body-large { font-size: 1.2rem; line-height: 1.7; max-width: 640px; }
        .body-small { font-size: 0.875rem; line-height: 1.6; }
        .measure { max-width: 68ch; }

        .eyebrow {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
            color: var(--text-muted); margin-bottom: 20px;
        }
        .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
        .eyebrow.on-white { color: #6b6b68; }

        nav {
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            background: rgba(8,8,8,0.97);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
        .logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); text-decoration: none; }
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: var(--white); }
        .nav-right { display: flex; align-items: center; gap: 16px; }

        .hamburger {
            display: none; flex-direction: column; justify-content: center; gap: 5px;
            width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0;
        }
        .hamburger span { width: 22px; height: 2px; background: var(--white); transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.35s; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none; flex-direction: column;
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s cubic-bezier(.2,.8,.2,1);
            border-top: 1px solid var(--border);
        }
        .mobile-menu.open { max-height: 400px; }
        .mobile-menu a { color: var(--text); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
        .mobile-menu .nav-cta { display: inline-flex; margin-top: 16px; align-self: flex-start; }
        .nav-cta {
            display: inline-flex; align-items: center; justify-content: center;
            background: var(--blue);
            color: var(--on-blue);
            padding: 11px 24px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            font-family: 'Geist', 'Space Grotesk', sans-serif;
            position: relative; overflow: hidden;
        }
        .nav-cta:active { transform: scale(0.94); transition: transform 0.09s ease; }

        /* Hero */
        .hero { padding: 90px 0 100px; position: relative; }
        .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
        .hero-text { max-width: 620px; }
        .hero h1 { margin-bottom: 24px; }
        .hero h1 .hl { color: var(--blue); }

        .hero-side {
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px;
            background: var(--surface);
        }
        .hero-side .stat { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--yellow); }
        .hero-side .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 20px; }
        .hero-links { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
        .hero-links a {
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 0; border-top: 1px solid var(--border);
            color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 500;
            transition: color 0.3s;
        }
        .hero-links a:hover { color: var(--yellow); }
        .hero-links a:first-child { border-top: none; }

        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 15px 30px; border: none; border-radius: 999px;
            font-size: 0.98rem; font-weight: 600; text-decoration: none; cursor: pointer;
            transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
            font-family: 'Geist', 'Space Grotesk', sans-serif;
            position: relative; overflow: hidden;
        }
        .btn:active { transform: scale(0.95); transition: transform 0.09s ease; }
        .btn-primary { background: var(--blue); color: var(--on-blue); }
        .btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
        .btn-outline:hover { border-color: var(--text); }
        .on-white .btn-outline { color: #111; border-color: rgba(0,0,0,0.15); }
        .cta-block .btn-primary { background: #0a0a0a; }

        /* Scroll/roll text on hover */
        .btn-text-wrap { overflow: hidden; position: relative; display: inline-block; height: 1.2em; }
        .btn-text-stack { display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
        .btn:hover .btn-text-stack, .nav-cta:hover .btn-text-stack { transform: translateY(-1.2em); }
        .btn-text-stack span { height: 1.2em; line-height: 1.2em; white-space: nowrap; }

        /* Ripple on tap */
        .ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-out 0.6s ease-out; background: rgba(255,255,255,0.4); pointer-events: none; }
        .on-white .ripple, .cta-block .ripple { background: rgba(0,0,0,0.15); }
        @keyframes ripple-out { to { transform: scale(2.5); opacity: 0; } }

        /* Numbered accordion (services + FAQ) */
        .num-list { border-top: 1px solid var(--border); margin-top: 48px; }
        .on-white .num-list { border-color: rgba(0,0,0,0.1); }
        .num-row { border-bottom: 1px solid var(--border); }
        .on-white .num-row { border-color: rgba(0,0,0,0.1); }
        .num-row-head {
            display: grid; grid-template-columns: 56px 1fr 32px; align-items: center; gap: 24px;
            padding: 26px 0; cursor: pointer; user-select: none;
        }
        .num-row-head .idx { font-family: 'Space Grotesk', sans-serif; color: var(--text-muted); font-size: 0.95rem; }
        .num-row-head h3 { margin: 0; transition: color 0.3s; }
        .num-row.active .num-row-head h3 { color: var(--blue); }
        .num-row-head .toggle { font-size: 1.4rem; color: var(--text-muted); line-height: 1; transition: transform 0.3s; }
        .num-row.active .num-row-head .toggle { transform: rotate(45deg); color: var(--blue); }
        .num-row-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .num-row.active .num-row-body { max-height: 320px; }
        .num-row-body-inner { padding: 0 0 28px 80px; display: flex; gap: 32px; flex-wrap: wrap; }
        .num-row-body p { max-width: 480px; margin-bottom: 0; }
        .num-row-body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; }
        .num-row-body ul li::before { content: "✓ "; color: var(--yellow); font-weight: 700; }

        /* Work grid */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
        .card {
            background: var(--surface); border-radius: 16px; padding: 28px;
            border: 1px solid var(--border);
            transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s;
        }
        .card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.25); }
        .on-white .card:hover { border-color: rgba(0,0,0,0.2); }
        .card-img { border-radius: 10px; height: 190px; margin: -28px -28px 20px; overflow: hidden; background: var(--surface-2); }
        .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .tag {
            display: inline-flex; font-size: 0.75rem; font-weight: 600; padding: 5px 12px;
            border-radius: 999px; margin-bottom: 14px;
        }
        .tag-blue { background: rgba(46,94,255,0.15); color: #9db4ff; }
        .tag-pink { background: rgba(255,45,120,0.15); color: #ff9dbf; }
        .tag-yellow { background: rgba(255,212,0,0.15); color: #f0cf4a; }
        .card-link { display: inline-block; margin-top: 14px; color: var(--blue); font-weight: 600; text-decoration: none; font-size: 0.92rem; }
        .card-link:hover { color: var(--yellow); }
        .chip-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
        .chip { font-size: 0.78rem; background: var(--surface-2); padding: 4px 10px; border-radius: 999px; color: var(--text-muted); }
        .on-white .chip { background: rgba(0,0,0,0.06); }

        /* Work list */
        .work-list { border-top: 1px solid rgba(0,0,0,0.1); margin-top: 48px; }
        .work-row {
            display: grid; grid-template-columns: 48px 130px 1fr; align-items: center; gap: 28px;
            padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.1);
            text-decoration: none; color: inherit;
            transition: padding-left 0.35s cubic-bezier(.2,.8,.2,1);
        }
        .work-row:hover { padding-left: 12px; }
        .work-row:active { transform: scale(0.99); transition: transform 0.09s ease; }
        .work-row .idx { font-family: 'Space Grotesk', sans-serif; color: #9a9a97; font-size: 0.95rem; align-self: start; padding-top: 6px; }
        .work-row .thumb {
            position: relative; width: 130px; height: 130px; overflow: hidden; background: #eee;
            z-index: 1;
            transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
        }
        .work-row .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .work-row:hover .thumb { transform: scale(1.22); box-shadow: 0 26px 50px rgba(0,0,0,0.32); }
        .work-row .info { padding: 4px 0; }
        .work-row .info h3 { margin: 0 0 6px; transition: color 0.3s; }
        .work-row:hover .info h3 { color: var(--blue); }
        .work-row .info p { margin: 0; font-size: 0.9rem; }
        .work-row.featured .info h3::after { content: "The real product"; display: inline-block; margin-left: 10px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: rgba(46,94,255,0.12); color: var(--blue); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }
        @media (max-width: 640px) {
            .work-row { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
            .work-row .idx { order: -1; padding-top: 0; }
            .work-row .thumb { order: 0; width: 100%; height: auto; aspect-ratio: 1 / 1; }
            .work-row .info { order: 1; padding: 0; }
            .work-row:hover .thumb { transform: scale(1.05); }
        }

        /* Founding client */
        .founding-block {
            background: linear-gradient(135deg, rgba(46,94,255,0.12), rgba(255,45,120,0.10));
            border: 1px solid var(--border); border-radius: 20px; padding: 48px;
        }
        .founding-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
        .founding-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
        .founding-list li { display: flex; gap: 12px; align-items: flex-start; }
        .founding-list li .n { font-family: 'Space Grotesk', sans-serif; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
        .founder-price-box {
            display: inline-flex; flex-direction: column; gap: 6px;
            background: rgba(255,212,0,0.08); border: 1px solid rgba(255,212,0,0.3);
            border-radius: 14px; padding: 18px 22px; margin-bottom: 24px;
        }
        .founder-price-row { display: flex; align-items: baseline; gap: 12px; }
        .founder-price-now { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--yellow); }
        .founder-price-was { font-size: 1.05rem; color: var(--text-muted); text-decoration: line-through; }
        .founder-price-note { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
        .spots-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; }
        .spots-box .big { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: var(--pink); }
        @media (max-width: 900px) { .founding-grid { grid-template-columns: 1fr; } }

        /* Pricing */
        .price-card { text-align: left; position: relative; display: flex; flex-direction: column; height: 100%; }
        .price-card.featured { border-color: transparent; }
        @property --border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }
        .price-card.featured::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            padding: 1.5px;
            background: conic-gradient(from var(--border-angle), transparent 0%, transparent 55%, var(--blue) 72%, #9db4ff 78%, var(--blue) 84%, transparent 100%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: rotate-border-angle 5s linear infinite;
            pointer-events: none;
        }
        @keyframes rotate-border-angle {
            to { --border-angle: 360deg; }
        }
        .price-card .badge {
            position: absolute; top: -12px; left: 28px; background: var(--blue); color: white;
            padding: 4px 14px; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
        }
        .price-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 700; margin: 16px 0 4px; }
        .price-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
        .price-list-label { font-size: 0.8rem; font-weight: 600; color: var(--blue); margin: 20px 0 12px; padding-top: 20px; border-top: 1px solid var(--border); }
        .price-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
        .price-list-label + .price-list { padding-top: 0; border-top: none; margin-top: -10px; }
        .price-list li::before { content: "✓ "; color: var(--yellow); font-weight: 700; }
        .price-retainer { font-size: 0.88rem; color: var(--text-muted); padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }

        /* Footer */
        footer { background: #050505; color: #8a8a87; padding: 64px 0 32px; border-top: 1px solid var(--border); }
        footer h4 { color: white; font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; }
        .footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #b5b5b2; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
        .footer-links a:hover { color: white; }

        .cta-block {
            background: var(--yellow); color: var(--on-yellow);
            border-radius: 24px; padding: 64px; text-align: center;
        }
        .cta-block h2 { color: var(--on-yellow); }
        .cta-block .btn-primary { background: #0a0a0a; color: white; }

        /* Modal */
        .modal-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
            z-index: 200; align-items: center; justify-content: center;
        }
        .modal { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; max-width: 520px; width: 90%; max-height: 90vh; overflow-y: auto; padding: 40px; position: relative; color: var(--text); }
        .modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
        .form-group { margin-bottom: 20px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
        input, select, textarea {
            width: 100%; padding: 12px 16px; border: 1px solid var(--border);
            border-radius: 10px; font-size: 0.95rem; font-family: inherit;
            background: var(--surface-2); color: var(--text);
        }
        input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,94,255,0.2); }
        textarea { min-height: 100px; resize: vertical; }

        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; }
            .section { padding: 72px 0; }
            .container { padding: 0 20px; }
            .nav-links { display: none; }
            .nav-right .nav-cta { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: flex; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .num-row-body-inner { padding-left: 0; }
            .cta-block { padding: 40px 28px; }
        }

        .fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

/* Moriah Labs badge lives on demo sites only, not needed on the agency's own site */

/* GLOBAL: never default browser formatting on any element */
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
