:root {
  color-scheme: light;
  --vmshell-ink: #10182a;
  --vmshell-muted: #667085;
  --vmshell-blue: #0a84ff;
  --vmshell-violet: #7857ff;
  --vmshell-green: #22bf6b;
  --vmshell-orange: #ff9418;
  --vmshell-shell: 1520px;
  --vmshell-auth-width: 420px;
  --vmshell-edge: max(28px, calc((100vw - var(--vmshell-shell)) / 2));
  --vmshell-shadow: 0 24px 70px rgba(41, 70, 125, .14);
}

#vmshell-public-portal[hidden],
#vmshell-auth-close[hidden],
#vmshell-login-policy-modal[hidden] { display: none !important; }

body.vmshell-public-auth {
  height: 100svh;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  color: var(--vmshell-ink);
  background:
    radial-gradient(circle at 7% 14%, rgba(10, 132, 255, .11), transparent 30%),
    radial-gradient(circle at 63% 82%, rgba(120, 87, 255, .10), transparent 33%),
    linear-gradient(145deg, #f8fbff 0%, #f2f6ff 44%, #f9f7ff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.vmshell-public-auth *,
body.vmshell-public-auth *::before,
body.vmshell-public-auth *::after { box-sizing: border-box; }

#vmshell-public-portal {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

.vmshell-ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(.88);
  transition: opacity .8s ease, transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.vmshell-public-ready .vmshell-ambient { opacity: 1; transform: scale(1); }
.vmshell-ambient-blue { top: -22vh; left: -11vw; width: 48vw; height: 48vw; background: radial-gradient(circle, rgba(67, 158, 255, .18), rgba(67, 158, 255, 0) 68%); }
.vmshell-ambient-violet { right: 16vw; bottom: -31vw; width: 58vw; height: 58vw; background: radial-gradient(circle, rgba(132, 94, 247, .15), rgba(132, 94, 247, 0) 67%); }
.vmshell-ambient-mint { top: 24%; right: -13vw; width: 38vw; height: 38vw; background: radial-gradient(circle, rgba(31, 199, 185, .12), rgba(31, 199, 185, 0) 67%); }

.vmshell-public-header {
  flex: 0 0 76px;
  width: min(var(--vmshell-shell), calc(100% - (var(--vmshell-edge) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vmshell-brand {
  width: 218px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  color: var(--vmshell-ink);
  text-decoration: none;
}

.vmshell-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 18px rgba(26, 65, 132, .1));
}

.vmshell-public-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(164, 181, 216, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 12px 36px rgba(54, 80, 130, .08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.vmshell-public-nav a,
.vmshell-public-nav button { border: 0; font: inherit; text-decoration: none; cursor: pointer; }

.vmshell-nav-link {
  padding: 9px 13px;
  color: #5f6c82;
  border-radius: 999px;
  background: transparent;
  font-size: 13px !important;
  font-weight: 650 !important;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.vmshell-nav-link:hover { color: var(--vmshell-blue); background: rgba(10, 132, 255, .08); }

.vmshell-header-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #087cff, #635cff);
  box-shadow: 0 8px 20px rgba(43, 95, 230, .22);
  font-size: 13px;
  font-weight: 720;
}

.vmshell-header-login svg,
.vmshell-existing-account svg,
.vmshell-trust-row svg,
.vmshell-feature svg,
.vmshell-qr-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vmshell-header-login svg { width: 16px; height: 16px; }

.vmshell-public-main {
  flex: 1 1 auto;
  min-height: 0;
  width: min(var(--vmshell-shell), calc(100% - (var(--vmshell-edge) * 2)));
  margin: 0 auto;
  padding: clamp(18px, 3vh, 36px) calc(var(--vmshell-auth-width) + 34px) clamp(14px, 2.5vh, 28px) 0;
  display: grid;
  grid-template-columns: minmax(450px, 1.18fr) minmax(280px, .82fr);
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.vmshell-intro {
  min-width: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease .08s, transform .7s cubic-bezier(.2, .75, .25, 1) .08s;
}
.vmshell-public-ready .vmshell-intro { opacity: 1; transform: translateY(0); }

.vmshell-release-pill {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  color: #53627b;
  border: 1px solid rgba(10, 132, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 8px 24px rgba(28, 73, 143, .07);
  font-size: 12px;
  font-weight: 650;
}
.vmshell-release-pill strong { padding: 3px 7px; color: var(--vmshell-blue); border-radius: 999px; background: rgba(10, 132, 255, .09); font-size: 10px; letter-spacing: .05em; }
.vmshell-release-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vmshell-green); box-shadow: 0 0 0 5px rgba(34, 191, 107, .11); }

.vmshell-intro h1 {
  margin: clamp(15px, 2.5vh, 25px) 0 0;
  color: #10182a;
  font-size: clamp(44px, 4.25vw, 72px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.vmshell-intro h1 span { color: transparent; background: linear-gradient(102deg, #087cff 2%, #5d64f7 48%, #14bfc9 100%); -webkit-background-clip: text; background-clip: text; }
.vmshell-intro-copy { max-width: 660px; margin: clamp(13px, 2vh, 20px) 0 0; color: var(--vmshell-muted); font-size: clamp(15px, 1.16vw, 18px); line-height: 1.72; }

.vmshell-feature-grid { max-width: 680px; margin-top: clamp(16px, 2.5vh, 25px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.vmshell-feature {
  min-width: 0;
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 18px;
  box-shadow: 0 11px 28px rgba(49, 75, 124, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.vmshell-feature:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(49, 75, 124, .11); }
.vmshell-feature-blue { background: linear-gradient(135deg, rgba(231, 244, 255, .94), rgba(242, 248, 255, .78)); }
.vmshell-feature-violet { background: linear-gradient(135deg, rgba(244, 235, 255, .92), rgba(249, 244, 255, .8)); }
.vmshell-feature-orange { background: linear-gradient(135deg, rgba(255, 240, 222, .94), rgba(255, 248, 239, .8)); }
.vmshell-feature-green { background: linear-gradient(135deg, rgba(228, 249, 238, .94), rgba(243, 252, 247, .8)); }

.vmshell-feature-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, .8); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75); }
.vmshell-feature-blue .vmshell-feature-icon { color: var(--vmshell-blue); }
.vmshell-feature-violet .vmshell-feature-icon { color: var(--vmshell-violet); }
.vmshell-feature-orange .vmshell-feature-icon { color: var(--vmshell-orange); }
.vmshell-feature-green .vmshell-feature-icon { color: var(--vmshell-green); }
.vmshell-feature-icon svg { width: 22px; height: 22px; }
.vmshell-feature div { min-width: 0; }
.vmshell-feature strong { display: block; overflow: hidden; color: #243047; font-size: 14px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap; }
.vmshell-feature p { margin: 3px 0 0; overflow: hidden; color: #7b879b; font-size: 12px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }

.vmshell-primary-actions { margin-top: clamp(17px, 2.5vh, 26px); display: flex; align-items: center; gap: 12px; }
.vmshell-download-badges { display: flex; align-items: center; gap: 9px; }
.vmshell-app-store-badge { display: inline-flex; flex: 0 0 auto; border-radius: 9px; transition: transform .2s ease, filter .2s ease; }
.vmshell-app-store-badge:hover { transform: translateY(-2px); filter: drop-shadow(0 10px 13px rgba(15, 23, 42, .15)); }
.vmshell-app-store-badge img { display: block; width: 166px; height: auto; }
.vmshell-android-badge,
.vmshell-platform-badge {
  width: 166px;
  min-height: 50px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  border: 1px solid #1f2937;
  border-radius: 9px;
  background: #111827;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.vmshell-android-badge svg, .vmshell-platform-badge svg { flex: 0 0 27px; width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.vmshell-android-badge span, .vmshell-platform-badge span { min-width: 0; display: grid; gap: 1px; }
.vmshell-android-badge small, .vmshell-platform-badge small { overflow: hidden; color: #cbd5e1; font-size: 9px; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.vmshell-android-badge strong, .vmshell-platform-badge strong { color: #fff; font-size: 14px; line-height: 1.15; white-space: nowrap; }
.vmshell-android-badge.is-pending, .vmshell-platform-badge.is-pending { opacity: .64; cursor: default; }
.vmshell-android-badge.is-ready { background: linear-gradient(135deg, #157f55, #14a466); cursor: pointer; }
.vmshell-android-badge.is-ready:hover { transform: translateY(-2px); filter: drop-shadow(0 10px 13px rgba(21, 127, 85, .2)); }
.vmshell-windows-badge.is-ready { border-color: #0866c9; background: linear-gradient(135deg, #096bd6, #178ee9); cursor: pointer; }
.vmshell-windows-badge.is-ready:hover { transform: translateY(-2px); filter: drop-shadow(0 10px 13px rgba(9, 107, 214, .2)); }
.vmshell-existing-account {
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #3f4d65;
  border: 1px solid rgba(136, 157, 197, .22);
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 10px 28px rgba(50, 76, 126, .07);
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.vmshell-existing-account:hover { color: var(--vmshell-blue); border-color: rgba(10, 132, 255, .3); transform: translateY(-2px); }
.vmshell-existing-account svg { width: 18px; height: 18px; }
.vmshell-trust-row { margin-top: clamp(13px, 2vh, 20px); display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; color: #79869a; font-size: 12px; font-weight: 630; }
.vmshell-trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.vmshell-trust-row svg { width: 15px; height: 15px; color: var(--vmshell-green); }

.vmshell-product-stage {
  min-width: 0;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .65s ease .18s, transform .75s cubic-bezier(.2, .75, .25, 1) .18s;
}
.vmshell-public-ready .vmshell-product-stage { opacity: 1; transform: translateY(0) scale(1); }
.vmshell-product-card, .vmshell-qr-card { border: 1px solid #e4ebf7; background: #fff; box-shadow: var(--vmshell-shadow); }
.vmshell-product-card { position: relative; padding: clamp(17px, 2vw, 23px); overflow: hidden; border-radius: 28px; }
.vmshell-product-card::before { content: ""; position: absolute; top: -85px; right: -55px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(113, 91, 255, .13), transparent 68%); pointer-events: none; }

.vmshell-product-head { position: relative; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 12px; }
.vmshell-product-symbol { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .9); border-radius: 17px; background: linear-gradient(145deg, #0a84ff, #7358f6); box-shadow: 0 12px 25px rgba(35, 73, 140, .18); }
.vmshell-product-symbol svg { width: 27px; height: 27px; fill: none; stroke: #fff; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.vmshell-product-head > div { min-width: 0; display: grid; }
.vmshell-product-head small, .vmshell-product-head span, .vmshell-status-copy small, .vmshell-qr-card small, .vmshell-qr-card em { color: #8792a6; font-size: 10px; font-style: normal; font-weight: 650; }
.vmshell-product-head strong { margin: 2px 0; color: #182238; font-size: 18px; font-weight: 790; letter-spacing: -.02em; }
.vmshell-live-badge { align-self: start; display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; color: #1f9b59 !important; border-radius: 999px; background: rgba(34, 191, 107, .1); }
.vmshell-live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--vmshell-green); }

.vmshell-status-panel { position: relative; margin-top: 19px; padding: 16px; display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 14px; border: 1px solid #d9f3e4; border-radius: 21px; background: linear-gradient(135deg, #effcf5, #f4fbff); }
.vmshell-status-ring { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #20cb72, #11b8c7); box-shadow: 0 13px 32px rgba(22, 185, 119, .22); }
.vmshell-status-ring > div { width: 61px; height: 61px; display: grid; place-items: center; border-radius: 50%; background: #fff; }
.vmshell-status-ring svg { width: 31px; height: 31px; fill: none; stroke: #17b96b; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vmshell-status-copy { min-width: 0; }
.vmshell-status-copy strong { display: block; margin: 3px 0 5px; color: #26324a; font-size: 15px; line-height: 1.3; }
.vmshell-status-copy p { margin: 0; color: #78859a; font-size: 11px; line-height: 1.55; }

.vmshell-metric-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.vmshell-metric { position: relative; min-width: 0; min-height: 76px; padding: 12px; overflow: hidden; border-radius: 17px; }
.vmshell-metric span, .vmshell-metric strong { position: relative; z-index: 1; display: block; }
.vmshell-metric span { overflow: hidden; color: #7e8a9d; font-size: 9px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.vmshell-metric strong { margin-top: 6px; color: #253148; font-size: 11px; line-height: 1.3; }
.vmshell-metric i { position: absolute; right: -14px; bottom: -18px; width: 54px; height: 54px; border-radius: 50%; }
.vmshell-metric-blue { background: rgba(225, 242, 255, .92); }
.vmshell-metric-blue i { background: rgba(10, 132, 255, .12); }
.vmshell-metric-violet { background: rgba(242, 231, 255, .9); }
.vmshell-metric-violet i { background: rgba(120, 87, 255, .12); }
.vmshell-metric-green { background: rgba(226, 248, 237, .9); }
.vmshell-metric-green i { background: rgba(34, 191, 107, .12); }

.vmshell-qr-card { min-width: 0; padding: 11px 13px; display: grid; grid-template-columns: 64px 1fr 20px; align-items: center; gap: 11px; color: inherit; border-radius: 21px; text-decoration: none; transition: transform .22s ease, box-shadow .22s ease; }
.vmshell-qr-card:hover { transform: translateY(-2px); box-shadow: 0 28px 75px rgba(41, 70, 125, .18); }
.vmshell-qr-visual { width: 64px; height: 64px; padding: 4px; display: grid; place-items: center; overflow: hidden; border: 1px solid #e7edf6; border-radius: 13px; background: #fff; }
.vmshell-qr-visual img, .vmshell-qr-visual canvas { display: block; width: 56px !important; height: 56px !important; }
.vmshell-qr-copy { min-width: 0; display: grid; gap: 2px; }
.vmshell-qr-card strong { overflow: hidden; color: #202b41; font-size: 13px; font-weight: 760; text-overflow: ellipsis; white-space: nowrap; }
.vmshell-qr-arrow { width: 18px; height: 18px; color: var(--vmshell-blue); }

.vmshell-public-footer { flex: 0 0 46px; width: min(var(--vmshell-shell), calc(100% - (var(--vmshell-edge) * 2))); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #929db0; border-top: 1px solid rgba(123, 143, 179, .12); font-size: 10px; }
.vmshell-public-footer nav { display: flex; align-items: center; gap: 15px; }
.vmshell-public-footer a { color: #7d899d; text-decoration: none; }
.vmshell-public-footer a:hover { color: var(--vmshell-blue); }

/* Existing login, registration and password-reset component. Keep the
   interactive surface inside the visible card instead of placing a
   transparent, viewport-sized layer above the public page. */
.vmshell-public-auth #app {
  position: fixed;
  z-index: 30;
  top: 88px;
  right: var(--vmshell-edge);
  bottom: 58px;
  left: auto;
  width: var(--vmshell-auth-width);
  height: auto;
  min-height: 0;
  overflow: visible;
  pointer-events: auto;
}
.vmshell-public-auth #app > div {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto !important;
  background: transparent !important;
  pointer-events: auto;
  scrollbar-width: none;
}
.vmshell-public-auth #app > div::-webkit-scrollbar { display: none; }
.vmshell-public-auth #app > div > .n-card {
  width: 100% !important;
  max-width: none !important;
  max-height: 100%;
  margin: 0 !important;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .88) !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #f7f9ff 100%) !important;
  box-shadow: 0 28px 84px rgba(39, 69, 123, .18), 0 0 0 8px rgba(255, 255, 255, .24) !important;
  pointer-events: auto;
}
.vmshell-public-auth #app .n-card,
.vmshell-public-auth #app .n-card * { pointer-events: auto !important; }
.vmshell-public-auth #app .n-card .p-24 { padding: 27px 28px 24px !important; }
.vmshell-public-auth #app .n-card .p-24 > .text-center:first-child { max-height: 112px; margin-bottom: 18px; padding-bottom: 14px; overflow: hidden; border-bottom: 1px solid rgba(137, 155, 193, .14); }
.vmshell-public-auth #app .n-card .p-24 > .text-center:first-child img { width: 236px !important; max-width: 76% !important; height: 68px !important; object-fit: contain; }
.vmshell-public-auth #app .n-card h5 { margin: 5px 0 0 !important; color: #6b7890 !important; font-size: 11px !important; font-weight: 650 !important; letter-spacing: .02em; }
.vmshell-public-auth #app .n-card .n-form-item-label { color: #4d5b73 !important; font-size: 12px !important; font-weight: 700 !important; }
.vmshell-public-auth #app .n-input, .vmshell-public-auth #app .n-base-selection { min-height: 46px; border-radius: 15px !important; background: rgba(244, 247, 252, .9) !important; transition: background .2s ease, box-shadow .2s ease, border-color .2s ease; }
.vmshell-public-auth #app .n-input:focus-within { background: #fff !important; box-shadow: 0 0 0 4px rgba(10, 132, 255, .09); }
.vmshell-public-auth #app .n-input__border, .vmshell-public-auth #app .n-input__state-border { border-color: rgba(132, 151, 184, .22) !important; }
.vmshell-public-auth #app .n-button--primary-type { min-height: 48px; margin-top: 4px; border-radius: 15px !important; background: linear-gradient(135deg, #087cff, #5e5cf5) !important; box-shadow: 0 14px 28px rgba(39, 90, 226, .24); transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
.vmshell-public-auth #app .n-button--primary-type:hover { filter: saturate(1.08); transform: translateY(-1px); box-shadow: 0 17px 32px rgba(39, 90, 226, .28); }
.vmshell-public-auth #app .n-card .bg-\[--n-color-embedded\] { border-radius: 0 0 28px 28px; background: rgba(245, 247, 252, .74) !important; }

.vmshell-register-captcha {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(99, 92, 245, .16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(235, 246, 255, .78), rgba(249, 240, 255, .78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.vmshell-captcha-label { margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.vmshell-captcha-label span { color: #34415a; font-size: 13px; font-weight: 720; }
.vmshell-captcha-label small { color: #8894a8; font-size: 11px; }
.vmshell-captcha-control { display: grid; grid-template-columns: minmax(0, 1fr) 126px; gap: 9px; }
.vmshell-captcha-input-shell {
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(112, 135, 177, .21);
  border-radius: 13px;
  background: rgba(255, 255, 255, .92);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.vmshell-captcha-input-shell:focus-within { border-color: rgba(10, 132, 255, .52); background: #fff; box-shadow: 0 0 0 3px rgba(10, 132, 255, .1); }
.vmshell-captcha-input-shell svg { flex: 0 0 18px; width: 18px; height: 18px; fill: none; stroke: #6576e9; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vmshell-captcha-input-shell input { width: 100%; min-width: 0; padding: 0; color: #1b2740; border: 0; outline: 0; background: transparent; font: 720 16px/1.2 ui-monospace, "SFMono-Regular", Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.vmshell-captcha-input-shell input::placeholder { color: #a1aabc; font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0; }
.vmshell-captcha-image-button { position: relative; height: 48px; padding: 0; overflow: hidden; border: 1px solid rgba(112, 135, 177, .19); border-radius: 13px; background: #f5f8ff; cursor: pointer; }
.vmshell-captcha-image-button:focus-visible { outline: 3px solid rgba(10, 132, 255, .28); outline-offset: 2px; }
.vmshell-captcha-image-button img { width: 100%; height: 100%; display: block; object-fit: cover; transition: opacity .2s ease, filter .2s ease; }
.vmshell-captcha-image-button img.is-loading { opacity: .22; filter: blur(2px); }
.vmshell-captcha-loader { position: absolute; inset: 0; display: none; place-items: center; }
.vmshell-captcha-loader::after { content: ""; width: 18px; height: 18px; border: 2px solid rgba(86, 96, 220, .2); border-top-color: #5762df; border-radius: 50%; animation: vmshell-captcha-spin .75s linear infinite; }
.vmshell-captcha-image-button:disabled .vmshell-captcha-loader { display: grid; }
.vmshell-captcha-status { min-height: 16px; margin-top: 6px; color: #7b879b; font-size: 10px; line-height: 1.45; }
.vmshell-captcha-status.is-error { color: #e04955; }
@keyframes vmshell-captcha-spin { to { transform: rotate(360deg); } }

#vmshell-auth-close { position: fixed; top: 18px; right: 18px; z-index: 102; width: 40px; height: 40px; padding: 0; place-items: center; color: #536079; border: 1px solid rgba(255, 255, 255, .86); border-radius: 50%; background: rgba(255, 255, 255, .88); box-shadow: 0 12px 32px rgba(35, 60, 110, .15); cursor: pointer; }
#vmshell-auth-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }

#vmshell-login-policy-modal { position: fixed; inset: 0; z-index: 10001; display: grid; place-items: center; padding: 22px; background: rgba(11, 18, 32, .48); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.vmshell-login-policy-dialog { width: min(760px, 100%); max-height: min(82vh, 760px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .84); border-radius: 25px; background: #fff; box-shadow: 0 28px 85px rgba(9, 21, 45, .28); }
.vmshell-login-policy-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 21px; background: linear-gradient(135deg, #e7f3ff, #f5edff); }
.vmshell-login-policy-head strong { color: #172033; font-size: 18px; }
.vmshell-login-policy-close { padding: 8px 13px; color: var(--vmshell-blue); border: 0; border-radius: 999px; background: rgba(255, 255, 255, .86); font-size: 13px; font-weight: 680; cursor: pointer; }
.vmshell-login-policy-content { max-height: calc(min(82vh, 760px) - 70px); padding: 22px; overflow-y: auto; color: #4b5563; font-size: 14px; line-height: 1.75; }
.vmshell-login-policy-content p { margin: 0 0 12px; }
.vmshell-login-policy-content h1, .vmshell-login-policy-content h2, .vmshell-login-policy-content h3 { color: #172033; }
.vmshell-login-policy-content ul, .vmshell-login-policy-content ol { padding-left: 22px; }
.vmshell-login-policy-content img { max-width: 100%; height: auto; }
.vmshell-public-auth a:focus-visible, .vmshell-public-auth button:focus-visible { outline: 3px solid rgba(10, 132, 255, .34); outline-offset: 3px; }

@media (max-width: 1280px) {
  :root { --vmshell-auth-width: 390px; --vmshell-edge: 22px; }
  .vmshell-public-main { grid-template-columns: minmax(420px, 1fr) minmax(250px, .72fr); gap: 24px; }
  .vmshell-intro h1 { font-size: clamp(42px, 4.8vw, 61px); }
}

@media (max-width: 1120px) {
  .vmshell-public-main { grid-template-columns: minmax(0, 1fr); }
  .vmshell-product-stage { display: none; }
  .vmshell-intro, .vmshell-feature-grid { max-width: 630px; }
}

@media (max-width: 860px) {
  :root { --vmshell-edge: 16px; }
  body.vmshell-public-auth { min-height: 560px; }
  .vmshell-public-header { flex-basis: 68px; }
  .vmshell-nav-link { display: none; }
  .vmshell-public-nav { padding: 4px; }
  .vmshell-header-login { padding: 9px 13px; }
  .vmshell-public-main { padding: 10px 0 8px; align-items: center; }
  .vmshell-intro { width: min(680px, 100%); margin: 0 auto; }
  .vmshell-public-footer { flex-basis: 42px; }
  .vmshell-public-footer nav a:not(:first-child):not(:last-child) { display: none; }
  .vmshell-public-auth #app { display: none; z-index: 100; inset: 0; width: auto; height: auto; background: #f4f7fd; }
  .vmshell-public-auth.vmshell-login-open #app { display: block; pointer-events: auto; }
  .vmshell-public-auth.vmshell-login-open #vmshell-public-portal { display: none !important; }
  .vmshell-public-auth.vmshell-login-open #vmshell-auth-close { display: grid !important; }
  .vmshell-public-auth #app > div { inset: 0 !important; width: 100% !important; height: 100% !important; padding: 68px 16px 18px !important; align-items: flex-start !important; overflow-y: auto !important; pointer-events: auto; }
  .vmshell-public-auth #app > div > .n-card { width: min(450px, 100%) !important; max-height: none; margin: auto !important; }
}

@media (max-width: 560px) {
  .vmshell-brand { width: 156px; height: 44px; }
  .vmshell-header-login span { display: none; }
  .vmshell-header-login { width: 38px; height: 38px; padding: 0; justify-content: center; }
  .vmshell-intro h1 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.05; }
  .vmshell-intro-copy { font-size: 14px; line-height: 1.58; }
  .vmshell-feature-grid { gap: 7px; }
  .vmshell-feature { min-height: 61px; padding: 9px; gap: 8px; border-radius: 15px; }
  .vmshell-feature-icon { flex-basis: 35px; width: 35px; height: 35px; border-radius: 11px; }
  .vmshell-feature-icon svg { width: 19px; height: 19px; }
  .vmshell-feature strong { font-size: 12px; }
  .vmshell-feature p { font-size: 9px; }
  .vmshell-primary-actions { flex-wrap: wrap; gap: 8px; }
  .vmshell-download-badges { width: min(100%, 297px); gap: 7px; }
  .vmshell-app-store-badge, .vmshell-android-badge, .vmshell-platform-badge { flex: 1 1 0; min-width: 0; }
  .vmshell-app-store-badge img { width: 100%; max-width: 145px; }
  .vmshell-android-badge, .vmshell-platform-badge { width: auto; min-height: 44px; padding: 5px 9px; }
  .vmshell-android-badge svg, .vmshell-platform-badge svg { flex-basis: 23px; width: 23px; height: 23px; }
  .vmshell-android-badge strong, .vmshell-platform-badge strong { font-size: 12px; }
  .vmshell-windows-badge { display: none; }
  .vmshell-existing-account { min-height: 46px; padding: 0 13px; font-size: 12px; }
  .vmshell-trust-row { gap: 8px 12px; font-size: 10px; }
  .vmshell-public-footer > span { display: none; }
  .vmshell-public-footer nav { width: 100%; justify-content: space-between; }
  .vmshell-public-footer nav a:last-child { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #vmshell-login-policy-modal { padding: 12px; }
  .vmshell-login-policy-dialog { border-radius: 19px; }
  .vmshell-login-policy-content { padding: 17px; font-size: 13px; }
  .vmshell-register-captcha { padding: 10px; }
  .vmshell-captcha-control { grid-template-columns: minmax(0, 1fr) 112px; gap: 7px; }
}

@media (max-height: 740px) and (min-width: 861px) {
  .vmshell-public-header { flex-basis: 66px; }
  .vmshell-public-main { padding-top: 8px; padding-bottom: 8px; }
  .vmshell-intro h1 { margin-top: 12px; font-size: clamp(40px, 4vw, 58px); }
  .vmshell-intro-copy { margin-top: 10px; line-height: 1.55; }
  .vmshell-feature-grid { margin-top: 12px; }
  .vmshell-feature { min-height: 61px; padding-top: 8px; padding-bottom: 8px; }
  .vmshell-primary-actions { margin-top: 13px; }
  .vmshell-trust-row { margin-top: 10px; }
  .vmshell-public-auth #app { top: 72px; bottom: 49px; }
}

@media (max-height: 650px) {
  .vmshell-release-pill strong, .vmshell-feature p, .vmshell-trust-row { display: none; }
  .vmshell-feature { min-height: 52px; }
  .vmshell-product-stage { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .vmshell-public-auth *, .vmshell-public-auth *::before, .vmshell-public-auth *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
