:root {
    --bg: #0a0a12;
    --bg-subtle: #0e0e1a;
    --surface: rgba(255,255,255,0.03);
    --surface-hover: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.06);
    --text: #c8c8d8;
    --text-bright: #ededf5;
    --text-dim: #5a5a72;
    --violet: #a78bfa;
    --indigo: #818cf8;
    --blue: #60a5fa;
    --cyan: #67e8f9;
    --pink: #f0abfc;
    --rose: #fda4af;
    --amber: #fcd34d;
    --mint: #6ee7b7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ═══════════════════════════════════════════════ */
/* ETHEREAL BACKGROUND                            */
/* ═══════════════════════════════════════════════ */
.aurora {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: drift 20s ease-in-out infinite;
}

.aurora-blob:nth-child(1) {
    width: 800px; height: 600px;
    background: linear-gradient(135deg, #a78bfa, #818cf8, #60a5fa);
    top: -15%; left: -10%;
    animation-duration: 25s;
}

.aurora-blob:nth-child(2) {
    width: 600px; height: 700px;
    background: linear-gradient(225deg, #f0abfc, #a78bfa, #818cf8);
    top: 10%; right: -15%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.aurora-blob:nth-child(3) {
    width: 700px; height: 500px;
    background: linear-gradient(45deg, #67e8f9, #6ee7b7, #60a5fa);
    bottom: -10%; left: 20%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.aurora-blob:nth-child(4) {
    width: 500px; height: 500px;
    background: linear-gradient(180deg, #fda4af, #f0abfc, #a78bfa);
    top: 50%; right: 10%;
    animation-duration: 28s;
    animation-delay: -15s;
    opacity: 0.08;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(40px, -30px) rotate(5deg) scale(1.05); }
    50% { transform: translate(-20px, 40px) rotate(-3deg) scale(0.95); }
    75% { transform: translate(30px, 20px) rotate(4deg) scale(1.02); }
}

.grain {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════ */
/* LAYOUT                                          */
/* ═══════════════════════════════════════════════ */
.wrapper {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ═══════════════════════════════════════════════ */
/* NAV                                             */
/* ═══════════════════════════════════════════════ */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-ascii {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    white-space: pre;
    background: linear-gradient(135deg, var(--violet), var(--indigo), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--violet), var(--indigo), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo-tag {
    font-size: 11px;
    color: var(--text-dim);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.5px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover { color: var(--text-bright); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-gh {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    font-size: 13px;
    font-family: 'IBM Plex Mono', monospace;
}

.nav-gh svg { opacity: 0.6; }

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}
.hamburger:hover { border-color: var(--violet); }
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.hamburger:hover span { background: var(--violet); }
nav.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════ */
/* HERO                                            */
/* ═══════════════════════════════════════════════ */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--violet);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.15);
}

.hero-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--violet);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--violet), var(--indigo), var(--cyan), var(--mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.hero-sub {
    font-size: 17px;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.hero-byok {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    margin: 0 auto 48px;
}

/* ═══════════════════════════════════════════════ */
/* INSTALL BOX                                     */
/* ═══════════════════════════════════════════════ */
.install-section {
    margin-bottom: 100px;
}

.install-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.install-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.install-tab {
    flex: 1;
    padding: 14px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-dim);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.install-tab:hover { color: var(--text); background: rgba(255,255,255,0.02); }

.install-tab.active {
    color: var(--text-bright);
    background: rgba(255,255,255,0.03);
}

.install-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    border-radius: 2px;
}

.install-tab svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.install-content {
    padding: 28px 28px 24px;
}

.install-cmd {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 18px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
}

.install-cmd.active { display: flex; }

.install-prompt {
    color: var(--violet);
    user-select: none;
    flex-shrink: 0;
}

.install-text {
    color: var(--text-bright);
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
}

.install-text .flag { color: var(--cyan); }
.install-text .url { color: var(--mint); }
.install-text .pipe { color: var(--text-dim); }

.copy-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    color: var(--text-dim);
    transition: all 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-bright);
}

.copy-btn svg { width: 16px; height: 16px; }

.install-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
}

.install-note a {
    color: var(--violet);
    text-decoration: none;
}

.install-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════ */
/* PLATFORM BADGES                                 */
/* ═══════════════════════════════════════════════ */
.platforms {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
}

.platform-badge svg {
    width: 14px; height: 14px;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════ */
/* FEATURES                                        */
/* ═══════════════════════════════════════════════ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 100px;
}

.feature {
    background: var(--bg-subtle);
    padding: 36px 28px;
    transition: background 0.3s;
}

.feature:hover { background: rgba(255,255,255,0.03); }

.feature-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}

.feature:nth-child(1) .feature-icon { background: rgba(167,139,250,0.12); }
.feature:nth-child(2) .feature-icon { background: rgba(96,165,250,0.12); }
.feature:nth-child(3) .feature-icon { background: rgba(110,231,183,0.12); }
.feature:nth-child(4) .feature-icon { background: rgba(240,171,252,0.12); }
.feature:nth-child(5) .feature-icon { background: rgba(253,164,175,0.12); }
.feature:nth-child(6) .feature-icon { background: rgba(252,211,77,0.12); }

.feature h3 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════ */
/* ALPHA NOTICE                                    */
/* ═══════════════════════════════════════════════ */
.alpha-notice {
    margin-bottom: 100px;
}

.alpha-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 10px;
    background: rgba(252, 211, 77, 0.04);
    border: 1px solid rgba(252, 211, 77, 0.12);
}

.alpha-badge {
    flex-shrink: 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(252, 211, 77, 0.1);
    white-space: nowrap;
}

.alpha-inner p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════ */
/* QUICK START                                     */
/* ═══════════════════════════════════════════════ */
.quickstart {
    margin-bottom: 100px;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.terminal {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.015);
}

.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #febc2e; }
.terminal-dot:nth-child(3) { background: #28c840; }

.terminal-title {
    margin-left: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    line-height: 2;
}

.terminal-body .comment { color: var(--text-dim); }
.terminal-body .prompt { color: var(--violet); }
.terminal-body .cmd { color: var(--text-bright); }
.terminal-body .flag { color: var(--cyan); }
.terminal-body .string { color: var(--mint); }
.terminal-body .output { color: var(--text-dim); font-style: italic; }
.terminal-body .success { color: var(--mint); }
.terminal-body .accent { color: var(--pink); }

/* ═══════════════════════════════════════════════ */
/* CTA / FOOTER                                    */
/* ═══════════════════════════════════════════════ */
.cta {
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
    margin-bottom: 40px;
}

.cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 32px;
}

.cta-cmd {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(129,140,248,0.12));
    border: 1px solid rgba(167,139,250,0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    color: var(--text-bright);
    cursor: pointer;
    transition: all 0.3s;
}

.cta-cmd:hover {
    background: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(129,140,248,0.18));
    border-color: rgba(167,139,250,0.35);
    transform: translateY(-1px);
}

footer {
    padding: 24px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
}

footer a {
    color: var(--text-dim);
    text-decoration: none;
}

footer a:hover { color: var(--text); }

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-downloads {
    color: var(--violet);
}

/* ═══════════════════════════════════════════════ */
/* GET CLI BOX                                     */
/* ═══════════════════════════════════════════════ */
.get-cli-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.get-cli-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    gap: 24px;
}

.get-cli-left {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-bright);
}

.get-cli-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 2px;
}

.get-cli-desc {
    font-size: 13px;
    color: var(--text-dim);
}

.get-cli-coming {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
}

.coming-badge {
    font-size: 10px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.15);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════ */
/* HERO CTA BUTTONS                                */
/* ═══════════════════════════════════════════════ */
.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--violet), var(--indigo));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(167,139,250,0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(167,139,250,0.25);
    border-color: rgba(167,139,250,0.5);
}

.btn-primary svg { opacity: 0.9; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--surface);
    color: var(--text-bright);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════ */
/* CONTENT SECTIONS                                */
/* ═══════════════════════════════════════════════ */
.content-section {
    margin-bottom: 100px;
    animation: fadeUp 0.9s ease-out both;
}

.section-desc {
    font-size: 16px;
    color: var(--text);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════ */
/* PILLARS (3-column capability cards)             */
/* ═══════════════════════════════════════════════ */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.3s, background 0.3s;
}

.pillar:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.035);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(167,139,250,0.1);
    border: 1px solid rgba(167,139,250,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--violet);
}

.pillar:nth-child(2) .pillar-icon {
    background: rgba(103,232,249,0.1);
    border-color: rgba(103,232,249,0.15);
    color: var(--cyan);
}

.pillar:nth-child(3) .pillar-icon {
    background: rgba(110,231,183,0.1);
    border-color: rgba(110,231,183,0.15);
    color: var(--mint);
}

.pillar h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.pillar p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

.pillar p strong {
    color: var(--text);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════ */
/* SPLIT SECTION (text + grid side by side)        */
/* ═══════════════════════════════════════════════ */
.split-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-text {
    max-width: 640px;
}

.split-text .section-desc {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════ */
/* MIDDLEWARE GRID                                  */
/* ═══════════════════════════════════════════════ */
.middleware-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.mw-card {
    background: var(--bg-subtle);
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.3s;
}

.mw-card:hover {
    background: rgba(255,255,255,0.03);
}

.mw-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--violet);
    letter-spacing: -0.2px;
}

.mw-desc {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════ */
/* AGENTS GRID                                     */
/* ═══════════════════════════════════════════════ */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.agent-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    transition: border-color 0.3s;
}

.agent-card:hover {
    border-color: rgba(167,139,250,0.25);
}

.agent-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-bright);
}

.agent-tags {
    font-size: 11px;
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.3px;
}

.yaml-example {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════ */
/* FAQ                                             */
/* ═══════════════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.faq-item {
    background: var(--bg-subtle);
    padding: 24px 28px;
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255,255,255,0.03);
}

.faq-q {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.faq-a {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════ */
/* ANIMATIONS                                      */
/* ═══════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero, .install-section, .features, .quickstart, .cta, .content-section {
    animation: fadeUp 0.9s ease-out both;
}

.install-section { animation-delay: 0.1s; }
.features { animation-delay: 0.15s; }
.quickstart { animation-delay: 0.2s; }

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE                                      */
/* ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    .wrapper { padding: 0 20px; }
    .features { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 40px; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10,10,18,0.95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 8px 0;
        margin-top: 8px;
    }
    .nav-links a {
        padding: 12px 20px;
        font-size: 15px;
        transition: background 0.2s, color 0.3s;
    }
    .nav-links a:hover { background: var(--surface-hover); }
    nav.nav-open { position: relative; }
    nav.nav-open .nav-links { display: flex; }
    .install-tabs { flex-wrap: wrap; }
    .install-tab { font-size: 12px; padding: 10px 12px; }
    .install-cmd { font-size: 12px; flex-wrap: wrap; }
    .platforms { gap: 8px; }
    .pillars { grid-template-columns: 1fr; }
    .middleware-grid { grid-template-columns: 1fr; }
    .agents-grid { grid-template-columns: 1fr 1fr; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .get-cli-inner { flex-direction: column; text-align: center; padding: 24px 20px; }
    .get-cli-left { flex-direction: column; }
    .get-cli-coming { justify-content: center; flex-wrap: wrap; padding: 12px 20px; }
}

/* ═══════════════════════════════════════════════ */
/* COPIED TOAST                                    */
/* ═══════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(167,139,250,0.15);
    border: 1px solid rgba(167,139,250,0.3);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--violet);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 100;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════ */
/* CHANGELOG PAGE                                  */
/* ═══════════════════════════════════════════════ */
.changelog-header {
    padding: 60px 0 20px;
    animation: fadeUp 0.9s ease-out both;
}

.changelog-sub {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 0;
}

.releases {
    padding: 40px 0 60px;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.1s;
}

.release {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s;
}

.release:hover {
    border-color: rgba(255,255,255,0.1);
}

.release-latest {
    border-color: rgba(167,139,250,0.2);
}

.release-latest:hover {
    border-color: rgba(167,139,250,0.35);
}

.release-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.release-version-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.release-version {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.5px;
}

.release-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

.release-tag-alpha {
    color: var(--amber);
    background: rgba(252, 211, 77, 0.1);
    border: 1px solid rgba(252, 211, 77, 0.15);
}

.release-tag-beta {
    color: var(--cyan);
    background: rgba(103, 232, 249, 0.1);
    border: 1px solid rgba(103, 232, 249, 0.15);
}

.release-tag-rc {
    color: var(--blue);
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.release-tag-stable {
    color: var(--mint);
    background: rgba(110, 231, 183, 0.1);
    border: 1px solid rgba(110, 231, 183, 0.15);
}

.release-latest-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    padding: 2px 8px;
    border-radius: 100px;
}

.release-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
}

.release-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.release-section {
    margin-bottom: 16px;
}

.release-section:last-child {
    margin-bottom: 0;
}

.release-section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.changes-label { color: var(--cyan); }
.fixes-label { color: var(--mint); }
.breaking-label { color: var(--rose); }

.release-list {
    list-style: none;
    padding: 0;
}

.release-item {
    position: relative;
    padding: 4px 0 4px 20px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

.release-item::before {
    position: absolute;
    left: 0;
    font-size: 12px;
}

.changes-item::before { content: "→"; color: var(--cyan); }
.fixes-item::before { content: "✓"; color: var(--mint); }
.breaking-item::before { content: "!"; color: var(--rose); font-weight: 700; }

.release-downloads {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'IBM Plex Mono', monospace;
    text-decoration: none;
    transition: all 0.2s;
}

.download-link:hover {
    background: var(--surface-hover);
    color: var(--text-bright);
    border-color: rgba(255,255,255,0.12);
}

.no-releases {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
    font-size: 15px;
}

/* ═══════════════════════════════════════════════ */
/* RESOURCES PAGE                                   */
/* ═══════════════════════════════════════════════ */
.page-hero {
    padding: 60px 0 20px;
    animation: fadeUp 0.9s ease-out both;
}

.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--text-bright);
    margin-bottom: 24px;
}

.diana-quote {
    max-width: 640px;
    margin-bottom: 60px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(167, 139, 250, 0.04);
    border: 1px solid rgba(167, 139, 250, 0.1);
    position: relative;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.1s;
}

.diana-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--violet), var(--pink));
    opacity: 0.5;
}

.diana-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--violet);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.diana-tag .blink {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--violet);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.diana-quote p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
}

.diana-quote em {
    color: var(--text-bright);
    font-style: italic;
}

.diana-quote .punchline {
    display: block;
    margin-top: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--pink);
}

/* ── Projects Grid ── */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.15s;
}

.project-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-subtle);
    transition: all 0.35s ease;
}

.project-card:hover {
    border-color: rgba(167,139,250,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 60px rgba(167,139,250,0.06);
}

.project-card-img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.project-card:hover .project-card-img {
    transform: scale(1.03);
}

.project-card-body {
    padding: 20px 22px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.2);
}

.project-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.project-card-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 14px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.project-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--cyan);
    background: rgba(103, 232, 249, 0.08);
    border: 1px solid rgba(103, 232, 249, 0.18);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.project-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.project-link-demo {
    color: var(--mint);
    background: rgba(110,231,183,0.08);
    border: 1px solid rgba(110,231,183,0.18);
}

.project-link-demo:hover {
    background: rgba(110,231,183,0.18);
    border-color: rgba(110,231,183,0.35);
    color: var(--text-bright);
}

.project-link-github {
    color: var(--violet);
    background: rgba(167,139,250,0.08);
    border: 1px solid rgba(167,139,250,0.18);
}

.project-link-github:hover {
    background: rgba(167,139,250,0.18);
    border-color: rgba(167,139,250,0.35);
    color: var(--text-bright);
}

.project-card-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .project-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════ */
/* BLOG                                            */
/* ═══════════════════════════════════════════════ */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    transition: border-color 0.3s, transform 0.2s;
}

.blog-card:hover {
    border-color: rgba(167,139,250,0.3);
    transform: translateY(-2px);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-summary {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-back-link {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--violet);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.blog-back-link:hover { color: var(--text-bright); }

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 12px;
}

/* Blog article markdown content */
.blog-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.blog-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin: 48px 0 20px;
    line-height: 1.2;
}

.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 32px 0 12px;
}

.blog-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-bright);
    margin: 24px 0 8px;
}

.blog-content p {
    margin: 14px 0;
    color: var(--text);
}

.blog-content strong {
    color: var(--text-bright);
    font-weight: 600;
}

.blog-content em {
    color: var(--violet);
    font-style: italic;
}

.blog-content a {
    color: var(--violet);
    text-decoration: underline;
    text-decoration-color: rgba(167,139,250,0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s;
}

.blog-content a:hover {
    text-decoration-color: var(--violet);
}

.blog-content ul, .blog-content ol {
    margin: 14px 0;
    padding-left: 24px;
}

.blog-content li {
    margin: 6px 0;
    color: var(--text);
}

.blog-content code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.88em;
    background: rgba(167,139,250,0.08);
    border: 1px solid rgba(167,139,250,0.15);
    padding: 2px 7px;
    border-radius: 5px;
    color: var(--violet);
}

.blog-content pre {
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 20px 0;
    overflow-x: auto;
    line-height: 1.5;
}

.blog-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--text);
    font-size: 13px;
}

.blog-content blockquote {
    border-left: 3px solid var(--violet);
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(167,139,250,0.04);
    border-radius: 0 8px 8px 0;
    color: var(--text);
    font-style: italic;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.blog-content th {
    text-align: left;
    padding: 10px 14px;
    background: rgba(167,139,250,0.08);
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-content td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    color: var(--text);
}

.blog-content tr:hover td {
    background: rgba(255,255,255,0.02);
}

.blog-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 28px 20px;
    }
    .blog-content pre {
        padding: 14px 16px;
    }
    .blog-content table {
        font-size: 12px;
    }
    .blog-content th, .blog-content td {
        padding: 6px 8px;
    }
    .blog-post-meta {
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* ═══════════════════════════════════════════════ */
/* FEEDBACK FORM                                   */
/* ═══════════════════════════════════════════════ */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text);
    letter-spacing: 0.5px;
}

.feedback-required { color: var(--rose); }
.feedback-optional { color: var(--text-dim); font-weight: 400; }

.feedback-input {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-bright);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.feedback-input::placeholder,
.feedback-textarea::placeholder {
    color: var(--text-dim);
}

.feedback-input:focus,
.feedback-textarea:focus {
    border-color: rgba(167,139,250,0.4);
}

.feedback-textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-bright);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
    min-height: 120px;
    width: 100%;
}

.feedback-char-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    text-align: right;
}

.feedback-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(129,140,248,0.15));
    border: 1px solid rgba(167,139,250,0.25);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-bright);
    cursor: pointer;
    transition: all 0.2s;
    align-self: flex-start;
}

.feedback-btn:hover {
    background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(129,140,248,0.25));
    border-color: rgba(167,139,250,0.4);
    transform: translateY(-1px);
}

.feedback-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.feedback-error {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--rose);
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(253,164,175,0.06);
    border: 1px solid rgba(253,164,175,0.15);
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    transition: transform 0.15s;
    display: flex;
    align-items: center;
}

.star:hover { transform: scale(1.15); }

.star-clear {
    background: none;
    border: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    cursor: pointer;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
}

.star-clear:hover { color: var(--text); }

/* Success State */
.feedback-success {
    text-align: center;
    padding: 60px 20px;
    animation: fadeUp 0.5s ease-out both;
}

.feedback-success-icon {
    margin-bottom: 20px;
}

.feedback-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.feedback-success p {
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 28px;
}

/* Admin Styles */
.admin-gate {
    animation: fadeUp 0.9s ease-out both;
}

.admin-entry {
    transition: border-color 0.3s;
}

.admin-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.admin-email {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.admin-message {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Image Upload */
.upload-area {
    position: relative;
    border: 2px dashed rgba(167,139,250,0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
    min-height: 120px;
}

.upload-area:hover {
    border-color: rgba(167,139,250,0.4);
}

.upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    min-height: 120px;
}

.upload-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: contain;
}

.upload-remove {
    position: relative;
    z-index: 3;
    background: rgba(253,164,175,0.08);
    border: 1px solid rgba(253,164,175,0.2);
    color: var(--rose);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-remove:hover {
    background: rgba(253,164,175,0.18);
    border-color: rgba(253,164,175,0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════ */
/* STATS PAGE                                      */
/* ═══════════════════════════════════════════════ */
.stat-hero {
    text-align: center;
    padding: 40px 0 60px;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.1s;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, var(--violet), var(--indigo), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.15s;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s;
    text-align: center;
}

.stat-card:hover {
    border-color: rgba(255,255,255,0.12);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-card-platform {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.stat-card-count {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-card-pct {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.stat-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease-out;
    min-width: 2px;
}

.stat-versions {
    padding: 0 0 60px;
    animation: fadeUp 0.9s ease-out both;
    animation-delay: 0.2s;
}

@media (max-width: 768px) {
    .stat-cards { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .stat-number { font-size: 48px; }
}

/* ═══════════════════════════════════════════════ */
/* BLAZOR OVERRIDES                                */
/* ═══════════════════════════════════════════════ */
#blazor-error-ui {
    display: none;
}
