:root {
  --bg: #010511;
  --panel: rgba(9, 20, 38, 0.3);
  --panel-strong: rgba(7, 16, 32, 0.62);
  --text: #f5f8ff;
  --muted: #aab8cc;
  --line: rgba(255, 255, 255, 0.18);
  --cyan: #04b0f8;
  --blue: #2332ed;
  --green: #65f2a6;
  --gold: #f7c86a;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
  --radius: 34px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  cursor: default;
  background:
    radial-gradient(circle at 24% 8%, rgba(4, 176, 248, 0.24), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(35, 50, 237, 0.18), transparent 34rem),
    linear-gradient(180deg, #020816 0%, var(--bg) 50%, #02040b 100%);
  min-height: 100vh;
}

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

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

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.site-header,
.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.032)),
    rgba(2, 8, 22, 0.48);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(34px) saturate(170%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.nav-links {
  display: flex;
  gap: 62px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 780;
}

.nav-links a {
  padding: 8px 0;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-weight: 740;
  font-size: 14px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
  background-clip: padding-box;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.scroll-top svg,
.feature-card svg,
.device-grid svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 52px rgba(4, 176, 248, 0.28);
}

.button-large {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
}

.button-soft,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cabinet-button {
  min-height: 52px;
  margin-right: 8px;
  padding-inline: 24px;
  background:
    linear-gradient(135deg, rgba(4, 176, 248, 0.44), rgba(35, 50, 237, 0.5)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(4, 176, 248, 0.18);
}

.button-soft:hover,
.button-ghost:hover {
  border-color: rgba(4, 176, 248, 0.55);
  background: rgba(4, 176, 248, 0.12);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: 56px;
  min-height: 720px;
  padding: 44px 0 44px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.word-cyan {
  color: #eaf8ff;
  text-shadow: 0 0 36px rgba(4, 176, 248, 0.18);
}

.word-blue {
  background: linear-gradient(100deg, #80e8ff 0%, #24b8ff 42%, #5f73ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 180% 100%;
  animation: textGradientFlow 7s ease-in-out infinite;
}

.word-light {
  background: linear-gradient(105deg, #ffe9a6 0%, #7cf7d4 33%, #04b0f8 66%, #2332ed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 190% 100%;
  animation: textGradientFlow 8s ease-in-out infinite reverse;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.hero-visual {
  min-width: 0;
  justify-self: end;
  width: min(100%, 455px);
}

.signal-card,
.feature-card,
.price-card,
.payment-section,
.period-toggle,
.device-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.034)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(42px) saturate(190%);
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
}

.signal-card {
  position: relative;
  overflow: visible;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 34px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.signal-card::before {
  content: none;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 350px;
  isolation: isolate;
}

.logo-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: min(78%, 330px);
  height: min(55%, 235px);
  border-radius: 62% 38% 54% 46% / 48% 61% 39% 52%;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.72), transparent 0.55rem),
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.26), transparent 5.4rem),
    radial-gradient(circle at 70% 66%, rgba(4, 176, 248, 0.16), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(4, 176, 248, 0.08) 48%, rgba(35, 50, 237, 0.14));
  mix-blend-mode: screen;
  filter: blur(0.3px);
  opacity: 0.58;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 14px 18px 28px rgba(255, 255, 255, 0.16),
    inset -20px -18px 34px rgba(4, 176, 248, 0.1),
    0 18px 42px rgba(4, 176, 248, 0.08);
  backdrop-filter: blur(2px) saturate(170%) brightness(1.12);
  pointer-events: none;
  animation: liquidDrift 7s ease-in-out infinite;
}

.logo-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: min(82%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(4, 176, 248, 0.18), transparent 58%),
    radial-gradient(circle at 70% 24%, rgba(35, 50, 237, 0.18), transparent 52%);
  filter: blur(24px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: min(74%, 285px);
  border-radius: 58px;
  outline: 1px solid rgba(255, 255, 255, 0.12);
  outline-offset: -1px;
  filter:
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 24px rgba(4, 176, 248, 0.18))
    drop-shadow(0 0 58px rgba(35, 50, 237, 0.12));
  animation: floatLogo 6.2s ease-in-out infinite;
}

.logo-halo {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(4, 176, 248, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(4, 176, 248, 0.08), transparent 58%),
    conic-gradient(from 90deg, transparent, rgba(4, 176, 248, 0.28), transparent 36%);
  animation: spin 20s linear infinite;
}

.logo-halo::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 34px var(--cyan);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.pricing-section,
.split-section,
.devices-section,
.payment-section {
  padding: 104px 0 0;
}

.pricing-section {
  padding-top: 36px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.period-toggle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(860px, 100%);
  margin: 0 auto 28px;
  padding: 10px;
  border-radius: 999px;
}

.period-toggle button {
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.period-toggle button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #061021;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-size: 11px;
  font-weight: 640;
}

.period-toggle button.active {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(4, 176, 248, 0.24), rgba(35, 50, 237, 0.28)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 14px 38px rgba(4, 176, 248, 0.16);
}

.period-toggle button:hover {
  transform: translateY(-1px);
}

.pricing-grid {
  padding-top: 18px;
}

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

.feature-card,
.price-card {
  padding: 28px;
}

.feature-card {
  text-align: center;
}

.feature-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  color: var(--cyan);
  stroke-width: 1.7;
}

.feature-card p,
.site-footer p,
.price-card > span {
  color: var(--muted);
}

.feature-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.price-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
  transition:
    transform 260ms cubic-bezier(0.2, 0.85, 0.22, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(4px);
  background: radial-gradient(circle, rgba(4, 176, 248, 0.34), transparent 66%);
  z-index: -1;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.price-card:hover {
  transform: translateY(-18px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.32);
}

.plan-kb:hover {
  transform: translateY(-18px) scale(1.012);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, rgba(4, 176, 248, 0.08), rgba(35, 50, 237, 0.04)),
    rgba(9, 20, 38, 0.34);
  box-shadow:
    0 32px 104px rgba(4, 176, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.price-card.featured {
  border-color: rgba(4, 176, 248, 0.66);
  transform: translateY(-10px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, rgba(4, 176, 248, 0.18), rgba(35, 50, 237, 0.1)),
    rgba(9, 20, 38, 0.38);
}

.price-card.featured:hover {
  transform: translateY(-20px) scale(1.012);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.048)),
    linear-gradient(150deg, rgba(4, 176, 248, 0.34), rgba(35, 50, 237, 0.24)),
    rgba(6, 18, 39, 0.46);
  box-shadow:
    0 34px 110px rgba(4, 176, 248, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.plan-gb:hover {
  transform: translateY(-18px) scale(1.012);
  border-color: rgba(247, 200, 106, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.045)),
    linear-gradient(150deg, rgba(247, 200, 106, 0.34), rgba(35, 50, 237, 0.12)),
    rgba(28, 20, 8, 0.42);
  box-shadow:
    0 34px 110px rgba(247, 200, 106, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.pricing-grid .price-card:hover {
  transform: translateY(-18px) scale(1.012);
}

.pricing-grid .price-card.featured {
  transform: translateY(-10px);
}

.pricing-grid .price-card.featured:hover {
  transform: translateY(-20px) scale(1.012);
}

.card-badge {
  position: static;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f5f8ff;
  background:
    linear-gradient(135deg, #06c7ff, #2442ff);
  box-shadow:
    0 14px 36px rgba(4, 176, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 820;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.plan-name {
  margin-bottom: 0;
  color: var(--cyan);
  font-weight: 820;
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(245, 248, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 760;
}

.plan-chip svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.premium-chip {
  color: #2a1700;
  border-color: rgba(247, 200, 106, 0.42);
  background: linear-gradient(135deg, #ffe59d, var(--gold));
  box-shadow: 0 12px 34px rgba(247, 200, 106, 0.2);
}

.plan-gb:hover .premium-chip {
  color: #1b1000;
  background: linear-gradient(135deg, #fff4bf, #f4bd4d);
}

.price-card h3 {
  margin-bottom: 2px;
  font-size: 58px;
}

.plan-period {
  font-weight: 720;
}

.plan-meter {
  height: 8px;
  margin: 24px 0 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.plan-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(4, 176, 248, 0.42);
}

.plan-kb .plan-meter span {
  width: 34%;
}

.plan-mb .plan-meter span {
  width: 62%;
}

.plan-gb .plan-meter span {
  width: 100%;
}

.plan-kb::before {
  background: radial-gradient(circle, rgba(4, 176, 248, 0.28), transparent 66%);
}

.plan-mb::before {
  background: radial-gradient(circle, rgba(101, 242, 166, 0.24), transparent 64%);
}

.plan-gb::before {
  background: radial-gradient(circle, rgba(35, 50, 237, 0.38), transparent 66%);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.plan-perks {
  display: grid;
  margin: 6px 0 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.perk-grid {
  display: grid;
  gap: 9px;
}

.perk-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  color: rgba(245, 248, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.028)),
    rgba(6, 16, 34, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(22px) saturate(180%);
}

.perk-item svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.055);
}

.perk-item span:last-child {
  font-size: 13px;
  font-weight: 720;
  line-height: 1.25;
}

.perk-youtube svg {
  color: #ff3158;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 90, 116, 0.36), transparent 62%),
    rgba(255, 49, 88, 0.08);
}

.perk-apps svg {
  color: #65f2a6;
  background:
    radial-gradient(circle at 70% 20%, rgba(101, 242, 166, 0.28), transparent 62%),
    rgba(101, 242, 166, 0.07);
}

.perk-priority svg {
  color: var(--gold);
  background:
    radial-gradient(circle at 70% 20%, rgba(247, 200, 106, 0.4), transparent 62%),
    rgba(247, 200, 106, 0.08);
}

.plan-gb .perk-priority {
  border-color: rgba(247, 200, 106, 0.22);
}

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

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

.device-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 118px;
  padding: 18px 12px;
  color: #dfe8f7;
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.device-grid svg {
  width: 32px;
  height: 32px;
  color: currentColor;
  stroke-width: 1.65;
}

.device-ios,
.device-apple {
  color: #f5f8ff;
}

.device-android {
  color: #72e078;
}

.device-windows {
  color: #4cc2ff;
}

.device-linux {
  color: #ffd46b;
}

.device-tv {
  color: #66ddff;
}

.device-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 176, 248, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(4, 176, 248, 0.08);
}

.train-copy {
  display: none !important;
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dfe8f7;
  font-weight: 720;
}

.payment-card i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  font-style: normal;
}

.sbp-card i {
  position: relative;
}

.sbp-card i b {
  position: absolute;
  width: 16px;
  height: 16px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.sbp-card i b:nth-child(1) {
  left: 2px;
  background: #21d17f;
}

.sbp-card i b:nth-child(2) {
  left: 10px;
  background: #19a7ff;
}

.sbp-card i b:nth-child(3) {
  left: 18px;
  background: #9b5cff;
}

.mir-card i {
  width: 44px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #00a8e8 0 45%, #23b14d 45% 70%, #f58220 70%);
  font-size: 12px;
  font-weight: 900;
}

.crypto-card i {
  position: relative;
  width: 48px;
}

.crypto-card i b {
  position: absolute;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #120b01;
  font-size: 13px;
  background: linear-gradient(135deg, #ffe59d, #f7a928);
  box-shadow: 0 10px 28px rgba(247, 169, 40, 0.22);
  z-index: 2;
}

.crypto-card i b:nth-child(2) {
  right: 0;
  color: #f6f9ff;
  background: linear-gradient(135deg, #8ea2ff, #5a48ff);
  z-index: 1;
}

.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  margin-top: 110px;
  margin-bottom: 90px;
  padding: 30px;
}

.payment-section h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.45fr));
  align-items: stretch;
  gap: 58px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about img {
  width: 158px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.72;
}

.footer-about p {
  max-width: 330px;
  margin-bottom: 12px;
  color: rgba(170, 184, 204, 0.72);
  font-weight: 520;
  line-height: 1.45;
}

.footer-about span {
  color: rgba(170, 184, 204, 0.58);
  font-size: 14px;
  font-weight: 600;
}

.footer-column {
  display: grid;
  align-self: end;
  align-content: start;
  gap: 14px;
  min-height: 96px;
}

.footer-column h3 {
  margin: 0 0 2px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-weight: 620;
}

.site-footer a:hover {
  color: var(--text);
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(2, 8, 22, 0.76);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(4, 176, 248, 0.24), transparent 32rem),
    radial-gradient(circle at 82% 8%, rgba(35, 50, 237, 0.16), transparent 34rem),
    linear-gradient(180deg, #020816 0%, #010511 58%, #02040b 100%);
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 24px auto 80px;
}

.legal-title {
  display: grid;
  gap: 18px;
  justify-items: start;
  min-width: 0;
  margin-bottom: 30px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 0%, rgba(4, 176, 248, 0.34), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(7, 16, 32, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(150%);
}

.legal-title h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 70px);
}

.legal-document {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055)),
    rgba(246, 250, 255, 0.9);
  box-shadow: var(--shadow);
  color: #142033;
}

.legal-document h2 {
  margin: 34px 0 14px;
  color: #071225;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 780;
  line-height: 1.2;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  margin-bottom: 15px;
  color: #334155;
  font-size: 17px;
  font-weight: 430;
  line-height: 1.82;
}

.legal-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-home-link:hover {
  transform: translateY(0);
}

@keyframes floatLogo {
  0% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
  28% {
    transform: translate3d(10px, -14px, 0) rotate(1.1deg);
  }
  58% {
    transform: translate3d(-8px, -5px, 0) rotate(-0.6deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes liquidDrift {
  0%,
  100% {
    transform: translate(-18%, -12%) rotate(-10deg) scale(0.94);
    border-radius: 62% 38% 54% 46% / 48% 61% 39% 52%;
  }
  45% {
    transform: translate(19%, 12%) rotate(15deg) scale(1.08);
    border-radius: 38% 62% 43% 57% / 59% 42% 58% 41%;
  }
  70% {
    transform: translate(4%, -18%) rotate(4deg) scale(1);
    border-radius: 54% 46% 65% 35% / 42% 60% 40% 58%;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes textGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .pricing-grid,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-visual {
    justify-self: stretch;
    width: 100%;
  }

  .price-card.featured {
    transform: none;
  }

  .device-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-section {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 54px;
    gap: 12px;
    align-items: center;
    width: min(100% - 24px, 1180px);
    padding: 10px 12px;
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
      rgba(2, 8, 22, 0.48);
  }

  .menu-toggle {
    display: none;
  }

  .cabinet-button {
    width: 54px;
    min-height: 54px;
    padding: 0;
    margin-right: 0;
  }

  .cabinet-button span {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .period-toggle {
    width: min(280px, 100%);
  }

  .period-toggle button {
    min-height: 46px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .legal-header,
  .section-shell,
  .site-footer,
  .legal-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    margin-left: 2px;
  }

  .brand img {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(44px, 14.3vw, 62px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 18px;
  }

  .hero-visual {
    display: none;
  }

  .device-grid {
    display: flex;
    width: max-content;
    overflow: visible;
    gap: 8px;
    padding-bottom: 4px;
    animation: deviceTrain 28s linear infinite;
  }

  .devices-section {
    overflow: hidden;
  }

  .device-grid span {
    display: flex !important;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .device-grid svg {
    width: 22px;
    height: 22px;
  }

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

  .period-toggle {
    position: relative;
    display: block;
    width: min(100%, 430px);
    max-width: none;
    height: 160px;
    margin-inline: auto;
    padding: 10px 14px;
    border-radius: 32px;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.028)),
      rgba(9, 20, 38, 0.32);
    box-shadow:
      0 24px 72px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  }

  .period-toggle::before {
    content: "";
    position: absolute;
    inset: 55px 10px;
    z-index: 0;
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(4, 176, 248, 0.28), rgba(35, 50, 237, 0.32)),
      rgba(255, 255, 255, 0.09);
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.2),
      0 14px 36px rgba(4, 176, 248, 0.13);
  }

  .period-toggle button {
    position: absolute;
    top: 50%;
    left: 14px;
    right: 14px;
    z-index: 1;
    min-width: 0;
    min-height: 44px;
    transform: translateY(calc(-50% + (var(--wheel-distance, 0) * 46px))) scale(0.88);
    opacity: 0;
    color: rgba(206, 219, 236, 0.68);
    background: transparent;
    font-size: 14px;
    pointer-events: none;
    transition:
      transform 360ms cubic-bezier(0.2, 0.85, 0.22, 1),
      opacity 260ms ease,
      color 220ms ease,
      filter 220ms ease;
  }

  .period-toggle button.is-prev,
  .period-toggle button.is-next {
    opacity: 0.44;
    pointer-events: auto;
    filter: blur(0.15px);
  }

  .period-toggle button.is-prev {
    transform: translateY(calc(-50% - 46px)) scale(0.9);
  }

  .period-toggle button.is-next {
    transform: translateY(calc(-50% + 46px)) scale(0.9);
  }

  .period-toggle button.is-far {
    opacity: 0;
    pointer-events: none;
  }

  .period-toggle button.is-active {
    opacity: 1;
    color: var(--text);
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
  }

  .period-toggle button strong {
    padding: 2px 7px;
    font-size: 10px;
    font-weight: 560;
  }

  .period-toggle button.active {
    background: transparent;
    box-shadow: none;
  }

  .plan-gb {
    border-color: rgba(247, 200, 106, 0.54);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
      linear-gradient(150deg, rgba(247, 200, 106, 0.26), rgba(35, 50, 237, 0.12)),
      rgba(28, 20, 8, 0.54);
  }

  .pricing-section,
  .devices-section,
  .payment-section {
    padding-top: 54px;
  }

  .split-section {
    padding-top: 56px;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 0;
    padding: 16px;
    text-align: center;
  }

  .feature-card svg {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .feature-card p {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .legal-title {
    padding: 26px;
  }

  .legal-title > * {
    max-width: 100%;
  }

  .legal-title .button,
  .legal-bottom .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
    padding-top: 52px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-about img {
    width: 132px;
    margin-bottom: 18px;
  }

  .footer-about p {
    max-width: 310px;
    margin-bottom: 10px;
  }

  .footer-column {
    align-content: start;
    gap: 11px;
    min-height: 0;
  }

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

@keyframes deviceTrain {
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
  margin-left: 8px;
