:root {
    --bg: #060914;
    --bg-soft: #0a1020;
    --panel: rgba(13, 20, 39, .82);
    --panel-strong: rgba(15, 23, 45, .96);
    --panel-light: rgba(255, 255, 255, .045);
    --text: #f5f7ff;
    --muted: #a8b2cc;
    --line: rgba(146, 173, 226, .16);
    --line-strong: rgba(105, 222, 255, .34);
    --cyan: #64ddff;
    --cyan-soft: #8ee9ff;
    --violet: #8c6dff;
    --green: #63efb0;
    --danger: #ff728d;
    --shadow: 0 30px 90px rgba(0, 0, 0, .38);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { color: inherit; }

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

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -2;
    background:
        radial-gradient(circle at 12% 2%, rgba(53, 183, 239, .16), transparent 34%),
        radial-gradient(circle at 88% 9%, rgba(124, 84, 255, .15), transparent 32%),
        linear-gradient(180deg, #080d1a 0%, #060914 38%, #070b17 100%);
}
.ambient-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(rgba(102, 220, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 220, 255, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
}
.ambient-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .16;
    animation: ambientFloat 16s ease-in-out infinite alternate;
}
.ambient-glow-a { left: -180px; top: 20%; background: #33c9ff; }
.ambient-glow-b { right: -160px; top: 38%; background: #7654ff; animation-delay: -7s; }
@keyframes ambientFloat { to { transform: translate3d(55px, -35px, 0) scale(1.08); } }

.cursor-light {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(81, 211, 255, .09), transparent 68%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity .25s ease;
}
body.has-pointer .cursor-light { opacity: 1; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(6, 9, 20, .86);
    border-color: var(--line);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    border: 1px solid rgba(100, 221, 255, .26);
    background: linear-gradient(145deg, rgba(100, 221, 255, .12), rgba(140, 109, 255, .11));
    box-shadow: inset 0 0 18px rgba(100, 221, 255, .08), 0 12px 35px rgba(33, 113, 164, .14);
}
.brand-mark img { width: 26px; height: 26px; }
.brand-copy { display: grid; line-height: 1.12; }
.brand-copy strong { font-size: 16px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 11px; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.main-nav > a:not(.button) {
    color: #c5cce0;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}
.main-nav > a:not(.button):hover { color: #fff; }
.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .045);
}
.menu-button span { display: block; height: 2px; margin: 4px 0; border-radius: 2px; background: #fff; }

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: #06101a;
    background: linear-gradient(135deg, #7ee7ff, #77c8ff 42%, #a691ff);
    box-shadow: 0 16px 38px rgba(78, 183, 238, .23);
}
.button-primary:hover { box-shadow: 0 20px 45px rgba(78, 183, 238, .32); }
.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .04);
    color: #f5f7ff;
}
.button-ghost:hover { border-color: var(--line-strong); background: rgba(100, 221, 255, .07); }
.button-small { min-height: 40px; padding-inline: 16px; border-radius: 12px; }
.button-large { min-height: 54px; padding-inline: 24px; }

.hero {
    min-height: calc(100vh - 76px);
    padding-block: 72px 74px;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    align-items: center;
    gap: 64px;
}
.hero-copy { min-width: 0; }
.status-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(99, 239, 176, .2);
    border-radius: 999px;
    color: #c9ffe7;
    background: rgba(99, 239, 176, .06);
    font-size: 12px;
    font-weight: 750;
}
.status-pill i,
.online-chip i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 16px rgba(99, 239, 176, .8);
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse { 50% { opacity: .45; transform: scale(.82); } }
.hero h1 {
    max-width: 700px;
    margin: 24px 0 20px;
    font-size: clamp(46px, 5vw, 78px);
    line-height: .98;
    letter-spacing: -.058em;
}
.hero h1 span {
    display: block;
    margin-top: 9px;
    color: transparent;
    background: linear-gradient(90deg, #69dcff, #9f8aff 82%);
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-text {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
    max-width: 520px;
}
.hero-facts span {
    padding: 15px 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
}
.hero-facts b { display: block; font-size: 19px; }
.hero-facts small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }

.route-panel {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(119, 165, 224, .2);
    border-radius: var(--radius-xl);
    background: linear-gradient(150deg, rgba(18, 28, 54, .9), rgba(7, 12, 27, .92));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .05);
    overflow: hidden;
}
.panel-head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 6px 15px;
    border-bottom: 1px solid var(--line);
}
.panel-head > div { display: grid; gap: 4px; }
.panel-head small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.panel-head strong { font-size: 15px; }
.online-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(99, 239, 176, .07);
    color: #c5ffe3;
    font-size: 11px;
    font-weight: 800;
}

.flow-layout {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(170px, 1fr) 164px;
    align-items: stretch;
    gap: 14px;
    min-height: 310px;
    padding-block: 18px 14px;
}
.flow-layout::before,
.flow-layout::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 221, 255, .55), transparent);
    pointer-events: none;
}
.flow-layout::before { left: 139px; width: 74px; }
.flow-layout::after { right: 153px; width: 74px; }
.flow-devices {
    display: grid;
    align-content: center;
    gap: 9px;
}
.device-item {
    width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: 33px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: center;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: left;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.device-item:hover { transform: translateX(3px); border-color: rgba(100, 221, 255, .3); }
.device-item.is-active { border-color: rgba(100, 221, 255, .42); background: rgba(100, 221, 255, .08); }
.device-item b { font-size: 12px; }
.device-item small { color: var(--muted); font-size: 10px; }
.device-icon { grid-row: 1 / 3; width: 31px; height: 31px; border-radius: 9px; border: 1px solid rgba(100, 221, 255, .23); position: relative; background: rgba(100, 221, 255, .05); }
.device-phone::before { content: ""; position: absolute; inset: 6px 9px; border: 1.5px solid var(--cyan); border-radius: 3px; }
.device-phone::after { content: ""; position: absolute; width: 4px; height: 1.5px; bottom: 7px; left: 13px; background: var(--cyan); border-radius: 2px; }
.device-screen::before { content: ""; position: absolute; inset: 7px 5px 10px; border: 1.5px solid var(--cyan); border-radius: 2px; }
.device-screen::after { content: ""; position: absolute; width: 12px; height: 1.5px; bottom: 6px; left: 9px; background: var(--cyan); }
.device-router::before { content: ""; position: absolute; left: 6px; right: 6px; bottom: 7px; height: 8px; border: 1.5px solid var(--cyan); border-radius: 3px; }
.device-router::after { content: "• •"; position: absolute; left: 9px; bottom: 6px; color: var(--cyan); font-size: 8px; letter-spacing: 2px; }

.route-core {
    position: relative;
    min-width: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 6px;
    padding: 22px;
    border: 1px solid rgba(100, 221, 255, .22);
    border-radius: 22px;
    background:
        radial-gradient(circle at center, rgba(100, 221, 255, .11), transparent 56%),
        rgba(255, 255, 255, .027);
    overflow: hidden;
}
.route-core::before {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px dashed rgba(100, 221, 255, .19);
    border-radius: 50%;
    animation: coreRotate 18s linear infinite;
}
.route-core img { position: relative; z-index: 2; width: 74px; height: 74px; filter: drop-shadow(0 0 20px rgba(100, 221, 255, .26)); }
.route-core strong { position: relative; z-index: 2; margin-top: 6px; font-size: 16px; }
.route-core small { position: relative; z-index: 2; color: var(--muted); font-size: 10px; }
.core-pulse { position: absolute; inset: 27%; border: 1px solid rgba(100, 221, 255, .28); border-radius: 50%; animation: corePulse 2.8s ease-out infinite; }
.core-pulse-b { animation-delay: 1.4s; }
@keyframes corePulse { 0% { opacity: .65; transform: scale(.58); } 100% { opacity: 0; transform: scale(1.9); } }
@keyframes coreRotate { to { transform: rotate(360deg); } }

.active-location {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .035);
    text-align: center;
}
.location-flag {
    width: 58px;
    height: 42px;
    padding: 5px;
    border-radius: 11px;
    border: 1px solid rgba(100, 221, 255, .25);
    background: #07101e;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}
.location-flag img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.active-location > small { margin-top: 15px; color: var(--cyan); font-weight: 850; letter-spacing: .12em; }
.active-location > strong { margin-top: 4px; font-size: 17px; }
.active-location > p { min-height: 30px; margin: 7px 0 12px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.signal { display: flex; align-items: end; gap: 3px; height: 20px; }
.signal i { width: 4px; border-radius: 4px; background: linear-gradient(to top, var(--cyan), var(--violet)); animation: signalWave 1.1s ease-in-out infinite alternate; }
.signal i:nth-child(1) { height: 6px; }
.signal i:nth-child(2) { height: 10px; animation-delay: .12s; }
.signal i:nth-child(3) { height: 15px; animation-delay: .24s; }
.signal i:nth-child(4) { height: 20px; animation-delay: .36s; }
@keyframes signalWave { to { opacity: .42; transform: scaleY(.72); transform-origin: bottom; } }
.data-packet {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(100, 221, 255, .65);
    pointer-events: none;
    opacity: 0;
    z-index: 5;
}
.route-selector {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.route-option {
    min-width: 0;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.route-option:hover { transform: translateY(-2px); }
.route-option.is-active { border-color: rgba(100, 221, 255, .36); background: rgba(100, 221, 255, .09); }
.route-option img { width: 25px; height: 18px; object-fit: contain; border-radius: 4px; }
.route-option span { font-size: 11px; font-weight: 900; }

.country-strip {
    position: relative;
    padding-block: 16px;
    border-block: 1px solid var(--line);
    background: rgba(5, 9, 20, .64);
    overflow: hidden;
}
.country-strip::before,
.country-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}
.country-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.country-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee { overflow: hidden; }
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-group { display: flex; gap: 12px; padding-right: 12px; }
.country-pill {
    flex: 0 0 auto;
    min-width: 185px;
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
}
.country-pill img { width: 29px; height: 21px; object-fit: contain; border-radius: 4px; }
.country-pill b { font-size: 12px; white-space: nowrap; }
.country-pill span { margin-left: auto; color: var(--green); font-size: 9px; font-weight: 900; text-transform: uppercase; }

.section { padding-block: 100px; }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading > span,
.steps-copy > span,
.final-cta > div > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-heading h2,
.steps-copy h2,
.final-cta h2 {
    margin: 12px 0 13px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}
.section-heading p,
.steps-copy p,
.final-cta p { margin: 0; color: var(--muted); line-height: 1.7; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.feature-card {
    min-width: 0;
    min-height: 290px;
    position: relative;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(16, 25, 47, .78), rgba(8, 13, 27, .76));
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(100, 221, 255, .3); }
.feature-number { position: absolute; right: 22px; top: 18px; color: rgba(255,255,255,.12); font-size: 28px; font-weight: 900; }
.feature-icon { width: 54px; height: 54px; margin-bottom: 48px; border: 1px solid rgba(100, 221, 255, .25); border-radius: 16px; background: rgba(100, 221, 255, .06); position: relative; }
.feature-card h3 { margin: 0 0 10px; font-size: 21px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.feature-icon-route::before { content: ""; position: absolute; left: 11px; right: 11px; top: 26px; height: 1px; background: var(--cyan); transform: rotate(-25deg); }
.feature-icon-route::after { content: ""; position: absolute; width: 8px; height: 8px; left: 11px; top: 32px; border-radius: 50%; background: var(--cyan); box-shadow: 25px -12px 0 var(--violet); }
.feature-icon-devices::before { content: ""; position: absolute; left: 9px; top: 12px; width: 15px; height: 27px; border: 1.5px solid var(--cyan); border-radius: 4px; }
.feature-icon-devices::after { content: ""; position: absolute; right: 8px; top: 15px; width: 22px; height: 15px; border: 1.5px solid var(--violet); border-radius: 3px; box-shadow: 0 8px 0 -6px var(--violet); }
.feature-icon-support::before { content: ""; position: absolute; inset: 12px; border: 1.5px solid var(--cyan); border-radius: 50%; }
.feature-icon-support::after { content: "?"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--cyan); font-weight: 900; }

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.location-card {
    min-width: 0;
    min-height: 112px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 255, 255, .035);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.location-card:hover { transform: translateY(-3px); border-color: rgba(100, 221, 255, .28); }
.location-card.is-active { border-color: rgba(100, 221, 255, .46); background: linear-gradient(130deg, rgba(100, 221, 255, .09), rgba(140, 109, 255, .06)); }
.location-card-flag { width: 58px; height: 42px; display: grid; place-items: center; padding: 5px; border-radius: 11px; background: #07101e; border: 1px solid rgba(100, 221, 255, .18); }
.location-card-flag img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; }
.location-card-copy { min-width: 0; display: grid; }
.location-card-copy small { color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.location-card-copy strong { margin-top: 3px; font-size: 15px; }
.location-card-copy span { margin-top: 5px; overflow: hidden; color: var(--muted); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.location-card-status { color: var(--green); font-size: 9px; font-weight: 900; font-style: normal; text-transform: uppercase; }

.steps-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 55px;
    padding: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(17, 28, 53, .82), rgba(9, 14, 29, .82));
}
.steps-list { display: grid; gap: 12px; }
.steps-list article {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
}
.steps-list article > b { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: #07101a; background: linear-gradient(135deg, var(--cyan), #9c8bff); }
.steps-list article div { min-width: 0; display: grid; gap: 4px; }
.steps-list article strong { font-size: 14px; }
.steps-list article span { color: var(--muted); font-size: 11px; }

.plan-grid { display: grid; gap: 16px; align-items: stretch; }
.plan-grid-1 { max-width: 480px; grid-template-columns: 1fr; }
.plan-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.plan-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plan-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(16, 25, 47, .78), rgba(8, 13, 27, .8));
}
.plan-card.is-featured { border-color: rgba(100, 221, 255, .45); box-shadow: 0 26px 65px rgba(58, 165, 224, .13); }
.plan-label { position: absolute; right: 22px; top: 18px; padding: 7px 10px; border-radius: 999px; color: #07101a; background: var(--cyan); font-size: 9px; font-weight: 950; text-transform: uppercase; }
.plan-head > span { color: var(--cyan); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.plan-head h3 { margin: 12px 0 18px; font-size: 26px; }
.plan-head p { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.plan-head p strong { font-size: 37px; letter-spacing: -.04em; }
.plan-head p small { color: var(--muted); }
.plan-card ul { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; color: #d9deec; }
.plan-card li { position: relative; padding-left: 22px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plan-card .button { margin-top: auto; }
.plans-empty { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.035); }
.plans-empty h3 { margin: 0 0 10px; }
.plans-empty p { color: var(--muted); }

.final-cta {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 38px;
    border: 1px solid rgba(100, 221, 255, .28);
    border-radius: var(--radius-xl);
    background: linear-gradient(125deg, rgba(100, 221, 255, .095), rgba(140, 109, 255, .08), rgba(9, 14, 29, .9));
}
.final-mark { width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid rgba(100, 221, 255, .24); border-radius: 24px; background: rgba(4, 11, 23, .5); }
.final-mark img { width: 48px; height: 48px; }
.final-cta h2 { font-size: clamp(28px, 3vw, 42px); }

.site-footer { margin-top: 40px; border-top: 1px solid var(--line); background: rgba(4, 7, 15, .72); }
.footer-inner { min-height: 190px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand strong { font-size: 16px; }
.footer-brand p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #bdc6dc; text-decoration: none; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line); color: #7f8aa5; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Legal and about pages */
.legal-body { min-height: 100vh; background: var(--bg); }
.site-header.compact { position: sticky; background: rgba(6,9,20,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.site-header.compact,
.site-footer { padding-inline: max(20px, calc((100vw - var(--shell)) / 2)); }
.site-header.compact { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.desktop-nav { display: flex; align-items: center; gap: 18px; }
.desktop-nav a:not(.button) { color: #c4ccde; text-decoration: none; font-size: 13px; }
.legal-shell { width: min(calc(100% - 40px), 900px); margin: 0 auto; padding: 70px 0 100px; }
.legal-document { padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(12, 19, 37, .8); box-shadow: var(--shadow); }
.legal-heading { margin-bottom: 42px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-heading h1 { margin: 12px 0; font-size: clamp(34px, 5vw, 54px); line-height: 1.05; letter-spacing: -.045em; }
.legal-heading p, .legal-document p, .legal-document li { color: var(--muted); line-height: 1.75; }
.legal-document section + section { margin-top: 40px; }
.legal-document h2 { margin: 0 0 14px; font-size: 24px; }
.legal-document h3 { margin-top: 25px; }
.legal-document a { color: var(--cyan-soft); }
.back-link { text-decoration: none; }
.eyebrow { color: var(--cyan) !important; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.legal-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.legal-info-card { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.035); }
.legal-info-card p { margin-bottom: 0; }
.document-links { display: grid; gap: 10px; }
.document-links a { display: grid; gap: 5px; padding: 17px; border: 1px solid var(--line); border-radius: 15px; text-decoration: none; background: rgba(255,255,255,.03); }
.document-links a span { color: var(--muted); font-size: 12px; }
.legal-details { display: grid; gap: 8px; }
.legal-details > div { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.legal-details dt { color: var(--muted); }
.legal-details dd { margin: 0; }
.legal-body > .site-footer { padding-block: 40px; display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.legal-body > .site-footer p { color: var(--muted); }
.legal-body .footer-meta { grid-column: auto; border: 0; padding: 0; gap: 18px; }

@media (max-width: 1080px) {
    .hero { grid-template-columns: 1fr; min-height: auto; gap: 42px; padding-top: 58px; }
    .hero-copy { max-width: 790px; }
    .route-panel { width: 100%; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .feature-card:last-child { grid-column: 1 / -1; }
    .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .main-nav { gap: 14px; }
    .main-nav > a:not(.button) { display: none; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 24px), var(--shell)); }
    .header-inner { min-height: 68px; }
    .brand-copy small { display: none; }
    .menu-button { display: block; }
    .main-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 76px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(8, 13, 27, .98);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav > a:not(.button) { display: block; padding: 12px 10px; }
    .main-nav .button { width: 100%; }

    .hero { padding: 42px 0 52px; gap: 32px; }
    .hero h1 { font-size: clamp(39px, 12vw, 58px); }
    .hero-text { font-size: 16px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .button { width: 100%; }
    .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
    .hero-facts span { padding: 12px 9px; text-align: center; }
    .hero-facts b { font-size: 16px; }

    .route-panel { padding: 13px; border-radius: 22px; }
    .panel-head { align-items: flex-start; }
    .panel-head strong { font-size: 13px; }
    .online-chip { padding: 7px 9px; }
    .flow-layout {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 10px;
        padding-block: 12px;
    }
    .flow-layout::before,
    .flow-layout::after { display: none; }
    .flow-devices { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
    .device-item {
        min-height: 68px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 8px 5px;
        text-align: center;
    }
    .device-item b { font-size: 10px; }
    .device-item small { display: none; }
    .device-icon { width: 28px; height: 28px; }
    .route-core { min-height: 190px; }
    .route-core img { width: 62px; height: 62px; }
    .active-location { min-height: 170px; }
    .data-packet { display: none; }
    .route-selector { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .route-option { min-height: 43px; }

    .country-strip::before,
    .country-strip::after { width: 38px; }
    .country-pill { min-width: 170px; }

    .section { padding-block: 70px; }
    .section-heading { margin-bottom: 28px; }
    .feature-grid,
    .location-grid,
    .plan-grid-2,
    .plan-grid-3 { grid-template-columns: 1fr; }
    .feature-card:last-child { grid-column: auto; }
    .feature-card { min-height: auto; }
    .feature-icon { margin-bottom: 36px; }
    .location-card { grid-template-columns: 54px minmax(0, 1fr); }
    .location-card-status { display: none; }
    .steps-card { grid-template-columns: 1fr; gap: 28px; padding: 26px; }
    .final-cta { grid-template-columns: 58px minmax(0, 1fr); padding: 25px; }
    .final-mark { width: 58px; height: 58px; border-radius: 17px; }
    .final-mark img { width: 34px; height: 34px; }
    .final-cta .button { grid-column: 1 / -1; width: 100%; }

    .footer-inner { grid-template-columns: 1fr; padding-block: 50px; }
    .footer-links { justify-content: flex-start; }
    .footer-meta { display: grid; gap: 7px; }

    .site-header.compact { padding-inline: 12px; }
    .site-header.compact .desktop-nav { display: none; }
    .legal-shell { width: min(calc(100% - 24px), 900px); padding-top: 35px; }
    .legal-document { padding: 24px; border-radius: 20px; }
    .legal-card-grid { grid-template-columns: 1fr; }
    .legal-details > div { grid-template-columns: 1fr; gap: 5px; }
    .legal-body > .site-footer { align-items: flex-start; flex-direction: column; padding-inline: 20px; }
}

@media (max-width: 420px) {
    .hero-facts { grid-template-columns: 1fr; }
    .hero-facts span { display: flex; justify-content: space-between; align-items: center; text-align: left; }
    .hero-facts small { margin: 0; }
    .route-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .flow-devices { grid-template-columns: 1fr; }
    .device-item { min-height: 52px; flex-direction: row; justify-content: flex-start; padding-inline: 12px; }
    .device-item small { display: block; margin-left: auto; }
}

@media (hover: none), (pointer: coarse) {
    .cursor-light { display: none; }
    .feature-card:hover,
    .location-card:hover,
    .route-option:hover,
    .button:hover,
    .device-item:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
    .cursor-light, .data-packet { display: none; }
}
