@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap');

:root {
  --primary: #8B5CF6;
  --secondary: #A78BFA;
  --accent: #C4B5FD;
  --dark: #09090b;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --glass-bg: rgba(139, 92, 246, 0.06);
  --glass-border: rgba(167, 139, 250, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Onest', sans-serif;
  background: #09090b !important;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Убираем все фоновые эффекты и звёзды */
body::before { display: none; }

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #8B5CF6, #C4B5FD, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6, #A78BFA);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(139,92,246,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(139,92,246,0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after { left: 100%; }

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(9,9,11,0.9);
  border-bottom: 1px solid rgba(139,92,246,0.2);
}

header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #ccc;
  margin: 0 1.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover { color: #C4B5FD; }

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(139,92,246,0.25);
  border-color: rgba(167,139,250,0.4);
}

.stats {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: 'VERKUT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
  font-weight: 900;
  opacity: 0.04;
  pointer-events: none;
  font-family: 'Unbounded', sans-serif;
  background: linear-gradient(135deg, #8B5CF6, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer {
  background: #09090b;
  border-top: 1px solid rgba(139,92,246,0.2);
  padding: 5rem 2rem 2rem;
  margin-top: 8rem;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.text-7xl { font-size: 4.5rem; line-height: 1.1; }
.text-6xl { font-size: 3.8rem; }

.animate-float {
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(4deg); }
}