:root {
    --bg: #050505;
    --panel: #101010;
    --panel-2: #161616;
    --text: #f5f5f5;
    --muted: #a7a7a7;
    --line: rgba(255, 255, 255, 0.1);
    --accent: #caff00;
    --accent-2: #8dff00;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #171717 0, var(--bg) 35%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.16;
    pointer-events: none;
    z-index: -1;
}

.glow-one {
    background: var(--accent);
    top: 120px;
    right: -160px;
}

.glow-two {
    background: #ffffff;
    bottom: 120px;
    left: -220px;
    opacity: 0.08;
}

.site-header {
    width: min(1180px, calc(100% - 36px));
    margin: 18px auto 0;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(9, 9, 9, 0.72);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 18px;
    z-index: 10;
}

.brand img {
    width: 190px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

    .nav a:hover {
        color: var(--text);
    }

.nav-cta {
    color: #111 !important;
    background: var(--accent);
    padding: 11px 18px;
    border-radius: 999px;
}

.menu-btn {
    display: none;
    background: none;
    color: var(--text);
    border: 0;
    font-size: 28px;
    cursor: pointer;
}

.section-padding {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 96px 0;
}

.hero {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 18px;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    margin-bottom: 26px;
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
}

.hero-content p {
    max-width: 690px;
    font-size: 20px;
}

.hero-actions, .contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid var(--line);
}

    .btn.primary {
        background: var(--accent);
        color: #111;
        border-color: var(--accent);
    }

    .btn.secondary {
        background: rgba(255,255,255,0.05);
        color: var(--text);
    }

    .btn:hover {
        transform: translateY(-2px);
        transition: 0.2s ease;
    }

.hero-card, .service-card, .client-card, .work-list article, .why-card, .contact-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.card-topline {
    height: 8px;
    width: 120px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 42px;
}

.deliver-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

    .deliver-list div {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255,255,255,0.05);
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .deliver-list span {
        color: var(--accent);
        font-weight: 900;
    }

    .deliver-list strong {
        font-size: 18px;
    }

.stats {
    width: min(1180px, calc(100% - 36px));
    margin: -46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

    .stats div {
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 26px;
        background: rgba(255,255,255,0.045);
    }

    .stats strong {
        display: block;
        font-size: 32px;
        color: var(--accent);
        letter-spacing: -0.04em;
    }

    .stats span {
        color: var(--muted);
        font-size: 14px;
        font-weight: 700;
    }

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

    .section-heading.center {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    padding: 28px;
}

.icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(202,255,0,0.13);
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 26px;
}

.clients-section {
    padding-top: 80px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.client-card {
    padding: 34px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .client-card:hover {
        border-color: rgba(202,255,0,0.5);
        transform: translateY(-4px);
        transition: 0.2s ease;
    }

.client-logo-text {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.visit {
    color: var(--accent);
    font-weight: 900;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.work-list {
    display: grid;
    gap: 18px;
}

    .work-list article {
        padding: 28px;
    }

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

    .tech-cloud span {
        padding: 14px 18px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,0.045);
        color: #ddd;
        font-weight: 800;
    }

.why-card {
    padding: 46px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
}

    .why-grid div {
        padding: 22px;
        border-radius: 22px;
        background: rgba(255,255,255,0.045);
    }

    .why-grid strong {
        display: block;
        margin-bottom: 10px;
        color: var(--accent);
    }

    .why-grid span {
        color: var(--muted);
        line-height: 1.6;
    }

.contact-card {
    padding: clamp(34px, 6vw, 70px);
    text-align: center;
}

    .contact-card p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.contact-actions {
    justify-content: center;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 36px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

    .footer img {
        width: 170px;
    }

    .footer p {
        font-size: 14px;
        margin: 0;
    }

@media (max-width: 900px) {
    .menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 22px;
        background: rgba(9,9,9,0.96);
        border: 1px solid var(--line);
        border-radius: 22px;
    }

        .nav.open {
            display: flex;
        }

    .hero, .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px;
    }

    .stats, .service-grid, .client-grid, .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 150px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .stats, .service-grid, .client-grid, .why-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        margin-top: 0;
    }

    h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-card, .why-card {
        padding: 26px;
    }
}
