:root {
    --bg: #050505;
    --surface: #111111;
    --accent: #0070f3;
    --text: #f5f5f5;
    --text-dim: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

header { padding: 2rem 0; position: fixed; width: 100%; top: 0; z-index: 100; backdrop-filter: blur(10px); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--accent); }
nav ul { display: flex; list-style: none; gap: 2.5rem; }
nav ul a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
nav ul a:hover { color: var(--accent); }

.hero { height: 100vh; display: flex; align-items: center; padding-top: 80px; }
h1 { font-size: clamp(3rem, 8vw, 5rem); line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; }
.gradient-text { background: linear-gradient(90deg, #0070f3, #00dfd8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.25rem; color: var(--text-dim); max-width: 600px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; }

.btn { padding: 1rem 2.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; border: none; cursor: pointer; }
.primary { background: var(--accent); color: white; }
.secondary { border: 1px solid #333; color: white; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,112,243,0.3); }

.about, .contact { padding: 150px 0; }
h2 { font-size: 2.5rem; margin-bottom: 4rem; position: relative; }
h2::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 50px; height: 4px; background: var(--accent); }

.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.stat-item { background: var(--surface); padding: 2rem; border-radius: 12px; margin-bottom: 1rem; }
.stat-item h3 { font-size: 2rem; color: var(--accent); }

.glass-form { background: var(--surface); padding: 3rem; border-radius: 16px; border: 1px solid #222; max-width: 700px; margin: 0 auto; }
input, textarea { width: 100%; background: #000; border: 1px solid #222; padding: 1rem; color: white; border-radius: 8px; margin-bottom: 1.5rem; font-family: inherit; }

footer { padding: 4rem 0; border-top: 1px solid #111; color: var(--text-dim); font-size: 0.9rem; text-align: center; }

@media (max-width: 768px) {
    nav ul { display: none; }
    .content-grid { grid-template-columns: 1fr; }
}