:root {
    --bg-color: #0c0c0c;
    --text-main: #ffffff;
    --text-muted: #2c2c2c;
    --accent: #ffffff;
    --accent-dim: #575757
}

* {
    font-family: Inter, sans-serif;
    box-sizing: border-box
}

body {
    background: linear-gradient(180deg, #0a0a0a 0, #0c0c0c 30%, #0e0e0e 70%, #0a0a0a 100%);
    color: var(--text-main);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 220px;
    width: 100%
}

.hero {
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease
}

.hero h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1
}

.hero p {
    font-size: 16px;
    color: #6b6b6b;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px
}

.btn-minimal {
    padding: 14px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-color);
    border: 1px solid var(--text-main)
}

.btn-primary:hover {
    background: #ddd;
    transform: scale(1.02);
    color: var(--bg-color)
}

.btn-secondary {
    background: 0 0;
    color: var(--text-main);
    border: 1px solid var(--accent-dim)
}

.btn-secondary:hover {
    border-color: var(--text-main);
    color: var(--text-main)
}

.hero-image-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 24px;
    position: relative;
    margin-bottom: 120px;
    perspective: 2000px
}

.hero-image {
    width: 100%;
    height: auto;
    transform: rotateX(10deg);
    transition: transform .5s ease, box-shadow .5s ease;
    display: block
}

.hero-image:hover {
    transform: rotateX(-10deg) scale(1.1)
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 30px
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    padding: 0 24px;
    width: 100%;
    max-width: 1200px
}

.stat {
    background: linear-gradient(90deg, transparent 0, rgba(255, 255, 255, .05) 50%, transparent 100%);
    border-radius: 8px;
    padding: 10px 20px;
    text-align: center;
    transition: all .3s ease;
    min-width: 140px
}

.stat:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1)
}

.stat-num {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    letter-spacing: -.5px
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500
}

.stats-header {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative
}

.stats-header::before {
    content: "Пока ты скачиваешь всё подряд, DarkSide уже имеет";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(180deg, #fff 0, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(4px);
    opacity: .6;
    z-index: -1
}

.features-header {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 20px 0;
    background: linear-gradient(180deg, #fff 0, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative
}

.features-header::before {
    content: "Мы стараемся выделяться, реализуя всё задуманное";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(180deg, #fff 0, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(4px);
    opacity: .6;
    z-index: -1
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 0 24px;
    width: 100%;
    max-width: 1400px
}

.feature {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all .3s ease;
    min-width: 300px;
    max-width: 400px
}

.feature:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .02)
}

.feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main)
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0
}

.features-footnote {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 40px
}

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    width: 100%;
    max-width: 600px;
    margin: 0 auto
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease
}

.contact-link:hover {
    color: var(--text-main)
}

.contact-link i {
    font-size: 16px
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px
    }

    .stats-row {
        gap: 20px
    }

    .main-wrapper {
        padding-top: 100px
    }
}