:root {
  color-scheme: dark;
  --bg: #04142e;
  --panel: rgba(9, 34, 76, 0.72);
  --panel-border: rgba(130, 207, 255, 0.16);
  --text: #f3f9ff;
  --muted: #91abd0;
  --accent: #58c8ff;
  --accent-strong: #1677f2;
  --blue: #2f8dff;
  font-family: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html, body {
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -18%, #176ac1 0, transparent 42%),
    radial-gradient(circle at 110% 45%, rgba(48, 155, 255, 0.16), transparent 34%),
    linear-gradient(160deg, #071d42 0%, var(--bg) 72%);
}

body.is-loading {
  overflow: hidden;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(61, 164, 255, 0.34), transparent 32%),
    linear-gradient(160deg, #06182f 0%, #092a57 48%, #071426 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.app-loader::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, transparent, rgba(96, 211, 255, 0.12), transparent 30%);
  animation: loader-ambient 9s linear infinite;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 32px 24px 26px;
  text-align: center;
  border: 1px solid rgba(163, 223, 255, 0.22);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(26, 82, 143, 0.34), rgba(7, 23, 47, 0.48));
  box-shadow: 0 30px 80px rgba(0, 7, 20, 0.55), inset 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.vpn-logo {
  position: relative;
  width: min(62vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: -4px 0 12px;
}

.vpn-logo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: logo-pulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(80, 190, 255, 0.75));
}

.vpn-logo .wave {
  position: absolute;
  inset: 8%;
  z-index: 1;
  border: 2px solid rgba(120, 220, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(90, 190, 255, 0.6);
  animation: wave-out 2.8s ease-out infinite;
}

.vpn-logo .wave-2 {
  animation-delay: 0.7s;
}

.vpn-logo .wave-3 {
  animation-delay: 1.4s;
}

.loader-panel h2 {
  max-width: 330px;
  margin: 0;
  font-size: clamp(20px, 5.5vw, 27px);
  line-height: 1.12;
}

.loader-panel small {
  color: rgba(218, 238, 255, 0.68);
}

.loader-progress {
  width: min(100%, 270px);
  height: 4px;
  margin: 10px 0 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(167, 221, 255, 0.12);
}

.loader-progress span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #71e9ff, #4c9fff, transparent);
  box-shadow: 0 0 14px rgba(77, 210, 255, 0.82);
  animation: loader-progress 1.35s ease-in-out infinite;
}

button {
  font: inherit;
}

.ambient {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-one {
  top: 20%;
  right: -120px;
  background: var(--accent);
}

.ambient-two {
  bottom: 5%;
  left: -120px;
  background: var(--blue);
}

.app-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 18px
    max(28px, env(safe-area-inset-bottom));
}

.topbar,
.brand,
.metrics,
.section-heading,
.server-card,
.metric-card {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  margin-bottom: 24px;
}

.brand {
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(152, 224, 255, 0.52);
  border-radius: 50%;
  color: #073368;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(145deg, #d4f6ff, var(--accent));
  box-shadow: 0 10px 30px rgba(47, 141, 255, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1 {
  font-size: 19px;
  letter-spacing: -0.03em;
}

h2 {
  max-width: 260px;
  margin: 7px 0 9px;
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

h3 {
  margin-top: 3px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.status-pill {
  padding: 8px 11px;
  border: 1px solid rgba(88, 200, 255, 0.24);
  border-radius: 999px;
  color: #c8edff;
  font-size: 11px;
  font-weight: 700;
  background: rgba(47, 141, 255, 0.11);
}

.status-pill span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.glass {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border-radius: 26px;
}

.hero-card::after {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(88, 200, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.muted,
.server-copy span,
.metric-card p,
.footer-note {
  color: var(--muted);
}

.muted {
  max-width: 250px;
  font-size: 13px;
  line-height: 1.5;
}

.orb {
  display: grid;
  min-width: 86px;
  height: 86px;
  margin-left: 12px;
  place-items: center;
  border: 1px solid rgba(150, 224, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 200, 255, 0.32), transparent 66%);
  box-shadow: inset 0 0 30px rgba(47, 141, 255, 0.2);
}

.orb-core {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #073368;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(145deg, #e0f8ff, var(--accent));
  box-shadow: 0 0 35px rgba(88, 200, 255, 0.42);
  overflow: hidden;
}

.orb-core img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 28px;
}

.metric-card {
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
}

.metric-icon {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  font-weight: 800;
  background: rgba(88, 200, 255, 0.12);
}

.metric-card > div {
  min-width: 0;
}

.metric-card p {
  margin-bottom: 3px;
  font-size: 11px;
}

.metric-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.section-heading {
  justify-content: space-between;
  margin: 0 3px 12px;
}

.count {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  background: rgba(88, 200, 255, 0.11);
}

.server-list {
  display: grid;
  gap: 10px;
}

.plan-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 28px;
}

.plan-card {
  display: grid;
  min-width: 0;
  gap: 9px;
  padding: 15px 12px;
  border-radius: 18px;
}

.plan-card strong {
  font-size: 13px;
}

.plan-card span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.plan-card b {
  color: var(--text);
  font-size: 15px;
}

.plan-card button {
  min-height: 34px;
  border: 0;
  border-radius: 11px;
  color: #03142d;
  font-size: 11px;
  font-weight: 800;
  background: var(--accent);
}

.plan-card button:disabled {
  color: #92afd3;
  background: rgba(88, 200, 255, 0.1);
}

.server-card {
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
}

.flag {
  display: grid;
  flex: 0 0 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #dce9f7;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.server-copy {
  display: grid;
  flex: 1;
  gap: 3px;
}

.server-copy strong {
  font-size: 14px;
}

.server-copy span {
  font-size: 11px;
}

.server-copy small {
  color: var(--accent);
  font-size: 10px;
}

.server-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.server-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid rgba(88, 200, 255, 0.2);
  border-radius: 999px;
  color: #dff5ff;
  font-size: 10px;
  font-weight: 700;
  background: rgba(88, 200, 255, 0.08);
}

.server-state {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(88, 200, 255, 0.75);
}

.special-server-card {
  border-color: rgba(88, 200, 255, 0.24);
  background: linear-gradient(145deg, rgba(16, 53, 107, 0.78), rgba(7, 27, 59, 0.76));
}

.skeleton {
  animation: pulse 1.5s ease-in-out infinite;
}

.notice {
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(97, 169, 255, 0.18);
  border-radius: 15px;
  color: #c9dcf2;
  font-size: 12px;
  line-height: 1.5;
  background: rgba(97, 169, 255, 0.08);
}

.notice.error {
  border-color: rgba(255, 119, 119, 0.2);
  color: #ffd0d0;
  background: rgba(255, 119, 119, 0.08);
}

.hidden {
  display: none;
}

.connect-button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  border: 0;
  border-radius: 18px;
  color: #03142d;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #bcecff, var(--accent-strong));
  box-shadow: 0 16px 36px rgba(23, 119, 242, 0.32);
  cursor: pointer;
}

.connect-button:active {
  transform: translateY(1px);
}

.connect-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.liquid-button {
  --glass-x: 50%;
  --glass-y: 50%;
  --glass-reflex-light: 1;
  --glass-reflex-dark: 1;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0 !important;
  background: rgba(105, 190, 255, 0.09) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 1.8px 3px 0 -2px rgba(255, 255, 255, 0.9),
    inset -2px -2px 0 -2px rgba(255, 255, 255, 0.8),
    inset -3px -8px 1px -6px rgba(255, 255, 255, 0.6),
    inset -0.3px -1px 4px rgba(0, 0, 0, 0.12),
    inset -1.5px 2.5px 0 -2px rgba(0, 0, 0, 0.2),
    inset 0 3px 4px -2px rgba(0, 0, 0, 0.2),
    inset 2px -6.5px 1px -4px rgba(0, 0, 0, 0.1),
    0 1px 5px rgba(0, 0, 0, 0.1),
    0 6px 16px rgba(0, 0, 0, 0.16) !important;
  backdrop-filter: blur(8px) url("#liquid-glass-filter") saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.liquid-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
  background: radial-gradient(
    100px circle at var(--glass-x) var(--glass-y),
    rgba(255, 255, 255, 0.42),
    rgba(117, 220, 255, 0.15) 40%,
    transparent 72%
  );
  transition: opacity 0.25s ease;
}

.liquid-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 38%);
  mix-blend-mode: screen;
}

.liquid-button:not(.is-glowing)::before {
  opacity: 0.18;
}

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

.liquid-button:not(:disabled):active {
  transform: scale(0.975);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 5px 15px rgba(0, 20, 62, 0.2) !important;
}

@media (hover: hover) {
  .liquid-button:not(:disabled):hover {
    transform: scale(1.025);
  }
}

.glass-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.plan-card .liquid-button,
.connect-button.liquid-button,
.plan-save.liquid-button,
button.grant-subscription.liquid-button {
  color: #eff8ff;
  background-color: rgba(30, 126, 244, 0.52);
}

.power {
  font-size: 22px;
}

.footer-note {
  margin: 12px auto 0;
  max-width: 330px;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}
.footer-note a { color: #d8f3ff; text-decoration: underline; }

.section-copy {
  margin: -3px 3px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.public-info {
  margin-top: 28px;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
}

.pay-logo {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 11px;
  color: #eff8ff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255,255,255,.06);
}

.pay-logo.mir { color: #67e5b1; }
.pay-logo.visa { color: #83b8ff; font-style: italic; }
.pay-logo.mastercard { color: #ff9c7b; font-size: 9px; }
.pay-logo.sbp {
  padding: 5px 10px;
  background: #fff;
}

.pay-logo.sbp img {
  width: 70px;
  max-width: 100%;
  height: 34px;
  object-fit: contain;
}

.payment-providers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 9px 0 14px;
}

.provider-logo {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: #eff8ff;
  font-size: 15px;
  font-weight: 800;
  background: rgba(255,255,255,.045);
}

.provider-logo img {
  display: block;
  width: auto;
  max-width: 88%;
  height: 28px;
  object-fit: contain;
}

.provider-logo.tpay img {
  height: 31px;
}

.provider-logo.yukassa {
  background: #fff;
}

.payment-method-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.payment-choice-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 10px;
  padding: 11px 12px;
  border: 1px solid rgba(126, 224, 255, .2);
  border-radius: 16px;
  background: rgba(126, 224, 255, .08);
}

.payment-choice-title span {
  color: rgba(235, 248, 255, .86);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
}

.payment-choice-title strong {
  white-space: nowrap;
  color: #7ee0ff;
  font-size: 11px;
  font-weight: 900;
}

.payment-method {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: start;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(126, 224, 255, .16);
  border-radius: 18px;
  color: var(--text);
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 12px 28px rgba(0, 0, 0, .14);
  overflow: hidden;
}

.payment-method img {
  display: block;
  width: 100%;
  max-width: 126px;
  height: 38px;
  object-fit: contain;
  justify-self: start;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .95);
}

.payment-method.alfa-pay img {
  max-width: 132px;
  height: 38px;
  padding: 0;
  background: transparent;
}

.payment-method span {
  font-size: 14px;
  font-weight: 900;
}

.payment-method small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.payment-method-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #061529;
  background: #7ee0ff;
  font-size: 14px;
  font-weight: 1000;
  opacity: 0;
  transform: scale(.82);
  transition: opacity .16s ease, transform .16s ease;
}

.payment-method.active {
  border-color: rgba(94, 217, 255, .72);
  background: linear-gradient(180deg, rgba(40, 158, 255, .24), rgba(126, 224, 255, .09));
  box-shadow:
    0 0 0 1px rgba(94, 217, 255, .24),
    0 16px 36px rgba(40, 158, 255, .2),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.payment-method.active .payment-method-check {
  opacity: 1;
  transform: scale(1);
}

.payment-method.alfa-pay span {
  color: #ff4f3f;
}

.payment-method.alfa-pay.active {
  border-color: rgba(255, 74, 48, .78);
  background: linear-gradient(180deg, rgba(255, 44, 22, .24), rgba(255, 255, 255, .04));
  box-shadow:
    0 0 0 1px rgba(255, 74, 48, .22),
    0 16px 36px rgba(255, 44, 22, .17),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.payment-method.alfa-pay.active .payment-method-check {
  background: #ff2b18;
  color: #fff;
}

@media (max-width: 390px) {
  .payment-method-picker {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: grid;
  gap: 9px;
  padding: 16px;
  border-radius: 18px;
}

.contact-card a {
  color: #d8f3ff;
  font-size: 13px;
  font-weight: 700;
}

.contact-card span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.checkout-card {
  margin-top: 14px;
  padding: 20px;
  border-radius: 22px;
}

.checkout-card .payment-logos {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-consent a {
  color: #d8f3ff;
}
.auto-renew-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(88, 200, 255, .36);
  border-radius: 16px;
  background: rgba(47, 141, 255, .12);
}
.auto-renew-option input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.auto-renew-option span,
.auto-renew-option small {
  display: block;
}
.auto-renew-option strong {
  color: var(--text);
  font-size: 13px;
}
.auto-renew-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.checkout-email {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.checkout-email input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(148, 214, 255, 0.2);
  border-radius: 15px;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.checkout-email input:focus {
  border-color: rgba(88, 200, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(88, 200, 255, 0.1);
}

.promo-box {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(117, 210, 255, 0.2);
  border-radius: 18px;
  background: rgba(7, 35, 72, 0.45);
}

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

.promo-row .small-button {
  min-width: 108px;
}

.balance-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

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

.order-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.order-breakdown .order-total {
  padding-top: 10px;
  border-top: 1px solid rgba(117, 210, 255, 0.16);
  color: var(--text);
}

.order-breakdown small {
  color: #68efcf;
}

.product-hero {
  min-height: 170px;
}

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

.checkout-benefits {
  display: grid;
  gap: 9px;
}

.checkout-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.checkout-benefits small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
}

.checkout-benefits strong {
  display: block;
  font-size: 13px;
}

.server-summary-heading {
  margin-top: 22px;
}

.compact-server-list .server-card {
  padding: 12px;
}

.compact-server-list .flag {
  flex-basis: 38px;
  height: 38px;
}

.product-details div,
.payment-order,
.seller-note {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.product-details span,
.payment-order span,
.seller-note span {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.product-details strong,
.seller-note strong {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.product-features {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 22px;
  color: #d7e8f8;
  font-size: 11px;
  line-height: 1.45;
}

.product-features li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "✓";
}

.seller-note small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.payment-page-card {
  margin-top: 32px;
}

.payment-page-card h2 {
  margin-bottom: 18px;
}

.payment-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.payment-order strong {
  color: var(--accent);
  font-size: 22px;
}

.payment-back {
  display: block;
  margin-top: 15px;
  color: #d8f3ff;
  text-align: center;
  font-size: 11px;
}

@keyframes pulse {
  50% {
    opacity: 0.55;
  }
}

@keyframes logo-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.035) rotate(0.7deg);
  }
  50% {
    transform: scale(0.985) rotate(-0.7deg);
  }
  75% {
    transform: scale(1.02) rotate(0.4deg);
  }
}

@keyframes wave-out {
  0% {
    transform: scale(0.9);
    opacity: 0.75;
  }
  70% {
    opacity: 0.25;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes loader-progress {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(330%);
  }
}

@keyframes loader-ambient {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vpn-logo img,
  .vpn-logo .wave,
  .loader-progress span,
  .app-loader::before {
    animation: none;
  }
}

@media (max-width: 520px) {
  .plan-list {
    grid-template-columns: 1fr;
  }

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

  .product-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .status-pill {
    display: none;
  }

  .hero-card {
    min-height: 170px;
  }

  .orb {
    min-width: 68px;
    height: 68px;
  }

  .orb-core {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .hero-card {
    padding: 20px;
  }

  .orb {
    min-width: 70px;
    height: 70px;
  }

  .orb-core {
    width: 44px;
    height: 44px;
  }

  .metric-card {
    padding: 13px;
  }

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

}
