    :root {
        --bg: #080808;
        --surface: #111111;
        --surface2: #181818;
        --border: rgba(255, 255, 255, 0.07);
        --border-hi: rgba(255, 255, 255, 0.13);
        --text: #f2f0e8;
        --muted: rgba(242, 240, 232, 0.45);
        --accent: #c8f060;
        --accent2: #60f0c8;
        --accent-dim: rgba(200, 240, 96, 0.12);
        --font-serif: 'Instrument Serif', Georgia, serif;
        --font-sans: 'Geist', system-ui, sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        background: var(--bg);
        color: var(--text);
        font-family: var(--font-sans);
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE OVERLAY ─── */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1000;
        opacity: 0.6;
    }

    /* ─── NAV ─── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5vw;
        height: 68px;
        border-bottom: 1px solid var(--border);
        background: rgba(8, 8, 8, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text);
    }

    .nav-logo-text {
        font-family: var(--font-sans);
        font-weight: 600;
        font-size: 20px;
        letter-spacing: -0.03em;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
    }

    .nav-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.01em;
        transition: color 0.2s;
        cursor: pointer;
    }

    .nav-links a:hover {
        color: var(--text);
    }

    .nav-cta {
        background: var(--accent);
        color: #080808 !important;
        padding: 9px 20px;
        border-radius: 8px;
        font-weight: 500 !important;
        font-size: 14px !important;
        transition: opacity 0.2s, transform 0.15s !important;
    }

    .nav-cta:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

    /* ─── HERO ─── */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 5vw 80px;
        position: relative;
        overflow: hidden;
    }

    /* Radial glow behind hero */
    .hero::after {
        content: '';
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 600px;
        background: radial-gradient(ellipse at center, rgba(200, 240, 96, 0.06) 0%, rgba(96, 240, 200, 0.04) 40%, transparent 70%);
        pointer-events: none;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--accent-dim);
        border: 1px solid rgba(200, 240, 96, 0.25);
        border-radius: 100px;
        padding: 6px 16px 6px 10px;
        font-size: 13px;
        color: var(--accent);
        margin-bottom: 40px;
        animation: fadeUp 0.6s ease both;
    }

    .hero-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(0.8);
        }
    }

    .hero h1 {
        font-family: var(--font-serif);
        font-size: clamp(48px, 7vw, 92px);
        font-weight: 400;
        line-height: 1.05;
        letter-spacing: -0.02em;
        max-width: 900px;
        animation: fadeUp 0.7s 0.1s ease both;
    }

    .hero h1 em {
        font-style: italic;
        color: var(--accent);
    }

    .hero-sub {
        font-size: clamp(16px, 2vw, 19px);
        color: var(--muted);
        max-width: 520px;
        line-height: 1.65;
        margin-top: 28px;
        font-weight: 300;
        animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 44px;
        animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-primary {
        background: var(--accent);
        color: #080808;
        border: none;
        padding: 14px 32px;
        border-radius: 10px;
        font-family: var(--font-sans);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: opacity 0.2s, transform 0.15s;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary:hover {
        opacity: 0.85;
        transform: translateY(-2px);
    }

    .btn-ghost {
        background: transparent;
        color: var(--muted);
        border: 1px solid var(--border-hi);
        padding: 14px 28px;
        border-radius: 10px;
        font-family: var(--font-sans);
        font-size: 15px;
        font-weight: 400;
        cursor: pointer;
        transition: border-color 0.2s, color 0.2s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-ghost:hover {
        border-color: var(--border-hi);
        color: var(--text);
    }

    .hero-social-proof {
        margin-top: 56px;
        display: flex;
        align-items: center;
        gap: 20px;
        animation: fadeUp 0.7s 0.4s ease both;
    }

    .avatars {
        display: flex;
    }

    .avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid var(--bg);
        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 500;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .av1 {
        background: #2d4a3e;
        color: #60f0c8;
    }

    .av2 {
        background: #3a3020;
        color: #f0c060;
    }

    .av3 {
        background: #3a2040;
        color: #c060f0;
    }

    .av4 {
        background: #1e3a4a;
        color: #60c0f0;
    }

    .social-text {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.4;
    }

    .social-text strong {
        color: var(--text);
        font-weight: 500;
    }

    /* ─── WIDGET MOCKUP ─── */
    .hero-visual {
        margin-top: 80px;
        width: 100%;
        max-width: 860px;
        animation: fadeUp 0.8s 0.5s ease both;
    }

    .browser-frame {
        background: var(--surface);
        border: 1px solid var(--border-hi);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
    }

    .browser-bar {
        background: var(--surface2);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid var(--border);
    }

    .browser-dots {
        display: flex;
        gap: 6px;
    }

    .browser-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .bd1 {
        background: #ff5f57;
    }

    .bd2 {
        background: #febc2e;
    }

    .bd3 {
        background: #28c840;
    }

    .browser-url {
        flex: 1;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 5px 12px;
        font-size: 12px;
        color: var(--muted);
        max-width: 360px;
    }

    .browser-content {
        padding: 32px;
        min-height: 340px;
        background: var(--surface);
        position: relative;
        display: flex;
        align-items: flex-start;
    }

    /* Fake website content inside browser */
    .fake-site {
        flex: 1;
        opacity: 0.35;
    }

    .fake-nav-bar {
        height: 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        margin-bottom: 24px;
        width: 70%;
    }

    .fake-hero-block {
        height: 28px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 4px;
        margin-bottom: 10px;
        width: 85%;
    }

    .fake-hero-block.sm {
        width: 60%;
        height: 14px;
        background: rgba(255, 255, 255, 0.05);
    }

    .fake-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .fake-card {
        height: 80px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* ─── CHAT WIDGET (floating, inside browser) ─── */
    .widget-container {
        position: absolute;
        bottom: 24px;
        right: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }

    .chat-window {
        width: 300px;
        background: #141414;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .chat-header {
        background: linear-gradient(135deg, #1a1a1a, #141414);
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .chat-avatar {
        width: 32px;
        height: 32px;
        background: var(--accent-dim);
        border: 1px solid rgba(200, 240, 96, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chat-header-info {
        flex: 1;
    }

    .chat-header-name {
        font-size: 13px;
        font-weight: 500;
    }

    .chat-header-status {
        font-size: 11px;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .status-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--accent);
    }

    .chat-messages {
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .msg {
        max-width: 85%;
    }

    .msg-bot {
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 12px 12px 12px 3px;
        padding: 9px 12px;
        font-size: 12px;
        line-height: 1.5;
        color: rgba(242, 240, 232, 0.85);
        animation: msgIn 0.4s ease both;
    }

    .msg-user {
        align-self: flex-end;
        background: var(--accent-dim);
        border: 1px solid rgba(200, 240, 96, 0.2);
        border-radius: 12px 12px 3px 12px;
        padding: 9px 12px;
        font-size: 12px;
        line-height: 1.5;
        color: var(--accent);
        animation: msgIn 0.4s 0.2s ease both;
    }

    .msg-typing {
        align-self: flex-start;
        display: flex;
        gap: 4px;
        align-items: center;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px 12px 12px 3px;
        animation: msgIn 0.4s 0.4s ease both;
    }

    .typing-dot {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--muted);
        animation: typingBounce 1.2s infinite ease-in-out;
    }

    .typing-dot:nth-child(2) {
        animation-delay: 0.15s;
    }

    .typing-dot:nth-child(3) {
        animation-delay: 0.3s;
    }

    @keyframes typingBounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
            opacity: 0.4;
        }

        40% {
            transform: translateY(-4px);
            opacity: 1;
        }
    }

    @keyframes msgIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .chat-input-row {
        padding: 10px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .chat-input-fake {
        flex: 1;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 7px 10px;
        font-size: 11px;
        color: var(--muted);
        font-family: var(--font-sans);
    }

    .chat-send-btn {
        width: 28px;
        height: 28px;
        background: var(--accent);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .widget-bubble {
        width: 50px;
        height: 50px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 24px rgba(200, 240, 96, 0.3);
        cursor: pointer;
    }

    /* ─── SECTIONS ─── */
    section {
        padding: 100px 5vw;
    }

    .section-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 20px;
    }

    h2.section-title {
        font-family: var(--font-serif);
        font-size: clamp(36px, 4.5vw, 58px);
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -0.02em;
        max-width: 680px;
    }

    h2.section-title em {
        font-style: italic;
        color: var(--accent);
    }

    .section-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.65;
        max-width: 520px;
        margin-top: 20px;
        font-weight: 300;
    }

    /* ─── HOW IT WORKS ─── */
    .steps-section {
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .steps-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .steps-header {
        text-align: center;
        margin-bottom: 72px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2px;
    }

    .step {
        padding: 40px 36px;
        border: 1px solid var(--border);
        position: relative;
        transition: background 0.3s;
    }

    .step:hover {
        background: rgba(255, 255, 255, 0.02);
    }

    .step-num {
        font-family: var(--font-serif);
        font-size: 64px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.06);
        line-height: 1;
        margin-bottom: 20px;
        letter-spacing: -0.04em;
    }

    .step-icon {
        margin-bottom: 20px;
    }

    .step h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .step p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ─── FEATURES ─── */
    .features-section {
        max-width: 1100px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1px;
        margin-top: 64px;
        border: 1px solid var(--border);
    }

    .feature-card {
        padding: 36px 32px;
        border: 1px solid var(--border);
        transition: background 0.3s;
        position: relative;
        overflow: hidden;
    }

    .feature-card:hover {
        background: rgba(255, 255, 255, 0.02);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        background: var(--accent-dim);
        border: 1px solid rgba(200, 240, 96, 0.2);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: transform 0.3s;
    }

    .feature-card h3 {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }

    .feature-card p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ─── EMBED CODE ─── */
    .code-section {
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .code-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .code-block {
        background: #0d0d0d;
        border: 1px solid var(--border-hi);
        border-radius: 14px;
        overflow: hidden;
    }

    .code-block-header {
        background: var(--surface2);
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
    }

    .code-block-title {
        font-size: 12px;
        color: var(--muted);
        font-family: var(--font-sans);
    }

    .code-block-copy {
        font-size: 11px;
        color: var(--accent);
        cursor: pointer;
        background: none;
        border: none;
        font-family: var(--font-sans);
        padding: 4px 10px;
        border: 1px solid rgba(200, 240, 96, 0.2);
        border-radius: 5px;
        transition: background 0.2s;
    }

    .code-block-copy:hover {
        background: var(--accent-dim);
    }

    .code-content {
        padding: 24px;
        font-family: 'Courier New', monospace;
        font-size: 13px;
        line-height: 1.8;
        overflow-x: auto;
    }

    .c-tag {
        color: #c08060;
    }

    .c-attr {
        color: #80b0e0;
    }

    .c-val {
        color: #a0d080;
    }

    .c-comment {
        color: rgba(255, 255, 255, 0.2);
    }

    /* ─── PRICING ─── */
    .pricing-section {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 56px;
        text-align: left;
    }

    .pricing-card {
        background: var(--surface);
        border: 1px solid var(--border-hi);
        border-radius: 16px;
        padding: 36px 32px;
        transition: border-color 0.3s, transform 0.2s;
    }

    .pricing-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.18);
    }

    .pricing-card.featured {
        border-color: rgba(200, 240, 96, 0.4);
        background: linear-gradient(135deg, rgba(200, 240, 96, 0.04), rgba(96, 240, 200, 0.02));
        position: relative;
    }

    .pricing-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        color: #080808;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 16px;
        border-radius: 100px;
        white-space: nowrap;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .pricing-plan {
        font-size: 12px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 16px;
    }

    .pricing-price {
        font-family: var(--font-serif);
        font-size: 48px;
        font-weight: 400;
        letter-spacing: -0.03em;
        line-height: 1;
        margin-bottom: 6px;
    }

    .pricing-price sup {
        font-size: 22px;
        vertical-align: super;
        font-family: var(--font-sans);
        font-weight: 300;
    }

    .pricing-period {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 28px;
    }

    .pricing-features {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .pricing-features li {
        font-size: 14px;
        color: rgba(242, 240, 232, 0.75);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        background: var(--accent-dim);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .btn-pricing {
        width: 100%;
        padding: 13px;
        border-radius: 10px;
        font-family: var(--font-sans);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        text-align: center;
    }

    .btn-pricing-outline {
        background: transparent;
        color: var(--text);
        border: 1px solid var(--border-hi);
    }

    .btn-pricing-outline:hover {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-pricing-accent {
        background: var(--accent);
        color: #080808;
        border: none;
    }

    .btn-pricing-accent:hover {
        opacity: 0.85;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .testimonials-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .testi-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .testi-card {
        background: #0e0e0e;
        border: 1px solid var(--border-hi);
        border-radius: 14px;
        padding: 28px;
    }

    .testi-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 16px;
    }

    .star {
        color: var(--accent);
        font-size: 14px;
    }

    .testi-text {
        font-size: 15px;
        color: rgba(242, 240, 232, 0.75);
        line-height: 1.7;
        margin-bottom: 20px;
        font-style: italic;
        font-family: var(--font-serif);
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .testi-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 500;
    }

    .testi-name {
        font-size: 14px;
        font-weight: 500;
    }

    .testi-role {
        font-size: 12px;
        color: var(--muted);
    }

    /* ─── CTA ─── */
    .cta-section {
        text-align: center;
        padding: 120px 5vw;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(200, 240, 96, 0.07), transparent 70%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-family: var(--font-serif);
        font-size: clamp(42px, 5.5vw, 72px);
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -0.02em;
        max-width: 720px;
        margin: 0 auto 32px;
    }

    .cta-section h2 em {
        font-style: italic;
        color: var(--accent);
    }

    .cta-sub {
        font-size: 17px;
        color: var(--muted);
        margin-bottom: 48px;
        font-weight: 300;
    }

    /* ─── FOOTER ─── */
    footer {
        border-top: 1px solid var(--border);
        padding: 48px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--text);
    }

    .footer-logo-text {
        font-weight: 500;
        font-size: 16px;
    }

    .footer-links {
        display: flex;
        gap: 28px;
        list-style: none;
    }

    .footer-links a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-links a:hover {
        color: var(--text);
    }

    .footer-copy {
        font-size: 13px;
        color: var(--muted);
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .code-inner {
            grid-template-columns: 1fr;
        }

        .hero-actions {
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }

        .btn-primary,
        .btn-ghost {
            justify-content: center;
        }

        footer {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
            flex-wrap: wrap;
        }
    }