:root {
    --primary: #000000;
    --accent: #2D5BFF;
    --glass: rgba(255, 255, 255, 0.6);
    --border: rgba(0, 0, 0, 0.08);
    --font: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: #f8f9fb;
    color: var(--primary);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Фоновый живой градиент */
.blob-portal {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 91, 255, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    filter: blur(80px);
    animation: drift 20s infinite alternate;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px); }
}

/* Навигация Glassmorphism */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    padding: 12px 24px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: -1px; }
.logo span { color: var(--accent); }

.menu a {
    text-decoration: none;
    color: var(--primary);
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.menu a:hover { opacity: 1; }

/* Hero Section */
.hero-section {
    padding: 200px 20px 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.text-gradient {
    background: linear-gradient(90deg, #2D5BFF, #7000FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Кнопки */
.btn-glow {
    padding: 20px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Bento Grid */
.bento-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.bento-item {
    background: white;
    border-radius: 32px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.item-large { grid-column: span 2; grid-row: span 2; background: #f0f3ff; border: none; }
.item-medium { grid-column: span 2; }

.tag {
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.bento-item h3 { font-size: 1.5rem; margin: 15px 0 10px; }
.bento-item p { color: #666; font-size: 0.95rem; }

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.stats strong { display: block; font-size: 1.5rem; }
.stats span { font-size: 0.8rem; color: #888; text-transform: uppercase; }
.divider { width: 1px; background: var(--border); height: 40px; }