:root {
    --pink: #e040fb;
    --cyan: #00e5ff;
    --teal: #00bcd4;
    --dark: #030810;
    --dark2: #070f1c;
    --dark3: #0b1629;
    --glass: rgba(0,229,255,0.04);
    --glass-border: rgba(0,229,255,0.12);
    --text: #e8f4f8;
    --muted: #7a9ab0;
}



html {
    scroll-behavior: smooth;
}

.pagebody {
    background: var(--dark);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    overflow-x: hidden;
}
    /* ── NOISE OVERLAY ── */
    .pagebody::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: 0.4;
    }
    /* ── NAV ── */
    .pagebody nav {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 18px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(3,8,16,0.7);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--glass-border);
    }

    .pagebody .nav-logo img {
        height: 36px;
    }

    .pagebody .nav-links {
        display: flex;
        gap: 36px;
        list-style: none;
    }

        .pagebody .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: color 0.3s;
        }

            .pagebody .nav-links a:hover {
                color: var(--cyan);
            }

    .pagebody .nav-cta {
        padding: 9px 24px;
        border: 1px solid var(--cyan);
        color: var(--cyan);
        background: transparent;
        border-radius: 3px;
        font-family: 'Exo 2', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
    }

        .pagebody .nav-cta:hover {
            background: var(--cyan);
            color: var(--dark);
        }
/* ── HERO ── */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,229,255,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(224,64,251,0.08) 0%, transparent 60%), radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0,188,212,0.04) 0%, transparent 50%);
}
/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
/* Animated orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(0,229,255,0.06);
    right: -100px;
    top: 10%;
    animation-duration: 14s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(224,64,251,0.07);
    right: 20%;
    bottom: 10%;
    animation-duration: 10s;
    animation-delay: -3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(0,188,212,0.06);
    left: 5%;
    top: 20%;
    animation-duration: 16s;
    animation-delay: -7s;
}

@keyframes drift {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(30px, 20px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 2px;
    background: rgba(0,229,255,0.04);
}

    .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-logo-wrap {
    margin-bottom: 28px;
}

    .hero-logo-wrap img {
        width: auto;
        height: 72px;
    }
/* Inline SVG logo as fallback */
.logo-svg-inline {
    font-family: 'Exo 2', sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -1px;
    display: inline-block;
    margin-bottom: 4px;
}

    .logo-svg-inline .part-innov {
        background: linear-gradient(90deg, #e040fb, #00e5ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo-svg-inline .part-ai {
        color: #00e5ff;
    }

.hero-tagline {
    font-size: 0.65rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 24px;
    margin-left: 2px;
}

h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #fff;
}

    h1 em {
        font-style: normal;
        background: linear-gradient(90deg, var(--cyan), var(--pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: var(--dark);
    border: none;
    border-radius: 3px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.15);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-primary:hover::after {
        opacity: 1;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0,229,255,0.3);
    }

.btn-ghost {
    padding: 14px 36px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
    border-radius: 3px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-ghost:hover {
        border-color: var(--cyan);
        color: var(--cyan);
        transform: translateY(-2px);
    }
/* Hero visual (right side) */
.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
/* Tech image placeholder with glow */
.hero-img-frame {
    position: relative;
    width: 520px;
    max-width: 100%;
}

    .hero-img-frame img {
        width: 100%;
        border-radius: 4px;
        display: block;
    }
/* Floating data points */
.float-chip {
    position: absolute;
    background: rgba(7,15,28,0.9);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    backdrop-filter: blur(12px);
    animation: floatUp 4s ease-in-out infinite alternate;
}

    .float-chip .val {
        color: var(--cyan);
        font-weight: 700;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 2px;
    }

    .float-chip .lbl {
        color: var(--muted);
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

.chip-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 25%;
    right: -20px;
    animation-delay: -2s;
}

.chip-3 {
    top: 55%;
    left: -10px;
    animation-delay: -1s;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-12px);
    }
}
/* ── SECTIONS COMMON ── */
.pagebody section {
    padding: 100px 60px;
    position: relative;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, var(--glass-border), transparent);
        max-width: 80px;
    }

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}

    .section-title em {
        font-style: normal;
        background: linear-gradient(90deg, var(--cyan), var(--pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-body {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    font-weight: 300;
}
/* ── WHAT IS innovAI ── */
#what {
    background: var(--dark2);
    overflow: hidden;
}

.what-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-img {
    position: relative;
}

.tech-image-box {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 80px rgba(0,229,255,0.08);
}

    .tech-image-box img {
        width: 100%;
        display: block;
    }
/* Fallback stylised tech visual */
.tech-visual-fallback {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--dark3) 0%, #0d1f38 100%);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.circuit-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.what-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.pill {
    padding: 8px 18px;
    border: 1px solid rgba(0,229,255,0.18);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    background: rgba(0,229,255,0.04);
    letter-spacing: 0.05em;
}
/* ── WHAT IT DOES ── */
#does {
    background: var(--dark);
}

.does-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.does-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 52px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
}

.does-item {
    padding: 40px 44px;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

    .does-item:hover {
        background: var(--dark3);
    }

    .does-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, var(--cyan), var(--pink));
        transition: height 0.4s ease;
    }

    .does-item:hover::before {
        height: 100%;
    }

.does-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: rgba(0,229,255,0.4);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.does-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.does-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}
/* ── WHERE USED ── */
#where {
    background: var(--dark2);
}

.where-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.where-track {
    display: flex;
    gap: 16px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.where-card {
    flex: 1;
    min-width: 180px;
    padding: 32px 24px;
    background: var(--dark3);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .where-card:hover {
        border-color: rgba(0,229,255,0.4);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0,229,255,0.07);
    }

.where-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.where-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 44px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,229,255,0.3);
    padding-bottom: 3px;
    transition: all 0.3s;
}

    .explore-link:hover {
        gap: 14px;
        border-color: var(--cyan);
    }
/* ── WHY IT MATTERS ── */
#why-matters {
    background: var(--dark);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.why-body {
    margin-top: 20px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 300;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .benefit-list li {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 0.95rem;
        color: var(--text);
        font-weight: 400;
    }

        .benefit-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--cyan), var(--pink));
            border-radius: 50%;
            flex-shrink: 0;
        }

.built-by {
    margin-top: 44px;
    font-size: 0.72rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.15em;
    color: rgba(0,229,255,0.4);
    text-transform: uppercase;
}
/* ── CAPABILITIES / SECTION 5 ── */
#capabilities {
    background: var(--dark2);
    overflow: hidden;
}

.cap-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.cap-card {
    padding: 36px 32px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

    .cap-card:hover {
        border-color: rgba(0,229,255,0.3);
        box-shadow: 0 24px 80px rgba(0,229,255,0.06);
        transform: translateY(-3px);
    }

    .cap-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--cyan), transparent);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .cap-card:hover::after {
        opacity: 1;
    }

.cap-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.cap-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(0,229,255,0.35);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cap-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}
/* ── PLATFORMS ── */
#platforms {
    background: var(--dark);
    padding: 80px 60px;
}

.plat-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.plat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--muted);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 36px;
}

.plat-logos {
    display: flex;
    gap: 0;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
}

.plat-item {
    flex: 1;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    transition: background 0.3s;
    position: relative;
}

    .plat-item:last-child {
        border-right: none;
    }

    .plat-item:hover {
        background: rgba(0,229,255,0.04);
    }

    .plat-item .p-icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .plat-item span {
        display: block;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: var(--text);
        text-transform: uppercase;
        line-height: 1.4;
    }

    .plat-item .p-sub {
        font-size: 0.62rem;
        color: var(--muted);
        font-weight: 400;
        letter-spacing: 0.04em;
        margin-top: 2px;
        display: block;
    }
/* ── WHY innovAI MATTERS (split) ── */
#why-split {
    background: var(--dark2);
    overflow: hidden;
}

.why-split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-split-left {
}

.why-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.3s;
}

    .why-benefit:hover {
        border-color: rgba(0,229,255,0.25);
        background: var(--dark3);
    }

.wb-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(224,64,251,0.08));
    border: 1px solid rgba(0,229,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wb-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.wb-text p {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}

.why-split-right {
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.stat-block {
    padding: 32px 24px;
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

    .stat-block:hover {
        transform: translateY(-3px);
        border-color: rgba(0,229,255,0.25);
    }

    .stat-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--cyan), var(--pink));
    }

.stat-val {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.5;
}

.stat-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.55rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
    color: rgba(0,229,255,0.3);
    text-transform: uppercase;
}
/* ── INTEGRATION ── */
#integration {
    background: var(--dark);
}

.int-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.int-box {
    margin-top: 52px;
    padding: 52px 60px;
    background: linear-gradient(135deg, var(--dark2), var(--dark3));
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .int-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
    }

    .int-box p {
        font-size: 1.1rem;
        color: var(--muted);
        line-height: 1.8;
        max-width: 640px;
        margin-bottom: 36px;
        font-weight: 300;
    }

.int-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.int-tag {
    padding: 7px 18px;
    background: rgba(0,229,255,0.06);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 100px;
    font-size: 0.76rem;
    font-family: 'Space Mono', monospace;
    color: var(--cyan);
    letter-spacing: 0.08em;
}

.int-gfx {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0.5;
}

.int-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 2s ease-in-out infinite;
}

    .int-dot:nth-child(2) {
        animation-delay: 0.3s;
        background: var(--teal);
    }

    .int-dot:nth-child(3) {
        animation-delay: 0.6s;
        background: var(--pink);
    }

@keyframes blink {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
/* ── CTA ── */
#cta {
    padding: 120px 60px;
    background: var(--dark2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,229,255,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 30%, rgba(224,64,251,0.05) 0%, transparent 60%);
    }

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 24px;
}

#cta h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

    #cta h2 em {
        font-style: normal;
        background: linear-gradient(90deg, var(--cyan), var(--pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.cta-sub {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 44px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-pink {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--pink), #b030d8);
    color: #fff;
    border: none;
    border-radius: 3px;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-pink:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(224,64,251,0.3);
    }

.see-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
}

    .see-link:hover {
        color: var(--cyan);
    }
/* ── FOOTER ── */
.pagebody footer {
    padding: 32px 60px;
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.pagebody .footer-copy {
    font-size: 0.75rem;
    color: rgba(122,154,176,0.5);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.06em;
}

.pagebody .footer-built {
    font-size: 0.72rem;
    color: rgba(122,154,176,0.4);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.1em;
}

    .pagebody .footer-built a {
        color: var(--cyan);
        text-decoration: none;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

        .pagebody .footer-built a:hover {
            opacity: 1;
        }
.pagebody .innovLogo {
    margin-bottom: 5px;
    width: 160px;
}
/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    max-width: 1200px;
    margin: 0 auto;
}
/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* Hero entrance animations */
.hero-content > * {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

    .hero-content > *:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hero-content > *:nth-child(4) {
        animation-delay: 0.4s;
    }

    .hero-content > *:nth-child(5) {
        animation-delay: 0.5s;
    }

    .hero-content > *:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Scanning line on hero */
.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
    animation: scan 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}
/* Responsive */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 70px 24px;
    }

    #hero {
        padding: 0 24px;
    }

    .hero-visual {
        display: none;
    }

    .what-inner, .why-split-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cap-grid {
        grid-template-columns: 1fr;
    }

    .does-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .plat-logos {
        flex-wrap: wrap;
    }

    .plat-item {
        min-width: 45%;
    }

    #platforms {
        padding: 70px 24px;
    }

    footer {
        padding: 24px;
    }

    .int-gfx {
        display: none;
    }
}
