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

        :root {
            --navy: #1a1a2e;
            --navy-light: #16213e;
            --accent: #155DFC;
            --accent-hover: #1249d6;
            --accent-light: #e8efff;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a68;
            --text-muted: #7a7a96;
            --surface: #ffffff;
            --surface-alt: #f8f9fc;
            --border: #e2e4eb;
            --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06), 0 1px 2px rgba(26, 26, 46, 0.04);
            --shadow-md: 0 4px 12px rgba(26, 26, 46, 0.08), 0 2px 4px rgba(26, 26, 46, 0.04);
            --radius: 10px;
            --radius-lg: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background: var(--surface);
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        .header {
            background: var(--navy);
            padding: 0 24px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
        }

        .header-inner {
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #fff;
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -0.02em;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
        }

        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 50%, #0f3460 100%);
            padding: 64px 24px 72px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -40%; left: -10%;
            width: 60%; height: 140%;
            background: radial-gradient(ellipse, rgba(21, 93, 252, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .page-hero h1 {
            color: #fff;
            font-size: 38px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .page-hero p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 18px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Content */
        .content {
            max-width: 780px;
            margin: 0 auto;
            padding: 56px 24px 80px;
        }

        .content h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }

        .content h2:first-of-type {
            margin-top: 0;
        }

        .content p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.75;
        }

        .content ul {
            padding-left: 24px;
            margin-bottom: 20px;
        }

        .content li {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.7;
        }

        .content li strong {
            color: var(--text-primary);
        }

        .content a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        .content a:hover {
            color: var(--accent-hover);
            text-decoration: underline;
        }

        .highlight-box {
            background: var(--accent-light);
            border-left: 4px solid var(--accent);
            border-radius: 0 var(--radius) var(--radius) 0;
            padding: 20px 24px;
            margin: 28px 0;
        }

        .highlight-box p {
            color: var(--text-primary);
            margin-bottom: 0;
            font-size: 15px;
        }

        /* Values grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 28px 0;
        }

        .value-card {
            background: var(--surface-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
        }

        .value-card .icon {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .value-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .value-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.65;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: rgba(255, 255, 255, 0.5);
            padding: 48px 24px 36px;
        }

        .footer-inner {
            max-width: 1120px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 36px;
            gap: 32px;
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.65;
            max-width: 340px;
            margin-top: 12px;
        }

        .footer-links-group h4 {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }

        .footer-links-group ul { list-style: none; }
        .footer-links-group li { margin-bottom: 8px; }

        .footer-links-group a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links-group a:hover { color: #fff; }

        .footer-divider {
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 24px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom a:hover { color: rgba(255, 255, 255, 0.8); }

        .footer-disclaimer {
            font-size: 11px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.3);
            max-width: 1120px;
            margin: 20px auto 0;
            text-align: center;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .mobile-toggle { display: block; }

            .nav-links {
                display: none;
                position: absolute;
                top: 68px; left: 0; right: 0;
                background: var(--navy);
                flex-direction: column;
                padding: 12px 24px 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.06);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            }

            .nav-links.open { display: flex; }
            .nav-links a { padding: 12px 16px; }

            .page-hero { padding: 48px 24px 56px; }
            .page-hero h1 { font-size: 28px; }
            .page-hero p { font-size: 16px; }

            .content { padding: 40px 24px 64px; }

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

            .footer-top { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .page-hero h1 { font-size: 24px; }
        }
    
        /* Dark Mode */
        [data-theme="dark"] { --navy: #0d0d1a; --navy-light: #0a0f1e; --text-primary: #e4e4e8; --text-secondary: #a0a0b8; --text-muted: #6a6a86; --surface: #1a1a2e; --surface-alt: #16213e; --border: #2a2a4e; --accent: #4d8aff; --accent-hover: #3a75e8; --accent-light: #1a2a4e; }
        [data-theme="dark"] body { background: #1a1a2e; color: #e4e4e8; }
        [data-theme="dark"] .ftc-banner { background: #16213e; border-color: #2a2a4e; color: #6a6a86; }
        [data-theme="dark"] img { opacity: 0.9; }
