: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: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.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;
  gap: 12px;
  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;
}

.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: 760px;
  padding: 160px 0 100px;
  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::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;
}

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

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

.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;
}

.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-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-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;
}

.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;
}

.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: relative;
}

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

.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: 22px;
  border: 1px solid rgba(198, 83, 255, 0.24);
  border-radius: 20px;
  background: rgba(198, 83, 255, 0.055);
  text-align: left;
}

.subscription-box label {
  display: block;
  margin-bottom: 10px;
  color: #e8dfed;
  font-size: 13px;
  font-weight: 750;
}

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

.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;
}

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

.subscription-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

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

.subscription-actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #160a20;
}

.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 {
    grid-template-columns: 1fr;
  }

  .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;
  }

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

  .header-nav {
    gap: 0;
  }

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

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

  .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;
  }

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

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

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

@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;
  }
}
