* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #05060a;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Clash Display', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(14px);
    background: rgba(5, 6, 10, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.brand {
    font-size: 32px;
    font-weight: 700;
}

.brand span {
    color: #7b61ff;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

nav a:hover {
    color: #7b61ff;
}

.primary-btn,
.secondary-btn,
.download-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 18px;
    transition: .3s;
    font-weight: 600;
}

.primary-btn,
.download-btn {
    background: linear-gradient(135deg, #7b61ff, #00d4ff);
    color: #fff;
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
}

.primary-btn:hover,
.secondary-btn:hover,
.download-btn:hover {
    transform: translateY(-4px);
}

.hero {
    padding: 130px 0 120px;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 70px;
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(123, 97, 255, .12);
    border: 1px solid rgba(123, 97, 255, .2);
    color: #a899ff;
    margin-bottom: 25px;
}

.hero-left h1 {
    font-size: 74px;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-left p {
    color: #c1c7d8;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-data {
    display: flex;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.data-box {
    background: #0c1018;
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 24px;
    border-radius: 24px;
    min-width: 160px;
}

.data-box h3 {
    color: #00d4ff;
    margin-bottom: 8px;
}

.hero-right {
    position: relative;
}

.main-card {
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 2;
}

.main-card img,
.details-image img {
    width: 100%;
    display: block;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .08);
}

.orbit-1 {
    width: 500px;
    height: 500px;
    top: -60px;
    left: -60px;
}

.orbit-2 {
    width: 620px;
    height: 620px;
    top: -120px;
    left: -120px;
}

.floating-ui {
    position: absolute;
    background: #0c1018;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 22px;
    border-radius: 24px;
    width: 220px;
    z-index: 3;
}

.floating-ui span {
    color: #00d4ff;
    display: block;
    margin-bottom: 10px;
}

.top-ui {
    top: 0;
    right: -40px;
}

.bottom-ui {
    bottom: 0;
    left: -40px;
}

.partners {
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 28px 0;
}

.partner-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-row span {
    color: #8b95a8;
}

.services,
.details,
.device-section,
.cta {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading.center {
    text-align: center;
}

.section-heading span,
.details-content span,
.cta-box span {
    color: #00d4ff;
}

.section-heading h2,
.details-content h2,
.cta-box h2 {
    font-size: 52px;
    margin-top: 12px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card,
.detail-box,
.device-card {
    background: #0b0f17;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 30px;
    padding: 35px;
    transition: .4s;
}

.service-card:hover,
.detail-box:hover,
.device-card:hover {
    transform: translateY(-8px);
    border-color: #7b61ff;
}

.service-card span {
    display: block;
    color: #00d4ff;
    margin-bottom: 15px;
}

.service-card p,
.details-content p,
.details-content li,
.device-card p,
.detail-box p {
    color: #c1c7d8;
}

.large-card {
    grid-column: span 2;
}

.wide-card {
    grid-column: span 2;
}

.details-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 70px;
    align-items: center;
}

.details-image img {
    border-radius: 36px;
}

.detail-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.details-content ul {
    padding-left: 18px;
}

.details-content li {
    margin-bottom: 12px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.device-card {
    text-decoration: none;
    color: #fff;
}

.cta-box {
    background: #0b0f17;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
}

.cta-box h2 {
    margin: 15px 0 35px;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 80px;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

footer h4 {
    margin-bottom: 18px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    text-decoration: none;
    color: #c1c7d8;
}

.copyright {
    text-align: center;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: #8993aa;
}

@media(max-width:900px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card {
        grid-column: span 1;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .section-heading h2,
    .details-content h2,
    .cta-box h2 {
        font-size: 36px;
    }

    nav {
        display: none;
    }

    .floating-ui {
        position: relative;
        inset: auto;
        width: 100%;
        margin: 20px 0;
    }

    .orbit {
        display: none;
    }
}