:root {
  --black: #030303;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7f7f7;
  --muted: #a7a7a7;
  --yellow: #ffd400;
  --yellow-soft: rgba(255, 212, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(128deg, rgba(255, 212, 0, 0.11), transparent 24rem),
    linear-gradient(180deg, #090909 0%, #030303 52%, #080808 100%),
    var(--black);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  background:
    linear-gradient(125deg, transparent 0 31%, rgba(255, 212, 0, 0.08) 31.2% 34%, transparent 34.2%),
    linear-gradient(125deg, transparent 0 66%, rgba(255, 255, 255, 0.045) 66.2% 69%, transparent 69.2%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
}

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

a,
button {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.shell {
  margin: 0 auto;
  max-width: 1480px;
  padding-left: clamp(20px, 6vw, 96px);
  padding-right: clamp(20px, 6vw, 96px);
}

.nav-shell {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  height: 78px;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 3, 3, 0.78);
  backdrop-filter: blur(20px);
}

.brand {
  align-items: flex-start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  min-width: 116px;
}

.brand-kicker {
  color: #ffffff;
  font-size: 7px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.brand-wordmark {
  display: grid;
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: 31px;
  font-weight: 950;
  line-height: 0.78;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.44);
}

.brand-wordmark span:first-child {
  color: #ffffff;
}

.brand-wordmark span:last-child {
  color: var(--yellow);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 46px;
  color: #f2f2f2;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover,
.nav-login:hover {
  color: var(--yellow);
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}

.nav-login {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
}

.ghost-button {
  align-items: center;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  min-width: 136px;
}

.ghost-button:hover {
  background: var(--yellow);
  color: #050505;
  transform: translateY(-1px);
}

.message-stack {
  padding-top: 18px;
}

.message {
  background: rgba(255, 212, 0, 0.1);
  border: 1px solid rgba(255, 212, 0, 0.36);
  border-radius: 8px;
  color: #fff4a3;
  font-weight: 800;
  margin: 0;
  padding: 14px 18px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 700px;
  overflow: hidden;
  padding-top: 54px;
  position: relative;
}

.kicker {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 8px;
  text-transform: uppercase;
}

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

h1 {
  font-family: Impact, "Arial Black", system-ui, sans-serif;
  font-size: clamp(76px, 12vw, 170px);
  letter-spacing: 0;
  line-height: 0.76;
  margin-bottom: 28px;
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--yellow);
}

.hero-title {
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-badges span {
  background: rgba(36, 214, 118, 0.1);
  border: 1px solid rgba(36, 214, 118, 0.34);
  border-radius: 999px;
  color: #57ee91;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.primary-button {
  align-items: center;
  background: var(--yellow);
  border: 0;
  border-radius: 14px;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  gap: 12px;
  min-height: 58px;
  padding: 0 30px;
}

.primary-button:hover {
  background: #ffe867;
  box-shadow: 0 18px 46px rgba(255, 212, 0, 0.22);
  transform: translateY(-2px);
}

.primary-button:active,
.ghost-button:active,
.plan-card a:active,
.text-button:active {
  transform: translateY(0) scale(0.98);
}

.apple-mark {
  font-size: 18px;
}

.play-button {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  gap: 14px;
  font-weight: 700;
}

.play-button:hover {
  color: var(--yellow);
}

.play-button span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.play-button:hover span {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #050505;
}

.hero-visual img {
  display: block;
  margin-left: auto;
  max-width: 100%;
}

.feature-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 20px;
}

.feature-row article,
.plan-card,
.server-list article,
.install-steps article,
.faq-list details,
.access-card,
.account-side,
.checkout-summary,
.payment-card,
.auth-card,
.order-list article {
  background: linear-gradient(180deg, var(--panel-strong), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.feature-row article {
  min-height: 206px;
  padding: 26px;
}

.feature-row article:hover,
.server-list article:hover,
.faq-list details:hover {
  border-color: rgba(255, 212, 0, 0.32);
  transform: translateY(-2px);
}

.icon {
  align-items: center;
  background: linear-gradient(180deg, #242424, #101010);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--yellow);
  display: inline-flex;
  font-size: 28px;
  height: 54px;
  justify-content: center;
  margin-bottom: 28px;
  width: 54px;
}

.feature-row h2,
.service h2 {
  font-size: 22px;
  line-height: 1.2;
}

.feature-row p,
.support p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.stats {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  padding-bottom: 26px;
  padding-top: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats div {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  min-height: 92px;
  padding: 22px 36px;
}

.stats strong {
  font-size: 32px;
}

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

.plans,
.servers,
.support,
.install-flow,
.faq,
.support-cta {
  margin-top: 22px;
  padding-bottom: 44px;
  padding-top: 44px;
}

.section-head {
  margin-bottom: 26px;
  max-width: 660px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.support h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin-bottom: 0;
}

.support-cta {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(255, 255, 255, 0.035));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.support-cta h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.support-cta p:not(.kicker) {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 680px;
}

.telegram-button {
  align-items: center;
  background: rgba(36, 214, 118, 0.12);
  border: 1px solid rgba(36, 214, 118, 0.42);
  border-radius: 999px;
  color: #57ee91;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  white-space: nowrap;
}

.telegram-button:hover {
  background: #57ee91;
  color: #050505;
  transform: translateY(-1px);
}

.telegram-button.small {
  border-radius: 8px;
  min-height: 54px;
}

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

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 26px;
  position: relative;
}

.plan-card.featured {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #070707;
  box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.55), 0 22px 70px rgba(255, 212, 0, 0.12);
  transform: translateY(-14px);
}

.badge {
  background: #050505;
  border-radius: 0 0 10px 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 16px;
  position: absolute;
  right: 18px;
  top: 0;
}

.plan-card .badge {
  color: var(--yellow);
}

.price {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.plan-card span,
.plan-benefits {
  color: var(--muted);
}

.plan-total,
.plan-note {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.plan-perks {
  color: var(--muted);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 8px 0 22px;
  padding: 0;
}

.plan-perks li {
  line-height: 1.35;
  padding-left: 24px;
  position: relative;
}

.plan-perks li::before {
  color: var(--yellow);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.plan-card a {
  align-items: center;
  background: rgba(255, 212, 0, 0.12);
  border: 1px solid rgba(255, 212, 0, 0.34);
  border-radius: 999px;
  color: var(--yellow);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 56px;
  padding: 0 22px;
}

.plan-card a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #050505;
}

.plan-card.featured .price span,
.plan-card.featured .plan-total,
.plan-card.featured .plan-note,
.plan-card.featured .plan-perks {
  color: rgba(0, 0, 0, 0.62);
}

.plan-card.featured .plan-perks li::before {
  color: #050505;
}

.plan-card.featured a {
  background: #050505;
  border-color: #050505;
  color: #fff;
}

.plan-card.featured a:hover {
  background: #202020;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.plan-benefits {
  align-self: center;
  line-height: 1.75;
}

.server-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.location-fastest {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 212, 0, 0.25);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto 22px;
  max-width: 680px;
  min-height: 54px;
  padding: 10px 22px;
}

.location-fastest span {
  color: var(--muted);
}

.location-fastest strong {
  color: #fff;
}

.location-map {
  background:
    radial-gradient(circle at 48% 52%, rgba(255, 255, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 66% 43%, rgba(255, 212, 0, 0.16), transparent 20rem),
    linear-gradient(145deg, #5f83b8 0%, #244d7c 48%, #173762 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42), inset 0 0 0 14px rgba(255, 255, 255, 0.045);
  height: clamp(500px, 54vw, 720px);
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.map-grid {
  background-image:
    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: 52px 52px;
  inset: 0;
  opacity: 0.28;
  position: absolute;
  transform-origin: center;
}

.europe-map {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.18));
  height: calc(100% - 28px);
  inset: 14px 20px;
  opacity: 1;
  position: absolute;
  transform-origin: center;
  width: calc(100% - 40px);
  z-index: 2;
}

.map-shape {
  fill: rgba(1, 7, 39, 0.86);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.map-shape.greenland,
.map-shape.iceland {
  fill: rgba(1, 7, 39, 0.9);
}

.map-shape.russia {
  fill: rgba(10, 24, 66, 0.82);
}

.map-shape.africa {
  fill: rgba(8, 27, 63, 0.68);
  opacity: 0.75;
}

.map-country-lines,
.map-coast-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-country-lines {
  opacity: 0.32;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 1;
}

.map-coast-glow {
  opacity: 0.5;
  stroke: rgba(255, 212, 0, 0.58);
  stroke-width: 2.2;
}

.map-route {
  background: rgba(255, 212, 0, 0.42);
  border-radius: 999px;
  height: 2px;
  left: 28%;
  position: absolute;
  transform-origin: left center;
  width: 54%;
  z-index: 3;
}

.route-one {
  top: 58%;
  transform: rotate(-8deg);
}

.route-two {
  top: 48%;
  transform: rotate(9deg);
  width: 46%;
}

.map-dot {
  align-items: center;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 54px;
  justify-content: center;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 54px;
  z-index: 4;
}

.map-dot span {
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 212, 0, 0.12), 0 0 36px rgba(255, 212, 0, 0.42);
  display: block;
  height: 18px;
  width: 18px;
}

.map-dot:hover,
.map-dot.active {
  background: rgba(255, 212, 0, 0.22);
  border-color: rgba(255, 212, 0, 0.62);
  transform: translate(-50%, -50%) scale(1.16);
}

.map-dot.active span {
  background: #57ee91;
  box-shadow: 0 0 0 12px rgba(87, 238, 145, 0.18), 0 0 42px rgba(87, 238, 145, 0.6);
}

.map-dot-fake {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.16);
  cursor: default;
  height: 42px;
  opacity: 0.86;
  pointer-events: none;
  width: 42px;
  z-index: 3;
}

.map-dot-fake span {
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.12), 0 0 28px rgba(255, 212, 0, 0.36);
  height: 14px;
  width: 14px;
}

.map-card {
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  left: 24px;
  min-width: 250px;
  padding: 18px;
  position: absolute;
  backdrop-filter: blur(16px);
  z-index: 5;
}

.map-card span,
.map-card small {
  color: var(--muted);
}

.map-card strong {
  font-size: 24px;
}

.map-card b {
  color: #57ee91;
  font-size: 28px;
}

.map-controls {
  display: grid;
  gap: 8px;
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 6;
}

.map-controls button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  height: 52px;
  width: 52px;
}

.map-controls button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #050505;
}

.location-map.zoomed .map-grid {
  background-size: 34px 34px;
}

.location-map.zoomed .europe-map {
  transform: scale(1.06);
}

.location-map.zoomed .map-dot span {
  transform: scale(1.12);
}

.server-list article {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 22px;
}

.server-ok {
  color: #57ee91;
  display: inline-flex;
  font-weight: 900;
  margin-right: 10px;
}

.server-list article > div > span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.server-list .server-ok {
  color: #57ee91;
  display: inline-flex;
  margin-top: 0;
}

.server-metric {
  text-align: right;
}

.server-metric strong {
  color: #57ee91;
}

.install-steps {
  display: grid;
  gap: 46px;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
}

.install-steps::before {
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.7), rgba(255, 212, 0, 0.1));
  bottom: 26px;
  content: "";
  left: 50%;
  position: absolute;
  top: 26px;
  transform: translateX(-50%);
  width: 2px;
}

.install-steps article {
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.98), rgba(16, 16, 16, 0.98));
  min-height: 178px;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.install-steps article:nth-child(even) {
  transform: translateX(54px);
}

.install-steps article:nth-child(odd) {
  transform: translateX(-54px);
}

.install-steps small {
  color: var(--yellow);
  font-weight: 900;
}

.install-steps h3 {
  font-size: 30px;
  margin-bottom: 12px;
  margin-top: 22px;
}

.install-steps p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.step-icon {
  align-items: center;
  background: var(--yellow);
  border-radius: 16px;
  color: #050505;
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 26px;
  top: 26px;
  width: 58px;
}

.done-step {
  border-color: rgba(36, 214, 118, 0.34);
}

.done-step .step-icon {
  background: #57ee91;
}

.support {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 54px;
}

.support div {
  max-width: 700px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 940px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 21px;
  font-weight: 900;
  list-style: none;
  padding: 22px 26px;
}

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

.faq-list summary::after {
  color: var(--yellow);
  content: "+";
  float: right;
  font-size: 28px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding: 0 26px 24px;
}

.account-page,
.checkout-page,
.auth-page {
  min-height: calc(100vh - 78px);
}

.account-hero,
.auth-shell,
.checkout-grid {
  padding-top: 70px;
}

.account-hero h1,
.auth-card h1,
.checkout-summary h1 {
  font-size: clamp(50px, 8vw, 108px);
  margin-bottom: 22px;
}

.account-grid,
.checkout-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.access-card,
.account-side,
.checkout-summary,
.payment-card,
.auth-card {
  padding: 30px;
}

.access-card h2,
.account-side h2,
.payment-card h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.usage-preview {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 1px;
  margin: 24px 0 6px;
  overflow: hidden;
}

.usage-preview div {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 16px;
}

.usage-preview span {
  color: var(--muted);
}

.usage-preview strong {
  overflow-wrap: anywhere;
  text-align: right;
}

.status-pill {
  background: rgba(255, 212, 0, 0.13);
  border: 1px solid rgba(255, 212, 0, 0.4);
  border-radius: 999px;
  color: var(--yellow);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 22px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.muted-pill {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.muted,
.hint,
.auth-alt {
  color: var(--muted);
}

.access-card label,
.auth-form label {
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  font-weight: 800;
  gap: 8px;
  margin-top: 20px;
}

.copy-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 10px;
}

.copy-row input,
.copy-row textarea,
.auth-form input {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  min-height: 54px;
  outline: none;
  padding: 0 16px;
  width: 100%;
}

.copy-row textarea {
  line-height: 1.5;
  min-height: 86px;
  padding-bottom: 14px;
  padding-top: 14px;
  resize: none;
  word-break: break-all;
}

.copy-row button,
.text-button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 54px;
  padding: 0 18px;
}

.copy-row button:hover,
.text-button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #050505;
  transform: translateY(-1px);
}

.hint {
  margin-bottom: 0;
  margin-top: 16px;
}

.mini-plan-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mini-plan-list a,
.summary-line {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
}

.mini-plan-list span,
.summary-line span {
  color: var(--muted);
}

.mini-plan-list a:hover {
  border-color: rgba(255, 212, 0, 0.5);
}

.account-side ol {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-left: 22px;
}

.orders-section {
  padding-bottom: 60px;
  padding-top: 44px;
}

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

.order-list article {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 18px 22px;
}

.order-list span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.checkout-summary h1 span:last-child {
  color: var(--yellow);
}

.summary-line {
  margin-top: 12px;
}

.payment-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.payment-method {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: auto auto minmax(0, 1fr);
  min-height: 78px;
  padding: 14px 16px;
}

.payment-method:hover {
  border-color: rgba(255, 212, 0, 0.38);
  transform: translateY(-1px);
}

.payment-method:has(input:checked) {
  background: rgba(255, 212, 0, 0.1);
  border-color: rgba(255, 212, 0, 0.68);
}

.payment-method input {
  accent-color: var(--yellow);
}

.method-icon {
  align-items: center;
  background: rgba(255, 212, 0, 0.12);
  border: 1px solid rgba(255, 212, 0, 0.26);
  border-radius: 8px;
  color: var(--yellow);
  display: inline-flex;
  font-size: 22px;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.payment-method strong,
.payment-method small {
  display: block;
}

.payment-method small {
  color: var(--muted);
  line-height: 1.35;
  margin-top: 4px;
}

.fake-card {
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.2), transparent 42%),
    linear-gradient(160deg, #202020, #060606);
  border: 1px solid rgba(255, 212, 0, 0.26);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin: 8px 0 0;
  min-height: 128px;
  padding: 24px;
}

.fake-card span:first-child {
  align-self: end;
  font-size: 24px;
  font-weight: 900;
}

.fake-card span:last-child {
  color: var(--muted);
  font-weight: 800;
}

.pay-form {
  align-items: stretch;
  display: grid;
  gap: 14px;
}

.pay-form .primary-button {
  justify-content: center;
}

.auth-shell {
  display: grid;
  place-items: start center;
}

.auth-card {
  max-width: 560px;
  width: 100%;
}

.auth-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.auth-form .primary-button {
  justify-content: center;
}

.auth-alt {
  margin-bottom: 0;
  margin-top: 24px;
}

.auth-alt a {
  color: var(--yellow);
}

.form-errors,
.errorlist {
  color: #ffb7a8;
  font-weight: 800;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-visual img {
    margin: 0 auto;
  }

  .feature-row,
  .stats,
  .plan-grid,
  .account-grid,
  .checkout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-benefits {
    grid-column: 1 / -1;
  }

  .support-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .install-steps article:nth-child(even),
  .install-steps article:nth-child(odd) {
    transform: none;
  }
}

@media (max-width: 620px) {
  .shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    min-height: 44px;
    min-width: 94px;
  }

  .brand-kicker {
    font-size: 6px;
  }

  .brand-wordmark {
    font-size: 25px;
  }

  .ghost-button {
    min-width: 94px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-login {
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    min-height: 42px;
    align-items: center;
  }

  .feature-row,
  .stats,
  .plan-grid,
  .account-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .install-steps {
    gap: 18px;
  }

  .install-steps::before {
    left: 28px;
  }

  .install-steps article {
    padding: 24px;
  }

  .install-steps h3 {
    font-size: 26px;
  }

  .step-icon {
    border-radius: 12px;
    height: 48px;
    width: 48px;
  }

  .server-list article,
  .usage-preview div {
    align-items: flex-start;
    flex-direction: column;
  }

  .location-fastest {
    align-items: flex-start;
    border-radius: 8px;
    justify-content: flex-start;
  }

  .location-map {
    height: 470px;
  }

  .europe-map {
    height: calc(100% - 24px);
    inset: 12px 10px;
    width: calc(100% - 20px);
  }

  .map-card {
    bottom: 16px;
    left: 16px;
    min-width: 0;
    right: 16px;
  }

  .map-controls {
    bottom: auto;
    right: 16px;
    top: 16px;
  }

  .map-controls button {
    height: 46px;
    width: 46px;
  }

  .map-dot {
    height: 42px;
    width: 42px;
  }

  .map-dot span {
    box-shadow: 0 0 0 8px rgba(255, 212, 0, 0.12), 0 0 28px rgba(255, 212, 0, 0.42);
    height: 14px;
    width: 14px;
  }

  .server-metric {
    text-align: left;
  }

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

  .copy-row,
  .order-list article,
  .mini-plan-list a,
  .summary-line {
    align-items: stretch;
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .payment-method {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .payment-method input {
    grid-row: 1;
  }

  .method-icon {
    display: none;
  }

  .telegram-button {
    width: 100%;
  }
}
