/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #6366f1;
    --accent: #f59e0b;
    
    /* Backgrounds */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    
    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Code */
    --code-bg: #0d1117;
    --code-border: #30363d;
    
    /* Syntax Highlighting */
    --syntax-keyword: #ff7b72;
    --syntax-string: #a5d6ff;
    --syntax-type: #79c0ff;
    --syntax-function: #d2a8ff;
    --syntax-comment: #8b949e;
    --syntax-number: #79c0ff;
    --syntax-attr: #7ee787;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition: 0.3s ease;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 180px 0 60px; /* Account for navbar (72px) + banner (~48px) + spacing */
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

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

/* SeaORM Badge */
.seaorm-badge {
    margin-top: 24px;
    padding: 12px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.seaorm-badge a {
    color: var(--secondary);
    font-weight: 600;
    margin: 0 4px;
}

.seaorm-badge a:hover {
    color: var(--primary-light);
}

/* Code Window */
.hero-code {
    position: relative;
}

.code-window {
    background: var(--code-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--code-border);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--code-border);
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.filename {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.code-window pre {
    padding: 24px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.7;
}

.code-window code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
}

/* Syntax Highlighting */
.keyword { color: var(--syntax-keyword); }
.string { color: var(--syntax-string); }
.type { color: var(--syntax-type); }
.function { color: var(--syntax-function); }
.comment { color: var(--syntax-comment); font-style: italic; }
.number { color: var(--syntax-number); }
.attr { color: var(--syntax-attr); }

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SeaORM Section */
.seaorm-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--border-radius);
    text-align: center;
}

.seaorm-section h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.seaorm-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 24px;
}

.seaorm-section a {
    color: var(--secondary);
    font-weight: 600;
}

.seaorm-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.seaorm-benefits span {
    color: var(--primary-light);
    font-weight: 500;
}

/* ===== Quick Start Section ===== */
.quickstart {
    background: var(--bg-primary);
}

.quickstart-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.code-block {
    position: relative;
    background: var(--code-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--code-border);
    overflow: hidden;
}

.code-block pre {
    padding: 20px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.7;
}

.code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

/* ===== Examples Section ===== */
.examples {
    background: var(--bg-secondary);
}

.examples-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.examples-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    background: var(--code-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--code-border);
    overflow: hidden;
}

.tab-content.active {
    display: block;
}

.tab-content pre {
    padding: 24px;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.8;
}

.tab-content code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Monaco', monospace;
}

/* ===== Comparison Section ===== */
.comparison {
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.comparison-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.comparison-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* SeaORM Relationship Diagram */
.seaorm-relationship {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    text-align: center;
}

.seaorm-relationship h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

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

.diagram-item {
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    text-align: center;
    min-width: 140px;
}

.diagram-item.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.diagram-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.diagram-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.diagram-item.highlight span {
    color: rgba(255, 255, 255, 0.9);
}

.diagram-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: bold;
}

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--text-primary);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 12px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-seo {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.footer-seo p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-seo strong {
    color: var(--text-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-code {
        order: 2;
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .code-window pre,
    .code-block pre,
    .tab-content pre {
        font-size: 0.85rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .seaorm-badge {
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .relationship-diagram {
        flex-direction: column;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
    }
    
    .seaorm-benefits {
        flex-direction: column;
        gap: 12px;
    }
    
    .examples-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .code-window pre,
    .code-block pre,
    .tab-content pre {
        font-size: 0.75rem;
        padding: 12px;
    }
    
    .examples-tabs {
        gap: 4px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .feature-card,
    .comparison-card {
        padding: 20px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ===== Additional Mobile Optimizations ===== */
@media (max-width: 640px) {
    .hero-code {
        display: none; /* Hide code preview on very small screens */
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-code {
    animation: fadeInUp 0.8s ease-out;
}

.hero-code {
    animation-delay: 0.2s;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}
/* ===== Early Stage Banner (Inside navbar) ===== */
.early-stage-banner-nav {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 10px 24px;
    font-size: 0.9rem;
    color: #1f2937;
    text-align: center;
    width: 100%;
}

.early-stage-banner-nav code {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
}

.early-stage-banner-nav strong {
    color: #111827;
}

/* ===== Early Stage Banner (old - keep for reference) ===== */
.early-stage-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--border-radius);
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.early-stage-banner a {
    color: #fcd34d;
    font-weight: 600;
    text-decoration: underline;
}

.early-stage-banner a:hover {
    color: #fef08a;
}

/* ===== CLI Section ===== */
.cli-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.cli-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.cli-install .code-block {
    height: 100%;
}

.cli-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cli-feature {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cli-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cli-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.cli-feature h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cli-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CTA Early Stage ===== */
.early-stage-cta {
    text-align: center;
    margin-bottom: 32px;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.9rem;
    color: #fbbf24;
    margin-bottom: 16px;
}

.testers-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-top: 20px;
    padding: 0;
}

.testers-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testers-list strong {
    color: var(--text-primary);
}

/* CTA CLI Section */
.cta-cli {
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px auto;
    max-width: 500px;
}

.cta-cli h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.cta-cli .code-block {
    margin: 0;
}

/* ===== Responsive CLI ===== */
@media (max-width: 900px) {
    .cli-content {
        grid-template-columns: 1fr;
    }
    
    .cli-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .cli-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .early-stage-banner {
        flex-direction: column;
        gap: 4px;
    }
    
    .testers-list {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}