/* ========== DESIGN TOKENS ========== */
:root {
    --bg-primary: #06060f;
    --bg-secondary: #0c0c1d;
    --bg-card: rgba(15, 15, 35, 0.7);
    --bg-card-hover: rgba(20, 20, 50, 0.8);
    --text-primary: #f0f0ff;
    --text-secondary: #9494b8;
    --text-muted: #5e5e80;
    --accent-cyan: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-pink: #f43f5e;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --gradient-main: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f43f5e 100%);
    --gradient-subtle: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --border-color: rgba(148, 148, 184, 0.1);
    --border-glow: rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --nav-height: 72px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.section-description { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
    padding: 10px 24px; border-radius: var(--radius-sm);
    border: 1px solid transparent; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-subtle); color: #fff; border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35); }
.btn-outline { color: var(--text-primary); border-color: var(--border-color); background: transparent; }
.btn-outline:hover { border-color: var(--accent-cyan); background: rgba(0, 212, 255, 0.05); }
.btn-ghost { color: var(--text-secondary); background: transparent; }
.btn-ghost:hover { color: var(--text-primary); }
.btn-white { background: #fff; color: var(--bg-primary); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,0.3); background: transparent; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    background: rgba(6, 6, 15, 0.8);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(6, 6, 15, 0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon svg { width: 36px; height: 36px; }
.logo-text { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-accent { color: var(--accent-cyan); }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; transition: color 0.2s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gradient-subtle); border-radius: 2px; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 24px; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; position: absolute; transition: all 0.3s; }
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

/* ========== HERO ========== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 80px; overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-bg-effects { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--accent-cyan); top: -100px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--accent-purple); top: 50%; right: -100px; animation-delay: -7s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--accent-pink); bottom: -50px; left: 40%; animation-delay: -14s; }
.hero-grid {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 212, 255, 0.08); border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
    color: var(--accent-cyan); margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero-description { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; max-width: 520px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.hero-stat { text-align: left; }
.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--text-primary); }
.hero-stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--accent-cyan); }
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border-color); }

/* ========== TERMINAL ========== */
.hero-terminal {
    background: rgba(10, 10, 25, 0.9); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: blur(10px);
}
.terminal-header {
    display: flex; align-items: center; gap: 12px; padding: 14px 20px;
    background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-color);
}
.terminal-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }
.terminal-body { padding: 20px; font-family: var(--font-mono); font-size: 0.82rem; line-height: 2; }
.terminal-line { opacity: 0; animation: terminalReveal 0.3s forwards; }
.terminal-line[data-line="1"] { animation-delay: 0.5s; }
.terminal-line[data-line="2"] { animation-delay: 1s; }
.terminal-line[data-line="3"] { animation-delay: 1.5s; }
.terminal-line[data-line="4"] { animation-delay: 1.8s; }
.terminal-line[data-line="5"] { animation-delay: 2.1s; }
.terminal-line[data-line="6"] { animation-delay: 2.4s; }
.terminal-line[data-line="7"] { animation-delay: 3s; }
.terminal-line[data-line="8"] { animation-delay: 3.6s; }
.terminal-line[data-line="9"] { animation-delay: 4.2s; }
.terminal-line[data-line="10"] { animation-delay: 4.8s; }
@keyframes terminalReveal { to { opacity: 1; } }
.t-prompt { color: var(--accent-green); margin-right: 8px; }
.t-command { color: var(--accent-cyan); font-weight: 600; }
.t-flag { color: var(--text-muted); margin-left: 6px; }
.t-success { color: var(--accent-green); margin-right: 8px; }
.t-warning { color: var(--accent-amber); margin-right: 8px; }
.t-info { color: var(--accent-cyan); margin-right: 8px; }
.t-text { color: var(--text-secondary); }
.t-active { color: var(--accent-green); font-weight: 600; }
.t-danger { color: var(--accent-pink); font-weight: 600; }
.cursor-blink { animation: blink 1s step-end infinite; color: var(--accent-cyan); }
@keyframes blink { 50% { opacity: 0; } }

/* ========== TRUSTED SECTION ========== */
.trusted-section { padding: 60px 0; border-bottom: 1px solid var(--border-color); }
.trusted-label { text-align: center; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
.trusted-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; align-items: center; opacity: 0.4; }

/* ========== FEATURES OVERVIEW ========== */
.features-overview { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    padding: 36px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-subtle); opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-glow); background: var(--bg-card-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { margin-bottom: 20px; }
.feature-icon svg { width: 48px; height: 48px; }
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.feature-link { font-size: 0.85rem; color: var(--accent-cyan); font-weight: 600; transition: gap 0.3s; display: inline-flex; gap: 4px; }
.feature-link:hover { gap: 8px; }

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 120px 0; background: var(--bg-secondary); }
.steps-container { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.step-card {
    display: flex; gap: 32px; padding: 36px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    width: 100%; transition: all 0.3s;
}
.step-card:hover { border-color: var(--border-glow); }
.step-number { font-size: 3rem; font-weight: 900; color: rgba(0, 212, 255, 0.15); line-height: 1; min-width: 80px; }
.step-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.step-code { margin-top: 16px; padding: 16px; background: rgba(0,0,0,0.4); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.8; overflow-x: auto; }
.code-keyword { color: var(--accent-purple); }
.code-string { color: var(--accent-green); }
.code-func { color: var(--accent-cyan); }
.step-connector { padding: 16px 0; color: var(--text-muted); }

/* ========== STATS ========== */
.stats-section { padding: 100px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
    text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
}
.stat-value { font-size: 2.5rem; font-weight: 900; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; }
.stat-bar { height: 4px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--gradient-subtle); border-radius: 4px; transition: width 1.5s ease-out; }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 120px 0; background: var(--bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 36px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.testimonial-stars { color: var(--accent-amber); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ========== CTA SECTION ========== */
.cta-section { padding: 120px 0; }
.cta-card {
    position: relative; text-align: center; padding: 80px 60px;
    border-radius: var(--radius-xl); overflow: hidden;
    background: var(--gradient-subtle);
}
.cta-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); filter: blur(60px); }
.cta-orb-1 { width: 300px; height: 300px; top: -50px; left: -50px; }
.cta-orb-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; position: relative; }
.cta-text { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; position: relative; }

/* ========== FOOTER ========== */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-text { font-size: 0.9rem; color: var(--text-muted); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); color: var(--text-muted); transition: all 0.3s;
}
.social-link:hover { background: rgba(0, 212, 255, 0.1); color: var(--accent-cyan); }
.footer-col-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border-color); }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-primary); }

/* ========== ANIMATIONS ========== */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible { opacity: 1; transform: translate(0, 0); }

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
    padding: calc(var(--nav-height) + 80px) 0 60px; text-align: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(0,212,255,0.08) 0%, transparent 60%);
}
.page-header .section-tag { margin-bottom: 16px; }
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.03em; }
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ========== FEATURES PAGE ========== */
.features-detail { padding: 80px 0 120px; }
.feature-detail-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    padding: 60px 0; border-bottom: 1px solid var(--border-color);
}
.feature-detail-card:last-child { border-bottom: none; }
.feature-detail-card:nth-child(even) { direction: rtl; }
.feature-detail-card:nth-child(even) > * { direction: ltr; }
.feature-detail-visual {
    padding: 48px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center; min-height: 300px;
}
.feature-detail-content .section-tag { margin-bottom: 16px; }
.feature-detail-content h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.feature-detail-content p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.feature-checklist { display: flex; flex-direction: column; gap: 12px; }
.feature-checklist li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--text-secondary);
}
.feature-checklist li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }

/* ========== PRICING PAGE ========== */
.pricing-section { padding: 80px 0 120px; }
.pricing-toggle { display: flex; justify-content: center; gap: 12px; align-items: center; margin-bottom: 60px; }
.pricing-toggle span { font-size: 0.9rem; color: var(--text-muted); }
.pricing-toggle span.active { color: var(--text-primary); font-weight: 600; }
.toggle-switch { width: 52px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 14px; cursor: pointer; position: relative; }
.toggle-switch::after { content: ''; width: 22px; height: 22px; background: var(--accent-cyan); border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.3s; }
.toggle-switch.annual::after { transform: translateX(24px); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
    padding: 40px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all 0.3s; position: relative;
}
.pricing-card.popular {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.03);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.08);
}
.pricing-card.popular::before {
    content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-subtle); color: #fff; padding: 4px 16px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-plan { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 3.5rem; font-weight: 900; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.pricing-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; min-width: 20px; }
.pricing-cta { width: 100%; text-align: center; justify-content: center; }

/* ========== DOCS PAGE ========== */
.docs-section { padding: 80px 0 120px; }
.docs-grid { display: grid; grid-template-columns: 260px 1fr; gap: 48px; }
.docs-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); align-self: start; }
.docs-sidebar-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.docs-nav { display: flex; flex-direction: column; gap: 4px; }
.docs-nav-link {
    padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.9rem;
    color: var(--text-secondary); transition: all 0.2s; cursor: pointer;
    border-left: 2px solid transparent;
}
.docs-nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.docs-nav-link.active { color: var(--accent-cyan); border-left-color: var(--accent-cyan); background: rgba(0,212,255,0.05); }
.docs-content { max-width: 800px; }
.docs-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; padding-top: 32px; }
.docs-content h3 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.docs-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.docs-code-block {
    background: rgba(10,10,25,0.8); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); padding: 24px; margin: 24px 0;
    font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.8;
    overflow-x: auto;
}

/* ========== ABOUT PAGE ========== */
.about-section { padding: 80px 0 120px; }
.about-content { max-width: 800px; margin: 0 auto; }
.about-content h2 { font-size: 1.8rem; font-weight: 800; margin: 48px 0 16px; }
.about-content p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.team-card {
    text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-color);
    transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-glow); }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: #fff;
}
.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--text-muted); }

/* ========== CONTACT PAGE ========== */
.contact-section { padding: 80px 0 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid var(--border-color); margin-bottom: 16px; }
.contact-method-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(0,212,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent-cyan); flex-shrink: 0; }
.contact-method-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method-value { font-weight: 600; margin-top: 2px; }
.contact-form { padding: 40px; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.form-input, .form-textarea {
    width: 100%; padding: 12px 16px; font-family: var(--font-sans);
    background: rgba(0,0,0,0.3); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-primary); font-size: 0.9rem;
    transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent-cyan); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .feature-detail-card { grid-template-columns: 1fr; }
    .feature-detail-card:nth-child(even) { direction: ltr; }
    .docs-grid { grid-template-columns: 1fr; }
    .docs-sidebar { position: static; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: var(--nav-height); left: 0; right: 0;
        background: rgba(6, 6, 15, 0.98); padding: 24px;
        border-bottom: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
    }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 48px 24px; }
}
