:root {
    --bg: #020817;
    --panel: #061326;
    --panel-2: #091d39;
    --text: #f5f9ff;
    --muted: #a9bbd4;
    --blue: #2c99ff;
    --cyan: #49d9ff;
    --violet: #a965ff;
    --line: rgba(73, 217, 255, .28);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(44, 153, 255, .2), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(169, 101, 255, .18), transparent 28%),
        linear-gradient(180deg, #020817 0%, #030b1d 52%, #01040d 100%);
    color: var(--text);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

img {
    display: block;
    max-width: 100%;
}

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

.section-pad {
    padding: 108px 0;
}

.hero + .services {
    margin-top: -78px;
    padding-top: 74px;
}

#baryon-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: min(1320px, calc(100% - 28px));
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 18px;
    border: 1px solid rgba(73, 217, 255, .18);
    border-radius: 8px;
    background: rgba(3, 12, 28, .8);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(73, 217, 255, .26));
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 1;
    font-size: 14px;
}

.site-nav a,
.nav-item > a {
    color: #d8e7ff;
}

.site-nav > a,
.nav-item > a {
    white-space: nowrap;
}

.nav-parent {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nav-parent::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .72;
}

.site-nav a.active,
.nav-item.active > a {
    color: var(--cyan);
}

.site-nav a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 7px;
    background: var(--blue);
}

.nav-item.active > a {
    box-shadow: inset 0 -2px 0 var(--blue);
    padding-bottom: 7px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    white-space: nowrap;
}

.has-mega > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 18px;
    min-width: 280px;
    padding: 20px;
    border: 1px solid rgba(73, 217, 255, .2);
    border-radius: 8px;
    background: rgba(4, 13, 30, .96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .48), 0 0 28px rgba(73, 217, 255, .12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(73,217,255,.6), rgba(169,101,255,.44), transparent);
}

.header-wide {
    width: min(100%, 1240px);
    max-width: calc(100vw - 28px);
}

.site-header .header-wide {
    position: fixed;
    top: 84px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 8px);
}

.site-header .has-mega:hover .header-wide,
.site-header .has-mega:focus-within .header-wide {
    transform: translate(-50%, 0);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header .has-mega:hover .header-wide,
.site-header .has-mega:focus-within .header-wide {
    transform: translate(-50%, 0);
}

.mega-menu a {
    display: block;
    margin: 0;
    color: #cfe0f7;
    font-size: 13px;
    line-height: 1.3;
}

.mega-menu a:hover {
    color: var(--cyan);
}

.solutions-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    padding: 24px;
}

.mega-solution {
    display: grid;
    gap: 7px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(73,217,255,.12);
    border-radius: 8px;
    background: rgba(255,255,255,.025);
}

.mega-title {
    display: flex !important;
    align-items: center;
    gap: 9px;
    margin-bottom: 5px !important;
    color: #fff !important;
    font-weight: 700;
}

.mega-title img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(73, 217, 255, .34));
}

.contact-menu {
    padding: 24px;
}

.corporate-menu {
    padding: 24px;
}

.mega-grid {
    display: grid;
    gap: 14px;
}

.mega-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-tile {
    display: flex !important;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px;
    border: 1px solid rgba(73,217,255,.13);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(8,25,50,.48), rgba(3,10,23,.34));
}

.mega-svg {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(73,217,255,.28));
    transition: transform .18s ease, filter .18s ease;
}

.mega-tile:hover .mega-svg {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 0 12px rgba(73,217,255,.5));
}

.mega-tile span {
    color: #f1f7ff;
    font-weight: 700;
}

.mega-tile:hover,
.mega-solution:hover {
    border-color: rgba(73,217,255,.34);
    background: linear-gradient(180deg, rgba(10,35,68,.62), rgba(4,14,32,.5));
}

.quote-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(73, 217, 255, .35);
    border-radius: 999px;
    padding: 10px 18px;
}

.site-nav .quote-link {
    padding: 9px 15px;
    color: #fff;
    font-weight: 700;
}

.quote-link,
.btn.primary {
    background: linear-gradient(135deg, var(--blue), #126be8);
    color: #fff;
    box-shadow: 0 0 24px rgba(44, 153, 255, .35);
}

.btn.ghost {
    background: rgba(255, 255, 255, .03);
}

.lang-switch {
    position: relative;
}

.lang-switch button {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    padding: 8px 12px;
}

.lang-switch div {
    position: absolute;
    top: 40px;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    min-width: 120px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #061326;
}

.lang-switch:hover div,
.lang-switch:focus-within div {
    display: grid;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px;
    background: var(--text);
}

.hero {
    min-height: 560px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 122px;
    background:
        linear-gradient(90deg, rgba(2,8,23,.18), rgba(2,8,23,.28) 28%, rgba(2,8,23,.54) 42%, rgba(2,8,23,.54) 58%, rgba(2,8,23,.18)),
        radial-gradient(circle at 18% 38%, rgba(73, 217, 255, .16), transparent 27%),
        radial-gradient(circle at 84% 36%, rgba(169, 101, 255, .17), transparent 28%),
        linear-gradient(180deg, rgba(2, 8, 23, .04), rgba(2, 8, 23, .86));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 74px 0 0;
    background:
        radial-gradient(ellipse at 50% 42%, rgba(2,8,23,.92) 0 24%, rgba(2,8,23,.74) 35%, transparent 50%),
        linear-gradient(90deg, transparent, rgba(2,8,23,.74) 38%, rgba(2,8,23,.78) 62%, transparent);
    opacity: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    background: linear-gradient(180deg, transparent, #020817 74%);
    pointer-events: none;
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .98;
}

.mesh-line {
    fill: none;
    stroke: url(#heroLineCyan);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .72;
    filter: drop-shadow(0 0 5px rgba(73,217,255,.42));
}

.mesh-line.strong {
    stroke-width: 2;
    opacity: .94;
}

.mesh-line.violet {
    stroke: url(#heroLineViolet);
    opacity: .74;
    filter: drop-shadow(0 0 6px rgba(169,101,255,.45));
}

.node {
    fill: url(#heroCyanGlow);
    filter: drop-shadow(0 0 8px rgba(73,217,255,.8));
    animation: svgNodePulse 3.4s ease-in-out infinite;
}

.node.violet {
    fill: url(#heroVioletGlow);
    filter: drop-shadow(0 0 9px rgba(169,101,255,.78));
}

.node.small {
    opacity: .9;
}

.dot-wave {
    fill: none;
    stroke: #49d9ff;
    stroke-width: 11;
    stroke-linecap: round;
    stroke-dasharray: .1 12;
    opacity: .52;
    filter: drop-shadow(0 0 8px rgba(73,217,255,.54));
}

.dot-wave.right {
    stroke: #a965ff;
    opacity: .46;
    filter: drop-shadow(0 0 8px rgba(169,101,255,.52));
}

.sparkles circle {
    fill: #e7fbff;
    opacity: .82;
    filter: drop-shadow(0 0 5px rgba(73,217,255,.7));
    animation: svgSpark 4.2s ease-in-out infinite;
}

.right-sparkles circle {
    filter: drop-shadow(0 0 5px rgba(169,101,255,.72));
}

.left-net,
.right-net {
    transform-box: fill-box;
    transform-origin: center;
}

.left-net {
    animation: netFloatLeft 9s ease-in-out infinite;
}

.right-net {
    animation: netFloatRight 9s ease-in-out infinite;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 860px;
    gap: 0;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.hero-copy {
    max-width: 760px;
    padding: 18px 34px 6px;
    position: relative;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: -22px -42px -20px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(2,8,23,.92) 0 44%, rgba(2,8,23,.56) 62%, transparent 78%);
    pointer-events: none;
}

.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
}

.hero h1,
.sub-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.03;
}

.hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    text-shadow: 0 0 28px rgba(73, 217, 255, .18);
}

.lead,
.sub-hero p,
.content-section p {
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
    justify-content: center;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2,
.split h2,
.cta-inner h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
}

.service-constellation {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 42px;
    padding: 60px 0 20px;
}

.services {
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(2,8,23,.42) 16%, transparent 100%);
}

.services::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 0;
    height: 160px;
    background:
        linear-gradient(102deg, transparent 0 36%, rgba(73,217,255,.14) 36.2%, transparent 36.6%),
        linear-gradient(78deg, transparent 0 62%, rgba(169,101,255,.13) 62.2%, transparent 62.6%);
    pointer-events: none;
}

.service-constellation::before {
    content: "";
    position: absolute;
    inset: 5% 0% 14%;
    border: 1px solid var(--line);
    border-radius: 50%;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(73, 217, 255, .45));
}

.service-constellation::after {
    content: "";
    position: absolute;
    inset: 1% 3% 1%;
    background:
        linear-gradient(20deg, transparent 49.6%, rgba(73,217,255,.22) 50%, transparent 50.4%),
        linear-gradient(160deg, transparent 49.6%, rgba(169,101,255,.2) 50%, transparent 50.4%),
        linear-gradient(90deg, transparent 49.7%, rgba(73,217,255,.14) 50%, transparent 50.3%);
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(73,217,255,.18));
}

.service-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(169,101,255,.55);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,255,255,.86) 0 5px, transparent 6px),
        radial-gradient(circle, rgba(73,217,255,.28), rgba(169,101,255,.16), transparent 72%);
    box-shadow: 0 0 36px rgba(73,217,255,.35), inset 0 0 34px rgba(169,101,255,.18);
    animation: hubPulse 4s ease-in-out infinite;
}

.service-hub span {
    position: absolute;
    inset: 31px;
    border-radius: 50%;
    border: 2px solid rgba(73,217,255,.5);
    transform: rotate(45deg);
}

.service-node,
.blog-card,
.contact-form,
.contact-panel,
.service-row,
.legal-copy {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(73, 217, 255, .18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(8, 25, 50, .78), rgba(3, 10, 23, .72));
    box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
}

.service-node {
    z-index: 3;
    text-align: center;
    min-height: 236px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.service-node::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 38px;
    width: 74px;
    height: 74px;
    transform: translateX(-50%);
    border: 1px solid rgba(73,217,255,.42);
    border-radius: 8px;
    background: rgba(5,18,38,.72);
    box-shadow: 0 0 24px rgba(73,217,255,.24);
    z-index: -1;
}

.service-node img {
    height: 54px;
    margin: 14px auto 22px;
    filter: drop-shadow(0 0 14px rgba(73,217,255,.44));
}

.service-node h3,
.service-row h2 {
    margin: 0 0 10px;
}

.service-node p,
.service-row p,
.blog-card p {
    color: var(--muted);
}

.service-detail {
    margin-top: 14px;
    padding: 16px 18px;
    border-left: 2px solid var(--cyan);
    background: rgba(73, 217, 255, .06);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.why {
    position: relative;
    overflow: hidden;
}

.why::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto;
    height: 572px;
    background: radial-gradient(circle at 68% 50%, rgba(73,217,255,.16), transparent 36%),
                radial-gradient(circle at 44% 42%, rgba(169,101,255,.12), transparent 30%);
    pointer-events: none;
}

.why-lab {
    position: relative;
}

.why-points {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.why-points span {
    position: relative;
    padding-left: 22px;
    color: #dbe9ff;
}

.why-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px var(--cyan);
}

.why-visual {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(73,217,255,.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 45%, rgba(73,217,255,.16), transparent 38%),
        linear-gradient(180deg, rgba(8,25,50,.55), rgba(3,10,23,.38));
    overflow: hidden;
}

.why-orbit {
    position: absolute;
    left: 50%;
    top: 42%;
    width: 270px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
}

.why-core {
    position: absolute;
    inset: 43%;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, var(--cyan), var(--violet));
    box-shadow: 0 0 54px rgba(73,217,255,.72);
}

.why-ring {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(73,217,255,.46);
    border-radius: 50%;
    animation: spin 15s linear infinite;
}

.wr2 {
    transform: rotate(64deg);
    border-color: rgba(169,101,255,.48);
    animation-duration: 18s;
}

.wr3 {
    transform: rotate(-64deg);
    animation-duration: 21s;
}

.why-visual .metrics {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.metrics div,
.panel-list div,
.logo-strip span,
.reference-grid div {
    border: 1px solid rgba(73, 217, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}

.metrics div {
    padding: 24px;
}

.metrics strong {
    display: block;
    color: var(--cyan);
    font-size: 34px;
}

.metrics span {
    color: var(--muted);
}

.panel-list {
    display: grid;
    gap: 12px;
}

.panel-list div {
    padding: 18px;
}

.logo-strip,
.reference-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.logo-strip span,
.reference-grid div {
    padding: 18px;
    color: #dcecff;
}

.cta-inner {
    text-align: center;
    padding: 56px 28px;
    border-block: 1px solid var(--line);
    background: radial-gradient(circle, rgba(44, 153, 255, .18), transparent 70%);
}

.sub-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: grid;
    align-items: center;
    padding-top: 150px;
    background:
        linear-gradient(90deg, rgba(2,8,23,.96) 0 48%, rgba(2,8,23,.72) 64%, rgba(2,8,23,.92) 100%),
        radial-gradient(circle at 74% 42%, rgba(73, 217, 255, .18), transparent 28%),
        radial-gradient(circle at 58% 34%, rgba(169, 101, 255, .14), transparent 26%),
        linear-gradient(180deg, rgba(2,8,23,.28), rgba(2,8,23,.92));
}

.sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(128deg, transparent 0 56%, rgba(73,217,255,.18) 56.2%, transparent 56.7% 72%, rgba(169,101,255,.15) 72.2%, transparent 72.7%),
        linear-gradient(38deg, transparent 0 64%, rgba(73,217,255,.13) 64.2%, transparent 64.7%),
        radial-gradient(circle at 72% 34%, rgba(73,217,255,.82) 0 3px, transparent 4px),
        radial-gradient(circle at 86% 58%, rgba(169,101,255,.76) 0 2px, transparent 3px),
        radial-gradient(circle at 66% 72%, rgba(73,217,255,.62) 0 2px, transparent 3px);
    opacity: .82;
    pointer-events: none;
}

.sub-hero::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 42%;
    width: 420px;
    height: 280px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(24deg, transparent 0 32%, rgba(73,217,255,.32) 32.2%, transparent 32.7%),
        linear-gradient(156deg, transparent 0 48%, rgba(169,101,255,.25) 48.2%, transparent 48.7%),
        radial-gradient(circle at 76% 28%, rgba(73,217,255,.95) 0 4px, transparent 5px),
        radial-gradient(circle at 48% 54%, rgba(73,217,255,.8) 0 5px, transparent 6px),
        radial-gradient(circle at 88% 72%, rgba(169,101,255,.78) 0 4px, transparent 5px);
    box-shadow: none;
    animation: none;
}

.sub-hero .container {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin-inline: auto;
}

.sub-hero .container > * {
    max-width: 600px;
}

.service-list {
    display: grid;
    gap: 20px;
}

.service-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
}

.service-row img {
    width: 70px;
}

.service-row ul {
    columns: 2;
    color: #dbe9ff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card span {
    color: var(--cyan);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #dbe9ff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #030b19;
    color: var(--text);
    padding: 13px 14px;
}

.contact-form button {
    justify-self: start;
    font-weight: 700;
}

.form-note {
    padding: 12px;
    border-radius: 8px;
}

.form-note.ok {
    border: 1px solid rgba(36, 190, 126, .35);
    background: rgba(36, 190, 126, .14);
}

.form-note.bad {
    border: 1px solid rgba(255, 78, 107, .35);
    background: rgba(255, 78, 107, .14);
}

.site-footer {
    padding: 70px 0 28px;
    border-top: 1px solid var(--line);
    background: #020713;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 16px rgba(73, 217, 255, .24));
}

.footer-grid h3 {
    color: var(--cyan);
    font-size: 15px;
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: var(--muted);
    margin: 8px 0;
}

.footer-langs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
}

.footer-langs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 3px 6px;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-size: 11px;
    line-height: 1.2;
}

.footer-langs a.active {
    background: var(--blue);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: var(--muted);
}

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

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

@keyframes spin {
    to {
        rotate: 360deg;
    }
}

@keyframes pulseNode {
    0%, 100% { opacity: .45; transform: scale(.82); }
    50% { opacity: 1; transform: scale(1.35); }
}

@keyframes coreBeat {
    0%, 100% { transform: scale(.94); }
    50% { transform: scale(1.12); }
}

@keyframes haloFloat {
    0%, 100% { transform: scale(.96) rotate(0deg); opacity: .74; }
    50% { transform: scale(1.12) rotate(18deg); opacity: 1; }
}

@keyframes hubPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(.96); }
    50% { transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes svgNodePulse {
    0%, 100% { opacity: .65; transform: scale(.86); transform-origin: center; }
    50% { opacity: 1; transform: scale(1.2); transform-origin: center; }
}

@keyframes svgSpark {
    0%, 100% { opacity: .35; }
    50% { opacity: .95; }
}

@keyframes netFloatLeft {
    0%, 100% { transform: translate3d(-92px, 0, 0); }
    50% { transform: translate3d(-82px, -8px, 0); }
}

@keyframes netFloatRight {
    0%, 100% { transform: translate3d(92px, 0, 0); }
    50% { transform: translate3d(82px, -8px, 0); }
}

@keyframes orbitOne {
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

@keyframes orbitTwo {
    to { transform: rotate(-360deg) translateX(125px) rotate(360deg); }
}

@keyframes orbitThree {
    to { transform: rotate(360deg) translateX(112px) rotate(-360deg); }
}

@keyframes orbitFour {
    to { transform: rotate(-360deg) translateX(92px) rotate(360deg); }
}

[dir="rtl"] .site-nav,
[dir="rtl"] .hero-actions {
    direction: rtl;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #061326;
        max-height: calc(100vh - 96px);
        overflow: auto;
    }

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

    .nav-item {
        width: 100%;
    }

    .site-nav > a,
    .nav-item > a,
    .site-nav .quote-link {
        width: 100%;
    }

    .nav-parent {
        justify-content: space-between;
    }

    .nav-item.active > a {
        padding-bottom: 0;
        box-shadow: none;
    }

    .mega-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: 340px;
        overflow: auto;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .site-header .header-wide {
        position: static;
        max-width: none;
        transform: none;
    }

    .has-mega:hover .mega-menu,
    .has-mega:focus-within .mega-menu,
    .has-mega.mega-open .mega-menu {
        display: grid;
    }

    .has-mega.mega-open .nav-parent::after {
        transform: translateY(1px) rotate(225deg);
    }

    .solutions-menu,
    .mega-grid.four {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-constellation,
    .blog-grid,
    .logo-strip,
    .reference-grid,
    .metrics {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        margin-top: -70px;
        padding-top: 128px;
    }

    .baryon-core {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: min(260px, 82vw);
        margin: 18px auto 0;
        opacity: .75;
    }

    .hero-art {
        opacity: .68;
        width: 180%;
        left: -40%;
    }

    .section-pad {
        padding: 72px 0;
    }

    .hero + .services {
        margin-top: 0;
        padding-top: 72px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .service-row ul {
        columns: 1;
    }

    .footer-bottom {
        display: grid;
    }

    .brand img {
        height: 42px;
    }

    .footer-logo {
        height: 54px;
    }

    .service-hub,
    .service-constellation::before,
    .service-constellation::after,
    .sub-hero::after {
        display: none;
    }

    .service-constellation {
        padding-top: 20px;
    }

    .why-visual {
        min-height: 360px;
    }

    .why-visual .metrics {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 220px 18px 18px;
    }
}
