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

        :root {
            --bg: #0A0A0B;
            --surface: #141415;
            --elevated: #1E1E20;
            --border: rgba(255,255,255,0.06);
            --accent: #6E56CF;
            --accent-hover: #7C6AD4;
            --text: #EDEDEF;
            --muted: #8B8B8E;
            --dim: #5C5C5F;
            --success: #30A46C;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }

        /* Nav */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1rem 2rem;
            background: rgba(10, 10, 11, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

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

        .logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: var(--text);
            line-height: 0;
        }

        .logo svg {
            display: block;
            height: 28px;
            width: auto;
        }

        .nav-cta {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: var(--accent);
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background 0.15s ease-out;
        }

        .nav-cta:hover {
            background: var(--accent-hover);
        }

        .logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }

        .alpha-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.55rem;
            background: rgba(110, 86, 207, 0.15);
            border: 1px solid rgba(110, 86, 207, 0.4);
            color: #C7B7F5;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1;
        }

        /* Inline section links in the nav */
        .nav-links {
            display: flex;
            gap: 0.15rem;
            align-items: center;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex: 1 1 auto;
            justify-content: center;
            min-width: 0;
        }

        .nav-links::-webkit-scrollbar {
            display: none;
        }

        .nav-links a {
            flex-shrink: 0;
            padding: 0.35rem 0.7rem;
            color: var(--muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 8px;
            white-space: nowrap;
            transition: color 0.15s ease-out, background 0.15s ease-out;
        }

        .nav-links a:hover {
            color: var(--text);
            background: var(--elevated);
        }

        /* Hamburger toggle (mobile only) */
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 0.35rem 0.45rem;
            border-radius: 8px;
            cursor: pointer;
            margin-left: 0.5rem;
            line-height: 0;
        }

        .nav-toggle:hover {
            background: var(--elevated);
            border-color: rgba(255, 255, 255, 0.12);
        }

        @media (max-width: 640px) {
            nav .inner {
                position: relative;
                gap: 0.5rem;
            }

            .nav-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 0.6rem);
                right: 0;
                flex-direction: column;
                align-items: stretch;
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: 12px;
                padding: 0.4rem;
                min-width: 200px;
                gap: 0.1rem;
                box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
                z-index: 101;
                overflow: visible;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links a {
                padding: 0.65rem 0.85rem;
                font-size: 0.95rem;
            }
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 7.5rem 2rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(110, 86, 207, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.9rem;
            background: rgba(110, 86, 207, 0.12);
            border: 1px solid rgba(110, 86, 207, 0.35);
            color: #C7B7F5;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #A78BFA;
            box-shadow: 0 0 8px rgba(167, 139, 250, 0.7);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-intro {
            font-size: 1.05rem;
            color: var(--muted);
            font-weight: 400;
            max-width: 560px;
            margin: 0 auto 1.75rem;
            line-height: 1.6;
        }

        .hero-tagline {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin: 0 auto 1.5rem;
            display: flex;
            justify-content: center;
            gap: clamp(1rem, 3vw, 2.5rem);
            flex-wrap: wrap;
            max-width: 900px;
        }

        .hero-tagline .word {
            color: var(--muted);
            cursor: pointer;
            transition: color 0.35s ease;
            user-select: none;
        }

        .hero-tagline .word:hover {
            color: var(--text);
        }

        .hero-tagline .word.active {
            color: var(--accent);
        }

        .hero-diagrams {
            display: grid;
            width: 100%;
            max-width: 900px;
            margin: 0 auto 1.75rem;
            overflow: hidden;
        }

        .hero-diagrams > .hero-graphic {
            grid-row: 1;
            grid-column: 1;
            transform: translateX(100%);
            opacity: 0;
            transition: transform 0.7s ease, opacity 0.7s ease;
            pointer-events: none;
        }

        .hero-diagrams > .hero-graphic.active {
            transform: translateX(0);
            opacity: 1;
            pointer-events: auto;
        }

        .hero-diagrams > .hero-graphic.leaving {
            transform: translateX(-100%);
            opacity: 0;
        }

        .hero-diagrams > .hero-graphic.snap {
            transition: none;
        }

        .hero-graphic {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .hero-graphic svg {
            width: 100%;
            height: auto;
            max-width: 860px;
            display: block;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: var(--accent);
            color: #fff;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.15s ease-out;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 2rem;
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.15s ease-out;
        }

        .btn-secondary:hover {
            background: var(--elevated);
            transform: translateY(-1px);
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* How it works */
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .step {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: border-color 0.15s ease-out;
        }

        .step:hover {
            border-color: rgba(110, 86, 207, 0.3);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(110, 86, 207, 0.15);
            color: var(--accent);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .step h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .step p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .features.cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .features.cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .feature {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
        }

        .feature-icon {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Feature matrix */
        .matrix {
            margin-top: 3rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
        }

        .matrix-row {
            display: grid;
            grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
            border-top: 1px solid var(--border);
        }

        .matrix-row:first-child {
            border-top: none;
        }

        .matrix-cell {
            padding: 1.25rem 1.25rem;
            border-left: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            justify-content: center;
        }

        .matrix-cell:first-child {
            border-left: none;
        }

        .matrix-head .matrix-cell {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            padding-top: 1rem;
            padding-bottom: 1rem;
            background: var(--elevated);
        }

        .matrix-feature strong {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
        }

        .matrix-feature span {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.5;
        }

        .matrix-yes {
            color: var(--success);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .matrix-no {
            color: var(--dim);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .matrix-note {
            font-size: 0.8rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* Platform note */
        .platform-note {
            margin-top: 3rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .platform-note .icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 0.1rem;
        }

        .platform-note h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .platform-note p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .platform-note ul {
            margin-top: 0.5rem;
            padding-left: 1.1rem;
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .platform-note ul li {
            margin-top: 0.25rem;
        }

        /* Inline icon (used in copy) */
        .inline-icon {
            display: inline-block;
            vertical-align: -0.2em;
            margin: 0 0.15em;
            color: var(--accent);
        }

        /* Showcase */
        .showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .showcase-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.15s ease-out;
            cursor: pointer;
        }

        .showcase-card:hover {
            border-color: rgba(110, 86, 207, 0.3);
        }

        .showcase-card .showcase-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(110, 86, 207, 0.15);
            margin-bottom: 1.25rem;
        }

        .showcase-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
        }

        .showcase-card p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
            flex: 1;
            margin-bottom: 1.5rem;
        }

        .showcase-card .prompt {
            background: rgba(110, 86, 207, 0.08);
            border-left: 3px solid var(--accent);
            border-radius: 4px;
            padding: 0.75rem 1rem;
            margin-bottom: 1.25rem;
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--text);
            font-style: italic;
            height: 9.5rem;
            display: flex;
            flex-direction: column;
        }

        .showcase-card .prompt-label {
            display: block;
            font-style: normal;
            font-weight: 600;
            font-size: 0.78rem;
            color: var(--muted);
            margin-bottom: 0.35rem;
            flex-shrink: 0;
        }

        .showcase-card .prompt-text {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(110, 86, 207, 0.4) transparent;
        }

        .showcase-card .prompt-text::-webkit-scrollbar {
            width: 6px;
        }

        .showcase-card .prompt-text::-webkit-scrollbar-track {
            background: transparent;
        }

        .showcase-card .prompt-text::-webkit-scrollbar-thumb {
            background: rgba(110, 86, 207, 0.4);
            border-radius: 3px;
        }

        .showcase-card .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-bottom: 1rem;
        }

        .showcase-card .tag {
            display: inline-block;
            padding: 0.18rem 0.6rem;
            border: 1px solid rgba(110, 86, 207, 0.4);
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #C7B7F5;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            background: rgba(110, 86, 207, 0.08);
            text-decoration: none;
            line-height: 1.4;
        }

        a.tag {
            transition: background 0.15s ease-out, border-color 0.15s ease-out;
        }

        a.tag:hover {
            background: rgba(110, 86, 207, 0.18);
            border-color: rgba(110, 86, 207, 0.6);
        }

        /* Glossary footnote */
        .glossary {
            max-width: 720px;
            margin: 0 auto;
            padding: 2.5rem 2rem 1rem;
            text-align: center;
        }

        .glossary dl {
            display: grid;
            gap: 0.5rem;
        }

        .glossary dt {
            font-weight: 600;
            color: var(--text);
            font-size: 0.85rem;
        }

        .glossary dd {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Inline glossary link */
        a.glossary-link {
            color: var(--accent);
            text-decoration: none;
            border-bottom: 1px dotted rgba(110, 86, 207, 0.5);
            transition: color 0.15s ease-out, border-color 0.15s ease-out;
        }

        a.glossary-link:hover {
            color: var(--accent-hover);
            border-bottom-color: var(--accent-hover);
        }

        .showcase-card .try-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            align-self: flex-start;
            transition: color 0.15s ease-out;
        }

        .showcase-card .try-link:hover {
            color: var(--accent-hover);
        }

        .showcase-coming {
            background: transparent;
            border: 1px dashed var(--border);
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--muted);
            min-height: 220px;
        }

        .showcase-coming .showcase-coming-dots {
            font-size: 1.4rem;
            letter-spacing: 0.25em;
            color: var(--dim);
            margin-bottom: 0.6rem;
        }

        .showcase-coming strong {
            color: var(--text);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .showcase-coming p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--muted);
            max-width: 220px;
        }

        @media (max-width: 900px) {
            .showcase {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .showcase {
                grid-template-columns: 1fr;
            }

            .showcase-card {
                padding: 1.5rem;
            }
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 2rem;
        }

        .cta-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* QR Code (inline with hero buttons) */
        .qr-block {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.6rem;
        }

        .qr-block svg {
            width: 64px;
            height: 64px;
            padding: 6px;
            background: #fff;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .qr-block span {
            color: var(--dim);
            font-size: 0.8rem;
            line-height: 1.3;
            max-width: 110px;
        }

        @media (max-width: 768px) {
            .qr-block {
                display: none;
            }
        }

        /* Powered by */
        .powered-by {
            text-align: center;
            padding: 3.5rem 2rem;
            border-top: 1px solid var(--border);
        }

        .powered-by p {
            color: var(--muted);
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .powered-by .claude {
            color: var(--text);
            font-weight: 700;
            background: linear-gradient(135deg, #C7B7F5 0%, #A78BFA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .powered-by .claude-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #A78BFA;
            box-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
        }

        /* Footer */
        footer {
            padding: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        footer p {
            color: var(--dim);
            font-size: 0.8rem;
        }

        footer a {
            color: var(--dim);
            text-decoration: underline;
            text-underline-offset: 2px;
            transition: color 0.15s;
        }

        footer a:hover {
            color: var(--muted);
        }

        /* Tablet */
        @media (max-width: 900px) {
            .steps,
            .features,
            .features.cols-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            section {
                padding: 4rem 1.5rem;
            }

            .hero {
                padding: 7rem 1.5rem 3.5rem;
            }
        }

        /* Mobile */
        @media (max-width: 640px) {
            nav {
                padding: 0.75rem 1rem;
            }

            .section-nav-inner {
                padding: 0.4rem 1rem;
                gap: 0.15rem;
                justify-content: flex-start;
            }

            .section-nav a {
                padding: 0.35rem 0.6rem;
                font-size: 0.8rem;
            }

            .section-nav::after {
                opacity: 1;
            }

            .hero {
                padding: 6.5rem 1.25rem 3rem;
                min-height: auto;
            }

            .hero-intro {
                font-size: 0.98rem;
                margin-bottom: 1.25rem;
            }

            .hero-tagline {
                gap: 0.5rem;
                margin-bottom: 1rem;
            }

            .hero-diagrams {
                max-width: 100%;
                margin-bottom: 1.25rem;
            }

            .hero-graphic {
                padding: 0.4rem;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                padding: 0.85rem 1.5rem;
            }

            section {
                padding: 3rem 1.25rem;
            }

            .step,
            .feature {
                padding: 1.5rem;
            }

            .steps,
            .features,
            .features.cols-3,
            .features.cols-2 {
                grid-template-columns: 1fr;
            }

            .platform-note {
                flex-direction: column;
                gap: 0.75rem;
            }

            .matrix {
                background: transparent;
                border: none;
                border-radius: 0;
                overflow: visible;
                margin-top: 2rem;
                display: flex;
                flex-direction: column;
                gap: 0.85rem;
            }

            .matrix-row {
                display: block;
                background: var(--surface);
                border: 1px solid var(--border);
                border-radius: 12px;
                padding: 1.1rem 1.1rem 0.4rem;
            }

            .matrix-row.matrix-head {
                display: none;
            }

            .matrix-cell {
                display: block;
                border: none;
                padding: 0;
            }

            .matrix-feature {
                padding-bottom: 0.85rem;
            }

            .matrix-feature strong {
                display: block;
                font-size: 1.05rem;
                margin-bottom: 0.3rem;
            }

            .matrix-row:not(.matrix-head) .matrix-cell:not(:first-child) {
                display: grid;
                grid-template-columns: 80px 1fr;
                column-gap: 0.75rem;
                row-gap: 0.15rem;
                align-items: center;
                padding: 0.55rem 0;
                border-top: 1px solid var(--border);
            }

            .matrix-row:not(.matrix-head) .matrix-cell:not(:first-child)::before {
                content: attr(data-label);
                color: var(--muted);
                font-size: 0.72rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1.2px;
            }

            .matrix-yes,
            .matrix-no {
                font-size: 0.98rem;
            }

            .matrix-note {
                grid-column: 2;
                font-size: 0.8rem;
            }
        }

/* Keep reading link — floats to the top-right of the section header */
.keep-reading {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0.5rem 1rem;
    color: var(--accent);
    background: rgba(110, 86, 207, 0.08);
    border: 1px solid rgba(110, 86, 207, 0.35);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.keep-reading:hover {
    background: rgba(110, 86, 207, 0.18);
    border-color: rgba(110, 86, 207, 0.6);
    color: #C7B7F5;
}

@media (max-width: 640px) {
    .keep-reading {
        float: none;
        display: block;
        margin: 0 0 1.5rem 0;
        text-align: center;
    }
}

/* Active nav link (current page) */
.nav-links a.active {
    color: #C7B7F5;
    background: rgba(110, 86, 207, 0.15);
}

.nav-links a.active:hover {
    color: #C7B7F5;
    background: rgba(110, 86, 207, 0.22);
}
