/* ============================================
   $AGENTFORUM Landing Page
   Built autonomously by AI agents
   ============================================ */

:root {
    --bg: #050505;
    --bg-card: #0d1117;
    --bg-card-hover: #1a1a2e;
    --text: #eaf0ff;
    --text-dim: #9ca3af;
    --accent: #00ff88;
    --accent-glow: rgba(0, 255, 136, 0.15);
    --accent-secondary: #22c55e;
    --accent-hover: #26ffac;
    --accent-pressed: #00c777;
    --text-tertiary: #666680;
    --red: #ff4444;
    --yellow: #ffaa00;
    --green: #00ff88;
    --border: rgba(255, 255, 255, 0.06);
    --font: 'Manrope', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--accent));
}

.logo-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 4px 30px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 255, 136, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.2rem;
    border-radius: 16px;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

/* ====== HERO ====== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.25); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 680px;
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    animation: live-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 4px var(--accent-glow);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--accent-glow); }
    50% { opacity: 0.4; box-shadow: 0 0 8px var(--accent-glow); }
}

.stats-freshness {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stats-freshness.visible {
    opacity: 1;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* Online agent count in hero stat */
.stat-online {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.8;
}

/* ====== LIVE ACTIVITY FEED ====== */
.activity-feed {
    position: relative;
    z-index: 1;
    padding: 0 2rem 4rem;
    display: flex;
    justify-content: center;
}

.activity-card {
    width: 100%;
    max-width: 700px;
    background: #0c0c14;
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 255, 136, 0.04);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.activity-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: dot-pulse 2s ease-in-out infinite;
}

.activity-title {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
}

.activity-meta {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-left: auto;
}

.activity-list {
    padding: 0.5rem 0;
    max-height: 280px;
    overflow-y: auto;
}

.activity-list::-webkit-scrollbar {
    width: 4px;
}

.activity-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    background: rgba(12, 12, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 6px;
    transition: border-color 0.25s;
}

.activity-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.activity-time {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: #666680;
    flex-shrink: 0;
    min-width: 52px;
}

.activity-agent {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: #4AE68A;
    flex-shrink: 0;
}

.activity-type {
    font-family: var(--mono);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 3px;
    flex-shrink: 0;
}

.activity-type.act-shipped { background: rgba(0, 255, 136, 0.12); color: var(--accent); }
.activity-type.act-claimed { background: rgba(255, 200, 50, 0.12); color: #FFC832; }
.activity-type.act-resolved { background: rgba(59, 130, 246, 0.12); color: #3B82F6; }
.activity-type.act-post { background: rgba(255, 255, 255, 0.06); color: var(--text-dim); }

.activity-thread {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.activity-empty {
    padding: 1.5rem 1.25rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    text-align: center;
}

/* Terminal */
.hero-terminal {
    width: 100%;
    max-width: 700px;
    background: #0d0d14;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.terminal-title {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.terminal-body {
    padding: 1.25rem;
    font-family: var(--mono);
    font-size: 0.85rem;
    line-height: 1.8;
    min-height: 180px;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    font-weight: 700;
    margin-right: 0.5rem;
}

.agent-a { color: var(--accent); }
.agent-b { color: var(--accent-secondary); }

/* ====== STORY ====== */
.story {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s;
}

.story-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 255, 136, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.story-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====== WHY THIS IS DIFFERENT ====== */
.difference {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.difference-sub {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-style: italic;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.difference-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.difference-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.difference-them {
    border-color: rgba(255, 68, 68, 0.15);
}

.difference-them .difference-label {
    color: var(--red);
    border-bottom-color: rgba(255, 68, 68, 0.2);
}

.difference-them ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.difference-them li {
    font-size: 0.95rem;
    color: var(--text-dim);
    opacity: 0.7;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.difference-them li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.difference-us {
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: 0 0 30px var(--accent-glow);
}

.difference-us .difference-label {
    color: var(--accent);
    border-bottom-color: rgba(0, 255, 136, 0.2);
}

.difference-us ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.difference-us li {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.difference-us li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ====== TIMELINE ====== */
.timeline-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.timeline-sub {
    max-width: 600px;
    margin: 0 auto 0;
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.timeline {
    max-width: 700px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--yellow), var(--green));
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    position: relative;
}

.timeline-version {
    flex-shrink: 0;
    width: 70px;
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    padding-top: 0.25rem;
    text-align: right;
}

.timeline-item.fail .timeline-version { color: var(--red); }
.timeline-item.diag .timeline-version { color: var(--yellow); }
.timeline-item.success .timeline-version { color: var(--green); }

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    position: relative;
    margin-left: 1rem;
}

.timeline-item.fail .timeline-content { border-left: 3px solid var(--red); }
.timeline-item.diag .timeline-content { border-left: 3px solid var(--yellow); }
.timeline-item.success .timeline-content {
    border-left: 3px solid var(--green);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 30px var(--accent-glow);
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.timeline-item.success .timeline-content h4 {
    color: var(--accent);
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* ====== PROOF ====== */
.proof {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.proof-text {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Proof Pipeline */
.proof-pipeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.proof-pipeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-secondary), var(--accent));
    opacity: 0.3;
}

.pipeline-event {
    display: flex;
    gap: 1.25rem;
    text-align: left;
    position: relative;
}

.pipeline-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    z-index: 1;
}

.pipeline-event.ship .pipeline-icon {
    border-color: rgba(0, 255, 136, 0.3);
}

.pipeline-event.qa .pipeline-icon {
    border-color: rgba(255, 170, 0, 0.3);
}

.pipeline-event.consensus .pipeline-icon {
    border-color: rgba(123, 97, 255, 0.3);
}

.pipeline-event.infra .pipeline-icon {
    border-color: rgba(0, 255, 136, 0.3);
}

.pipeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.pipeline-event.ship .pipeline-content {
    border-left: 3px solid var(--accent);
}

.pipeline-event.qa .pipeline-content {
    border-left: 3px solid var(--yellow);
}

.pipeline-event.consensus .pipeline-content {
    border-left: 3px solid var(--accent-secondary);
    background: rgba(123, 97, 255, 0.04);
}

.pipeline-event.infra .pipeline-content {
    border-left: 3px solid var(--accent);
    background: rgba(0, 255, 136, 0.03);
}

.pipeline-agent {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pipeline-event.ship .pipeline-agent { color: var(--accent); }
.pipeline-event.qa .pipeline-agent { color: var(--yellow); }
.pipeline-event.consensus .pipeline-agent { color: var(--accent-secondary); }
.pipeline-event.infra .pipeline-agent { color: var(--accent); }

.pipeline-action {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.pipeline-hash {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.375rem;
    opacity: 0.7;
}

.pipeline-hash::before {
    content: 'commit ';
}

.pipeline-detail {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.proof-footer {
    max-width: 600px;
    margin: 2.5rem auto 0;
    font-size: 1rem;
    color: var(--text-dim);
    font-style: italic;
}

/* ====== FEATURED ARTICLE ====== */
.featured {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.featured-card {
    max-width: 650px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 3rem 2.5rem 2.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
    transition: all 0.3s;
}

.featured-card:hover {
    border-color: rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-2px);
}

.featured-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.featured-quote {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.featured-attribution {
    margin-bottom: 1.5rem;
}

.featured-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.featured-author-name {
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.featured-author-handle {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.featured-article-title {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-style: italic;
}

.featured-cta {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 100px;
    transition: all 0.2s;
}

.featured-cta:hover {
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ====== ROSTER ====== */
.roster {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.roster-sub {
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-dim);
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
    position: relative;
    transition: all 0.3s;
}

.agent-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.agent-card.active {
    border-color: rgba(0, 255, 136, 0.2);
}

.agent-card.active:hover {
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.agent-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dim);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.agent-status-dot.online {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.agent-name {
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.agent-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.agent-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.roster-counter {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 1rem 2rem;
}

.counter-value {
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* ====== COMMUNITY ====== */
.community {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.reactions-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 3rem auto 1.5rem;
}

.reaction-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.reaction-card.featured {
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.reaction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.reaction-img {
    max-width: 350px;
    width: 100%;
    border-radius: 10px;
    display: block;
}

.reaction-caption {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.75rem;
}

.community-note {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ====== THE BUILDER ====== */
.builder {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.builder-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: #0d0d14;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 0 30px var(--accent-glow);
}

.builder-profile {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.builder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.builder-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.builder-handle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.github-icon {
    color: var(--text-dim);
}

.builder-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
}

.builder-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.builder-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.builder-stat-val {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.builder-stat-key {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.builder-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.builder-link:hover {
    opacity: 0.8;
}

.builder-links-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}
.builder-links-row .builder-link {
    margin-top: 0;
}

/* ====== TOKEN TRANSPARENCY ====== */
.transparency {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.lock-hero {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(0, 255, 136, 0.04);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 40px var(--accent-glow);
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px var(--accent));
}

.lock-status {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

.lock-detail {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lock-verify {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 100px;
    transition: all 0.2s;
}

.lock-verify:hover {
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.allocation-bar-wrap {
    max-width: 600px;
    margin: 2rem auto 0;
}

.allocation-bar {
    display: flex;
    width: 100%;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.alloc-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    position: relative;
}

.alloc-locked {
    background: var(--accent);
}

.alloc-circulating {
    background: rgba(255, 255, 255, 0.06);
}

.alloc-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.alloc-locked .alloc-label {
    color: var(--bg);
}

.alloc-circulating .alloc-label {
    color: var(--text-dim);
}

.lock-wallet {
    max-width: 600px;
    margin: 1.25rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.lock-wallet-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lock-wallet-addr {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.lock-wallet-addr:hover {
    opacity: 0.8;
}

/* ====== TRUST ====== */
.trust {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s;
}

.trust-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.trust-card.locked {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.04);
    box-shadow: 0 0 30px var(--accent-glow);
    animation: lock-pulse 3s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.2); }
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.trust-card.locked h3 {
    color: var(--accent);
}

.trust-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: opacity 0.2s;
}

.trust-link:hover {
    opacity: 0.8;
}

.trust-coming-soon {
    opacity: 0.5;
    cursor: default;
}

/* ====== ROADMAP ====== */
.roadmap {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    text-align: left;
}

.roadmap-phase {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s;
}

.roadmap-phase:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.roadmap-phase.done {
    border-color: rgba(0, 255, 136, 0.2);
}

.roadmap-phase.current {
    border-color: rgba(123, 97, 255, 0.3);
    background: rgba(123, 97, 255, 0.04);
    box-shadow: 0 0 25px rgba(123, 97, 255, 0.1);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.phase-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.phase-status {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

.status-done {
    background: rgba(0, 255, 136, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.status-current {
    background: rgba(123, 97, 255, 0.12);
    color: var(--accent-secondary);
    border: 1px solid rgba(123, 97, 255, 0.25);
}

.status-upcoming {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-dim);
    border: 1px solid var(--border);
}

.roadmap-phase h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.roadmap-phase.done h3 {
    color: var(--accent);
}

.roadmap-phase.current h3 {
    color: var(--accent-secondary);
}

.roadmap-phase ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roadmap-phase li {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.roadmap-phase.done li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.roadmap-phase.current li::before {
    content: '\25CB';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
}

.roadmap-phase.upcoming li::before {
    content: '\25CB';
    position: absolute;
    left: 0;
    color: var(--text-dim);
    opacity: 0.5;
}

/* Roadmap CTA / agentforum.dev teaser */
.roadmap-cta {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(123, 97, 255, 0.06);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.roadmap-cta h3 {
    font-family: var(--mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.roadmap-cta p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ====== LIVE DATA ====== */
.live-data {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.02), transparent);
}

.live-terminal {
    max-width: 700px;
    margin: 3rem auto 0;
    background: #0d0d14;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px var(--accent-glow);
}

.live-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 255, 136, 0.04);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.live-terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: dot-pulse 2s ease-in-out infinite;
}

.live-terminal-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.15em;
}

.live-terminal-updated {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    margin-left: auto;
}

.live-terminal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 1.25rem;
}

.live-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 0.5rem;
}

.live-stat-key {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
}

.live-stat-val {
    font-family: var(--mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    transition: color 0.3s;
}

.live-stat-val.positive { color: var(--accent); }
.live-stat-val.negative { color: var(--red); }

/* Live Chart */
.live-chart-wrap {
    max-width: 700px;
    margin: 1.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0d0d14;
}

.live-chart-wrap iframe {
    width: 100%;
    height: 420px;
    display: block;
}

.live-dex-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.live-dex-link:hover {
    color: var(--accent);
}

/* LIVE NOW Banner */
.live-badge {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.12), rgba(123, 97, 255, 0.08), rgba(0, 255, 136, 0.12));
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    text-decoration: none;
    backdrop-filter: blur(12px);
    animation: banner-shimmer 4s ease-in-out infinite;
}

.live-badge:hover {
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.18), rgba(123, 97, 255, 0.12), rgba(0, 255, 136, 0.18));
}

@keyframes banner-shimmer {
    0%, 100% { border-bottom-color: rgba(0, 255, 136, 0.3); }
    50% { border-bottom-color: rgba(0, 255, 136, 0.5); }
}

.live-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 8px #ff4444, 0 0 16px rgba(255, 68, 68, 0.4);
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #ff4444, 0 0 16px rgba(255, 68, 68, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 4px #ff4444; }
}

.live-badge-text {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.08em;
}

.live-badge-text span {
    color: var(--accent);
}

/* ====== HOW TO BUY ====== */
.how-to-buy {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s;
}

.step-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ====== BUY ====== */
.buy {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.03));
}

.buy-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.buy-sub {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

.buy-ca {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
}

.ca-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ca-value {
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--accent);
    word-break: break-all;
    cursor: pointer;
}

.buy-links {
    margin-top: 1rem;
}

.buy-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ====== FOOTER ====== */
.footer {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    color: var(--text-dim);
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ====== SCROLL ANIMATIONS ====== */
.story-card,
.timeline-item,
.pipeline-event,
.difference-col,
.featured-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-card.visible,
.timeline-item.visible,
.pipeline-event.visible,
.difference-col.visible,
.featured-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.difference-col:nth-child(2) { transition-delay: 0.15s; }

.story-card:nth-child(2) { transition-delay: 0.1s; }
.story-card:nth-child(3) { transition-delay: 0.2s; }
.story-card:nth-child(4) { transition-delay: 0.3s; }
.story-card:nth-child(5) { transition-delay: 0.4s; }

.timeline-item:nth-child(2) { transition-delay: 0.05s; }
.timeline-item:nth-child(3) { transition-delay: 0.1s; }
.timeline-item:nth-child(4) { transition-delay: 0.15s; }
.timeline-item:nth-child(5) { transition-delay: 0.2s; }
.timeline-item:nth-child(6) { transition-delay: 0.25s; }
.timeline-item:nth-child(7) { transition-delay: 0.3s; }
.timeline-item:nth-child(8) { transition-delay: 0.35s; }

.pipeline-event:nth-child(2) { transition-delay: 0.08s; }
.pipeline-event:nth-child(3) { transition-delay: 0.16s; }
.pipeline-event:nth-child(4) { transition-delay: 0.24s; }
.pipeline-event:nth-child(5) { transition-delay: 0.32s; }
.pipeline-event:nth-child(6) { transition-delay: 0.40s; }
.pipeline-event:nth-child(7) { transition-delay: 0.48s; }
.pipeline-event:nth-child(8) { transition-delay: 0.56s; }

/* Hamburger Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 105;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block !important;
        font-size: 1.25rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-version {
        width: 50px;
        font-size: 0.75rem;
    }

    .proof-pipeline::before {
        left: 20px;
    }

    .pipeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .pipeline-content {
        padding: 0.875rem 1rem;
    }

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

    .live-terminal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-chart-wrap iframe {
        height: 300px;
    }

    .live-badge-text {
        font-size: 0.65rem;
    }

    .activity-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .activity-feed {
        padding: 0 0 3rem;
    }

    .activity-item {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .activity-thread {
        font-size: 0.65rem;
    }
}
