@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --dark: #1A1A1A;
    --dark-2: #111111;
    --dark-3: #222222;
    --white: #FFFFFF;
    --purple: #6D2CFF;
    --purple-light: #B388FF;

    --bg-main: #000000;
    --bg-deep: #0b0b0b;
    --bg-card: #1A1A1A;
    --bg-card-2: #222222;
    --line: rgba(255, 255, 255, 0.10);

    --text: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.68);
    --muted-2: rgba(255, 255, 255, 0.42);

    --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
    --font-title: "Montserrat", "Segoe UI", Arial, sans-serif;
    --font-orbitron: "Orbitron", "Montserrat", "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-main);
    color: var(--text);
    font-family: var(--font-body);
}

a {
    color: inherit;
}

.site-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1180px;
    height: 64px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-orbitron);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: -0.5px;
    box-shadow: 0 0 30px rgba(109, 44, 255, 0.42);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name strong {
    font-family: var(--font-orbitron);
    font-size: 16px;
    letter-spacing: 0.6px;
    color: var(--white);
}

.brand-name span {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--purple-light);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.nav a:hover {
    color: var(--purple-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login,
.btn-create {
    height: 36px;
    padding: 0 18px;
    border-radius: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-login {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--white);
}

.btn-login:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

.btn-create {
    background: var(--purple);
    color: var(--white);
    border: 1px solid var(--purple);
}

.btn-create:hover {
    background: var(--purple-light);
    border-color: var(--purple-light);
    color: var(--black);
}

.hero {
    position: relative;
    min-height: 580px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.96)),
        radial-gradient(circle at 30% 18%, rgba(109,44,255,0.25), transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(179,136,255,0.16), transparent 30%),
        linear-gradient(135deg, #1A1A1A, #000000 76%);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "VNS DIGITAL";
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-family: var(--font-orbitron);
    font-size: 128px;
    font-weight: 900;
    letter-spacing: -4px;
    color: rgba(255,255,255,0.035);
    white-space: nowrap;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -150px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(109,44,255,0.24), transparent 64%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 22px 76px 22px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 46px;
    align-items: center;
}

.hero-kicker {
    color: var(--purple-light);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: var(--font-title);
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 900;
}

.hero h1 span {
    color: var(--purple-light);
}

.hero p {
    margin: 22px 0 0 0;
    max-width: 650px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-primary,
.cta-secondary {
    height: 44px;
    padding: 0 22px;
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.cta-primary {
    background: var(--purple);
    color: var(--white);
    border: 1px solid var(--purple);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
}

.cta-primary:hover {
    background: var(--purple-light);
    border-color: var(--purple-light);
    color: var(--black);
}

.cta-secondary:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

.hero-stack {
    background: rgba(26, 26, 26, 0.84);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 70px rgba(0,0,0,0.34);
    padding: 18px;
    backdrop-filter: blur(12px);
}

.hero-stack-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.status-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 14px;
}

.status-card strong {
    display: block;
    font-family: var(--font-body);
    font-size: 23px;
    line-height: 1;
    color: var(--purple-light);
    font-weight: 900;
}

.status-card span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 500;
}

.section-dark {
    background: var(--bg-main);
}

.section-deep {
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 78px 22px;
}

.section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 38px auto;
}

.section-title small {
    color: var(--purple);
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 800;
}

.section-title h2 {
    margin: 12px 0 0 0;
    font-family: var(--font-title);
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 900;
}

.section-title p {
    margin: 16px 0 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

.horizontal-services {
    display: grid;
    gap: 28px;
}

.horizontal-service-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    min-height: 185px;
    padding: 26px;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 26px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.horizontal-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 95% 0%, rgba(109,44,255,0.18), transparent 34%);
    opacity: 0;
    transition: opacity .18s ease;
}

.horizontal-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(179,136,255,0.48);
    background: var(--bg-card-2);
}

.horizontal-service-card:hover::before {
    opacity: 1;
}

.horizontal-service-head {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.horizontal-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 0;
    background: rgba(109,44,255,0.14);
    border: 1px solid rgba(179,136,255,0.35);
    color: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.horizontal-service-head span {
    display: block;
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.horizontal-service-head h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-title);
    font-size: 22px;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-weight: 900;
}

.horizontal-service-head p {
    margin: 12px 0 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
    font-weight: 500;
}

.horizontal-service-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.horizontal-feature {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    padding: 12px;
    min-height: 82px;
}

.horizontal-feature strong {
    display: block;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    font-weight: 800;
}

.horizontal-feature span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.42;
    font-weight: 500;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.feature-visual {
    min-height: 360px;
    background:
        linear-gradient(135deg, rgba(109,44,255,0.18), rgba(179,136,255,0.10)),
        #1A1A1A;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.34);
}

.feature-visual::before {
    content: "LAUNCHER";
    position: absolute;
    left: 34px;
    top: 46px;
    font-family: var(--font-orbitron);
    font-size: 58px;
    font-weight: 900;
    color: rgba(255,255,255,0.055);
    letter-spacing: -2px;
}

.launcher-window {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 44px;
    height: 200px;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 65px rgba(0,0,0,0.48);
    padding: 18px;
}

.launcher-bar {
    height: 9px;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    margin-top: 118px;
}

.launcher-buttons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.launcher-buttons span {
    height: 32px;
    width: 112px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
}

.feature-content small {
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.feature-content h2 {
    margin: 12px 0 0 0;
    font-family: var(--font-title);
    font-size: 32px;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    color: var(--white);
    font-weight: 900;
}

.feature-content p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
    font-weight: 500;
}

.feature-list {
    margin-top: 22px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: flex-start;
}

.feature-item-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(179,136,255,0.35);
    background: rgba(109,44,255,0.12);
    color: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item strong {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 12px;
    color: var(--white);
    font-weight: 800;
}

.feature-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    margin-top: 4px;
    font-weight: 500;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 22px;
}

.process-number {
    width: 36px;
    height: 36px;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 800;
}

.process-card p {
    margin: 10px 0 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
    font-weight: 500;
}

.cta-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 40%, rgba(109,44,255,0.20), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(179,136,255,0.18), transparent 30%),
        linear-gradient(135deg, #1A1A1A, #000000);
    border-top: 1px solid var(--line);
}

.cta-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 74px 22px;
    text-align: center;
}

.cta-inner h2 {
    margin: 0 auto;
    max-width: 820px;
    font-family: var(--font-title);
    font-size: 36px;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -0.8px;
    color: var(--white);
    font-weight: 900;
}

.cta-inner p {
    color: var(--muted);
    max-width: 720px;
    margin: 18px auto 0 auto;
    line-height: 1.75;
    font-weight: 500;
}

.cta-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer {
    background: #000000;
    border-top: 1px solid var(--line);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted-2);
    font-size: 12px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--purple-light);
}

@media (max-width: 1120px) {
    .horizontal-service-card {
        grid-template-columns: 1fr;
    }

    .horizontal-service-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .hero-inner,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero::before {
        font-size: 82px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .horizontal-service-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .header-inner {
        height: auto;
        padding: 16px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .header-actions {
        width: 100%;
    }

    .btn-login,
    .btn-create {
        flex: 1;
    }

    .hero-inner {
        padding-top: 64px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero::before {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .status-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-service-head {
        flex-direction: column;
    }

    .horizontal-service-content {
        grid-template-columns: 1fr;
    }

    .horizontal-service-card {
        padding: 22px;
    }

    .section-title h2,
    .feature-content h2,
    .cta-inner h2 {
        font-size: 25px;
    }

    .footer-inner {
        flex-direction: column;
    }
}