:root {
  color-scheme: dark;
  --bg: #03101a;
  --bg-soft: #071b27;
  --panel: rgba(4, 19, 31, 0.74);
  --panel-strong: rgba(5, 18, 30, 0.94);
  --line: rgba(0, 196, 255, 0.36);
  --line-strong: rgba(0, 204, 255, 0.78);
  --text: #f4fbff;
  --muted: #9eb7c9;
  --faint: #668596;
  --accent: #a7ff1a;
  --accent-2: #00c8ff;
  --danger: #ff5c7a;
  --shadow: 0 24px 90px rgba(0, 7, 14, 0.58);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 26%, rgba(0, 200, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(167, 255, 26, 0.08), transparent 24%),
    linear-gradient(180deg, #020811 0%, #03101a 46%, #01070d 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(105deg, transparent 22%, rgba(0, 200, 255, 0.18) 22.25%, transparent 22.8%),
    linear-gradient(112deg, transparent 42%, rgba(167, 255, 26, 0.14) 42.25%, transparent 42.8%),
    linear-gradient(118deg, transparent 64%, rgba(0, 200, 255, 0.13) 64.25%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, auto, 58px 58px, 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body::after {
  position: fixed;
  inset: -25% -20%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(105deg, transparent 15%, rgba(0, 200, 255, 0.18) 16%, transparent 17%),
    linear-gradient(112deg, transparent 35%, rgba(167, 255, 26, 0.16) 36%, transparent 37%),
    linear-gradient(118deg, transparent 55%, rgba(0, 200, 255, 0.12) 56%, transparent 57%);
  animation: drift 13s linear infinite;
}

button,
input,
select {
  font: inherit;
}

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

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

.site-shell {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 7px clamp(5px, 1.5vw, 28px) 40px;
}

.topbar {
  position: sticky;
  top: 8px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 10px 20px 10px 48px;
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 0;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  background: rgba(1, 8, 15, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36), inset 0 0 34px rgba(0, 200, 255, 0.04);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--text);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 42px;
  border: 1px solid rgba(167, 255, 26, 0.28);
  border-radius: 8px 2px 8px 2px;
  color: var(--accent);
  background:
    linear-gradient(135deg, rgba(167, 255, 26, 0.12), transparent 62%),
    rgba(167, 255, 26, 0.03);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -1px;
  text-shadow: 0 0 22px rgba(167, 255, 26, 0.42);
  box-shadow:
    inset 0 0 18px rgba(167, 255, 26, 0.05),
    0 0 24px rgba(167, 255, 26, 0.08);
}

.brand-mark::after {
  position: absolute;
  right: -5px;
  top: 9px;
  width: 9px;
  height: 24px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(167, 255, 26, 0.6);
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  color: #dcece7;
  font-size: 15px;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.support-link {
  justify-self: end;
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(0, 200, 255, 0.7);
  border-radius: 8px;
  color: var(--accent-2);
  background: rgba(4, 24, 38, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.support-link::before {
  position: absolute;
  inset: 12px;
  content: "";
  background: currentColor;
  clip-path: polygon(4% 44%, 96% 4%, 75% 94%, 51% 65%, 33% 82%, 39% 59%);
}

.top-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(2, 11, 20, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(167, 255, 26, 0.85);
  content: "";
}

.bolt-icon,
.search-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.bolt-icon::before {
  position: absolute;
  inset: 1px 4px;
  content: "";
  background: currentColor;
  clip-path: polygon(56% 0, 8% 56%, 43% 56%, 32% 100%, 92% 38%, 55% 38%);
}

.search-icon::before {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.search-icon::after {
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 9px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.86fr);
  gap: clamp(28px, 5vw, 92px);
  align-items: center;
  min-height: 570px;
  padding: clamp(38px, 5vw, 76px) clamp(18px, 3.2vw, 50px) 20px;
  overflow: hidden;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(1, 8, 15, 0.76), rgba(1, 8, 15, 0.3) 46%, rgba(1, 8, 15, 0.72)),
    radial-gradient(ellipse at 0% 72%, rgba(0, 200, 255, 0.16), transparent 25%),
    radial-gradient(circle at 22% 44%, rgba(0, 200, 255, 0.18), transparent 28%),
    linear-gradient(120deg, transparent 18%, rgba(0, 200, 255, 0.42) 18.5%, transparent 20%),
    linear-gradient(126deg, transparent 47%, rgba(167, 255, 26, 0.28) 47.5%, transparent 49%),
    linear-gradient(130deg, transparent 76%, rgba(0, 200, 255, 0.32) 76.5%, transparent 78%);
  opacity: 0.9;
}

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

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 5.9vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.6);
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #b7ccc5;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 36px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 780;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  color: #02110c;
  background: linear-gradient(135deg, #bbff23, #6fff00);
  box-shadow: 0 18px 50px rgba(167, 255, 26, 0.28), inset 0 0 18px rgba(255, 255, 255, 0.22);
}

.ghost-button {
  color: var(--text);
  background: rgba(3, 15, 26, 0.7);
  border-color: rgba(0, 200, 255, 0.58);
  box-shadow: inset 0 0 20px rgba(0, 200, 255, 0.06);
}

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

.primary-button:disabled,
.ghost-button:disabled {
  cursor: wait;
  opacity: 0.56;
  transform: none;
}

.compact {
  min-height: 52px;
  padding-inline: 20px;
  font-size: 15px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 30px;
  color: var(--accent-2);
}

.hero-benefits span {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 16px 14px 14px 62px;
  border: 1px solid rgba(0, 200, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.12), transparent 48%),
    rgba(2, 13, 22, 0.56);
  box-shadow:
    inset 0 0 28px rgba(0, 200, 255, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-benefits span::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-benefits span::before {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 200, 255, 0.7);
  border-radius: 8px;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(167, 255, 26, 0.18), transparent 58%),
    rgba(0, 200, 255, 0.08);
  box-shadow:
    0 0 20px rgba(0, 200, 255, 0.28),
    inset 0 0 18px rgba(0, 200, 255, 0.08);
}

.hero-benefits span:nth-child(1)::after {
  left: 24px;
  top: 27px;
  width: 14px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 11px 11px;
  clip-path: polygon(50% 0, 100% 22%, 86% 78%, 50% 100%, 14% 78%, 0 22%);
}

.hero-benefits span:nth-child(2)::after {
  left: 27px;
  top: 25px;
  width: 14px;
  height: 19px;
  background: currentColor;
  clip-path: polygon(55% 0, 8% 52%, 42% 52%, 30% 100%, 94% 38%, 58% 38%);
}

.hero-benefits span:nth-child(3)::after {
  left: 24px;
  top: 24px;
  color: currentColor;
  content: "%";
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.hero-benefits span:nth-child(4)::after {
  left: 24px;
  top: 25px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 5px -5px 0 -4px currentColor;
}

.hero-benefits b {
  color: #dffaff;
  font-size: 15px;
  line-height: 1.05;
}

.hero-benefits small {
  max-width: 125px;
  color: #8fa7b7;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.field span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  position: absolute;
  left: 36px;
  right: auto;
  bottom: 56px;
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: min(760px, 52vw);
  max-width: none;
  opacity: 0.6;
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at 45% 54%, black 0%, black 44%, transparent 72%);
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
  animation: floatAsset 7s ease-in-out infinite;
}

.motion-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.95), rgba(167, 255, 26, 0.95), transparent);
  transform: rotate(-17deg);
  animation: streak 3.8s ease-in-out infinite;
}

.line-one {
  top: 16%;
  left: 0;
  width: 52%;
}

.line-two {
  right: 8%;
  bottom: 22%;
  width: 42%;
  animation-delay: 1.1s;
}

.topup-panel {
  position: relative;
  z-index: 4;
  padding: clamp(22px, 2.3vw, 30px);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  clip-path: polygon(24px 0, calc(100% - 18px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 18px) 100%, 24px 100%, 0 calc(100% - 22px), 0 22px);
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(4, 19, 31, 0.96), rgba(2, 10, 17, 0.93));
  box-shadow: var(--shadow), inset 0 0 42px rgba(0, 200, 255, 0.08);
  backdrop-filter: blur(22px);
}

.topup-panel::before,
.topup-panel::after {
  position: absolute;
  width: 64px;
  height: 20px;
  border-color: var(--accent-2);
  content: "";
  pointer-events: none;
}

.topup-panel::before {
  top: -1px;
  left: 28px;
  border-top: 2px solid;
}

.topup-panel::after {
  right: 28px;
  bottom: -1px;
  border-bottom: 2px solid;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.22);
}

.panel-head h2,
.section-title h2 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 36px);
  line-height: 1.05;
  letter-spacing: 0;
}

.panel-head span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(167, 255, 26, 0.28);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(167, 255, 26, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.field input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(0, 200, 255, 0.38);
  border-radius: 8px;
  color: var(--text);
  background: rgba(2, 13, 23, 0.78);
  padding: 0 16px;
  outline: none;
}

.field small {
  color: #6f8798;
  font-size: 12px;
}

.field-label {
  margin-top: 18px;
  color: #d4e4ed;
  font-size: 14px;
  font-weight: 760;
}

.custom-amount {
  position: relative;
}

.custom-amount::after {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: #e7f5fb;
  content: "₽";
}

.custom-amount input {
  padding-right: 42px;
}

.field input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.14);
}

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

.amount-grid button {
  min-height: 44px;
  border: 1px solid rgba(0, 200, 255, 0.5);
  border-radius: 8px;
  color: #d9fff5;
  background: rgba(3, 20, 34, 0.84);
  cursor: pointer;
  font-weight: 760;
}

.amount-grid button.active {
  color: #07120f;
  border-color: transparent;
  background: linear-gradient(135deg, #bbff23, #6fff00);
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.flow-rail span {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  align-items: center;
  padding: 8px 11px;
  border: 1px solid rgba(0, 200, 255, 0.34);
  border-radius: 8px;
  color: var(--faint);
  text-align: left;
  font-size: 13px;
  font-weight: 760;
}

.flow-rail b {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.flow-rail small {
  color: #718898;
  font-size: 10px;
  line-height: 1;
}

.flow-rail span.active {
  color: var(--accent);
  border-color: rgba(167, 255, 26, 0.72);
  background: rgba(167, 255, 26, 0.08);
}

.form-actions {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
  margin-top: 14px;
}

.form-actions.single-action {
  grid-template-columns: 1fr;
}

.safe-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.result-box {
  display: block;
  min-height: 44px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 6, 12, 0.38);
  font-size: 14px;
  line-height: 1.45;
}

.result-box[data-tone="success"] {
  color: #9dffcc;
  border-color: rgba(24, 242, 163, 0.5);
}

.result-box[data-tone="error"] {
  color: #ffc5d0;
  border-color: rgba(255, 92, 122, 0.58);
}

.feature-cards,
.content-band {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 16, 27, 0.72);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.feature-cards article {
  min-height: 228px;
  padding: 24px 28px;
  border: 1px solid rgba(0, 200, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.13), transparent 48%),
    rgba(2, 13, 22, 0.86);
  box-shadow: inset 0 0 42px rgba(0, 200, 255, 0.05);
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-icon {
  position: relative;
  order: -1;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--accent-2);
}

.chart-icon::before {
  position: absolute;
  inset: 4px 3px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.chart-icon::after {
  position: absolute;
  left: 7px;
  right: 2px;
  bottom: 7px;
  height: 17px;
  content: "";
  background: linear-gradient(135deg, transparent 0 42%, currentColor 43% 51%, transparent 52%);
}

.shield-icon::before {
  position: absolute;
  inset: 2px 5px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 12px 12px 16px 16px;
  clip-path: polygon(50% 0, 100% 20%, 92% 72%, 50% 100%, 8% 72%, 0 20%);
}

.shield-icon::after {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.feature-cards .card-head span {
  display: block;
  color: #d6f6ff;
  font-size: 21px;
  font-weight: 820;
}

.feature-cards strong {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.feature-cards p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.chart-line {
  width: 100%;
  height: 70px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.16);
  background:
    linear-gradient(160deg, transparent 0 10%, rgba(167, 255, 26, 0.28) 11%, transparent 12% 24%, rgba(167, 255, 26, 0.35) 25%, transparent 26% 38%, rgba(167, 255, 26, 0.38) 39%, transparent 40% 52%, rgba(167, 255, 26, 0.46) 53%, transparent 54% 66%, rgba(167, 255, 26, 0.5) 67%, transparent 68%);
  clip-path: polygon(0 78%, 8% 70%, 16% 72%, 24% 56%, 32% 62%, 40% 43%, 48% 50%, 58% 32%, 68% 37%, 78% 20%, 88% 24%, 100% 8%, 100% 100%, 0 100%);
}

.stable-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(167, 255, 26, 0.32);
  border-radius: 8px;
  color: var(--accent);
  background: rgba(167, 255, 26, 0.08);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.stable-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: 28px;
  bottom: 22px;
  width: 112px;
  height: 84px;
  border: 1px solid rgba(0, 200, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 200, 255, 0.18) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 200, 255, 0.18) 49% 51%, transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(0, 200, 255, 0.18), rgba(2, 13, 22, 0.6));
  box-shadow: 0 0 48px rgba(0, 200, 255, 0.12);
  content: "";
  opacity: 0.8;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.section-title p,
.process-grid p,
.info-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #03110d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 900;
}

.process-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.info-section article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.1), transparent 48%),
    rgba(3, 16, 27, 0.72);
}

.info-section span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-section h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.12;
}

.info-section a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-2);
  font-weight: 800;
}

.faq-section {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 16, 27, 0.72);
}

.faq-list {
  margin-top: 26px;
}

details {
  border-top: 1px solid rgba(0, 200, 255, 0.22);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid rgba(0, 200, 255, 0.22);
}

summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 820;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-top: 34px;
  padding: 28px 0 10px;
  border-top: 1px solid rgba(0, 200, 255, 0.22);
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer div {
  flex-direction: column;
}

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

.site-footer a {
  color: var(--accent-2);
  font-weight: 760;
}

.legal-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
}

.legal-page article {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(0, 200, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 200, 255, 0.08), transparent 48%),
    rgba(3, 16, 27, 0.78);
}

.legal-page h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.legal-page h2 {
  margin: 32px 0 10px;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 30px);
}

.legal-page p {
  color: var(--muted);
  line-height: 1.65;
}

.legal-page a {
  color: var(--accent-2);
}

@keyframes drift {
  from {
    transform: translate3d(-3%, -2%, 0);
  }
  to {
    transform: translate3d(3%, 2%, 0);
  }
}

@keyframes floatAsset {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(1deg);
  }
}

@keyframes streak {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-18px) rotate(-17deg);
  }
  50% {
    opacity: 1;
    transform: translateX(20px) rotate(-17deg);
  }
}

@media (max-width: 980px) {
  .topbar,
  .hero-section,
  .feature-cards,
  .info-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    position: relative;
    top: 0;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 16px;
    min-height: auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    padding: 4px 0 2px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 22px 28px;
  }

  .hero-visual {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 38%;
    z-index: 1;
    margin: 0;
  }

  .hero-visual img {
    width: min(620px, 96vw);
    opacity: 0.24;
  }

  .topup-panel {
    order: 2;
  }

  .section-title,
  .process-grid,
  .info-section {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .section-title {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-shell {
    padding: 6px 10px 34px;
  }

  .topbar {
    clip-path: none;
    border-radius: 8px;
    padding: 12px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 54px;
    height: 34px;
    font-size: 23px;
  }

  .brand-mark::after {
    right: -4px;
    top: 8px;
    width: 7px;
    height: 18px;
  }

  .top-actions {
    gap: 8px;
  }

  .status-pill {
    display: none;
  }

  .support-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    justify-self: end;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-section {
    padding: 34px 14px 22px;
  }

  .hero-actions,
  .hero-benefits,
  .form-actions,
  .amount-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-benefits {
    width: 100%;
    gap: 10px;
  }

  .hero-benefits span {
    min-height: 74px;
    padding-top: 14px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .panel-head {
    align-items: start;
    flex-direction: column;
  }

  .content-band,
  .info-section article,
  .faq-section {
    padding: 22px;
  }

  .topup-panel {
    clip-path: none;
    border-radius: 8px;
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }

  .feature-cards article,
  .info-section article {
    min-height: auto;
  }

  .site-footer nav {
    flex-direction: column;
  }

  .service-card::after {
    opacity: 0.35;
  }
}

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