css
/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #070b1a;
    --bg-alt: rgba(255,255,255,0.015);
    --card-bg: rgba(255,255,255,0.04);

    --text: #e6eaf2;
    --text-soft: #c3cbdb;
    --text-muted: #aab4c0;

    --accent: #4da3ff;
    --accent-hover: #79b8ff;

    --border: rgba(255,255,255,0.08);
    --border-accent: rgba(77,163,255,0.18);
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at top center,
            rgba(77,163,255,0.08),
            transparent 45%
        ),
        var(--bg);

    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   NAVIGATION
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(7, 11, 26, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(77,163,255,0.10);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 18px 0;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    position: relative;

    text-decoration: none;
    color: #b7c0d8;

    font-size: 14px;
    font-weight: 500;

    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(77,163,255,0.35);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 100%;
    height: 2px;

    background: var(--accent);
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
    position: absolute;
    left: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
}

/* =========================
   HERO
========================= */
.hero {
    padding: 100px 0 100px;
    min-height: 85vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    top: -300px;
    left: 50%;

    transform: translateX(-50%);

    width: 1000px;
    height: 1000px;

    background: radial-gradient(
        circle,
        rgba(77,163,255,0.14) 0%,
        rgba(77,163,255,0.04) 45%,
        transparent 75%
    );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    top: -130px;
    left: 50%;

    width: 1500px;
    height: 600px;

    background-image: url("assets/cloud-network.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;

    pointer-events: none;
    z-index: 1;

    opacity: 0.40;

    filter:
        drop-shadow(0 0 20px rgba(77,163,255,0.35))
        drop-shadow(0 0 40px rgba(77,163,255,0.20));

    transform: translateX(-50%);

    animation: floatNetwork 16s ease-in-out infinite;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo {
    width: min(700px, 90%);
    max-width: 700px;
    height: auto;

    margin-bottom: 20px;

    filter: drop-shadow(
        0 0 30px rgba(77,163,255,0.25)
    );
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    line-height: 1.1;

    font-weight: 800;
    letter-spacing: -0.03em;

    margin-bottom: 20px;
}

.hero-subtext {
    max-width: 680px;

    margin: 0 auto 30px;

    color: var(--text-soft);

    font-size: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================
   BUTTONS
========================= */
.cta-button {
    display: inline-block;

    padding: 14px 26px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
}

.cta-button.primary {
    background: var(--accent);
    color: #07111f;
}

.cta-button.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

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

.cta-button.secondary:hover {
    background: rgba(77,163,255,0.1);
}

/* =========================
   SECTIONS
========================= */
.section {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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

.section-spacing {
    padding: 90px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

#drivers,
#engagement,
#outcomes {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0)
        );
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.03em;

    margin-bottom: 20px;
}

.section p {
    color: var(--text-soft);
    max-width: 950px;
}

.section > .container > p:first-of-type {
    margin-bottom: 24px;
}

/* =========================
   CARDS
========================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;

    margin-top: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;

    background: var(--card-bg);

    padding: 24px;
    border-radius: 18px;

    border: 1px solid var(--border-accent);

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 10px 30px rgba(0,0,0,0.28);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.card:hover {
    transform: translateY(-6px);

    border-color: rgba(77,163,255,0.55);

    box-shadow:
        0 0 25px rgba(77,163,255,0.12),
        0 18px 40px rgba(0,0,0,0.35);
}

.card h3 {
    font-size: 1.1rem;
    color: white;

    margin-bottom: 14px;
}

.card p {
    color: #b7c0d8;
    font-size: 0.95rem;
}

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

.cta-section {
    text-align: center;
}

.cta-panel {
    max-width: 900px;
    margin: 0 auto;

    padding: 60px 50px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(77,163,255,0.08),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(77,163,255,0.18);

    box-shadow:
        0 0 40px rgba(77,163,255,0.08),
        0 20px 50px rgba(0,0,0,0.30);
}

.cta-panel h2 {
    margin-bottom: 20px;
}

.cta-panel p {
    max-width: 700px;
    margin: 0 auto 30px;

    color: var(--text-soft);

    font-size: 1.05rem;
    line-height: 1.9;
}

.cta-panel .cta-button {
    font-size: 15px;
    padding: 15px 30px;
}

/* =========================
   CONTACT INTRO
========================= */

/* =========================
   CONTACT INTRO
========================= */

.contact-intro {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
}

.contact-intro h2 {
    text-align: left;
    margin-bottom: 18px;
    white-space: nowrap;
}

.contact-intro p {
    text-align: left;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;

    max-width: none;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section form {
    display: flex;
    flex-direction: column;

    gap: 14px;

    max-width: 600px;

    margin-top: 30px;

    background: rgba(255,255,255,0.03);

    padding: 32px;

    border-radius: 20px;

    border: 1px solid var(--border-accent);
}

input,
textarea {
    width: 100%;

    padding: 14px 16px;

    border-radius: 10px;

    border: 1px solid var(--border);

    background: rgba(255,255,255,0.04);

    color: white;

    font-family: inherit;
    font-size: 15px;

    transition: all .25s ease;
}

input::placeholder,
textarea::placeholder {
    color: #8f9aac;
}

input:focus,
textarea:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(77,163,255,0.15);

    outline: none;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

button {
    padding: 14px 18px;

    border: none;
    border-radius: 10px;

    background: var(--accent);
    color: #07111f;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;

    transition: all .3s ease;
}

button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.form-subnote {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Privacy Policy */
.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    line-height: 1.8;
    color: #333;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.privacy-policy h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-policy p {
    margin-bottom: 16px;
}

.privacy-policy ul {
    margin: 0 0 20px 25px;
}

.privacy-policy li {
    margin-bottom: 8px;
}

/* =========================
   ADDITIONAL CLOUD LAYERS
========================= */

.cloud {
    position: absolute;
    pointer-events: none;
    z-index: 1;

    background-image: url("assets/cloud-network.svg");
    background-repeat: no-repeat;
    background-size: contain;

    opacity: 0.12;
}

.cloud-1 {
    top: 20px;
    left: -150px;

    width: 700px;
    height: 250px;

    animation: driftLeft 32s ease-in-out infinite;
}

.cloud-2 {
    top: 60px;
    left: 30%;

    width: 650px;
    height: 220px;

    opacity: 0.10;

    animation: driftRight 40s ease-in-out infinite;
}

.cloud-3 {
    top: 10px;
    right: -180px;

    width: 750px;
    height: 260px;

    opacity: 0.14;

    animation: driftLeft 50s ease-in-out infinite;
}

/* =========================
   NETWORK ANIMATION
========================= */
@keyframes driftLeft {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes driftRight {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-35px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes floatNetwork {

    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.35;
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.50;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.35;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

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

    .hero h1 {
        font-size: clamp(2.2rem, 5vw, 3.7rem);
        line-height: 1.1;

        font-weight: 800;
        letter-spacing: -0.03em;

        margin-bottom: 18px;
    }
}

@media (max-width: 600px) {

    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;

        width: 240px;

        display: none;
        flex-direction: column;

        background: #0a1024;

        padding: 18px;

        border-radius: 12px;

        border: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .hero {
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .section-spacing {
        padding: 70px 0;
    }

    .contact-section form {
        padding: 24px;
    }
}


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

.cta-trust {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =========================
   TRUST STATEMENT
========================= */

.site-trust {
    display: block;
    width: 100%;

    text-align: center;

    margin: 40px auto 25px auto;

    color: var(--text-muted);

    font-size: 0.95rem;

    letter-spacing: 0.02em;

    opacity: 0.9;
}

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

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 40px 0;
    text-align: center;
    background: #07111f;
}

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

.footer {
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 40px 0;

    text-align: center;

    background: #07111f;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer p {
    margin: 0;
    text-align: center;
}

.footer-policy {
    margin-top: 10px !important;
}

.footer-policy a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;

    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: var(--accent);
}
