        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { overflow-x: hidden; width: 100%; }

        :root {
            --bg-0: #05070a;
            --bg-1: #0b1020;
            --bg-2: #11162a;
            --blue-1: #38bdf8;
            --blue-2: #2563eb;
            --cyan-1: #67e8f9;
            --violet-1: #8b5cf6;
            --violet-2: #a78bfa;
            --text-strong: rgba(255, 255, 255, 0.96);
            --text-soft: rgba(255, 255, 255, 0.72);
            --text-dim: rgba(255, 255, 255, 0.52);
            --line-soft: rgba(255, 255, 255, 0.08);
            --glass-bg: rgba(255, 255, 255, 0.04);
            --glass-border: rgba(255, 255, 255, 0.08);
            --shadow-blue: rgba(56, 189, 248, 0.22);
            --shadow-violet: rgba(139, 92, 246, 0.18);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background:
                radial-gradient(900px 700px at 72% 24%, rgba(56,189,248,0.16) 0%, rgba(139,92,246,0.14) 22%, rgba(37,99,235,0.08) 40%, rgba(5,7,10,0) 68%),
                radial-gradient(720px 560px at 28% 12%, rgba(103,232,249,0.07) 0%, rgba(139,92,246,0.05) 28%, rgba(5,7,10,0) 72%),
                linear-gradient(180deg, #06080d 0%, #05070a 32%, #070b14 100%);
            color: var(--text-strong);
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        /* ---- Nav ---- */
        .nav {
            height: 72px;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(5, 7, 10, 0.95);
            backdrop-filter: blur(24px) saturate(1.2);
            -webkit-backdrop-filter: blur(24px) saturate(1.2);
            border-bottom: 1px solid var(--line-soft);
        }
        .nav-logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.7rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            gap: 0;
        }
        @media (min-width: 601px) {
            .nav-logo { font-size: 1.9rem; }
        }
        .nav-logo .prompt { color: rgba(255,255,255,0.75); }
        .nav-logo .run { color: rgba(255,255,255,0.95); }
        .nav-logo .lucio {
            background: linear-gradient(90deg, #67e8f9 0%, #a78bfa 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-style: italic;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-soft);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--text-strong); }
        .nav-cta-link {
            height: 36px;
            padding: 0 18px;
            border-radius: 999px;
            background: linear-gradient(180deg, rgba(103,232,249,0.22), rgba(56,189,248,0.16)), linear-gradient(90deg, #22d3ee, #3b82f6 55%, #8b5cf6);
            color: white !important;
            font-weight: 600 !important;
            font-size: 0.8rem !important;
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(103, 232, 249, 0.24);
            box-shadow: 0 4px 16px rgba(56, 189, 248, 0.2);
        }
        /* Mobile hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            gap: 4px;
        }
        .hamburger span {
            width: 20px;
            height: 2px;
            background: white;
            border-radius: 1px;
            transition: all 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
        }
        .mobile-nav.active { right: 0; }
        .mobile-nav a {
            display: block;
            padding: 16px 0;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: color 0.2s;
        }
        .mobile-nav a:hover { color: var(--cyan-1); }
        .mobile-nav .mobile-cta {
            margin-top: 30px;
            padding: 14px 20px;
            background: linear-gradient(135deg, #67e8f9, #3b82f6);
            color: white;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 768px) {
            .nav { padding: 0 20px; height: 64px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
        }

        /* ---- Hero ---- */
        .hero {
            position: relative;
            min-height: 92vh; /* homepage only */
            overflow: hidden;
            isolation: isolate;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(620px 620px at 74% 30%, rgba(56,189,248,0.18) 0%, rgba(103,232,249,0.12) 16%, rgba(139,92,246,0.14) 34%, rgba(5,7,10,0) 68%);
            filter: blur(20px);
            z-index: -2;
        }
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 32%);
            z-index: -1;
        }

        .hero-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 148px 32px 96px;
            position: relative;
        }
        .hero-copy {
            width: 560px;
            max-width: 100%;
            position: relative;
            z-index: 2;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 32px;
            padding: 0 14px;
            margin-bottom: 20px;
            border-radius: 999px;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: rgba(255,255,255,0.78);
            font-size: 13px;
            font-weight: 500;
        }
        .eyebrow .pulse {
            width: 7px; height: 7px;
            background: var(--cyan-1);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(34,211,238,0.6);
            animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

        .hero-copy h1 {
            margin: 0 0 20px;
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -0.04em;
            font-weight: 700;
            max-width: 540px;
        }
        .text-gradient-lucio {
            background: linear-gradient(90deg, #67e8f9 0%, #38bdf8 28%, #8b5cf6 70%, #c4b5fd 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-copy > p {
            margin: 0 0 28px;
            font-size: 19px;
            line-height: 1.55;
            color: var(--text-soft);
            max-width: 500px;
        }

        .cta-row {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
        }
        .btn-primary {
            height: 52px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(103, 232, 249, 0.24);
            background: linear-gradient(180deg, rgba(103,232,249,0.22), rgba(56,189,248,0.16)), linear-gradient(90deg, #22d3ee, #3b82f6 55%, #8b5cf6);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            font-family: inherit;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 192px;
            box-shadow: 0 8px 24px rgba(56,189,248,0.24), 0 0 20px rgba(139,92,246,0.12);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(56,189,248,0.3), 0 0 28px rgba(139,92,246,0.16); }
        .btn-secondary {
            height: 52px;
            padding: 0 22px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.88);
            backdrop-filter: blur(14px);
            font-weight: 500;
            font-size: 0.95rem;
            font-family: inherit;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 176px;
            transition: border-color 0.2s;
        }
        .btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

        .trust-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255,255,255,0.52);
        }
        .status-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--cyan-1);
            box-shadow: 0 0 12px rgba(34,211,238,0.6);
            flex-shrink: 0;
        }

        /* ---- Orb ---- */
        .lucio-orb {
            position: absolute;
            right: -120px;
            top: 110px;
            width: 760px;
            height: 760px;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.96;
            filter: saturate(1.08);
            background:
                radial-gradient(circle at 42% 38%, rgba(255,255,255,0.88) 0%, rgba(103,232,249,0.72) 7%, rgba(56,189,248,0.42) 16%, rgba(139,92,246,0.28) 28%, rgba(15,23,42,0.20) 48%, rgba(5,7,10,0) 72%),
                radial-gradient(circle at 58% 62%, rgba(139,92,246,0.34) 0%, rgba(37,99,235,0.18) 22%, rgba(5,7,10,0) 56%);
            z-index: 0;
        }
        .lucio-orb::before {
            content: "";
            position: absolute;
            inset: 16%;
            border-radius: 50%;
            background: radial-gradient(circle at 38% 34%, rgba(255,255,255,0.84) 0%, rgba(103,232,249,0.56) 10%, rgba(56,189,248,0.24) 24%, rgba(139,92,246,0.16) 42%, rgba(5,7,10,0.10) 60%, rgba(5,7,10,0) 74%);
            filter: blur(4px);
        }
        .lucio-orb::after {
            content: "";
            position: absolute;
            inset: -10%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, rgba(139,92,246,0.12) 24%, rgba(5,7,10,0) 62%);
            filter: blur(40px);
        }

        /* Halo rings */
        .lucio-ring {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 0 40px rgba(56,189,248,0.08), inset 0 0 24px rgba(255,255,255,0.02);
            z-index: 0;
        }
        .lucio-ring.r1 { width: 620px; height: 620px; right: -40px; top: 180px; opacity: 0.42; filter: blur(0.2px); }
        .lucio-ring.r2 { width: 760px; height: 760px; right: -120px; top: 110px; opacity: 0.2; }
        .lucio-ring.r3 { width: 900px; height: 900px; right: -190px; top: 40px; opacity: 0.12; }

        /* Mobile hero */
        @media (max-width: 768px) {
            .hero { min-height: auto; }
            .hero-inner { padding: 108px 20px 56px; }
            .hero-copy { width: 100%; }
            .hero-copy h1 { font-size: 40px; line-height: 1.03; max-width: 100%; }
            .hero-copy > p { font-size: 16px; max-width: 100%; }
            .cta-row { flex-direction: column; }
            .btn-primary, .btn-secondary { width: 100%; min-width: 0; height: 50px; }
            .lucio-orb { width: 420px; height: 420px; right: -110px; top: 80px; opacity: 0.6; filter: saturate(1.08) blur(8px); }
            .lucio-ring.r1 { width: 360px; height: 360px; right: -40px; top: 120px; opacity: 0.25; }
            .lucio-ring.r2 { width: 460px; height: 460px; right: -90px; top: 80px; opacity: 0.12; }
            .lucio-ring.r3 { display: none; }
        }

        /* ---- Sections ---- */
        .section {
            padding: 80px 0;
            position: relative;
        }
        .section-inner {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 32px;
        }
        @media (max-width: 600px) { .section-inner { padding: 0 20px; } .section { padding: 56px 0; } }

        .section-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--cyan-1);
            margin-bottom: 12px;
            font-weight: 600;
        }
        .section h2 {
            font-size: clamp(1.4rem, 3vw, 1.75rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .section-desc {
            color: var(--text-soft);
            margin-bottom: 40px;
            max-width: 560px;
            font-size: 0.95rem;
        }
        .section-divider {
            height: 1px;
            background: var(--line-soft);
            max-width: 800px;
            margin: 0 auto;
        }

        /* ---- Glass Card ---- */
        .glass-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.02) inset, 0 0 30px rgba(56,189,248,0.04);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 24px;
            padding: 32px;
        }
        .glass-card p {
            color: var(--text-soft);
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
        .glass-card p:last-child { margin-bottom: 0; }
        .glass-card strong { color: var(--text-strong); }

        /* ---- Journal ---- */
        .journal-entries { display: flex; flex-direction: column; gap: 16px; }
        .journal-entry {
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 24px 28px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: border-color 0.3s;
        }
        .journal-entry:hover { border-color: rgba(56,189,248,0.2); }
        .blog-preview { transition: all 0.2s; }
        .blog-preview:hover { border-color: rgba(56,189,248,0.4) !important; transform: translateX(2px); }
        .journal-date {
            font-size: 0.72rem;
            color: var(--cyan-1);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }
        .journal-entry h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .journal-entry p { color: var(--text-soft); font-size: 0.9rem; }
        .journal-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
        .tag {
            font-size: 0.68rem;
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 500;
        }
        .tag-built { background: rgba(56,189,248,0.1); color: var(--blue-1); border: 1px solid rgba(56,189,248,0.2); }
        .tag-learned { background: rgba(139,92,246,0.1); color: var(--violet-2); border: 1px solid rgba(139,92,246,0.2); }
        .tag-failed { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid rgba(239,68,68,0.18); }
        .tag-revenue { background: rgba(34,197,94,0.08); color: #22c55e; border: 1px solid rgba(34,197,94,0.18); }

        /* ---- Offers ---- */
        .offers-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
        }
        @media (min-width: 700px) {
            .offers-grid { grid-template-columns: repeat(3, 1fr); }
        }
        .offer-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 28px 24px;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            display: flex;
            flex-direction: column;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .offer-card:hover { border-color: rgba(56,189,248,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 40px rgba(56,189,248,0.06); }
        .offer-card.featured {
            border-color: rgba(139,92,246,0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 40px rgba(139,92,246,0.08);
        }
        .offer-card.featured:hover { border-color: rgba(139,92,246,0.5); }
        .offer-emoji { font-size: 1.5rem; margin-bottom: 12px; }
        .offer-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
        .offer-price { font-size: 1.75rem; font-weight: 700; margin: 8px 0 4px; }
        .offer-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-soft); }
        .offer-desc { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 16px; flex: 1; }
        .offer-features { list-style: none; margin: 0 0 20px; }
        .offer-features li { padding: 5px 0; font-size: 0.85rem; color: var(--text-soft); }
        .offer-features li::before { content: "✓ "; color: var(--cyan-1); font-weight: 600; }
        .offer-card.featured .offer-features li::before { color: var(--violet-2); }

        .btn-offer {
            height: 44px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.85rem;
            font-family: inherit;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .btn-offer-outline {
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.88);
        }
        .btn-offer-outline:hover { border-color: rgba(255,255,255,0.2); }
        .btn-offer-violet {
            border: 1px solid rgba(139,92,246,0.3);
            background: linear-gradient(180deg, rgba(139,92,246,0.22), rgba(139,92,246,0.12)), linear-gradient(90deg, #8b5cf6, #a78bfa);
            color: white;
            box-shadow: 0 6px 20px rgba(139,92,246,0.2);
        }
        .btn-offer-violet:hover { transform: translateY(-1px); }

        /* ---- Comparison ---- */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 32px;
            font-size: 0.85rem;
        }
        .compare-table th, .compare-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid var(--line-soft);
        }
        .compare-table th {
            color: var(--text-dim);
            font-weight: 500;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .compare-table td { color: var(--text-soft); }
        .compare-table .check { color: var(--cyan-1); }
        .compare-table .check-v { color: var(--violet-2); }
        @media (max-width: 600px) {
            .compare-table { font-size: 0.78rem; }
            .compare-table th, .compare-table td { padding: 10px 8px; }
        }

        /* ---- CTA Section ---- */
        .cta-section {
            text-align: center;
            padding: 80px 32px 72px;
            position: relative;
        }
        .cta-section h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 16px; }
        .cta-section p { color: var(--text-soft); margin-bottom: 32px; font-size: 0.95rem; max-width: 480px; margin-left: auto; margin-right: auto; }
        .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
        @media (max-width: 600px) {
            .cta-section { padding: 56px 20px; }
            .cta-buttons { flex-direction: column; }
            .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width: 100%; min-width: 0; }
        }

        /* ---- Footer ---- */
        footer {
            padding: 32px 32px;
            border-top: 1px solid var(--line-soft);
            text-align: center;
            color: var(--text-dim);
            font-size: 0.78rem;
        }
        footer a { color: var(--cyan-1); text-decoration: none; }
        @media (max-width: 600px) { footer { padding: 32px 20px; } }

        /* ═══════════════════════════════════════ */
        /* Article Content Styles                  */
        /* ═══════════════════════════════════════ */

        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 32px 80px;
        }
        .article-container .article-meta {
            color: var(--cyan-1);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 16px;
        }
        .article-container h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            line-height: 1.2;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .article-container h2 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-top: 40px;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .article-container h3 {
            font-size: 1.1rem;
            margin-top: 28px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .article-container p {
            margin-bottom: 20px;
            color: var(--text-soft);
            font-size: 0.95rem;
            line-height: 1.75;
        }
        .article-container strong {
            color: var(--text-strong);
        }
        .article-container ul,
        .article-container ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-soft);
        }
        .article-container li {
            margin-bottom: 8px;
            font-size: 0.95rem;
            line-height: 1.65;
        }
        .article-container code {
            background: rgba(56, 189, 248, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
            color: var(--cyan-1);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85em;
        }
        .article-container pre {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--line-soft);
            border-radius: 12px;
            padding: 20px;
            overflow-x: auto;
            margin-bottom: 20px;
        }
        .article-container pre code {
            background: none;
            padding: 0;
            font-size: 0.82rem;
            line-height: 1.6;
        }
        .article-container blockquote {
            padding-left: 20px;
            border-left: 3px solid var(--blue-1);
            color: var(--text-soft);
            margin: 24px 0;
            font-style: italic;
        }
        .article-container img {
            max-width: 100%;
            border-radius: 12px;
            margin: 24px 0;
        }
        .article-container a {
            color: var(--cyan-1);
            text-decoration: none;
            border-bottom: 1px solid rgba(103, 232, 249, 0.3);
            transition: border-color 0.2s;
        }
        .article-container a:hover {
            border-bottom-color: var(--cyan-1);
        }

        /* Article tags */
        .article-tags {
            display: flex;
            gap: 8px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        /* Article CTA */
        .article-cta {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid var(--line-soft);
            text-align: center;
        }
        .article-cta p {
            color: var(--text-soft);
            margin-bottom: 20px;
            text-align: center;
        }
        .article-cta-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .article-cta .btn-primary,
        .article-cta .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            border: none;
            transition: all 0.2s;
        }
        .article-cta .btn-primary {
            background: linear-gradient(180deg, rgba(103,232,249,0.22), rgba(56,189,248,0.16)), linear-gradient(90deg, #22d3ee, #3b82f6 55%, #8b5cf6);
            color: white;
            box-shadow: 0 4px 16px rgba(56, 189, 248, 0.2);
            border: 1px solid rgba(103, 232, 249, 0.24);
        }
        .article-cta .btn-primary:hover { transform: translateY(-1px); }
        .article-cta .btn-secondary {
            border: 1px solid rgba(255,255,255,0.10);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.88);
        }
        .article-cta .btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

        /* CTA Box (for blog post upsells) */
        .cta-box {
            background: linear-gradient(180deg, rgba(139,92,246,0.12) 0%, rgba(139,92,246,0.04) 100%);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 16px;
            padding: 28px;
            margin: 40px 0;
            text-align: center;
        }
        .cta-box h3 {
            margin-top: 0;
            margin-bottom: 8px;
        }
        .cta-box p {
            text-align: center;
        }
        .cta-box .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            background: linear-gradient(90deg, #8b5cf6, #a78bfa);
            color: white;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
            margin-top: 8px;
            transition: all 0.2s;
        }
        .cta-box .btn:hover { transform: translateY(-1px); }

        /* Listing pages (blog index, journal index) */
        .listing-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 120px 32px 80px;
        }
        .listing-container h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .listing-container .listing-desc {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin-bottom: 40px;
        }
        .listing-container a {
            text-decoration: none;
            color: inherit;
        }
        .listing-container a:hover {
            border-bottom: none;
        }

        @media (max-width: 640px) {
            .article-container { padding: 100px 20px 60px; }
            .listing-container { padding: 100px 20px 60px; }
            .article-cta-buttons { flex-direction: column; }
            .article-cta .btn-primary,
            .article-cta .btn-secondary { width: 100%; }
        }

        /* ═══════════════════════════════════════ */
        /* Blog Listing Styles                     */
        /* ═══════════════════════════════════════ */

        .blog-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .blog-hero {
            margin-bottom: 40px;
        }
        .blog-hero h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .blog-subtitle {
            color: var(--text-soft);
            font-size: 0.95rem;
        }
        .post-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 24px 28px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: 16px;
            transition: border-color 0.3s;
        }
        .post-card:hover {
            border-color: rgba(56,189,248,0.2);
        }
        .post-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-strong);
            text-decoration: none;
            letter-spacing: -0.01em;
            display: block;
            margin-bottom: 8px;
            border-bottom: none;
        }
        .post-title:hover {
            color: var(--cyan-1);
            border-bottom: none;
        }
        .post-meta {
            font-size: 0.72rem;
            color: var(--cyan-1);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
        }
        .post-excerpt {
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 14px;
        }
        .post-card .tag {
            font-size: 0.68rem;
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 500;
            background: rgba(56,189,248,0.1);
            color: var(--blue-1);
            border: 1px solid rgba(56,189,248,0.2);
            margin-right: 6px;
        }

        /* Journal Hero */
        .journal-hero {
            margin-bottom: 40px;
        }
        .journal-hero h1 {
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .journal-hero p {
            color: var(--text-soft);
            font-size: 0.95rem;
            max-width: 600px;
        }

        /* Journal entry links */
        .journal-entry {
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .journal-entry h2 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .read-more {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--cyan-1);
        }

        /* AI News listing */
        .ai-news-container {
            max-width: 800px;
            margin: 0 auto;
        }

        /* ═══════════════════════════════════════ */
        /* AI News Styles                          */
        /* ═══════════════════════════════════════ */

        .page-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .breadcrumbs {
            font-size: 0.78rem;
            color: var(--text-dim);
            margin-bottom: 8px;
        }
        .breadcrumbs a {
            color: var(--cyan-1);
            text-decoration: none;
        }
        .breadcrumbs span {
            margin: 0 6px;
        }
        .hero-meta {
            display: flex;
            gap: 20px;
            color: var(--text-soft);
            font-size: 0.85rem;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        /* News sections */
        .section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--line-soft);
        }
        .section-header .emoji {
            font-size: 1.2rem;
        }
        .section-header h2 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
        }
        .section {
            margin-bottom: 40px;
        }

        /* News items */
        .news-item {
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
            transition: border-color 0.3s;
        }
        .news-item:hover {
            border-color: rgba(56,189,248,0.2);
        }
        .news-item h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        .news-item p {
            color: var(--text-soft);
            font-size: 0.9rem;
            line-height: 1.65;
            margin-bottom: 12px;
        }
        .news-meta {
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid var(--line-soft);
        }
        .news-meta .source {
            font-size: 0.78rem;
            color: var(--text-dim);
            margin-bottom: 8px;
        }
        .news-meta .source a {
            color: var(--cyan-1);
            text-decoration: none;
            border-bottom: none;
        }
        .keywords, .keywords-list {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .keyword-tag, .kw-tag {
            font-size: 0.65rem;
            padding: 3px 10px;
            border-radius: 100px;
            font-weight: 500;
            background: rgba(56,189,248,0.08);
            color: var(--blue-1);
            border: 1px solid rgba(56,189,248,0.15);
        }

        /* Signals */
        .signal {
            background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-soft);
        }

        /* Content Opportunities */
        .opportunity {
            background: linear-gradient(180deg, rgba(139,92,246,0.08) 0%, rgba(139,92,246,0.02) 100%);
            border: 1px solid rgba(139,92,246,0.15);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 16px;
        }
        .opportunity h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .opportunity p {
            color: var(--text-soft);
            font-size: 0.88rem;
            margin-bottom: 10px;
        }
        .opportunity-why {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-bottom: 10px;
        }

        /* AI News article tags */
        .tag-breaking {
            background: rgba(239, 68, 68, 0.15);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, 0.25);
        }
        .tag-safe {
            background: rgba(34, 197, 94, 0.12);
            color: #86efac;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }
        .tag-notable {
            background: rgba(56, 189, 248, 0.12);
            color: var(--blue-1);
            border: 1px solid rgba(56, 189, 248, 0.2);
        }

        /* Article sub-elements */
        .article-date {
            color: var(--cyan-1);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .article-reading-time {
            color: var(--text-dim);
            font-size: 0.78rem;
        }
        .article-content p {
            margin-bottom: 20px;
            color: var(--text-soft);
            font-size: 0.95rem;
            line-height: 1.75;
        }
        .article-content h2 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-top: 40px;
            margin-bottom: 16px;
            font-weight: 700;
        }
        .article-content h3 {
            font-size: 1.1rem;
            margin-top: 28px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .article-content ul, .article-content ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-soft);
        }
        .article-content li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .article-content img {
            max-width: 100%;
            border-radius: 12px;
        }
        .article-content strong {
            color: var(--text-strong);
        }
        .post-nav {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--line-soft);
        }
        .post-nav a {
            color: var(--cyan-1);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* ═══════════════════════════════════════ */
        /* Spacing Tightening                      */
        /* ═══════════════════════════════════════ */

        .article-container p {
            margin-bottom: 16px;
        }
        .article-container h2 {
            margin-top: 32px;
            margin-bottom: 12px;
        }
        .article-container h3 {
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .article-container ul,
        .article-container ol {
            margin-bottom: 16px;
        }
        .article-container li {
            margin-bottom: 6px;
        }
        .article-container blockquote {
            margin: 20px 0;
        }

        /* Non-homepage hero override */
        .listing-container .hero,
        .page-container .hero {
            min-height: auto !important;
            overflow: visible !important;
            isolation: auto !important;
        }
        .listing-container .hero::before,
        .listing-container .hero::after,
        .page-container .hero::before,
        .page-container .hero::after {
            display: none !important;
        }
        .page-container {
            padding: 0;
        }
