:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #090b10;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(12, 14, 20, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(99, 102, 241, 0.4);
  --text: #f8fafc;
  --muted: #a7adbb;
  --soft: #737b8c;
  --indigo: #4f46e5;
  --indigo-light: #6366f1;
  --green: #22c55e;
  --radius: 8px;
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image:
    radial-gradient(circle at 50% 18%, black 0%, black 28%, transparent 70%),
    linear-gradient(180deg, black 0%, black 68%, transparent 100%);
  opacity: 0.34;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 18%, rgba(99, 102, 241, 0.18), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.07), transparent 32%);
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

[x-cloak] {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 76px);
  background: rgba(9, 10, 15, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.brand,
.nav,
.nav a,
.topbar__action,
.hero__actions,
.purchase-mode,
.button,
.server-card__head,
.status-dot,
.server-options button,
.checkout__actions,
.promo-code,
.faq-item button {
  display: flex;
  align-items: center;
}

.topbar__action,
.button,
.purchase-mode__button,
.billing-switch button,
.server-options button,
.faq-item button,
.promo-field button,
.promo-code button,
.checkout-success button {
  transition:
    transform 320ms var(--ease-soft),
    border-color 260ms ease,
    background 260ms ease,
    color 220ms ease,
    box-shadow 320ms ease,
    opacity 260ms ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  overflow: hidden;
  will-change: transform;
}

.brand {
  gap: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__name {
  color: var(--text);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  padding: 0 9px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.brand-status__dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.brand-status__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.5);
  animation: statusPing 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.brand-status__dot span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.nav {
  gap: clamp(14px, 2.6vw, 30px);
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.topbar__action {
  gap: 8px;
  transition:
    transform 320ms var(--ease-soft),
    color 220ms ease,
    background 220ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.topbar__account {
  cursor: pointer;
}

.nav a {
  border-radius: 12px;
  padding: 6px 14px;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav svg,
.topbar__action svg,
.button svg,
.benefit svg,
.setup-steps svg,
.faq-item svg,
.modal__close svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.topbar__action {
  position: relative;
  min-height: 40px;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 500;
}

.topbar__action:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(99, 102, 241, 0.7);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.topbar__action:active {
  transform: scale(0.98);
}

.topbar__action svg {
  transition: transform 300ms ease;
}

.topbar__action:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding: 92px 0 84px;
}

.hero__copy {
  max-width: 660px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 999px;
  padding: 4px 12px;
  margin: 0 0 18px;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.1);
  font-size: 12px;
  font-weight: 500;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--indigo-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(48px, 7.2vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero__lead,
.section__head p,
.benefit p,
.setup-steps p,
.support-panel p,
.faq-item p,
.review-card p,
.checkout__note,
.promo-modal p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: clamp(18px, 2vw, 21px);
}

.hero__actions,
.checkout__actions {
  gap: 12px;
  flex-wrap: wrap;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
}

.platforms svg {
  width: 15px;
  height: 15px;
  color: #a5b4fc;
}

.button {
  position: relative;
  min-height: 52px;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 340ms var(--ease-soft),
    border-color 280ms ease,
    box-shadow 340ms ease,
    color 260ms ease,
    background 280ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.22),
    transparent 32%
  );
  opacity: 0;
  transition: opacity 300ms ease;
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.button:active {
  transform: scale(0.98);
}

.button--primary {
  border: 1px solid rgba(129, 140, 248, 0.5);
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.button--primary:hover {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  filter: brightness(1.1);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  color: var(--muted);
}

.button--secondary:hover {
  border-color: rgba(99, 102, 241, 0.5);
  color: var(--text);
}

.group svg {
  transition: transform 300ms ease;
}

.group:hover svg:first-child:not(:last-child) {
  transform: rotate(12deg) scale(1.1);
}

.group:hover svg:last-child {
  transform: translateX(4px);
}

.metrics {
  width: min(610px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.metrics div {
  min-height: 104px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.metrics span {
  color: var(--soft);
  font-size: 14px;
}

.metric-icon {
  display: flex;
  align-items: center;
  height: 42px;
}

.metric-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sbp-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
  object-fit: contain;
  vertical-align: middle;
}

.sbp-icon--inline {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  vertical-align: -0.48em;
}

.server-card,
.plan,
.benefit,
.setup-steps article,
.support-panel,
.modal__panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.account-modal {
  width: min(640px, 100%);
}

.account-auth,
.account-panel,
.account-list {
  display: grid;
  gap: 14px;
}

.account-auth p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.telegram-login {
  min-height: 42px;
}

.account-user,
.account-subscription {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.account-user {
  padding: 12px 14px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius);
  background: rgba(99, 102, 241, 0.08);
}

.account-user span {
  color: var(--text);
  font-weight: 800;
}

.account-user button,
.account-subscription button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.account-subscription {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.account-subscription.is-active {
  border-color: rgba(34, 197, 94, 0.25);
}

.account-subscription div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-subscription span {
  color: #86efac;
  font-size: 12px;
  font-weight: 800;
}

.account-subscription strong {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-subscription small,
.account-empty span {
  color: var(--muted);
}

.account-subscription button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.account-empty {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.field > span em {
  color: var(--soft);
  font-size: 12px;
  font-style: normal;
}

.server-card {
  position: relative;
  padding: 24px;
  backdrop-filter: blur(18px);
  overflow: visible;
}

.server-card__glow {
  position: absolute;
  inset: -62px -46px auto auto;
  z-index: -10;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.2);
  filter: blur(64px);
}

.server-card__head {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.server-card__head span,
.server-display span {
  display: block;
  color: var(--soft);
  font-size: 13px;
}

.server-card__head strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}

.status-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
}

.connected-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 999px;
  padding: 0 12px;
  color: #bbf7d0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.13), rgba(16, 185, 129, 0.05));
  font-size: 13px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 18px rgba(34, 197, 94, 0.1);
}

.status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.status-dot span {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.72);
}

.server-display {
  display: grid;
  grid-template-columns: minmax(76px, 0.8fr) minmax(0, 1.45fr) minmax(68px, 0.85fr) minmax(76px, 0.95fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  margin-bottom: 18px;
}

.server-display__flag {
  display: grid;
  place-items: center;
  font-size: 38px;
}

.flag-img {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #22283a;
  box-shadow:
    0 2px 7px rgba(0, 0, 0, 0.26),
    0 0 0 2px rgba(255, 255, 255, 0.04);
}

.flag-img--large {
  width: 58px;
  height: 58px;
}

.server-display div {
  min-width: 0;
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.server-display .server-display__location strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.server-display strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.server-number {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 70px;
  font-variant-numeric: tabular-nums;
  transition: opacity 180ms ease, transform 180ms ease;
}

.server-number svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #facc15;
}

.server-number.is-refreshing {
  opacity: 0.55;
  transform: translateY(-1px);
}

.server-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.server-options button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition:
    transform 340ms var(--ease-soft),
    border-color 280ms ease,
    color 260ms ease,
    background 280ms ease,
    box-shadow 340ms ease;
}

.server-options button:hover,
.server-options button.is-active {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(99, 102, 241, 0.5);
  color: var(--text);
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.18);
}

.server-options button.is-active {
  border-color: rgba(99, 102, 241, 0.6);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.18),
    0 0 28px rgba(99, 102, 241, 0.22);
}

.flag {
  display: block;
  flex: 0 0 auto;
}

.server-option__main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.server-option__main strong {
  color: var(--text);
  font-size: 15px;
}

.server-option__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.server-ping,
.server-percent {
  color: var(--muted);
  font-size: 12px;
  min-width: 42px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.server-load {
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.server-load span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #818cf8);
}

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

.reveal-item {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 18px, 0) scale(0.985);
  transition:
    opacity 720ms var(--ease-soft),
    filter 720ms var(--ease-soft),
    transform 720ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, filter, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.section__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section__head--wide {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.purchase-mode {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.billing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -8px 0 22px;
}

.billing-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.billing-switch button {
  min-width: 112px;
  min-height: 42px;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.billing-switch button:hover {
  color: var(--text);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.22);
}

.billing-switch button.is-active {
  color: var(--text);
  background: rgba(99, 102, 241, 0.18);
}

.period-discount {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: 999px;
  padding: 0 14px;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.1);
  font-size: 14px;
  font-weight: 700;
}

.period-discount svg {
  width: 16px;
  height: 16px;
}

.purchase-mode__button {
  min-width: 112px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 300ms ease,
    border-color 300ms ease,
    background 300ms ease,
    transform 300ms ease;
}

.purchase-mode__button:hover {
  color: var(--text);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.24);
}

.purchase-mode__button.is-active {
  color: var(--text);
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(99, 102, 241, 0.45);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.plans.is-updating {
  opacity: 0;
  transform: translateY(6px);
}

.plan {
  position: relative;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition:
    transform 360ms var(--ease-soft),
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 360ms ease;
}

.plan:hover,
.benefit:hover,
.setup-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(255, 255, 255, 0.048);
}

.plan--popular {
  border-color: rgba(99, 102, 241, 0.45);
}

.plan__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, 0.42);
  border-radius: 999px;
  padding: 0 10px;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.plan h3 {
  padding-right: 110px;
  margin-bottom: 20px;
  font-size: 24px;
}

.plan__price {
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 850;
  line-height: 1;
}

.plan__price small {
  color: var(--soft);
  font-size: 14px;
  font-weight: 600;
}

.plan__full {
  min-height: 21px;
  color: var(--muted);
  font-size: 14px;
}

.plan__old {
  min-height: 18px;
  color: var(--soft);
  font-size: 13px;
  text-decoration: line-through;
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan li svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--indigo-light);
}

.plan li .sbp-icon {
  width: 24px;
  height: 24px;
  margin: -2px 3px 0 -1px;
  transform: none;
}

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

.benefit-grid,
.setup-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit,
.setup-steps article {
  min-height: 220px;
  padding: 28px;
  transition:
    transform 360ms var(--ease-soft),
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 360ms ease;
}

.benefit svg,
.setup-steps svg {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
  color: var(--indigo-light);
}

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

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.support-panel h2 {
  margin-bottom: 12px;
}

.support-panel p {
  max-width: 640px;
  margin-bottom: 0;
}

.support-panel .button {
  min-width: 178px;
}

.faq {
  max-width: 900px;
}

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
}

.faq-item button:hover {
  color: #c7d2fe;
  transform: translateX(3px);
}

.faq-item p {
  margin: -4px 0 24px;
  max-width: 720px;
}

.reviews {
  width: 100%;
  overflow: hidden;
  padding-bottom: 88px;
}

.reviews .section__head {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 30px;
}

.reviews__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.reviews__track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: marquee 76s linear infinite;
}

.reviews__track:hover {
  animation-play-state: paused;
}

.review-card {
  width: 310px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.review-card__meta,
.review-card__identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__meta {
  margin-bottom: 12px;
}

.review-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--soft);
  font-size: 12px;
}

.review-card__meta svg {
  width: 14px;
  height: 14px;
  color: #a5b4fc;
}

.review-card__meta b {
  color: #facc15;
  font-size: 13px;
}

.review-card__identity {
  margin-bottom: 10px;
}

.review-card strong {
  color: var(--text);
}

.review-card time {
  color: var(--soft);
  font-size: 12px;
}

.review-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.-translate-y-1 {
  transform: translateY(-4px);
}

.translate-y-0 {
  transform: translateY(0);
}

.transition {
  transition-property: opacity, transform, filter;
}

.ease-out {
  transition-timing-function: var(--ease-soft);
}

.duration-200 {
  transition-duration: 300ms;
}

.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 38px 0 46px;
  color: var(--soft);
  border-top: 1px solid var(--line);
}

.footer span {
  color: var(--text);
  font-weight: 800;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal:not([hidden]) .modal__backdrop {
  animation: fadeIn 260ms var(--ease-soft) both;
}

.modal:not([hidden]) .modal__panel {
  animation: modalIn 420ms var(--ease-soft) both;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  width: min(540px, 100%);
  padding: 28px;
  background: rgba(13, 15, 23, 0.9);
  backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.15);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--text);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.24);
}

.checkout__summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 14px;
  margin: 22px 0;
  color: var(--muted);
  background: rgba(99, 102, 241, 0.1);
}

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

.checkout__summary small {
  display: block;
  margin-bottom: 4px;
  color: #818cf8;
  font-size: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
}

.field small {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
}

.field input {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  color: var(--text);
  caret-color: #c7d2fe;
  background: rgba(255, 255, 255, 0.03);
  outline: none;
  line-height: 44px;
  transition: border-color 200ms ease, background 200ms ease;
}

.field input::placeholder {
  color: rgba(248, 250, 252, 0.46);
  opacity: 1;
}

.field input:focus {
  background: rgba(255, 255, 255, 0.05);
}

.promo-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.field--icon .field__control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 200ms ease;
}

.field--icon .field__control.is-empty-focus::after,
.field--icon .field__control:focus-within:has(input:placeholder-shown)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 39px;
  width: 2px;
  height: 20px;
  border-radius: 999px;
  background: #f8fafc;
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.75);
  transform: translateY(-50%);
  animation: checkoutCaretBlink 1s steps(2, start) infinite;
  pointer-events: none;
}

.field--icon .field__control:focus-within {
  border-color: rgba(99, 102, 241, 0.8);
  background: rgba(99, 102, 241, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(99, 102, 241, 0.45);
}

.field--icon .field__control > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #a5b4fc;
}

.field--icon .field__control input {
  min-width: 0;
  flex: 1 1 auto;
  height: 22px;
  width: auto;
  padding: 0;
  color: #f8fafc;
  caret-color: #c7d2fe;
  background: transparent;
  line-height: 22px;
}

.promo-field button,
.promo-code button {
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.promo-field button {
  min-height: 100%;
  padding: 0 12px;
  font-size: 12px;
}

.promo-field button:hover,
.promo-code button:hover {
  border-color: rgba(99, 102, 241, 0.5);
  color: #c7d2fe;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.2);
}

.success-modal__lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-success {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(34, 197, 94, 0.32);
  border-radius: 16px;
  padding: 14px;
  margin: 16px 0;
  background: rgba(34, 197, 94, 0.08);
}

.checkout-success > svg {
  width: 20px;
  height: 20px;
  color: #86efac;
}

.checkout-success span {
  color: var(--muted);
}

.checkout-success code {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #bbf7d0;
}

.checkout-success button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: var(--radius);
  padding: 0 12px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.08);
  cursor: pointer;
}

.checkout-success button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.18);
}

.checkout-success button svg {
  width: 15px;
  height: 15px;
}

.checkout__actions {
  margin-top: 22px;
}

.checkout__actions .button {
  flex: 1 1 220px;
}

.checkout__actions .button {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}

.checkout__actions .button:hover {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.checkout__note {
  min-height: 22px;
  margin: 16px 0 0;
  font-size: 14px;
}

.payment-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--soft);
  font-size: 13px;
}

.payment-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.035);
}

.payment-trust i {
  display: inline-flex;
}

.payment-trust svg {
  width: 15px;
  height: 15px;
  color: #a5b4fc;
}

.payment-trust__sbp {
  width: 52px;
  justify-content: center;
  padding: 0 8px !important;
}

.payment-trust__sbp .sbp-icon {
  width: 34px;
  height: 34px;
}

.promo-modal {
  width: min(500px, 100%);
  padding: 32px;
  border-color: rgba(99, 102, 241, 0.3);
  border-radius: 24px;
  background: rgba(13, 15, 23, 0.95);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.2);
}

.promo-modal::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.22), transparent 48%);
}

.promo-modal__badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  padding: 0 12px;
  margin-bottom: 12px;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.15);
  font-size: 12px;
  font-weight: 700;
}

.promo-modal h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.03;
}

.promo-modal__text {
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.promo-modal__text span {
  color: #a5b4fc;
  font-weight: 800;
}

.promo-code {
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.promo-code strong {
  padding-left: 12px;
  color: #818cf8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.promo-code button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 16px;
  color: var(--text);
  background: #4f46e5;
  font-size: 14px;
  font-weight: 700;
}

.promo-code button:hover {
  background: #6366f1;
  border-color: transparent;
}

.promo-code button:active {
  transform: scale(0.95);
}

.promo-modal .button {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  margin-top: 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
  font-weight: 800;
}

.promo-modal .button:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.promo-modal .button:active {
  transform: scale(0.99);
}

.mobile-cta {
  display: none;
}

.reveal-item.plan,
.reveal-item.benefit,
.reveal-item.server-card,
.reveal-item.faq-item,
.reveal-item.billing-panel,
.reveal-item.section__head,
.support-panel > .reveal-item,
.hero__copy > .reveal-item,
.setup-steps .reveal-item {
  transition:
    opacity 720ms var(--ease-soft) var(--reveal-delay, 0s),
    filter 720ms var(--ease-soft) var(--reveal-delay, 0s),
    transform 720ms var(--ease-soft) var(--reveal-delay, 0s),
    border-color 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

@keyframes statusPing {
  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes statusPingCentered {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.55;
  }

  75%,
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}

@keyframes checkoutCaretBlink {
  50% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

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

  .reveal-item {
    filter: none;
    transform: translate3d(0, 8px, 0);
    transition-duration: 260ms;
  }

  .brand-status__dot::before,
  .status-dot::before {
    animation-duration: 2.4s;
  }

  .reviews__track {
    animation: marquee 42s linear infinite !important;
    animation-play-state: running !important;
  }

  .reviews__track:hover {
    animation-play-state: paused !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .server-card {
    max-width: 640px;
  }

  .plans,
  .benefit-grid,
  .setup-steps {
    grid-template-columns: 1fr;
  }

  .section__head--wide {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: relative;
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .brand-status {
    display: none;
  }

  .topbar__action {
    margin-left: auto;
  }

  .topbar__action + .topbar__action {
    display: none;
  }

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

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .metrics,
  .server-display {
    grid-template-columns: 1fr;
  }

  .server-display__flag {
    min-height: 78px;
  }

  .server-options button {
    align-items: center;
  }

  .server-load {
    width: 100%;
  }

  .checkout-success {
    grid-template-columns: 1fr;
  }

  .account-user,
  .account-subscription {
    align-items: stretch;
    flex-direction: column;
  }

  .account-subscription button {
    justify-content: center;
    width: 100%;
  }

  .metrics div,
  .server-display div {
    min-height: 78px;
  }

  .server-card,
  .plan,
  .benefit,
  .setup-steps article,
  .support-panel,
  .modal__panel {
    padding: 24px;
  }

  .purchase-mode {
    width: 100%;
  }

  .purchase-mode__button {
    flex: 1;
  }

  .billing-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .billing-switch {
    width: 100%;
  }

  .billing-switch button {
    flex: 1;
  }

  .reviews {
    padding-bottom: 72px;
  }

  .review-card {
    width: 280px;
  }

  .promo-modal {
    padding: 26px;
  }

  .promo-code {
    align-items: stretch;
    flex-direction: column;
  }

  .promo-code strong {
    padding: 8px 8px 0;
  }

  .promo-code button {
    justify-content: center;
    width: 100%;
  }

  .period-discount {
    justify-content: center;
    border-radius: 12px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(99, 102, 241, 0.34);
    border-radius: 16px;
    padding: 10px 10px 10px 14px;
    background: rgba(9, 10, 15, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    transform: translateY(140%);
    transition: transform 300ms ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta span {
    display: block;
    color: var(--soft);
    font-size: 12px;
  }

  .mobile-cta strong {
    display: block;
    margin-top: 2px;
    color: var(--text);
    font-size: 16px;
  }

  .mobile-cta .button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .support-panel .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
