:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2e;
    --text: #e4e4e7;
    --text-muted: #71717a;
    --accent: #f97316;
    --accent2: #fb923c;
    --green: #22c55e;
    --yellow: #eab308;
    --red: #ef4444;
    --border: #27272a;
    --radius: 16px;
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}

.logo {
    font-size: 1.5rem; font-weight: 800; color: var(--accent);
    text-decoration: none;
}

.nav-links {
    display: flex; list-style: none; gap: 32px;
}

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

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

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span {
    display: block; width: 24px; height: 2px; background: var(--text);
    margin: 5px 0; transition: 0.3s;
}

/* Hero */
.hero {
    position: relative; padding: 160px 0 100px;
    text-align: center; overflow: hidden;
}

.hero-badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 100px; font-size: 0.875rem;
    color: var(--accent); margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem; color: var(--text-muted);
    max-width: 600px; margin: 0 auto 40px;
}

.hero-buttons {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 60px;
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; transition: all 0.3s;
}

.btn-primary {
    background: var(--accent); color: #000;
}

.btn-primary:hover {
    background: var(--accent2); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

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

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

.hero-stats {
    display: flex; gap: 48px; justify-content: center;
    padding-top: 40px; border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block; font-size: 2rem; font-weight: 800;
    color: var(--accent);
}

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

.hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem; font-weight: 800;
    text-align: center; margin-bottom: 12px;
}

.section-subtitle {
    text-align: center; color: var(--text-muted);
    font-size: 1.125rem; margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

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

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

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

/* Status */
.status-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0f0f1a 100%);
}

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

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

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

.status-icon { font-size: 1.5rem; }

.status-name {
    font-weight: 600; font-size: 1rem;
}

.status-detail {
    font-size: 0.8rem; color: var(--text-muted);
    margin-bottom: 8px;
}

.status-bar {
    height: 4px; background: var(--border);
    border-radius: 2px; overflow: hidden;
}

.status-bar-fill {
    height: 100%; border-radius: 2px;
    transition: width 0.5s ease;
}

.status-bar-fill.online { background: var(--green); }
.status-bar-fill.degraded { background: var(--yellow); }
.status-bar-fill.offline { background: var(--red); }

.status-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 100px; font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.online { background: rgba(34, 197, 94, 0.15); color: var(--green); }
.status-badge.degraded { background: rgba(234, 179, 8, 0.15); color: var(--yellow); }
.status-badge.offline { background: rgba(239, 68, 68, 0.15); color: var(--red); }

.status-legend {
    display: flex; gap: 24px; justify-content: center;
    margin-bottom: 16px;
}

.legend-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; color: var(--text-muted);
}

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

.dot.online { background: var(--green); }
.dot.degraded { background: var(--yellow); }
.dot.offline { background: var(--red); }

.status-updated {
    text-align: center; font-size: 0.8rem; color: var(--text-muted);
}

/* Contact */
.contact { padding: 100px 0; }

.contact-cards {
    display: flex; gap: 24px; justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: block; text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 60px;
    text-decoration: none; color: var(--text);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
}

.contact-card.telegram:hover { border-color: #0088cc; }
.contact-card.whatsapp:hover { border-color: #25d366; }

.contact-icon { font-size: 3rem; margin-bottom: 12px; }

.contact-card h3 {
    font-size: 1.25rem; margin-bottom: 4px;
}

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

/* Footer */
.footer {
    padding: 40px 0; text-align: center;
    border-top: 1px solid var(--border);
}

.footer p { font-size: 0.95rem; }

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

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--bg); padding: 24px;
        border-bottom: 1px solid var(--border);
    }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.5rem; }
}
