@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --bg: #070b14;
    --bg-soft: #0c1220;
    --card: #101827;
    --card-hover: #131f32;
    --blue: #3b9cff;
    --blue-light: #72b8ff;
    --text: #f4f7fb;
    --muted: #96a3b7;
    --border: rgba(255,255,255,0.08);
    --container: 1160px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* ================= HEADER ================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 25px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.logo > span:last-child > span {
    color: var(--blue);
}

.logo-mark {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b9cff, #1768c4);
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 30px rgba(59,156,255,.25);
}

.nav-links {
    display: flex;
    gap: 34px;
    color: var(--muted);
    font-size: 14px;
}

.nav-links a {
    transition: color .25s ease;
}

.nav-links a:hover {
    color: white;
}

.nav-button {
    padding: 10px 20px;
    border: 1px solid rgba(59,156,255,.35);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: .25s ease;
}

.nav-button:hover {
    background: var(--blue);
    border-color: var(--blue);
}


/* ================= HERO ================= */

.hero {
    min-height: 850px;
    padding: 170px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(24,112,210,.14), transparent 65%);
    top: -250px;
    left: -250px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255,255,255,.025);
    color: #b8c5d8;
    font-size: 12px;
    margin-bottom: 25px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.hero h1 {
    max-width: 700px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #3b9cff, #86c7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text > p {
    max-width: 610px;
    margin: 25px 0 32px;
    color: var(--muted);
    font-size: 17px;
}

.hero-buttons,
.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 48px;
    padding: 0 21px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: .25s ease;
}

.primary-button {
    background: var(--blue);
    color: white;
    box-shadow: 0 12px 30px rgba(59,156,255,.18);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(59,156,255,.28);
}

.primary-button span {
    font-size: 19px;
}

.secondary-button {
    border: 1px solid var(--border);
    color: #dce4ef;
}

.secondary-button:hover {
    background: rgba(255,255,255,.05);
}

.hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 13px;
}

.trust-item span {
    color: var(--muted);
    font-size: 11px;
}

.trust-line {
    height: 27px;
    width: 1px;
    background: var(--border);
}


/* ================= HERO VISUAL ================= */

.hero-visual {
    min-height: 480px;
    position: relative;
    display: grid;
    place-items: center;
}

.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(40,130,230,.12);
    filter: blur(80px);
    border-radius: 50%;
}

.code-card {
    position: relative;
    width: min(100%, 510px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(13,21,35,.94);
    box-shadow:
        0 35px 80px rgba(0,0,0,.45),
        0 0 60px rgba(38,132,220,.08);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.code-header {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    color: #758399;
    font-size: 11px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: #465064;
}

.code-body {
    padding: 28px;
    color: #cbd5e1;
    font-family: monospace;
    font-size: 13px;
    line-height: 2;
}

.code-purple {
    color: #c084fc;
}

.code-blue {
    color: #60a5fa;
}

.code-yellow {
    color: #fbbf24;
}

.code-green {
    color: #4ade80;
}

.code-string {
    color: #67e8f9;
}

.code-indent {
    padding-left: 28px;
}

.code-space {
    height: 8px;
}

.cursor {
    display: inline-block;
    width: 6px;
    height: 14px;
    margin-left: 3px;
    vertical-align: middle;
    background: var(--blue);
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    background: rgba(15,24,39,.94);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
}

.floating-one {
    top: 45px;
    left: -15px;
}

.floating-two {
    right: -15px;
    bottom: 45px;
}

.floating-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(59,156,255,.12);
    color: var(--blue);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    color: var(--muted);
    font-size: 9px;
}


/* ================= SECTIONS ================= */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 50px;
}

.section-label {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2,
.about-text h2,
.solutions-text h2,
.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.about-text h2 span,
.solutions-text h2 span,
.cta h2 span {
    color: var(--blue);
}

.section-heading p {
    color: var(--muted);
    margin-top: 15px;
}


/* ================= SERVICES ================= */

.services {
    background: #090e18;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 13px;
    transition: .3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--card-hover);
    border-color: rgba(59,156,255,.3);
}

.service-card.featured {
    border-color: rgba(59,156,255,.35);
    background: linear-gradient(145deg, #10223a, #0d1625);
}

.service-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #435066;
    font-family: monospace;
    font-size: 11px;
}

.service-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 65px;
    border-radius: 11px;
    background: rgba(59,156,255,.1);
    color: var(--blue);
    font-size: 22px;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 13px;
}

.service-card a {
    position: absolute;
    bottom: 27px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}


/* ================= SOLUTIONS ================= */

.solutions-content {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.solutions-text > p {
    color: var(--muted);
    margin: 20px 0 30px;
    max-width: 500px;
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list span {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(59,156,255,.12);
    color: var(--blue);
    font-size: 11px;
}

.check-list p {
    color: #c6d0df;
    font-size: 13px;
}

.solution-panel {
    min-height: 390px;
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #0a111d;
}

.panel-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(59,156,255,.16);
    filter: blur(80px);
}

.panel-content {
    width: 82%;
    height: 80%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-top,
.panel-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #6d7c91;
}

.panel-status {
    color: #4ade80;
}

.panel-main {
    text-align: center;
}

.circle-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b9cff, #1663b5);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 27px;
    font-weight: 700;
    box-shadow: 0 15px 40px rgba(59,156,255,.25);
}

.panel-main h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
}

.panel-main .highlight {
    color: var(--blue);
}

.panel-main p {
    color: var(--muted);
    margin-top: 8px;
    font-size: 12px;
}


/* ================= ABOUT ================= */

.about {
    background: #090e18;
    border-top: 1px solid var(--border);
}

.about-content {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.about-card {
    min-height: 300px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background:
        radial-gradient(circle at center, rgba(59,156,255,.13), transparent 60%),
        var(--card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.about-logo {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b9cff, #1768c4);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 45px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(59,156,255,.25);
}

.about-card div:last-child {
    text-align: center;
}

.about-card span,
.about-card strong {
    display: block;
}

.about-card span {
    color: #9cabc0;
    font-size: 10px;
    letter-spacing: 3px;
}

.about-card strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
}

.about-text p {
    max-width: 650px;
    color: var(--muted);
    margin-top: 20px;
    font-size: 15px;
}


/* ================= CTA ================= */

.cta {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 70% 50%, rgba(38,130,225,.13), transparent 40%),
        #070b14;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta p {
    max-width: 570px;
    color: var(--muted);
    margin-top: 15px;
}


/* ================= FOOTER ================= */

.footer {
    border-top: 1px solid var(--border);
    padding: 50px 0 25px;
    background: #050810;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-content > div:first-child p {
    margin-top: 15px;
    color: #6f7d91;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 28px;
    color: #8592a5;
    font-size: 12px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    color: #586579;
    font-size: 10px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 120px;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-card {
        min-height: 250px;
    }

}

@media (max-width: 700px) {

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .header {
        padding: 18px 0;
    }

    .nav-links,
    .nav-button {
        display: none;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
        justify-content: space-between;
    }

    .trust-item {
        text-align: center;
    }

    .trust-line {
        display: none;
    }

    .hero-visual {
        min-height: 390px;
    }

    .code-card {
        transform: none;
    }

    .code-body {
        padding: 20px 15px;
        font-size: 10px;
    }

    .floating-card {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
    }

    .service-icon {
        margin-bottom: 55px;
    }

    .solution-panel {
        min-height: 330px;
    }

    .panel-main h3 {
        font-size: 23px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px;
    }

    .copyright {
        flex-direction: column;
        gap: 8px;
    }

/* ================= REVEAL ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
}
