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

        :root {
            --bg: #0A0F0D;
            --bg-light: #0F1512;
            --bg-card: #121A16;
            --bg-card-hover: #1A2620;
            --gold: #34D399;
            --gold-dim: rgba(52, 211, 153, 0.12);
            --gold-glow: rgba(52, 211, 153, 0.3);
            --blue: #6EE7B7;
            --blue-dim: rgba(110, 231, 183, 0.12);
            --white: #F0FDF4;
            --text: #E2E8F0;
            --text-secondary: #94A3B8;
            --text-muted: #64748B;
            --border: rgba(255, 255, 255, 0.06);
            --border-light: rgba(255, 255, 255, 0.1);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
            --radius: 16px;
            --radius-sm: 10px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        ::selection {
            background: rgba(52, 211, 153, 0.25);
            color: var(--white);
        }

        .heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            line-height: 1.15;
        }

        .heading-gradient {
            background: linear-gradient(135deg, #F0FDF4 30%, #34D399 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @property --border-angle {
            syntax: '<angle>';
            initial-value: 0deg;
            inherits: false;
        }

        .glow-card {
            position: relative;
        }

        .glow-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            background: conic-gradient(from var(--border-angle), transparent 60%, var(--gold) 80%, transparent 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s;
            animation: borderRotate 4s linear infinite;
        }

        .glow-card:hover::before { opacity: 1; }

        @keyframes borderRotate {
            to { --border-angle: 360deg; }
        }

        /* Background */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            background:
                radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                radial-gradient(ellipse 800px 600px at 30% 30%, rgba(52, 211, 153, 0.06), transparent),
                radial-gradient(ellipse 600px 800px at 70% 60%, rgba(110, 231, 183, 0.04), transparent);
            background-size: 32px 32px, 100% 100%, 100% 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* --- NAV --- */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 0 24px;
            transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
        }

        .nav.scrolled {
            background: rgba(10, 15, 13, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 var(--border);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-wordmark {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .nav-wordmark span { color: var(--gold); }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover,
        .nav-link.active { color: var(--white); }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: 0;
            font-family: inherit;
            cursor: pointer;
            padding: 0;
        }

        .nav-dropdown > .nav-link::after {
            content: '';
            width: 6px;
            height: 6px;
            border-right: 1.5px solid currentColor;
            border-bottom: 1.5px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            opacity: 0.7;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 14px);
            left: 50%;
            min-width: 250px;
            transform: translateX(-50%) translateY(8px);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: rgba(247, 248, 252, 0.98);
            border: 1px solid var(--border-light);
            border-radius: 10px;
            padding: 8px;
            box-shadow: var(--shadow-md);
            transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
        }

        .nav-dropdown-menu::before {
            content: '';
            position: absolute;
            top: -14px;
            left: 0;
            right: 0;
            height: 14px;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.84rem;
            font-weight: 700;
            padding: 10px 12px;
            border-radius: 8px;
        }

        .nav-dropdown-menu a:hover {
            color: var(--white);
            background: var(--gold-dim);
        }

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn-ghost {
            color: var(--text-secondary);
            background: none;
            border: 1px solid var(--border-light);
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-ghost:hover {
            color: var(--white);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .btn-gold {
            background: linear-gradient(135deg, #34D399, #10B981);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
            box-shadow: 0 2px 12px rgba(52, 211, 153, 0.25);
        }

        .btn-gold:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(52, 211, 153, 0.35);
        }

        .btn-gold-lg {
            padding: 14px 36px;
            font-size: 1rem;
            border-radius: 10px;
        }

        .nav-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .nav-mobile {
            display: none;
            position: fixed;
            top: 72px;
            left: 0; right: 0;
            background: rgba(10, 15, 13, 0.98);
            backdrop-filter: blur(20px);
            padding: 24px;
            border-bottom: 1px solid var(--border);
            z-index: 99;
        }

        .nav-mobile.open { display: block; }

        .nav-mobile a {
            display: block;
            color: var(--text);
            text-decoration: none;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 500;
            border-bottom: 1px solid var(--border);
        }

        .nav-mobile a:last-child { border: none; }

        /* --- BLOG HERO --- */
        .blog-hero {
            padding: 140px 0 60px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .blog-hero .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-dim);
            border: 1px solid rgba(52, 211, 153, 0.2);
            color: var(--gold);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .blog-hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .blog-hero .sub {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* --- BLOG FILTERS --- */
        .blog-filters {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 48px;
            position: relative;
            z-index: 1;
        }

        .blog-filter {
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
        }

        .blog-filter:hover {
            color: var(--white);
            border-color: var(--border-light);
        }

        .blog-filter.active {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
        }

        /* --- BLOG GRID --- */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

        .blog-card {
            display: block;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .blog-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--border-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .blog-card-category {
            display: inline-block;
            background: var(--gold-dim);
            color: var(--gold);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .blog-card h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        .blog-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-card-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .blog-card-meta span + span::before {
            content: '\00B7';
            margin: 0 8px;
        }

        /* --- BOTTOM CTA --- */
        .blog-cta {
            padding: 80px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .blog-cta h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            letter-spacing: -0.5px;
            max-width: 600px;
            margin: 0 auto 12px;
        }

        .blog-cta .sub {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 32px;
        }

        /* --- FOOTER --- */
        .footer {
            border-top: 1px solid var(--border);
            padding: 48px 0 32px;
            position: relative;
            z-index: 1;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-left {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-left a {
            color: var(--text-secondary);
            text-decoration: none;
            margin-left: 12px;
        }

        .footer-left a:hover { color: var(--gold); }

        .footer-right {
            display: flex;
            gap: 16px;
        }

        .footer-right a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.2s;
        }

        .footer-right a:hover { color: var(--gold); }

        /* --- BACK TO TOP --- */
        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            cursor: pointer;
            z-index: 80;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
        }

        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            color: var(--gold);
            border-color: var(--gold-dim);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-buttons .btn-ghost { display: none; }
            .nav-hamburger { display: block; }
            .blog-hero { padding: 110px 0 40px; }
            .blog-grid { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .blog-hero h1 { font-size: 1.7rem; }
            .blog-card { padding: 24px; }
        }

        @media print {
            .nav, .back-to-top { display: none !important; }
            body { background: white; color: black; }
            body::before { display: none; }
        }
