* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #050505;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 28px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 132, .18), transparent 34%),
        radial-gradient(circle at 15% 35%, rgba(0, 255, 132, .10), transparent 30%),
        radial-gradient(circle at 85% 55%, rgba(255, 255, 255, .08), transparent 25%),
        linear-gradient(135deg, #050505, #0b0f0c 55%, #050505);
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .35;
    z-index: 1;
}

.console-topbar {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 80px rgba(0,0,0,.35);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 900;
    font-size: 26px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.15);
    color: #00ff84;
    box-shadow: 0 0 28px rgba(0,255,132,.18);
}

.brand span span {
    color: #00ff84;
}

.console-topbar nav {
    display: flex;
    gap: 10px;
}

.console-topbar nav a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 800;
    transition: .25s;
}

.console-topbar nav a:hover {
    background: #00ff84;
    color: #050505;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    min-height: calc(100vh - 120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 42px;
}

.tag {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0,255,132,.25);
    background: rgba(0,255,132,.08);
    color: #00ff84;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .25em;
    margin-bottom: 20px;
}

.hero-text h1 {
    max-width: 780px;
    font-size: clamp(46px, 7vw, 92px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.desc {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255,255,255,.67);
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary {
    padding: 17px 26px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn-primary {
    background: #00ff84;
    color: #050505;
    box-shadow: 0 0 34px rgba(0,255,132,.28);
}

.btn-secondary {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    backdrop-filter: blur(18px);
}

.hero-panel {
    position: relative;
    padding: 24px;
    border-radius: 42px;
    border: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at top right, rgba(0,255,132,.20), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
    backdrop-filter: blur(28px);
    box-shadow: 0 34px 100px rgba(0,0,0,.55);
    transform: perspective(900px) rotateY(-7deg) rotateX(4deg);
}

.panel-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.panel-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.20);
}

.panel-header span:first-child {
    background: #00ff84;
}

.dashboard-card.big {
    min-height: 260px;
    border-radius: 32px;
    padding: 28px;
    background:
        radial-gradient(circle at center, rgba(0,255,132,.18), transparent 45%),
        rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-card small,
.dashboard-grid small {
    color: rgba(255,255,255,.45);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .18em;
}

.dashboard-card strong {
    margin-top: 12px;
    font-size: 74px;
    color: #00ff84;
    line-height: 1;
}

.dashboard-card p {
    margin-top: 12px;
    color: rgba(255,255,255,.62);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.dashboard-grid div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(0,0,0,.30);
    border: 1px solid rgba(255,255,255,.09);
}

.dashboard-grid strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 16px;
}

.services {
    position: relative;
    padding: 90px 28px;
    background: #050505;
}

.section-title {
    max-width: 1280px;
    margin: 0 auto 34px;
}

.section-title p {
    color: #00ff84;
    font-weight: 900;
    letter-spacing: .25em;
    font-size: 12px;
}

.section-title h2 {
    margin-top: 10px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
}

.service-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 340px;
    border-radius: 34px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    position: relative;
    overflow: hidden;
    transition: .3s;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0,255,132,.20), transparent 40%);
    opacity: .8;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0,255,132,.35);
}

.service-card span {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #00ff84;
    color: #050505;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 0 34px rgba(0,255,132,.26);
}

.service-card h3,
.service-card p {
    position: relative;
}

.service-card h3 {
    margin-top: 90px;
    font-size: 25px;
    line-height: 1.1;
}

.service-card p {
    margin-top: 14px;
    color: rgba(255,255,255,.62);
    line-height: 1.6;
}

.tech {
    padding: 30px 28px 90px;
    background:
        radial-gradient(circle at center, rgba(0,255,132,.10), transparent 38%),
        #050505;
}

.tech-box {
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 42px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.055);
    backdrop-filter: blur(24px);
}

.tech-box h2 {
    max-width: 820px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.tech-list div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(0,0,0,.32);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.74);
    font-weight: 800;
    text-align: center;
}

.cta {
    padding: 90px 28px;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(0,255,132,.15), transparent 35%),
        #050505;
}

.cta h2 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.cta p {
    margin: 18px auto 30px;
    max-width: 600px;
    color: rgba(255,255,255,.62);
    font-size: 18px;
}

.cta a {
    display: inline-flex;
    padding: 18px 32px;
    border-radius: 20px;
    background: #00ff84;
    color: #050505;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 0 38px rgba(0,255,132,.30);
}

.footer {
    padding: 34px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.08);
    background: #050505;
}

.footer strong {
    font-size: 24px;
    font-weight: 900;
}

.footer strong span {
    color: #00ff84;
}

.footer p {
    margin-top: 8px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
}

@media (max-width: 980px) {
    .hero {
        padding: 18px;
    }

    .console-topbar {
        border-radius: 26px;
    }

    .console-topbar nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 45px;
        min-height: auto;
    }

    .hero-text h1 {
        letter-spacing: -2px;
    }

    .hero-panel {
        transform: none;
        padding: 18px;
    }

    .dashboard-card.big {
        min-height: 220px;
    }

    .dashboard-card strong {
        font-size: 54px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 260px;
    }

    .service-card h3 {
        margin-top: 60px;
    }

    .tech-box {
        padding: 28px;
    }

    .tech-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .brand {
        font-size: 22px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
    }

    .tag {
        font-size: 10px;
        letter-spacing: .16em;
    }

    .desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .tech-list {
        grid-template-columns: 1fr;
    }
}