:root {
  --bg: #07131f;
  --bg-soft: #0b1b29;
  --panel: rgba(16, 38, 53, 0.82);
  --panel-strong: #102b3b;
  --line: rgba(167, 209, 221, 0.16);
  --text: #f4fbff;
  --muted: #9db3bf;
  --cyan: #55e1d4;
  --cyan-2: #27bfb6;
  --gold: #f2c979;
  --danger: #ff938f;
  --success: #78e9ae;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 20px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 2%, rgba(85, 225, 212, 0.10), transparent 28rem),
    radial-gradient(circle at 12% 38%, rgba(242, 201, 121, 0.06), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 28px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 19, 31, 0.78);
  backdrop-filter: blur(18px);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  border: 0; padding: 7px 0; background: transparent; cursor: pointer;
  font-size: 17px; font-weight: 800; letter-spacing: 0.05em;
  user-select: none; touch-action: manipulation;
}
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  color: #08202a; font-size: 13px; letter-spacing: -0.02em;
  box-shadow: 0 8px 24px rgba(85, 225, 212, 0.18);
}
.brand-trigger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px;
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.brand-trigger.holding::after { animation: holdProgress 3.5s linear forwards; }
@keyframes holdProgress { to { transform: scaleX(1); } }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.desktop-nav a, .nav-login {
  color: var(--muted); font-size: 14px; font-weight: 650; transition: color .2s ease;
}
.desktop-nav a:hover, .nav-login:hover { color: var(--text); }
.nav-login { border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.025); padding: 8px 13px; cursor: pointer; }
.menu-toggle {
  display: none; width: 40px; height: 40px; padding: 9px; border: 1px solid var(--line);
  border-radius: 11px; background: rgba(255,255,255,.025); cursor: pointer;
}
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 3px; background: var(--text); }
.mobile-menu { display: none; }
.hero { position: relative; overflow: hidden; padding-top: 92px; padding-bottom: 92px; }
.hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -140px;
  border: 1px solid rgba(85,225,212,.12); border-radius: 50%; box-shadow: inset 0 0 100px rgba(85,225,212,.03);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 72px; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.pulse-dot, .online-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 5px rgba(120,233,174,.09);
}
.hero h1 {
  margin: 18px 0 18px; max-width: 780px;
  font-size: clamp(42px, 5.2vw, 72px); line-height: .98; letter-spacing: -.052em;
}
.hero-lead { max-width: 610px; margin: 0; color: #b8c9d2; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 18px; border-radius: 12px; border: 1px solid transparent;
  font-weight: 760; font-size: 14px; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #052225; background: linear-gradient(135deg, var(--cyan), #8af0e5);
  box-shadow: 0 12px 30px rgba(85,225,212,.15);
}
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.028); color: #d8e7ed; }
.btn-secondary { color: #0c2428; background: linear-gradient(135deg, var(--gold), #f7dda5); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; color: var(--muted); font-size: 12px; }
.hero-notes span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.02); }
.device-stage { position: relative; min-height: 480px; display: grid; place-items: center; }
.signal-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(85,225,212,.15);
  box-shadow: 0 0 90px rgba(85,225,212,.04);
}
.ring-one { width: 390px; height: 390px; }
.ring-two { width: 500px; height: 500px; border-color: rgba(242,201,121,.09); }
.phone {
  position: relative; z-index: 2; width: 268px; min-height: 458px; padding: 12px;
  border: 1px solid rgba(255,255,255,.13); border-radius: 38px;
  background: linear-gradient(160deg, #132b39, #07131f 72%);
  box-shadow: var(--shadow), inset 0 0 0 4px rgba(255,255,255,.025);
  transform: rotate(2.5deg);
}
.phone-top { height: 42px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #dcecf2; font-size: 12px; }
.phone-top > span:first-child { width: 48px; height: 17px; justify-self: end; margin-right: 14px; border-radius: 20px; background: #061018; }
.phone-dot { width: 6px; height: 6px; justify-self: end; margin-right: 9px; border-radius: 50%; background: var(--success); }
.phone-body { padding: 34px 16px 20px; display: flex; flex-direction: column; align-items: center; }
.phone-status { color: var(--cyan); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.power-orb {
  width: 118px; height: 118px; margin: 28px 0 22px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(85,225,212,.3); background: radial-gradient(circle, rgba(85,225,212,.20), rgba(85,225,212,.02) 65%);
  box-shadow: 0 0 0 14px rgba(85,225,212,.03), 0 0 45px rgba(85,225,212,.14);
}
.power-orb span { font-weight: 900; letter-spacing: -.05em; color: var(--cyan); font-size: 26px; }
.phone-title { font-size: 16px; }
.phone-subtitle { margin-top: 5px; color: var(--muted); font-size: 12px; }
.phone-metrics { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 30px; }
.phone-metrics div { padding: 13px 10px; text-align: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); }
.phone-metrics span { color: var(--cyan); font-size: 11px; }
.phone-metrics strong { display: block; font-size: 17px; margin-top: 2px; }
.phone-metrics small { display: block; color: var(--muted); font-size: 9px; }
.plans { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 28px; }
.section-heading h2, .support h2 { margin: 7px 0 0; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 14px; }
.plan-toolbar {
  display: flex; align-items: center; justify-content: flex-end; margin: -2px 0 16px;
}
.device-control {
  min-width: 330px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 13px 15px 13px 17px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(135deg, rgba(85,225,212,.045), rgba(242,201,121,.035));
}
.device-control > div:first-child { display: grid; gap: 3px; }
.device-control-label { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .035em; }
.device-control strong { font-size: 14px; }
.device-stepper {
  display: grid; grid-template-columns: 38px 38px 38px; align-items: center;
  border: 1px solid rgba(85,225,212,.18); border-radius: 12px; overflow: hidden;
  background: rgba(5,17,26,.72);
}
.device-stepper button {
  height: 38px; border: 0; background: transparent; color: var(--cyan); font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.device-stepper button:hover:not(:disabled) { background: rgba(85,225,212,.08); color: #ecfffd; }
.device-stepper button:disabled { color: rgba(151,174,184,.3); cursor: default; }
.device-stepper strong {
  display: grid; place-items: center; height: 38px; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  font-size: 14px;
}
.plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.plan-card {
  position: relative; min-height: 166px; padding: 18px; text-align: left; display: flex; flex-direction: column; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 18px; background: rgba(13,32,45,.72); cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-2px); border-color: rgba(85,225,212,.3); }
.plan-card.selected {
  border-color: rgba(85,225,212,.72);
  background:
    radial-gradient(circle at 15% 10%, rgba(85,225,212,.14), transparent 45%),
    linear-gradient(155deg, rgba(16,43,59,.92), rgba(9,27,39,.94));
  box-shadow: 0 16px 34px rgba(0,0,0,.2), 0 0 0 1px rgba(242,201,121,.08) inset;
}
.plan-card.selected::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 -2px 0 rgba(242,201,121,.34);
}
.plan-name { color: #e8f4f7; font-size: 16px; font-weight: 800; }
.plan-price { margin-top: 14px; font-size: 29px; font-weight: 880; letter-spacing: -.04em; }
.plan-detail { margin-top: 7px; color: var(--muted); font-size: 11px; }
.plan-select { margin-top: auto; padding-top: 15px; color: var(--cyan); font-size: 11px; font-weight: 850; }
.plan-badge {
  position: absolute; top: 13px; right: 13px; padding: 5px 8px; border-radius: 999px;
  border: 1px solid rgba(242,201,121,.22); background: rgba(242,201,121,.1); color: var(--gold);
  font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase;
}
.plan-loading {
  grid-column: 1 / -1; min-height: 166px; display: grid; place-items: center; border: 1px dashed var(--line);
  border-radius: 18px; color: var(--muted); font-size: 13px;
}
.plan-loading.error { color: #ffb7b7; }
.plan-checkout {
  margin-top: 15px; display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding: 16px 17px 16px 20px; border: 1px solid rgba(85,225,212,.18); border-radius: 18px;
  background: linear-gradient(115deg, rgba(85,225,212,.065), rgba(242,201,121,.045));
}
.plan-checkout-copy { min-width: 0; display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 13px; row-gap: 3px; }
.plan-checkout-copy > span { color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.plan-checkout-copy > strong { color: #f4fbfc; font-size: 28px; line-height: 1; letter-spacing: -.035em; }
.plan-checkout-copy > small { grid-column: 1 / -1; color: var(--muted); font-size: 11px; }
.plan-pay { min-width: 170px; min-height: 46px; font-size: 14px; }
.status-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 54px; align-items: center; }
.status-heading { display: block; margin: 0; }
.status-heading > p { margin-top: 16px; max-width: 400px; }
.status-card {
  border: 1px solid var(--line); border-radius: 24px; overflow: hidden;
  background: linear-gradient(150deg, rgba(18,50,66,.88), rgba(8,23,34,.9));
  box-shadow: var(--shadow);
}
.status-card-top { padding: 20px 22px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.status-card-top > div { display: flex; flex-direction: column; gap: 7px; }
.status-card-top strong { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.muted { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; font-weight: 760; }
.demo-label { align-self: start; padding: 5px 8px; border-radius: 8px; background: rgba(242,201,121,.10); color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.server-row { padding: 22px; display: grid; grid-template-columns: auto 1fr 1fr; gap: 14px; align-items: center; }
.server-row > div:not(.flag-chip) { display: flex; flex-direction: column; gap: 3px; }
.server-row strong { font-size: 13px; }
.flag-chip {
  width: 44px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px;
  background: rgba(255,255,255,.035); color: var(--cyan); font-size: 11px; font-weight: 900;
}
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.metric { min-height: 102px; padding: 16px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric-icon { color: var(--cyan); font-size: 13px; margin-bottom: 8px; }
.metric strong { margin-top: 4px; font-size: 12px; }
.vseti-card {
  display: flex; align-items: center; justify-content: space-between; gap: 26px;
  padding: 20px 22px; border: 1px solid rgba(242,201,121,.18); border-radius: 18px;
  background: linear-gradient(100deg, rgba(85,225,212,.055), rgba(242,201,121,.045));
}
.vseti-copy { display: flex; align-items: center; gap: 18px; }
.vseti-logo {
  flex: 0 0 auto; min-width: 64px; padding: 11px 10px; border-radius: 13px; text-align: center;
  background: linear-gradient(135deg, var(--cyan), var(--gold)); color: #08202a; font-size: 14px; font-weight: 900;
}
.vseti-card h2 { margin: 0; font-size: 17px; letter-spacing: -.015em; }
.vseti-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.compact-section { max-width: 980px; }
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.download-btn {
  min-height: 74px; display: flex; align-items: center; gap: 13px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.022);
  cursor: pointer; text-align: left; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.download-btn:hover { transform: translateY(-2px); border-color: rgba(85,225,212,.3); background: rgba(85,225,212,.04); }
.platform-icon {
  width: 37px; height: 37px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 10px; background: rgba(85,225,212,.09); color: var(--cyan); font-weight: 900;
}
.download-btn span:last-child { font-size: 14px; font-weight: 760; }
.download-btn small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 9px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.support { border-top: 1px solid var(--line); background: rgba(255,255,255,.012); }
.support-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 66px; align-items: start; }
.support p { max-width: 460px; color: var(--muted); font-size: 14px; }
.support-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.support-points span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: #b7c8d0; font-size: 10px; }
.support-form {
  padding: 22px; display: grid; gap: 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(11,27,41,.78);
}
.support-form label { display: grid; gap: 7px; color: #c9d8de; font-size: 11px; font-weight: 760; }
.support-form input, .support-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 11px; background: rgba(3,13,21,.5);
  color: var(--text); padding: 12px 13px; resize: vertical;
}
.support-form input::placeholder, .support-form textarea::placeholder { color: #66808d; }
.support-form input.invalid, .support-form textarea.invalid { border-color: rgba(255,147,143,.62); }
.form-status { min-height: 18px; margin: -3px 0 0 !important; font-size: 11px !important; }
.form-status.error { color: var(--danger); }
.form-status.ok { color: var(--success); }
.site-footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { font-size: 14px; }
.footer-brand .brand-mark { width: 29px; height: 29px; border-radius: 9px; font-size: 11px; }
.footer-links { display: flex; align-items: center; gap: 18px; }
.footer-links a, .footer-links button, .copyright {
  border: 0; background: transparent; color: var(--muted); font-size: 11px; cursor: pointer;
}
.footer-links a:hover, .footer-links button:hover { color: var(--text); }
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 90; max-width: min(520px, calc(100% - 30px));
  padding: 12px 15px; border: 1px solid rgba(85,225,212,.25); border-radius: 12px;
  background: rgba(10,27,39,.96); box-shadow: 0 18px 60px rgba(0,0,0,.38);
  color: #dffbf8; font-size: 12px; line-height: 1.45; text-align: center;
  transform: translate(-50%, 24px); opacity: 0; pointer-events: none; transition: .25s ease;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.modal { position: fixed; inset: 0; z-index: 100; display: none; padding: 20px; place-items: center; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(1,8,14,.76); backdrop-filter: blur(8px); }
.modal-card {
  position: relative; z-index: 1; width: min(560px, 100%); max-height: min(690px, calc(100vh - 40px)); overflow: auto;
  padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #0d2230; box-shadow: var(--shadow);
}
.modal-card h2 { margin: 8px 36px 16px 0; font-size: 25px; letter-spacing: -.025em; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 1px solid var(--line);
  border-radius: 10px; background: rgba(255,255,255,.025); color: var(--muted); font-size: 22px; cursor: pointer;
}
.modal-body { color: #b6c8d1; font-size: 13px; line-height: 1.7; }
.modal-body p { margin: 0 0 12px; }
.modal-body strong { color: var(--text); }
.modal-ok { margin-top: 8px; width: 100%; }
body.modal-open { overflow: hidden; }
@media (max-width: 900px) {
  .shell { width: min(100% - 30px, 760px); }
  .section-pad { padding: 66px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: absolute; left: 15px; right: 15px; top: 62px;
    padding: 10px; border: 1px solid var(--line); border-radius: 15px;
    background: rgba(8,24,35,.98); box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a, .mobile-menu button {
    min-height: 44px; display: flex; align-items: center; padding: 0 12px; border: 0; border-bottom: 1px solid var(--line);
    background: transparent; color: #d8e6ec; text-align: left; font-size: 13px; cursor: pointer;
  }
  .mobile-menu > *:last-child { border-bottom: 0; }
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 690px; }
  .device-stage { min-height: 400px; }
  .phone { width: 242px; min-height: 410px; }
  .ring-one { width: 325px; height: 325px; }
  .ring-two { width: 420px; height: 420px; }
  .power-orb { width: 100px; height: 100px; margin: 22px 0 18px; }
  .plan-grid { gap: 9px; }
  .plan-card { min-height: 158px; padding: 15px; }
  .plan-price { font-size: 25px; }
  .status-grid { grid-template-columns: 1fr; gap: 28px; }
  .status-heading { max-width: 650px; }
  .support-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 650px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { min-height: 60px; }
  html { scroll-padding-top: 70px; }
  .hero { padding: 48px 0 54px; }
  .hero::before { width: 330px; height: 330px; right: -170px; top: -70px; }
  .hero h1 { margin-top: 14px; font-size: clamp(38px, 12vw, 53px); line-height: 1; }
  .hero-lead { font-size: 15px; line-height: 1.62; }
  .hero-actions { margin-top: 25px; }
  .hero-actions .btn { flex: 1 1 150px; }
  .hero-notes { margin-top: 20px; }
  .device-stage { min-height: 360px; overflow: hidden; }
  .phone { width: 220px; min-height: 366px; border-radius: 32px; }
  .phone-body { padding-top: 20px; }
  .phone-metrics { margin-top: 22px; }
  .ring-one { width: 290px; height: 290px; }
  .ring-two { width: 355px; height: 355px; }
  .section-pad { padding: 54px 0; }
  .section-pad-sm { padding: 22px 0; }
  .section-heading { display: block; margin-bottom: 22px; }
  .section-heading > p { margin-top: 12px; }
  .plan-toolbar { justify-content: stretch; }
  .device-control { min-width: 0; width: 100%; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 142px; }
  .plan-price { font-size: 26px; }
  .plan-checkout { align-items: stretch; flex-direction: column; gap: 13px; }
  .plan-pay { width: 100%; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .server-row { grid-template-columns: auto 1fr; }
  .server-location { grid-column: 2; }
}
@media (max-width: 650px) {
  .vseti-card { display: grid; gap: 16px; padding: 17px; }
  .vseti-copy { align-items: flex-start; }
  .vseti-card .btn { width: 100%; }
  .download-grid { grid-template-columns: 1fr; gap: 9px; }
  .download-btn { min-height: 65px; }
  .support-form { padding: 17px; }
  .footer-inner { display: grid; justify-items: start; }
  .footer-links { width: 100%; display: grid; gap: 0; }
  .footer-links a, .footer-links button { min-height: 38px; padding: 0; text-align: left; }
  .modal { padding: 12px; }
  .modal-card { padding: 22px 18px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.auth-modal { position: fixed; inset: 0; z-index: 110; display: none; padding: 18px; place-items: center; }
.auth-modal.open { display: grid; }
.auth-card {
  position: relative; z-index: 1; width: min(440px, 100%); max-height: calc(100vh - 36px); overflow: auto;
  padding: 26px; border: 1px solid var(--line); border-radius: 20px;
  background: #0d2230; box-shadow: var(--shadow);
}
.auth-head h2 { margin: 7px 38px 5px 0; font-size: 28px; letter-spacing: -.035em; }
.auth-head p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 20px 0 16px; padding: 4px; border: 1px solid var(--line); border-radius: 12px; background: rgba(3,13,21,.38); }
.auth-tab { min-height: 38px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 780; cursor: pointer; }
.auth-tab.active { background: rgba(85,225,212,.1); color: var(--cyan); }
.auth-form { display: grid; gap: 13px; }
.auth-form[hidden] { display: none !important; }
.auth-form label { display: grid; gap: 6px; color: #c9d8de; font-size: 11px; font-weight: 760; }
.auth-form input { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; background: rgba(3,13,21,.52); color: var(--text); }
.auth-form input.invalid { border-color: rgba(255,147,143,.7); }
.auth-forgot { justify-self: start; margin-top: -3px; padding: 0; border: 0; background: transparent; color: var(--cyan); font-size: 11px; cursor: pointer; }
.auth-status { min-height: 18px; margin: 12px 0 0; font-size: 11px; }
.auth-status.error { color: var(--danger); }
.auth-status.ok { color: var(--success); }
.auth-dev-note { margin: 10px 0 0; padding: 10px 11px; border: 1px solid rgba(242,201,121,.17); border-radius: 10px; background: rgba(242,201,121,.05); color: #ddc990; font-size: 10px; line-height: 1.55; }
@media (max-width: 520px) {
  .auth-modal { padding: 10px; }
  .auth-card { padding: 22px 17px 18px; border-radius: 17px; }
  .auth-head h2 { font-size: 25px; }
}

.vps-status.awaiting_integration { color: var(--gold); background: rgba(242,201,121,.09); }
.vps-status.ready_for_provisioning { color: var(--cyan); background: rgba(85,225,212,.09); }
