/* Landing — заглушка #buhteam */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0f;
    --fg: #f5f5f7;
    --accent: #4f46e5;
    --accent-2: #ec4899;
    --muted: #71717a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.bg-grid {
    position: fixed; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(79,70,229,0.25), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(236,72,153,0.20), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.landing {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 96px 32px 64px;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 48px;
}

.badge-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34,197,94,0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.logo {
    font-size: clamp(64px, 12vw, 140px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .hash {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    margin-right: -0.05em;
}

.logo .accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 48px;
}

.manifesto {
    max-width: 600px;
    margin: 0 auto 80px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.manifesto p { margin-bottom: 8px; }

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

.feature {
    padding: 24px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);
    transition: transform 0.2s, border-color 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(79,70,229,0.5);
}

.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-title { font-weight: 600; margin-bottom: 4px; }
.feature-desc { font-size: 13px; color: var(--muted); }

.landing-footer {
    color: var(--muted);
    font-size: 13px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
