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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Nav */
.navbar {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    color: #888;
    transition: color 0.15s;
}

.nav-link:hover {
    color: #fff;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 18px;
    color: #888;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #333;
}

.btn-outline:hover {
    border-color: #555;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 17px;
}

/* Apple Sign In Button */
.apple-signin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.apple-signin-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.apple-logo {
    width: 20px;
    height: 20px;
}

/* Messages */
.error-msg {
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #f87171;
    font-size: 14px;
}

.success-msg {
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: #4ade80;
    font-size: 14px;
}

/* Features */
.features-section {
    padding: 48px 0 32px;
    border-top: 1px solid #1a1a1a;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.feature h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 32px 0;
    border-top: 1px solid #1a1a1a;
    margin-top: auto;
}

.copyright {
    font-size: 13px;
    color: #444;
    text-align: center;
}

/* ─── Pricing ─── */
.pricing-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.pricing-hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding-bottom: 60px;
}

.pricing-card {
    position: relative;
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}

.pricing-card:hover {
    border-color: #444;
}

.pricing-card.featured {
    border-color: #fff;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.price .period {
    font-size: 16px;
    color: #666;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #999;
    border-bottom: 1px solid #1a1a1a;
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* ─── Status Page ─── */
.status-page {
    padding: 60px 0;
    text-align: center;
}

.status-page h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.status-card {
    max-width: 480px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px 32px;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.status-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.status-tier {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}

.progress-bar {
    height: 4px;
    background: #222;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-fill {
    height: 100%;
    width: 10%;
    background: #fff;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.status-detail {
    font-size: 14px;
    color: #888;
}

.status-detail.error {
    color: #f87171;
}

.deployment-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ─── Settings Page ─── */
.settings-page {
    padding: 60px 0;
}

.settings-page h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.settings-card {
    max-width: 640px;
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 32px;
}

.settings-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.settings-description {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.5;
}

.broker-section {
    border: 1px solid #222;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.broker-section summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.broker-section summary::-webkit-details-marker {
    display: none;
}

.broker-section summary::before {
    content: '>';
    font-size: 12px;
    color: #666;
    transition: transform 0.2s;
}

.broker-section[open] summary::before {
    transform: rotate(90deg);
}

.badge {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 500;
}

.badge.configured {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.broker-form {
    padding: 0 20px 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s;
}

.form-group input:focus {
    outline: none;
    border-color: #555;
}

.form-group input::placeholder {
    color: #444;
}

/* ─── Agent Config (Settings) ─── */
.settings-card + .settings-card {
    margin-top: 32px;
}

.agent-config-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.agent-config-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 10px;
    gap: 16px;
}

.agent-config-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.agent-config-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #1a1a2e;
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.agent-config-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.agent-config-role {
    display: block;
    font-size: 12px;
    color: #666;
}

.agent-config-row .form-group {
    margin-bottom: 0;
    flex-shrink: 0;
}

.model-select {
    padding: 8px 12px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    min-width: 180px;
}

.model-select:focus {
    outline: none;
    border-color: #555;
}

.agent-config-form .btn {
    margin-top: 4px;
}

/* ─── Dashboard ─── */
.dash-layout {
    padding: 24px 0 60px;
}

.dash-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #222;
    margin-bottom: 32px;
    overflow-x: auto;
}

.dash-tab {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.dash-tab:hover {
    color: #ccc;
}

.dash-tab.active {
    color: #fff;
    border-bottom-color: #fff;
}

.dash-heading {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.metrics-grid.secondary {
    margin-bottom: 32px;
}

.metric-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
}

.metric-card.small {
    padding: 14px 20px;
}

.metric-card.alert {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.metric-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.metric-card.small .metric-value {
    font-size: 16px;
}

.positive { color: #4ade80; }
.negative { color: #f87171; }

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-dot.online { background: #4ade80; }
.status-dot.offline { background: #666; }

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 28px 0 12px;
}

.table-wrap {
    overflow-x: auto;
    margin-bottom: 16px;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dash-table th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 500;
    color: #666;
    border-bottom: 1px solid #222;
    white-space: nowrap;
}

.dash-table td {
    padding: 10px 12px;
    color: #ccc;
    border-bottom: 1px solid #1a1a1a;
    white-space: nowrap;
}

.dash-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.mono {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-weight: 600;
    color: #fff;
}

.badge-status {
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 500;
}

.badge-status.open {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-status.closed {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-status.cancelled {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.view-all-link {
    font-size: 14px;
    color: #888;
    transition: color 0.15s;
}

.view-all-link:hover {
    color: #fff;
}

.sync-time {
    font-size: 12px;
    color: #444;
    margin-top: 16px;
}

.empty-state {
    padding: 48px 24px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Filters */
.filters {
    margin-bottom: 20px;
}

.filter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 8px 14px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #555;
}

/* Decision cards */
.decision-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.decision-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}

.decision-card summary {
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.decision-card summary::-webkit-details-marker { display: none; }

.decision-card summary::before {
    content: '>';
    font-size: 12px;
    color: #666;
    transition: transform 0.2s;
}

.decision-card[open] summary::before {
    transform: rotate(90deg);
}

.decision-time {
    font-size: 12px;
    color: #666;
    font-family: 'SF Mono', 'Fira Code', monospace;
    white-space: nowrap;
}

.decision-summary {
    font-size: 14px;
    color: #ccc;
}

.decision-body {
    padding: 0 20px 20px;
    border-top: 1px solid #1a1a1a;
}

.decision-section {
    margin-top: 16px;
}

.decision-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.decision-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.code-block {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 12px;
    color: #ccc;
    font-family: 'SF Mono', 'Fira Code', monospace;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* Charts */
.chart-container {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.chart-container canvas {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }

    .subtitle {
        font-size: 16px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dash-tabs {
        gap: 0;
    }

    .dash-tab {
        padding: 10px 12px;
        font-size: 13px;
    }

    .filter-form {
        flex-direction: column;
    }

    .agent-subtabs {
        gap: 0;
    }

    .agent-subtab {
        padding: 8px 10px;
        font-size: 12px;
    }

    .agent-grid {
        grid-template-columns: 1fr;
    }
}

/* Agent sub-tabs */
.agent-subtabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid #1a1a1a;
    margin-bottom: 24px;
    overflow-x: auto;
}

.agent-subtab {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.agent-subtab:hover {
    color: #aaa;
}

.agent-subtab.active {
    color: #e5e5e5;
    border-bottom-color: #e5e5e5;
}

/* Agent header with status */
.agents-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.agents-header .dash-heading {
    margin-bottom: 0;
}

.agent-status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid #222;
}

.agent-status-pill.status-running {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.2);
    background: rgba(74, 222, 128, 0.05);
}

.agent-status-pill.status-stopped {
    color: #888;
    border-color: #222;
}

.agent-status-pill.status-unknown {
    color: #666;
    border-color: #1a1a1a;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-running .status-dot {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Agent grid */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.agent-card {
    display: block;
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    padding: 18px;
    transition: border-color 0.15s, background 0.15s;
    text-decoration: none;
    color: inherit;
}

.agent-card:hover {
    border-color: #333;
    background: #141414;
}

.agent-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.agent-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #818cf8;
    flex-shrink: 0;
}

.agent-card-icon.large {
    width: 42px;
    height: 42px;
    font-size: 17px;
}

.agent-card-title {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.agent-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.agent-card-role {
    font-size: 11px;
    color: #555;
    line-height: 1.3;
}

/* Status light on agent cards */
.agent-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.agent-light.light-green {
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.agent-light.light-yellow {
    background: #facc15;
    box-shadow: 0 0 6px rgba(250, 204, 21, 0.5);
}

.agent-light.light-red {
    background: #666;
}

.agent-card-goal {
    font-size: 13px;
    line-height: 1.4;
    color: #777;
    margin-bottom: 12px;
}

.agent-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.agent-card-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tool-badge {
    font-size: 10px;
    font-family: 'SF Mono', 'Menlo', monospace;
    color: #555;
    background: #1a1a1a;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #222;
}

.agent-card-model {
    font-size: 11px;
    color: #444;
    font-family: 'SF Mono', 'Menlo', monospace;
    white-space: nowrap;
}

.agent-card-output {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #1a1a1a;
}

.agent-card-output-label {
    font-size: 11px;
    font-weight: 500;
    color: #4ade80;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.agent-card-output p {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

/* Agent profile (detail page) */
.agent-profile {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
}

.agent-profile-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.agent-profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.agent-profile-role {
    font-size: 13px;
    color: #666;
}

.agent-profile-goal {
    font-size: 14px;
    line-height: 1.5;
    color: #999;
    margin-bottom: 16px;
}

.agent-profile-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Agent detail config form */
.agent-detail-config {
    background: #111;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
}

.config-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.config-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.config-field label {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.config-input {
    padding: 8px 12px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-family: 'SF Mono', 'Menlo', monospace;
    width: 100%;
}

.config-input:focus {
    outline: none;
    border-color: #555;
}

.config-hint {
    font-size: 11px;
    color: #444;
    line-height: 1.3;
}

.agent-detail-config .btn {
    margin-top: 0;
}

/* Section headings */
.section-heading {
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 16px;
    margin-top: 8px;
}

.recent-decisions-section {
    margin-top: 8px;
}

/* Utility */
.text-muted {
    color: #444;
    font-style: italic;
}

.agent-output-text {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    white-space: pre-wrap;
    word-break: break-word;
}

.info-banner {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #999;
}
