@font-face {
    font-family: "Inter";
    src: url("../fonts/InterVariable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --bg: #070816;
    --bg-deep: #040510;
    --surface: rgba(14, 16, 42, 0.72);
    --surface-solid: #0d0f29;
    --surface-elevated: #131638;
    --text: #f7f8ff;
    --text-soft: #d7dbef;
    --muted: #9299b8;
    --muted-strong: #b5bbd3;
    --line: rgba(151, 166, 222, 0.16);
    --line-strong: rgba(135, 156, 239, 0.28);
    --blue: #3b82f6;
    --cyan: #00f0ff;
    --violet: #8457ff;
    --magenta: #ec4899;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #8457ff 52%, #ec4899 100%);
    --gradient-cool: linear-gradient(135deg, #00f0ff 0%, #3b82f6 48%, #8457ff 100%);
    --shadow-glow: 0 18px 70px rgba(83, 79, 255, 0.2);
    --shadow-card: 0 28px 80px rgba(0, 0, 0, 0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 38px;
    --container: 1240px;
    --header-height: 70px;
    --anchor-offset: 112px;
    --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

main > section[id],
#main-content {
    scroll-margin-top: var(--anchor-offset);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 12%, rgba(59, 130, 246, 0.11), transparent 29rem),
        radial-gradient(circle at 90% 32%, rgba(132, 87, 255, 0.08), transparent 32rem),
        var(--bg);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

::selection {
    color: #fff;
    background: rgba(132, 87, 255, 0.65);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.08;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 4px;
    border-radius: 6px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: #07101c;
    background: #fff;
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.section {
    position: relative;
    padding: 128px 0;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        color 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms var(--ease-spring);
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms var(--ease-spring);
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover svg,
.text-link:hover svg {
    transform: translateX(3px);
}

.button-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 12px 34px rgba(91, 91, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
    box-shadow: 0 16px 42px rgba(91, 91, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--line-strong);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(127, 148, 255, 0.52);
}

.button-small {
    min-height: 42px;
    padding-inline: 17px;
    border-radius: 12px;
    font-size: 13px;
}

.button-small svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

.button-light {
    color: #17152e;
    background: #fff;
    box-shadow: 0 16px 34px rgba(13, 9, 47, 0.22);
}

.button-light:hover {
    color: #4933b5;
    box-shadow: 0 18px 42px rgba(13, 9, 47, 0.32);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b9c7ff;
    font-size: 14px;
    font-weight: 700;
    transition: color 200ms ease;
}

.text-link:hover {
    color: var(--cyan);
}

/* Header */
.site-header {
    position: fixed;
    top: 16px;
    right: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
}

.header-inner {
    position: relative;
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 28px;
    padding: 0 12px 0 20px;
    background: rgba(7, 8, 22, 0.7);
    border: 1px solid rgba(169, 181, 228, 0.14);
    border-radius: 19px;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(22px) saturate(150%);
    pointer-events: auto;
    transition:
        background-color 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.site-header.is-scrolled .header-inner {
    background: rgba(6, 7, 20, 0.92);
    border-color: rgba(153, 169, 230, 0.24);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.38);
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(125, 146, 255, 0.55);
    border-radius: 11px;
    background:
        radial-gradient(circle at 35% 28%, rgba(0, 240, 255, 0.6), transparent 36%),
        linear-gradient(145deg, rgba(59, 130, 246, 0.35), rgba(132, 87, 255, 0.75));
    box-shadow:
        inset 0 0 15px rgba(0, 240, 255, 0.24),
        0 0 20px rgba(85, 105, 255, 0.25);
    transform: rotate(8deg);
}

.brand-mark > span {
    position: absolute;
    display: block;
    width: 13px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    transform-origin: left center;
}

.brand-mark > span:nth-child(1) {
    transform: translate(-5px, -6px) rotate(30deg);
}

.brand-mark > span:nth-child(2) {
    width: 16px;
    transform: translate(-4px, 0) rotate(-27deg);
}

.brand-mark > span:nth-child(3) {
    width: 11px;
    transform: translate(-2px, 6px) rotate(27deg);
}

.brand-name {
    color: #f8f9ff;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.brand-name strong {
    color: #aebcff;
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.6vw, 27px);
}

.desktop-nav a {
    position: relative;
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 550;
    white-space: nowrap;
    transition: color 200ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gradient-cool);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease-spring);
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    flex: 0 0 auto;
    background: linear-gradient(135deg, #376eea, #7754eb);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.menu-toggle .close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
}

.mobile-menu {
    width: min(calc(100% - 48px), var(--container));
    margin: 8px auto 0;
    padding: 12px;
    background: rgba(8, 9, 25, 0.97);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(24px);
    pointer-events: auto;
}

.mobile-menu nav {
    display: grid;
}

.mobile-menu nav > a:not(.button) {
    padding: 13px 12px;
    color: var(--text-soft);
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 600;
}

.mobile-menu .button {
    margin-top: 12px;
}

.mobile-menu .button svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: none;
}

/* Shared headings */
.eyebrow,
.section-kicker {
    color: #90a6ff;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 7px 12px;
    color: #b8c4ff;
    background: rgba(76, 91, 201, 0.12);
    border: 1px solid rgba(117, 140, 255, 0.22);
    border-radius: 99px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--cyan);
}

.section-kicker {
    margin-bottom: 16px;
}

.section-heading {
    width: min(100%, 760px);
    margin-bottom: 56px;
}

.section-heading h2,
.process-callout h2,
.final-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: 750;
    letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.section-heading-wide > p,
.section-heading-pricing > p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: 17px;
}

.section-heading-wide,
.section-heading-pricing {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 72px;
}

.section-heading-wide h2,
.section-heading-pricing h2 {
    margin-bottom: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 930px;
    padding: 174px 0 58px;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 320px;
    content: "";
    background: linear-gradient(to bottom, transparent, rgba(4, 5, 16, 0.72));
    pointer-events: none;
}

.hero-aurora {
    position: absolute;
    z-index: -2;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero-aurora-one {
    top: -380px;
    left: -250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.26), rgba(0, 240, 255, 0.07) 42%, transparent 69%);
}

.hero-aurora-two {
    top: -110px;
    right: -260px;
    background: conic-gradient(from 210deg, transparent, rgba(132, 87, 255, 0.26), rgba(236, 72, 153, 0.1), transparent 72%);
    transform: rotate(-18deg);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(130, 149, 222, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(130, 149, 222, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 60% at 70% 37%, black 15%, transparent 72%);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.94fr);
    align-items: center;
    gap: clamp(44px, 6vw, 96px);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(54px, 6.8vw, 96px);
    font-weight: 750;
    letter-spacing: -0.072em;
}

.hero-brand-line {
    display: block;
    margin-bottom: 10px;
    color: transparent;
    background: linear-gradient(105deg, #f7f9ff 2%, #b9ceff 30%, #61dfff 54%, #9070ff 79%, #fa78bd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 0.94em;
    font-weight: 800;
    line-height: 0.95;
    text-shadow: 0 0 34px rgba(80, 178, 255, 0.18);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--muted-strong);
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-caption {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.hero-specs {
    display: grid;
    max-width: 650px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.hero-specs li {
    padding: 21px 16px 0 0;
}

.hero-specs li + li {
    padding-left: 21px;
    border-left: 1px solid var(--line);
}

.hero-specs strong,
.hero-specs span {
    display: block;
}

.hero-specs strong {
    margin-bottom: 3px;
    color: #eef0ff;
    font-size: 13px;
    font-weight: 700;
}

.hero-specs span {
    color: var(--muted);
    font-size: 12px;
}

.network-stage {
    --network-x: 0px;
    --network-y: 0px;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    transform: translate3d(var(--network-x), var(--network-y), 0);
    transition: transform 280ms var(--ease-spring);
}

.network-halo {
    position: absolute;
    inset: 7%;
    background: conic-gradient(from 15deg, rgba(0, 240, 255, 0.18), rgba(59, 130, 246, 0.07), rgba(236, 72, 153, 0.16), rgba(132, 87, 255, 0.25), rgba(0, 240, 255, 0.18));
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.72;
}

.network-card {
    position: absolute;
    inset: 3%;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(14, 18, 50, 0.86), rgba(8, 9, 28, 0.76)),
        radial-gradient(circle at 70% 18%, rgba(132, 87, 255, 0.3), transparent 40%);
    border: 1px solid rgba(141, 160, 232, 0.2);
    border-radius: 36px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 0 80px rgba(60, 79, 186, 0.06);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
}

.network-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(118, 141, 222, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 141, 222, 0.05) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.network-card-top {
    position: absolute;
    top: 22px;
    right: 23px;
    left: 23px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9ca5c7;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.network-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dbe0ff;
}

.network-status i {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan);
}

.network-map {
    position: absolute;
    inset: 6%;
    width: 88%;
    height: 88%;
    overflow: visible;
}

.map-orbit {
    fill: none;
    stroke: rgba(131, 150, 224, 0.16);
    stroke-width: 1;
    stroke-dasharray: 4 9;
}

.orbit-two {
    stroke: rgba(112, 132, 214, 0.08);
}

.map-route {
    fill: none;
    stroke: rgba(113, 137, 221, 0.31);
    stroke-width: 1.6;
    stroke-linecap: round;
}

.active-route {
    stroke: url(#routeGradient);
    stroke-width: 2.4;
    filter: drop-shadow(0 0 7px rgba(80, 190, 255, 0.7));
}

.js .network-stage.is-visible .active-route {
    stroke-dasharray: 290;
    stroke-dashoffset: 290;
    animation: draw-route 1000ms 220ms var(--ease-spring) forwards;
}

@keyframes draw-route {
    to { stroke-dashoffset: 0; }
}

.map-node circle:first-child {
    fill: rgba(18, 22, 59, 0.96);
    stroke: rgba(124, 148, 238, 0.55);
    stroke-width: 1.2;
}

.map-node .node-center {
    fill: #6c8cff;
    stroke: #c9e9ff;
    stroke-width: 1;
    filter: drop-shadow(0 0 7px #548aff);
}

.node-res circle:first-child {
    stroke: rgba(0, 240, 255, 0.8);
}

.node-res .node-center {
    fill: var(--cyan);
}

.route-packet {
    fill: #b8f6ff;
}

.gateway > circle:first-child {
    fill: rgba(10, 13, 39, 0.96);
    stroke: rgba(119, 143, 240, 0.5);
    stroke-width: 1.3;
    filter: drop-shadow(0 0 28px rgba(82, 100, 255, 0.55));
}

.gateway-ring {
    fill: none;
    stroke: url(#routeGradient);
    stroke-width: 1.4;
    stroke-dasharray: 3 7;
}

.gateway path {
    fill: rgba(79, 103, 255, 0.15);
    stroke: #b9d9ff;
    stroke-width: 1.7;
    stroke-linejoin: round;
}

.gateway .gateway-line {
    fill: none;
    stroke: rgba(155, 221, 255, 0.7);
    stroke-width: 1.2;
}

.gateway text {
    fill: #c5ccef;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.node-label {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    color: #c8cee8;
    background: rgba(8, 10, 30, 0.72);
    border: 1px solid rgba(133, 152, 223, 0.14);
    border-radius: 7px;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
}

.node-label span {
    width: 5px;
    height: 5px;
    background: #6e8cff;
    border-radius: 50%;
}

.label-dc { top: 23%; left: 10%; }
.label-res { top: 22%; right: 8%; }
.label-res span { background: var(--cyan); }
.label-mobile { right: 5%; bottom: 17%; }
.label-http { bottom: 14%; left: 8%; }
.label-socks { top: 13%; left: 44%; }

.network-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    color: #e6e9ff;
    background: rgba(13, 15, 42, 0.86);
    border: 1px solid rgba(135, 156, 239, 0.24);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    font-size: 11px;
    font-weight: 650;
    backdrop-filter: blur(14px);
}

.network-float-card svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #8fcfff;
    stroke-width: 1.7;
}

.float-card-speed {
    bottom: 14%;
    left: -1%;
}

.float-card-geo {
    top: 15%;
    right: -2%;
}

.protocol-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 3vw, 42px);
    margin-top: 88px;
    padding: 18px 26px;
    color: #7e87a8;
    background: rgba(11, 13, 35, 0.45);
    border: 1px solid rgba(135, 153, 219, 0.09);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
}

.protocol-strip i {
    width: 4px;
    height: 4px;
    background: #52628f;
    border-radius: 50%;
}

/* Benefits */
.advantages {
    background:
        radial-gradient(circle at 78% 14%, rgba(103, 67, 238, 0.1), transparent 30rem),
        linear-gradient(to bottom, rgba(6, 7, 18, 0.2), rgba(6, 7, 20, 0.65));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    position: relative;
    min-height: 295px;
    grid-column: span 3;
    padding: 30px;
    overflow: hidden;
    background:
        linear-gradient(150deg, rgba(20, 23, 57, 0.78), rgba(10, 12, 32, 0.86));
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition:
        transform 240ms var(--ease-spring),
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.benefit-card:nth-child(n + 4) {
    grid-column: span 4;
}

.benefit-card:hover {
    border-color: rgba(122, 145, 237, 0.34);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.benefit-card::after {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 210px;
    height: 210px;
    content: "";
    background: radial-gradient(circle, rgba(72, 108, 255, 0.14), transparent 68%);
    pointer-events: none;
}

.benefit-card-large {
    grid-column: span 6;
    background:
        radial-gradient(circle at 75% 78%, rgba(0, 240, 255, 0.1), transparent 38%),
        linear-gradient(140deg, rgba(23, 28, 75, 0.94), rgba(12, 14, 38, 0.88));
}

.benefit-card-accent {
    background:
        radial-gradient(circle at 86% 18%, rgba(236, 72, 153, 0.12), transparent 42%),
        linear-gradient(145deg, rgba(26, 19, 61, 0.92), rgba(12, 14, 38, 0.9));
}

.card-icon {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 58px;
    color: #a9c2ff;
    background: rgba(90, 105, 218, 0.12);
    border: 1px solid rgba(135, 156, 239, 0.22);
    border-radius: 13px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-number {
    position: absolute;
    top: 33px;
    right: 30px;
    color: #515976;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.benefit-card p {
    max-width: 390px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.benefit-card .text-link {
    margin-top: 20px;
}

.signal-bars {
    position: absolute;
    right: 34px;
    bottom: 35px;
    display: flex;
    height: 78px;
    align-items: flex-end;
    gap: 8px;
}

.signal-bars span {
    display: block;
    width: 13px;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), #62dcff);
    border: 1px solid rgba(113, 223, 255, 0.28);
    border-radius: 4px 4px 2px 2px;
    box-shadow: 0 0 15px rgba(74, 190, 255, 0.13);
}

.signal-bars span:nth-child(1) { height: 24%; }
.signal-bars span:nth-child(2) { height: 42%; }
.signal-bars span:nth-child(3) { height: 61%; }
.signal-bars span:nth-child(4) { height: 79%; }
.signal-bars span:nth-child(5) { height: 100%; }

/* Reveal */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 480ms var(--ease-spring),
        transform 480ms var(--ease-spring);
}

/* Proxy types */
.proxy-types {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 34%, rgba(0, 240, 255, 0.055), transparent 26rem),
        radial-gradient(circle at 84% 72%, rgba(132, 87, 255, 0.1), transparent 30rem),
        var(--bg-deep);
}

.section-orb {
    position: absolute;
    width: 460px;
    height: 460px;
    background: conic-gradient(from 90deg, rgba(0, 240, 255, 0.14), rgba(59, 130, 246, 0.02), rgba(132, 87, 255, 0.14));
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.38;
    pointer-events: none;
}

.section-orb-left {
    top: 180px;
    left: -340px;
}

.section-orb-right {
    top: 80px;
    right: -330px;
}

.proxy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.proxy-card {
    position: relative;
    display: flex;
    min-height: 610px;
    flex-direction: column;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(165deg, rgba(20, 23, 59, 0.74), rgba(8, 10, 28, 0.92));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
        transform 240ms var(--ease-spring),
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.proxy-card:hover {
    border-color: rgba(130, 152, 240, 0.38);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.proxy-card::before {
    position: absolute;
    top: -160px;
    right: -140px;
    width: 340px;
    height: 340px;
    content: "";
    background: radial-gradient(circle, rgba(60, 97, 255, 0.13), transparent 68%);
}

.proxy-card-featured {
    background:
        radial-gradient(circle at 88% 5%, rgba(0, 240, 255, 0.12), transparent 34%),
        radial-gradient(circle at 10% 100%, rgba(132, 87, 255, 0.18), transparent 38%),
        linear-gradient(160deg, rgba(24, 31, 81, 0.94), rgba(10, 11, 34, 0.96));
    border-color: rgba(105, 139, 255, 0.4);
    box-shadow: 0 30px 80px rgba(42, 49, 151, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.featured-label {
    position: absolute;
    top: 0;
    right: 32px;
    padding: 8px 13px;
    color: #ddfaff;
    background: linear-gradient(135deg, rgba(31, 117, 221, 0.55), rgba(90, 72, 205, 0.62));
    border: 1px solid rgba(127, 201, 255, 0.22);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.proxy-card-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 72px;
}

.proxy-index {
    color: #626b8b;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.proxy-icon {
    display: flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    color: #bdd1ff;
    background:
        radial-gradient(circle at 35% 25%, rgba(0, 240, 255, 0.18), transparent 45%),
        rgba(67, 82, 178, 0.13);
    border: 1px solid rgba(122, 146, 239, 0.3);
    border-radius: 22px;
    box-shadow: inset 0 0 22px rgba(61, 104, 255, 0.08);
}

.proxy-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.proxy-icon-home {
    color: #a6f5ff;
    box-shadow: inset 0 0 24px rgba(0, 240, 255, 0.09), 0 0 28px rgba(0, 240, 255, 0.06);
}

.proxy-icon-mobile {
    color: #d3b7ff;
}

.proxy-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    font-size: clamp(27px, 2.5vw, 36px);
    font-weight: 730;
    letter-spacing: -0.05em;
}

.proxy-card h3 span {
    display: block;
    color: #7d86a8;
    font-size: 0.62em;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.proxy-description {
    position: relative;
    z-index: 1;
    min-height: 73px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
}

.check-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-size: 13px;
}

.check-list li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: #79c7ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.protocols {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0;
}

.protocols span {
    padding: 6px 10px;
    color: #abb9ee;
    background: rgba(74, 89, 182, 0.11);
    border: 1px solid rgba(120, 142, 226, 0.18);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.button-card {
    width: 100%;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-strong);
}

/* Scroll story: FMQ Global Proxy Network */
.global-network {
    position: relative;
    min-height: 500vh;
    overflow: clip;
    background:
        radial-gradient(circle at 76% 45%, rgba(65, 83, 232, 0.14), transparent 34rem),
        radial-gradient(circle at 91% 70%, rgba(111, 64, 218, 0.08), transparent 30rem),
        linear-gradient(180deg, #070816 0%, #040510 43%, #08091a 100%);
    isolation: isolate;
}

.global-network::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(112, 132, 219, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 132, 219, 0.025) 1px, transparent 1px);
    background-size: 82px 82px;
    mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.global-network__sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 100vh;
    min-height: 700px;
    align-items: center;
    overflow: hidden;
}

.global-network__ambient {
    position: absolute;
    top: 50%;
    right: -2%;
    width: min(72vw, 1040px);
    aspect-ratio: 1;
    opacity: 0.72;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(50, 107, 255, 0.15), rgba(94, 66, 221, 0.055) 44%, transparent 72%);
    filter: blur(18px);
    pointer-events: none;
    transform: translateY(-50%);
    will-change: opacity, transform;
}

.global-network__layout {
    display: grid;
    height: min(100%, 920px);
    grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
    align-items: center;
    gap: clamp(20px, 2.8vw, 48px);
}

.global-network__story {
    position: relative;
    z-index: 7;
    display: flex;
    width: 100%;
    height: min(700px, calc(100vh - 142px));
    min-height: 548px;
    flex-direction: column;
    justify-content: center;
}

.global-network__intro {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.global-network__intro .section-kicker {
    margin: 0;
}

.global-network__counter {
    margin: 0;
    color: #697497;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    font-weight: 650;
    letter-spacing: 0.12em;
}

.global-network__counter span {
    color: #d6defc;
}

.scene-copy-stack {
    position: relative;
    display: grid;
    width: 100%;
    height: 430px;
}

.scene-copy {
    position: relative;
    width: 100%;
    max-width: 520px;
    align-self: center;
    grid-area: 1 / 1;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 16px, 0);
    will-change: transform, opacity;
}

.scene-copy:first-child {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.scene-copy.is-active {
    pointer-events: auto;
}

.scene-copy__number {
    display: inline-flex;
    width: 42px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #b8c8ff;
    background: rgba(85, 108, 224, 0.11);
    border: 1px solid rgba(127, 151, 244, 0.22);
    border-radius: 999px;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.scene-copy h2 {
    max-width: 660px;
    margin-bottom: 24px;
    font-size: clamp(48px, 4.8vw, 72px);
    font-weight: 760;
    letter-spacing: -0.065em;
}

.scene-copy--telegram h2 {
    font-size: clamp(44px, 4.25vw, 64px);
}

.scene-copy > p {
    max-width: 490px;
    margin-bottom: 0;
    color: #b9c3e0;
    font-size: 17px;
    line-height: 1.7;
}

.scene-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 0;
    padding: 0;
    color: #dce3ff;
    list-style: none;
    font-size: 12px;
    font-weight: 650;
}

.scene-flow li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scene-flow li:not(:last-child)::after {
    width: 19px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgba(101, 130, 255, 0.25), #7397ff);
}

.scene-copy__button {
    min-height: 46px;
    margin-top: 23px;
    padding-inline: 18px;
    font-size: 13px;
}

.global-network__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    background: rgba(126, 145, 216, 0.13);
    border-radius: 999px;
}

.global-network__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gradient-cool);
    box-shadow: 0 0 14px rgba(58, 181, 255, 0.7);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}

.global-network__visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: min(86vh, 850px);
    min-height: 620px;
}

.globe-aura {
    position: absolute;
    top: 50%;
    left: 53%;
    width: min(76vw, 930px);
    aspect-ratio: 1;
    opacity: 0.75;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(55, 129, 255, 0.24), rgba(104, 71, 255, 0.095) 39%, rgba(107, 58, 219, 0.035) 57%, transparent 72%);
    filter: blur(20px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    will-change: opacity, transform;
}

.network-globe-shell {
    position: absolute;
    top: 50%;
    left: 53%;
    width: min(71vw, 960px);
    aspect-ratio: 1;
    transform: translate3d(-50%, -50%, 0);
    transform-origin: center;
    will-change: transform;
}

.network-globe {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.network-globe__shadow {
    fill: rgba(0, 0, 0, 0.58);
    filter: blur(32px);
    transform: translateY(30px) scaleX(0.94);
    transform-origin: 400px 400px;
}

.network-globe__body {
    stroke: rgba(129, 155, 255, 0.27);
    stroke-width: 1.2;
}

.network-globe__atmosphere {
    mix-blend-mode: screen;
}

.network-globe__surface,
.network-globe__rotation,
.globe-grid,
.globe-orbits {
    transform-origin: 400px 400px;
}

.globe-grid {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.globe-grid--rear {
    stroke: rgba(93, 119, 205, 0.09);
    stroke-width: 0.8;
}

.globe-grid--front {
    stroke: rgba(101, 171, 245, 0.18);
    stroke-width: 1;
}

.network-globe__depth-shade {
    fill: rgba(1, 4, 15, 0.25);
    filter: blur(18px);
    pointer-events: none;
}

.network-globe__edge {
    fill: none;
    stroke-width: 1.45;
    filter: drop-shadow(0 0 14px rgba(86, 114, 255, 0.5));
}

.network-globe__edge--soft {
    stroke: rgba(102, 111, 255, 0.12);
    stroke-width: 13;
    filter: blur(8px);
}

.network-globe__shine {
    fill: none;
    stroke: rgba(175, 241, 255, 0.76);
    stroke-linecap: round;
    stroke-width: 2.2;
    filter: drop-shadow(0 0 10px rgba(92, 215, 255, 0.56));
}

.globe-orbits {
    fill: none;
    vector-effect: non-scaling-stroke;
    will-change: transform;
}

.globe-orbits--rear {
    stroke: rgba(94, 117, 222, 0.18);
    stroke-dasharray: 4 12;
    stroke-width: 1;
}

.globe-orbits--front {
    stroke: rgba(113, 167, 255, 0.38);
    stroke-linecap: round;
    stroke-width: 1.15;
    filter: drop-shadow(0 0 5px rgba(89, 129, 255, 0.24));
}

.route-layer,
.node-layer,
.telegram-convergence {
    will-change: opacity;
}

.route-layer--rear {
    fill: none;
    stroke: url(#globalRouteRear);
    stroke-linecap: round;
    stroke-width: 1.1;
}

.route-layer--front {
    fill: none;
}

.route-layer--global,
.node-layer--global {
    opacity: 1;
}

.route-layer--rear.route-layer--global,
.node-layer--rear.node-layer--global {
    opacity: 0.34;
}

.route-layer--dc,
.route-layer--residential,
.route-layer--mobile,
.node-layer--dc,
.node-layer--residential,
.node-layer--mobile,
.telegram-convergence {
    opacity: 0;
}

.network-route {
    fill: none;
    stroke: url(#globalRouteGradient);
    stroke-linecap: round;
    stroke-width: 1.6;
    vector-effect: non-scaling-stroke;
}

.network-route--strict {
    stroke-width: 2;
}

.network-route--organic {
    stroke: rgba(116, 194, 255, 0.76);
    stroke-width: 1.25;
}

.network-route--mobile {
    stroke: rgba(183, 114, 255, 0.9);
    stroke-width: 1.8;
}

.network-route--pulse,
.convergence-route--pulse {
    stroke: #dcfbff;
    stroke-dasharray: 2 35;
    stroke-linecap: round;
    stroke-width: 3.4;
    filter: drop-shadow(0 0 6px rgba(104, 225, 255, 0.95));
}

.network-node {
    fill: #8de9ff;
    stroke: #e1fbff;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.network-node--rear {
    opacity: 0.42;
    fill: #597ac6;
    stroke: #7d91cc;
    stroke-width: 0.7;
}

.network-node--core {
    filter: url(#globalNodeGlow);
}

.network-node--square {
    fill: #7f9cff;
    stroke: #e1e7ff;
    stroke-width: 1.25;
    filter: drop-shadow(0 0 5px rgba(102, 130, 255, 0.56));
}

.network-node--soft {
    fill: #73c9ff;
    stroke-width: 0.75;
}

.network-node--mobile {
    fill: #c17dff;
    stroke: #f3e2ff;
    filter: url(#globalNodeGlow);
    transform-box: fill-box;
    transform-origin: center;
    animation: scene-node-breathe 3.8s ease-in-out infinite alternate;
}

.orbit-node {
    fill: #78ebff;
    stroke: none;
    filter: url(#globalNodeGlow);
}

.orbit-node--violet {
    fill: #a87aff;
}

.telegram-convergence {
    fill: none;
}

.convergence-route {
    stroke: url(#globalTelegramRoute);
    stroke-linecap: round;
    stroke-width: 1.6;
    vector-effect: non-scaling-stroke;
}

.telegram-node__halo {
    fill: rgba(69, 184, 255, 0.14);
    filter: url(#globalSoftGlow);
}

.telegram-node__ring {
    fill: rgba(90, 182, 255, 0.12);
    stroke: rgba(165, 235, 255, 0.72);
    stroke-width: 1.2;
}

.telegram-node__core {
    fill: #e8fdff;
    stroke: #8edfff;
    stroke-width: 2;
    filter: url(#globalNodeGlow);
}

.telegram-mockup {
    position: absolute;
    right: -1%;
    bottom: 8%;
    z-index: 6;
    width: 326px;
    padding: 17px;
    opacity: 0;
    visibility: hidden;
    color: #f5f7ff;
    background:
        linear-gradient(155deg, rgba(22, 29, 70, 0.97), rgba(7, 9, 27, 0.985));
    border: 1px solid rgba(153, 177, 255, 0.34);
    border-radius: 25px;
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.58),
        0 0 80px rgba(77, 106, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(24px);
    transform: translate3d(46px, 34px, 0) scale(0.86);
    transform-origin: 68% 34%;
    will-change: transform, opacity;
}

.telegram-mockup::before {
    position: absolute;
    top: 31%;
    left: -72px;
    width: 80px;
    height: 1px;
    content: "";
    opacity: 0.7;
    background: linear-gradient(90deg, transparent, rgba(119, 212, 255, 0.78));
    box-shadow: 0 0 12px rgba(86, 183, 255, 0.4);
    transform: rotate(-8deg);
    transform-origin: right;
}

.telegram-mockup__glow {
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: radial-gradient(circle, rgba(81, 113, 255, 0.18), transparent 66%);
    filter: blur(18px);
    pointer-events: none;
}

.telegram-mockup__bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 3px 2px 15px;
    border-bottom: 1px solid var(--line);
}

.telegram-mockup__avatar {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gradient-cool);
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(54, 120, 255, 0.28);
}

.telegram-mockup__avatar svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.telegram-mockup__bar strong,
.telegram-mockup__bar small,
.telegram-mockup__status strong,
.telegram-mockup__status small {
    display: block;
}

.telegram-mockup__bar strong {
    font-size: 12px;
}

.telegram-mockup__bar small,
.telegram-mockup__status small {
    color: #7f89a9;
    font-size: 9.5px;
}

.telegram-mockup__bar i {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
}

.telegram-mockup__message {
    width: max-content;
    margin: 15px 0 10px auto;
    padding: 9px 13px;
    color: #fff;
    background: linear-gradient(135deg, #347ce9, #6b54e8);
    border-radius: 12px 12px 4px 12px;
    font-size: 10.5px;
    font-weight: 650;
}

.telegram-mockup__options {
    display: grid;
    gap: 5px;
    padding: 9px;
    background: rgba(61, 72, 150, 0.08);
    border: 1px solid rgba(120, 143, 233, 0.14);
    border-radius: 13px;
}

.telegram-mockup__options span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    color: #c8d3ff;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(142, 159, 228, 0.1);
    border-radius: 8px;
    font-size: 9.5px;
    font-weight: 600;
}

.telegram-mockup__options b {
    color: #809dff;
    font-weight: 700;
}

.telegram-mockup__status {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
    padding: 10px;
    color: #98f4e5;
    background: rgba(35, 203, 164, 0.075);
    border: 1px solid rgba(62, 226, 188, 0.14);
    border-radius: 12px;
}

.telegram-mockup__status > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.telegram-mockup__status strong {
    margin-bottom: 2px;
    color: #c7fff4;
    font-size: 10px;
}

.global-network__legend {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 14px;
    color: #717c9d;
    background: rgba(11, 13, 34, 0.62);
    border: 1px solid rgba(124, 143, 213, 0.11);
    border-radius: 12px;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.global-network__legend span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.global-network__legend i {
    width: 5px;
    height: 5px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 9px rgba(0, 240, 255, 0.75);
}

@keyframes scene-node-breathe {
    from { opacity: 0.68; transform: scale(0.84); }
    to { opacity: 1; transform: scale(1.16); }
}

/* Pricing */
.pricing {
    background:
        radial-gradient(circle at 72% 8%, rgba(236, 72, 153, 0.07), transparent 28rem),
        linear-gradient(to bottom, #08091a, #070816);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 610px;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(19, 22, 54, 0.83), rgba(10, 11, 31, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        transform 240ms var(--ease-spring),
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.price-card:hover {
    border-color: rgba(125, 148, 238, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.price-card-featured {
    background:
        radial-gradient(circle at 83% 9%, rgba(0, 240, 255, 0.11), transparent 33%),
        radial-gradient(circle at 12% 92%, rgba(132, 87, 255, 0.18), transparent 42%),
        linear-gradient(145deg, rgba(26, 32, 82, 0.94), rgba(12, 13, 39, 0.96));
    border-color: rgba(101, 136, 255, 0.46);
    box-shadow: 0 30px 80px rgba(52, 60, 179, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.price-badge {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 8px 12px;
    color: #fff;
    background: var(--gradient);
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.price-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    color: #717a9c;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 10px;
    font-size: 29px;
    font-weight: 730;
    letter-spacing: -0.045em;
}

.price-location {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
}

.price-description {
    min-height: 66px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 13px;
}

.price-location svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #8aa6ff;
    stroke-width: 1.6;
}

.price {
    display: flex;
    min-height: 65px;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 30px;
}

.price strong {
    color: #fff;
    font-size: clamp(36px, 3vw, 48px);
    font-weight: 750;
    letter-spacing: -0.065em;
    line-height: 1;
}

.price-prefix,
.price-period {
    color: var(--muted);
    font-size: 12px;
}

.price-parameters {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    margin: 0 0 28px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.price-parameters div + div {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}

.price-parameters dt {
    margin-bottom: 4px;
    color: #737c9c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.price-parameters dd {
    margin: 0;
    color: #dce1f6;
    font-size: 12px;
    font-weight: 650;
}

.price-features {
    margin-bottom: 30px;
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 760px;
    margin: 28px auto 0;
    color: #77809e;
    font-size: 12px;
    text-align: center;
}

/* Process */
.process {
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 42%, rgba(59, 130, 246, 0.08), transparent 28rem),
        var(--bg-deep);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 110px;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 230px;
    padding: 0 36px 0 0;
}

.process-list li + li {
    padding-left: 30px;
}

.step-number {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 43px;
    color: #c6d2ff;
    background:
        linear-gradient(145deg, rgba(66, 84, 190, 0.24), rgba(39, 42, 104, 0.1));
    border: 1px solid rgba(121, 145, 234, 0.3);
    border-radius: 16px;
    box-shadow: inset 0 0 18px rgba(80, 107, 255, 0.08);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.step-connector {
    position: absolute;
    top: 27px;
    right: 8px;
    left: 76px;
    height: 1px;
    overflow: hidden;
    background: rgba(103, 122, 190, 0.17);
}

.step-connector span {
    display: block;
    width: 44%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5d7cff, var(--cyan));
}

.js .process-list li.is-visible .step-connector span {
    transform: translateX(-100%);
    animation: connector-in 800ms 180ms var(--ease-spring) forwards;
}

@keyframes connector-in {
    to { transform: translateX(230%); }
}

.process-list h3 {
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.process-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.process-callout {
    position: relative;
    display: grid;
    min-height: 520px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 120px);
    padding: clamp(44px, 6vw, 82px);
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1), transparent 34%),
        radial-gradient(circle at 80% 10%, rgba(236, 72, 153, 0.09), transparent 32%),
        linear-gradient(135deg, rgba(24, 27, 70, 0.95), rgba(12, 13, 40, 0.95));
    border: 1px solid rgba(124, 146, 234, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.process-callout::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(123, 142, 214, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 142, 214, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, black, transparent 60%);
}

.process-callout > * {
    position: relative;
    z-index: 1;
}

.process-callout h2 {
    font-size: clamp(36px, 4vw, 56px);
}

.process-callout > div:last-child > p:not(.section-kicker) {
    max-width: 570px;
    margin-bottom: 28px;
    color: var(--muted-strong);
}

.process-callout-visual {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1;
    margin-inline: auto;
}

.callout-ring {
    position: absolute;
    border: 1px solid rgba(119, 146, 237, 0.25);
    border-radius: 50%;
}

.ring-a {
    inset: 8%;
    border-style: dashed;
}

.ring-b {
    inset: 23%;
    border-color: rgba(0, 240, 255, 0.24);
}

.callout-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 105px;
    height: 105px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 32% 22%, rgba(0, 240, 255, 0.65), transparent 42%),
        var(--gradient);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 32px;
    box-shadow: 0 0 70px rgba(80, 99, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(8deg);
}

.callout-core svg {
    width: 46px;
    height: 46px;
    fill: currentColor;
    transform: rotate(-8deg);
}

.callout-node {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #7697ff;
    border: 3px solid #13173d;
    border-radius: 50%;
    box-shadow: 0 0 18px #5c7aff;
}

.node-a { top: 12%; left: 48%; }
.node-b { right: 9%; bottom: 30%; background: var(--cyan); }
.node-c { bottom: 9%; left: 27%; background: #ca7aff; }

/* FAQ */
.faq {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 33%, rgba(132, 87, 255, 0.1), transparent 30rem),
        linear-gradient(to bottom, #070816, #08091b);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
    align-items: start;
    gap: clamp(55px, 9vw, 130px);
}

.faq-intro {
    position: sticky;
    top: 126px;
}

.faq-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 750;
    letter-spacing: -0.06em;
}

.faq-intro > p:not(.section-kicker) {
    margin-bottom: 27px;
    color: var(--muted-strong);
}

.accordion {
    border-top: 1px solid var(--line-strong);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    display: flex;
    width: 100%;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 22px 2px;
    color: var(--text-soft);
    background: none;
    border: 0;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: color 200ms ease;
}

.accordion-item button:hover,
.accordion-item button[aria-expanded="true"] {
    color: #fff;
}

.accordion-item button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: #8793bd;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 220ms ease,
        transform 220ms var(--ease-spring);
}

.accordion-item button[aria-expanded="true"] svg {
    stroke: var(--cyan);
    transform: rotate(180deg);
}

.accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 250ms var(--ease-spring),
        opacity 200ms ease;
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
    opacity: 1;
}

.accordion-panel > div {
    min-height: 0;
    overflow: hidden;
}

.accordion-panel p {
    max-width: 680px;
    margin: 0;
    padding: 0 48px 25px 2px;
    color: var(--muted);
    font-size: 14px;
}

.accordion-panel a {
    color: #9ab4ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contacts on home */
.contacts {
    background:
        radial-gradient(circle at 14% 80%, rgba(0, 240, 255, 0.06), transparent 27rem),
        var(--bg-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    --card-glow-x: 86%;
    --card-glow-y: 12%;
    --card-tilt-x: 0deg;
    --card-tilt-y: 0deg;
    --card-lift: 0px;
    position: relative;
    display: flex;
    min-height: 292px;
    flex-direction: column;
    align-items: stretch;
    padding: 27px;
    overflow: hidden;
    background:
        radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(93, 118, 255, 0.15), transparent 34%),
        linear-gradient(150deg, rgba(19, 22, 54, 0.9), rgba(8, 10, 28, 0.96));
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transform-style: preserve-3d;
    transition:
        transform 230ms var(--ease-spring),
        border-color 230ms ease,
        box-shadow 230ms ease,
        background 230ms ease;
}

.contact-card:hover {
    --card-lift: -5px;
    border-color: rgba(124, 153, 255, 0.48);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3), 0 0 36px rgba(70, 91, 230, 0.07);
}

.contact-card-primary {
    background:
        radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(0, 240, 255, 0.17), transparent 35%),
        linear-gradient(145deg, rgba(25, 34, 88, 0.97), rgba(11, 13, 40, 0.98));
    border-color: rgba(102, 140, 255, 0.42);
}

.js .contact-card[data-reveal].is-visible {
    transform: perspective(900px) translate3d(0, var(--card-lift), 0) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x));
}

.contact-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #b5cbff;
    background: rgba(82, 104, 213, 0.14);
    border: 1px solid rgba(126, 150, 237, 0.22);
    border-radius: 14px;
}

.contact-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card-primary .contact-icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-card__top > span {
    color: #828dad;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-card__body {
    flex: 1 1 auto;
}

.contact-card__body h3 {
    margin-bottom: 9px;
    overflow-wrap: anywhere;
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 720;
    letter-spacing: -0.04em;
}

.contact-card__body p {
    max-width: 280px;
    margin-bottom: 22px;
    color: #8f98b8;
    font-size: 13px;
}

.contact-card__button {
    width: 100%;
    min-height: 46px;
    padding-inline: 16px;
    font-size: 12px;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 0 0 128px;
    background: var(--bg-deep);
}

.final-cta-card {
    position: relative;
    display: grid;
    min-height: 520px;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    padding: clamp(46px, 7vw, 90px);
    overflow: hidden;
    background: linear-gradient(125deg, #2869e6 0%, #6d50e8 48%, #bb3caa 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 100px rgba(39, 38, 150, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.23);
}

.final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, transparent, black);
}

.final-cta-orb {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.final-orb-one {
    right: -90px;
    bottom: -210px;
    width: 530px;
    height: 530px;
}

.final-orb-two {
    right: 25px;
    bottom: -95px;
    width: 300px;
    height: 300px;
    border-style: dashed;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.final-cta .section-kicker {
    color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
    max-width: 760px;
    font-size: clamp(46px, 6vw, 78px);
}

.final-cta-content > p:not(.section-kicker) {
    max-width: 570px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

.final-cta-mark {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark-large {
    width: 160px;
    height: 160px;
    border-width: 2px;
    border-radius: 48px;
    background:
        radial-gradient(circle at 33% 24%, rgba(0, 240, 255, 0.75), transparent 40%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(57, 31, 171, 0.48));
    box-shadow: 0 35px 80px rgba(21, 10, 91, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.26);
}

.brand-mark-large > span {
    width: 60px;
    height: 7px;
}

.brand-mark-large > span:nth-child(1) {
    transform: translate(-22px, -28px) rotate(30deg);
}

.brand-mark-large > span:nth-child(2) {
    width: 72px;
    transform: translate(-18px, 0) rotate(-27deg);
}

.brand-mark-large > span:nth-child(3) {
    width: 52px;
    transform: translate(-10px, 28px) rotate(27deg);
}

/* Footer */
.site-footer {
    position: relative;
    padding: 78px 0 32px;
    overflow: hidden;
    background: #050610;
    border-top: 1px solid rgba(131, 149, 216, 0.1);
}

.footer-glow {
    position: absolute;
    top: -260px;
    left: 50%;
    width: 760px;
    height: 390px;
    background: radial-gradient(ellipse, rgba(88, 75, 255, 0.16), rgba(0, 240, 255, 0.03) 44%, transparent 72%);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: clamp(70px, 10vw, 160px);
    padding-bottom: 64px;
}

.footer-brand p {
    max-width: 360px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b7c6ff;
    font-size: 13px;
    font-weight: 650;
    transition: color 200ms ease;
}

.footer-telegram:hover {
    color: var(--cyan);
}

.footer-telegram svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-nav h2 {
    margin-bottom: 10px;
    color: #e3e6f5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-nav a {
    color: #7f87a5;
    font-size: 12px;
    transition: color 190ms ease;
}

.footer-nav a:hover {
    color: #d7ddf6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 27px;
    color: #5f6681;
    border-top: 1px solid rgba(126, 144, 208, 0.1);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

/* Internal page hero */
.subpage-hero {
    position: relative;
    min-height: 520px;
    padding: 184px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 22%, rgba(132, 87, 255, 0.17), transparent 30rem),
        radial-gradient(circle at 15% 4%, rgba(59, 130, 246, 0.13), transparent 25rem),
        linear-gradient(to bottom, #090a20, var(--bg));
}

.subpage-hero .container {
    position: relative;
    z-index: 1;
}

.subpage-hero h1 {
    max-width: 950px;
    margin-bottom: 22px;
    font-size: clamp(48px, 7.5vw, 94px);
    font-weight: 760;
    letter-spacing: -0.07em;
}

.subpage-hero .container > p:last-child,
.subpage-hero .subpage-intro {
    max-width: 750px;
    margin-bottom: 0;
    color: var(--muted-strong);
    font-size: 18px;
}

.subpage-hero .legal-date {
    display: inline-flex;
    margin-top: 24px;
    padding: 7px 11px;
    color: #aebcff;
    background: rgba(81, 101, 210, 0.12);
    border: 1px solid rgba(124, 147, 235, 0.2);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 650;
}

.subpage-grid,
.error-grid {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(126, 145, 218, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(126, 145, 218, 0.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(ellipse 70% 70% at 75% 30%, black, transparent);
}

.subpage-orb {
    position: absolute;
    top: -380px;
    right: -180px;
    width: 760px;
    height: 760px;
    background: conic-gradient(from 50deg, rgba(0, 240, 255, 0.14), rgba(132, 87, 255, 0.26), rgba(236, 72, 153, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 48px;
    color: #7f88a9;
    font-size: 12px;
}

.breadcrumbs a {
    transition: color 180ms ease;
}

.breadcrumbs a:hover {
    color: #c6ccef;
}

.breadcrumbs svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #5b6483;
    stroke-width: 1.8;
    transform: rotate(-90deg);
}

.breadcrumbs span {
    color: #b6bdd5;
}

/* Legal pages */
.legal-section {
    padding: 96px 0 130px;
    background:
        radial-gradient(circle at 15% 8%, rgba(59, 130, 246, 0.055), transparent 26rem),
        var(--bg-deep);
}

.legal-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: clamp(55px, 8vw, 110px);
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    padding: 23px;
    background: rgba(14, 16, 42, 0.62);
    border: 1px solid var(--line);
    border-radius: 18px;
}

.legal-sidebar > p {
    margin: 0 0 17px;
    padding: 0 9px;
    color: #737d9f;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.legal-sidebar nav {
    display: grid;
    gap: 5px;
}

.legal-sidebar a {
    padding: 10px 11px;
    color: #929ab7;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 550;
    transition:
        color 190ms ease,
        background-color 190ms ease,
        border-color 190ms ease;
}

.legal-sidebar a:hover {
    color: #e4e7f8;
    background: rgba(255, 255, 255, 0.035);
}

.legal-sidebar a[aria-current="page"] {
    color: #dbe3ff;
    background: rgba(72, 93, 199, 0.13);
    border-color: rgba(115, 140, 238, 0.2);
}

.legal-content {
    min-width: 0;
    padding: clamp(34px, 5vw, 68px);
    color: #aeb5cf;
    background:
        linear-gradient(155deg, rgba(17, 20, 50, 0.82), rgba(9, 11, 29, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.legal-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
    padding: 18px 20px;
    color: #b9c5ed;
    background: rgba(61, 83, 180, 0.1);
    border: 1px solid rgba(105, 132, 232, 0.2);
    border-radius: 13px;
}

.legal-notice svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #83a9ff;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.legal-notice p {
    margin: 0;
    font-size: 12px;
}

.legal-lead {
    margin-bottom: 50px;
    color: #d7dcf0;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.legal-content section {
    margin-top: 50px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.legal-content section:first-of-type {
    margin-top: 0;
}

.legal-content h2 {
    margin-bottom: 20px;
    color: #f1f3ff;
    font-size: clamp(23px, 2.5vw, 31px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
    font-size: 14px;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 17px;
}

.legal-content strong {
    color: #dce1f4;
}

.legal-content ul,
.legal-content ol {
    display: grid;
    gap: 10px;
    margin: 19px 0 24px;
    padding-left: 24px;
}

.legal-content li::marker {
    color: #738cff;
    font-weight: 700;
}

.legal-content a:not(.button) {
    color: #9eb6ff;
    text-decoration: underline;
    text-decoration-color: rgba(158, 182, 255, 0.35);
    text-underline-offset: 3px;
    transition:
        color 180ms ease,
        text-decoration-color 180ms ease;
}

.legal-content a:not(.button):hover {
    color: var(--cyan);
    text-decoration-color: var(--cyan);
}

.legal-warning {
    margin: 25px 0;
    padding: 17px 19px;
    color: #e0cce4;
    background: rgba(236, 72, 153, 0.07);
    border: 1px solid rgba(236, 72, 153, 0.17);
    border-radius: 12px;
}

.legal-cta {
    margin-top: 12px;
}

/* Contacts page */
.contact-page-section {
    padding: 90px 0 130px;
    background:
        radial-gradient(circle at 86% 15%, rgba(132, 87, 255, 0.08), transparent 28rem),
        var(--bg-deep);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    margin-bottom: 80px;
}

.contact-page-grid.contact-page-grid-double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page-grid.contact-page-grid-single {
    grid-template-columns: 1fr;
}

.contact-page-card {
    position: relative;
    display: flex;
    min-height: 320px;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(20, 23, 57, 0.84), rgba(9, 11, 30, 0.93));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition:
        transform 240ms var(--ease-spring),
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.contact-page-card::after {
    position: absolute;
    top: -120px;
    right: -110px;
    width: 270px;
    height: 270px;
    content: "";
    background: radial-gradient(circle, rgba(88, 99, 255, 0.13), transparent 68%);
}

.contact-page-card:hover {
    border-color: rgba(122, 147, 238, 0.42);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
}

.contact-page-card-primary {
    background:
        radial-gradient(circle at 78% 8%, rgba(0, 240, 255, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(25, 34, 88, 0.96), rgba(12, 14, 42, 0.96));
    border-color: rgba(102, 138, 255, 0.42);
}

.contact-page-icon {
    position: relative;
    z-index: 1;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    color: #bbceff;
    background: rgba(70, 91, 198, 0.14);
    border: 1px solid rgba(125, 150, 238, 0.24);
    border-radius: 16px;
}

.contact-page-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page-card:first-child .contact-page-icon svg {
    fill: currentColor;
    stroke: none;
}

.contact-page-card > p {
    position: relative;
    z-index: 1;
    margin: 34px 0 9px;
    color: #7f89ac;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    overflow-wrap: anywhere;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.contact-page-card > span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #adc0ff;
    font-size: 13px;
    font-weight: 650;
}

.contact-page-card > span svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms var(--ease-spring);
}

.contact-page-card:hover > span svg {
    transform: translateX(4px);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-details-grid.contact-details-single {
    grid-template-columns: 1fr;
}

.contact-instructions,
.owner-details {
    padding: clamp(34px, 5vw, 56px);
    background: linear-gradient(150deg, rgba(18, 21, 52, 0.82), rgba(10, 12, 31, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.contact-instructions h2 {
    max-width: 640px;
    margin-bottom: 30px;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 720;
    letter-spacing: -0.05em;
}

.contact-instructions .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 30px;
}

.contact-safety {
    margin: 32px 0 0;
    padding: 15px 18px;
    color: #d8c8df;
    background: rgba(236, 72, 153, 0.06);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 12px;
    font-size: 12px;
}

.owner-details .contact-page-icon {
    margin-bottom: 30px;
}

.owner-details h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.owner-details > p:not(.section-kicker) {
    color: var(--muted);
    font-size: 13px;
}

.owner-details > div:not(.contact-page-icon) {
    padding: 17px 0;
    border-top: 1px solid var(--line);
}

.owner-details > div span,
.owner-details > div strong {
    display: block;
}

.owner-details > div span {
    margin-bottom: 5px;
    color: #707999;
    font-size: 10px;
    text-transform: uppercase;
}

.owner-details > div strong {
    color: #dce1f2;
    font-size: 14px;
}

.site-role-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    color: #aeb7d4;
    background: rgba(26, 31, 78, 0.38);
    border: 1px solid rgba(113, 138, 230, 0.2);
    border-radius: 18px;
}

.site-role-note > svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #8aa7ff;
    stroke-width: 1.6;
    stroke-linecap: round;
}

.site-role-note h2 {
    margin-bottom: 5px;
    color: #e6e9f8;
    font-size: 16px;
}

.site-role-note p {
    margin: 0;
    font-size: 12px;
}

.site-role-note a {
    color: #aec0ff;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

/* 404 */
.error-page {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 160px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 38%, rgba(84, 74, 242, 0.17), transparent 31rem),
        var(--bg-deep);
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 830px;
    text-align: center;
}

.error-code {
    position: absolute;
    top: -190px;
    left: 50%;
    z-index: -1;
    color: transparent;
    background: linear-gradient(180deg, rgba(122, 148, 255, 0.18), transparent);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: clamp(190px, 28vw, 390px);
    font-weight: 800;
    letter-spacing: -0.1em;
    line-height: 1;
    transform: translateX(-50%);
    opacity: 0.55;
}

.error-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 52px;
}

.error-mark .brand-mark-large {
    width: 104px;
    height: 104px;
    border-radius: 32px;
}

.error-mark .brand-mark-large > span {
    height: 5px;
}

.error-mark .brand-mark-large > span:nth-child(1) { width: 42px; transform: translate(-15px, -19px) rotate(30deg); }
.error-mark .brand-mark-large > span:nth-child(2) { width: 49px; transform: translate(-13px, 0) rotate(-27deg); }
.error-mark .brand-mark-large > span:nth-child(3) { width: 35px; transform: translate(-6px, 19px) rotate(27deg); }

.error-content h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 750;
    letter-spacing: -0.06em;
}

.error-content > p:not(.section-kicker) {
    max-width: 650px;
    margin: 0 auto 32px;
    color: var(--muted-strong);
    font-size: 17px;
}

.error-content .hero-actions {
    justify-content: center;
}

.error-orb {
    position: absolute;
    border: 1px solid rgba(119, 143, 228, 0.14);
    border-radius: 50%;
}

.error-orb-one {
    top: 14%;
    left: -180px;
    width: 390px;
    height: 390px;
}

.error-orb-two {
    right: -120px;
    bottom: 4%;
    width: 290px;
    height: 290px;
    border-style: dashed;
}

/* Responsive */
@media (max-width: 1160px) {
    .desktop-nav {
        gap: 14px;
    }

    .desktop-nav a {
        font-size: 12px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
        gap: 40px;
    }

    .network-card {
        inset: 1%;
    }
}

@media (max-width: 1020px) {
    :root {
        --container: 920px;
    }

    .desktop-nav {
        display: none;
    }

    .header-inner {
        gap: 14px;
    }

    .header-cta {
        margin-left: auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 170px;
    }

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

    .hero-copy {
        max-width: 780px;
    }

    .network-stage {
        width: min(100%, 650px);
        margin: 10px auto 0;
    }

    .protocol-strip {
        margin-top: 50px;
    }

    .section-heading-wide,
    .section-heading-pricing {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .benefit-card,
    .benefit-card:nth-child(n + 4) {
        grid-column: span 6;
    }

    .benefit-card-large {
        grid-column: span 12;
    }

    .proxy-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proxy-card:last-child,
    .price-card:last-child {
        grid-column: 1 / -1;
    }

    .proxy-card:last-child {
        min-height: 560px;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 0;
    }

    .process-list li:nth-child(2) .step-connector {
        display: none;
    }

    .process-callout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 40px;
        padding: 48px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .faq-intro {
        position: static;
        max-width: 650px;
    }

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

    .contact-card:last-child {
        grid-column: 1 / -1;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .legal-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 34px;
    }

    .contact-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    :root {
        --radius-lg: 23px;
        --radius-xl: 27px;
    }

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

    .section {
        padding: 88px 0;
    }

    .site-header {
        top: 10px;
    }

    .header-inner {
        min-height: 60px;
        padding: 0 8px 0 14px;
        border-radius: 16px;
    }

    .brand-mark {
        width: 31px;
        height: 31px;
        border-radius: 10px;
    }

    .brand-name {
        font-size: 14px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: auto;
    }

    .hero {
        min-height: auto;
        padding: 136px 0 45px;
    }

    .hero h1 {
        margin-bottom: 23px;
        font-size: clamp(45px, 13.5vw, 68px);
        letter-spacing: -0.065em;
    }

    .hero-brand-line {
        margin-bottom: 9px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions .button {
        flex: 1 1 180px;
    }

    .hero-specs {
        margin-top: 34px;
    }

    .hero-specs li {
        padding-top: 17px;
    }

    .hero-specs li + li {
        padding-left: 12px;
    }

    .hero-specs strong {
        font-size: 11px;
    }

    .hero-specs span {
        font-size: 10px;
    }

    .network-stage {
        margin-top: 5px;
    }

    .network-card {
        border-radius: 25px;
        transform: none;
    }

    .network-card-top {
        top: 17px;
        right: 17px;
        left: 17px;
        font-size: 8px;
    }

    .node-label {
        font-size: 7px;
    }

    .network-float-card {
        display: none;
    }

    .protocol-strip {
        flex-wrap: wrap;
        gap: 12px 18px;
        margin-top: 35px;
        padding: 15px;
        font-size: 9px;
    }

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

    .section-heading h2,
    .process-callout h2,
    .final-cta h2 {
        font-size: clamp(35px, 10vw, 48px);
    }

    .section-heading > p:last-child,
    .section-heading-wide > p,
    .section-heading-pricing > p {
        font-size: 15px;
    }

    .benefits-grid {
        gap: 12px;
    }

    .benefit-card,
    .benefit-card:nth-child(n + 4),
    .benefit-card-large {
        min-height: 260px;
        grid-column: span 12;
        padding: 25px;
    }

    .card-icon {
        margin-bottom: 42px;
    }

    .signal-bars {
        right: 25px;
        bottom: 28px;
        height: 60px;
    }

    .proxy-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .proxy-card,
    .proxy-card:last-child,
    .price-card {
        min-height: 560px;
        grid-column: auto;
        padding: 27px;
    }

    .proxy-card-head {
        margin-bottom: 54px;
    }

    .proxy-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .proxy-description {
        min-height: auto;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 76px;
    }

    .process-list li,
    .process-list li + li {
        min-height: 0;
        padding: 0 0 0 79px;
    }

    .step-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .step-connector {
        top: 57px;
        right: auto;
        bottom: -36px;
        left: 26px;
        width: 1px;
        height: auto;
    }

    .step-connector span {
        width: 1px;
        height: 45%;
        background: linear-gradient(to bottom, transparent, #5d7cff, var(--cyan));
    }

    .process-list li:nth-child(2) .step-connector {
        display: block;
    }

    .process-callout {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 34px 24px 40px;
    }

    .process-callout-visual {
        width: min(90%, 320px);
    }

    .faq-layout {
        gap: 25px;
    }

    .accordion-item button {
        min-height: 76px;
        gap: 18px;
        padding: 19px 0;
        font-size: 15px;
    }

    .accordion-panel p {
        padding-right: 20px;
        font-size: 13px;
    }

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

    .contact-card,
    .contact-card:last-child {
        min-height: 142px;
        grid-column: auto;
        padding: 23px;
    }

    .final-cta {
        padding-bottom: 88px;
    }

    .final-cta-card {
        min-height: 590px;
        grid-template-columns: 1fr;
        align-content: space-between;
        gap: 35px;
        padding: 42px 26px;
    }

    .final-cta h2 {
        font-size: clamp(39px, 11vw, 55px);
    }

    .final-cta-mark {
        justify-content: flex-start;
    }

    .brand-mark-large {
        width: 104px;
        height: 104px;
        border-radius: 32px;
    }

    .brand-mark-large > span {
        height: 5px;
    }

    .brand-mark-large > span:nth-child(1) { width: 42px; transform: translate(-15px, -19px) rotate(30deg); }
    .brand-mark-large > span:nth-child(2) { width: 49px; transform: translate(-13px, 0) rotate(-27deg); }
    .brand-mark-large > span:nth-child(3) { width: 35px; transform: translate(-6px, 19px) rotate(27deg); }

    .site-footer {
        padding-top: 64px;
    }

    .footer-main {
        gap: 48px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .subpage-hero {
        min-height: 480px;
        padding: 144px 0 78px;
    }

    .subpage-hero h1 {
        font-size: clamp(43px, 12vw, 66px);
    }

    .subpage-hero .container > p:last-child,
    .subpage-hero .subpage-intro {
        font-size: 16px;
    }

    .subpage-hero .legal-date {
        font-size: 11px;
    }

    .breadcrumbs {
        margin-bottom: 40px;
    }

    .legal-section,
    .contact-page-section {
        padding: 65px 0 90px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-sidebar {
        position: static;
        overflow-x: auto;
        padding: 13px;
        scrollbar-width: thin;
    }

    .legal-sidebar > p {
        display: none;
    }

    .legal-sidebar nav {
        display: flex;
        width: max-content;
        gap: 5px;
    }

    .legal-sidebar a {
        white-space: nowrap;
    }

    .legal-content {
        padding: 28px 22px;
        border-radius: 21px;
    }

    .legal-notice {
        align-items: start;
        margin-bottom: 36px;
        padding: 16px;
    }

    .legal-content section {
        margin-top: 38px;
        padding-top: 36px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 13px;
    }

    .contact-page-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-card,
    .contact-page-card:last-child {
        min-height: 290px;
        grid-column: auto;
        padding: 28px;
    }

    .contact-instructions,
    .owner-details {
        padding: 30px 24px;
    }

    .contact-instructions .check-list {
        grid-template-columns: 1fr;
    }

    .site-role-note {
        grid-template-columns: auto 1fr;
        padding: 24px;
    }

    .site-role-note a {
        grid-column: 2;
    }

    .error-page {
        padding-top: 140px;
    }
}

@media (max-width: 410px) {
    .hero h1 {
        font-size: 43px;
    }

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

    .hero-specs li,
    .hero-specs li + li {
        padding: 13px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
    }

    .node-label {
        display: none;
    }

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

    .contact-arrow {
        display: none;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .site-role-note {
        grid-template-columns: 1fr;
    }

    .site-role-note a {
        grid-column: auto;
    }
}

@media (max-width: 1160px) and (min-width: 901px) {
    .global-network__layout {
        grid-template-columns: minmax(310px, 0.72fr) minmax(540px, 1.28fr);
        gap: 14px;
    }

    .global-network__visual {
        height: min(80vh, 740px);
        min-height: 560px;
    }

    .global-network__story {
        height: min(700px, calc(100vh - 190px));
    }

    .network-globe-shell {
        width: min(80vw, 860px);
    }

    .scene-copy h2 {
        font-size: clamp(42px, 5.2vw, 60px);
    }

    .scene-copy--telegram h2 {
        font-size: clamp(39px, 4.7vw, 54px);
    }

    .scene-copy > p {
        font-size: 15px;
    }

    .telegram-mockup {
        right: 0;
        width: 276px;
    }
}

@media (max-width: 1020px) {
    .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-card,
    .contact-card:last-child {
        grid-column: auto;
    }
}

/* Static scene: mobile, reduced motion, and the GSAP network fallback. */
.global-network--static {
    min-height: auto;
    padding: 108px 0;
    overflow: hidden;
}

.global-network--static .global-network__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
}

.global-network--static .global-network__layout {
    display: flex;
    height: auto;
    flex-direction: column;
    gap: 40px;
}

.global-network--static .global-network__visual {
    order: -1;
    width: min(100%, 820px);
    height: min(70vw, 700px);
    min-height: 520px;
    margin-inline: auto;
}

.global-network--static .global-network__ambient {
    top: 26%;
    right: -12%;
}

.global-network--static .globe-aura {
    left: 50%;
    opacity: 0.9 !important;
    transform: translate(-50%, -50%) scale(1.06) !important;
    will-change: auto;
}

.global-network--static .network-globe-shell {
    left: 50%;
    width: min(84vw, 850px);
    transform: translate3d(-50%, -50%, 0) scale(0.92) rotate(2deg) !important;
    will-change: auto;
}

.global-network--static .route-layer--global { opacity: 0.72 !important; }
.global-network--static .route-layer--dc { opacity: 0.3 !important; }
.global-network--static .route-layer--residential { opacity: 0.42 !important; }
.global-network--static .route-layer--mobile { opacity: 0.36 !important; }
.global-network--static .node-layer--global { opacity: 0.85 !important; }
.global-network--static .node-layer--dc { opacity: 0.48 !important; }
.global-network--static .node-layer--residential { opacity: 0.58 !important; }
.global-network--static .node-layer--mobile { opacity: 0.52 !important; }
.global-network--static .telegram-convergence { opacity: 0.82 !important; }

.global-network--static .telegram-mockup {
    right: 1%;
    bottom: 7%;
    width: 294px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(0.9) !important;
    transform-origin: right bottom;
    will-change: auto;
}

.global-network--static .global-network__story {
    width: 100%;
    height: auto;
    min-height: 0;
}

.global-network--static .global-network__intro {
    position: static;
    margin-bottom: 30px;
}

.global-network--static .global-network__counter {
    display: none;
}

.global-network--static .scene-copy-stack {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.global-network--static .scene-copy,
.global-network--static .scene-copy:first-child {
    max-width: none;
    align-self: stretch;
    grid-area: auto;
    padding: 28px;
    opacity: 1 !important;
    visibility: visible !important;
    background:
        radial-gradient(circle at 92% 10%, rgba(86, 106, 232, 0.1), transparent 34%),
        rgba(14, 16, 42, 0.68);
    border: 1px solid rgba(133, 151, 221, 0.14);
    border-radius: 22px;
    pointer-events: auto;
    transform: none !important;
    will-change: auto;
}

.global-network--static .scene-copy:last-child {
    grid-column: 1 / -1;
}

.global-network--static .scene-copy h2,
.global-network--static .scene-copy--telegram h2 {
    font-size: clamp(32px, 4.2vw, 48px);
}

.global-network--static .global-network__progress {
    display: none;
}

@media (max-width: 900px) {
    :root {
        --anchor-offset: 88px;
    }

    .global-network {
        min-height: auto;
        padding: 88px 0 94px;
        overflow: hidden;
    }

    .global-network__sticky {
        position: relative;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .global-network__layout {
        display: flex;
        height: auto;
        flex-direction: column;
        gap: 28px;
    }

    .global-network__visual {
        order: -1;
        width: min(100%, 760px);
        height: min(76vw, 630px);
        min-height: 480px;
        margin-inline: auto;
    }

    .global-network__ambient {
        top: 250px;
        right: -22%;
        width: 125vw;
        transform: none !important;
    }

    .globe-aura {
        left: 50%;
        width: min(112vw, 760px);
        opacity: 0.88 !important;
        transform: translate(-50%, -50%) !important;
    }

    .network-globe-shell {
        left: 50%;
        width: min(110vw, 760px);
        transform: translate3d(-50%, -50%, 0) scale(0.9) rotate(2deg) !important;
        will-change: auto;
    }

    .route-layer--global { opacity: 0.72 !important; }
    .route-layer--dc { opacity: 0.3 !important; }
    .route-layer--residential { opacity: 0.42 !important; }
    .route-layer--mobile { opacity: 0.36 !important; }
    .node-layer--global { opacity: 0.85 !important; }
    .node-layer--dc { opacity: 0.48 !important; }
    .node-layer--residential { opacity: 0.58 !important; }
    .node-layer--mobile { opacity: 0.52 !important; }
    .telegram-convergence { opacity: 0.82 !important; }

    .telegram-mockup {
        right: 1%;
        bottom: 5%;
        width: 258px;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(0.86) !important;
        transform-origin: right bottom;
        will-change: auto;
    }

    .global-network__story {
        width: 100%;
        height: auto;
        min-height: 0;
        justify-content: flex-start;
    }

    .global-network__intro {
        position: static;
        margin-bottom: 28px;
    }

    .global-network__counter {
        display: none;
    }

    .scene-copy-stack {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .scene-copy,
    .scene-copy:first-child {
        max-width: none;
        align-self: stretch;
        grid-area: auto;
        padding: 24px;
        opacity: 1 !important;
        visibility: visible !important;
        background:
            radial-gradient(circle at 92% 10%, rgba(86, 106, 232, 0.1), transparent 34%),
            rgba(14, 16, 42, 0.64);
        border: 1px solid rgba(133, 151, 221, 0.14);
        border-radius: 20px;
        pointer-events: auto;
        transform: none !important;
        will-change: auto;
    }

    .scene-copy:last-child {
        grid-column: 1 / -1;
    }

    .scene-copy h2,
    .scene-copy--telegram h2 {
        margin-bottom: 15px;
        font-size: clamp(28px, 4.7vw, 36px);
        letter-spacing: -0.05em;
    }

    .scene-copy > p {
        font-size: 14px;
    }

    .global-network__progress,
    .global-network__legend {
        display: none;
    }
}

@media (max-width: 760px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-card:last-child {
        min-height: 274px;
        grid-column: auto;
        padding: 24px;
    }

    .js .contact-card[data-reveal].is-visible {
        transform: translate3d(0, var(--card-lift), 0);
    }
}

@media (max-width: 600px) {
    .global-network,
    .global-network--static {
        padding: 80px 0 88px;
    }

    .global-network__layout,
    .global-network--static .global-network__layout {
        gap: 24px;
    }

    .global-network__visual,
    .global-network--static .global-network__visual {
        width: calc(100% + 8px);
        height: 400px;
        min-height: 0;
        margin-inline: -4px;
    }

    .network-globe-shell,
    .global-network--static .network-globe-shell {
        width: min(124vw, 520px);
        transform: translate3d(-50%, -50%, 0) scale(0.84) rotate(2deg) !important;
    }

    .network-node--detail,
    .network-route--detail {
        display: none;
    }

    .telegram-mockup,
    .global-network--static .telegram-mockup {
        right: -10px;
        bottom: -2px;
        width: 216px;
        transform: scale(0.76) !important;
    }

    .telegram-mockup::before {
        left: -42px;
        width: 50px;
    }

    .scene-copy-stack,
    .global-network--static .scene-copy-stack {
        grid-template-columns: 1fr;
    }

    .scene-copy:last-child,
    .global-network--static .scene-copy:last-child {
        grid-column: auto;
    }

    .scene-copy h2,
    .scene-copy--telegram h2,
    .global-network--static .scene-copy h2,
    .global-network--static .scene-copy--telegram h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .scene-flow {
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 20px;
        font-size: 10px;
    }

    .scene-flow li:not(:last-child)::after {
        width: 12px;
    }

    .scene-copy__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .js .contact-card[data-reveal].is-visible {
        transform: none;
    }
}
