* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #060608;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ИНТЕРАКТИВНОЕ СВЕЧЕНИЕ ЗА КУРСОРОМ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: width 0.3s, height 0.3s;
}

/* ШАПКА */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgba(6, 6, 8, 0.8);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav a {
    color: #a0a0a6;
    text-decoration: none;
    margin-right: 25px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ffffff;
}

/* КНОПКИ */
.btn, .nav-btn {
    background-color: #ffffff;
    color: #060608;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover, .nav-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.2);
}

.pulse-btn {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ГЛАВНЫЙ ЭКРАН */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-big-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 50px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-big-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
}

.typing-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
    height: auto;
    max-width: 800px;
    line-height: 1.2;
}

.cursor {
    animation: blink 0.7s infinite;
    color: #ffffff;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    font-size: 18px;
    color: #808086;
    max-width: 550px;
    margin-bottom: 35px;
}

/* СТАТИСТИКА */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 220px;
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 13px;
    color: #808086;
}

/* ЖУРНАЛЬНЫЙ СТИЛЬ (EDITORIAL) */
.editorial-section {
    padding: 90px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #808086;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.editorial-section h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 600;
}

.large-text {
    font-size: 22px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 30px;
}

.manifesto-box {
    border-left: 2px solid #ffffff;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #999999;
    font-size: 16px;
}

.manifesto-box strong {
    color: #ffffff;
}

/* ОБЩИЕ СЕКЦИИ И КАРТОЧКИ */
.section {
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.card-num {
    font-size: 14px;
    color: #a0a0a6;
    display: block;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: #808086;
    font-size: 14px;
}

/* ПРОЦЕСС */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
    font-size: 28px;
    font-weight: 700;
    color: #505056;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.process-item p {
    color: #808086;
    font-size: 15px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 25px;
    border-radius: 16px;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-item p {
    color: #808086;
    font-size: 14px;
}

/* АНИМАЦИЯ СКРОЛЛА */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #505056;
    font-size: 13px;
}

/* ВСПЛЫВАЮЩЕЕ ОКНО */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    background-color: #121216;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #808086;
    cursor: pointer;
}

.contact-box {
    background-color: #1a1a20;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
}

.tg-username {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.tg-link {
    width: 100%;
    text-align: center;
}


@media (max-width: 768px) {
    .header { padding: 12px 20px; }
    .nav a { display: none; }
    .nav-btn { padding: 8px 18px; font-size: 13px; }
    .hero { padding: 40px 20px; }
    .hero-big-logo { width: 100px; height: 100px; margin-bottom: 20px; }
    .typing-title { font-size: 28px; min-height: 70px; margin-bottom: 15px; }
    .hero-desc { font-size: 15px; margin-bottom: 25px; }
    .editorial-section { padding: 50px 20px; }
    .editorial-section h2 { font-size: 26px; }
    .large-text { font-size: 17px; }
    .section { padding: 40px 20px; }
    .section h2 { font-size: 24px; margin-bottom: 25px; }
    .stats-section { gap: 15px; padding: 20px; }
    .stat-card { width: 100%; padding: 18px; }
    .process-item { gap: 15px; }
    .step-num { font-size: 20px; }
    .modal-window { padding: 25px 20px; width: 95%; }
}