

/* Start:/about/style.css?17736205146404*/
/* =========================================
   ABOUT PAGE - WEB 3.0 STYLE (WHITE/RED)
========================================= */

.about-page {
    position: relative;
    background-color: #fdfdfd;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    padding-bottom: 100px;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
    z-index: 10;
}

/* --- Фоновые плавающие цветовые пятна --- */
.about-bg-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    animation: floatBlob 10s infinite alternate ease-in-out;
    pointer-events: none;
}
.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(198,40,40,0.15) 0%, rgba(198,40,40,0) 60%);
    top: -100px;
    left: -150px;
}
.blob-2 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,82,82,0.15) 0%, rgba(255,82,82,0) 60%);
    top: 40%;
    right: -200px;
    animation-delay: -3s;
}
.blob-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(198,40,40,0.15) 0%, rgba(198,40,40,0) 60%);
    bottom: -150px;
    left: 20%;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* --- Glassmorphism Карточка --- */
.about-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(198, 40, 40, 0.08);
}

/* --- Утилиты --- */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #c62828, #ff5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HERO СЕКЦИЯ --- */
.about-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
}
.about-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(198, 40, 40, 0.05);
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.about-hero__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}
.about-hero__subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    line-height: 1.6;
}

/* --- СЕКЦИИ --- */
.about-section {
    padding: 80px 0;
}
.about-section__title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}
.about-section__subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

/* --- О КОМПАНИИ (СЕТКА) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid__text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.about-image-wrapper {
    padding: 10px;
}
.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* --- ROADMAP --- */
.about-roadmap {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}
.about-roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 9px;
    width: 2px;
    background: linear-gradient(to bottom, #ffebee, #c62828);
}
.roadmap-item {
    position: relative;
    margin-bottom: 50px;
}
.roadmap-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ff5252;
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.5);
    z-index: 2;
}
.roadmap-item.active::before {
    background: #c62828;
    border-color: #c62828;
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.8);
}
.roadmap-item__year {
    font-size: 20px;
    font-weight: 800;
    color: #c62828;
    margin-bottom: 10px;
}
.roadmap-item__card h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
}
.roadmap-item__card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* --- ТЕХНОЛОГИИ (TECH STACK) --- */
.about-tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.tech-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.tech-badge.active, .tech-badge:hover {
    background: #c62828;
    color: #fff;
    border-color: #c62828;
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.3);
    transform: translateY(-5px) scale(1.05);
    will-change: transform;
}

/* --- АНИМАЦИИ ПРИ СКРОЛЛЕ --- */
.about-anim {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}
.fade-up { transform: translateY(40px); }
.slide-left { transform: translateX(50px); }
.slide-right { transform: translateX(-50px); }

.about-anim.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- АДАПТИВ --- */
@media (max-width: 991px) {
    .about-hero__title { font-size: 48px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .about-hero__title { font-size: 36px; }
    .about-section__title { font-size: 32px; }
    .about-roadmap { padding-left: 30px; }
    .roadmap-item::before { left: -28px; }
    .tech-badge { font-size: 16px; padding: 12px 25px; }
}

/* End */
/* /about/style.css?17736205146404 */
