@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400&display=swap');

body {
    margin: 0;
    font-family: "Anthropic Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.kb-root {
    background: #0e0e10;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    zoom: 1.13;
}

.kb-bg-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145,71,255,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.kb-lang {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    display: flex; gap: 4px; z-index: 10;
    visibility: hidden; /* временно спрятал, todo: сделать нормальное позиционирование */
}

.kb-lang button {
    background: transparent;
    border: 1px solid rgba(145,71,255,0.3);
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif;
    font-size: 13px; padding: 4px 10px;
    border-radius: 6px; cursor: pointer; transition: all 0.2s;
}

.kb-lang button.active {
    background: rgba(145,71,255,0.15);
    border-color: #9147ff; color: #bf94ff;
}

.kb-block {
    display: flex; flex-direction: column;
    align-items: center; width: 100%;
    max-width: 560px;
    margin-bottom: 2rem;
    z-index: 1;
}

.kb-block:last-child { margin-bottom: 0; }

.kb-logo { display: flex; align-items: center; gap: 12px; }

.kb-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.kb-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(145,71,255,0.12);
    border: 1px solid rgba(145,71,255,0.3);
    color: #bf94ff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: default;
}

.kb-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #9147ff; animation: pulse-p 2s infinite;
}

@keyframes pulse-p {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.kb-headline-ru {
    font-family: 'Inter', sans-serif;
    font-size: 38px; font-weight: 500; color: #ffffff;
    text-align: center; line-height: 1.2; margin: 0;
}

.kb-headline-en {
    font-family: 'Outfit', sans-serif;
    font-size: 38px; font-weight: 500; color: #ffffff;
    text-align: center; line-height: 1.2; margin: 0;
}

.kb-headline-ru span, .kb-headline-en span { color: #9147ff; }

.kb-sub-ru {
    font-family: 'Inter', sans-serif;
    font-size: 16px; color: rgba(255,255,255,0.5);
    text-align: center; line-height: 1.6; font-weight: 300; margin: 0;
}

.kb-sub-en {
    font-family: 'Outfit', sans-serif;
    font-size: 16px; color: rgba(255,255,255,0.5);
    text-align: center; line-height: 1.6; font-weight: 300; margin: 0;
}

.kb-preview {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 1rem;
    width: 100%; display: flex; gap: 12px; align-items: flex-start;
}

.kb-preview-card {
    background: #1f1f23;
    border: 1px solid rgba(145,71,255,0.2);
    border-radius: 8px; padding: 12px; flex: 1;
}

.kb-live-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #57e389; animation: pulse-p 2s infinite;
}

.kb-live-text {
    font-size:12px;
    color:#57e389;
    font-family:'Inter',sans-serif;
    cursor: default;
}

.kb-preview-title {
    font-size: 11px; color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif; margin-bottom: 8px;
    text-transform: uppercase; letter-spacing: 1px;
}

.kb-preview-name {
    font-size: 14px; font-weight: 400;
    color: #ffffff; font-family: 'JetBrains Mono', monospace; margin-bottom: 8px;
}

.kb-preview-row {
    display: flex; justify-content: space-between;
    font-size: 12px; padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.kb-preview-row:last-of-type { border-bottom: none; }
.kb-preview-key { color: rgba(255,255,255,0.35); font-family: 'Inter', sans-serif; }
.kb-preview-val { color: rgba(255,255,255,0.8); font-family: 'Inter', sans-serif; }

.kb-preview-btn {
    margin-top: 8px;
    background: rgba(145,71,255,0.15);
    border: 1px solid rgba(145,71,255,0.3);
    color: #bf94ff; font-size: 12px; padding: 6px;
    border-radius: 6px; text-align: center; font-family: 'Inter', sans-serif;
    cursor: default;
}

.kb-features {
    display: flex; gap: 0.75rem;
    flex-wrap: wrap; justify-content: center; width: 100%;
}

.kb-feature {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 10px 16px;
    color: rgba(255,255,255,0.7); font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.kb-feature i { color: #9147ff; font-size: 16px; }

.kb-stats {
    display: flex; gap: 1.5rem;
    justify-content: center; flex-wrap: wrap; width: 100%;
}

.kb-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }

.kb-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 22px; font-weight: 500; color: #ffffff;
}

.kb-stat-val span { color: #9147ff; }

.kb-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px; color: rgba(255,255,255,0.35);
}

.kb-stat-sep {
    width: 1px; height: 32px;
    background: rgba(255,255,255,0.08); align-self: center;
}

/* Счётчик ожидания */
.kb-waitlist {
    display: flex; align-items: center; gap: 10px;
    background: rgba(145,71,255,0.07);
    border: 1px solid rgba(145,71,255,0.2);
    border-radius: 10px; padding: 10px 20px;
}

.kb-waitlist-num {
    font-family: 'Outfit', sans-serif;
    font-size: 24px; font-weight: 500; color: #bf94ff;
}

.kb-waitlist-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4;
}

.kb-cta {
    display: flex; gap: 12px;
    flex-wrap: wrap; justify-content: center; width: 100%;
}

.kb-btn-primary {
    background: #9147ff; color: #ffffff; border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 12px 28px; border-radius: 8px;
    cursor: pointer; transition: all 0.2s;
}

.kb-btn-primary:hover { background: #772ce8; }

.kb-btn-secondary {
    background: transparent; color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: 'Inter', sans-serif;
    font-size: 15px; padding: 12px 28px;
    border-radius: 8px; cursor: pointer; transition: all 0.2s;
}

.kb-btn-secondary:hover {
    border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9);
}

.kb-subscribe {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 1.25rem;
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
}

.kb-subscribe-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px; color: rgba(255,255,255,0.6); text-align: center;
}

.kb-subscribe-title strong { color: #ffffff; font-weight: 500; }

.kb-subscribe-form {
    display: flex; gap: 8px; width: 100%; max-width: 400px;
}

.kb-subscribe-form input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 10px 14px;
    color: #ffffff; font-size: 14px;
    font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
}

.kb-subscribe-form input::placeholder { color: rgba(255,255,255,0.25); }
.kb-subscribe-form input:focus { border-color: rgba(145,71,255,0.5); }

.kb-subscribe-form button {
    background: #9147ff; color: #ffffff; border: none;
    font-size: 14px; font-weight: 500;
    padding: 10px 20px; border-radius: 8px;
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s; font-family: 'Inter', sans-serif;
}

.kb-subscribe-form button:hover { background: #772ce8; }

.kb-subscribe-note {
    font-size: 11px; color: rgba(255,255,255,0.2); font-family: 'Inter', sans-serif;
}

.kb-success {
    display: none; align-items: center; gap: 8px;
    color: #57e389; font-size: 14px; font-family: 'Inter', sans-serif;
}

.kb-socials {
    display: flex; gap: 10px;
    justify-content: center; flex-wrap: wrap;
}

.kb-social {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 8px 14px;
    color: rgba(255,255,255,0.5); font-size: 13px;
    cursor: pointer; transition: all 0.2s;
    text-decoration: none; font-family: 'Inter', sans-serif;
}

.kb-social:hover { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.kb-social i { font-size: 16px; }

.kb-social-disabled {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; padding: 8px 14px;
    color: rgba(255,255,255,0.25); font-size: 13px;
    font-family: 'Inter', sans-serif; cursor: default;
}

.kb-social-disabled i { font-size: 16px; }

.kb-social-soon {
    font-size: 10px; color: rgba(255,255,255,0.2);
    font-family: 'Inter', sans-serif; margin-left: 2px;
}

.kb-platforms {
    display: flex; gap: 8px;
    align-items: center; justify-content: center; flex-wrap: wrap;
    margin-bottom: 12px;
    cursor: default;
}

.kb-platform {
    font-size: 11px; color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3px 10px; border-radius: 4px; font-family: 'Inter', sans-serif;
}

.kb-platform-active {
    font-size: 11px; color: #f5c518;
    background: rgba(245,197,24,0.08);
    border: 1px solid rgba(245,197,24,0.3);
    padding: 3px 10px; border-radius: 4px;
    display: flex; align-items: center; gap: 5px; font-family: 'Inter', sans-serif;
}

.kb-platform-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #f5c518; animation: pulse-p 2s infinite;
}

.kb-footer-text {
    font-size: 12px; color: rgba(255,255,255,0.4);
    text-align: center; font-family: 'Inter', sans-serif;
    margin-top: 1.5rem;
    line-height: 1.6;

}

.kb-grant {
    font-size: 12px; color: rgba(255,255,255,0.5);
    text-align: center; font-family: 'Inter', sans-serif;
    line-height: 1.5; max-width: 480px; margin-top: 8px;
}