/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --dark: #0a0a0f;
    --darker: #050508;
    --dark-light: #13131f;
    --dark-lighter: #1a1a2e;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-dark: #64748b;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --font-mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 3D Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.logo-bracket {
    color: var(--primary-light);
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light);
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-description strong {
    color: var(--light);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.play-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Editor Preview */
.editor-preview {
    flex: 1;
    max-width: 550px;
}

.editor-window {
    background: var(--dark-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.editor-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--glass-border);
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27c93f; }

.editor-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.4rem 1rem;
    background: var(--dark);
    border-radius: 6px 6px 0 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.tab.active {
    background: var(--dark-light);
    color: var(--light);
}

.editor-body {
    display: flex;
    min-height: 250px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.line-numbers {
    padding: 1rem 0.75rem;
    background: var(--dark-lighter);
    color: var(--gray-dark);
    text-align: right;
    line-height: 1.8;
}

.code-content {
    flex: 1;
    padding: 1rem;
    line-height: 1.8;
    overflow-x: auto;
}

/* Capabilities Section */
.capabilities {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.capability-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.capability-icon.pink { color: var(--secondary); background: rgba(236, 72, 153, 0.1); }
.capability-icon.cyan { color: var(--accent); background: rgba(6, 182, 212, 0.1); }
.capability-icon.orange { color: var(--warning); background: rgba(245, 158, 11, 0.1); }
.capability-icon.green { color: var(--success); background: rgba(16, 185, 129, 0.1); }
.capability-icon.purple { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }

.capability-icon svg {
    width: 28px;
    height: 28px;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.capability-card > p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.capability-tags {
    display: flex;
    gap: 0.5rem;
}

.capability-tags span {
    padding: 0.25rem 0.75rem;
    background: var(--dark-light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gray);
}

/* Demo Section */
.demo-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.demo-workspace {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    min-height: 500px;
}

.demo-sidebar {
    background: var(--dark);
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--glass-border);
}

.demo-tab {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    margin-bottom: 0.5rem;
}

.demo-tab:hover {
    background: var(--glass);
    color: var(--light);
}

.demo-tab.active {
    background: var(--primary-dark);
    color: white;
}

.demo-content {
    padding: 1.5rem;
}

.demo-panel {
    display: none;
    height: 100%;
}

.demo-panel.active {
    display: block;
}

/* Chat Demo */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
}

.message.kimi {
    align-self: flex-start;
}

.avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    border-radius: 50%;
    font-size: 1.1rem;
}

.bubble {
    max-width: 70%;
    padding: 0.75rem 1rem;
    background: var(--dark);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
}

.input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.input-wrapper input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 0.95rem;
    outline: none;
}

.send-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* Code Demo */
.code-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.code-editor-panel,
.code-output-panel {
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--glass-border);
}

.editor-toolbar select {
    padding: 0.5rem;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--light);
}

.run-btn {
    padding: 0.5rem 1rem;
    background: var(--success);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

#code-input {
    flex: 1;
    padding: 1rem;
    background: var(--dark);
    border: none;
    color: var(--light);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
    resize: none;
    outline: none;
}

.output-header {
    padding: 0.75rem 1rem;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
}

.output-content {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-y: auto;
}

.output-welcome {
    color: var(--gray);
}

/* Terminal Demo */
.terminal-container {
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    padding: 0.75rem 1rem;
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--gray);
}

.terminal-body {
    flex: 1;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-y: auto;
}

.terminal-line {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.prompt {
    color: var(--success);
}

.command {
    color: var(--light);
}

.terminal-output {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--dark-lighter);
    border-top: 1px solid var(--glass-border);
}

#terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--light);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    outline: none;
}

/* Showcase Section */
.showcase {
    padding: 6rem 5%;
}

.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--gray);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.showcase-card.hidden {
    display: none;
}

.showcase-preview {
    height: 200px;
    background: var(--dark-light);
    padding: 1rem;
}

.preview-web {
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.web-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f1f5f9;
}

.web-dots {
    display: flex;
    gap: 0.3rem;
}

.web-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
}

.web-url {
    flex: 1;
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
}

.web-content {
    padding: 0.75rem;
}

.web-hero {
    margin-bottom: 0.75rem;
}

.web-title {
    width: 60%;
    height: 12px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.web-btn {
    width: 60px;
    height: 20px;
    background: #6366f1;
    border-radius: 4px;
}

.web-products {
    display: flex;
    gap: 0.5rem;
}

.product-card {
    flex: 1;
    height: 50px;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.preview-app {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.app-screen {
    width: 160px;
    height: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.app-header {
    padding: 0.5rem;
    background: #6366f1;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.app-charts {
    padding: 1rem;
}

.chart-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 80px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.5rem;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(180deg, #6366f1, #a855f7);
    border-radius: 4px;
}

.preview-api {
    height: 100%;
    background: #1e1e2e;
    border-radius: 8px;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.api-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.api-method {
    padding: 0.2rem 0.5rem;
    background: var(--success);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.api-path {
    color: var(--light);
}

.api-response {
    color: var(--gray);
}

.api-response pre {
    margin: 0;
    font-size: 0.75rem;
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-info > p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.showcase-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.showcase-tags span {
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
}

.tag-react { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.tag-node { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.tag-vue { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.tag-d3 { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.tag-go { background: rgba(6, 182, 212, 0.2); color: #22d3ee; }
.tag-redis { background: rgba(239, 68, 68, 0.2); color: #f87171; }

.showcase-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    flex: 1;
    padding: 0.6rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--light);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-action:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-action.primary {
    background: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-cta-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.btn-cta-secondary:hover {
    background: var(--glass);
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--glass);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
}

.video-placeholder {
    text-align: center;
    padding: 3rem;
}

.video-placeholder h3 {
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: var(--gray);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 3000;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .editor-preview {
        max-width: 100%;
    }
    
    .demo-workspace {
        grid-template-columns: 1fr;
    }
    
    .demo-sidebar {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .demo-tab {
        white-space: nowrap;
    }
    
    .code-workspace {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .capabilities-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
}
