
        :root {
            --bg: #ffffff;
            --surface: rgba(255, 255, 255, 0.8);
            --surface-solid: #ffffff;
            --surface-soft: #f8f8f8;
            --surface-dark: #111316;
            --surface-deep: #0a0c0e;
            --ink: #121417;
            --ink-soft: #4c5360;
            --ink-faint: #7b8391;
            --line: rgba(18, 20, 23, 0.08);
            --line-strong: rgba(18, 20, 23, 0.16);
            --accent: #3669B2;
            --accent-deep: #40B0E5;
            --accent-soft: rgba(54, 105, 178, 0.14);
            --shadow-soft: 0 20px 60px rgba(15, 22, 32, 0.08);
            --shadow-lift: 0 24px 70px rgba(15, 22, 32, 0.12);
            --radius-xs: 18px;
            --radius-sm: 24px;
            --radius-md: 32px;
            --radius-lg: 40px;
            --radius-xl: 56px;
            --content-max: 1440px;
            --gutter: clamp(22px, 3vw, 40px);
            --section-space: clamp(88px, 12vw, 180px);
            --header-height: 92px;
            --header-height-scrolled: 68px;
            --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
            --ease-refined: cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Manrope", "Segoe UI", sans-serif;
            background:
                radial-gradient(circle at top left, rgba(54, 105, 178, 0.08), transparent 32%),
                radial-gradient(circle at 82% 10%, rgba(64, 176, 229, 0.06), transparent 28%),
                #ffffff;
            color: var(--ink);
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(54, 105, 178, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(54, 105, 178, 0.04) 1px, transparent 1px);
            background-size: 120px 120px;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 72%);
            pointer-events: none;
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: radial-gradient(circle at center, rgba(54, 105, 178, 0.03), transparent 68%);
            mix-blend-mode: multiply;
            pointer-events: none;
            z-index: -1;
        }

        img { display: block; max-width: 100%; }

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

        button, input, textarea { font: inherit; }

        body.has-custom-cursor,
        body.has-custom-cursor a,
        body.has-custom-cursor button,
        body.has-custom-cursor input,
        body.has-custom-cursor textarea,
        body.has-custom-cursor label,
        body.has-custom-cursor [role="button"] {
            cursor: none;
        }

        .custom-cursor {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            opacity: 0;
            z-index: 120;
            transition: opacity 0.28s var(--ease-refined);
        }

        .custom-cursor-ring {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(54, 105, 178, 0.34);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 10px 24px rgba(15, 22, 32, 0.12);
        }

        .custom-cursor-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent-deep));
            box-shadow: 0 0 0 8px rgba(54, 105, 178, 0.08);
        }

        body.cursor-visible .custom-cursor {
            opacity: 1;
        }

        @media (pointer: coarse), (prefers-reduced-motion: reduce) {
            .custom-cursor {
                display: none !important;
            }
        }

        .scroll-top {
            position: fixed;
            right: clamp(18px, 3vw, 28px);
            bottom: clamp(18px, 3vw, 28px);
            width: 48px;
            height: 48px;
            border: 1px solid rgba(18, 20, 23, 0.1);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.76);
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(15, 22, 32, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition:
                opacity 0.28s var(--ease-refined),
                transform 0.28s var(--ease-refined),
                visibility 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
            z-index: 90;
        }

        .scroll-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .scroll-top svg {
            width: 16px;
            height: 16px;
        }

        .cookie-widget {
            position: fixed;
            left: clamp(18px, 3vw, 28px);
            bottom: clamp(18px, 3vw, 28px);
            min-height: 48px;
            padding: 0 16px;
            border: 1px solid rgba(18, 20, 23, 0.1);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.76);
            color: var(--ink);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 12px 28px rgba(15, 22, 32, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            transition:
                opacity 0.28s var(--ease-refined),
                transform 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
            z-index: 90;
        }

        .cookie-widget:hover {
            background: rgba(255, 255, 255, 0.92);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .cookie-widget svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
        }

        .cookie-widget span {
            font-size: 0.84rem;
            letter-spacing: 0.04em;
        }

        body.cookie-banner-open .cookie-widget {
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
        }

        .cookie-banner {
            position: fixed;
            left: 50%;
            bottom: clamp(18px, 3vw, 28px);
            width: min(calc(100% - 32px), 760px);
            padding: 22px 22px 20px;
            border-radius: 28px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.94)),
                linear-gradient(135deg, rgba(54, 105, 178, 0.05), transparent 72%);
            border: 1px solid rgba(18, 20, 23, 0.08);
            box-shadow: 0 26px 60px rgba(15, 22, 32, 0.14);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, 18px);
            transition:
                opacity 0.3s var(--ease-refined),
                transform 0.3s var(--ease-refined),
                visibility 0.3s var(--ease-refined);
            z-index: 95;
        }

        .cookie-banner.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .cookie-banner-header {
            display: grid;
            gap: 8px;
            margin-bottom: 10px;
        }

        .cookie-banner-kicker {
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-faint);
            font-weight: 600;
        }

        .cookie-banner-title {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            letter-spacing: -0.03em;
            color: var(--ink);
        }

        .cookie-banner-copy {
            color: var(--ink-soft);
            line-height: 1.72;
            font-size: 0.95rem;
            max-width: 56rem;
        }

        .cookie-banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .cookie-banner-btn {
            min-height: 44px;
            padding: 0 16px;
            border-radius: 999px;
            border: 1px solid rgba(18, 20, 23, 0.08);
            background: rgba(255, 255, 255, 0.78);
            color: var(--ink);
            transition:
                transform 0.28s var(--ease-refined),
                background-color 0.28s var(--ease-refined),
                border-color 0.28s var(--ease-refined);
        }

        .cookie-banner-btn:hover {
            transform: translateY(-1px);
            border-color: rgba(54, 105, 178, 0.16);
        }

        .cookie-banner-btn.primary {
            background: linear-gradient(135deg, var(--accent), #2d5a9f);
            border-color: transparent;
            color: #ffffff;
        }

        .cookie-banner-btn.secondary {
            background: rgba(54, 105, 178, 0.08);
            color: var(--accent);
            border-color: rgba(54, 105, 178, 0.18);
        }

        .cookie-banner-btn.ghost {
            background: transparent;
        }

        .cookie-preferences {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            display: grid;
            gap: 12px;
        }

        .cookie-option {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(18, 20, 23, 0.06);
        }

        .cookie-option strong {
            display: block;
            margin-bottom: 6px;
            color: var(--ink);
            font-size: 0.95rem;
        }

        .cookie-option span {
            color: var(--ink-soft);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        .cookie-option-state {
            color: var(--ink-faint);
            font-size: 0.82rem;
            white-space: nowrap;
        }

        .cookie-switch {
            appearance: none;
            -webkit-appearance: none;
            width: 48px;
            height: 28px;
            border-radius: 999px;
            background: rgba(18, 20, 23, 0.12);
            position: relative;
            border: 0;
            flex-shrink: 0;
            transition: background-color 0.24s var(--ease-refined);
        }

        .cookie-switch::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: 0 2px 8px rgba(15, 22, 32, 0.18);
            transition: transform 0.24s var(--ease-refined);
        }

        .cookie-switch:checked {
            background: var(--accent);
        }

        .cookie-switch:checked::after {
            transform: translateX(20px);
        }

        .cookie-preferences-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-banner-link {
            color: var(--accent);
            font-size: 0.9rem;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .page-shell {
            position: relative;
            overflow-x: hidden;
        }

        .container {
            width: min(calc(100% - (var(--gutter) * 2)), var(--content-max));
            margin: 0 auto;
        }

        .grid-12 {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: clamp(18px, 2vw, 28px);
        }

        .section {
            padding: var(--section-space) 0;
            position: relative;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 22px;
            font-weight: 500;
        }

        .section-kicker::before {
            content: "";
            width: 28px;
            height: 1px;
            background: rgba(18, 20, 23, 0.2);
        }

        .display {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-weight: 400;
            letter-spacing: -0.04em;
            line-height: 1.0;
        }

        .display-xl { font-size: clamp(2.6rem, 7vw, 7.2rem); line-height: 1.04; }
        .display-lg { font-size: clamp(2.4rem, 4.2vw, 4.4rem); line-height: 1.08; }
        .display-md { font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.22; }

        .lead {
            font-size: clamp(1.02rem, 1.4vw, 1.2rem);
            line-height: 1.82;
            color: var(--ink-soft);
            max-width: 44rem;
            letter-spacing: 0.01em;
        }

        /* ── Header ─────────────────────────────────────────────── */
        .site-header {
            position: fixed;
            inset: 0 0 auto;
            height: var(--header-height);
            z-index: 40;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition:
                height 0.55s var(--ease-refined),
                background 0.55s var(--ease-refined),
                border-color 0.55s var(--ease-refined),
                box-shadow 0.55s var(--ease-refined),
                backdrop-filter 0.55s var(--ease-refined);
        }

        .site-header.is-scrolled {
            height: var(--header-height-scrolled);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(54, 105, 178, 0.08);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 1px 0 rgba(54, 105, 178, 0.06), 0 8px 32px rgba(54, 105, 178, 0.07);
        }

        .header-inner {
            position: relative;
            z-index: 1;
            height: 100%;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 28px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .brand-logo {
            height: 32px;
            width: auto;
            display: block;
            filter: brightness(0);
            opacity: 0.92;
            transition: opacity 0.35s var(--ease-refined);
        }

        .brand:hover .brand-logo { opacity: 1; }

        .nav {
            justify-self: center;
            display: inline-flex;
            align-items: center;
            gap: clamp(18px, 2vw, 34px);
        }

        .nav a {
            position: relative;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(18, 20, 23, 0.84);
            padding: 10px 0;
            transition: color 0.4s var(--ease-refined), opacity 0.4s var(--ease-refined);
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 4px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.45s var(--ease-refined);
            opacity: 0.68;
        }

        .nav a:hover { color: var(--ink); }
        .nav a:hover::after { transform: scaleX(1); }

        .header-actions {
            display: inline-flex;
            align-items: center;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 52px;
            padding: 0 24px;
            border-radius: 999px;
            border: 1px solid transparent;
            transition:
                transform 0.45s var(--ease-refined),
                box-shadow 0.45s var(--ease-refined),
                background-color 0.45s var(--ease-refined),
                border-color 0.45s var(--ease-refined),
                color 0.45s var(--ease-refined);
            will-change: transform;
        }

        .btn .btn-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            transition: transform 0.45s var(--ease-refined), background-color 0.45s var(--ease-refined);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #2d5a9f);
            color: #ffffff;
            box-shadow: 0 12px 32px rgba(54, 105, 178, 0.24);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 18px 44px rgba(54, 105, 178, 0.32);
        }

        .btn-primary:hover .btn-arrow {
            transform: translateX(4px);
            background: rgba(255, 255, 255, 0.18);
        }

        .btn-secondary {
            background: rgba(54, 105, 178, 0.08);
            color: var(--accent);
            border-color: rgba(54, 105, 178, 0.24);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            background: rgba(54, 105, 178, 0.14);
            border-color: rgba(54, 105, 178, 0.36);
            box-shadow: 0 12px 28px rgba(54, 105, 178, 0.14);
        }

        .menu-toggle {
            display: none;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            border: 1px solid rgba(18, 20, 23, 0.1);
            background: rgba(255, 255, 255, 0.52);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .menu-toggle span,
        .menu-toggle span::before,
        .menu-toggle span::after {
            display: block;
            width: 18px;
            height: 1.5px;
            background: var(--ink);
            border-radius: 999px;
            transition: transform 0.35s var(--ease-refined), opacity 0.35s var(--ease-refined);
            margin: 0 auto;
            content: "";
        }

        .menu-toggle span::before { transform: translateY(-6px); }
        .menu-toggle span::after  { transform: translateY(4.5px); }

        /* ── Legal page hero ────────────────────────────────────── */
        .legal-hero {
            padding-top: calc(var(--header-height) + clamp(56px, 8vw, 96px));
            padding-bottom: clamp(48px, 6vw, 80px);
        }

        .legal-hero-inner {
            grid-column: 1 / span 8;
        }

        .legal-hero-inner .display-xl {
            letter-spacing: -0.045em;
            margin-bottom: 24px;
        }

        /* ── Tab switcher ───────────────────────────────────────── */
        .legal-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: clamp(52px, 7vw, 80px);
        }

        .legal-tab {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            border: 1px solid rgba(18, 20, 23, 0.12);
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--ink-soft);
            cursor: pointer;
            transition:
                background 0.4s var(--ease-refined),
                border-color 0.4s var(--ease-refined),
                color 0.4s var(--ease-refined),
                box-shadow 0.4s var(--ease-refined),
                transform 0.4s var(--ease-refined);
        }

        .legal-tab:hover {
            color: var(--ink);
            border-color: rgba(54, 105, 178, 0.28);
            background: rgba(54, 105, 178, 0.06);
        }

        .legal-tab.is-active {
            background: linear-gradient(135deg, var(--accent), #2d5a9f);
            border-color: transparent;
            color: #ffffff;
            box-shadow: 0 10px 28px rgba(54, 105, 178, 0.26);
        }

        /* ── Legal content panels ───────────────────────────────── */
        .legal-panel {
            display: none;
        }

        .legal-panel.is-active {
            display: block;
        }

        /* ── Legal content layout ───────────────────────────────── */
        .legal-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: clamp(32px, 4vw, 64px);
            align-items: start;
        }

        /* Sticky sidebar TOC */
        .legal-toc {
            position: sticky;
            top: calc(var(--header-height-scrolled) + 32px);
        }

        .legal-toc-label {
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--ink-faint);
            font-weight: 500;
            margin-bottom: 18px;
        }

        .legal-toc-list {
            list-style: none;
            display: grid;
            gap: 4px;
        }

        .legal-toc-list li a {
            display: block;
            padding: 8px 12px;
            border-radius: 10px;
            font-size: 0.875rem;
            color: var(--ink-soft);
            line-height: 1.4;
            transition: background 0.3s var(--ease-refined), color 0.3s var(--ease-refined);
        }

        .legal-toc-list li a:hover {
            background: rgba(54, 105, 178, 0.07);
            color: var(--ink);
        }

        .legal-toc-list li a.is-active {
            background: rgba(54, 105, 178, 0.1);
            color: var(--accent);
            font-weight: 600;
        }

        /* Content body */
        .legal-body {
            min-width: 0;
        }

        .legal-section {
            padding-bottom: clamp(44px, 5vw, 64px);
            border-bottom: 1px solid rgba(18, 20, 23, 0.07);
            margin-bottom: clamp(44px, 5vw, 64px);
        }

        .legal-section:last-child {
            border-bottom: 0;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .legal-section-number {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 14px;
            opacity: 0.72;
        }

        .legal-section h2 {
            font-family: "Sora", "Segoe UI", sans-serif;
            font-weight: 400;
            letter-spacing: -0.03em;
            font-size: clamp(1.3rem, 2vw, 1.75rem);
            line-height: 1.2;
            color: var(--ink);
            margin-bottom: 24px;
        }

        .legal-section h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--ink);
            margin: 28px 0 12px;
            letter-spacing: -0.01em;
        }

        .legal-section h3:first-of-type {
            margin-top: 0;
        }

        .legal-section p {
            font-size: 0.95rem;
            line-height: 1.82;
            color: var(--ink-soft);
            margin-bottom: 16px;
        }

        .legal-section p:last-child {
            margin-bottom: 0;
        }

        .legal-section ul,
        .legal-section ol {
            padding-left: 22px;
            margin-bottom: 16px;
        }

        .legal-section li {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--ink-soft);
            margin-bottom: 6px;
        }

        .legal-section a {
            color: var(--accent);
            text-decoration: underline;
            text-underline-offset: 3px;
            text-decoration-color: rgba(54, 105, 178, 0.3);
            transition: text-decoration-color 0.3s var(--ease-refined);
        }

        .legal-section a:hover {
            text-decoration-color: var(--accent);
        }

        /* Info card used for company details */
        .legal-info-card {
            padding: clamp(22px, 3vw, 32px);
            border-radius: var(--radius-sm);
            background: rgba(54, 105, 178, 0.04);
            border: 1px solid rgba(54, 105, 178, 0.1);
            margin-bottom: 28px;
        }

        .legal-info-card p {
            margin-bottom: 6px !important;
            font-size: 0.92rem !important;
        }

        .legal-info-card p:last-child {
            margin-bottom: 0 !important;
        }

        .legal-info-card strong {
            color: var(--ink);
            font-weight: 600;
        }

        /* Rights list as chips */
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin: 20px 0;
        }

        .right-chip {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(18, 20, 23, 0.08);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(8px);
            font-size: 0.875rem;
            color: var(--ink-soft);
        }

        .right-chip-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(54, 105, 178, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .right-chip-icon svg {
            width: 14px;
            height: 14px;
            color: var(--accent);
        }

        /* ── Footer ─────────────────────────────────────────────── */
        .footer {
            padding: clamp(72px, 10vw, 120px) 0 42px;
        }

        .footer-shell {
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            padding-top: 34px;
        }

        .footer-grid { align-items: start; }

        .footer-brand { grid-column: 1 / span 4; }

        .footer-logo {
            height: 28px;
            width: auto;
            display: block;
            margin-bottom: 24px;
        }

        .footer-note {
            color: var(--ink-soft);
            max-width: 24rem;
            line-height: 1.75;
        }

        .footer-col { grid-column: span 2; }

        .footer-col h3 {
            font-size: 0.78rem;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-faint);
            margin-bottom: 18px;
        }

        .footer-links { display: grid; gap: 12px; }

        .footer-links a,
        .footer-links span {
            width: fit-content;
            position: relative;
            color: var(--ink-soft);
            transition: color 0.4s var(--ease-refined);
        }

        .footer-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.4s var(--ease-refined);
        }

        .footer-links a:hover { color: var(--ink); }
        .footer-links a:hover::after { transform: scaleX(1); }

        .footer-base {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            margin-top: 42px;
            padding-top: 20px;
            border-top: 1px solid rgba(18, 20, 23, 0.08);
            color: var(--ink-faint);
            font-size: 0.84rem;
        }

        /* ── Reveal animations ──────────────────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition:
                opacity 0.7s var(--ease-refined),
                transform 0.7s var(--ease-refined);
            transition-delay: var(--delay, 0ms);
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Responsive ─────────────────────────────────────────── */
        @media (max-width: 1100px) {
            .legal-layout {
                grid-template-columns: 220px 1fr;
            }
        }

        @media (max-width: 920px) {
            .header-actions .btn-primary,
            .header-actions .btn-secondary { display: none; }

            .menu-toggle { display: grid; place-items: center; }
            .header-inner { gap: 16px; display: flex; justify-content: space-between; }

            .nav {
                position: fixed;
                top: 0; left: 0;
                width: 100vw;
                height: 100dvh;
                z-index: 50;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 0;
                padding: 0 var(--gutter);
                background: #ffffff;
                clip-path: circle(0% at calc(100% - var(--gutter) - 26px) 46px);
                transition: clip-path 0.55s var(--ease-refined);
                pointer-events: none;
            }

            .site-header.is-menu-open .nav {
                clip-path: circle(150% at calc(100% - var(--gutter) - 26px) 46px);
                pointer-events: auto;
            }

            .nav a {
                display: block;
                width: 100%;
                max-width: 400px;
                text-align: center;
                padding: 20px 0 !important;
                font-size: 1.5rem !important;
                font-weight: 600 !important;
                color: var(--ink) !important;
                letter-spacing: -0.02em;
                opacity: 0;
                transform: translateY(24px) scale(0.96);
                transition: opacity 0.45s var(--ease-refined), transform 0.45s var(--ease-refined);
            }

            .nav a::after { display: none !important; }

            .site-header.is-menu-open .nav a { opacity: 1; transform: translateY(0) scale(1); }
            .site-header.is-menu-open .nav a:nth-child(1) { transition-delay: 0.12s; }
            .site-header.is-menu-open .nav a:nth-child(2) { transition-delay: 0.18s; }
            .site-header.is-menu-open .nav a:nth-child(3) { transition-delay: 0.24s; }
            .site-header.is-menu-open .nav a:nth-child(4) { transition-delay: 0.30s; }
            .nav a { transition-delay: 0s; }

            .menu-toggle { position: relative; z-index: 52; }
            .menu-toggle.is-active span { background: transparent; }
            .menu-toggle.is-active span::before { transform: translateY(0) rotate(45deg); }
            .menu-toggle.is-active span::after  { transform: translateY(-1.5px) rotate(-45deg); }

            .legal-hero-inner { grid-column: 1 / -1; }

            .legal-layout {
                grid-template-columns: 1fr;
            }

            .legal-toc {
                position: static;
                display: flex;
                gap: 8px;
                flex-wrap: wrap;
                align-items: center;
                margin-bottom: 36px;
            }

            .legal-toc-label { display: none; }

            .legal-toc-list {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
            }

            .legal-toc-list li a {
                white-space: nowrap;
                font-size: 0.8rem;
                padding: 7px 12px;
                border: 1px solid rgba(18, 20, 23, 0.1);
                background: rgba(255,255,255,0.6);
            }

            .footer-brand,
            .footer-col { grid-column: span 6; }

            .footer-base { flex-direction: column; align-items: flex-start; gap: 8px; }
        }

        @media (max-width: 640px) {
            :root {
                --gutter: 20px;
                --section-space: clamp(60px, 14vw, 100px);
                --header-height: 76px;
                --header-height-scrolled: 60px;
            }

            .brand-logo { height: 26px; }

            .legal-hero { padding-bottom: clamp(32px, 5vw, 56px); }
            .legal-hero-inner .display-xl { font-size: clamp(1.9rem, 8.5vw, 3rem); line-height: 1.08; }

            .legal-tabs { flex-wrap: wrap; }

            .rights-grid { grid-template-columns: 1fr; }

            .footer {
                padding: 56px 0 28px;
            }

            .footer-shell {
                padding-top: 0;
                border-top: 0;
            }

            .footer-grid {
                gap: 14px;
            }

            .footer-brand,
            .footer-col { grid-column: 1 / -1; }

            .footer-brand,
            .footer-col {
                padding: 22px 20px;
                border-radius: 24px;
                background:
                    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.92)),
                    linear-gradient(135deg, rgba(54, 105, 178, 0.06), transparent 72%);
                border: 1px solid rgba(18, 20, 23, 0.07);
                box-shadow: 0 18px 42px rgba(15, 22, 32, 0.08);
            }

            .footer-brand .footer-logo {
                margin-bottom: 18px;
            }

            .footer-note {
                max-width: none;
                font-size: 0.94rem;
                line-height: 1.7;
            }

            .footer-col h3 {
                margin-bottom: 14px;
            }

            .footer-links {
                gap: 0;
            }

            .footer-links > * {
                width: 100%;
                padding: 12px 0;
                border-bottom: 1px solid rgba(18, 20, 23, 0.08);
            }

            .footer-links > *:last-child {
                border-bottom: 0;
                padding-bottom: 0;
            }

            .footer-links > *:first-child {
                padding-top: 0;
            }

            .footer-links a::after {
                display: none;
            }

            .footer-base {
                margin-top: 14px;
                padding: 18px 20px;
                border-top: 0;
                border-radius: 20px;
                background: rgba(248, 249, 251, 0.92);
                border: 1px solid rgba(18, 20, 23, 0.07);
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }

            .cookie-widget {
                left: 14px;
                bottom: 14px;
                min-height: 44px;
                padding: 0 14px;
            }

            .cookie-widget span {
                font-size: 0.8rem;
            }

            .cookie-banner {
                width: calc(100% - 20px);
                bottom: 10px;
                padding: 18px 16px 16px;
                border-radius: 24px;
            }

            .cookie-banner-actions,
            .cookie-preferences-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .cookie-banner-btn {
                width: 100%;
                justify-content: center;
            }

            .cookie-option {
                padding: 12px 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                transition-delay: 0ms !important;
            }
            .reveal { opacity: 1 !important; transform: none !important; }
        }
    