:root {
    --bg: #ffffff;
    --bg2: #f8f9fc;
    --bg3: #f1f2f7;
    --border: rgba(91,31,175,.14);
    --border-h: rgba(91,31,175,.35);
    --text: #111827;
    --text-2: #374151;
    --text-3: #6b7280;
    --accent: #5B1FAF;
    --accent-2: #7428D4;
    --accent-3: #46158C;
    --accent-lt: rgba(91,31,175,.08);
    --nav-h: 64px;
    --radius: 16px;
    --font: 'Outfit',sans-serif;
    --mono: 'JetBrains Mono',monospace;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit
}

p {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--text-2)
}

h1 {
    font-size: clamp(2.2rem,5vw,4.9rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.05em;
    color: var(--accent)
}

    h1 em {
        font-style: normal;
        color: var(--accent-2)
    }

h2 {
    font-size: clamp(1.55rem,3vw,2.45rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    color: var(--accent);
    margin-bottom: .7rem
}

h3 {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700
}

.page {
    padding-top: var(--nav-h)
}

nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(248,247,255,.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border)
}

.logo-wrap {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--accent)
}

.logo-tagline {
    font-size: .56rem;
    color: var(--text-3);
    letter-spacing: .08em;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 1.35rem;
    list-style: none;
    margin-left: auto;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-2);
        font-size: .84rem;
        font-weight: 600;
        white-space: nowrap;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent)
        }

.nav-right {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.nav-icon-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--text-2)
}

.nav-contact-btn, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .68rem 1.05rem;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: .82rem;
    border: 0
}

    .btn.secondary {
        background: #fff;
        color: var(--accent);
        border: 1px solid var(--border)
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer
}

    .hamburger span {
        display: block;
        width: 23px;
        height: 2px;
        border-radius: 2px;
        background: var(--accent)
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 190;
    padding: 1.4rem 6%;
    flex-direction: column
}

    .mobile-menu.open {
        display: flex
    }

    .mobile-menu a {
        text-decoration: none;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        font-weight: 700;
        color: var(--text-2)
    }

section {
    padding: 0.5rem 5%
}

.section-header {
    max-width: 760px;
    margin-bottom: 5rem
}

.lead {
    font-size: 1rem;
    max-width: 640px
}

.label {
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .8rem
}

    .label:before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--accent)
    }

.divider {
    height: 1px;
    border: 0;
    background: var(--border)
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(420px,560px);
    gap: 1.6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--nav-h) + 0.5rem);
    padding-bottom: 0.5rem
}

    .hero:before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 10%,rgba(124,58,237,.14),transparent 34%),radial-gradient(circle at 20% 85%,rgba(168,85,247,.12),transparent 38%);
        z-index: -1
    }

.hero-sub {
    font-size: 1.05rem;
    max-width: 590px;
    margin: 1.1rem 0 1.6rem
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.hero-visual {
    position: relative;
    height: 440px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 24px 80px rgba(124,58,237,.16)
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease,transform 6s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.02)
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1)
    }

.slide-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px)
}

    .slide-caption strong {
        color: var(--accent);
        display: block;
        margin-bottom: .2rem
    }

.hero-dots {
    position: absolute;
    left: 24px;
    top: 22px;
    display: flex;
    gap: .45rem;
    z-index: 4
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 20px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(124,58,237,.25);
    cursor: pointer
}

    .hero-dot.active {
        width: 28px;
        background: var(--accent)
    }

.stats-strip {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    margin-top: 2.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.8);
    max-width: 780px
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid var(--border)
}

    .stat-item:last-child {
        border-right: 0
    }

.stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent)
}

.stat-lbl {
    font-size: .62rem;
    text-transform: uppercase;
    color: var(--text-3);
    letter-spacing: .08em
}

.connection-section {
    background: #fff
}

.connection-layout {
    display: grid;
    grid-template-columns: minmax(320px,.85fr) minmax(560px,1.2fr);
    gap: 1rem;
    align-items: center
}

.connection-list {
    display: grid;
    gap: .8rem;
    margin-top: 1.4rem
}

.mini-card {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg2)
}

    .mini-card b {
        color: var(--accent)
    }

.network-map {
    min-height: 520px;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(135deg,#fbfaff,#eee9ff);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(124,58,237,.12)
}

    .network-map svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%
    }

.module {
    position: absolute;
    width: 150px;
    min-height: 76px;
    border: 1px solid var(--border-h);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    color: var(--accent);
    box-shadow: 0 12px 34px rgba(124,58,237,.13);
    animation: float 5s ease-in-out infinite;
}

    .module span {
        font-size: .68rem;
        color: var(--text-3);
        font-weight: 700;
        margin-top: .18rem
    }

    .module.core {
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 170px;
        min-height: 96px;
        background: linear-gradient(135deg,#7c3aed,#a855f7);
        color: white;
        z-index: 3
    }

        .module.core span {
            color: rgba(255,255,255,.78)
        }

.m1 {
    left: 8%;
    top: 11%;
    animation-delay: .1s
}

.m2 {
    right: 8%;
    top: 12%;
    animation-delay: .6s
}

.m3 {
    left: 8%;
    bottom: 13%;
    animation-delay: 1.1s
}

.m4 {
    right: 8%;
    bottom: 12%;
    animation-delay: 1.5s
}

.m5 {
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    animation-delay: .9s
}

.m6 {
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    animation-delay: 1.9s
}

.pulse-line {
    stroke: rgba(124,58,237,.42);
    stroke-width: 2;
    stroke-dasharray: 7 8;
    fill: none;
    animation: dash 4s linear infinite
}

.pulse-dot {
    fill: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168,85,247,.8));
    animation: pulse 2.4s ease-in-out infinite
}

.orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 310px;
    height: 310px;
    margin: -155px 0 0 -155px;
    border: 1px dashed rgba(124,58,237,.25);
    border-radius: 50%;
    animation: spin 22s linear infinite
}

    .orbit:before, .orbit:after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--accent-2)
    }

    .orbit:before {
        left: 24px;
        top: 44px
    }

    .orbit:after {
        right: 28px;
        bottom: 46px
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 1.1rem
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .2s
}

    .card:hover {
        border-color: var(--border-h);
        box-shadow: 0 12px 34px rgba(124,58,237,.12);
        transform: translateY(-2px)
    }

/*.card-img {
    height: 160px;
    background-size: cover;
    background-position: center
}*/

.card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0ff;
}

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.card-body {
    padding: 1.25rem
}

.tag-row {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
    margin-top: .85rem
}

.tag {
    font-size: .68rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 6px;
    background: var(--accent-lt);
    color: var(--accent);
    border: 1px solid rgba(124,58,237,.16)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start
}

.chips {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    margin-top: 1.2rem
}

.chip {
    padding: .42rem .85rem;
    border-radius: 50px;
    background: var(--bg2);
    border: 1px solid var(--border);
    font-size: .82rem;
    color: var(--text-2);
    font-weight: 700
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.1rem
}

.vm-card {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border)
}

    .vm-card.span2 {
        grid-column: 1/-1
    }

.vm-tag {
    display: block;
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--accent);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .55rem
}

.contact-card {
    max-width: 580px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden
}

.contact-link {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.25rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    font-weight: 700
}

    .contact-link:last-child {
        border-bottom: 0
    }

    .contact-link:hover {
        background: var(--accent-lt);
        color: var(--accent)
    }

footer {
    padding: 1.4rem 5%;
    border-top: 1px solid var(--border);
    background: #fff;
    text-align: center
}

    footer p {
        font-size: .75rem;
        color: var(--text-3)
    }

.scroll-nav {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .25s;
    z-index: 80
}

    .scroll-nav.visible {
        opacity: 1;
        pointer-events: auto;
        transform: none
    }

    .scroll-nav button {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 10px;
        background: var(--accent);
        color: white;
        font-weight: 900;
        cursor: pointer
    }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .6s
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

@keyframes dash {
    to {
        stroke-dashoffset: -60
    }
}

@keyframes pulse {
    50% {
        opacity: .35;
        transform: scale(.7)
    }
}

@keyframes float {
    50% {
        margin-top: -10px
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width:1040px) {
    .hero, .connection-layout, .split {
        grid-template-columns: 1fr
    }

    .hero-visual {
        height: 370px
    }

    .connection-layout {
        gap: 2rem
    }

    .network-map {
        min-height: 480px
    }

    .stats-strip {
        grid-template-columns: repeat(2,1fr)
    }

    .stat-item {
        border-bottom: 1px solid var(--border)
    }
}

@media(max-width:780px) {
    .nav-links, .nav-icon-btn, .nav-contact-btn {
        display: none
    }

    .hamburger {
        display: flex
    }

    section {
        padding: 4rem 5%
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-h) + 2.5rem)
    }

    .hero-visual {
        height: 320px
    }

    .network-map {
        min-height: 620px
    }

    .module {
        width: 118px
    }

        .module.core {
            width: 150px
        }

    .m1 {
        left: 5%;
        top: 7%
    }

    .m2 {
        right: 5%;
        top: 7%
    }

    .m3 {
        left: 5%;
        bottom: 8%
    }

    .m4 {
        right: 5%;
        bottom: 8%
    }

    .m5 {
        top: 22%;
    }

    .m6 {
        bottom: 22%;
    }

    .vm-grid {
        grid-template-columns: 1fr
    }

    .vm-card.span2 {
        grid-column: auto
    }
}

@media(max-width:520px) {
    .stats-strip {
        grid-template-columns: 1fr
    }

    .stat-item {
        border-right: 0
    }

    .hero-actions {
        flex-direction: column
    }

    .btn {
        width: 100%
    }

    .hero-visual {
        height: 280px
    }

    .network-map {
        display: none
    }

    .desktop-note {
        display: block !important
    }

    .card-img {
        height: 135px
    }
}
/*.reach-map {
    margin-top: 2rem;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: #fbfaff;
    box-shadow: 0 18px 55px rgba(91,31,175,.12);
}

    .reach-map svg {
        width: 100%;
        height: auto;
        display: block;
    }

.map-line {
    stroke: #5B1FAF;
    stroke-width: 3;
    stroke-dasharray: 10 10;
    opacity: .45;
    fill: none;
    animation: dashMove 5s linear infinite;
}

.map-pin circle {
    fill: #7428D4;
    filter: drop-shadow(0 0 8px rgba(116,40,212,.55));
}

.map-pin text {
    font-family: Outfit,Arial;
    font-size: 16px;
    font-weight: 800;
    fill: #5B1FAF;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -80;
    }
}
*/


.google-map {
    margin-top: 2rem;
    height: 420px;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: #fbfaff;
    box-shadow: 0 18px 55px rgba(91,31,175,.12);
}

    .google-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: hue-rotate(245deg) saturate(1.15) contrast(.95) brightness(1.02);
    }