:root {
    --bg: #050008;
    --bg-2: #0a0313;
    --white: #f5f5f7;
    --muted: rgba(255, 255, 255, 0.72);
    --muted-2: rgba(255, 255, 255, 0.45);
    --line: rgba(255, 255, 255, 0.12);
    --purple: #7b5cff;
    --purple-2: #a54cff;
    --pink: #ff4a74;
    --deep: #16001f;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top center, #0a0313 0%, #040007 55%, #020004 100%);
    color: var(--white);
}

body {
    display: flex;
    justify-content: center;
}

.page {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    padding: 0 28px;
    background:
            radial-gradient(circle at 50% 10%, rgba(120, 70, 255, 0.06), transparent 30%),
            linear-gradient(180deg, #050008 0%, #020004 100%);
}

/* HERO */

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
}

.navbar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 12px 0;
}

.menu {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand sup {
    font-size: 10px;
    position: relative;
    top: -0.8em;
}

.start-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding-left: 10px;
}

.start-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 45%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    box-shadow: 0 0 10px rgba(255, 75, 130, 0.8);
}

.hero-shape {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-shape::before {
    content: "";
    position: absolute;
    top: -110px;
    left: 30px;
    width: 900px;
    height: 620px;
    border-radius: 44% 56% 52% 48% / 42% 34% 66% 58%;
    transform: rotate(8deg);
    background:
            radial-gradient(circle at 15% 10%, rgba(255,255,255,0.25), transparent 10%),
            linear-gradient(180deg, #171717 0%, #060606 100%);
    box-shadow:
            inset 40px 20px 60px rgba(255,255,255,0.06),
            inset -40px -30px 80px rgba(255,255,255,0.02);
    overflow: hidden;
}

.hero-shape::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 20px;
    width: 920px;
    height: 650px;
    border-radius: 44% 56% 52% 48% / 42% 34% 66% 58%;
    transform: rotate(8deg);
    background:
            repeating-radial-gradient(
                    circle at 48% 48%,
                    rgba(255,255,255,0.18) 0 1px,
                    transparent 2px 11px
            );
    opacity: 0.42;
    mix-blend-mode: screen;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 16px 0;
}

.hero-title {
    margin: 0;
    text-align: center;
    font-size: clamp(56px, 8vw, 108px);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #745bff 0%, #964cff 40%, #ff4d75 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-bottom {
    margin-top: 250px;
    display: grid;
    grid-template-columns: 190px 330px 170px;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat strong {
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.07em;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat p,
.hero-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.15;
    color: rgba(255,255,255,0.82);
}

.hero-text {
    max-width: 330px;
}

.contact-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 52px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    position: relative;
    background:
            linear-gradient(#090611, #090611) padding-box,
            linear-gradient(90deg, var(--purple), var(--pink)) border-box;
    border: 1px solid transparent;
}

.contact-btn::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    position: absolute;
    left: 34px;
    box-shadow: 0 0 10px rgba(255, 75, 130, 0.8);
}

/* SERVICES */

.services {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 20px;
    align-items: start;
    margin-top: 40px;
    min-height: 760px;
}

.services-left {
    padding: 20px 0 0 90px;
}

.section-title {
    margin: 0 0 26px;
    font-size: clamp(52px, 7vw, 100px);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.section-title span {
    display: block;
    background: linear-gradient(90deg, #745bff 0%, #964cff 40%, #ff4d75 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-list {
    max-width: 620px;
}

.service-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 24px 0 18px;
    border-bottom: 1px solid var(--line);
}

.service-index {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
}

.icon {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(180deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-index span {
    font-size: 11px;
    color: var(--muted-2);
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.service-content p {
    margin: 0;
    max-width: 420px;
    font-size: 12px;
    line-height: 1.18;
    color: var(--muted);
}

.services-right {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.disc-visual {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 540px;
    height: 420px;
}

.disc {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.2px) drop-shadow(0 22px 30px rgba(0,0,0,0.45));
}

.disc::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
            radial-gradient(circle at 60% 35%, rgba(160,190,255,0.8), transparent 20%),
            radial-gradient(circle at 30% 25%, rgba(255,150,240,0.6), transparent 28%),
            linear-gradient(135deg, #2b0038 0%, #6e2d9f 35%, #2b0f68 60%, #0b0621 100%);
    box-shadow:
            inset -18px -24px 40px rgba(0,0,0,0.55),
            inset 15px 18px 30px rgba(255,255,255,0.15);
}

.disc::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 22px solid rgba(20, 5, 35, 0.72);
    box-shadow:
            inset 0 0 24px rgba(255,255,255,0.04),
            0 0 12px rgba(255,255,255,0.05);
}

.disc-1 {
    width: 430px;
    height: 250px;
    bottom: 30px;
    left: 0;
    transform: rotate(18deg);
}

.disc-2 {
    width: 330px;
    height: 190px;
    bottom: 110px;
    right: 35px;
    transform: rotate(16deg);
}

.disc-3 {
    width: 240px;
    height: 135px;
    bottom: 145px;
    right: 10px;
    transform: rotate(14deg);
}

/* Responsive */

@media (max-width: 1100px) {
    .hero-bottom {
        grid-template-columns: 1fr;
        justify-content: start;
        margin-top: 300px;
    }

    .contact-btn {
        justify-self: start;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .services-left {
        padding-left: 20px;
    }

    .services-right {
        min-height: 420px;
    }

    .disc-visual {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 700px) {
    .page {
        padding: 0 14px;
    }

    .navbar {
        padding-top: 18px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-shape::before {
        width: 620px;
        height: 430px;
        left: -80px;
        top: -40px;
    }

    .hero-shape::after {
        width: 650px;
        height: 460px;
        left: -90px;
        top: -50px;
    }

    .hero-content {
        padding-top: 48px;
    }

    .hero-bottom {
        margin-top: 210px;
        gap: 18px;
    }

    .services-left {
        padding: 0;
    }

    .service-item {
        grid-template-columns: 52px 1fr;
        gap: 12px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .disc-visual {
        width: 360px;
        height: 300px;
        bottom: 0;
    }

    .disc-1 {
        width: 300px;
        height: 180px;
    }

    .disc-2 {
        width: 220px;
        height: 130px;
        right: 24px;
    }

    .disc-3 {
        width: 160px;
        height: 92px;
        right: 8px;
    }
}