* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #070b14;
    color: #fff;
}

.topbar {
    height: 88px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 10, 18, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.brand {
    display: flex;
    align-items: center;
    gap: -45px;
}

.brand-cat {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 4px;
}

.brand-cat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand h1 {
    font-size: 24px;
    font-weight: 900;
}

.brand p {
    color: #8d42ff;
    font-size: 12px;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 58px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

nav a.active {
    color: #9b45ff;
    border-bottom: 2px solid #9b45ff;
    padding-bottom: 18px;
}

.login-btn {
    color: #a85cff;
    border: 1px solid #7d33d8;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
}

.hero {
    position: relative;
    min-height: 620px;
    padding: 100px 5%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(4,7,13,0.86),
            rgba(4,7,13,0.42),
            rgba(4,7,13,0.70)
        ),
        url('../img/background.png');

    background-size: 98%;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    z-index: 5;
    background: linear-gradient(
        to bottom,
        rgba(7, 11, 20, 0),
        #07101d 85%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 620px;
    margin-left: 4%;
}

.hero-kicker,
.section-kicker {
    color: #9b45ff;
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 12px;
}

.hero h2 {
    font-size: clamp(2.8rem, 4.8vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-text {
    color: #d4d7df;
    font-size: 19px;
    line-height: 1.55;
    max-width: 620px;
}

.hero-buttons {
    margin-top: 28px;
    display: flex;
    gap: 16px;
}

.btn {
    padding: 16px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
}

.btn.primary {
    background: linear-gradient(135deg, #8b37ff, #5b1de0);
    color: white;
}

.btn.secondary {
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}

.status-card {
    position: relative;
    margin-top: 40px;
    width: 420px;
    height: 138px;
    padding: 26px;
    background: rgba(10, 17, 31, 0.86);
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.status-title {
    font-weight: 900;
    font-size: 14px;
}

.status-title span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #ffc026;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 18px #ffc026;
}

.status-card strong {
    display: block;
    color: #9b45ff;
    font-size: 25px;
    margin: 14px 0 8px 16px;
}

.status-card p {
    color: #b9bdc7;
    font-size: 14px;
    margin-left: 16px;
}

.mini-chart {
    position: absolute;
    right: 32px;
    bottom: 28px;
    width: 130px;
    height: 55px;
    border-bottom: 2px solid rgba(155,69,255,0.35);
    background: linear-gradient(135deg, transparent 45%, rgba(155,69,255,0.35));
    clip-path: polygon(0 80%, 14% 62%, 28% 70%, 42% 35%, 55% 58%, 68% 20%, 82% 32%, 100% 0, 100% 100%, 0 100%);
}

.services {
    padding: 22px 10% 50px;
    text-align: center;
    background: #07101d;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.service-grid {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.service-card {
    min-height: 190px;
    padding: 28px;
    background: rgba(10, 17, 31, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.icon {
    font-size: 42px;
    color: #8b37ff;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    color: #c6cad4;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-card a {
    color: #a85cff;
    border: 1px solid #6930bd;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.contact-strip {
    margin: 20px 10% 60px;
    padding: 28px 42px;
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(10, 17, 31, 0.92);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.contact-cat {
    font-size: 46px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-text p {
    color: #c6cad4;
    font-size: 16px;
}

.site-footer {
    padding: 26px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050913;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3b8;
}

.site-footer a {
    color: #9ca3b8;
    text-decoration: none;
    margin-left: 22px;
}

.site-footer a:hover {
    color: #a85cff;
}.site-footer {
    padding: 26px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050913;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #9ca3b8;
}

.site-footer a {
    color: #9ca3b8;
    text-decoration: none;
    margin-left: 22px;
}

.site-footer a:hover {
    color: #a85cff;
}

.hero-cat {
    position: absolute;
    right: 2%;
    bottom: -100px;
    z-index: 4;
    pointer-events: none;
}

.hero-cat img {
    height: 620px;
    width: auto;
    display: block;
    filter: brightness(0.82) contrast(0.92) saturate(0.92);
    opacity: 0.96;
}