        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #0f172a;
            background: #f8fafc;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .legal-shell {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navbar (uses existing legal-* styles) */
        .legal-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(248, 250, 252, 0.92);
            border-bottom: 1px solid rgba(148, 163, 184, 0.24);
        }

        .legal-nav-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 14px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .legal-brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: #1e3a8a;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .legal-brand-icon {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: linear-gradient(135deg, #1e40af, #0ea5e9);
            color: white;
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .logo-text {
            font-weight: 700;
            color: #0f172a;
            font-size: 1rem;
        }

        .legal-links {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .legal-link {
            text-decoration: none;
            font-weight: 500;
            color: #1f2937;
            padding: 8px 14px;
            border-radius: 999px;
            transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
        }

        .legal-link:focus {
            outline: 3px solid rgba(30,64,175,0.12);
            outline-offset: 2px;
        }

        .legal-link:hover {
            background: rgba(30, 64, 175, 0.08);
            color: #1e3a8a;
            transform: translateY(-1px);
        }

        .legal-main {
            flex: 1;
            padding: 64px 24px 96px;
        }

        .legal-content {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(148, 163, 184, 0.18);
            padding: 40px; /* added comfortable inner spacing */
        }

        /* make inner content area responsive */
        .legal-content > *:first-child {
            margin-top: 0;
        }

        .legal-footer {
            background: #ffffff;
            border-top: 1px solid rgba(148, 163, 184, 0.24);
            padding: 28px 24px;
        }

        .legal-footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            color: #64748b;
            font-size: 0.9rem;
        }

        .legal-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .legal-footer-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .legal-footer-links a:hover {
            color: #1e3a8a;
        }

        /* small helper for headings and text in legal pages */
        .legal-content h1,
        .legal-content h2,
        .legal-content h3 {
            color: #0f172a;
            margin-top: 0;
        }

        .legal-content p {
            color: #334155;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        @media (max-width: 768px) {
            .legal-nav-inner {
                padding: 12px 16px;
            }

            .legal-links {
                gap: 8px;
            }

            .legal-link {
                padding: 6px 10px;
                font-size: 0.9rem;
            }

            .legal-main {
                padding: 48px 16px 64px;
            }

            .legal-content {
                border-radius: 20px;
                padding: 24px;
            }

            .legal-footer {
                padding: 24px 16px;
            }
        }

        @media (max-width: 540px) {
            .legal-links {
                display: none;
            }

            .logo-text {
                display: none;
            }
        }

        /* keep legacy auth styles below (unchanged from original) */
        .auth-base-body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .auth-glass-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(248, 250, 252, 0.78);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(148, 163, 184, 0.18);
            transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .auth-glass-nav.is-scrolled {
            background: rgba(248, 250, 252, 0.92);
            border-bottom-color: rgba(148, 163, 184, 0.28);
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
        }

        .auth-glass-nav.is-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        .auth-nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            padding: 0 24px;
            min-height: 64px;
        }

        .nav-brand { display: flex; align-items: center; }

        .brand-link { display: inline-flex; align-items: center; gap: 10px; padding: 6px 10px; border-radius: 14px; text-decoration: none; color: #1e3a8a; font-weight: 600; font-size: 1rem; transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease; }

        .brand-link:hover { color: #0f172a; background: rgba(30, 64, 175, 0.08); transform: translateY(-1px); }

        .brand-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1e40af, #0ea5e9); box-shadow: 0 6px 16px rgba(30, 64, 175, 0.18); transition: transform 0.3s ease; }

        .logo-svg { width: 18px; height: 18px; color: #ffffff; }

        .brand-text { font-weight: 700; letter-spacing: -0.02em; font-size: 1rem; }

        .nav-links { display: flex; align-items: center; gap: 10px; }

        .nav-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 9999px; border: none; background: transparent; color: #1f2937; font-weight: 500; font-size: 0.9rem; text-decoration: none; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }

        .nav-link:hover { background: rgba(30, 64, 175, 0.08); color: #1e3a8a; transform: translateY(-1px); }

        .nav-link.nav-cta { background: linear-gradient(135deg, #1e40af, #0ea5e9); color: #ffffff; font-weight: 600; padding: 8px 18px; box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2); }

        .nav-link.nav-cta:hover { background: linear-gradient(135deg, #1e3a8a, #0284c7); transform: translateY(-2px); }

        .nav-link i { font-size: 0.95rem; }

        @media (max-width: 1024px) {
            .auth-nav-inner { padding: 0 20px; }
        }

        @media (max-width: 768px) {
            .auth-nav-inner { min-height: 58px; gap: 16px; }
            .brand-text { font-size: 0.95rem; }
        }

        @media (max-width: 640px) {
            .auth-nav-inner { padding: 0 16px; min-height: 54px; }
            .nav-links { gap: 6px; }
            .nav-link { padding: 6px 12px; font-size: 0.85rem; }
        }

        @media (max-width: 480px) {
            .brand-text { display: none; }
            .brand-link { padding: 6px; }
            .nav-link { padding: 6px 10px; font-size: 0.8rem; }
        }

        .main-content { flex: 1; display: flex; flex-direction: column; padding-top: 96px; }
        .auth-footer { background: #f8fafc; border-top: 1px solid #e2e8f0; color: #64748b; padding: 2rem 0; margin-top: auto; }
        .auth-footer a { color: #64748b; text-decoration: none; transition: color 0.3s ease; }
        .auth-footer a:hover { color: #667eea; }

        .auth-container { max-width: 600px !important; width: 100% !important; }
        .auth-card { width: 100% !important; padding: 3rem !important; }

        @media (max-width: 640px) {
            .auth-container { max-width: 95% !important; }
            .auth-card { padding: 2rem !important; }
        }

        .checkbox-group { margin: 1.5rem 0; }
        .checkbox-label { display: flex; align-items: center; cursor: pointer; font-weight: 500; color: var(--text); }
        .checkbox-input { display: none; }
        .checkbox-custom { display: inline-flex; align-items: center; justify-content: center; width: 24px !important; height: 24px; border: 2px solid var(--border-2, var(--lockin-gray-300, #d1d5db)); border-radius: 6px; margin-right: 0.75rem; position: relative; transition: all 0.2s ease; background: var(--surface, #ffffff); flex-shrink: 0; vertical-align: middle; }
        .checkbox-custom::after { content: '✓'; position: absolute; color: white; font-weight: bold; font-size: 14px; opacity: 0; transform: scale(0.5); transition: opacity 0.2s ease, transform 0.2s ease; }
        .checkbox-input:checked + .checkbox-custom { background-color: var(--primary, #1e40af) !important; border-color: var(--primary, #1e40af); transform: scale(1.05); }
        .checkbox-input:checked + .checkbox-custom::after { opacity: 1; transform: scale(1); }
        .checkbox-text { font-size: 1rem; }
