.main {
    background: #000;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at center top, rgba(30, 144, 255, 0.1), transparent 50%);
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary);
}

.subtitle {
    color: #888;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats {
    padding: 4rem 0;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    background: #050505;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .statsGrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.statValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.statLabel {
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.values {
    padding: 8rem 0;
}

.valuesContent {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .valuesContent {
        grid-template-columns: 1fr 1fr;
    }
}

.valuesImage {
    width: 100%;
    aspect-ratio: 4/3;
    background: #111;
    border-radius: 24px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.valuesImage::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(30, 144, 255, 0.1), transparent);
}

.valuesText h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.valuesText p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team {
    padding: 4rem 0 8rem;
}

.sectionTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.memberCard {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.memberCard:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.memberCard h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.memberCard p {
    color: #666;
    font-size: 0.9rem;
}