        :root {
            --orange-main: #FF8200;
            --orange-soft: rgba(255, 130, 0, 0.10);
            --orange-medium: rgba(255, 130, 0, 0.22);
            --orange-strong: rgba(255, 130, 0, 0.50);
            --orange-glow: rgba(255, 130, 0, 0.35);
            --bg-primary: #FFFFFF;
            --bg-secondary: #D0D3D4;
            --bg-glass: rgba(255, 255, 255, 0.72);
            --border-soft: rgba(0, 0, 0, 0.14);
            --text-primary: #000000;
            --text-secondary: #646566;
            --text-muted: #888888;
            --line-soft: var(--orange-medium);
            --line: rgba(0, 0, 0, 0.12);
            --shadow-soft: 0 16px 34px rgba(0, 0, 0, 0.11);
            --shadow-glass: 0 12px 24px rgba(0, 0, 0, 0.09);
            --radius-sm: 12px;
            --radius-md: 18px;
            --radius-lg: 28px;
            --shadow-glow: 0 0 30px rgba(255, 130, 0, 0.18);
            --space: clamp(1rem, 2.5vw, 2.2rem);
            --maxw: 1120px;
            --orange: var(--orange-main);
            --bg: var(--bg-primary);
            --text: var(--text-primary);
            --text-soft: var(--text-secondary);
            --muted: var(--text-muted);
            --muted-deep: var(--text-muted);
            --surface: #FFFFFF;
            --surface-strong: rgba(255, 255, 255, 0.88);
            --surface-edge: var(--orange-medium);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--text-primary);
            line-height: 1.56;
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 130, 0, 0.08), transparent 20%),
                radial-gradient(circle at 88% 86%, rgba(255, 130, 0, 0.07), transparent 24%),
                var(--bg-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(var(--maxw), 100% - 2rem);
            margin: 0 auto;
        }

        h1,
        h2,
        h3,
        .display {
            font-family: "Space Grotesk", "Manrope", sans-serif;
            margin: 0;
            line-height: 1.08;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(1.9rem, 3.8vw, 2.5rem);
        }

        h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        h3 {
            font-size: 1.15rem;
        }

        p {
            margin: 0;
            color: var(--text-soft);
            font-size: clamp(0.98rem, 2vw, 1.08rem);
        }

        .eyebrow {
            margin: 0;
            color: var(--orange);
            font-size: .82rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .section {
            position: relative;
            padding: 90px 0;
            background:
                radial-gradient(circle at 18% 2%, rgba(255, 130, 0, 0.04), transparent 34%),
                radial-gradient(circle at 84% 94%, rgba(208, 211, 212, 0.5), transparent 24%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
        }

        .section::before,
        .section::after {
            content: "";
            pointer-events: none;
            position: absolute;
            width: min(480px, 50vw);
            height: min(480px, 50vw);
            border-radius: 50%;
            opacity: .14;
            background: radial-gradient(circle, rgba(255, 130, 0, 0.22), transparent 64%);
            z-index: 0;
        }

        .section::before {
            right: -280px;
            top: 42px;
            filter: blur(18px);
        }

        .section::after {
            left: -250px;
            bottom: -180px;
            filter: blur(20px);
            transform: rotate(14deg);
            opacity: .1;
        }

        .section > .container {
            position: relative;
            z-index: 1;
        }

        .glass {
            background: var(--bg-glass);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 14px 34px rgba(0, 0, 0, 0.10);
        }

        .header-shell {
            position: sticky;
            top: 0;
            z-index: 25;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(18px);
            background: rgba(255, 255, 255, 0.85);
            transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
        }

        .header-shell.scrolled {
            border-color: var(--line-soft);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
        }

        .nav-inner {
            min-height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            font-family: "Space Grotesk", sans-serif;
            display: inline-flex;
            align-items: center;
            gap: .65rem;
            padding: .2rem .46rem;
            border: 1px solid rgba(255, 130, 0, 0.25);
            border-radius: 12px;
            background: linear-gradient(130deg, rgba(208, 211, 212, 0.55), rgba(255, 130, 0, 0.16));
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 0 1px rgba(255, 130, 0, 0.12);
            font-weight: 800;
            letter-spacing: .06em;
            color: var(--text);
            color: #000000;
        }

        .brand-logo {
            display: block;
            width: 142px;
            height: auto;
            filter:
                drop-shadow(0 1px 0 rgba(0, 0, 0, 0.28)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.08));
        }

        .top-nav {
            display: flex;
            align-items: center;
            gap: .85rem;
        }

        .top-nav a {
            font-size: .93rem;
            color: var(--text-soft);
            padding: .28rem .04rem;
            position: relative;
            color: #000000;
        }

        .top-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width .2s ease;
        }

        .top-nav a:hover,
        .top-nav a:focus-visible {
            color: #000000;
        }

        .top-nav a:hover::after,
        .top-nav a:focus-visible::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            position: relative;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.14);
            border-radius: 11px;
            padding: 0;
            background: rgba(255, 255, 255, 0.9);
            color: #000000;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            gap: 4px;
            flex-direction: column;
            z-index: 35;
        }

        .menu-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: #000000;
            border-radius: 10px;
            transition: transform .2s ease, opacity .2s ease;
        }

        .nav-cta-mobile {
            display: none !important;
        }

        .menu-backdrop {
            display: none;
        }

        .header-actions {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            margin-inline-start: auto;
        }

        .btn {
            border: 0;
            border-radius: 999px;
            font-weight: 700;
            padding: .86rem 1.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            transition: transform .2s ease, box-shadow .25s ease, background-color .2s ease, border-color .2s ease;
        }

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

        .btn-primary {
            color: #000000;
            background: linear-gradient(180deg, var(--orange-main), rgba(255, 130, 0, 0.82));
            border: 1px solid rgba(255, 130, 0, 0.55);
            box-shadow: var(--shadow-glow);
        }

        .btn-secondary {
            color: #000000;
            background: #FFFFFF;
            border: 1px solid rgba(0, 0, 0, 0.14);
        }

        .btn-secondary:hover {
            background: rgba(255, 130, 0, 0.16);
            border-color: var(--orange-soft);
        }

        .btn:hover {
            box-shadow: 0 10px 28px rgba(255, 130, 0, 0.26);
            transform: translateY(-1px);
        }

        .btn:active {
            transform: translateY(0);
        }

        .main-wrap {
            position: relative;
            padding: 2.2rem 0 3rem;
        }

        .main-wrap::before,
        .main-wrap::after {
            content: "";
            position: absolute;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(24px);
        }

        .main-wrap::before {
            background: radial-gradient(circle at 80% 20%, rgba(255, 130, 0, 0.13), transparent 58%);
            top: -100px;
            right: -130px;
        }

        .main-wrap::after {
            background: radial-gradient(circle at 25% 78%, rgba(255, 130, 0, 0.08), transparent 58%);
            left: -120px;
            top: 160px;
        }

        .policy-shell {
            position: relative;
            z-index: 1;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.90));
            border: 1px solid rgba(208, 211, 212, 0.56);
            border-radius: var(--radius-lg);
            padding: 1.45rem;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.95),
                0 16px 34px rgba(0, 0, 0, 0.12);
        }

        .policy-shell h1,
        .policy-shell h2 {
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -0.02em;
            margin: 0;
            color: #000;
        }

        .policy-shell h1 {
            font-size: clamp(1.6rem, 2.4vw, 2.3rem);
            margin-bottom: .65rem;
        }

        .policy-shell h2 {
            font-size: clamp(1.16rem, 1.7vw, 1.3rem);
            margin-top: 1.6rem;
            margin-bottom: .5rem;
        }

        .policy-shell h2::before {
            content: "";
            display: block;
            width: 40px;
            height: 2px;
            border-radius: 999px;
            margin-bottom: .45rem;
            background: linear-gradient(90deg, rgba(255, 130, 0, 0.2), rgba(255, 130, 0, 0.45));
        }

        .policy-shell p,
        .policy-shell li {
            color: #646566;
            font-size: 1rem;
            max-width: 70ch;
        }

        .policy-shell a {
            color: #000000;
            border-bottom: 1px solid rgba(255, 130, 0, 0.4);
        }

        .policy-shell ul {
            margin: .4rem 0 .2rem 1.2rem;
            padding-left: .7rem;
            display: grid;
            gap: .38rem;
        }

        .policy-shell li::marker {
            color: var(--orange-main);
        }

        .policy-shell .eyebrow {
            color: var(--orange-main);
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .14em;
            font-weight: 700;
            margin-bottom: .45rem;
        }

        .policy-actions {
            display: flex;
            flex-wrap: wrap;
            gap: .7rem;
            margin-top: 1.25rem;
        }

        .policy-actions .btn {
            border-radius: 999px;
        }

        .policy-contact {
            margin-top: 1.2rem;
        }

        .policy-contact .policy-shell {
            padding: 1.5rem;
            display: grid;
            gap: 1rem;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
        }

        .policy-contact-grid {
            display: grid;
            gap: .7rem;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .policy-contact-item {
            padding: .78rem .85rem;
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 14px;
            display: grid;
            gap: .18rem;
            min-height: 92px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 20px rgba(0, 0, 0, 0.09);
        }

        .policy-contact-item strong {
            color: #000000;
            font-family: "Space Grotesk", sans-serif;
            letter-spacing: -0.01em;
        }

        .policy-contact-item a {
            display: inline-block;
            color: #000000;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 130, 0, 0.35);
        }

        .policy-contact-item a:hover,
        .policy-contact-item a:focus-visible {
            border-bottom-color: transparent;
        }

        .policy-contact-note {
            margin-top: -.2rem;
            margin-bottom: .5rem;
        }

        .skip-link {
            position: absolute;
            left: -100000px;
            top: 0.5rem;
            background: var(--text);
            color: var(--bg);
            padding: .5rem .8rem;
            z-index: 100;
        }

        .skip-link:focus {
            left: 1rem;
        }

        footer {
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 130, 0, 0.18);
            padding: 2rem 0 2.5rem;
            color: #646566;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(208, 211, 212, 0.52)),
                radial-gradient(circle at 82% 30%, rgba(255, 130, 0, 0.10), transparent 58%);
            position: relative;
        }

        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(circle at 12% 20%, rgba(255, 130, 0, 0.06), transparent 62%);
            opacity: .55;
        }

        .copyright,
        .foot-links {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .copyright {
            margin: 0;
            color: #000;
        }

        .foot-links {
            margin-top: .9rem;
            display: flex;
            justify-content: center;
            gap: .85rem;
            flex-wrap: wrap;
        }

        .foot-links a {
            color: var(--text-secondary);
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(255, 130, 0, 0.20);
            border-radius: 999px;
            padding: .33rem .88rem;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 18px rgba(255, 130, 0, 0.12);
            transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        .foot-links a:hover,
        .foot-links a:focus-visible {
            border-color: var(--orange-main);
            box-shadow: 0 14px 24px rgba(255, 130, 0, 0.18);
            transform: translateY(-1px);
        }

        @media (max-width: 760px) {
            .nav-inner {
                min-height: 64px;
                flex-wrap: nowrap;
                gap: .5rem;
            }

            .brand {
                border-radius: 10px;
                padding: .18rem .36rem;
            }

            .brand-logo {
                width: 122px;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .menu-backdrop {
                position: fixed;
                inset: 0;
                z-index: 24;
                background: rgba(0, 0, 0, 0.32);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.2s ease;
            }

            .top-nav {
                position: fixed;
                top: calc(var(--header-offset, 72px) + 0.5rem);
                left: 1rem;
                right: 1rem;
                max-width: 360px;
                margin: 0 auto;
                max-height: calc(100dvh - var(--header-offset, 72px) - 1.4rem);
                overflow-y: auto;
                display: none;
                flex-direction: column;
                align-items: stretch;
                padding: .65rem .6rem;
                border: 1px solid rgba(0, 0, 0, 0.14);
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.98);
                z-index: 30;
            }

            .top-nav a {
                font-size: .79rem;
                line-height: 1.15;
                padding: .55rem .62rem;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            }

            .top-nav a:last-of-type {
                border-bottom: none;
            }

            .top-nav a::after {
                content: none;
            }

            .header-shell .btn {
                flex: 0 0 auto;
                font-size: .8rem;
                padding: .58rem 1rem;
                white-space: nowrap;
                margin-inline-start: auto;
                display: none !important;
            }

            .nav-cta-mobile {
                display: inline-flex !important;
                justify-content: center;
                margin-top: .35rem;
            }

            .top-nav {
                box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
            }

            .header-shell {
                overflow: visible;
            }

            .policy-shell {
                padding: 1rem;
            }

            .policy-shell h1 {
                font-size: 1.5rem;
            }

            .policy-contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .main-wrap {
                padding-top: 2rem;
            }
        }

        body.menu-open .top-nav {
            display: flex;
        }

        body.menu-open .menu-backdrop {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        body.menu-open {
            overflow: hidden;
        }

        body.menu-open .menu-toggle span:first-child {
            transform: translateY(6px) rotate(45deg);
        }

        body.menu-open .menu-toggle span:nth-child(2) {
            opacity: 0;
        }

        body.menu-open .menu-toggle span:last-child {
            transform: translateY(-6px) rotate(-45deg);
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }

            body.menu-open .top-nav {
                transition: none !important;
            }
        }
