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

        :root {
            --bg: #0c0c0e;
            --bg-card: #131316;
            --bg-elevated: #1a1a1e;
            --text: #e8e6e1;
            --text-muted: #6b6762;
            --border: #222226;
            --accent: #c8956c;
            --accent-dim: rgba(200, 149, 108, 0.12);
            --danger: #c45c4a;
            --serif: 'Instrument Serif', Georgia, serif;
            --sans: 'Geist', -apple-system, sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 clamp(1.25rem, 5vw, 2.5rem);
        }

        /* ── Nav ──────────────────────────────────────────── */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1rem 0;
            background: rgba(12, 12, 14, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

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

        .nav-brand {
            font-family: var(--sans);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .nav-brand strong { color: var(--text); font-weight: 600; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text-muted);
            transition: color 0.2s;
        }

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

        .nav-cta {
            padding: 0.5rem 1.25rem;
            background: var(--accent);
            color: var(--bg) !important;
            border-radius: 4px;
            font-weight: 600;
            transition: opacity 0.2s;
        }

        .nav-cta:hover { opacity: 0.85; }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0; right: 0;
                background: var(--bg);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                padding: 1.5rem;
                gap: 1.25rem;
            }
            .nav-links.is-open { display: flex; }
        }

        /* ── Hero ─────────────────────────────────────────── */
        .hero {
            padding: 10rem 0 5rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 100%;
            background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(200, 149, 108, 0.06), transparent);
            pointer-events: none;
        }

        .hero-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-family: var(--serif);
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 400;
            line-height: 1.15;
            max-width: 780px;
            margin-bottom: 1.5rem;
        }

        .hero h1 em { font-style: italic; color: var(--accent); }

        .hero-sub {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 580px;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-pullquote {
            font-family: var(--serif);
            font-size: clamp(1.5rem, 3.5vw, 2.75rem);
            line-height: 1.5;
            color: var(--text);
            margin: 1.75rem 0 0;
            padding: 1.75rem 2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-left: 3px solid var(--accent);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            position: relative;
        }

        .about-pullquote::before {
            content: '\201C';
            font-family: var(--serif);
            font-size: 3.5rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: 0.25rem;
            left: 0.75rem;
            line-height: 1;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.75rem;
            font-family: var(--sans);
            font-size: 0.88rem;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .btn-primary { background: var(--accent); color: var(--bg); }
        .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
        .btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
        .btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

        /* ── Audience tags ────────────────────────────────── */
        .audience {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .audience-tag {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.35rem 0.9rem;
            border: 1px solid var(--border);
            border-radius: 100px;
            color: var(--text-muted);
            transition: all 0.2s;
        }

        .audience-tag:hover { border-color: var(--accent); color: var(--accent); }

        /* ── Orbital SVG ──────────────────────────────────── */
        .orbital-svg {
            width: 100%;
            height: auto;
            display: block;
        }

        .orbital-ring-outer {
            animation: orbital-spin 80s linear infinite;
            transform-origin: 300px 300px;
        }

        .orbital-ring-inner {
            animation: orbital-spin-reverse 120s linear infinite;
            transform-origin: 300px 300px;
        }

        .orbital-center-pulse {
            animation: orbital-pulse 4s ease-in-out infinite;
            transform-origin: 300px 300px;
        }

        @keyframes orbital-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes orbital-spin-reverse {
            from { transform: rotate(360deg); }
            to { transform: rotate(0deg); }
        }

        @keyframes orbital-pulse {
            0%, 100% { opacity: 0.55; transform: scale(1); }
            50%      { opacity: 1;    transform: scale(1.04); }
        }

        @media (prefers-reduced-motion: reduce) {
            .orbital-ring-outer,
            .orbital-ring-inner,
            .orbital-center-pulse { animation: none; }
        }

        /* ── Proof bar ────────────────────────────────────── */
        .proof {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .proof-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .proof-stat { text-align: center; flex: 1 1 0; }

        .proof-stat .num {
            font-family: var(--serif);
            font-size: 2rem;
            color: var(--accent);
            display: block;
        }

        .proof-stat .label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 0.25rem;
        }

        /* ── Who it's for ─────────────────────────────────── */
        .for-who {
            padding: 6rem 0;
        }

        .for-who-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .for-who h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            line-height: 1.25;
            margin-bottom: 2.5rem;
            max-width: 650px;
        }

        .for-who-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        .for-who-card {
            background: var(--bg-card);
            padding: 2rem;
        }

        .for-who-card .buyer {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .for-who-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
        .for-who-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

        /* ── Problem ──────────────────────────────────────── */
        .problem {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .problem-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--danger);
            margin-bottom: 1rem;
        }

        .problem h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            line-height: 1.25;
            max-width: 700px;
            margin-bottom: 2.5rem;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        .problem-card { background: var(--bg-card); padding: 2rem; }

        .problem-card .icon {
            width: 32px; height: 32px;
            color: var(--accent);
            opacity: 0.85;
            margin-bottom: 1rem;
        }

        .problem-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
        .problem-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

        /* ── Framework (RIS) ──────────────────────────────── */
        .framework {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .framework-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 3rem;
        }

        .framework-header .framework-label,
        .framework-header h2,
        .framework-header .framework-intro {
            text-align: center;
        }

        .framework-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .framework h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            line-height: 1.25;
            margin-bottom: 0.75rem;
        }

        .framework-intro {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 0;
            line-height: 1.8;
        }

        .framework-orbital {
            width: 100%;
            max-width: 620px;
            margin: 0 auto 3.5rem;
        }

        .ris-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        @media (max-width: 768px) { .ris-grid { grid-template-columns: 1fr; } }

        .ris-card {
            background: var(--bg-card);
            padding: 2rem;
            position: relative;
        }

        .ris-card::before {
            content: attr(data-num);
            font-family: var(--serif);
            font-size: 3rem;
            color: var(--accent-dim);
            position: absolute;
            top: 0.75rem;
            right: 1.25rem;
            line-height: 1;
        }

        .ris-card .ris-icon {
            width: 28px; height: 28px;
            color: var(--accent);
            opacity: 0.7;
            margin-bottom: 0.75rem;
        }

        .ris-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; padding-right: 2rem; }
        .ris-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

        /* ── Deliverables ─────────────────────────────────── */
        .deliverables {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .deliverables-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .deliverables h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 3rem;
        }

        .del-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        @media (max-width: 640px) { .del-list { grid-template-columns: 1fr; } }

        .del-item { display: flex; gap: 1rem; align-items: flex-start; }

        .del-item .check {
            width: 24px; height: 24px;
            border-radius: 50%;
            background: var(--accent-dim);
            color: var(--accent);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .del-item .check svg { width: 11px; height: 11px; }
        .del-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
        .del-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

        /* ── Pricing ──────────────────────────────────────── */
        .pricing {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .pricing-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .pricing h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 0.75rem;
        }

        .pricing-sub {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            max-width: 550px;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }

        @media (max-width: 640px) { .pricing-cards { grid-template-columns: 1fr; } }

        .price-card { background: var(--bg-card); padding: 2.5rem; }
        .price-card.featured { background: var(--bg-elevated); }

        .price-tier {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        .price-amount {
            font-family: var(--serif);
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 0.25rem;
        }

        .price-scope {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .price-includes { list-style: none; margin-bottom: 2rem; }

        .price-includes li {
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0.4rem 0;
            padding-left: 1.25rem;
            position: relative;
        }

        .price-includes li::before {
            content: '\2192';
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* ── Verticals ────────────────────────────────────── */
        .verticals {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .verticals-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .verticals h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 400;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

        .vert-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        @media (max-width: 768px) { .vert-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 480px) { .vert-grid { grid-template-columns: 1fr; } }

        .vert-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: border-color 0.25s, background 0.25s;
        }

        .vert-card:hover {
            border-color: rgba(200, 149, 108, 0.35);
            background: var(--bg-elevated);
        }

        .vert-icon {
            width: 36px;
            height: 36px;
            color: var(--accent);
            margin: 0 auto 1rem;
        }

        .vert-card h3 {
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        /* ── About ────────────────────────────────────────── */
        .about {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .about-row {
            display: flex;
            gap: 2.5rem;
            align-items: flex-start;
            margin-top: 2rem;
        }

        .about-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
            flex-shrink: 0;
        }

        .about-content p { margin-bottom: 1rem; }
        .about-content p:last-child { margin-bottom: 0; }

        @media (max-width: 768px) {
            .about-row { flex-direction: column; gap: 1.5rem; }
        }

        .about-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .about h2 {
            font-family: var(--serif);
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .about p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }

        .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }

        .about-tag {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.35rem 0.85rem;
            border: 1px solid var(--border);
            border-radius: 100px;
            color: var(--text-muted);
        }

        /* ── CTA ──────────────────────────────────────────── */
        /* ── FAQ ──────────────────────────────────────────── */
        .faq {
            padding: 6rem 0;
            border-top: 1px solid var(--border);
        }

        .faq-label {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .faq h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 3rem;
        }

        .faq-list {
            max-width: 740px;
        }

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

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            color: var(--text);
            font-family: var(--sans);
            font-size: 1rem;
            font-weight: 500;
            text-align: left;
            padding: 1.25rem 2rem 1.25rem 0;
            cursor: pointer;
            position: relative;
            line-height: 1.5;
        }

        .faq-q::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.25rem;
            color: var(--accent);
            transition: transform 0.2s;
        }

        .faq-item.open .faq-q::after {
            content: '\2212';
        }

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

        .faq-item.open .faq-a {
            max-height: 300px;
            padding: 0 0 1.25rem 0;
        }

        .faq-a p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .cta {
            padding: 6rem 0 4rem;
            border-top: 1px solid var(--border);
        }

        .cta-inner {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
        }

        .cta h2 {
            font-family: var(--serif);
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            margin-bottom: 1rem;
        }

        .cta p {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .hero-ctas { justify-content: center; }

        /* ── Footer ───────────────────────────────────────── */
        .footer {
            padding: 3rem 0;
            border-top: 1px solid var(--border);
        }

        .footer-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-left { font-size: 0.8rem; color: var(--text-muted); }

        .footer-links { display: flex; gap: 1.5rem; list-style: none; }
        .footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
        .footer-links a:hover { color: var(--text); }

        /* ── Fade-up ──────────────────────────────────────── */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ── Responsive ───────────────────────────────────── */
        @media (max-width: 768px) {
            .footer-row { flex-direction: column; align-items: flex-start; }
        }

        /* ── Global overflow guard ────────────────────────── */
        html, body { overflow-x: hidden; }
        h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }

        /* ── Tablet (<= 900px) ────────────────────────────── */
        @media (max-width: 900px) {
            .ris-grid { grid-template-columns: 1fr 1fr; }
            .vert-grid { grid-template-columns: 1fr 1fr; }
            .framework-orbital { max-width: 520px; }
        }

        /* ── Mobile (<= 768px) ────────────────────────────── */
        @media (max-width: 768px) {
            .hero { padding: 7rem 0 3.5rem; }
            .for-who, .problem, .framework, .deliverables,
            .pricing, .verticals, .about { padding: 3.75rem 0; }
            .cta { padding: 3.75rem 0 2.5rem; }
            .proof { padding: 2rem 0; }
            .proof-row { gap: 1.25rem; }
            .proof-stat { flex: 1 1 40%; }
            .proof-stat .num { font-size: 1.6rem; }

            .hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
            .hero-sub { font-size: 1rem; }

            .for-who-grid { grid-template-columns: 1fr; }
            .problem-grid { grid-template-columns: 1fr; }
            .ris-grid { grid-template-columns: 1fr; }
            .vert-grid { grid-template-columns: 1fr; }
            .pricing-cards { grid-template-columns: 1fr; }

            .btn { padding: 0.9rem 1.5rem; min-height: 44px; }
            .nav-links a { padding: 0.5rem 0; min-height: 44px; display: flex; align-items: center; }

            /* AI vs Operator: override inline styles */
            .ai-vs-grid { grid-template-columns: 1fr !important; }
            .ai-vs-grid > div { padding: 1.75rem !important; }
            .ai-vs { padding: 3.75rem 0 !important; }
            .ai-vs h2 { font-size: clamp(1.6rem, 6vw, 2rem) !important; }

            .price-card { padding: 1.75rem !important; }
            .framework-header { margin-bottom: 2rem; }
            .framework-orbital { max-width: 420px; margin-bottom: 2rem; }
        }

        /* ── Small mobile (<= 640px) ──────────────────────── */
        @media (max-width: 640px) {
            /* Orbital: hide external label boxes, crop whitespace */
            .orbital-labels { display: none; }
            .framework-orbital {
                max-width: 300px;
                margin: 0 auto 2rem;
                overflow: hidden;
                aspect-ratio: 1 / 1;
            }
            .orbital-svg {
                transform: scale(1.55);
                transform-origin: center center;
            }

            .container { padding: 0 1.25rem; }
            .hero h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); }
            .price-amount { font-size: 2rem; }
            .hero-ctas .btn { width: 100%; justify-content: center; }
        }

        /* ── Very small (<= 380px) ────────────────────────── */
        @media (max-width: 380px) {
            .proof-stat { flex: 1 1 100%; }
            .framework-orbital { max-width: 260px; }
        }

        /* ── Reduced Motion ───────────────────────────────── */
        @media (prefers-reduced-motion: reduce) {
            .fade-up { opacity: 1; transform: none; transition: none; }
            .ring-1 { animation: none; }
        }
