:root {
  color-scheme: dark;
  --bg: #080910;
  --bg-soft: #0d0f19;
  --panel: #10131f;
  --panel-soft: #141826;
  --ink: #f4f3f7;
  --muted: #a3a5b2;
  --muted-strong: #c9cad2;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --violet: #8b6cff;
  --violet-light: #b9a8ff;
  --cyan: #63dcf5;
  --lime: #b7f36b;
  --warm: #f0b56d;
  --page: min(1180px, calc(100vw - 48px));
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 5%, rgba(98, 71, 210, 0.14), transparent 28rem),
    radial-gradient(circle at 12% 28%, rgba(54, 142, 181, 0.07), transparent 32rem),
    var(--bg);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.6px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 48rem);
}

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

button,
select,
input {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(99, 220, 245, 0.78);
  outline-offset: 4px;
}

main,
.footer {
  width: var(--page);
  margin-inline: auto;
}

.sitebar {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 10, 17, 0.8);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 800;
}

.identity__mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: linear-gradient(145deg, #a883ff 0%, #7651e8 60%, #4d35a0 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.35), 0 10px 26px rgba(104, 69, 215, 0.32);
  transform: rotate(-7deg);
}

.identity__mark::before,
.identity__mark::after,
.identity__mark i {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
}

.identity__mark::before {
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
}

.identity__mark::after {
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(183, 243, 107, 0.8);
}

.identity__mark i {
  right: -7px;
  bottom: -7px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.14);
}

.identity__word b {
  color: var(--cyan);
}

.sitebar__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.sitebar__nav a,
.footer nav a {
  transition: color 160ms ease;
}

.sitebar__nav a:hover,
.footer nav a:hover {
  color: #fff;
}

.sitebar__account {
  justify-self: end;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: #efeff3;
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 720;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sitebar__account:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
  min-height: 710px;
  padding: 92px 0 88px;
}

.hero::before {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  pointer-events: none;
  content: "5 ДНЕЙ БЕСПЛАТНО";
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 168, 255, 0.13);
  letter-spacing: -0.055em;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(58px, 7.2vw, 100px);
  line-height: 1;
  font-weight: 790;
  transform: translateX(-50%);
}

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

.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #b4b5c1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 760;
}

.overline > span {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 12px rgba(99, 220, 245, 0.55);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(54px, 5.65vw, 78px);
  line-height: 0.98;
  font-weight: 760;
}

h1 em {
  color: transparent;
  background: linear-gradient(98deg, #c2b4ff 4%, #8b6cff 48%, #63dcf5 96%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  line-height: 1;
  font-weight: 720;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #8d6aff, #6c4de1 72%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.28), 0 16px 34px rgba(91, 58, 196, 0.3);
}

.button--primary:hover {
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.34), 0 20px 42px rgba(91, 58, 196, 0.42);
}

.button--quiet {
  border-color: var(--line-strong);
  color: #dddde5;
  background: rgba(255, 255, 255, 0.025);
}

.button--quiet:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.055);
}

.trial-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 47px;
  padding: 7px 12px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.trial-note__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  color: #161222;
  background: var(--lime);
  font-size: 13px;
}

.trial-note p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.trial-note strong {
  color: #e3e3e8;
  font-size: 13px;
  line-height: 1.3;
}

.trial-note small {
  color: #888b99;
  font-size: 11px;
}

.route-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(24, 28, 45, 0.97), rgba(12, 14, 24, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 36px 90px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg);
}

.route-card::before {
  position: absolute;
  top: -140px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(139, 108, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 80px rgba(139, 108, 255, 0.08);
}

.route-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: #dcdde5;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 800;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.status i,
.node i,
.mini-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 13px rgba(183, 243, 107, 0.8);
}

.route-map {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(97, 72, 191, 0.22), transparent 42%);
  background-size: 28px 28px, 28px 28px, auto;
}

.route-map::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 48%, transparent 16%, rgba(10, 12, 20, 0.72) 80%);
}

.route-map > * {
  position: absolute;
  z-index: 2;
}

.route-map > strong {
  top: 50%;
  left: 50%;
  z-index: 4;
  color: rgba(236, 234, 247, 0.9);
  letter-spacing: 0.18em;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  transform: translate(-50%, -50%);
}

.route-map > strong::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(185, 168, 255, 0.34);
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(139, 108, 255, 0.32), rgba(19, 21, 35, 0.92) 68%);
  box-shadow: 0 0 50px rgba(93, 63, 193, 0.3), inset 0 0 24px rgba(255, 255, 255, 0.06);
  transform: translate(-50%, -50%);
}

.orbit {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(163, 148, 220, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.orbit--one {
  width: 210px;
  height: 210px;
}

.orbit--two {
  width: 360px;
  height: 245px;
}

.orbit--three {
  width: 520px;
  height: 320px;
}

.node {
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  color: #e8e8ed;
  background: rgba(12, 14, 23, 0.88);
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.3);
  font-size: 11px;
  font-weight: 750;
}

.node i {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(99, 220, 245, 0.72);
}

.node--device { top: 13%; left: 10%; }
.node--nl { top: 31%; right: 11%; }
.node--de { bottom: 21%; left: 10%; }
.node--fi { right: 17%; bottom: 10%; }

.route-line {
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 160px;
  background: linear-gradient(transparent, rgba(99, 220, 245, 0.48), transparent);
  transform-origin: top center;
}

.route-line--a { transform: rotate(50deg); }
.route-line--b { transform: rotate(132deg); }
.route-line--c { transform: rotate(218deg); }

.route-card__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 10px;
  border-top: 1px solid var(--line);
}

.route-card__stats div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.038);
}

.route-card__stats dt {
  margin-bottom: 5px;
  color: #8a8d9b;
  font-size: 11px;
}

.route-card__stats dd {
  margin: 0;
  overflow: hidden;
  color: #e6e6eb;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-row > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.signal-row > div:last-child {
  border-right: 0;
}

.signal-row > div > span {
  color: var(--violet-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
}

.signal-row p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.signal-row strong {
  color: #e8e8ed;
  font-size: 14px;
}

.signal-row small {
  color: #9295a2;
  font-size: 11px;
}

.section {
  padding: 132px 0;
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(50px, 10vw, 150px);
}

.section-heading .overline {
  margin-bottom: 19px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.6vw, 62px);
  line-height: 1.03;
  font-weight: 730;
}

.section-heading > p,
.section-heading--split > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.benefit-card--wide {
  grid-row: span 2;
  min-height: 734px;
}

.benefit-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 80% 5%, rgba(119, 88, 225, 0.15), transparent 46%);
}

.benefit-card__number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: #9295a2;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 750;
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 690;
}

.benefit-card p {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.platform-orbit {
  position: absolute;
  top: 70px;
  left: 50%;
  width: min(82%, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(139, 108, 255, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(85, 59, 180, 0.12), 0 0 80px rgba(85, 59, 180, 0.06);
  transform: translateX(-50%);
}

.platform-orbit::before,
.platform-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.platform-orbit::before { width: 68%; height: 68%; }
.platform-orbit::after { width: 38%; height: 38%; background: radial-gradient(circle, rgba(139, 108, 255, 0.38), transparent 70%); }

.platform-orbit span {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 68px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: #d8d8e0;
  background: #121522;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  font-size: 11px;
  font-weight: 700;
}

.platform-orbit span:nth-child(1) { top: 7%; left: 45%; }
.platform-orbit span:nth-child(2) { top: 45%; right: -8%; }
.platform-orbit span:nth-child(3) { right: 18%; bottom: 7%; }
.platform-orbit span:nth-child(4) { top: 45%; left: -8%; }

.platform-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(183, 243, 107, 0.6);
  transform: translate(-50%, -50%);
}

.mini-status {
  position: absolute;
  top: 56px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(183, 243, 107, 0.18);
  border-radius: 10px;
  color: var(--lime);
  background: rgba(183, 243, 107, 0.055);
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 800;
}

.speed-mark {
  position: absolute;
  top: 48px;
  right: 30px;
  display: flex;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.08);
}

.speed-mark b {
  font-size: 82px;
  line-height: 1;
}

.speed-mark span {
  color: rgba(99, 220, 245, 0.4);
  font-size: 25px;
}

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

.plans__heading {
  margin-bottom: 34px;
}

.term-switch {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  max-width: 580px;
  margin: 0 0 22px auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.term-switch button {
  min-height: 43px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #888b99;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

.term-switch button[aria-pressed="true"] {
  border-color: var(--line-strong);
  color: #f2f2f4;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.term-select {
  display: none;
}

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

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 515px;
  flex-direction: column;
  padding: 26px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.plan-card--featured {
  border-color: rgba(139, 108, 255, 0.48);
  background: linear-gradient(150deg, rgba(139, 108, 255, 0.14), rgba(99, 220, 245, 0.025) 62%, rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(211, 201, 255, 0.15), 0 24px 70px rgba(78, 48, 175, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: 20px;
  right: 18px;
  padding: 6px 8px;
  border-radius: 7px;
  color: #211b32;
  background: var(--lime);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
}

.plan-card__label {
  margin: 0 0 16px;
  color: #a0a2af;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 760;
}

.plan-card h3 {
  margin-bottom: 9px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.plan-card__description {
  min-height: 49px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.plan-card__price {
  display: flex;
  min-height: 72px;
  align-items: flex-start;
  margin-bottom: 0;
}

.plan-card__price strong {
  letter-spacing: -0.055em;
  font-size: 46px;
  line-height: 1;
  font-weight: 710;
}

.plan-card__price > span {
  margin: 5px 0 0 5px;
  color: #c8c8d0;
  font-size: 18px;
}

.plan-card__price small {
  align-self: flex-end;
  margin: 0 0 10px 9px;
  color: #9a9daa;
  font-size: 11px;
}

.plan-card__saving {
  min-height: 20px;
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 650;
}

.plan-card__button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: #e8e8ec;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease;
}

.plan-card__button:hover {
  border-color: rgba(139, 108, 255, 0.58);
  background: rgba(139, 108, 255, 0.12);
}

.plan-card--featured .plan-card__button {
  border-color: rgba(139, 108, 255, 0.58);
  background: rgba(139, 108, 255, 0.18);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #8b8e9b;
  list-style: none;
  font-size: 13px;
}

.plan-card li {
  position: relative;
  padding-left: 17px;
}

.plan-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(99, 220, 245, 0.5);
}

.plan-card li b {
  color: #d8d8df;
}

.how {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.how .section-heading {
  position: sticky;
  top: 118px;
  margin: 0;
}

.how .section-heading h2 {
  margin-bottom: 20px;
}

.how > .button {
  align-self: end;
  grid-column: 1;
  width: max-content;
  margin-top: -188px;
}

.how__steps {
  grid-row: span 2;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.how__steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 25px;
  min-height: 184px;
  padding: 31px 5px;
  border-bottom: 1px solid var(--line);
}

.how__steps > li > span {
  color: var(--violet-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-style: italic;
}

.how__steps h3 {
  margin-bottom: 9px;
  font-size: 23px;
  font-weight: 680;
}

.how__steps p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.question-list details {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
}

.question-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 19px;
  color: #dddde4;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 650;
}

.question-list summary::-webkit-details-marker {
  display: none;
}

.question-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--violet-light);
  font-size: 18px;
  transition: transform 180ms ease;
}

.question-list details[open] summary span {
  transform: rotate(45deg);
}

.question-list details p {
  margin: -2px 18px 21px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: clamp(55px, 12vw, 160px);
  min-height: 480px;
  margin-bottom: 28px;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(139, 108, 255, 0.25);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 22%, rgba(99, 220, 245, 0.12), transparent 24rem),
    radial-gradient(circle at 22% 102%, rgba(118, 80, 229, 0.28), transparent 34rem),
    #10121d;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 40px 100px rgba(0, 0, 0, 0.3);
}

.closing::before {
  position: absolute;
  top: -210px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(185, 168, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(139, 108, 255, 0.035), 0 0 0 160px rgba(139, 108, 255, 0.018);
}

.closing > * {
  position: relative;
  z-index: 2;
}

.closing h2 {
  margin: 0;
  font-size: clamp(44px, 5.1vw, 67px);
  line-height: 1.02;
  font-weight: 730;
}

.closing__action p {
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 28px 5px;
  color: #7d808e;
  font-size: 12px;
}

.footer > p {
  margin: 0;
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #a3a5b1;
}

.footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mobile-start {
  display: none;
}

/* Legal pages */
.document .sitebar {
  position: relative;
}

.document .identity > span:first-child:not(.identity__mark) {
  color: var(--ink);
}

.document__body {
  max-width: 820px;
  min-height: 70vh;
  padding: 90px 0 120px;
}

.document__body h1 {
  margin-bottom: 34px;
  font-size: clamp(45px, 7vw, 76px);
  overflow-wrap: anywhere;
}

.document__body h2 {
  margin: 55px 0 14px;
  font-size: 27px;
  font-weight: 680;
}

.document__body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
  }

  .route-map {
    min-height: 340px;
  }

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

  .plan-card {
    min-height: 485px;
  }

  .signal-row > div {
    padding-inline: 16px;
  }

  .closing {
    padding: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 32px, 760px);
  }

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

  .sitebar__nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 0 70px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero__lead {
    max-width: 650px;
  }

  .route-card {
    transform: none;
  }

  .signal-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-row > div:nth-child(2) {
    border-right: 0;
  }

  .signal-row > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 100px 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-card--wide {
    min-height: 620px;
  }

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

  .how {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .how .section-heading {
    position: static;
  }

  .how > .button {
    grid-row: 3;
    width: 100%;
    margin-top: 0;
  }

  .how__steps {
    grid-row: auto;
  }

  .closing {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
  }

  .closing__action {
    max-width: 520px;
  }

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

  .footer > p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 28px);
    --radius-lg: 23px;
    --radius-md: 18px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 86px;
  }

  .sitebar {
    top: 9px;
    min-height: 64px;
    margin-top: 9px;
    padding: 8px 8px 8px 13px;
    border-radius: 17px;
  }

  .identity {
    gap: 9px;
    font-size: 12px;
  }

  .identity__mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .identity__mark::before {
    width: 15px;
    height: 15px;
  }

  .sitebar__account {
    min-height: 46px;
    padding: 0 13px;
    font-size: 0;
  }

  .sitebar__account::before {
    content: "Войти";
    font-size: 12px;
  }

  .sitebar__account span {
    font-size: 13px;
  }

  .document .sitebar__account {
    font-size: 11px;
  }

  .document .sitebar__account::before {
    content: none;
  }

  .hero {
    gap: 52px;
    padding: 70px 0 58px;
  }

  .hero::before {
    top: 22px;
    padding-inline: 18px;
    white-space: normal;
    font-size: clamp(42px, 12vw, 48px);
    line-height: 0.9;
  }

  .hero__copy {
    padding-top: 56px;
  }

  .overline {
    margin-bottom: 17px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 23px;
    font-size: clamp(49px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero__lead {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 55px;
  }

  .trial-note {
    width: 100%;
  }

  .route-card__top {
    min-height: 58px;
    padding: 0 16px;
    font-size: 11px;
  }

  .route-map {
    min-height: 310px;
  }

  .orbit--three {
    width: 430px;
    height: 275px;
  }

  .node--device { left: 6%; }
  .node--nl { right: 5%; }
  .node--de { left: 5%; }
  .node--fi { right: 10%; }

  .route-card__stats {
    grid-template-columns: 1fr 1fr;
  }

  .route-card__stats div:last-child {
    grid-column: 1 / -1;
  }

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

  .signal-row > div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-row > div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .signal-row > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
  }

  .section-heading > p,
  .section-heading--split > p {
    font-size: 14px;
  }

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

  .benefit-card,
  .benefit-card--wide {
    min-height: 390px;
    padding: 24px;
  }

  .benefit-card--wide {
    min-height: 560px;
  }

  .benefit-card h3 {
    font-size: 23px;
  }

  .platform-orbit {
    top: 65px;
    width: min(82%, 350px);
  }

  .term-switch {
    display: none;
  }

  .term-select {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    color: #8c8f9d;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 750;
  }

  .term-select select {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    color: var(--ink);
    background: var(--panel);
  }

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

  .plan-card {
    min-height: auto;
    padding: 25px 22px;
  }

  .plan-card__description {
    min-height: auto;
  }

  .plan-card__button {
    min-height: 52px;
  }

  .how__steps li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 170px;
  }

  .how__steps h3 {
    font-size: 21px;
  }

  .question-list {
    grid-template-columns: 1fr;
  }

  .question-list summary {
    min-height: 70px;
    font-size: 13px;
  }

  .closing {
    min-height: 500px;
    margin-bottom: 14px;
    padding: 38px 25px;
  }

  .closing h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 45px 4px 24px;
  }

  .footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mobile-start {
    position: fixed;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    z-index: 40;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 8px 8px 15px;
    border: 1px solid var(--line-strong);
    border-radius: 17px;
    background: rgba(14, 16, 26, 0.94);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-start > span {
    display: grid;
    gap: 1px;
  }

  .mobile-start b {
    font-size: 12px;
  }

  .mobile-start small {
    color: #818493;
    font-size: 11px;
  }

  .mobile-start a {
    display: grid;
    min-width: 115px;
    min-height: 50px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #8d6aff, #6c4de1);
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-start.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(90px);
  }

  .document__body {
    padding: 75px 0 90px;
  }

  .document__body h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 47px;
  }

  .identity__word {
    letter-spacing: 0.08em;
  }

  .route-map {
    min-height: 285px;
  }

  .mobile-start > span {
    display: none;
  }

  .mobile-start a {
    width: 100%;
  }
}

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

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