/* ========================================
   PAAVerse — Micro-SaaS Marketplace
   Color scheme: pulinpathneja.com
   ======================================== */

:root {
    --bg: #0c0c10;
    --surface: #111116;
    --surface-2: #18181e;
    --surface-3: #1e1e26;
    --bg-widget: #15151b;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.14);

    --text: #e4e4ed;
    --text-2: #9494a8;
    --text-3: #5a5a72;

    --accent: #f7931e;
    --accent-light: #ffad4a;
    --accent-subtle: rgba(247,147,30,0.12);
    --accent-border: rgba(247,147,30,0.2);

    --green: #22c55e;
    --green-dim: rgba(34,197,94,0.15);
    --blue: #3b82f6;
    --blue-dim: rgba(59,130,246,0.12);
    --purple: #a855f7;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'IBM Plex Mono', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ========== NAV ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(12,12,16,0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    height: 56px; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: var(--text);
    font-weight: 600; font-size: 15px;
}
.logo-mark {
    width: 18px; height: 18px;
    background: var(--accent);
    border-radius: 4px; transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(247,147,30,0.3);
}
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
    text-decoration: none; color: var(--text-3); font-size: 14px; font-weight: 500;
    transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ========== CMD TRIGGER ========== */
.cmd-trigger {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: var(--radius-xs);
    border: 1px solid var(--border); background: var(--surface);
    color: var(--text-3); font-family: var(--mono); font-size: 12px;
    cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease;
}
.cmd-trigger:hover { border-color: var(--border-hover); color: var(--text-2); }

/* ========== BUTTONS ========== */
.btn-primary {
    font-family: var(--font); font-size: 14px; font-weight: 500;
    padding: 10px 20px; border-radius: var(--radius-sm); border: none;
    background: var(--text); color: var(--bg);
    cursor: pointer; transition: opacity 0.15s ease;
}
.btn-primary:hover { opacity: 0.85; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

.btn-ghost {
    font-family: var(--font); font-size: 14px; font-weight: 500;
    padding: 10px 20px; border-radius: var(--radius-sm);
    background: transparent; color: var(--text-2);
    border: 1px solid var(--border); cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -120px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(247,147,30,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--accent);
    padding: 6px 16px; border-radius: 100px;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: 56px; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.1;
    margin-bottom: 20px;
    text-wrap: balance;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 17px; color: var(--text-2);
    max-width: 560px; margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; }

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat-val {
    font-family: var(--mono); font-size: 20px; font-weight: 700;
    color: var(--text); display: block; letter-spacing: -0.5px;
}
.hero-stat-label {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-3); text-transform: uppercase; letter-spacing: 1px;
}
.hero-stat-sep {
    width: 1px; height: 32px; background: var(--border);
}

/* ========== SECTIONS ========== */
.section { padding: 96px 0; }
.section h2 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 12px; text-wrap: balance;
}
.section-sub {
    font-size: 16px; color: var(--text-2);
    max-width: 480px; margin-bottom: 48px;
}

/* ========== BENTO GRID ========== */
.bento-grid {
    display: grid; gap: 1px;
    background: var(--border); border-radius: var(--radius); overflow: hidden;
}
.bento-3 { grid-template-columns: repeat(3, 1fr); }
.bento-card {
    background: var(--surface); padding: 32px;
}
.bento-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.bento-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ========== FILTER ROW ========== */
.filter-row {
    display: flex; gap: 6px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-btn {
    font-family: var(--font); font-size: 13px; font-weight: 500;
    padding: 7px 16px; border-radius: 100px; border: 1px solid var(--border);
    background: transparent; color: var(--text-3); cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text-2); }
.filter-btn.active {
    background: var(--accent-subtle); border-color: var(--accent-border); color: var(--accent);
}

/* ========== PRODUCT GRID ========== */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.agent-card {
    background: var(--surface);
    padding: 24px;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex; flex-direction: column; gap: 14px;
}
.agent-card:hover { background: var(--surface-2); }

.agent-card-top {
    display: flex; align-items: center; gap: 14px;
}
.agent-avatar {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--accent-subtle);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-weight: 600; font-size: 15px; color: var(--accent);
    flex-shrink: 0;
}
.agent-info { flex: 1; min-width: 0; }
.agent-name { font-size: 15px; font-weight: 600; }
.agent-title { font-size: 13px; color: var(--text-3); }

.agent-status {
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    padding: 2px 8px; border-radius: 4px; text-transform: uppercase;
    letter-spacing: 0.5px; flex-shrink: 0;
}
.agent-status.live { background: var(--green-dim); color: var(--green); }
.agent-status.beta { background: var(--blue-dim); color: var(--blue); }

.agent-desc {
    font-size: 13px; color: var(--text-2); line-height: 1.6;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Channel Badges */
.agent-channels {
    display: flex; gap: 4px; flex-wrap: wrap;
}
.ch-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    padding: 2px 8px; border-radius: 4px;
    background: rgba(255,255,255,0.04); color: var(--text-3);
    border: 1px solid var(--border);
}
.ch-badge .ch-icon {
    font-size: 9px; opacity: 0.7;
}
.ch-lg {
    font-size: 11px; padding: 4px 10px;
}

.agent-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 12px; border-top: 1px solid var(--border);
    margin-top: auto;
}
.agent-tags {
    display: flex; gap: 4px; flex-wrap: wrap; flex: 1;
}
.agent-tag {
    font-size: 11px; font-weight: 500;
    padding: 2px 8px; border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.04); color: var(--text-3);
}
.agent-price {
    font-family: var(--mono); font-size: 13px; font-weight: 600;
    color: var(--accent); flex-shrink: 0; margin-left: 12px;
}

/* ========== RECIPES ========== */
.recipe-grid {
    display: flex; flex-direction: column; gap: 16px;
}
.recipe-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s ease;
}
.recipe-card:hover { border-color: var(--border-hover); }

.recipe-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.recipe-header h3 { font-size: 18px; font-weight: 700; }
.recipe-save {
    font-family: var(--mono); font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 100px;
    background: var(--green-dim); color: var(--green);
}
.recipe-desc {
    font-size: 14px; color: var(--text-2); line-height: 1.6;
    margin-bottom: 18px;
}
.recipe-products {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 20px;
}
.recipe-product {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: var(--radius-sm);
    background: var(--bg); border: 1px solid var(--border);
}
.recipe-avatar {
    width: 24px; height: 24px; border-radius: 6px;
    background: var(--accent-subtle); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--accent);
    flex-shrink: 0;
}
.recipe-pname { font-size: 13px; font-weight: 500; }

.recipe-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; border-top: 1px solid var(--border);
}
.recipe-pricing { display: flex; align-items: baseline; gap: 10px; }
.recipe-old {
    font-family: var(--mono); font-size: 14px;
    color: var(--text-3); text-decoration: line-through;
}
.recipe-new {
    font-family: var(--mono); font-size: 18px; font-weight: 700;
    color: var(--accent);
}

/* ========== CHANNELS ========== */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.channel-card {
    background: var(--surface);
    padding: 24px;
    text-align: center;
    transition: background 0.15s ease;
}
.channel-card:hover { background: var(--surface-2); }
.channel-icon {
    font-family: var(--mono); font-size: 20px; font-weight: 600;
    color: var(--accent);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    background: var(--accent-subtle); border: 1px solid var(--accent-border);
    border-radius: 10px;
}
.channel-name {
    font-size: 14px; font-weight: 600;
    margin-bottom: 4px;
}
.channel-count {
    font-family: var(--mono); font-size: 11px;
    color: var(--text-3); margin-bottom: 12px;
}
.channel-products {
    display: flex; gap: 4px; justify-content: center; flex-wrap: wrap;
}
.channel-dot {
    width: 26px; height: 26px; border-radius: 6px;
    background: var(--bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    color: var(--text-3);
}
.channel-more {
    font-family: var(--mono); font-size: 10px;
    color: var(--text-3); display: flex; align-items: center;
}

/* ========== PRICING ========== */
.pricing-card { display: flex; flex-direction: column; }
.pricing-label {
    font-family: var(--mono); font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-3); margin-bottom: 12px;
}
.pricing-amount {
    font-size: 28px; font-weight: 800; margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.pricing-amount span { font-size: 14px; font-weight: 400; color: var(--text-3); }
.pricing-card p { margin-bottom: 20px; }
.pricing-list { list-style: none; margin-top: auto; }
.pricing-list li {
    font-size: 13px; color: var(--text-2); padding: 6px 0;
    border-top: 1px solid var(--border);
}
.pricing-card.featured {
    background: var(--surface-2);
    position: relative;
}
.pricing-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--accent);
    box-shadow: 0 0 20px rgba(247,147,30,0.3);
}

/* ========== CTA ========== */
.cta-section { padding-bottom: 120px; }
.cta-box {
    text-align: center;
    padding: 64px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.cta-box h2 { margin-bottom: 8px; }
.cta-box p { color: var(--text-2); margin-bottom: 32px; }
.cta-form {
    display: flex; gap: 8px;
    max-width: 400px; margin: 0 auto;
}
.cta-form input {
    flex: 1; padding: 10px 16px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text);
    font-family: var(--font); font-size: 14px; outline: none;
    transition: border-color 0.15s ease;
}
.cta-form input:focus { border-color: var(--accent-border); }
.cta-form input::placeholder { color: var(--text-3); }

/* ========== FOOTER ========== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.footer-left { display: flex; align-items: center; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 13px; color: var(--text-3); text-decoration: none;
    transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--text-2); }

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
    position: relative; width: 540px; max-height: 85vh;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
    animation: modalIn 0.2s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    width: 28px; height: 28px; border-radius: var(--radius-xs);
    border: 1px solid var(--border); background: var(--surface);
    color: var(--text-3); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.modal-close:hover { border-color: var(--border-hover); color: var(--text); }

.modal-tabs {
    display: flex; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-tab {
    flex: 1; font-family: var(--font); font-size: 13px; font-weight: 500;
    padding: 14px; border: none; background: transparent;
    color: var(--text-3); cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease;
}
.modal-tab.active { color: var(--text); border-bottom-color: var(--accent); }
.modal-tab:hover { color: var(--text-2); }

.modal-panel { display: none; flex: 1; overflow-y: auto; }
.modal-panel.active { display: flex; flex-direction: column; }

/* Modal — Profile */
.modal-header {
    padding: 24px; border-bottom: 1px solid var(--border);
}
.mh-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mh-avatar {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--accent-subtle); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--accent);
}
.mh-name { font-size: 18px; font-weight: 600; }
.mh-role { font-size: 13px; color: var(--text-3); }
.mh-badges { display: flex; gap: 6px; margin-top: 4px; }
.mh-badge {
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    padding: 2px 8px; border-radius: 4px;
}
.mh-personality {
    font-size: 14px; color: var(--text-2); line-height: 1.7;
    padding: 14px; background: var(--bg); border-radius: var(--radius-sm);
    border-left: 2px solid var(--accent);
}

.modal-body { padding: 24px; }
.mb-section { margin-bottom: 20px; }
.mb-label {
    font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-3); margin-bottom: 8px;
}
.mb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mb-tag {
    font-size: 12px; padding: 4px 10px; border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    color: var(--text-2);
}
.mb-channels { display: flex; flex-wrap: wrap; gap: 6px; }
.mb-stats {
    display: flex; gap: 1px; background: var(--border);
    border-radius: var(--radius-sm); overflow: hidden;
}
.mb-stat {
    flex: 1; text-align: center; padding: 14px 8px; background: var(--bg);
}
.mb-stat-val {
    font-family: var(--mono); font-size: 16px; font-weight: 600;
    display: block; margin-bottom: 2px;
}
.mb-stat-label { font-size: 11px; color: var(--text-3); }

.mb-hire { display: flex; gap: 8px; margin-top: 24px; }
.mb-hire .btn-primary { flex: 1; text-align: center; }
.mb-hire .btn-ghost { flex: 1; text-align: center; }

/* Modal — Chat */
.chat-messages {
    flex: 1; overflow-y: auto; padding: 16px; min-height: 280px;
    display: flex; flex-direction: column; gap: 10px;
}
.chat-msg {
    max-width: 85%;
    animation: msgIn 0.2s ease;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg.agent { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
    padding: 10px 14px; border-radius: var(--radius-sm);
    font-size: 14px; line-height: 1.6;
}
.chat-msg.agent .chat-bubble {
    background: var(--bg); border: 1px solid var(--border);
    border-bottom-left-radius: 2px;
}
.chat-msg.user .chat-bubble {
    background: var(--accent-subtle); border: 1px solid var(--accent-border);
    border-bottom-right-radius: 2px; color: var(--text);
}
.chat-time { font-size: 10px; color: var(--text-3); margin-top: 3px; padding: 0 2px; }
.chat-msg.user .chat-time { text-align: right; }

.chat-typing {
    display: flex; gap: 4px; padding: 0 16px 6px; align-items: center;
}
.chat-typing .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--text-3);
    animation: bounce 1.2s ease-in-out infinite;
}
.chat-typing .dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing .dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

.chat-suggestions {
    display: flex; gap: 4px; padding: 0 12px 8px; flex-wrap: wrap;
}
.chat-chip {
    font-family: var(--font); font-size: 12px;
    padding: 5px 12px; border-radius: 100px;
    border: 1px solid var(--border); background: transparent;
    color: var(--text-3); cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}
.chat-chip:hover { border-color: var(--accent-border); color: var(--accent); }

.chat-input-row {
    display: flex; gap: 8px; padding: 12px;
    border-top: 1px solid var(--border);
}
#chat-input {
    flex: 1; padding: 8px 14px; font-family: var(--font); font-size: 14px;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); outline: none;
    transition: border-color 0.15s ease;
}
#chat-input:focus { border-color: var(--accent-border); }
#chat-input::placeholder { color: var(--text-3); }

/* Waitlist modal */
.waitlist-box {
    padding: 40px; text-align: center; max-width: 420px;
}
.waitlist-box h2 { font-size: 24px; margin-bottom: 8px; }
.waitlist-box p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }
.waitlist-box .cta-form { flex-direction: column; max-width: 100%; }

/* ========== COMMAND BAR ========== */
.cmd-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
    display: none; align-items: flex-start; justify-content: center;
    padding-top: 20vh;
}
.cmd-overlay.open { display: flex; }
.cmd-box {
    width: 520px; max-height: 400px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    overflow: hidden; display: flex; flex-direction: column;
    animation: modalIn 0.15s ease;
}
.cmd-input-row {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}
.cmd-search-icon {
    font-family: var(--mono); font-size: 14px; font-weight: 600;
    color: var(--accent); flex-shrink: 0;
}
#cmd-input {
    flex: 1; background: transparent; border: none;
    font-family: var(--font); font-size: 15px; color: var(--text);
    outline: none;
}
#cmd-input::placeholder { color: var(--text-3); }
.cmd-esc {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    padding: 3px 8px; border-radius: 4px;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--text-3); cursor: pointer;
}
.cmd-results {
    overflow-y: auto; flex: 1; padding: 8px;
}
.cmd-section {
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-3); padding: 8px 8px 4px;
}
.cmd-item {
    padding: 10px 12px; border-radius: var(--radius-xs);
    font-size: 14px; color: var(--text-2); cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: background 0.1s ease, color 0.1s ease;
}
.cmd-item:hover { background: var(--surface-2); color: var(--text); }
.cmd-item-avatar {
    width: 24px; height: 24px; border-radius: 6px;
    background: var(--accent-subtle); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--accent);
    flex-shrink: 0;
}
.cmd-item-meta {
    font-family: var(--mono); font-size: 11px; color: var(--text-3);
    margin-left: auto;
}
.cmd-empty {
    text-align: center; padding: 24px; color: var(--text-3); font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 120px 0 80px; }
    .hero h1 { font-size: 36px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { gap: 16px; }
    .hero-stat-val { font-size: 16px; }
    .hero-stat-label { font-size: 9px; }
    .bento-3 { grid-template-columns: 1fr; }
    .agent-grid { grid-template-columns: 1fr; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .recipe-products { flex-direction: column; }
    .section h2 { font-size: 26px; }
    .modal-box { width: 95vw; max-height: 90vh; }
    .cmd-box { width: 95vw; }
    .cta-form { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .bento-card { padding: 24px; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { flex-direction: column; gap: 12px; }
    .hero-stat-sep { width: 32px; height: 1px; }
}
