:root {
  color-scheme: dark;
  --bg: #08050e;
  --bg-soft: #12071a;
  --surface: #170b22;
  --surface-raised: #22102f;
  --line: rgba(235, 220, 255, 0.12);
  --line-strong: rgba(235, 220, 255, 0.22);
  --text: #f8f4fb;
  --muted: #afa3bb;
  --accent: #c653ff;
  --accent-strong: #a72cff;
  --accent-dark: #2b0d3d;
  --danger: #ff8d86;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(198, 83, 255, 0.72);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  transform: translateY(-150%);
  background: var(--accent);
  color: #14091d;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(8, 5, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  white-space: nowrap;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 83, 255, 0.48);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(198, 83, 255, 0.22);
}

.brand-name {
  font-size: 18px;
  white-space: nowrap;
}

.brand-name b {
  color: var(--accent);
  font-weight: 800;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #d3c8dc;
  font-size: 14px;
  font-weight: 600;
}

.header-nav a {
  transition: color 160ms ease;
}

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

.header-nav .nav-support {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 130px 0 72px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    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: 66px 66px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 70% 38%, rgba(150, 48, 220, 0.07), transparent 34%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 80px;
  right: -240px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(198, 83, 255, 0.08);
  box-shadow: inset 0 0 100px rgba(198, 83, 255, 0.035);
}

.hero-glow-two {
  bottom: -280px;
  left: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(198, 83, 255, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.final-cta h2,
.order-card h1 {
  margin: 0;
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7vw, 92px);
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c3b6cc;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 50px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8cede;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.point-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checkout-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(235, 220, 255, 0.17);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(35, 16, 49, 0.96), rgba(18, 8, 27, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.checkout-card,
.checkout-card button,
.checkout-card input {
  font-family: var(--font);
}

.checkout-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 50px;
  left: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 83, 255, 0.8), transparent);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e1d7e7;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.status-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.checkout-card h2 {
  margin: 36px 0 7px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.card-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.device-stepper {
  height: 94px;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(12, 5, 18, 0.58);
}

.stepper-button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.stepper-button:hover:not(:disabled) {
  border-color: rgba(198, 83, 255, 0.55);
  background: rgba(198, 83, 255, 0.08);
  transform: translateY(-1px);
}

.stepper-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.device-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: text;
}

.device-value input {
  width: 82px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  font-size: 34px;
  font-weight: 750;
  line-height: 1;
  appearance: textfield;
}

.device-value input::-webkit-inner-spin-button,
.device-value input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.device-value span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 4px 21px;
}

.price-row > div {
  display: flex;
  flex-direction: column;
}

.price-label {
  color: #e7deec;
  font-size: 14px;
  font-weight: 700;
}

.price-note {
  color: var(--muted);
  font-size: 12px;
}

.price-row strong {
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.buy-button {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 8px 9px 8px 22px;
  border: 0;
  border-radius: 17px;
  background: var(--accent);
  color: #170b21;
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  box-shadow: 0 14px 36px rgba(159, 48, 224, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.buy-button:hover:not(:disabled) {
  background: #da83ff;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(159, 48, 224, 0.22);
}

.buy-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: rgba(14, 6, 21, 0.13);
  font-size: 20px;
}

.form-error {
  margin: 14px 2px 0;
  padding: 11px 13px;
  border: 1px solid rgba(255, 141, 134, 0.32);
  border-radius: 12px;
  background: rgba(255, 141, 134, 0.08);
  color: #ffb4af;
  font-size: 13px;
}

.secure-note {
  margin: 14px 0 0;
  color: #9b8da6;
  text-align: center;
  font-size: 11px;
}

.yookassa-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.yookassa-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #8b3ffd;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.yookassa-badge b,
.yookassa-badge small {
  display: block;
}

.yookassa-badge b {
  color: #f5eff8;
  font-size: 13px;
}

.yookassa-badge small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.legal-section {
  border-top: 1px solid var(--line);
  background: #09050e;
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  min-width: 0;
}

.legal-heading {
  display: block;
  margin: 0;
}

.legal-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.legal-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(24, 11, 34, 0.72);
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-card strong,
.legal-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.legal-card > a:not(.legal-link) {
  display: block;
  margin-top: 7px;
  color: #eee7f2;
  font-size: 13px;
}

.legal-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.document-main {
  padding: 130px 0 80px;
}

.document-card {
  max-width: 900px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(21, 9, 31, 0.94);
}

.document-card h1 {
  margin: 12px 0 0;
  font-size: clamp(42px, 7vw, 68px);
}

.document-lead {
  margin: 14px 0 42px;
  color: var(--muted);
  font-size: 17px;
}

.document-card h2 {
  margin: 32px 0 10px;
  font-size: 21px;
}

.document-card p {
  color: var(--muted);
  line-height: 1.75;
}

.requisites-list {
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.requisites-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list dt {
  color: var(--muted);
}

.requisites-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.requisites-list a {
  color: var(--accent);
}

.document-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.document-actions .buy-button {
  width: auto;
  min-width: 230px;
}

.secure-note span {
  margin-right: 5px;
  color: var(--accent);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #0e0715;
}

.network-showcase {
  padding: 34px 0 110px;
  background: #07040b;
}

.network-showcase {
  padding-top: 46px;
  padding-bottom: 64px;
}

.network-visual {
  min-height: 500px;
}

.location-grid {
  margin-top: 18px;
}

.trust-strip {
  margin-top: 0;
}

.network-visual {
  position: relative;
  min-height: clamp(520px, 55vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(198, 83, 255, 0.25);
  border-radius: 34px;
  background: #08030d;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.5);
}

.network-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.network-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 2, 9, 0.16) 0%, rgba(5, 2, 9, 0.28) 42%, rgba(5, 2, 9, 0.92) 76%, rgba(5, 2, 9, 0.98) 100%),
    linear-gradient(0deg, rgba(5, 2, 9, 0.92) 0%, transparent 42%);
}

.network-copy {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 6vw, 82px);
  bottom: clamp(38px, 7vw, 86px);
  width: min(48%, 590px);
}

.network-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.network-copy p {
  max-width: 520px;
  margin: 0;
  color: #bdb0c6;
  font-size: 15px;
  line-height: 1.65;
}

.network-total {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5vw, 70px);
  bottom: clamp(30px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(198, 83, 255, 0.3);
  border-radius: 18px;
  background: rgba(10, 4, 16, 0.76);
  backdrop-filter: blur(14px);
}

.network-total strong {
  color: var(--accent);
  font-size: 35px;
  line-height: 1;
}

.network-total span {
  color: #d3c8da;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.location-grid article {
  display: grid;
  grid-template-columns: 43px 1fr 8px;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(24, 11, 34, 0.72);
}

.location-flag {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 22px;
}

.location-grid div {
  min-width: 0;
}

.location-grid b,
.location-grid small {
  display: block;
}

.location-grid b {
  font-size: 13px;
}

.location-grid small {
  margin-top: 3px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-grid i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70ff9a;
  box-shadow: 0 0 10px rgba(112, 255, 154, 0.8);
}

.protocol-note,
.routing-disclaimer {
  margin: 14px 4px 0;
  color: #766c7d;
  font-size: 10px;
  line-height: 1.55;
}

.trust-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px, 3vw, 48px);
  border-left: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-grid strong {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.trust-grid span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 130px 0;
}

.how {
  background: var(--bg);
}

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

.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  margin-top: 15px;
  font-size: clamp(42px, 5vw, 64px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.steps li {
  position: relative;
  min-height: 330px;
  padding: 28px 38px 32px 0;
  border-right: 1px solid var(--line);
}

.steps li:not(:first-child) {
  padding-left: 38px;
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-symbol {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 38px 0 32px;
  border: 1px solid rgba(198, 83, 255, 0.28);
  border-radius: 26px;
  background: radial-gradient(circle, rgba(198, 83, 255, 0.12), rgba(198, 83, 255, 0.025));
  color: var(--accent);
  font-size: 26px;
  font-weight: 800;
  box-shadow: inset 0 0 25px rgba(198, 83, 255, 0.05);
}

.steps h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.steps p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.clients-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 83, 255, 0.08), transparent 24%),
    #0c0612;
}

.clients-heading {
  align-items: flex-end;
  gap: 64px;
}

.clients-heading > div {
  flex: 1 1 58%;
}

.clients-lead {
  flex: 1 1 42%;
  max-width: 490px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.mobile-client-alternatives {
  display: none;
}

.client-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(29, 13, 42, 0.94), rgba(17, 8, 25, 0.96));
}

.client-card-featured {
  border-color: rgba(198, 83, 255, 0.45);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 22px 60px rgba(99, 18, 136, 0.12);
}

.client-card-featured::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(198, 83, 255, 0.1);
  filter: blur(4px);
  pointer-events: none;
}

.client-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 83, 255, 0.32);
  border-radius: 17px;
  background: rgba(198, 83, 255, 0.09);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.client-mark-image {
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: #111;
}

.client-mark-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.client-card h3 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.client-badge,
.client-label {
  display: inline-flex;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.client-badge {
  padding: 3px 8px;
  border: 1px solid rgba(198, 83, 255, 0.3);
  border-radius: 999px;
  background: rgba(198, 83, 255, 0.08);
  color: #e4aaff;
  font-weight: 750;
}

.client-badge-secondary {
  border-color: rgba(96, 185, 255, 0.3);
  background: rgba(96, 185, 255, 0.08);
  color: #9ed7ff;
}

.client-badge-smart {
  border-color: rgba(89, 230, 166, 0.3);
  background: rgba(89, 230, 166, 0.08);
  color: #8ff0c3;
}

.client-card-smart {
  border-color: rgba(89, 230, 166, 0.2);
  background:
    radial-gradient(circle at 94% 4%, rgba(89, 230, 166, 0.075), transparent 29%),
    rgba(20, 10, 29, 0.88);
}

.client-downloads-two {
  margin-top: auto;
  padding-top: 22px;
}

.client-card > p {
  position: relative;
  z-index: 1;
  min-height: 52px;
  margin: 24px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.platform-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.platform-list span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d5c9dc;
  font-size: 10px;
  font-weight: 650;
}

.client-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 23px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.client-link:hover {
  color: #df96ff;
}

.client-downloads {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 18px;
}

.client-downloads a {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid rgba(198, 83, 255, 0.24);
  border-radius: 10px;
  background: rgba(198, 83, 255, 0.065);
  color: #e7ddef;
  font-size: 9px;
  font-weight: 750;
  text-align: center;
}

.client-downloads a:hover {
  border-color: rgba(198, 83, 255, 0.5);
  color: var(--accent);
}

.client-downloads.client-downloads-two {
  margin-top: auto;
  padding-top: 22px;
}

.client-link-secondary {
  margin-top: 0;
  padding-top: 16px;
}

.connect-guide {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 54px;
  margin-top: 30px;
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(23, 11, 34, 0.72);
}

.connect-guide-title h3 {
  margin: 9px 0 0;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.connect-guide ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.connect-guide li {
  position: relative;
  min-width: 0;
  padding-left: 34px;
  counter-increment: guide-step;
}

.connect-guide li::before {
  content: counter(guide-step, decimal-leading-zero);
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
}

.connect-guide li b,
.connect-guide li span {
  display: block;
}

.connect-guide li b {
  color: #eee7f2;
  font-size: 13px;
}

.connect-guide li span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.subscription-warning {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(198, 83, 255, 0.23);
  border-radius: 20px;
  background: rgba(198, 83, 255, 0.055);
}

.warning-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(198, 83, 255, 0.38);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.subscription-warning p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.subscription-warning b {
  color: #f1eaf5;
}

.subscription-warning a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-section {
  padding-top: 0;
}

.smart-routing {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 45%, rgba(198, 83, 255, 0.08), transparent 30%),
    #08040d;
}

.routing-heading {
  align-items: flex-end;
}

.routing-heading > p {
  max-width: 550px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
}

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

.routing-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(22, 10, 32, 0.84);
}

.routing-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(198, 83, 255, 0.09);
  filter: blur(4px);
}

.routing-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 83, 255, 0.32);
  border-radius: 18px;
  background: rgba(198, 83, 255, 0.09);
  color: var(--accent);
  font-size: 17px;
  font-weight: 900;
}

.routing-card > div:not(.route-path):not(.app-cloud) {
  margin-top: 35px;
}

.routing-label {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.routing-card h3 {
  max-width: 430px;
  margin: 9px 0 13px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.routing-card p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.route-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(5, 3, 9, 0.48);
  font-size: 11px;
}

.route-path span {
  color: var(--accent);
  font-size: 9px;
}

.app-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.app-cloud span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8cedf;
  font-size: 10px;
  font-weight: 700;
}

.feature-panel {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 74px;
  padding: clamp(48px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 85% 50%, rgba(198, 83, 255, 0.085), transparent 30%),
    var(--bg-soft);
}

.feature-copy p {
  max-width: 530px;
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(198, 83, 255, 0.28);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.server-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.server-card {
  position: relative;
  z-index: 1;
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px 1fr 10px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(24, 11, 34, 0.91);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.server-card-primary {
  margin-right: 34px;
  border-color: rgba(198, 83, 255, 0.3);
}

.server-card:not(.server-card-primary) {
  margin-left: 34px;
}

.country-flag {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 24px;
}

.server-card div {
  display: flex;
  flex-direction: column;
}

.server-card b {
  font-size: 15px;
}

.server-card div span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.server-card i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.connection-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connection-line span {
  width: 32px;
  height: 1px;
  background: var(--line-strong);
}

.faq {
  border-top: 1px solid var(--line);
  background: #0c0612;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.faq .section-heading {
  display: block;
  margin: 0;
}

.faq .section-heading h2 {
  font-size: clamp(42px, 4.7vw, 60px);
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}

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

.accordion summary span {
  color: var(--accent);
  font-size: 23px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 610px;
  margin: -4px 46px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.accordion details p a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding: 100px 0;
  background: var(--accent);
  color: #150a1e;
}

.final-cta .section-kicker {
  color: #5b2075;
}

.final-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  font-size: clamp(50px, 6vw, 78px);
}

.final-button {
  width: auto;
  min-width: 260px;
  border: 1px solid rgba(14, 6, 21, 0.18);
  background: #14091d;
  color: var(--text);
  box-shadow: none;
}

.final-button:hover {
  background: #241132;
  box-shadow: none;
}

.final-button .button-arrow {
  background: rgba(198, 83, 255, 0.13);
  color: var(--accent);
}

.site-footer {
  padding: 22px 0;
  background: #050b09;
}

.brand-footer .brand-mark::before,
.brand-footer .brand-mark::after {
  background: #050b09;
}

.footer-inner p,
.footer-links {
  color: #8c8196;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

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

/* Order status page */
.order-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 25%, rgba(198, 83, 255, 0.09), transparent 28%),
    var(--bg);
}

.order-page .site-header {
  position: fixed;
}

.order-page main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 142px 0 36px;
}

.order-shell {
  width: min(calc(100% - 40px), 690px);
}

.order-card {
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: rgba(21, 9, 31, 0.94);
  box-shadow: var(--shadow);
  text-align: center;
}

.order-status-icon {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(198, 83, 255, 0.33);
  border-radius: 24px;
  background: rgba(198, 83, 255, 0.08);
  color: var(--accent);
  font-size: 26px;
}

.status-loader {
  width: 27px;
  height: 27px;
  border: 2px solid rgba(198, 83, 255, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

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

.order-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-card h1 {
  font-size: clamp(34px, 7vw, 49px);
  line-height: 1.05;
}

.order-message {
  max-width: 500px;
  margin: 20px auto 0;
  color: var(--muted);
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.order-summary div {
  display: flex;
  flex-direction: column;
  padding: 17px;
  background: #180b24;
}

.order-summary span {
  color: var(--muted);
  font-size: 11px;
}

.order-summary strong {
  margin-top: 3px;
  font-size: 15px;
}

.subscription-box {
  margin-top: 30px;
  padding: 0;
  text-align: left;
}

.setup-guide > h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 5vw, 34px);
  letter-spacing: -0.04em;
}

.setup-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.setup-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #16091f;
  font-weight: 900;
}

.setup-content h3 {
  margin: 3px 0 6px;
  font-size: 18px;
}

.setup-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.order-clients {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.order-client {
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.order-client.recommended {
  border-color: rgba(198, 83, 255, 0.55);
  background: rgba(198, 83, 255, 0.09);
}

.order-client-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.order-client-title img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.order-client-title > div {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.order-client-title strong {
  font-size: 16px;
}

.order-client-title small {
  color: var(--muted);
}

.order-client-title > span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #16091f;
  font-size: 10px;
  font-weight: 900;
}

.order-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.order-downloads a {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 110px;
  padding: 8px 11px;
  border-radius: 10px;
  background: #f4eafb;
  color: #1d0b29;
  text-align: center;
  font-size: 12px;
  font-weight: 850;
}

.subscription-field {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.subscription-field input {
  min-width: 0;
  flex: 1;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0a0610;
  color: #e3d9e9;
  font-size: 12px;
}

.quick-import {
  margin-top: 16px;
}

.quick-import > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.quick-import > p strong {
  color: var(--text);
}

.quick-import-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-import-grid a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.quick-import-grid img {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.quick-import-grid span {
  min-width: 0;
}

.quick-import-grid b {
  display: block;
  color: var(--accent);
  font-size: 13px;
}

.copy-button {
  flex: 0 0 auto;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #150a1e;
  cursor: pointer;
  font-weight: 800;
}

.open-subscription-button {
  min-height: 46px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: #e8dfed;
  font-size: 13px;
  font-weight: 700;
}

.open-subscription-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #160a20;
}

.support-callout {
  display: grid;
  gap: 16px;
  margin-top: 10px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(198, 83, 255, 0.17), rgba(198, 83, 255, 0.05));
}

.support-callout strong {
  font-size: 19px;
}

.support-callout p {
  margin: 5px 0 0;
  color: #cbbfd3;
  font-size: 14px;
}

.support-callout a,
.support-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 13px;
  background: #f4eafb;
  color: #1d0b29;
  text-align: center;
  font-weight: 850;
}

.order-help-bottom {
  margin-top: 28px;
}

.final-actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 390px);
}

.support-button {
  flex-direction: column;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.support-button small {
  color: var(--muted);
  font-weight: 500;
}

.order-help {
  margin: 24px 0 0;
  color: #91859b;
  font-size: 12px;
}

.order-help a {
  color: var(--accent);
}

.retry-button {
  min-height: 48px;
  margin-top: 25px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 140px;
  }

  .hero-grid,
  .feature-panel,
  .faq-grid,
  .connect-guide,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .location-grid,
  .routing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-copy {
    width: 58%;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .checkout-card {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .trust-grid > div {
    min-height: 70px;
    border-left: 0;
  }

  .trust-grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

  .steps li,
  .steps li:not(:first-child) {
    min-height: auto;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-symbol {
    margin: 26px 0 22px;
  }

  .steps p {
    max-width: 520px;
  }

  .clients-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .clients-lead {
    max-width: 680px;
  }

  .connect-guide {
    gap: 30px;
  }

  .feature-panel {
    gap: 56px;
  }

  .faq-grid {
    gap: 54px;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 16px;
  }

  .header-nav a:not(.nav-support) {
    display: none;
  }

  .header-nav {
    gap: 0;
  }

  .nav-support {
    padding: 8px 13px !important;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 72px;
  }

  .network-showcase {
    padding: 18px 0 78px;
  }

  .network-visual {
    min-height: 650px;
    border-radius: 25px;
  }

  .network-visual > img {
    object-position: 31% center;
  }

  .network-shade {
    background:
      linear-gradient(0deg, rgba(5, 2, 9, 0.98) 0%, rgba(5, 2, 9, 0.82) 48%, rgba(5, 2, 9, 0.08) 78%),
      linear-gradient(90deg, transparent, rgba(5, 2, 9, 0.28));
  }

  .network-copy {
    right: 22px;
    bottom: 115px;
    left: 22px;
    width: auto;
  }

  .network-copy h2 {
    font-size: 36px;
  }

  .network-total {
    right: 22px;
    bottom: 24px;
    left: 22px;
    justify-content: center;
  }

  .location-grid,
  .routing-grid {
    grid-template-columns: 1fr;
  }

  .routing-card {
    min-height: 360px;
  }

  .routing-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    margin: 38px auto 0;
    text-align: left;
  }

  .checkout-card {
    padding: 23px;
    border-radius: 25px;
  }

  .checkout-card h2 {
    margin-top: 28px;
  }

  .card-topline > span:first-child {
    font-size: 10px;
  }

  .device-stepper {
    grid-template-columns: 52px 1fr 52px;
  }

  .stepper-button {
    width: 48px;
    height: 48px;
  }

  .trust-grid > div {
    padding: 0 14px;
  }

  .trust-grid > div:first-child {
    padding-left: 14px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .feature-copy h2 {
    font-size: 41px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .feature-section {
    padding-top: 0;
  }

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

  .client-card {
    min-height: 0;
    padding: 24px;
  }

  .client-card > p {
    min-height: 0;
  }

  .connect-guide {
    padding: 30px 24px;
  }

  .connect-guide ol {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .subscription-warning {
    align-items: flex-start;
    padding: 19px;
  }

  .feature-panel {
    padding: 42px 23px;
    border-radius: 27px;
  }

  .server-card,
  .server-card-primary,
  .server-card:not(.server-card-primary) {
    margin: 0;
  }

  .server-card {
    grid-template-columns: 46px 1fr 8px;
    gap: 13px;
    padding: 17px;
  }

  .country-flag {
    width: 46px;
    height: 46px;
    font-size: 21px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
    gap: 16px;
  }

  .legal-cards {
    grid-template-columns: 1fr;
  }

  .legal-card-wide {
    grid-column: auto;
  }

  .requisites-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .document-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .document-actions .buy-button {
    width: 100%;
  }

  .subscription-field {
    flex-direction: column;
  }

  .order-page main {
    padding: 104px 0 20px;
  }

  .order-shell {
    width: min(calc(100% - 20px), 690px);
  }

  .order-card {
    padding: 24px 14px;
    border-radius: 24px;
  }

  .setup-step {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 10px;
    padding: 20px 0;
  }

  .setup-number {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .setup-content {
    display: contents;
  }

  .setup-content h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .setup-content > p,
  .setup-content > .order-clients,
  .setup-content > .subscription-field,
  .setup-content > .quick-import,
  .setup-content > .order-help,
  .setup-content > .open-subscription-button {
    grid-column: 1 / -1;
  }

  .order-client {
    padding: 12px;
  }

  .order-client-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .order-client-title > span {
    margin-left: 55px;
  }

  .order-downloads a {
    flex-basis: calc(50% - 4px);
  }

  .quick-import-grid {
    grid-template-columns: 1fr;
  }

  .copy-button {
    min-height: 44px;
  }

  .subscription-actions {
    flex-direction: column;
  }
}

/* One-column homepage at every viewport, capped at 768 px. */
body:not(.order-page):not(.legal-page) .shell {
  width: min(100% - 24px, 768px);
}

body:not(.order-page):not(.legal-page) .header-nav {
  gap: 0;
}

body:not(.order-page):not(.legal-page) .header-nav > a:not(.nav-support) {
  display: none;
}

body:not(.order-page):not(.legal-page) .hero {
  min-height: 0;
  padding: 82px 0 26px;
}

body:not(.order-page):not(.legal-page) .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

body:not(.order-page):not(.legal-page) .hero-copy {
  padding-top: 0;
  text-align: left;
}

body:not(.order-page):not(.legal-page) .eyebrow,
body:not(.order-page):not(.legal-page) .hero-points {
  justify-content: flex-start;
}

body:not(.order-page):not(.legal-page) .hero h1 {
  max-width: none;
  font-size: clamp(34px, 8vw, 44px);
  line-height: 0.98;
}

body:not(.order-page):not(.legal-page) .hero-lead {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

body:not(.order-page):not(.legal-page) .hero-points {
  display: none;
}

body:not(.order-page):not(.legal-page) .checkout-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 15px;
}

body:not(.order-page):not(.legal-page) .section {
  padding: 34px 0;
}

body:not(.order-page):not(.legal-page) .how {
  display: block;
}

body:not(.order-page):not(.legal-page) .section-heading,
body:not(.order-page):not(.legal-page) .clients-heading {
  display: block;
  margin-bottom: 18px;
}

body:not(.order-page):not(.legal-page) .section-heading h2,
body:not(.order-page):not(.legal-page) .clients-heading h2,
body:not(.order-page):not(.legal-page) .legal-heading h2 {
  margin-top: 7px;
  font-size: 27px;
  line-height: 1.05;
}

body:not(.order-page):not(.legal-page) .steps {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.order-page):not(.legal-page) .steps li,
body:not(.order-page):not(.legal-page) .steps li:not(:first-child) {
  min-height: 0;
  display: grid;
  grid-template-columns: 26px 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

body:not(.order-page):not(.legal-page) .step-number {
  grid-column: 1;
  grid-row: 1 / 3;
}

body:not(.order-page):not(.legal-page) .step-symbol {
  width: 42px;
  height: 42px;
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  border-radius: 12px;
  font-size: 16px;
}

body:not(.order-page):not(.legal-page) .steps h3 {
  grid-column: 3;
  grid-row: 1;
  margin: 0 0 3px;
  font-size: 15px;
}

body:not(.order-page):not(.legal-page) .steps p {
  grid-column: 3;
  grid-row: 2;
  max-width: none;
  font-size: 12px;
  line-height: 1.4;
}

body:not(.order-page):not(.legal-page) .client-grid {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.order-page):not(.legal-page) .client-grid > .client-card:not(:first-child) {
  display: none;
}

body:not(.order-page):not(.legal-page) .mobile-client-alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

body:not(.order-page):not(.legal-page) .mobile-client-alternatives span {
  width: 100%;
  color: var(--muted);
  font-size: 11px;
}

body:not(.order-page):not(.legal-page) .mobile-client-alternatives a {
  flex: 1;
  min-width: 120px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-size: 11px;
}

body:not(.order-page):not(.legal-page) .connect-guide,
body:not(.order-page):not(.legal-page) .subscription-warning,
body:not(.order-page):not(.legal-page) .smart-routing {
  display: none;
}

body:not(.order-page):not(.legal-page) .faq-grid,
body:not(.order-page):not(.legal-page) .legal-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

body:not(.order-page):not(.legal-page) .legal-cards {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.order-page):not(.legal-page) .legal-card-wide {
  grid-column: auto;
}

/* Balanced desktop hero below the fixed header */
@media (min-width: 901px) {
  body:not(.order-page):not(.legal-page) .hero {
    min-height: 690px;
    padding: 118px 0 64px;
  }

  body:not(.order-page):not(.legal-page) .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.68fr);
    align-items: start;
    gap: clamp(44px, 5vw, 76px);
  }

  body:not(.order-page):not(.legal-page) .hero-copy {
    padding-top: 18px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    max-width: 690px;
    font-size: clamp(52px, 5.2vw, 72px);
    line-height: 0.98;
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    max-width: 620px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.55;
  }

  body:not(.order-page):not(.legal-page) .hero-points {
    gap: 22px;
    margin-top: 34px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card {
    width: 100%;
    max-width: 415px;
    justify-self: end;
    padding: 26px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card h2 {
    margin-top: 26px;
    font-size: 25px;
  }

  body:not(.order-page):not(.legal-page) .device-stepper {
    height: 86px;
    margin-top: 20px;
  }
}

/* Purpose-built compact mobile homepage */
@media (max-width: 640px) {
  body:not(.order-page):not(.legal-page) .hero {
    min-height: auto;
    padding: 96px 0 42px;
  }

  body:not(.order-page):not(.legal-page) .hero-grid {
    gap: 30px;
  }

  body:not(.order-page):not(.legal-page) .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  body:not(.order-page):not(.legal-page) .hero-points {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .network-showcase {
    padding: 22px 0 48px;
  }

  body:not(.order-page):not(.legal-page) .network-visual {
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(198, 83, 255, 0.16), rgba(198, 83, 255, 0.04));
  }

  body:not(.order-page):not(.legal-page) .network-visual > img,
  body:not(.order-page):not(.legal-page) .network-shade,
  body:not(.order-page):not(.legal-page) .network-copy p,
  body:not(.order-page):not(.legal-page) .network-total,
  body:not(.order-page):not(.legal-page) .protocol-note {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .network-copy {
    position: relative;
    inset: auto;
    width: auto;
  }

  body:not(.order-page):not(.legal-page) .network-copy h2 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.08;
  }

  body:not(.order-page):not(.legal-page) .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  body:not(.order-page):not(.legal-page) .location-grid article {
    min-height: 74px;
    padding: 12px;
  }

  body:not(.order-page):not(.legal-page) .location-grid small {
    font-size: 10px;
    line-height: 1.25;
  }

  body:not(.order-page):not(.legal-page) .trust-strip,
  body:not(.order-page):not(.legal-page) .how,
  body:not(.order-page):not(.legal-page) .smart-routing,
  body:not(.order-page):not(.legal-page) .feature-section,
  body:not(.order-page):not(.legal-page) .final-cta {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .clients-section {
    padding: 54px 0;
  }

  body:not(.order-page):not(.legal-page) .clients-heading {
    margin-bottom: 24px;
  }

  body:not(.order-page):not(.legal-page) .clients-heading h2 {
    font-size: 34px;
  }

  body:not(.order-page):not(.legal-page) .clients-lead {
    font-size: 14px;
  }

  body:not(.order-page):not(.legal-page) .client-grid {
    width: 100%;
    display: grid;
    padding: 0;
    overflow: visible;
  }

  body:not(.order-page):not(.legal-page) .client-grid > .client-card:not(:first-child) {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .client-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 18px;
  }

  body:not(.order-page):not(.legal-page) .client-card > p,
  body:not(.order-page):not(.legal-page) .platform-list {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .client-downloads {
    margin-top: 16px;
  }

  body:not(.order-page):not(.legal-page) .mobile-client-alternatives {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
  }

  body:not(.order-page):not(.legal-page) .mobile-client-alternatives span {
    width: 100%;
    color: var(--muted);
    font-size: 11px;
  }

  body:not(.order-page):not(.legal-page) .mobile-client-alternatives a {
    flex: 1;
    padding: 9px 7px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 750;
  }

  body:not(.order-page):not(.legal-page) .connect-guide,
  body:not(.order-page):not(.legal-page) .subscription-warning {
    display: none;
  }

  body:not(.order-page):not(.legal-page) .faq,
  body:not(.order-page):not(.legal-page) .legal-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  body:not(.order-page):not(.legal-page) .faq-grid {
    gap: 24px;
  }

  body:not(.order-page):not(.legal-page) .legal-card {
    padding: 18px;
  }

  body:not(.order-page):not(.legal-page) .legal-grid {
    width: 100%;
    display: block;
    gap: 22px;
  }

  body:not(.order-page):not(.legal-page) .legal-heading {
    width: 100%;
    display: block;
    margin: 0 0 22px;
  }

  body:not(.order-page):not(.legal-page) .legal-heading .section-kicker,
  body:not(.order-page):not(.legal-page) .legal-heading h2,
  body:not(.order-page):not(.legal-page) .legal-heading p {
    width: 100%;
    max-width: 100%;
    display: block;
  }

  body:not(.order-page):not(.legal-page) .legal-heading h2 {
    margin: 9px 0 0;
    font-size: 34px;
    line-height: 1.03;
    overflow-wrap: normal;
    word-break: normal;
  }

  body:not(.order-page):not(.legal-page) .legal-heading p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  body:not(.order-page):not(.legal-page) .legal-cards {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  body:not(.order-page):not(.legal-page) .faq .section-heading {
    display: block;
  }

  body:not(.order-page):not(.legal-page) .legal-card-wide {
    grid-column: auto;
  }

  body:not(.order-page):not(.legal-page) .legal-card .contact-email {
    font-size: 12px;
    word-break: break-all;
  }

  body:not(.order-page):not(.legal-page) .legal-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* Final compact scale */
.header-inner {
  min-height: 64px;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.header-nav {
  gap: 24px;
}

.header-nav .nav-support {
  padding: 8px 14px;
}

.header-nav .nav-account {
  border-color: rgba(198, 83, 255, 0.72);
  background: linear-gradient(135deg, rgba(198, 83, 255, 0.24), rgba(126, 55, 196, 0.18));
  color: #f7eaff;
  box-shadow: 0 0 22px rgba(198, 83, 255, 0.12);
}

.header-nav .nav-account:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(198, 83, 255, 0.34), rgba(126, 55, 196, 0.24));
  color: #fff;
}

body:not(.order-page):not(.legal-page) .header-nav {
  gap: 8px;
}

body:not(.order-page):not(.legal-page) .section {
  padding: 72px 0;
}

body:not(.order-page):not(.legal-page) .section-heading {
  margin-bottom: 34px;
}

body:not(.order-page):not(.legal-page) .section-heading h2,
body:not(.order-page):not(.legal-page) .feature-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
}

body:not(.order-page):not(.legal-page) .client-card {
  padding: 22px;
  border-radius: 20px;
}

body:not(.order-page):not(.legal-page) .faq,
body:not(.order-page):not(.legal-page) .legal-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 901px) {
  body:not(.order-page):not(.legal-page) .hero {
    min-height: 570px;
    padding: 94px 0 44px;
  }

  body:not(.order-page):not(.legal-page) .hero-copy {
    padding-top: 10px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    max-width: 620px;
    font-size: clamp(46px, 4.6vw, 62px);
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    max-width: 570px;
    margin-top: 18px;
    font-size: 16px;
  }

  body:not(.order-page):not(.legal-page) .hero-points {
    gap: 18px;
    margin-top: 25px;
  }

  body:not(.order-page):not(.legal-page) .hero-point {
    font-size: 12px;
  }

  body:not(.order-page):not(.legal-page) .point-icon {
    width: 34px;
    height: 34px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card {
    max-width: 390px;
    padding: 21px;
    border-radius: 22px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card h2 {
    margin-top: 20px;
    font-size: 22px;
  }

  body:not(.order-page):not(.legal-page) .card-hint {
    font-size: 12px;
  }

  body:not(.order-page):not(.legal-page) .device-stepper {
    height: 72px;
    margin-top: 15px;
    grid-template-columns: 46px 1fr 46px;
  }

  body:not(.order-page):not(.legal-page) .stepper-button {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  body:not(.order-page):not(.legal-page) .price-row {
    margin-top: 16px;
  }

  body:not(.order-page):not(.legal-page) .buy-button {
    min-height: 52px;
    margin-top: 14px;
  }

  body:not(.order-page):not(.legal-page) .yookassa-badge {
    margin-top: 12px;
    padding: 10px 12px;
  }

  body:not(.order-page):not(.legal-page) .network-showcase {
    padding: 38px 0 52px;
  }

  body:not(.order-page):not(.legal-page) .network-visual {
    min-height: 390px;
  }

  body:not(.order-page):not(.legal-page) .network-copy h2 {
    font-size: 38px;
  }

  body:not(.order-page):not(.legal-page) .location-grid article {
    min-height: 82px;
    padding: 14px;
  }

  body:not(.order-page):not(.legal-page) .connect-guide,
  body:not(.order-page):not(.legal-page) .feature-panel {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 60px;
  }

  .header-nav .nav-support:not(.nav-account) {
    display: none;
  }

  .header-nav .nav-account {
    padding: 8px 11px !important;
    font-size: 11px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  body:not(.order-page):not(.legal-page) .hero {
    padding: 78px 0 30px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    margin-top: 14px;
    font-size: 14px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card {
    padding: 16px;
    border-radius: 18px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card h2 {
    margin-top: 18px;
    font-size: 21px;
  }

  body:not(.order-page):not(.legal-page) .device-stepper {
    height: 68px;
    margin-top: 14px;
  }

  body:not(.order-page):not(.legal-page) .network-showcase {
    padding-bottom: 34px;
  }

  body:not(.order-page):not(.legal-page) .clients-section,
  body:not(.order-page):not(.legal-page) .faq,
  body:not(.order-page):not(.legal-page) .legal-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body:not(.order-page):not(.legal-page) .clients-heading h2,
  body:not(.order-page):not(.legal-page) .legal-heading h2 {
    font-size: 30px;
  }

  body:not(.order-page):not(.legal-page) .section-heading {
    margin-bottom: 20px;
  }

  body:not(.order-page):not(.legal-page) .client-card {
    padding: 15px;
    border-radius: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Compact homepage density */
body:not(.order-page):not(.legal-page) .shell {
  width: min(1120px, calc(100% - 36px));
}

body:not(.order-page):not(.legal-page) .section {
  padding: 48px 0;
}

body:not(.order-page):not(.legal-page) .section-heading {
  margin-bottom: 24px;
}

body:not(.order-page):not(.legal-page) .section-heading h2,
body:not(.order-page):not(.legal-page) .feature-copy h2 {
  font-size: clamp(30px, 3.3vw, 42px);
}

body:not(.order-page):not(.legal-page) .steps li {
  min-height: 205px;
  padding: 20px 24px 22px 0;
}

body:not(.order-page):not(.legal-page) .steps li:not(:first-child) {
  padding-left: 24px;
}

body:not(.order-page):not(.legal-page) .step-symbol {
  width: 52px;
  height: 52px;
  margin: 22px 0 18px;
  border-radius: 16px;
  font-size: 19px;
}

body:not(.order-page):not(.legal-page) .steps h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

body:not(.order-page):not(.legal-page) .steps p {
  font-size: 12px;
  line-height: 1.5;
}

body:not(.order-page):not(.legal-page) .client-card {
  min-height: 260px;
  padding: 18px;
}

body:not(.order-page):not(.legal-page) .client-card > p {
  min-height: 0;
  margin: 15px 0 12px;
  font-size: 12px;
  line-height: 1.5;
}

body:not(.order-page):not(.legal-page) .client-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

body:not(.order-page):not(.legal-page) .client-card h3 {
  font-size: 19px;
}

body:not(.order-page):not(.legal-page) .connect-guide {
  gap: 30px;
  margin-top: 18px;
  padding: 24px;
}

body:not(.order-page):not(.legal-page) .subscription-warning {
  margin-top: 12px;
  padding: 14px 18px;
}

body:not(.order-page):not(.legal-page) .routing-card {
  min-height: 285px;
  padding: 25px;
  border-radius: 20px;
}

body:not(.order-page):not(.legal-page) .routing-card > div:not(.route-path):not(.app-cloud) {
  margin-top: 20px;
}

body:not(.order-page):not(.legal-page) .routing-card h3 {
  font-size: clamp(23px, 2.4vw, 31px);
}

body:not(.order-page):not(.legal-page) .feature-panel {
  min-height: 360px;
  gap: 44px;
  padding: 42px;
  border-radius: 26px;
}

body:not(.order-page):not(.legal-page) .feature-copy p {
  margin: 18px 0;
  font-size: 14px;
  line-height: 1.55;
}

body:not(.order-page):not(.legal-page) .server-card {
  min-height: 78px;
  padding: 14px 18px;
}

body:not(.order-page):not(.legal-page) .faq,
body:not(.order-page):not(.legal-page) .legal-section {
  padding: 48px 0;
}

body:not(.order-page):not(.legal-page) .faq-grid {
  gap: 55px;
}

body:not(.order-page):not(.legal-page) .accordion summary {
  min-height: 58px;
  font-size: 14px;
}

body:not(.order-page):not(.legal-page) .accordion details p {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.55;
}

body:not(.order-page):not(.legal-page) .legal-card {
  padding: 18px;
}

body:not(.order-page):not(.legal-page) .final-cta {
  padding: 52px 0;
}

body:not(.order-page):not(.legal-page) .final-cta h2 {
  font-size: clamp(38px, 4.5vw, 56px);
}

@media (min-width: 901px) {
  body:not(.order-page):not(.legal-page) .hero {
    min-height: 470px;
    padding: 82px 0 30px;
  }

  body:not(.order-page):not(.legal-page) .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) 370px;
    gap: 50px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    font-size: clamp(43px, 4.2vw, 56px);
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    max-width: 540px;
    margin-top: 15px;
    font-size: 14px;
  }

  body:not(.order-page):not(.legal-page) .hero-points {
    margin-top: 20px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card {
    max-width: 370px;
    padding: 16px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card h2 {
    margin-top: 11px;
    font-size: 19px;
  }

  body:not(.order-page):not(.legal-page) .device-stepper {
    height: 66px;
    margin-top: 9px;
    padding: 6px 8px;
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  body:not(.order-page):not(.legal-page) .stepper-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 21px;
  }

  body:not(.order-page):not(.legal-page) .device-value {
    min-width: 0;
    height: 52px;
  }

  body:not(.order-page):not(.legal-page) .device-value input {
    height: 30px;
    font-size: 30px;
    line-height: 30px;
  }

  body:not(.order-page):not(.legal-page) .device-value span {
    margin-top: 1px;
    font-size: 10px;
    line-height: 13px;
  }

  body:not(.order-page):not(.legal-page) .buy-button {
    min-height: 44px;
    margin-top: 10px;
  }

  body:not(.order-page):not(.legal-page) .price-row {
    margin-top: 11px;
  }

  body:not(.order-page):not(.legal-page) .secure-note {
    margin-top: 8px;
  }

  body:not(.order-page):not(.legal-page) .yookassa-badge {
    margin-top: 8px;
    padding: 7px 10px;
  }
}

@media (max-width: 640px) {
  body:not(.order-page):not(.legal-page) .shell {
    width: min(100% - 24px, 1120px);
  }

  body:not(.order-page):not(.legal-page) .hero {
    padding: 70px 0 22px;
  }

  body:not(.order-page):not(.legal-page) .hero-grid {
    gap: 18px;
  }

  body:not(.order-page):not(.legal-page) .hero h1 {
    font-size: 32px;
  }

  body:not(.order-page):not(.legal-page) .hero-lead {
    margin-top: 10px;
    font-size: 13px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card {
    padding: 14px;
  }

  body:not(.order-page):not(.legal-page) .checkout-card h2 {
    margin-top: 12px;
    font-size: 19px;
  }

  body:not(.order-page):not(.legal-page) .device-stepper {
    height: 66px;
    margin-top: 10px;
  }

  body:not(.order-page):not(.legal-page) .network-showcase {
    padding: 16px 0 24px;
  }

  body:not(.order-page):not(.legal-page) .network-visual {
    padding: 16px;
  }

  body:not(.order-page):not(.legal-page) .network-copy h2 {
    font-size: 24px;
  }

  body:not(.order-page):not(.legal-page) .location-grid article {
    min-height: 62px;
    padding: 10px;
  }

  body:not(.order-page):not(.legal-page) .clients-section,
  body:not(.order-page):not(.legal-page) .faq,
  body:not(.order-page):not(.legal-page) .legal-section {
    padding: 28px 0;
  }

  body:not(.order-page):not(.legal-page) .clients-heading h2,
  body:not(.order-page):not(.legal-page) .legal-heading h2 {
    font-size: 26px;
  }

  body:not(.order-page):not(.legal-page) .client-card {
    min-height: 0;
    padding: 13px;
  }

  body:not(.order-page):not(.legal-page) .faq-grid {
    gap: 16px;
  }

  body:not(.order-page):not(.legal-page) .accordion summary {
    min-height: 52px;
    font-size: 13px;
  }

  body:not(.order-page):not(.legal-page) .legal-heading {
    margin-bottom: 14px;
  }

  body:not(.order-page):not(.legal-page) .legal-heading p {
    margin-top: 9px;
  }

  body:not(.order-page):not(.legal-page) .legal-card {
    padding: 14px;
  }
}

/* Keep the compact stepper contained at every breakpoint. */
body:not(.order-page):not(.legal-page) .device-stepper {
  height: 66px;
  padding: 6px 8px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 8px;
}

body:not(.order-page):not(.legal-page) .stepper-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 21px;
}

body:not(.order-page):not(.legal-page) .device-value {
  min-width: 0;
  height: 52px;
}

body:not(.order-page):not(.legal-page) .device-value input {
  height: 30px;
  font-size: 30px;
  line-height: 30px;
}

body:not(.order-page):not(.legal-page) .device-value span {
  margin-top: 1px;
  font-size: 10px;
  line-height: 13px;
}

/* Simple homepage: no repeated sales blocks or image overlays. */
body:not(.order-page):not(.legal-page) .trust-strip,
body:not(.order-page):not(.legal-page) .feature-section,
body:not(.order-page):not(.legal-page) .final-cta {
  display: none;
}

body:not(.order-page):not(.legal-page) .network-showcase {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0610;
}

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

.network-simple-heading h2 {
  margin: 7px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.network-simple-heading p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
}

body:not(.order-page):not(.legal-page) .location-grid {
  gap: 10px;
  margin-top: 0;
}

body:not(.order-page):not(.legal-page) .location-grid article {
  min-height: 68px;
  padding: 12px 14px;
  border-radius: 14px;
}

body:not(.order-page):not(.legal-page) .section-kicker {
  font-size: 9px;
}

body:not(.order-page):not(.legal-page) p {
  font-size: 13px;
}

@media (max-width: 640px) {
  body:not(.order-page):not(.legal-page) .network-showcase {
    padding: 24px 0;
  }

  .network-simple-heading {
    display: block;
    margin-bottom: 14px;
  }

  .network-simple-heading h2 {
    font-size: 23px;
  }

  .network-simple-heading p {
    margin-top: 6px;
    font-size: 12px;
  }
}

/* Final homepage layout contract — must remain last. */
html body:not(.order-page):not(.legal-page) .shell {
  width: min(calc(100% - 24px), 768px);
}

html body:not(.order-page):not(.legal-page) .hero {
  min-height: 0;
  padding: 82px 0 26px;
}

html body:not(.order-page):not(.legal-page) .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

html body:not(.order-page):not(.legal-page) .hero-copy {
  padding-top: 0;
  text-align: left;
}

html body:not(.order-page):not(.legal-page) .checkout-card {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

html body:not(.order-page):not(.legal-page) .how {
  display: block;
}

html body:not(.order-page):not(.legal-page) .steps {
  grid-template-columns: minmax(0, 1fr);
}

html body:not(.order-page):not(.legal-page) .steps li,
html body:not(.order-page):not(.legal-page) .steps li:not(:first-child) {
  min-height: 0;
  display: grid;
  grid-template-columns: 26px 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 14px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

html body:not(.order-page):not(.legal-page) .step-number {
  grid-column: 1;
  grid-row: 1 / 3;
}

html body:not(.order-page):not(.legal-page) .step-symbol {
  width: 42px;
  height: 42px;
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  border-radius: 12px;
  font-size: 16px;
}

html body:not(.order-page):not(.legal-page) .steps h3 {
  grid-column: 3;
  grid-row: 1;
  margin: 0 0 3px;
  font-size: 15px;
}

html body:not(.order-page):not(.legal-page) .steps p {
  grid-column: 3;
  grid-row: 2;
  max-width: none;
  font-size: 12px;
  line-height: 1.4;
}

html body:not(.order-page):not(.legal-page) .client-grid {
  grid-template-columns: minmax(0, 1fr);
}

.clients-simple-title {
  margin: 0 0 16px;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

html body:not(.order-page):not(.legal-page) .client-grid > .client-card,
html body:not(.order-page):not(.legal-page) .client-grid > .client-card:not(:first-child) {
  display: flex;
}

html body:not(.order-page):not(.legal-page) .client-card {
  min-height: 0;
}

html body:not(.order-page):not(.legal-page) .mobile-client-alternatives {
  display: none;
}

.order-summary-key {
  grid-column: 1 / -1;
}

.order-summary-key strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.45;
}

html body:not(.order-page):not(.legal-page) .faq {
  padding: 28px 0;
}

html body:not(.order-page):not(.legal-page) .faq-grid {
  display: block;
}

html body:not(.order-page):not(.legal-page) .faq .section-heading {
  margin: 0 0 12px;
}

html body:not(.order-page):not(.legal-page) .faq .section-heading h2 {
  margin-top: 6px;
  font-size: 25px;
  line-height: 1.05;
}

html body:not(.order-page):not(.legal-page) .accordion summary {
  min-height: 44px;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.3;
}

html body:not(.order-page):not(.legal-page) .accordion summary span {
  font-size: 18px;
}

html body:not(.order-page):not(.legal-page) .accordion details p {
  max-width: none;
  margin: 0 30px 12px 0;
  font-size: 12px;
  line-height: 1.5;
}

.usage-notice {
  margin-top: -12px;
  padding: 0 0 14px;
  background: transparent;
}

.usage-notice .shell {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 190, 90, 0.26);
  border-radius: 15px;
  background: rgba(255, 166, 64, 0.055);
}

.usage-notice p {
  margin: 0;
  color: #c9bdcf;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .usage-notice {
    margin-top: -8px;
    padding: 0 0 12px;
  }

  .usage-notice .shell {
    padding: 13px 14px;
  }
}

html body:not(.order-page):not(.legal-page) .how .section-heading h2 {
  margin-top: 6px;
  font-size: 27px;
  line-height: 1.05;
}

html body:not(.order-page):not(.legal-page) .location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 520px) {
  html body:not(.order-page):not(.legal-page) .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Clean section rhythm: no full-width separator stripes. */
html body:not(.order-page):not(.legal-page) main > section,
html body:not(.order-page):not(.legal-page) main > aside,
html body:not(.order-page):not(.legal-page) .network-showcase,
html body:not(.order-page):not(.legal-page) .clients-section,
html body:not(.order-page):not(.legal-page) .smart-routing,
html body:not(.order-page):not(.legal-page) .faq,
html body:not(.order-page):not(.legal-page) .legal-section {
  border-top: 0;
  border-bottom: 0;
}

html body:not(.order-page):not(.legal-page) .hero::after {
  display: none;
}

html body:not(.order-page):not(.legal-page) .hero,
html body:not(.order-page):not(.legal-page) .network-showcase,
html body:not(.order-page):not(.legal-page) .how,
html body:not(.order-page):not(.legal-page) .clients-section,
html body:not(.order-page):not(.legal-page) .faq,
html body:not(.order-page):not(.legal-page) .legal-section {
  background-image: none;
}

html body:not(.order-page):not(.legal-page) .network-showcase {
  padding: 28px 0;
  background: transparent;
}

html body:not(.order-page):not(.legal-page) .how,
html body:not(.order-page):not(.legal-page) .clients-section,
html body:not(.order-page):not(.legal-page) .faq,
html body:not(.order-page):not(.legal-page) .legal-section {
  padding: 30px 0;
  background-color: transparent;
}

/* Passkey-only account */
.account-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 83, 255, 0.15), transparent 34rem),
    var(--bg);
}

.account-page .account-header {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1120px);
  min-height: 76px;
  margin-inline: auto;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.account-page .account-header .brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(198, 83, 255, 0.25);
}

.account-shell {
  width: min(calc(100% - 40px), 1120px);
  margin: 26px auto 80px;
}

.account-page .card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(34, 16, 47, 0.94), rgba(16, 8, 24, 0.96));
  box-shadow: var(--shadow);
}

.account-auth {
  max-width: 650px;
  margin: 11vh auto 0;
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
}

.account-auth h1,
.account-title-row h1 {
  margin: 6px 0 14px;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.account-auth > p:not(.eyebrow) {
  color: var(--muted);
}

.account-actions {
  display: grid;
  gap: 12px;
  max-width: 390px;
  margin: 28px auto 0;
}

.secondary-button,
.text-button {
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  cursor: pointer;
  font-weight: 720;
}

.secondary-button {
  min-height: 46px;
  padding: 10px 18px;
}

.text-button {
  min-height: 38px;
  padding: 7px 12px;
  color: #ddb8f4;
}

.secondary-button:hover,
.text-button:hover {
  border-color: rgba(198, 83, 255, 0.55);
  background: rgba(198, 83, 255, 0.1);
}

.secondary-button:disabled,
.text-button:disabled,
.account-page .buy-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.account-note {
  margin-top: 26px;
  font-size: 13px;
}

.account-title-row,
.account-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.account-title-row {
  margin-bottom: 26px;
}

.account-status {
  padding: 9px 14px;
  border: 1px solid rgba(121, 233, 180, 0.26);
  border-radius: 999px;
  background: rgba(121, 233, 180, 0.09);
  color: #aaf2ce;
  font-weight: 760;
}

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

.account-card {
  padding: clamp(22px, 4vw, 32px);
}

.account-card h2 {
  margin: 0 0 14px;
  font-size: 23px;
}

.account-card p {
  color: var(--muted);
}

.account-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.account-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.account-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.account-facts dd {
  margin: 5px 0 0;
  font-weight: 780;
}

.account-card form {
  display: grid;
  gap: 15px;
}

.account-card label {
  display: grid;
  gap: 7px;
  color: #ded4e6;
  font-size: 13px;
  font-weight: 680;
}

.account-card label span {
  color: var(--muted);
  font-weight: 500;
}

.account-card input[type="number"] {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(5, 3, 9, 0.7);
  color: var(--text);
}

.account-price {
  margin: 0;
}

.account-price strong {
  color: var(--text);
  font-size: 24px;
}

.account-sales-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 193, 92, 0.28);
  border-radius: 13px;
  background: rgba(255, 193, 92, 0.08);
  color: #f5d49b !important;
  font-size: 13px;
  line-height: 1.45;
}

.account-card input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.account-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.account-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.account-list-item div {
  display: grid;
  min-width: 0;
}

.account-list-item strong,
.account-list-item small {
  overflow-wrap: anywhere;
}

.account-list-item small {
  margin-top: 3px;
  color: var(--muted);
}

.danger-button {
  color: #ffaaa4;
}

.account-orders {
  margin-top: 20px;
}

.account-message {
  position: fixed;
  z-index: 100;
  top: max(18px, env(safe-area-inset-top));
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  max-width: min(520px, calc(100% - 28px));
  margin: 0;
  padding: 11px 16px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(28, 27, 34, 0.78);
  color: #f8f7fb;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px) scale(0.96);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.account-message::before {
  content: "✓";
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(112, 213, 163, 0.2);
  color: #c9ffe4;
  font-size: 16px;
  font-weight: 800;
}

.account-message.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.account-message.form-error {
  border-color: rgba(255, 143, 143, 0.22);
  background: rgba(40, 25, 31, 0.82);
  color: #fff3f3;
}

.account-message.form-error::before {
  content: "!";
  background: rgba(255, 116, 116, 0.2);
  color: #ffd2d2;
}

.account-success {
  border-color: rgba(121, 233, 180, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .account-message { transition-duration: 1ms; }
}

.account-page .subscription-field {
  margin-top: 16px;
}

@media (max-width: 760px) {
  .account-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .account-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-page .account-header,
  .account-shell {
    width: min(calc(100% - 24px), 1120px);
  }
}

/* Full-screen Passkey sign-in experience */
.account-page:has(#auth-panel:not([hidden])) {
  overflow-x: hidden;
  background: #07040c;
}
.account-page:has(#auth-panel:not([hidden]))::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 12% 20%, rgba(196,64,255,.16), transparent 32%), radial-gradient(circle at 90% 82%, rgba(81,53,255,.12), transparent 35%);
}
.account-page:has(#auth-panel:not([hidden])) .account-header { position: relative; z-index: 3; width: 100%; min-height: 88px; padding: 0 clamp(22px,4vw,64px); }
.account-page:has(#auth-panel:not([hidden])) .account-shell { width: 100%; margin: 0; }
.account-auth { position: relative; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(440px,.92fr); width: 100%; min-height: calc(100vh - 88px); margin: 0; text-align: left; }
.auth-visual { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: clamp(56px,7vw,110px) clamp(40px,7vw,120px) clamp(44px,6vw,86px); border-radius: 0 54px 0 0; background: linear-gradient(145deg,#32104e 0%,#21103f 43%,#12102d 100%); }
.auth-visual::before { content:""; position:absolute; z-index:-1; inset:0; opacity:.28; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:52px 52px; mask-image:linear-gradient(to bottom,black,transparent 80%); }
.auth-orb { position:absolute; z-index:-1; border-radius:50%; filter:blur(3px); }
.auth-orb-one { width:460px;height:460px;right:-130px;top:-150px;background:radial-gradient(circle at 35% 35%,rgba(232,123,255,.55),rgba(129,47,230,.1) 62%,transparent 70%); }
.auth-orb-two { width:330px;height:330px;left:-140px;bottom:-90px;background:radial-gradient(circle,rgba(74,102,255,.34),transparent 70%); }
.auth-kicker { display:inline-flex; align-items:center; gap:10px; width:max-content; padding:9px 14px; border:1px solid rgba(255,255,255,.14); border-radius:999px; background:rgba(255,255,255,.075); color:#eadff4; font-size:12px; font-weight:700; letter-spacing:.02em; }
.auth-live-dot { width:7px;height:7px;border-radius:50%;background:#74f7be;box-shadow:0 0 14px #74f7be; }
.auth-visual-copy h2 { max-width:720px; margin:26px 0 24px; color:#fff; font-size:clamp(48px,6.2vw,96px); line-height:.96; letter-spacing:-.06em; }
.auth-visual-copy h2 span { background:linear-gradient(90deg,#e653ff,#8586ff); background-clip:text; -webkit-background-clip:text; color:transparent; }
.auth-visual-copy p { max-width:570px; margin:0; color:#c8b9d5; font-size:clamp(16px,1.5vw,21px); line-height:1.65; }
.auth-feature-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; max-width:640px; margin-top:50px; }
.auth-feature { display:flex; align-items:center; gap:13px; padding:16px; border:1px solid rgba(255,255,255,.11); border-radius:18px; background:rgba(255,255,255,.06); backdrop-filter:blur(12px); }
.auth-feature-icon { display:grid; place-items:center; flex:0 0 42px; width:42px;height:42px;border-radius:12px;background:rgba(211,80,255,.15);color:#e795ff; }
.auth-feature svg,.auth-content svg { width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
.auth-feature span:last-child { display:grid;gap:3px; }.auth-feature strong{font-size:13px}.auth-feature small{color:#a99ab7;font-size:11px}
.auth-content { display:flex; flex-direction:column; justify-content:center; width:min(100%,630px); padding:clamp(48px,7vw,100px) clamp(30px,6vw,90px); }
.auth-passkey-icon { display:grid;place-items:center;width:62px;height:62px;margin-bottom:30px;border:1px solid rgba(213,84,255,.26);border-radius:19px;background:linear-gradient(145deg,rgba(213,84,255,.2),rgba(112,76,255,.1));color:#e06aff;box-shadow:0 18px 55px rgba(173,54,255,.16); }
.account-auth .eyebrow { margin:0 0 12px; }.account-auth h1 { margin:0 0 16px;font-size:clamp(40px,4.4vw,68px);line-height:1;letter-spacing:-.055em; }
.account-auth .auth-lead { max-width:480px;margin:0;color:#a99eb2!important;font-size:16px;line-height:1.65; }
.account-auth .account-actions { gap:12px; max-width:none; margin:32px 0 0; }
.account-auth .auth-primary,.account-auth .auth-secondary { display:flex;align-items:center;justify-content:center;gap:12px;width:100%;min-height:58px;border-radius:16px;font-size:15px;transition:transform .2s,box-shadow .2s,border-color .2s; }
.account-auth .auth-primary { position:relative;background:linear-gradient(110deg,#bd3df1,#8e4af4);box-shadow:0 14px 34px rgba(173,61,238,.25); }
.account-auth .auth-primary:hover { transform:translateY(-2px);box-shadow:0 18px 42px rgba(173,61,238,.38); }
.account-auth .auth-primary svg{position:absolute;left:20px}.auth-arrow{position:absolute;right:20px;font-size:22px}
.account-auth .auth-secondary { position:relative;border-color:rgba(255,255,255,.13);background:rgba(255,255,255,.035); }.account-auth .auth-secondary:hover{transform:translateY(-1px);border-color:rgba(211,84,255,.45)}
.account-auth .auth-claim { min-height:42px;border:0;background:transparent;color:#8f8498;font-weight:500; }.account-auth .auth-claim span{color:#d56aff;font-weight:700}
.auth-privacy { display:flex;align-items:flex-start;gap:12px;margin-top:26px;padding-top:24px;border-top:1px solid rgba(255,255,255,.08);color:#827789; }.auth-privacy svg{flex:0 0 20px;width:20px;height:20px}.auth-privacy p{margin:0!important;color:inherit!important;font-size:11px;line-height:1.6}.auth-privacy strong{color:#aaa0b0;font-size:12px}
@media(max-width:900px){
  .account-page:has(#auth-panel:not([hidden])) .account-header{min-height:72px;padding:0 18px}.account-page .account-header .brand img{width:40px;height:40px}
  .account-auth{grid-template-columns:1fr;min-height:calc(100vh - 72px)}.auth-visual{min-height:350px;padding:42px 24px 32px;border-radius:0 0 34px 34px}.auth-visual-copy h2{margin:22px 0 14px;font-size:clamp(46px,13vw,72px)}.auth-visual-copy p{font-size:15px}.auth-feature-grid{margin-top:34px}.auth-content{width:100%;padding:46px max(22px,6vw) 60px}.auth-passkey-icon{margin-bottom:24px}.account-auth h1{font-size:clamp(38px,10vw,56px)}
}
@media(max-width:520px){.auth-visual{min-height:315px}.auth-feature-grid{gap:8px}.auth-feature{padding:11px 9px;gap:8px}.auth-feature-icon{flex-basis:34px;width:34px;height:34px}.auth-feature strong{font-size:11px}.auth-feature small{font-size:9px}.auth-content{padding-top:38px}.account-auth .auth-primary,.account-auth .auth-secondary{min-height:56px}.account-page:has(#auth-panel:not([hidden])) .brand span{font-size:14px}}
@media(prefers-reduced-motion:no-preference){.auth-orb-one{animation:auth-float 9s ease-in-out infinite alternate}.auth-orb-two{animation:auth-float 12s ease-in-out infinite alternate-reverse}@keyframes auth-float{to{transform:translate3d(28px,22px,0) scale(1.06)}}}

/* Auth layout reset: override the legacy centered-card dimensions. */
.account-page .account-auth {
  max-width: none;
  padding: 0;
}

.subscription-claim-form { display:grid; gap:12px; margin-top:18px; padding:18px; border:1px solid rgba(213,84,255,.28); border-radius:18px; background:rgba(213,84,255,.07); }
.subscription-claim-form[hidden] { display:none; }
.subscription-claim-form label { color:#f3eafb; font-size:14px; font-weight:750; }
.subscription-claim-form p { margin:0!important; color:#978b9e!important; font-size:12px; line-height:1.5; }
.subscription-claim-form input { width:100%; min-height:52px; padding:12px 14px; border:1px solid rgba(255,255,255,.16); border-radius:13px; outline:none; background:#0c0712; color:#fff; font:inherit; }
.subscription-claim-form input:focus { border-color:#ce55fa; box-shadow:0 0 0 3px rgba(206,85,250,.12); }
.subscription-claim-actions { display:grid; grid-template-columns:1fr auto; gap:10px; }
.subscription-claim-actions .buy-button { min-height:48px; }

/* Spacious dashboard — visual continuation of the sign-in screen. */
.account-page:has(#dashboard:not([hidden])) {
  overflow-x: hidden;
  background: #07040c;
}
.account-page:has(#dashboard:not([hidden]))::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 5%, rgba(196, 64, 255, .2), transparent 34rem),
    radial-gradient(circle at 92% 72%, rgba(81, 53, 255, .14), transparent 38rem);
}
.account-page:has(#dashboard:not([hidden])) .account-header {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1440px);
  min-height: 92px;
}
.account-page:has(#dashboard:not([hidden])) .account-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1440px);
  margin: 34px auto 90px;
}
.account-page:has(#dashboard:not([hidden])) .account-title-row {
  align-items: end;
  margin-bottom: 34px;
  padding: clamp(8px, 2vw, 24px) 4px;
}
.account-page:has(#dashboard:not([hidden])) .account-title-row h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 6vw, 74px);
  background: linear-gradient(100deg, #fff 20%, #e9c5ff 70%, #bca7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.account-hero-copy { margin: 0; color: #9d91a5; font-size: clamp(14px, 1.4vw, 18px); }
.account-page:has(#dashboard:not([hidden])) .account-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 22px;
}
.account-page:has(#dashboard:not([hidden])) .account-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(35,17,48,.88), rgba(14,9,23,.92));
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
}
.account-page:has(#dashboard:not([hidden])) .account-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,91,255,.52), transparent);
}
.account-subscription-card { min-height: 340px; }
.account-subscription-card .account-facts { max-width: 680px; }
.card-kicker,.security-badge {
  padding: 7px 11px; border: 1px solid rgba(191,100,255,.26); border-radius: 999px;
  background: rgba(191,100,255,.08); color: #e4b8ff; font-size: 12px; font-weight: 750;
}
.security-badge { border-color: rgba(121,233,180,.25); background: rgba(121,233,180,.08); color: #aaf2ce; }
.field-label { margin: 4px 0 9px; font-size: 12px; font-weight: 700; }
.account-page .subscription-field { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; margin-top: 0; }
.account-page .subscription-field[hidden] { display: none; }
.account-page .subscription-field input { min-width: 0; min-height: 52px; padding: 12px 15px; border-radius: 14px; }
.account-page .copy-button { min-width: 130px; border-radius: 14px; }
.device-summary { margin: 3px 0 0 !important; font-size: 13px; }
.telegram-auth-button { text-decoration: none; }
.account-contacts-card { display: grid; align-content: start; gap: 20px; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.contact-row div { display: grid; gap: 4px; }
.contact-row small { color: var(--muted); }
.messenger-icon { width: 26px; height: 26px; flex: 0 0 26px; object-fit: contain; border-radius: 7px; }
.auth-secondary .messenger-icon { position: absolute; left: 20px; width: 24px; height: 24px; flex-basis: 24px; }
.auth-secondary .auth-side-icon { position: absolute; left: 20px; width: 22px; height: 22px; }
.contact-row .contact-identity { display: flex; align-items: center; gap: 11px; }
.contact-row .contact-identity > span { display: grid; gap: 4px; }
.messenger-heading { display: flex; align-items: center; gap: 10px; }
.control-wide-card { grid-column: 1 / -1; }
.control-wide-card textarea { box-sizing: border-box; width: 100%; min-height: 128px; margin-top: 8px; padding: 14px; resize: vertical; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(5,3,9,.7); color: var(--text); font: inherit; line-height: 1.5; }
.control-wide-card textarea:focus { outline: 2px solid rgba(198,83,255,.45); outline-offset: 1px; }
.control-source-summary { color: var(--muted); }
.control-secret-field { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; align-items: center; }
.control-secret-field input { min-width: 0; }
.account-page .account-auth .account-actions > .auth-primary,
.account-page .account-auth .account-actions > .auth-secondary {
  box-sizing: border-box;
  width: 100%;
  height: 58px;
  min-height: 58px;
  margin: 0;
  padding: 0 20px;
  border-radius: 16px;
}
.contact-email-field { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.contact-email-field input { min-width: 0; min-height: 48px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 13px; background: rgba(5,3,9,.7); color: var(--text); }
.account-orders { padding: clamp(22px,4vw,32px); }
@media (max-width: 900px) {
  .account-page:has(#dashboard:not([hidden])) .account-grid { grid-template-columns: 1fr; }
  .account-page:has(#dashboard:not([hidden])) .account-header,
  .account-page:has(#dashboard:not([hidden])) .account-shell { width: min(calc(100% - 28px), 1440px); }
}
@media (max-width: 560px) {
  .account-page:has(#dashboard:not([hidden])) .account-header { min-height: 72px; }
  .account-page:has(#dashboard:not([hidden])) .account-shell { margin-top: 16px; }
  .account-page:has(#dashboard:not([hidden])) .account-title-row { align-items: flex-start; }
  .account-page:has(#dashboard:not([hidden])) .account-title-row h1 { font-size: 40px; }
  .account-page .subscription-field { grid-template-columns: 1fr; }
  .account-page .copy-button { min-height: 48px; }
  .account-facts { grid-template-columns: 1fr; }
  .account-list-item { align-items: flex-start; }
  .contact-email-field { grid-template-columns: 1fr; }
}

/* Home 2026 */
.home-v2 { background: #08050e; color: #f8f4ff; }
html body.home-v2:not(.order-page):not(.legal-page) .shell { width: min(calc(100% - 40px), 1220px); }
.home-header { background: rgba(8,5,14,.78); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.home-header .header-inner { min-height: 78px; }
.home-header .header-nav { gap: 28px; }
.home-login { display: inline-flex; align-items: center; gap: 18px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; text-decoration: none; font-weight: 750; }
.home-login:hover { border-color: #c94cff; background: rgba(201,76,255,.08); }
.home-hero { position: relative; overflow: hidden; min-height: 560px; padding: clamp(112px,8vw,132px) 0 58px; border-bottom: 1px solid rgba(255,255,255,.08); }
.home-hero::before { content:""; position:absolute; inset:0; pointer-events:none; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to bottom,#000,transparent 88%); }
.home-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; opacity:.24; }
.home-orb-one { width:520px; height:520px; top:-170px; left:-180px; background:#7b2cff; }
.home-orb-two { width:480px; height:480px; right:-160px; bottom:-220px; background:#dc39ff; }
.home-hero-grid { position:relative; display:grid; grid-template-columns:minmax(0,1.15fr) minmax(360px,.72fr); align-items:start; gap:clamp(48px,8vw,112px); }
.home-eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom:25px; color:#cdbfd6; font-size:13px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.home-eyebrow i { width:8px; height:8px; border-radius:50%; background:#38e9a7; box-shadow:0 0 18px #38e9a7; }
.home-hero-copy h1 { max-width:720px; margin:0; font-size:clamp(48px,5.5vw,76px); line-height:.94; letter-spacing:-.06em; }
.home-hero-copy h1 em { color:#d855ff; font-style:normal; }
.home-hero-copy > p { max-width:660px; margin:30px 0 0; color:#b8adbf; font-size:clamp(17px,2vw,21px); line-height:1.55; }
.home-benefits { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.home-benefits span { display:flex; align-items:baseline; gap:7px; padding:10px 14px; border:1px solid rgba(255,255,255,.1); border-radius:999px; color:#b8adbf; font-size:13px; }
.home-benefits b { color:#fff; font-size:16px; }
.home-primary-link { display:inline-flex; align-items:center; gap:28px; margin-top:34px; padding:16px 21px; border-radius:14px; background:#f4edfa; color:#100b16; text-decoration:none; font-weight:850; }
.home-primary-link:hover { transform:translateY(-2px); }
.home-checkout { position:relative; padding:28px; border:1px solid rgba(216,85,255,.34); border-radius:28px; background:linear-gradient(155deg,rgba(38,17,49,.94),rgba(15,9,22,.96)); box-shadow:0 30px 90px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.06); }
.home-checkout::after { content:""; position:absolute; inset:-1px; z-index:-1; border-radius:28px; background:linear-gradient(135deg,rgba(213,70,255,.35),transparent 42%,rgba(54,233,167,.15)); filter:blur(18px); }
.home-checkout-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.home-checkout-head > div { display:flex; flex-direction:column; gap:3px; }
.home-checkout-head span { color:#a99caf; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.home-checkout-head strong { font-size:18px; }
.home-checkout h2 { margin:0 0 17px; font-size:25px; }
.home-checkout .device-stepper { margin-bottom:17px; background:rgba(5,3,9,.72); }
.home-checkout .price-row { margin:0 0 16px; padding:18px 0; border:0; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); border-radius:0; background:transparent; }
.home-checkout .buy-button { min-height:58px; }
.home-trial-note { display:flex; align-items:center; gap:13px; margin-top:20px; padding:14px; border:1px solid rgba(56,233,167,.2); border-radius:15px; background:rgba(56,233,167,.06); }
.home-trial-note > span { display:grid; place-items:center; width:42px; height:42px; flex:0 0 auto; border-radius:12px; background:#38e9a7; color:#072318; font-size:18px; font-weight:900; }
.home-trial-note p { margin:0; color:#9fbaaf; font-size:13px; line-height:1.4; }
.home-trial-note b { color:#dffcef; }
.home-route,.home-locations,.home-steps,.home-apps,.home-faq { padding:clamp(48px,6vw,76px) 0; }
.home-route,.home-steps,.home-faq { background:#0b0711; }
.home-section-head { margin-bottom:28px; }
.home-section-head > span,.home-section-head > div > span { display:block; margin-bottom:12px; color:#d855ff; font-size:12px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; }
.home-section-head h2 { margin:0; font-size:clamp(34px,4vw,52px); line-height:1; letter-spacing:-.045em; }
.home-section-head-row { display:flex; align-items:end; justify-content:space-between; gap:30px; }
.home-section-head-row p { max-width:360px; margin:0; color:#9f94a7; }
.route-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.route-card { overflow:hidden; padding:28px; border:1px solid rgba(255,255,255,.1); border-radius:24px; background:#120c19; }
.route-card-purple { background:linear-gradient(145deg,rgba(103,34,135,.28),#120c19 62%); }
.route-card-green { background:linear-gradient(145deg,rgba(27,113,81,.24),#120c19 62%); }
.route-card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; font-size:14px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.route-card-head i { color:#796f7f; font-style:normal; }
.route-flow { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.route-flow > div { min-width:100px; padding:16px 10px; border:1px solid rgba(255,255,255,.1); border-radius:15px; background:rgba(5,3,9,.45); text-align:center; }
.route-flow b,.route-flow small { display:block; }
.route-flow small { margin-top:4px; color:#8e8395; font-size:11px; }
.route-card-purple .route-flow > span { color:#d855ff; }
.route-card-green .route-flow > span { color:#38e9a7; }
.route-flow-wide > div { min-width:82px; }
.route-card > p { margin:28px 0 0; color:#a99daf; line-height:1.6; }
.home-locations { background:#08050e; }
.home-v2 .location-grid article { border-color:rgba(255,255,255,.1); background:#100b16; }
.home-step-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; padding:0; list-style:none; counter-reset:none; }
.home-step-grid li { padding:22px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:#110b18; }
.home-step-grid li > b { color:#d855ff; font-size:13px; }
.home-step-grid h3 { margin:30px 0 8px; font-size:21px; }
.home-step-grid p { margin:0; color:#988da0; }
.home-apps { background:#08050e; }
.home-app-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.home-app-grid article { padding:18px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:#100b16; }
.home-app-title { display:flex; align-items:center; gap:14px; }
.home-app-grid img,.home-app-mark { width:52px; height:52px; flex:0 0 auto; border-radius:15px; }
.home-app-mark { display:grid; place-items:center; background:linear-gradient(145deg,#632483,#b83ee5); font-weight:900; }
.home-app-grid h3,.home-app-grid p { margin:0; }
.home-app-grid p { margin-top:5px; color:#8f8496; font-size:12px; }
.home-app-links { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.home-app-links a { padding:8px 11px; border:1px solid rgba(216,85,255,.28); border-radius:9px; color:#f1c9ff; text-decoration:none; font-size:12px; font-weight:750; }
.home-app-links a:hover { border-color:#d855ff; background:rgba(216,85,255,.09); }
.home-connect-guide { display:flex; align-items:center; gap:30px; margin-top:16px; padding:18px 20px; border:1px solid rgba(255,255,255,.1); border-radius:18px; background:#100b16; }
.home-connect-guide b { white-space:nowrap; }
.home-connect-guide ol { display:flex; flex-wrap:wrap; gap:12px 30px; margin:0; padding-left:22px; color:#a99daf; }
.home-faq-grid { display:grid; grid-template-columns:.65fr 1fr; gap:clamp(40px,8vw,110px); }
.home-faq-list details { border-top:1px solid rgba(255,255,255,.12); }
.home-faq-list details:last-child { border-bottom:1px solid rgba(255,255,255,.12); }
.home-faq-list summary { cursor:pointer; padding:24px 4px; font-size:18px; font-weight:750; }
.home-faq-list p { margin:-8px 4px 24px; color:#9d92a4; line-height:1.6; }
.home-final { padding:0 0 56px; background:#0b0711; }
.home-final-inner { display:flex; justify-content:space-between; align-items:end; gap:30px; padding:clamp(32px,6vw,70px); border:1px solid rgba(216,85,255,.28); border-radius:30px; background:linear-gradient(125deg,rgba(96,28,124,.52),rgba(19,11,27,.95) 66%); }
.home-final-inner > div > span { color:#e990ff; font-weight:800; }
.home-final h2 { margin:12px 0 0; font-size:clamp(34px,5vw,62px); line-height:1; letter-spacing:-.045em; }
.home-final a { display:inline-flex; gap:30px; padding:17px 21px; border-radius:14px; background:#fff; color:#110a17; text-decoration:none; font-weight:850; white-space:nowrap; }
.home-footer { background:#07040b; }
@media (max-width: 980px) {
  .home-header .header-nav { display:none; }
  .home-hero-grid { grid-template-columns:1fr; }
  .home-hero-copy { text-align:center; }
  .home-hero-copy > p { margin-left:auto; margin-right:auto; }
  .home-benefits { justify-content:center; }
  .home-checkout { width:min(100%,540px); margin:0 auto; }
  .route-grid { grid-template-columns:1fr; }
  .home-app-grid { grid-template-columns:1fr 1fr; }
  .home-faq-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  html body.home-v2:not(.order-page):not(.legal-page) .shell { width:min(calc(100% - 24px),1220px); }
  .home-header .header-inner { min-height:70px; }
  .home-login { padding:10px 12px; font-size:13px; }
  .home-login span { display:none; }
  .home-hero { min-height:0; padding:106px 0 70px; }
  .home-hero-copy h1 { font-size:49px; }
  .home-benefits span { flex:1 1 30%; justify-content:center; }
  .home-checkout { padding:20px; border-radius:22px; }
  .home-section-head-row,.home-final-inner { align-items:flex-start; flex-direction:column; }
  .route-card { padding:20px; }
  .route-flow { display:grid; grid-template-columns:1fr auto 1fr; }
  .route-flow > div { min-width:0; }
  .route-flow-wide { grid-template-columns:1fr auto 1fr; }
  .route-flow-wide > div:nth-of-type(3),.route-flow-wide > span:nth-of-type(3) { display:none; }
  .home-step-grid,.home-app-grid { grid-template-columns:1fr; }
  .home-connect-guide { align-items:flex-start; flex-direction:column; gap:12px; }
  .home-connect-guide ol { display:grid; gap:8px; }
  .home-step-grid h3 { margin-top:32px; }
  .home-final a { width:100%; justify-content:space-between; }
}
