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

        :root {
            --cyan: #22d3ee;
            --cyan-soft: #a5f3fc;
            --cyan-glow: rgba(34, 211, 238, 0.35);
            --bg-deep: #05070a;
            --bg-card: #0e131f;
            --border-subtle: #1e2a3e;
            --text-primary: #eef2ff;
            --text-secondary: #9ca8bf;
            --text-muted: #6c86a3;
            --radius-lg: 28px;
            --radius-full: 60px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
            background-color: #0a0c12;
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ── Header ── */
        .header {
            background: rgba(10, 12, 18, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(56, 189, 248, 0.12);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 16px 0;
            gap: 18px;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            letter-spacing: -1px;
            background: linear-gradient(120deg, #a5f3fc, #22d3ee);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            white-space: nowrap;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            font-weight: 500;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #cbd5e6;
            transition: var(--transition-fast);
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--cyan);
            text-shadow: 0 0 6px var(--cyan-glow);
        }
        .btn-outline-light {
            background: transparent;
            border: 1px solid var(--cyan);
            color: var(--cyan);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-weight: 500;
            transition: var(--transition-fast);
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-light:hover {
            background: rgba(34, 211, 238, 0.1);
            box-shadow: 0 0 10px var(--cyan-glow);
        }

        /* ── Hero ── */
        .page-hero {
            padding: 70px 0 40px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, #11161f, #05070a);
            border-bottom: 1px solid #1e293b;
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4.5vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #f0f9ff, #7dd3fc);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 12px;
        }
        .page-hero .subtitle {
            font-size: 1.1rem;
            color: #8a99b4;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ── Content Sections ── */
        .content-section {
            padding: 70px 0;
            background: #05080f;
            border-bottom: 1px solid #111826;
        }
        .content-section.alt-bg {
            background: #080b14;
        }
        .section-heading {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #dce6f5;
            letter-spacing: -0.3px;
        }
        .prose {
            max-width: 860px;
            margin: 0 auto;
            color: #9aaebe;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        .prose p {
            margin-bottom: 14px;
        }
        .prose strong {
            color: #cbd5e6;
            font-weight: 600;
        }
        .prose h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #c5d4eb;
            margin: 28px 0 12px;
        }
        .highlight-box {
            background: #0e131f;
            border-left: 3px solid var(--cyan);
            padding: 16px 20px;
            border-radius: 0 16px 16px 0;
            margin: 20px 0;
            color: #b9c8df;
            font-style: italic;
        }

        /* ── Protection Cards ── */
        .protection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }
        .protect-card {
            background: #0d111c;
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid #1a2436;
            text-align: center;
            transition: var(--transition-fast);
        }
        .protect-card:hover {
            border-color: #33475e;
            background: #101622;
        }
        .protect-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .protect-card h4 {
            font-weight: 700;
            color: #dce6f5;
            margin-bottom: 8px;
        }
        .protect-card p {
            font-size: 0.85rem;
            color: #7e90ab;
        }

        /* ── Comparison Table ── */
        .table-wrapper {
            overflow-x: auto;
            margin: 28px 0;
            border-radius: 20px;
            border: 1px solid #1e2a3e;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #0e131f;
            min-width: 500px;
        }
        th {
            background: #0f172a;
            color: #a5f3fc;
            font-weight: 600;
            padding: 14px 18px;
            text-align: left;
            font-size: 0.9rem;
            border-bottom: 1px solid #1e2a3e;
        }
        td {
            padding: 14px 18px;
            font-size: 0.85rem;
            color: #9aaebe;
            border-bottom: 1px solid #111826;
        }
        .badge-risk {
            color: #f87171;
            font-weight: 600;
        }
        .badge-safe {
            color: #2dd4bf;
            font-weight: 600;
        }

        /* ── Internal Links ── */
        .internal-links {
            padding: 50px 0;
            background: #05080f;
            text-align: center;
            border-top: 1px solid #111826;
        }
        .links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-top: 20px;
        }
        .link-pill {
            background: #0e131f;
            border: 1px solid #1e2a3e;
            border-radius: 30px;
            padding: 12px 24px;
            color: #cbd5e6;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition-fast);
            font-size: 0.9rem;
        }
        .link-pill:hover {
            border-color: var(--cyan);
            box-shadow: 0 6px 16px -6px rgba(34,211,238,0.2);
            color: #fff;
        }

        /* ── CTA ── */
        .cta-block {
            background: linear-gradient(95deg, #0b1120, #03070f);
            border-top: 1px solid #1e2a3a;
            padding: 60px 0;
            text-align: center;
        }
        .cta-block h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .cta-block p {
            color: #8a99b4;
            margin-bottom: 22px;
        }
        .btn-primary-glow {
            background: #0f172a;
            border: 1.5px solid var(--cyan);
            color: #e2efff;
            padding: 12px 30px;
            border-radius: 44px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-fast);
            box-shadow: 0 0 8px rgba(34,211,238,0.15);
            display: inline-block;
        }
        .btn-primary-glow:hover {
            background: rgba(34,211,238,0.08);
            border-color: #67e8f9;
            box-shadow: 0 0 20px var(--cyan-glow);
            transform: scale(1.02);
        }

        /* ── Footer ── */
        .footer {
            background: #020408;
            padding: 50px 0 28px;
            border-top: 1px solid #111826;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 38px;
        }
        .footer-col h5 {
            font-weight: 600;
            color: #b9c8df;
            margin-bottom: 10px;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .footer-col a {
            color: #6c86a3;
            text-decoration: none;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 6px;
            transition: var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--cyan);
        }
        .copyright {
            text-align: center;
            margin-top: 42px;
            color: #4c617b;
            font-size: 0.8rem;
        }

        @media (max-width: 780px) {
            .page-hero h1 {
                font-size: 1.9rem;
            }
            .nav-links {
                gap: 16px;
            }
            .section-heading {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .nav-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            .container {
                padding: 0 16px;
            }
            .protect-card {
                padding: 18px 14px;
            }
        }