        :root {
            --bg: #F5F7FA;
            --bg-warm: #ECF0F7;
            --bg-card: #FFFFFF;
            --ink: #0F1B2D;
            --ink-secondary: #3D526B;
            --ink-tertiary: #7A8FA8;
            --navy: #1A2D54;
            --navy-deep: #0E1929;
            --navy-soft: #243D5E;
            --gold: #B8914A;
            --gold-light: #D4AD6A;
            --gold-pale: #FBF4E8;
            --accent: #B8914A;
            --accent-light: #D4AD6A;
            --accent-pale: #FBF4E8;
            --accent-glow: rgba(184, 145, 74, 0.12);
            --gold-glow: rgba(184, 145, 74, 0.15);
            --border: rgba(26, 45, 84, 0.09);
            --border-strong: rgba(26, 45, 84, 0.18);
            --shadow-sm: 0 1px 3px rgba(15,27,45,0.05), 0 4px 12px rgba(15,27,45,0.04);
            --shadow-md: 0 4px 16px rgba(15,27,45,0.08), 0 12px 40px rgba(15,27,45,0.05);
            --shadow-lg: 0 8px 30px rgba(15,27,45,0.11), 0 20px 60px rgba(15,27,45,0.07);
            --shadow-hover: 0 12px 40px rgba(15,27,45,0.14), 0 30px 80px rgba(15,27,45,0.09);
            --shadow-gold: 0 8px 24px rgba(184, 145, 74, 0.28);
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --max-w: 1200px;
            --nav-h: 72px;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

        body {
            font-family: 'Satoshi', -apple-system, sans-serif;
            color: var(--ink);
            background: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ── Grain overlay ── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }

        img { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button { border: 0; background: transparent; cursor: pointer; font: inherit; }
        input, textarea { font: inherit; width: 100%; }

        .wrap {
            width: min(var(--max-w), calc(100% - 40px));
            margin-inline: auto;
        }

        /* ═══════════════════════════════════════
           NAVBAR — morphs to pill on scroll
        ═══════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            transition: padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .navbar.scrolled {
            padding: 12px 0;
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 20px 0 14px;
            height: var(--nav-h);
            background: rgba(245, 247, 250, 0.82);
            border: 1px solid transparent;
            border-radius: 22px;
            backdrop-filter: blur(20px) saturate(140%);
            -webkit-backdrop-filter: blur(20px) saturate(140%);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            width: min(var(--max-w), calc(100% - 40px));
        }

        .navbar.scrolled .navbar-inner {
            max-width: 880px;
            height: 60px;
            padding: 0 8px 0 14px;
            background: rgba(255, 255, 255, 0.88);
            border-color: var(--border);
            border-radius: 999px;
            box-shadow: 0 6px 28px rgba(11,37,72,0.08), 0 1px 4px rgba(11,37,72,0.05);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            transition: transform 0.4s ease;
            height: 100%;
        }

        .nav-brand:hover { transform: scale(1.02); }

        .nav-brand img {
            height: 6vh;
            width: auto;
            display: block;
            transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .navbar.scrolled .nav-brand img {
            height: 5vh;
        }

        .brand-wordmark {
            font-family: 'Instrument Serif', Georgia, serif;
            font-size: 1.7rem;
            font-weight: 400;
            letter-spacing: -0.04em;
            line-height: 1;
            background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            display: inline-block;
            user-select: none;
        }
        .navbar.scrolled .brand-wordmark { font-size: 1.45rem; }
        .footer-wordmark {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 10px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links > li {
            list-style: none;
            position: relative;
        }

        .nav-links a,
        .nav-links button.nav-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 14px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--ink-secondary);
            border-radius: 999px;
            transition: all 0.25s ease;
            background: transparent;
            cursor: pointer;
            border: 0;
            font-family: inherit;
        }

        .nav-links a:hover,
        .nav-links button.nav-trigger:hover,
        .nav-links li.is-open > button.nav-trigger {
            color: var(--navy);
            background: rgba(26, 45, 84, 0.06);
        }

        .nav-trigger .chev {
            width: 10px;
            height: 10px;
            transition: transform 0.3s ease;
        }

        .nav-links li.is-open .chev {
            transform: rotate(180deg);
        }

        .navbar.scrolled .nav-links a,
        .navbar.scrolled .nav-links button.nav-trigger {
            padding: 7px 12px;
            font-size: 0.84rem;
        }

        /* ── Mega menu dropdown ── */
        .mega-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            width: min(880px, 92vw);
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 22px;
            box-shadow: 0 24px 60px rgba(15,27,45,0.16), 0 4px 16px rgba(15,27,45,0.08);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 110;
        }

        .nav-links li.is-open > .mega-menu {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .mega-menu::before {
            content: '';
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 14px;
            height: 14px;
            background: rgba(255,255,255,0.96);
            border-left: 1px solid var(--border);
            border-top: 1px solid var(--border);
        }

        .mega-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }

        .mega-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 14px;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .mega-item:hover {
            background: var(--bg);
            transform: translateY(-1px);
        }

        .mega-thumb {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-warm);
            border: 1px solid var(--border);
        }

        .mega-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mega-text { min-width: 0; }

        .mega-text .mega-title {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--navy);
            line-height: 1.3;
            margin-bottom: 2px;
        }

        .mega-text .mega-sub {
            display: block;
            font-size: 0.74rem;
            color: var(--ink-tertiary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mega-foot {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.84rem;
            color: var(--ink-secondary);
        }

        .mega-foot a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold);
            font-weight: 600;
        }

        .mega-foot a:hover { color: var(--navy); }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            height: 42px;
            padding: 0 22px;
            background: var(--navy);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 600;
            border-radius: 999px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            border: 1px solid var(--navy);
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent, var(--gold-glow), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .nav-cta:hover::before { transform: translateX(100%); }

        .nav-cta:hover {
            background: var(--navy-deep);
            transform: translateY(-1px);
            box-shadow: 0 8px 22px rgba(184, 145, 74, 0.28), 0 0 0 1px var(--gold);
        }

        .navbar.scrolled .nav-cta {
            height: 38px;
            padding: 0 18px;
            font-size: 0.84rem;
        }

        /* ═══════════════════════════════════════
           TYPOGRAPHY
        ═══════════════════════════════════════ */
        h1, h2, h3, .display {
            font-family: 'Instrument Serif', Georgia, serif;
            font-weight: 400;
            letter-spacing: -0.03em;
            line-height: 1.05;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .eyebrow::before {
            content: '';
            width: 24px;
            height: 1.5px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 2px;
        }

        /* ═══════════════════════════════════════
           BUTTONS
        ═══════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 52px;
            padding: 0 28px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--navy-deep);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(184, 145, 74, 0.32), 0 0 0 1px var(--gold);
        }

        .btn-secondary {
            background: transparent;
            color: var(--ink);
            border: 1.5px solid var(--border-strong);
        }

        .btn-secondary:hover {
            border-color: var(--ink);
            transform: translateY(-2px);
        }

        .btn-arrow::after {
            content: '→';
            transition: transform 0.25s ease;
        }

        .btn-arrow:hover::after {
            transform: translateX(3px);
        }

        /* ═══════════════════════════════════════
           HERO
        ═══════════════════════════════════════ */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            background:
                radial-gradient(ellipse 70% 55% at 75% 18%, rgba(184, 145, 74, 0.07), transparent 60%),
                radial-gradient(ellipse 60% 50% at 18% 82%, rgba(184, 145, 74, 0.08), transparent 60%),
                linear-gradient(180deg, rgba(255,255,255,0.4), transparent 40%);
        }

        .hero-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0.85;
        }

        /* Soft mask so the 3D scene fades into the page edges */
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, var(--bg) 100%);
        }

        .hero .wrap {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .hero h1 {
            font-size: clamp(3.2rem, 6vw, 5.4rem);
            line-height: 1.02;
            margin-bottom: 24px;
            color: var(--navy);
        }

        .hero h1 em {
            font-style: italic;
            background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero h1 em::after {
            content: '';
            position: absolute;
            left: 4%;
            right: 4%;
            bottom: -2px;
            height: 6px;
            background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
            border-radius: 4px;
            filter: blur(2px);
        }

        .hero-sub {
            font-size: 1.12rem;
            color: var(--ink-secondary);
            max-width: 50ch;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 36px;
        }

        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 40px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 0.84rem;
            color: var(--ink-secondary);
            font-weight: 500;
        }

        .hero-pill .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

        .hero-visual {
            position: relative;
        }

        .hero-card-main {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            background: var(--bg-card);
            aspect-ratio: 4/5;
        }

        .hero-card-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-card-main .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
        }

        .hero-card-main .overlay-text {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            color: #fff;
        }

        .hero-card-main .overlay-text h3 {
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

        .hero-card-main .overlay-text p {
            font-size: 0.84rem;
            opacity: 0.85;
        }

        .hero-float {
            position: absolute;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-md);
            font-size: 0.88rem;
        }

        .hero-float--top {
            top: -12px;
            right: -20px;
            animation: float-y 4s ease-in-out infinite;
        }

        .hero-float--bottom {
            bottom: 40px;
            left: -30px;
            animation: float-y 5s ease-in-out infinite 1s;
        }

        .hero-float .num {
            font-family: 'Instrument Serif', serif;
            font-size: 2rem;
            line-height: 1;
            background: linear-gradient(135deg, var(--navy) 0%, var(--gold) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-float .label {
            font-size: 0.78rem;
            color: var(--ink-tertiary);
            margin-top: 2px;
        }

        @keyframes float-y {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ═══════════════════════════════════════
           TICKER
        ═══════════════════════════════════════ */
        .ticker {
            padding: 20px 0;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--bg-card);
        }

        .ticker-track {
            display: flex;
            gap: 48px;
            width: max-content;
            animation: marquee 30s linear infinite;
        }

        .ticker-track span {
            display: inline-flex;
            align-items: center;
            gap: 48px;
            font-size: 0.82rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--ink-tertiary);
            white-space: nowrap;
        }

        .ticker-track span::after {
            content: '✦';
            color: var(--gold);
            font-size: 0.7rem;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ═══════════════════════════════════════
           SECTIONS — shared
        ═══════════════════════════════════════ */
        .section {
            padding: 120px 0;
        }

        .section-head {
            max-width: 680px;
            margin-bottom: 56px;
        }

        .section-head h2 {
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            margin-bottom: 16px;
        }

        .section-head p {
            font-size: 1.05rem;
            color: var(--ink-secondary);
            max-width: 58ch;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════
           PROOF / STATS
        ═══════════════════════════════════════ */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--border-strong);
        }

        .stat-num {
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .stat-num .val {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(3rem, 6vw, 4.6rem);
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--navy);
        }

        .stat-num .suf {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .stat-card {
            position: relative;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 32px;
            right: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            border-radius: 0 0 2px 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before { opacity: 1; }

        .stat-card h3 {
            font-family: 'Satoshi', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            margin: 12px 0 8px;
        }

        .stat-card p {
            color: var(--ink-secondary);
            font-size: 0.92rem;
        }

        /* ═══════════════════════════════════════
           WHY SECTION
        ═══════════════════════════════════════ */
        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .why-intro-card {
            grid-row: span 2;
            background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 60%, #0A1525 100%);
            color: #fff;
            border-radius: var(--radius-xl);
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .why-intro-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -30%;
            width: 70%;
            height: 80%;
            background: radial-gradient(circle, var(--gold-glow), transparent 70%);
            pointer-events: none;
        }

        .why-intro-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%);
            -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 70%);
            pointer-events: none;
        }

        .why-intro-card > * { position: relative; z-index: 1; }

        .why-intro-card .eyebrow { color: var(--gold-light); }
        .why-intro-card .eyebrow::before {
            background: linear-gradient(90deg, var(--gold-light), transparent);
        }

        .why-intro-card h3 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            margin-top: 24px;
            line-height: 1.08;
        }

        .why-intro-card p {
            margin-top: 20px;
            color: rgba(255,255,255,0.75);
            font-size: 1rem;
            line-height: 1.65;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .feat-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--gold-pale);
            color: var(--navy);
            font-size: 0.78rem;
            font-weight: 700;
            margin-bottom: 18px;
            border: 1px solid rgba(184, 145, 74, 0.20);
        }

        .feature-card {
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, var(--gold), transparent 40%);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .feature-card:hover::after { opacity: 1; }

        .feature-card h3 {
            font-size: 1.35rem;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--ink-secondary);
            font-size: 0.92rem;
        }

        /* ═══════════════════════════════════════
           PROCESS
        ═══════════════════════════════════════ */
        .process-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            counter-reset: step;
        }

        .process-card {
            counter-increment: step;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            position: relative;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .process-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .process-card::before {
            content: counter(step, decimal-leading-zero);
            font-family: 'Instrument Serif', serif;
            font-size: 3rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            display: block;
            margin-bottom: 24px;
            opacity: 0.85;
        }

        .process-card:hover::before { opacity: 1; }

        .process-card h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .process-card p {
            color: var(--ink-secondary);
            font-size: 0.9rem;
        }

        /* ═══════════════════════════════════════
           CAMPAIGNS
        ═══════════════════════════════════════ */
        .section-campaigns {
            background: var(--bg-warm);
            border-radius: 48px;
            margin: 0 20px;
            padding: 100px 0;
        }

        .campaigns-wrap {
            width: min(var(--max-w), calc(100% - 40px));
            margin: 0 auto;
        }

        .campaign-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .campaign-grid + .campaign-grid {
            margin-top: 20px;
        }

        .camp-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .camp-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--border-strong);
        }

        .camp-img {
            aspect-ratio: 5/4;
            overflow: hidden;
        }

        .camp-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .camp-card:hover .camp-img img {
            transform: scale(1.06);
        }

        .camp-body {
            padding: 22px 24px 26px;
        }

        .camp-body h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .camp-body p {
            font-size: 0.88rem;
            color: var(--ink-secondary);
            line-height: 1.55;
        }

        .camp-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px;
        }

        .camp-tag {
            display: inline-flex;
            align-items: center;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            background: var(--gold-pale);
            color: var(--navy);
            border: 1px solid rgba(184, 145, 74, 0.22);
        }

        .camp-card {
            position: relative;
        }

        .camp-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .camp-card:hover::after { transform: scaleX(1); }

        /* ═══════════════════════════════════════
           SCALE / BANNER
        ═══════════════════════════════════════ */
        .scale-banner {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 56px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            box-shadow: var(--shadow-sm);
        }

        .scale-banner h2 {
            font-size: clamp(2.2rem, 4vw, 3.4rem);
        }

        .scale-banner > div:first-child p {
            color: var(--ink-secondary);
            margin: 16px 0 24px;
            line-height: 1.7;
        }

        .scale-tags-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .scale-tags-row span {
            padding: 8px 16px;
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--ink-secondary);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .metric-box {
            padding: 24px;
            border-radius: var(--radius-md);
            background: var(--bg);
            border: 1px solid var(--border);
        }

        .metric-box.accent {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
            border-color: var(--navy);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .metric-box.accent::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 100%;
            background: radial-gradient(circle, var(--gold-glow), transparent 70%);
            pointer-events: none;
        }

        .metric-box.accent .big {
            position: relative;
            background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .metric-box .big {
            font-family: 'Instrument Serif', serif;
            font-size: 2.6rem;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .metric-box p {
            font-size: 0.84rem;
            color: var(--ink-secondary);
            margin-top: 6px;
        }

        .metric-box.accent p { color: rgba(255,255,255,0.7); }

        /* ═══════════════════════════════════════
           FAQ
        ═══════════════════════════════════════ */
        .faq-grid {
            display: grid;
            gap: 12px;
            max-width: 800px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item.is-open {
            border-color: var(--border-strong);
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 22px 28px;
            text-align: left;
            font-family: 'Instrument Serif', serif;
            font-size: 1.2rem;
            color: var(--ink);
            letter-spacing: -0.01em;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .faq-item.is-open .faq-icon {
            background: linear-gradient(135deg, var(--navy), var(--navy-deep));
            transform: rotate(45deg);
            box-shadow: 0 0 0 3px var(--gold-glow);
        }

        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--ink-secondary);
            transition: stroke 0.3s ease;
        }

        .faq-item.is-open .faq-icon svg {
            stroke: #fff;
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .faq-a p {
            padding: 0 28px 24px;
            color: var(--ink-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════
           CONTACT
        ═══════════════════════════════════════ */
        .section-contact {
            padding-bottom: 80px;
        }

        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 32px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 48px;
            box-shadow: var(--shadow-sm);
        }

        .contact-info h2 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            margin-bottom: 16px;
        }

        .contact-info > p {
            color: var(--ink-secondary);
            line-height: 1.7;
        }

        .contact-perks {
            margin-top: 32px;
            display: grid;
            gap: 20px;
        }

        .perk h3 {
            font-family: 'Satoshi', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .perk p {
            color: var(--ink-secondary);
            font-size: 0.9rem;
        }

        .contact-details {
            list-style: none;
            margin: 32px 0 0;
            padding: 0;
            display: grid;
            gap: 12px;
        }

        .contact-details li {
            display: flex;
            align-items: baseline;
            gap: 12px;
            font-size: 0.95rem;
        }

        .contact-details li > span {
            font-family: 'Satoshi', sans-serif;
            font-weight: 600;
            color: var(--ink-secondary);
            min-width: 56px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .contact-details a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s ease;
        }

        .contact-details a:hover {
            border-bottom-color: currentColor;
        }

        .contact-form {
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: grid;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .contact-form label {
            display: grid;
            gap: 6px;
        }

        .contact-form label > span {
            font-size: 0.84rem;
            font-weight: 500;
            color: var(--ink-secondary);
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            color: var(--ink);
            resize: vertical;
            transition: all 0.25s ease;
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: var(--ink-tertiary);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--accent-glow);
        }

        .form-note {
            font-size: 0.84rem;
            color: var(--ink-tertiary);
        }

        .form-note.is-confirmed {
            color: var(--gold);
            font-weight: 600;
        }

        /* ═══════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════ */
        .site-footer {
            border-top: 1px solid var(--border);
            padding: 48px 0;
        }

        .footer-inner {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 32px;
        }

        .footer-brand img {
            height: 6vh;
            width: auto;
        }

        .footer-brand p {
            color: var(--ink-secondary);
            font-size: 0.9rem;
            max-width: 40ch;
            margin-top: 12px;
        }

        .footer-nav {
            display: flex;
            gap: 24px;
        }

        .footer-nav a {
            font-size: 0.9rem;
            color: var(--ink-secondary);
            transition: color 0.2s;
        }

        .footer-nav a:hover { color: var(--ink); }

        /* ═══════════════════════════════════════
           SCROLL REVEAL — Framer-style
        ═══════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(32px) scale(0.985);
            transition:
                opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform;
        }

        .reveal.vis {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Stagger items inside grids that have multiple .reveal children */
        .stats-row .reveal:nth-child(1) { --reveal-delay: 0ms; }
        .stats-row .reveal:nth-child(2) { --reveal-delay: 100ms; }
        .stats-row .reveal:nth-child(3) { --reveal-delay: 200ms; }

        .why-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
        .why-grid .reveal:nth-child(2) { --reveal-delay: 80ms; }
        .why-grid .reveal:nth-child(3) { --reveal-delay: 160ms; }
        .why-grid .reveal:nth-child(4) { --reveal-delay: 240ms; }
        .why-grid .reveal:nth-child(5) { --reveal-delay: 320ms; }

        .process-row .reveal:nth-child(1) { --reveal-delay: 0ms; }
        .process-row .reveal:nth-child(2) { --reveal-delay: 90ms; }
        .process-row .reveal:nth-child(3) { --reveal-delay: 180ms; }
        .process-row .reveal:nth-child(4) { --reveal-delay: 270ms; }

        .campaign-grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
        .campaign-grid .reveal:nth-child(2) { --reveal-delay: 90ms; }
        .campaign-grid .reveal:nth-child(3) { --reveal-delay: 180ms; }

        /* ═══════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════ */
        @media (max-width: 1024px) {
            .hero .wrap,
            .why-grid,
            .scale-banner,
            .contact-wrap { grid-template-columns: 1fr; }

            .hero-visual { max-width: 500px; }
            .stats-row, .campaign-grid { grid-template-columns: 1fr 1fr; }
            .process-row { grid-template-columns: 1fr 1fr; }
            .why-intro-card { grid-row: span 1; }

            .navbar.scrolled .navbar-inner {
                max-width: calc(100% - 40px);
            }
        }

        @media (max-width: 680px) {
            .nav-links { display: none; }
            .stats-row, .campaign-grid, .process-row, .form-row, .metrics-grid {
                grid-template-columns: 1fr;
            }
            .section { padding: 80px 0; }
            .section-campaigns { margin: 0 10px; padding: 60px 0; border-radius: 32px; }
            .scale-banner, .contact-wrap { padding: 28px; }
            .hero { padding: 130px 0 60px; }
            .hero-float { display: none; }
            .footer-inner { flex-direction: column; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            .reveal { opacity: 1; transform: none; }
        }
