@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@400;500&display=swap');

/* ==== structure (from design-preview/base.css) ==== */
/* ============================================================
   Design-preview base — structure & layout only.
   Every visual decision (color, type, radius, shadow, decor)
   comes from the theme skin via the CSS custom properties below.
   Themes live at /design-preview/themes/<name>.css and must
   define at least:

   --bg --bg-alt --card --ink --muted --line
   --accent --accent-2 --on-accent --soft
   --font-display --font-body --font-mono
   --radius-s --radius-m --radius-l --btn-radius
   --shadow-card --shadow-pop
   --term-bg --term-ink --term-head --term-ok --term-url
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg, #fff);
    color: var(--ink, #111);
    font-family: var(--font-body, system-ui, sans-serif);
    font-size: 16.5px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--font-display, inherit);
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: var(--display-tracking, -0.02em);
    font-weight: var(--display-weight, 700);
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
code {
    font-family: var(--font-mono, monospace);
    font-size: 0.88em;
    background: var(--soft, #eee);
    padding: 0.1em 0.4em;
    border-radius: var(--radius-s, 4px);
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.desk-only { display: none; }
@media (min-width: 760px) { .desk-only { display: inline; } }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--btn-radius, 10px);
    font-family: var(--font-body, inherit);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }
.btn-primary { background: var(--accent, #111); color: var(--on-accent, #fff); box-shadow: var(--shadow-pop, none); }
.btn-ghost { background: transparent; color: var(--ink, #111); border-color: var(--line, #ddd); }
.btn-ghost:hover { background: var(--soft, #f2f2f2); }

/* ---------- nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--nav-bg, var(--bg, #fff));
    backdrop-filter: var(--nav-blur, none);
    -webkit-backdrop-filter: var(--nav-blur, none);
    border-bottom: 1px solid var(--line, #eee);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-family: var(--font-display, inherit);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink, #111);
}
.brand svg { color: var(--brand-mark, var(--accent, #111)); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
    text-decoration: none;
    color: var(--muted, #555);
    font-size: 0.93rem;
    font-weight: 500;
    padding: 7px 12px;
    border-radius: var(--radius-s, 6px);
}
.nav-links a:hover { color: var(--ink, #111); background: var(--soft, #f4f4f4); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-signin { text-decoration: none; color: var(--muted, #555); font-size: 0.93rem; font-weight: 500; }
.nav-signin:hover { color: var(--ink, #111); }
.nav-burger { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink, #111); margin: 4px 0; }
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 66px; left: 0; right: 0;
        flex-direction: column;
        background: var(--bg, #fff);
        border-bottom: 1px solid var(--line, #eee);
        padding: 12px 24px 18px;
    }
    .nav-links.open { display: flex; }
    .nav-burger { display: block; }
    .nav-signin { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 84px); overflow: hidden; }
.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
@media (max-width: 940px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--soft, #f2f2f2);
    color: var(--badge-ink, var(--ink, #111));
    border: 1px solid var(--line, transparent);
    margin-bottom: 22px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent, #111); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-title { font-size: clamp(2.3rem, 5.4vw, 3.7rem); margin-bottom: 20px; }
.accent-text { color: var(--accent, inherit); background: var(--accent-text-bg, none); -webkit-background-clip: var(--accent-text-clip, border-box); background-clip: var(--accent-text-clip, border-box); }
.hero-lede { font-size: 1.09rem; color: var(--muted, #444); max-width: 34em; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.hero-fineprint { font-size: 0.83rem; color: var(--muted, #777); margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 3.4vw, 44px); margin: 0; }
.stat dt { font-family: var(--font-display, inherit); font-size: 1.55rem; font-weight: 700; color: var(--stat-ink, var(--ink, #111)); }
.stat dd { margin: 2px 0 0; font-size: 0.83rem; color: var(--muted, #777); }
.hero-visual-caption { text-align: center; font-size: 0.8rem; color: var(--muted, #888); margin-top: 12px; }

/* ---------- terminal ---------- */
.term {
    background: var(--term-bg, #111);
    border-radius: var(--radius-l, 14px);
    border: 1px solid var(--term-border, var(--line, transparent));
    box-shadow: var(--shadow-card, 0 20px 50px rgba(0,0,0,0.25));
    overflow: hidden;
}
.term-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    background: var(--term-head, rgba(255,255,255,0.06));
    border-bottom: 1px solid var(--term-border, rgba(255,255,255,0.08));
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--term-dot, rgba(255,255,255,0.25)); }
.term-title { margin-left: auto; font-family: var(--font-mono, monospace); font-size: 0.72rem; color: var(--term-muted, rgba(255,255,255,0.45)); }
.term-body code { background: transparent; padding: 0; border-radius: 0; font-size: 1em; }
.term-body {
    margin: 0;
    padding: 20px 22px;
    font-family: var(--font-mono, monospace);
    font-size: 0.83rem;
    line-height: 1.75;
    color: var(--term-ink, #e8e8e8);
    overflow-x: auto;
}
.t-prompt { color: var(--term-prompt, var(--term-ok, #7ee787)); }
.t-cmd { color: var(--term-ink, #e8e8e8); font-weight: 600; }
.t-ok { color: var(--term-ok, #7ee787); }
.t-note { color: var(--term-muted, rgba(255,255,255,0.45)); }
.t-url { color: var(--term-url, #79c0ff); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- marquee ---------- */
.marquee-section { padding: clamp(30px, 4vw, 48px) 0; background: var(--marquee-bg, transparent); border-top: 1px solid var(--line, transparent); border-bottom: 1px solid var(--line, transparent); }
.marquee-label { text-align: center; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted, #888); margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track {
    display: flex;
    gap: 14px;
    width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    background: var(--chip-bg, var(--card, #fff));
    border: 1px solid var(--line, #e5e5e5);
    border-radius: var(--chip-radius, 999px);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--chip-ink, var(--ink, #111));
}
.chip img { width: 20px; height: 20px; object-fit: contain; }

/* ---------- section heads ---------- */
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--eyebrow-ink, var(--accent, #111));
    margin-bottom: 12px;
}
.section-sub { color: var(--muted, #555); font-size: 1.02rem; }

/* ---------- steps ---------- */
.steps-section { background: var(--steps-bg, var(--bg-alt, transparent)); }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
    position: relative;
    background: var(--card, #fff);
    border: 1px solid var(--line, #e8e8e8);
    border-radius: var(--radius-l, 16px);
    padding: 30px 26px 24px;
    box-shadow: var(--shadow-card, none);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--num-radius, 50%);
    background: var(--num-bg, var(--accent, #111));
    color: var(--num-ink, var(--on-accent, #fff));
    font-family: var(--font-display, inherit);
    font-weight: 700;
    margin-bottom: 16px;
}
.step p { margin: 0; color: var(--muted, #555); font-size: 0.95rem; }
.step a { color: var(--accent, inherit); }

/* ---------- features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
    background: var(--card, #fff);
    border: 1px solid var(--line, #e8e8e8);
    border-radius: var(--radius-l, 16px);
    padding: 28px 26px;
    box-shadow: var(--shadow-card, none);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop, var(--shadow-card, none)); }
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-m, 12px);
    background: var(--icon-bg, var(--soft, #f2f2f2));
    color: var(--icon-ink, var(--accent, #111));
    margin-bottom: 18px;
}
.feature p { margin: 0; color: var(--muted, #555); font-size: 0.94rem; }

/* ---------- apps ---------- */
.apps-section { background: var(--apps-bg, var(--bg-alt, transparent)); }
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1020px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .apps-grid { grid-template-columns: 1fr; } }
.app-cat {
    background: var(--card, #fff);
    border: 1px solid var(--line, #e8e8e8);
    border-radius: var(--radius-l, 16px);
    padding: 26px 24px;
    box-shadow: var(--shadow-card, none);
}
.app-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.app-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; }
.app-list img { width: 22px; height: 22px; object-fit: contain; background: #fff; border-radius: 5px; padding: 1px; }
.app-cat p { margin: 0; color: var(--muted, #666); font-size: 0.87rem; }
.apps-cta { text-align: center; margin-top: 38px; }

/* ---------- developer ---------- */
.dev-section { background: var(--dev-bg, #14140f); color: var(--dev-ink, #f4f2ea); }
.dev-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .dev-inner { grid-template-columns: 1fr; } }
.dev-section .eyebrow { color: var(--dev-eyebrow, var(--accent-2, var(--accent, #ffd479))); }
.dev-section h2 { color: inherit; }
.dev-section p { color: var(--dev-muted, rgba(255,255,255,0.72)); }
.dev-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; }
.dev-list li { padding-left: 26px; position: relative; color: var(--dev-muted, rgba(255,255,255,0.72)); font-size: 0.96rem; }
.dev-list li::before { content: "→"; position: absolute; left: 0; color: var(--dev-eyebrow, var(--accent-2, var(--accent, #ffd479))); font-weight: 700; }
.dev-list strong { color: var(--dev-ink, #fff); }
.dev-section .btn-ghost { color: var(--dev-ink, #fff); border-color: var(--dev-line, rgba(255,255,255,0.25)); }
.dev-section .btn-ghost:hover { background: var(--dev-soft, rgba(255,255,255,0.08)); }

/* ---------- paths ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 880px) { .paths { grid-template-columns: 1fr; } }
.path {
    background: var(--card, #fff);
    border: 1px solid var(--line, #e8e8e8);
    border-radius: var(--radius-l, 18px);
    padding: 34px 30px;
    box-shadow: var(--shadow-card, none);
    display: flex;
    flex-direction: column;
}
.path-primary { border-color: var(--accent, #111); border-width: var(--path-border-w, 2px); box-shadow: var(--shadow-pop, var(--shadow-card, none)); background: var(--path-primary-bg, var(--card, #fff)); }
.path-tag {
    align-self: flex-start;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--soft, #f2f2f2);
    color: var(--eyebrow-ink, var(--accent, #111));
    margin-bottom: 18px;
}
.path h3 { font-size: 1.45rem; }
.path-lede { color: var(--muted, #555); font-size: 0.97rem; }
.path-list { list-style: none; margin: 6px 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.path-list li { padding-left: 26px; position: relative; font-size: 0.94rem; color: var(--muted, #444); }
.path-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, #111); font-weight: 700; }
.path .btn { align-self: flex-start; }

/* ---------- faq ---------- */
.faq-section { background: var(--faq-bg, var(--bg-alt, transparent)); }
.faq-inner { max-width: 780px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: var(--card, #fff);
    border: 1px solid var(--line, #e8e8e8);
    border-radius: var(--radius-m, 12px);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    font-family: var(--font-display, inherit);
    font-size: 1.02rem;
    position: relative;
    padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--accent, #111);
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted, #555); font-size: 0.95rem; }

/* ---------- cta ---------- */
.cta-section { background: var(--cta-bg, var(--accent, #111)); color: var(--cta-ink, var(--on-accent, #fff)); }
.cta-inner { text-align: center; max-width: 660px; }
.cta-inner h2 { color: inherit; }
.cta-inner p { color: var(--cta-muted, inherit); opacity: var(--cta-p-opacity, 0.85); font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cta-section .btn-primary { background: var(--cta-btn-bg, var(--on-accent, #fff)); color: var(--cta-btn-ink, var(--accent, #111)); }
.cta-section .btn-ghost { color: inherit; border-color: var(--cta-line, rgba(255,255,255,0.35)); }
.cta-section .btn-ghost:hover { background: var(--cta-soft, rgba(255,255,255,0.1)); }

/* ---------- footer ---------- */
.footer { background: var(--footer-bg, var(--bg-alt, #fafafa)); border-top: 1px solid var(--line, #eee); padding: clamp(44px, 6vw, 64px) 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted, #777); font-size: 0.9rem; max-width: 26em; margin-top: 14px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 560px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted, #999); margin-bottom: 4px; }
.footer-col a { text-decoration: none; color: var(--footer-link, var(--ink, #333)); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent, #000); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid var(--line, #2a3d2f);
    color: var(--muted, #8fa294);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--accent, #4ef08a); border-color: var(--accent, #4ef08a); }

.footer-subscribe {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 22px 24px;
    margin-bottom: 28px;
    border: 1px solid var(--line, #2a3d2f);
    background: var(--card, #0f1611);
}
.footer-subscribe-text { flex: 1 1 260px; }
.footer-subscribe-text h4 { margin: 0 0 4px; font-size: 1rem; }
.footer-subscribe-text p { margin: 0; color: var(--muted, #8fa294); font-size: 0.88rem; }
.footer-subscribe-form { display: flex; gap: 10px; flex: 1 1 320px; }
.footer-subscribe-form input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    background: var(--bg, #0a0f0b);
    border: 1px solid var(--line, #2a3d2f);
    color: var(--ink, #d7e4d9);
    font-family: var(--font-body, inherit);
    font-size: 0.92rem;
}
.footer-subscribe-form input::placeholder { color: var(--muted, #6d7f72); }
.footer-subscribe-form input:focus { outline: none; border-color: var(--accent, #4ef08a); }
.footer-subscribe-result { flex-basis: 100%; margin: 0; font-size: 0.85rem; min-height: 1.2em; }
.footer-subscribe-result.ok { color: var(--accent, #4ef08a); }
.footer-subscribe-result.err { color: #ff7a7a; }
@media (max-width: 640px) { .footer-subscribe-form { flex-direction: column; } }

.footer-legal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 26px;
    border-top: 1px solid var(--line, #eee);
    color: var(--muted, #999);
    font-size: 0.82rem;
}
.footer-preview-note { font-style: italic; }

/* ---------- theme switcher pill ---------- */
.theme-pill {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: system-ui, sans-serif;
    font-size: 0.78rem;
    max-width: calc(100vw - 24px);
    overflow-x: auto;
}
.theme-pill a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 6px 11px;
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 600;
}
.theme-pill a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.theme-pill a.active { background: #fff; color: #111; }
.theme-pill .pill-back { color: #fff; }
.pill-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.25); margin: 0 4px; flex: none; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .marquee-track { animation: none; }
}

/* ==== terminal skin (from design-preview/themes/terminal.css) ==== */
/* ============================================================
   Theme: TERMINAL — for the homelab crowd.
   Near-black phosphor canvas, monospace everywhere, CRT-green
   accent, square corners, 1px borders. The page itself feels
   like the product: a machine you own.
   ============================================================ */

:root {
    color-scheme: dark;
    --bg: #0a0f0b;
    --bg-alt: #0d130e;
    --card: #0f1611;
    --ink: #d7e4d9;
    --muted: #8fa294;
    --line: #1f2d22;
    --accent: #4ef08a;
    --accent-2: #b8f04e;
    --on-accent: #06130a;
    --soft: rgba(78, 240, 138, 0.09);

    --font-display: 'JetBrains Mono', ui-monospace, monospace;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
    --display-weight: 700;
    --display-tracking: -0.03em;

    --radius-s: 0px;
    --radius-m: 0px;
    --radius-l: 0px;
    --btn-radius: 0px;
    --chip-radius: 0px;
    --num-radius: 0px;
    --shadow-card: none;
    --shadow-pop: 0 0 0 1px rgba(78, 240, 138, 0.35), 0 0 24px rgba(78, 240, 138, 0.12);

    --nav-bg: rgba(10, 15, 11, 0.9);
    --nav-blur: blur(8px);
    --brand-mark: #4ef08a;
    --badge-ink: #4ef08a;
    --stat-ink: #4ef08a;
    --eyebrow-ink: #4ef08a;

    --term-bg: #050807;
    --term-head: rgba(78, 240, 138, 0.06);
    --term-border: #1f2d22;
    --term-dot: #1f2d22;
    --term-ink: #c9e5cf;
    --term-muted: #6d7f72;
    --term-ok: #4ef08a;
    --term-prompt: #4ef08a;
    --term-url: #b8f04e;

    --dev-bg: #050807;
    --dev-ink: #d7e4d9;
    --dev-muted: #8fa294;
    --dev-eyebrow: #b8f04e;
    --dev-line: #1f2d22;
    --dev-soft: rgba(78, 240, 138, 0.06);

    --icon-bg: rgba(78, 240, 138, 0.08);
    --icon-ink: #4ef08a;

    --cta-bg: #050807;
    --cta-ink: #d7e4d9;
    --cta-btn-bg: #4ef08a;
    --cta-btn-ink: #06130a;
    --cta-line: #1f2d22;
    --cta-soft: rgba(78, 240, 138, 0.06);

    --footer-bg: #070b08;
    --footer-link: #a8bcae;
    --marquee-bg: #0d130e;
    --chip-bg: #0f1611;
    --chip-ink: #c9e5cf;
    --apps-bg: #0d130e;
}

/* Subtle scanlines over the whole canvas */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.016) 0px,
        rgba(255, 255, 255, 0.016) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: 1;
}

/* Blinking cursor after the headline accent */
.accent-text { color: var(--accent); }
.accent-text::after {
    content: "▊";
    margin-left: 0.08em;
    animation: blink 1.1s steps(1) infinite;
    color: var(--accent);
}
@keyframes blink { 50% { opacity: 0; } }

/* Eyebrows read like shell comments */
.eyebrow { text-transform: lowercase; letter-spacing: 0; font-family: var(--font-mono); }
.eyebrow::before { content: "# "; opacity: 0.7; }

/* Buttons: bracketed, flat, glow on hover */
.btn { font-family: var(--font-mono); font-weight: 700; }
.btn-primary { box-shadow: none; }
.btn-primary:hover { box-shadow: 0 0 0 1px var(--accent), 0 0 22px rgba(78, 240, 138, 0.35); transform: none; }
.btn-ghost { border-color: #2a3d2f; }
.btn-ghost:hover { border-color: var(--accent); background: var(--soft); transform: none; }

/* Cards: 1px frames, corner tick on hover */
.feature, .step, .app-cat, .path, .faq-item { border-color: #1f2d22; }
.feature:hover { transform: none; border-color: rgba(78, 240, 138, 0.5); }
.path-primary { border-color: var(--accent); }
.step-num { background: transparent; color: var(--accent); border: 1px solid var(--accent); font-family: var(--font-mono); }
.step-num::before { content: "0"; }

/* Hero grid: blueprint lines */
.hero-decor {
    background-image:
        linear-gradient(rgba(78, 240, 138, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 240, 138, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%);
    mask-image: linear-gradient(180deg, #000, transparent 85%);
}

.app-list img { background: rgba(215, 228, 217, 0.94); }
h1, h2 { text-transform: none; }
.hero-title { font-size: clamp(2rem, 4.8vw, 3.2rem); }
