:root {
  --bg: #05080d;
  --bg-blue: #07131e;
  --surface: #0d1723;
  --surface-2: #111e2c;
  --surface-3: #142435;
  --line: #223448;
  --line-soft: rgba(148, 164, 184, .14);
  --text: #f5f7fa;
  --muted: #94a4b8;
  --muted-2: #7c8da1;
  --orange: #ff7a00;
  --orange-light: #ffb21a;
  --cyan: #28c7fa;
  --cyan-light: #75e4ff;
  --green: #35d39a;
  --risk: #ff5573;
  --container: 1280px;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --font: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", "Microsoft YaHei UI", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 28%, rgba(40, 199, 250, .07), transparent 27rem),
    radial-gradient(circle at 91% 72%, rgba(255, 122, 0, .06), transparent 30rem),
    var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

html[lang="ru"] body { hyphens: auto; }
html[lang="ru"] .hero h1 { font-size: clamp(3rem, 5.55vw, 6.15rem); }
html[lang="ru"] .primary-nav a, html[lang="ru"] .panel-link, html[lang="ru"] .button-small { font-size: .73rem; }
html[lang="ru"] .button, html[lang="ru"] h1, html[lang="ru"] h2, html[lang="ru"] h3 { overflow-wrap: anywhere; }
html[lang="zh-CN"] body { line-height: 1.75; }
html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3 { letter-spacing: -.02em; }
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .mini-label,
html[lang="zh-CN"] .brand-copy small,
html[lang="zh-CN"] .map-node,
html[lang="zh-CN"] .orbit-node { letter-spacing: .08em; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #07101a; background: var(--orange-light); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 15px;
  border-radius: 8px;
  color: #061019;
  background: var(--cyan-light);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: .11;
  background: radial-gradient(circle, rgba(40, 199, 250, .5), transparent 67%);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 50vh) - 50%), 0);
  transition: opacity .3s ease;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.centered { text-align: center; margin-inline: auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.centered .eyebrow, .final-inner .eyebrow { justify-content: center; }
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(40, 199, 250, .1), 0 0 18px var(--cyan);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: .99;
  font-weight: 780;
}
h2 span, h1 span { color: var(--orange-light); }
h3 { line-height: 1.16; font-weight: 720; }
p { color: var(--muted); }

.section-intro { max-width: 850px; margin-bottom: 70px; }
.section-intro.centered { max-width: 890px; }
.section-intro > p:last-child, .section-heading > p { max-width: 690px; font-size: clamp(1.03rem, 1.6vw, 1.2rem); }
.section-intro.centered > p:last-child { margin-inline: auto; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 66px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 4px; }

.mini-label {
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mini-label.risk { color: var(--risk); }
.mini-label.safe { color: var(--green); }

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid rgba(255, 178, 26, .45);
  border-radius: 12px;
  color: #120b02;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  box-shadow: 0 10px 36px rgba(255, 122, 0, .2), inset 0 1px rgba(255, 255, 255, .36);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, #ffd15c, #ff8c13);
  transition: opacity .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255, 122, 0, .29), inset 0 1px rgba(255, 255, 255, .36); }
.button:hover::before { opacity: 1; }
.button svg, .text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .79rem; }
.button-large { min-height: 57px; padding-inline: 27px; border-radius: 14px; }
.button-full { width: 100%; }
.button-ghost {
  border-color: rgba(117, 228, 255, .24);
  color: var(--text);
  background: rgba(9, 20, 31, .6);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}
.button-ghost::before { background: rgba(40, 199, 250, .08); }
.button-ghost:hover { border-color: rgba(117, 228, 255, .48); box-shadow: 0 16px 42px rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .06); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, select:focus-visible { outline: 3px solid var(--cyan-light); outline-offset: 4px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(148, 164, 184, .13);
  background: rgba(5, 8, 13, .84);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px) saturate(135%);
}
.nav-shell {
  width: min(1500px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  width: 55px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 178, 26, .18);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255, 122, 0, .1), rgba(40, 199, 250, .05));
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}
.brand-mark img { width: 43px; height: auto; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: .95rem; letter-spacing: .04em; }
.brand-copy small { margin-top: 5px; color: var(--muted-2); font-family: var(--mono); font-size: .52rem; letter-spacing: .2em; }
.primary-nav { display: flex; align-items: center; gap: clamp(14px, 1.4vw, 26px); margin-left: auto; }
.primary-nav a, .panel-link { position: relative; color: #b1bdcb; font-size: .79rem; font-weight: 650; white-space: nowrap; transition: color .2s ease; }
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav a:hover, .primary-nav a.is-active, .panel-link:hover { color: #fff; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.language-menu {
  position: relative;
  min-width: 132px;
}
.language-menu summary {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(117, 228, 255, .2);
  border-radius: 10px;
  color: #d9e4ee;
  background: rgba(8, 18, 28, .72);
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::marker { content: ""; }
.language-menu:hover summary,
.language-menu[open] summary,
.language-menu summary:focus-visible {
  border-color: rgba(117, 228, 255, .48);
  background: rgba(11, 25, 38, .94);
  box-shadow: 0 0 24px rgba(40, 199, 250, .08);
  outline: none;
}
.language-menu summary > svg:first-of-type { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--cyan-light); stroke-width: 1.6; }
.language-chevron { width: 13px; height: 13px; flex: 0 0 auto; fill: none; stroke: #8fa2b7; stroke-width: 1.8; transition: transform .2s ease; }
.language-menu[open] .language-chevron { transform: rotate(180deg); }
.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 220px;
  max-width: calc(100vw - 30px);
  gap: 3px;
  padding: 7px;
  border: 1px solid rgba(117, 228, 255, .22);
  border-radius: 12px;
  background: rgba(7, 15, 24, .98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .48), 0 0 25px rgba(40, 199, 250, .06);
  backdrop-filter: blur(18px);
}
.language-options a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #c1ceda;
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .05em;
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}
.language-options a:hover,
.language-options a:focus-visible { color: #fff; background: rgba(40, 199, 250, .1); outline: none; }
.language-options a[aria-current="page"] { color: var(--orange-light); background: rgba(255, 122, 0, .1); }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 880px;
  align-items: stretch;
  overflow: hidden;
  background: #050a11;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 31%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #050a11 0%, rgba(5, 10, 17, .93) 25%, rgba(5, 10, 17, .31) 58%, rgba(5, 10, 17, .08) 100%),
    linear-gradient(180deg, rgba(5, 8, 13, .36), transparent 28%, rgba(5, 8, 13, .28));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; opacity: .86; }
.hero-grid, .map-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(117, 228, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(117, 228, 255, .12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, transparent 10%, #000 45%, transparent 95%);
}
.hero-orb { position: absolute; z-index: 1; width: 24rem; height: 24rem; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-cyan { top: 10%; right: 7%; background: rgba(40, 199, 250, .07); }
.hero-orb-orange { right: 22%; bottom: 4%; background: rgba(255, 122, 0, .08); }
.hero-layout { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, .98fr) minmax(360px, .55fr); gap: 48px; align-items: center; padding: 150px 0 170px; }
.hero-copy { max-width: 870px; }
.hero h1 {
  max-width: 910px;
  margin: 0 0 30px;
  font-size: clamp(3.4rem, 6.35vw, 6.9rem);
  line-height: .91;
  font-weight: 790;
  text-wrap: balance;
}
.hero h1 span { color: var(--text); text-shadow: 0 0 42px rgba(255, 178, 26, .18); }
.hero h1 .hero-accent { color: var(--orange-light); }
.hero-lead { max-width: 710px; margin-bottom: 36px; color: #acbac9; font-size: clamp(1.04rem, 1.45vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.service-chips span { display: flex; align-items: center; gap: 8px; color: #7f91a5; font-family: var(--mono); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.service-chips i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-console {
  align-self: end;
  margin-bottom: 78px;
  border: 1px solid rgba(117, 228, 255, .19);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 18, 28, .88), rgba(10, 22, 34, .6));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(22px);
}
.console-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 17px; border-bottom: 1px solid var(--line-soft); }
.console-title { display: flex; align-items: center; gap: 9px; color: #c7d4e0; font-family: var(--mono); font-size: .62rem; font-weight: 800; letter-spacing: .09em; }
.console-title img { width: 28px; height: auto; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; border: 1px solid rgba(53, 211, 154, .25); border-radius: 999px; color: var(--green); background: rgba(53, 211, 154, .06); font-family: var(--mono); font-size: .56rem; font-style: normal; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.live-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.console-route { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 7px; padding: 24px 17px 18px; }
.route-node { display: grid; min-width: 54px; height: 54px; place-items: center; padding: 0 6px; border: 1px solid rgba(117, 228, 255, .18); border-radius: 50%; color: #bdcada; background: #0c1722; font-family: var(--mono); font-size: .48rem; font-weight: 800; text-transform: uppercase; box-shadow: 0 0 25px rgba(40, 199, 250, .06); }
.route-edge { border-color: rgba(40, 199, 250, .5); color: var(--cyan-light); box-shadow: 0 0 30px rgba(40, 199, 250, .13); }
.route-origin { border-color: rgba(255, 178, 26, .47); color: var(--orange-light); box-shadow: 0 0 30px rgba(255, 122, 0, .12); }
.route-line { position: relative; height: 1px; overflow: hidden; background: rgba(117, 228, 255, .2); }
.route-line i { position: absolute; top: -1px; left: -12px; width: 10px; height: 3px; border-radius: 3px; background: var(--cyan-light); box-shadow: 0 0 9px var(--cyan); animation: packet 2.3s linear infinite; }
.route-line:nth-of-type(4) i { animation-delay: 1.1s; }
.console-data { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-soft); }
.console-data div { display: grid; gap: 2px; padding: 14px 12px; border-right: 1px solid var(--line-soft); }
.console-data div:last-child { border-right: 0; }
.console-data span { color: var(--muted-2); font-family: var(--mono); font-size: .5rem; letter-spacing: .12em; }
.console-data strong { color: #d8e3ed; font-family: var(--mono); font-size: .65rem; letter-spacing: .06em; }
.hero-metrics { position: absolute; right: 0; bottom: 0; left: 0; z-index: 4; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(148, 164, 184, .17); border-bottom: 1px solid rgba(148, 164, 184, .1); background: rgba(5, 8, 13, .46); backdrop-filter: blur(12px); }
.metrics-grid article { display: flex; min-height: 112px; align-items: center; gap: 15px; padding: 23px clamp(14px, 2vw, 29px); border-right: 1px solid rgba(148, 164, 184, .13); }
.metrics-grid article:last-child { border: 0; }
.metrics-grid strong { color: var(--orange-light); font-family: var(--mono); font-size: clamp(1.55rem, 2.6vw, 2.35rem); line-height: 1; letter-spacing: -.07em; white-space: nowrap; }
.metrics-grid span { color: #98a8b9; font-size: .79rem; line-height: 1.4; }

/* Problem and interactive map */
.problem { overflow: hidden; }
.problem::before { content: ""; position: absolute; top: 9%; left: 50%; width: 50rem; height: 38rem; border-radius: 50%; background: rgba(40, 199, 250, .035); filter: blur(100px); transform: translateX(-50%); }
.compare-card { position: relative; max-width: 1100px; min-height: 560px; margin: 0 auto; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(140deg, rgba(17, 30, 44, .82), rgba(6, 13, 21, .9)); box-shadow: var(--shadow); }
.compare-controls { position: absolute; top: 25px; left: 50%; z-index: 5; display: flex; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(5, 8, 13, .78); transform: translateX(-50%); backdrop-filter: blur(10px); }
.compare-controls button { min-height: 42px; padding: 0 21px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font-size: .76rem; font-weight: 800; cursor: pointer; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.compare-controls button[aria-selected="true"] { color: #071019; background: var(--cyan-light); box-shadow: 0 7px 22px rgba(40, 199, 250, .18); }
.compare-card[data-comparison="direct"] .compare-controls button[aria-selected="true"] { color: #fff; background: var(--risk); box-shadow: 0 7px 22px rgba(255, 85, 115, .17); }
.connection-map { position: absolute; inset: 0 0 146px; overflow: hidden; }
.map-grid { opacity: .22; mask-image: radial-gradient(circle, #000 18%, transparent 72%); }
.map-node { position: absolute; z-index: 3; display: grid; justify-items: center; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .12em; transition: left .7s cubic-bezier(.2,.8,.2,1), opacity .35s ease, transform .35s ease; }
.map-icon { display: grid; width: 82px; height: 82px; place-items: center; border: 1px solid rgba(117, 228, 255, .34); border-radius: 50%; color: var(--cyan-light); background: #0c1925; box-shadow: 0 0 0 10px rgba(40, 199, 250, .025), 0 0 42px rgba(40, 199, 250, .1); font-size: 1rem; letter-spacing: -.03em; }
.map-player { top: 50%; left: 12%; transform: translateY(-50%); }
.map-edge { top: 50%; left: 46%; transform: translate(-50%, -50%); }
.map-edge .map-icon { width: 105px; height: 105px; border-color: var(--cyan); color: var(--cyan-light); background: radial-gradient(circle, rgba(40, 199, 250, .18), #09131d 66%); box-shadow: 0 0 0 17px rgba(40, 199, 250, .03), 0 0 68px rgba(40, 199, 250, .15); font-size: 1.25rem; font-weight: 900; }
.map-origin { top: 50%; right: 10%; transform: translateY(-50%); }
.map-origin .map-icon { border-color: var(--orange); color: var(--orange-light); box-shadow: 0 0 0 10px rgba(255, 122, 0, .03), 0 0 46px rgba(255, 122, 0, .16); }
.origin-shield { position: absolute; top: 50%; right: 7.7%; z-index: 2; width: 145px; height: 145px; border: 1px solid rgba(255, 178, 26, .2); border-radius: 50%; box-shadow: inset 0 0 36px rgba(255, 122, 0, .07); transform: translateY(-50%); transition: opacity .35s ease, transform .35s ease; }
.origin-shield::before, .origin-shield::after { content: ""; position: absolute; inset: -16px; border: 1px dashed rgba(255, 178, 26, .1); border-radius: 50%; animation: spin 18s linear infinite; }
.origin-shield::after { inset: 12px; border-style: solid; animation-duration: 12s; animation-direction: reverse; }
.map-link { position: absolute; top: 50%; z-index: 1; height: 2px; overflow: hidden; background: linear-gradient(90deg, rgba(40, 199, 250, .05), var(--cyan), rgba(40, 199, 250, .08)); transform: translateY(-50%); transition: left .7s cubic-bezier(.2,.8,.2,1), width .7s cubic-bezier(.2,.8,.2,1), background .35s ease; }
.map-link i { position: absolute; top: -2px; left: -16px; width: 15px; height: 6px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px 5px var(--cyan); animation: packet 1.9s linear infinite; }
.link-one { left: 20%; width: 21%; }
.link-two { left: 52%; width: 29%; }
.link-two i { animation-delay: .9s; }
.map-attack { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; opacity: 0; background: var(--risk); box-shadow: 0 0 12px var(--risk); transition: opacity .25s ease; }
.attack-a { top: 24%; left: 30%; }
.attack-b { top: 70%; left: 57%; }
.compare-copy { position: absolute; right: 0; bottom: 0; left: 0; min-height: 146px; padding: 27px 34px; border-top: 1px solid var(--line-soft); background: rgba(7, 15, 24, .84); transition: opacity .3s ease, transform .3s ease; backdrop-filter: blur(12px); }
.compare-copy h3 { margin: 0 0 7px; font-size: 1.35rem; }
.compare-copy p:last-child { max-width: 760px; margin: 0; font-size: .94rem; line-height: 1.5; }
.compare-direct { opacity: 0; transform: translateY(15px); pointer-events: none; }
.compare-card[data-comparison="direct"] .compare-direct { opacity: 1; transform: none; pointer-events: auto; }
.compare-card[data-comparison="direct"] .compare-protected { opacity: 0; transform: translateY(15px); pointer-events: none; }
.compare-card[data-comparison="direct"] .map-edge, .compare-card[data-comparison="direct"] .origin-shield { opacity: 0; transform: translate(-50%, -50%) scale(.65); }
.compare-card[data-comparison="direct"] .map-origin { right: 10%; }
.compare-card[data-comparison="direct"] .link-one { left: 20%; width: 62%; background: linear-gradient(90deg, rgba(255,85,115,.05), var(--risk), rgba(255,85,115,.08)); }
.compare-card[data-comparison="direct"] .link-one i { box-shadow: 0 0 12px 5px var(--risk); }
.compare-card[data-comparison="direct"] .link-two { width: 0; opacity: 0; }
.compare-card[data-comparison="direct"] .map-attack { opacity: 1; animation: hostile 1.3s ease-in-out infinite alternate; }
.statement { display: flex; max-width: 920px; align-items: flex-start; gap: 26px; margin: 72px auto 0; padding: 0; border: 0; }
.statement > span { color: rgba(255, 178, 26, .45); font-family: Georgia, serif; font-size: 7rem; line-height: .7; }
.statement p { margin: 0; color: #ccd5df; font-size: clamp(1.65rem, 3.1vw, 3rem); line-height: 1.2; letter-spacing: -.04em; }
.statement strong { color: var(--text); }

/* Bento */
.capabilities { background: linear-gradient(180deg, transparent, rgba(7, 19, 30, .72) 45%, transparent); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento-card { position: relative; min-height: 330px; overflow: hidden; padding: 30px; border: 1px solid rgba(148, 164, 184, .15); border-radius: var(--radius); background: linear-gradient(150deg, rgba(17, 30, 44, .82), rgba(9, 17, 26, .9)); box-shadow: inset 0 1px rgba(255, 255, 255, .025); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.bento-card::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 190px; height: 190px; border-radius: 50%; background: rgba(40, 199, 250, .055); filter: blur(45px); }
.bento-card:hover { border-color: rgba(117, 228, 255, .26); box-shadow: 0 24px 70px rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .035); transform: translateY(-4px); }
.bento-card h3 { max-width: 420px; margin: 0 0 15px; font-size: 1.5rem; }
.bento-card p:last-of-type { margin: 0; font-size: .94rem; }
.bento-feature { grid-column: span 2; min-height: 410px; padding-right: min(43%, 400px); }
.bento-feature h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.card-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 28px; border: 1px solid; border-radius: 14px; }
.card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.orange { border-color: rgba(255, 178, 26, .23); color: var(--orange-light); background: rgba(255, 122, 0, .08); }
.card-icon.cyan { border-color: rgba(117, 228, 255, .22); color: var(--cyan-light); background: rgba(40, 199, 250, .07); }
.privacy-visual { position: absolute; top: 50%; right: 25px; display: grid; width: min(38%, 355px); gap: 18px; place-items: center; transform: translateY(-40%); }
.pv-domain, .pv-origin { width: 100%; padding: 15px; border: 1px solid var(--line); border-radius: 10px; color: #c5d1dd; background: rgba(5, 8, 13, .63); font-family: var(--mono); font-size: .69rem; text-align: center; }
.pv-domain { border-color: rgba(40, 199, 250, .38); color: var(--cyan-light); box-shadow: 0 0 35px rgba(40, 199, 250, .1); }
.pv-origin { border-color: rgba(255, 178, 26, .27); color: var(--orange-light); }
.pv-origin small { margin-right: 8px; color: var(--muted-2); }
.pv-line { position: relative; width: 1px; height: 62px; overflow: hidden; background: linear-gradient(var(--cyan), var(--orange)); }
.pv-line i { position: absolute; top: -8px; left: -2px; width: 5px; height: 9px; border-radius: 4px; background: #fff; box-shadow: 0 0 10px var(--cyan); animation: packet-vertical 2s linear infinite; }

/* Architecture */
.architecture { min-height: 1030px; overflow: hidden; background: #06101a; }
.architecture::before, .architecture::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.architecture::before { background: linear-gradient(90deg, rgba(5, 8, 13, .97) 0%, rgba(5, 8, 13, .83) 39%, rgba(5, 8, 13, .32) 75%, rgba(5, 8, 13, .55)); }
.architecture::after { background: linear-gradient(180deg, var(--bg), transparent 14%, transparent 80%, var(--bg)); }
.architecture-media { position: absolute; inset: 0; }
.architecture-media img { width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.architecture-inner { position: relative; z-index: 2; }
.architecture-copy { max-width: 760px; margin-bottom: 65px; }
.architecture-copy p:last-child { max-width: 650px; font-size: 1.1rem; }
.steps-list { display: grid; max-width: 660px; gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 65px 1fr; gap: 22px; padding: 25px; border: 1px solid rgba(148, 164, 184, .13); border-radius: 18px; background: rgba(7, 15, 24, .7); box-shadow: inset 0 1px rgba(255, 255, 255, .03); backdrop-filter: blur(14px); }
.steps-list h3 { margin: 0 0 8px; font-size: 1.23rem; }
.steps-list p { margin: 0; font-size: .9rem; line-height: 1.5; }
.step-number { display: grid; width: 51px; height: 51px; place-items: center; border: 1px solid rgba(40, 199, 250, .28); border-radius: 13px; color: var(--cyan-light); background: rgba(40, 199, 250, .07); font-family: var(--mono); font-size: .7rem; font-weight: 800; }
.architecture-route { display: flex; max-width: 100%; align-items: center; justify-content: space-between; gap: 12px; margin-top: 75px; padding: 18px 21px; border: 1px solid rgba(117, 228, 255, .18); border-radius: 14px; color: #b9c7d4; background: rgba(5, 8, 13, .72); font-family: var(--mono); font-size: .67rem; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(12px); }
.architecture-route i { position: relative; flex: 1; height: 1px; background: rgba(40, 199, 250, .33); }
.architecture-route i::after { content: ""; position: absolute; top: -2px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-light); box-shadow: 0 0 10px var(--cyan); animation: packet 3s linear infinite; }

/* Anywhere */
.anywhere { overflow: hidden; }
.anywhere-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 90px; align-items: center; }
.anywhere-copy h2 { max-width: 700px; }
.anywhere-copy .lead { max-width: 610px; color: #b2c0ce; font-size: 1.13rem; }
.location-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 32px 0; }
.location-list span { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid var(--line-soft); border-radius: 10px; color: #c0ccd8; background: rgba(13, 23, 35, .58); font-size: .85rem; font-weight: 650; }
.location-list span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(53, 211, 154, .8); }
.fine-print { max-width: 630px; font-size: .8rem; }
.location-orbit { position: relative; min-height: 580px; }
.orbit-ring { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(40, 199, 250, .15); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-ring-one { width: 450px; height: 450px; border-style: dashed; animation: orbit-spin 32s linear infinite; }
.orbit-ring-two { width: 320px; height: 320px; border-color: rgba(255, 178, 26, .15); animation: orbit-spin 25s linear infinite reverse; }
.orbit-ring::before, .orbit-ring::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; }
.orbit-ring::before { top: 13%; left: 14%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.orbit-ring::after { right: 3%; bottom: 27%; background: var(--orange-light); box-shadow: 0 0 16px var(--orange); }
.orbit-core { position: absolute; top: 50%; left: 50%; display: grid; width: 210px; height: 210px; place-items: center; align-content: center; gap: 10px; border: 1px solid rgba(255, 178, 26, .3); border-radius: 42%; background: radial-gradient(circle, rgba(255, 122, 0, .12), #09131d 68%); box-shadow: 0 0 0 20px rgba(255, 122, 0, .025), 0 0 80px rgba(255, 122, 0, .12), inset 0 1px rgba(255, 255, 255, .05); transform: translate(-50%, -50%) rotate(-4deg); }
.orbit-core img { width: 128px; height: auto; transform: rotate(4deg); }
.orbit-core small { color: var(--muted); font-family: var(--mono); font-size: .56rem; letter-spacing: .13em; transform: rotate(4deg); }
.orbit-node { position: absolute; padding: 8px 12px; border: 1px solid rgba(117, 228, 255, .2); border-radius: 8px; color: var(--cyan-light); background: #09131d; box-shadow: 0 8px 25px rgba(0, 0, 0, .34); font-family: var(--mono); font-size: .55rem; font-weight: 800; letter-spacing: .1em; }
.node-home { top: 12%; left: 23%; }
.node-vps { top: 31%; right: 6%; }
.node-dc { right: 16%; bottom: 10%; }
.node-office { bottom: 20%; left: 5%; }
.wide-quote { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; align-items: center; margin-top: 70px; padding: 31px 35px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(90deg, rgba(40, 199, 250, .07), rgba(255, 122, 0, .07)); }
.wide-quote span { color: var(--muted); font-size: 1.1rem; }
.wide-quote strong { font-size: clamp(1.4rem, 2.5vw, 2.2rem); letter-spacing: -.035em; }

/* Security */
.security { background: linear-gradient(180deg, rgba(7, 19, 30, .2), rgba(7, 19, 30, .75), rgba(7, 19, 30, .25)); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-bottom: 52px; }
.security-card { min-height: 255px; padding: 26px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(13, 23, 35, .65); }
.security-card > span { display: inline-block; margin-bottom: 52px; color: var(--orange-light); font-family: var(--mono); font-size: .69rem; font-weight: 800; }
.security-card h3 { margin: 0 0 11px; font-size: 1.17rem; }
.security-card p { margin: 0; font-size: .84rem; line-height: 1.55; }
.comparison-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(8, 16, 25, .78); box-shadow: 0 25px 80px rgba(0, 0, 0, .24); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table caption { padding: 28px 30px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 1.3rem; font-weight: 750; text-align: left; }
.comparison-table th, .comparison-table td { padding: 18px 24px; border-bottom: 1px solid var(--line-soft); font-size: .87rem; text-align: left; }
.comparison-table thead th { color: var(--muted-2); background: rgba(255, 255, 255, .015); font-family: var(--mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table tbody th { width: 28%; color: #c4d0dc; font-weight: 650; }
.comparison-table td { color: var(--muted); }
.comparison-table .gx-col, .comparison-table td:last-child { background: rgba(40, 199, 250, .035); }
.check-mark, .x-mark { display: inline-grid; width: 20px; height: 20px; place-items: center; margin-right: 7px; border-radius: 50%; font-size: .72rem; font-weight: 900; }
.check-mark { color: var(--green); background: rgba(53, 211, 154, .1); }
.x-mark { color: var(--risk); background: rgba(255, 85, 115, .08); }
.security-note { margin: 22px 0 0; padding-left: 18px; border-left: 2px solid var(--orange); color: var(--muted-2); font-size: .8rem; }
.security-note strong { color: var(--orange-light); }

/* Resume */
.resume { min-height: 920px; overflow: hidden; display: flex; align-items: center; background: #050b12; }
.resume::before, .resume::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.resume::before { background: linear-gradient(90deg, rgba(5, 8, 13, .94), rgba(5, 8, 13, .72) 48%, rgba(5, 8, 13, .64)); }
.resume::after { background: linear-gradient(180deg, var(--bg), transparent 14%, transparent 84%, var(--bg)); }
.resume-media { position: absolute; inset: 0; }
.resume-media img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.resume-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.resume-copy > p:last-of-type { max-width: 650px; font-size: 1.06rem; }
.check-list { display: grid; gap: 11px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #b9c6d3; font-size: .88rem; }
.check-list li::before { content: "✓"; position: absolute; top: 1px; left: 0; display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: var(--green); background: rgba(53, 211, 154, .1); font-size: .69rem; font-weight: 900; }
.resume-panel { border: 1px solid rgba(117, 228, 255, .17); border-radius: 24px; background: rgba(6, 14, 23, .77); box-shadow: 0 35px 100px rgba(0, 0, 0, .46), inset 0 1px rgba(255, 255, 255, .04); backdrop-filter: blur(18px); }
.resume-panel-top { display: flex; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line-soft); color: var(--muted); font-family: var(--mono); font-size: .57rem; letter-spacing: .08em; }
.resume-panel-top strong { color: var(--green); font-weight: 800; }
.resume-panel-top strong i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.resume-timeline { display: grid; gap: 6px; padding: 20px; }
.resume-stage { position: relative; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line-soft); border-radius: 11px; background: rgba(13, 23, 35, .65); }
.resume-stage span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-family: var(--mono); font-size: .55rem; }
.resume-stage strong { font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; }
.resume-stage small { color: var(--muted-2); font-size: .66rem; }
.resume-stage.complete strong { color: var(--green); }
.resume-stage.interrupted { border-color: rgba(255, 85, 115, .22); }
.resume-stage.interrupted strong { color: var(--risk); }
.resume-stage.recovering { border-color: rgba(255, 178, 26, .25); box-shadow: inset 0 0 25px rgba(255, 122, 0, .03); }
.resume-stage.recovering strong { color: var(--orange-light); }
.resume-stage.recovering::after { content: ""; position: absolute; right: 13px; bottom: 0; left: 13px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange-light), transparent); animation: scan 2.2s ease-in-out infinite; }
.resume-meter { padding: 0 20px 21px; }
.resume-meter > span { display: block; height: 5px; overflow: hidden; border-radius: 5px; background: rgba(148, 164, 184, .12); }
.resume-meter > span i { display: block; width: 76%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--orange-light)); box-shadow: 0 0 13px rgba(255, 122, 0, .35); animation: breathe-width 3.3s ease-in-out infinite alternate; }
.resume-meter small { display: flex; justify-content: space-between; margin-top: 8px; color: var(--muted-2); font-family: var(--mono); font-size: .57rem; }
.resume-meter strong { color: var(--orange-light); }
.resume-panel > p { margin: 0; padding: 17px 20px; border-top: 1px solid var(--line-soft); color: var(--muted-2); font-size: .75rem; line-height: 1.5; }

/* GX Control mockup */
.control { overflow: hidden; }
.control::before { content: ""; position: absolute; top: 28%; left: 50%; width: 70rem; height: 40rem; border-radius: 50%; background: radial-gradient(circle, rgba(40, 199, 250, .08), transparent 65%); transform: translateX(-50%); }
.control-showcase { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 25px; background: #090f17; box-shadow: 0 45px 110px rgba(0, 0, 0, .38); }
.browser-bar { display: flex; height: 54px; align-items: center; gap: 7px; padding: 0 19px; border-bottom: 1px solid var(--line-soft); background: #111a25; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #405064; }
.browser-bar > span:first-child { background: var(--risk); }
.browser-bar > span:nth-child(2) { background: var(--orange-light); }
.browser-bar > span:nth-child(3) { background: var(--green); }
.browser-bar small { margin-left: 17px; color: #738398; font-family: var(--mono); font-size: .61rem; }
.browser-bar > i { margin-left: auto; color: var(--green); font-family: var(--mono); font-size: .55rem; font-style: normal; font-weight: 800; letter-spacing: .1em; }
.dashboard-mockup { display: grid; grid-template-columns: 190px 1fr; min-height: 555px; }
.mock-sidebar { display: flex; flex-direction: column; padding: 28px 20px 20px; border-right: 1px solid var(--line-soft); background: #08111b; }
.mock-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 35px; }
.mock-brand img { width: 38px; height: auto; }
.mock-brand span { color: var(--muted); font-family: var(--mono); font-size: .56rem; letter-spacing: .17em; }
.mock-sidebar nav { display: grid; gap: 7px; }
.mock-sidebar nav span, .mock-sidebar nav b { padding: 10px 12px; border-radius: 8px; color: #67788d; font-size: .68rem; font-weight: 650; }
.mock-sidebar nav b { color: var(--cyan-light); background: rgba(40, 199, 250, .08); }
.mock-sidebar > small { margin-top: auto; color: #3e4d5f; font-family: var(--mono); font-size: .49rem; letter-spacing: .1em; }
.mock-main { padding: 35px; background: linear-gradient(145deg, #0b141f, #080e16); }
.mock-main > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.mock-main header small, .mock-kpis small, .mock-lower small { color: var(--muted-2); font-family: var(--mono); font-size: .52rem; letter-spacing: .12em; }
.mock-main header h3 { margin: 5px 0 0; font-size: 1.5rem; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.mock-kpis article { display: grid; gap: 8px; padding: 21px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(17, 30, 44, .7); }
.mock-kpis strong { color: var(--cyan-light); font-family: var(--mono); font-size: 1.1rem; letter-spacing: -.02em; }
.mock-kpis span { color: #64758a; font-size: .62rem; }
.mock-lower { display: grid; grid-template-columns: 1.45fr .8fr; gap: 11px; margin-top: 11px; }
.mock-lower > article { min-height: 260px; padding: 22px; border: 1px solid var(--line-soft); border-radius: 14px; background: rgba(13, 23, 35, .66); }
.mock-activity strong { display: block; margin-top: 5px; font-size: .9rem; }
.mock-activity ul { display: grid; gap: 9px; margin: 24px 0 0; padding: 0; list-style: none; }
.mock-activity li { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(148, 164, 184, .08); color: #8696a9; font-size: .63rem; }
.mock-activity li i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.mock-activity li b { color: var(--green); font-family: var(--mono); font-size: .5rem; }
.mock-license { display: flex; flex-direction: column; }
.mock-license > strong { margin: 9px 0 13px; color: var(--orange-light); font-family: var(--mono); font-size: .7rem; }
.mock-license p { font-size: .67rem; line-height: 1.55; }
.mock-license .mock-action { margin-top: auto; padding: 10px; border: 1px solid rgba(117, 228, 255, .2); border-radius: 8px; color: var(--cyan-light); background: rgba(40, 199, 250, .06); font-size: .75rem; text-align: center; }
.control-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 26px; }
.control-features span { padding: 9px 14px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--muted); background: rgba(13, 23, 35, .5); font-family: var(--mono); font-size: .59rem; letter-spacing: .04em; }
.center-action { margin-top: 30px; text-align: center; }

/* Pricing */
.pricing { background: linear-gradient(180deg, transparent, rgba(255, 122, 0, .035), transparent); }
.pricing-layout { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr); gap: 18px; max-width: 1120px; margin-inline: auto; }
.price-card, .flex-model { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 27px; background: linear-gradient(145deg, rgba(17, 30, 44, .9), rgba(8, 15, 23, .95)); box-shadow: 0 35px 100px rgba(0, 0, 0, .28); }
.price-card { padding: 44px; border-color: rgba(255, 178, 26, .28); }
.price-card::before { content: ""; position: absolute; top: -150px; left: -100px; width: 420px; height: 300px; border-radius: 50%; background: rgba(255, 122, 0, .09); filter: blur(80px); }
.price-ribbon { position: absolute; top: 21px; right: -45px; width: 190px; padding: 7px; color: #160b00; background: var(--orange-light); font-family: var(--mono); font-size: .52rem; font-weight: 900; letter-spacing: .08em; text-align: center; transform: rotate(38deg); }
.price-card-head { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 35px; }
.price-card-head h3 { margin: 0; font-size: 2.1rem; }
.recommended { margin-right: 18px; padding: 7px 10px; border: 1px solid rgba(53, 211, 154, .23); border-radius: 999px; color: var(--green); background: rgba(53, 211, 154, .05); font-family: var(--mono); font-size: .52rem; font-weight: 800; letter-spacing: .08em; }
.price-components { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 27px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.price-components > div { display: grid; }
.price-components span { color: #b5c1ce; font-size: .84rem; }
.price-components strong, .total-price strong { margin: 8px 0; color: var(--text); font-family: var(--mono); font-size: clamp(2.25rem, 4vw, 3.7rem); line-height: 1; letter-spacing: -.08em; }
.price-components strong small, .total-price strong small { margin-right: 6px; color: var(--orange-light); font-size: .9rem; letter-spacing: 0; vertical-align: top; }
.price-components em { color: var(--muted-2); font-size: .75rem; font-style: normal; }
.price-plus { color: var(--orange-light) !important; font-family: var(--mono); font-size: 1.7rem !important; }
.total-price { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 20px; }
.total-price > span { font-size: 1rem; font-weight: 700; }
.total-price strong { margin: 0; color: var(--orange-light); }
.price-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px 25px; margin: 0 0 31px; padding: 0; list-style: none; }
.price-list li { position: relative; padding-left: 24px; color: #9baabc; font-size: .79rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.price-note { margin: 14px 0 0; color: var(--muted-2); font-size: .75rem; text-align: center; }
.flex-model { align-self: stretch; padding: 38px; }
.flex-model::before { content: ""; position: absolute; right: -100px; bottom: -100px; width: 250px; height: 250px; border-radius: 50%; background: rgba(40, 199, 250, .08); filter: blur(55px); }
.flex-model h3 { margin: 0 0 16px; font-size: 1.75rem; }
.flex-model > p:nth-of-type(2) { font-size: .88rem; }
.month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 28px 0; }
.month-grid span { display: grid; min-height: 66px; place-items: center; align-content: center; border: 1px solid var(--line-soft); border-radius: 9px; color: var(--muted-2); background: rgba(5, 8, 13, .4); }
.month-grid b { font-family: var(--mono); font-size: .62rem; }
.month-grid small { margin-top: 3px; font-family: var(--mono); font-size: .75rem; letter-spacing: .07em; }
.month-grid .active { border-color: rgba(255, 178, 26, .38); color: var(--orange-light); background: rgba(255, 122, 0, .08); box-shadow: inset 0 0 20px rgba(255, 122, 0, .03); }
.flex-summary { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: .78rem; }
.flex-summary strong { color: var(--text); font-family: var(--mono); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0; padding: 0; counter-reset: process; list-style: none; }
.process-grid li { position: relative; min-height: 260px; padding: 29px; border: 1px solid var(--line-soft); border-radius: 18px; background: rgba(13, 23, 35, .55); }
.process-grid li:not(:last-child)::after { content: ""; position: absolute; top: 51px; right: -13px; z-index: 2; width: 13px; height: 1px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.process-grid li > span { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 65px; border: 1px solid rgba(40, 199, 250, .23); border-radius: 11px; color: var(--cyan-light); background: rgba(40, 199, 250, .05); font-family: var(--mono); font-size: .62rem; font-weight: 800; }
.process-grid h3 { margin: 0 0 11px; font-size: 1.2rem; }
.process-grid p { margin: 0; font-size: .82rem; line-height: 1.55; }

/* FAQ */
.faq { background: linear-gradient(180deg, transparent, rgba(7, 19, 30, .64)); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p:nth-of-type(2) { max-width: 430px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--cyan-light); font-size: .83rem; font-weight: 750; }
.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 25px; padding: 18px 3px; color: #d4dde6; font-size: 1.03rem; font-weight: 680; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 auto; width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--cyan-light); transform: translate(-50%, -50%); transition: transform .25s ease; }
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary { color: var(--cyan-light); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details p { max-width: 760px; margin: -2px 55px 24px 0; font-size: .88rem; line-height: 1.65; }

/* Final CTA and footer */
.final-cta { position: relative; overflow: hidden; padding: 145px 0; border-top: 1px solid rgba(148, 164, 184, .08); background: #060c13; }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(117, 228, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(117, 228, 255, .12) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle, #000, transparent 70%); }
.final-glow { position: absolute; top: 50%; left: 50%; width: 48rem; height: 28rem; border-radius: 50%; background: radial-gradient(circle, rgba(255, 122, 0, .19), rgba(40, 199, 250, .06) 42%, transparent 68%); filter: blur(40px); transform: translate(-50%, -50%); }
.final-inner { position: relative; max-width: 1000px; text-align: center; }
.final-inner > img { width: 148px; height: auto; margin: 0 auto 29px; filter: drop-shadow(0 0 24px rgba(255, 122, 0, .18)); }
.final-inner h2 { font-size: clamp(2.7rem, 5.7vw, 6rem); }
.final-inner > p:not(.eyebrow) { max-width: 700px; margin: 0 auto 35px; font-size: 1.05rem; }
.centered-actions { justify-content: center; }
.site-footer { padding: 65px 0 24px; border-top: 1px solid var(--line-soft); background: #04070b; }
.footer-main { display: grid; grid-template-columns: .7fr 1fr 1fr; gap: 55px; align-items: start; padding-bottom: 45px; }
.footer-main > p { max-width: 390px; margin: 0; font-size: .82rem; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 25px; }
.footer-main nav a { color: var(--muted); font-size: .77rem; transition: color .2s ease; }
.footer-main nav a:hover { color: var(--cyan-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 22px; border-top: 1px solid rgba(148, 164, 184, .08); }
.footer-bottom p { max-width: 690px; margin: 0; color: #8292a5; font-size: .75rem; }
.noscript { position: fixed; right: 20px; bottom: 20px; z-index: 200; max-width: 420px; padding: 14px 18px; border: 1px solid var(--orange); border-radius: 10px; color: #fff; background: #101721; font-size: .8rem; }
.noscript-languages,
.noscript-sections { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 7px; }
.noscript-sections { padding-top: 7px; border-top: 1px solid rgba(255, 255, 255, .08); }
.noscript-languages a,
.noscript-sections a { color: var(--cyan-light); text-decoration: underline; text-underline-offset: 3px; }

/* Reveal and animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes packet { from { left: -12px; } to { left: calc(100% + 12px); } }
@keyframes packet-vertical { from { top: -10px; } to { top: calc(100% + 10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes hostile { from { transform: scale(.75); } to { transform: scale(1.3); } }
@keyframes scan { 0%,100% { opacity: .15; transform: scaleX(.3); } 50% { opacity: 1; transform: scaleX(1); } }
@keyframes breathe-width { from { width: 72%; } to { width: 84%; } }

/* Responsive */
@media (max-width: 1220px) {
  .primary-nav { gap: 15px; }
  .primary-nav a:last-child { display: none; }
  .nav-actions { gap: 12px; }
  .language-menu { min-width: 78px; }
  .language-menu summary [data-language-current] { width: 18px; overflow: hidden; }
  .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(330px, .5fr); }
  .dashboard-mockup { grid-template-columns: 160px 1fr; }
}

@media (max-width: 1020px) {
  .section { padding: 105px 0; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-items: center; align-content: center; gap: 5px; margin-left: auto; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: rgba(13, 23, 35, .8); cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: #d7e0e9; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; top: 82px; right: 20px; left: 20px; display: grid; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 17px; opacity: 0; visibility: hidden; background: rgba(8, 15, 24, .97); box-shadow: 0 25px 60px rgba(0, 0, 0, .45); transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; backdrop-filter: blur(20px); }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav a, .primary-nav a:last-child { display: block; padding: 13px 12px; border-bottom: 1px solid rgba(148, 164, 184, .08); }
  .primary-nav a:last-child { border: 0; }
  .primary-nav a::after { display: none; }
  .nav-actions .panel-link { display: none; }
  .hero { min-height: auto; flex-direction: column; }
  .hero-layout { grid-template-columns: 1fr; padding: 160px 0 190px; }
  .hero-copy { max-width: 800px; }
  .hero-media::before { background: linear-gradient(90deg, #050a11, rgba(5,10,17,.8) 55%, rgba(5,10,17,.24)), linear-gradient(180deg, rgba(5,8,13,.3), transparent 35%, rgba(5,8,13,.62)); }
  .hero-console { width: min(520px, 100%); justify-self: end; margin: -18px 0 40px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid article:nth-child(2) { border-right: 0; }
  .metrics-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(148, 164, 184, .12); }
  .hero-metrics { position: relative; }
  .hero::after { bottom: 160px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 2; }
  .architecture { min-height: 980px; }
  .anywhere-grid { gap: 30px; }
  .location-orbit { transform: scale(.86); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-grid { grid-template-columns: 1fr; gap: 50px; }
  .resume { padding-block: 130px; }
  .resume-copy { max-width: 750px; }
  .dashboard-mockup { grid-template-columns: 120px 1fr; }
  .mock-sidebar { padding-inline: 14px; }
  .mock-sidebar nav span, .mock-sidebar nav b { padding-inline: 8px; font-size: .58rem; }
  .pricing-layout { grid-template-columns: 1fr; }
  .flex-model { max-width: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2)::after { display: none; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, var(--container)); }
  .section { padding: 88px 0; }
  .site-header { height: 72px; }
  .nav-shell { width: calc(100% - 30px); gap: 14px; }
  .brand-copy small { display: none; }
  .nav-actions .button { display: none; }
  .language-menu summary { min-height: 42px; padding-inline: 10px; }
  .primary-nav { top: 72px; }
  h2 { font-size: clamp(2.35rem, 11vw, 4.2rem); }
  .hero-layout { padding: 132px 0 90px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.7rem); }
  html[lang="ru"] .hero h1 { font-size: clamp(2.5rem, 10.5vw, 4.7rem); }
  .hero-media { inset: auto 0 0; height: 56%; }
  .hero-media img { object-position: 63% center; }
  .hero-media::before { background: linear-gradient(180deg, var(--bg) 0, rgba(5,8,13,.52) 34%, rgba(5,8,13,.1)), linear-gradient(90deg, rgba(5,8,13,.55), transparent); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .service-chips { gap: 12px 18px; }
  .hero-console { align-self: end; margin-top: 245px; }
  .metrics-grid article { min-height: 95px; padding: 18px 14px; }
  .metrics-grid strong { font-size: 1.6rem; }
  .metrics-grid span { font-size: .7rem; }
  .section-intro { margin-bottom: 48px; }
  .compare-card { min-height: 590px; }
  .compare-controls { top: 18px; width: calc(100% - 32px); }
  .compare-controls button { flex: 1; padding-inline: 10px; }
  .connection-map { inset: 0 0 190px; }
  .map-player { top: 41%; left: 7%; }
  .map-origin { top: 41%; right: 5%; }
  .map-edge { top: 41%; left: 50%; }
  .map-icon { width: 62px; height: 62px; }
  .map-edge .map-icon { width: 76px; height: 76px; }
  .origin-shield { top: 41%; right: 1%; width: 105px; height: 105px; }
  .link-one { top: 41%; left: 20%; width: 17%; }
  .link-two { top: 41%; left: 60%; width: 21%; }
  .compare-card[data-comparison="direct"] .link-one { left: 20%; width: 62%; }
  .compare-copy { min-height: 190px; padding: 22px; }
  .compare-copy h3 { font-size: 1.2rem; }
  .compare-copy p:last-child { font-size: .82rem; }
  .statement { gap: 12px; margin-top: 55px; }
  .statement > span { font-size: 4.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-feature { grid-column: auto; min-height: 580px; padding-right: 26px; }
  .privacy-visual { top: auto; right: 26px; bottom: 25px; left: 26px; width: auto; transform: none; }
  .architecture { min-height: 1100px; }
  .architecture::before { background: linear-gradient(180deg, rgba(5,8,13,.98) 0%, rgba(5,8,13,.86) 52%, rgba(5,8,13,.5)); }
  .architecture-media img { object-position: 58% center; }
  .steps-list li { grid-template-columns: 52px 1fr; gap: 14px; padding: 20px; }
  .step-number { width: 43px; height: 43px; }
  .architecture-route { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 7px; margin-top: 45px; }
  .architecture-route i { width: 1px; height: 20px; }
  .architecture-route i::after { animation: packet-vertical 2s linear infinite; }
  .anywhere-grid { grid-template-columns: 1fr; }
  .location-orbit { min-height: 510px; transform: scale(.82); }
  .wide-quote { grid-template-columns: 1fr; gap: 10px; }
  .security-grid { grid-template-columns: 1fr; }
  .security-card { min-height: auto; }
  .security-card > span { margin-bottom: 28px; }
  .comparison-table-wrap { overflow-x: auto; }
  .comparison-table { min-width: 720px; }
  .resume { min-height: auto; }
  .resume::before { background: linear-gradient(180deg, rgba(5,8,13,.97), rgba(5,8,13,.75)); }
  .resume-media img { object-position: center; }
  .resume-stage { grid-template-columns: 35px 1fr; }
  .resume-stage small { grid-column: 2; }
  .dashboard-mockup { grid-template-columns: 1fr; min-height: auto; }
  .mock-sidebar { display: none; }
  .mock-main { padding: 22px; }
  .mock-kpis { grid-template-columns: 1fr; }
  .mock-lower { grid-template-columns: 1fr; }
  .browser-bar > i { display: none; }
  .price-card { padding: 34px 24px; }
  .price-card-head { align-items: flex-start; flex-direction: column; }
  .price-components { grid-template-columns: 1fr; }
  .price-plus { text-align: center; }
  .price-list { grid-template-columns: 1fr; }
  .flex-model { padding: 30px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 220px; }
  .process-grid li:not(:last-child)::after { top: auto; right: 50%; bottom: -13px; width: 1px; height: 13px; }
  .process-grid li > span { margin-bottom: 45px; }
  .final-cta { padding: 105px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-main nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 470px) {
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: 2.75rem; }
  html[lang="ru"] .hero h1 { font-size: 2.35rem; }
  html[lang="zh-CN"] .hero h1 { font-size: 2.55rem; }
  .hero .eyebrow { font-size: .61rem; }
  .hero-console { margin-top: 205px; }
  .console-top { align-items: flex-start; flex-direction: column; }
  .console-route { grid-template-columns: auto 1fr auto 1fr auto; padding-inline: 10px; }
  .route-node { min-width: 45px; height: 45px; font-size: .4rem; }
  .console-data span { font-size: .41rem; }
  .console-data strong { font-size: .52rem; }
  .metrics-grid article { align-items: flex-start; flex-direction: column; gap: 7px; }
  .location-list { grid-template-columns: 1fr; }
  .location-orbit { min-height: 430px; margin: -20px -30px; transform: scale(.74); }
  .month-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-panel-top { align-items: flex-start; flex-direction: column; }
  .final-inner h2 { font-size: 2.65rem; }
}

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

@media (hover: none), (pointer: coarse) { .cursor-light { display: none; } }

@media print {
  .site-header, .hero-media, .hero-grid, .hero-orb, .cursor-light, .final-glow { display: none !important; }
  body { color: #111; background: #fff; }
  p { color: #333; }
  .section { padding: 40px 0; break-inside: avoid; }
  .hero { min-height: auto; color: #111; background: #fff; }
  .hero-layout { padding: 40px 0; }
  .hero-console { color: #111; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
