
html.route-pending body {
  visibility: visible;
}

html.route-ready body {
  visibility: visible;
}
:root {
  --page-bg: #f3f6fc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #20242b;
  --muted: #718096;
  --line: #d8dee8;
  --line-strong: #c6cfdb;
  --primary: #00a9ef;
  --primary-dark: #008fd0;
  --button: #848993;
  --button-disabled: #d9dde3;
  --danger: #c93434;
  --success: #2f9d56;
  --shadow: 0 22px 55px rgba(36, 50, 75, 0.12);
  --radius: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--page-bg);
}

body {
  min-height: 100vh;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 169, 239, 0.24);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

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

/* Shared forms */
.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #6f7f91;
  font-size: 14px;
  line-height: 1.25;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input,
.select {
  min-height: 48px;
}

.textarea {
  min-height: 132px;
  resize: vertical;
  padding-top: 13px;
  padding-bottom: 13px;
}

.input::placeholder,
.textarea::placeholder {
  color: #9aa6b5;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 169, 239, 0.12);
  outline: none;
}

.form-error,
.status-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}

.status-message.success {
  color: var(--success);
}

.primary-button,
.pill-button {
  border: 0;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  transition: transform 140ms ease, opacity 140ms ease, background 140ms ease;
}

.primary-button:hover:not(:disabled),
.pill-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.primary-button:disabled,
.pill-button:disabled {
  cursor: not-allowed;
  background: var(--button-disabled);
  color: #fff;
  transform: none;
}

/* CAPTCHA page */
.captcha-page {
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f3f6fc;
}

.captcha-card {
  width: min(440px, 100%);
  min-height: 300px;
  border: 1px solid #dbe1e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.captcha-card h1 {
  margin: 0 0 17px;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
  color: #050505;
}

.captcha-intro {
  margin: 0 auto 25px;
  max-width: 340px;
  color: #5f6e82;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
}

.hcaptcha-slot {
  min-height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.captcha-card .status-message {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

/* Appeal page */
.appeal-page {
  min-height: 100vh;
  background: #fff;
}

.appeal-header {
  height: 52px;
  border-bottom: 1px solid #dfe3e8;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  color: #24272b;
  font-size: 18px;
  font-weight: 700;
}

.back-link {
  border: 0;
  background: transparent;
  padding: 5px 0;
  color: #202328;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

.appeal-content {
  padding: 26px 16px 38px;
  max-width: 1180px;
  margin: 0 auto;
}

.appeal-copy {
  max-width: 1110px;
  font-size: 16px;
  line-height: 1.4;
  color: #080808;
}

.appeal-copy p {
  margin: 0 0 9px;
}

.appeal-copy a {
  color: #00a6ed;
  text-decoration: none;
}

.appeal-form {
  margin-top: 28px;
  display: grid;
  gap: 19px;
}

.appeal-help {
  color: #7d8a9a;
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.appeal-note {
  margin: 3px 0 0 15px;
  color: #8794a3;
  font-size: 12px;
}

.appeal-submit-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.appeal-submit {
  min-width: 78px;
  min-height: 38px;
  padding: 0 21px;
  border-radius: 22px;
  background: #0baeea;
  font-size: 13px;
}

/* Appeal outcome pages v2.8.0 */
.appeal-outcome {
  min-height: calc(100dvh - 116px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.appeal-outcome-copy {
  width: min(470px, 100%);
  color: var(--appeal-muted, #8190a2);
  font-size: 16px;
  line-height: 1.34;
}

.appeal-outcome-copy p {
  margin: 0;
}

.appeal-outcome-copy p + p {
  margin-top: 2px;
}

.appeal-page.is-dark .appeal-outcome-copy {
  color: #b5bec8;
}

@media (max-width: 760px) {
  .appeal-outcome {
    min-height: calc(100dvh - 178px);
    padding: 36px 14px;
  }

  .appeal-outcome-copy {
    width: min(420px, 100%);
    font-size: 15px;
  }
}

/* Details page */
.details-page {
  min-height: 100vh;
  background: #fff;
}

.details-shell {
  width: min(440px, 100%);
  margin: 0;
  padding: 35px 24px 48px;
}

.details-title {
  margin: 0 0 31px;
  max-width: 360px;
  color: #262a30;
  font-size: 29px;
  line-height: 1.22;
  font-weight: 400;
}

.details-kicker {
  margin: 0 0 11px;
  color: #202328;
  font-size: 14px;
  font-weight: 700;
}

.details-form {
  display: grid;
  gap: 27px;
}

.details-form .input,
.details-form .select {
  min-height: 48px;
  border-radius: 6px;
  font-size: 16px;
}

.details-submit {
  width: 100%;
  min-height: 41px;
  border-radius: 24px;
  background: var(--button-disabled);
  font-size: 14px;
  text-transform: uppercase;
}

.details-submit.ready {
  background: var(--primary);
}

.details-legal {
  margin: -17px 12px 0;
  color: #8090a4;
  font-size: 12px;
  line-height: 1.35;
}

.details-legal a,
.details-support-link {
  color: #00a9ef;
  text-decoration: none;
}

.details-support-link {
  display: block;
  margin-top: 31px;
  text-align: center;
  font-size: 14px;
}

/* Browser-like modal */
.details-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 19, 22, 0.74);
  padding: 12px;
  padding-top: max(12px, env(safe-area-inset-top));
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.details-modal.is-open {
  display: flex;
}

.browser-window {
  width: min(520px, calc(100vw - 24px));
  height: min(720px, calc(100vh - 24px));
  height: min(720px, calc(100dvh - 24px));
  max-height: 100%;
  border: 1px solid #bfc2c7;
  background: #202020;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-rows: 35px 35px 1fr;
}

.browser-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  background: #1f1f1f;
  color: #fff;
  border-bottom: 1px solid #7a7a7a;
  font-size: 14px;
}

.browser-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #919191;
  background: #292929;
  color: #c9c9c9;
  padding: 0 9px;
  font-size: 14px;
}

.browser-lock {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}

.browser-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

/* Waiting page */
.waiting-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f3f6fc;
  padding: 24px;
}

.waiting-card {
  width: min(480px, 100%);
  border: 1px solid #dbe1e8;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 42px 34px;
  text-align: center;
}

.waiting-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 22px;
  border: 5px solid #e8edf3;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

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

.waiting-card h1 {
  margin: 0 0 12px;
  font-size: 24px;
}

.waiting-card p {
  margin: 0 auto;
  max-width: 340px;
  color: #6b7888;
  line-height: 1.5;
}

.waiting-session {
  margin-top: 20px !important;
  color: #9aa5b2 !important;
  font-size: 12px;
  word-break: break-all;
}

@media (max-width: 640px) {
  .captcha-page {
    padding: 14px;
  }

  .captcha-card {
    min-height: 0;
    padding: 30px 20px 26px;
  }

  .captcha-intro {
    font-size: 15px;
  }

  .hcaptcha-slot {
    width: 100%;
    overflow: hidden;
  }

  .appeal-content {
    padding-top: 20px;
  }

  .appeal-copy {
    font-size: 15px;
  }

  .appeal-submit-row {
    justify-content: stretch;
  }

  .appeal-submit {
    width: 100%;
  }

  .details-shell {
    width: 100%;
    padding: 35px 24px 40px;
  }

  .details-title {
    font-size: 29px;
  }

  .details-modal {
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .browser-window {
    width: min(430px, calc(100vw - 16px));
    height: min(680px, calc(100vh - 16px));
    height: min(680px, calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
    max-height: calc(100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .browser-titlebar,
  .browser-address {
    position: relative;
    z-index: 2;
  }

  .browser-close {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }
}


.hcaptcha-slot.is-verifying {
  opacity: 0.55;
  pointer-events: none;
}

.appeal-form .field > label {
  display: block;
  margin-bottom: 7px;
  color: #2b3037;
  font-size: 14px;
  font-weight: 700;
}


/* Presentation-only synthetic verification demos */
.incorrect-details-message {
  margin: -14px 0 18px;
  color: #c93434;
  font-size: 13px;
  line-height: 1.4;
}

.demo-verification-page {
  min-height: 100vh;
  background: #fff;
}

.demo-verification-shell {
  width: min(500px, 100%);
  min-height: 100vh;
  padding: 18px 24px 36px;
  background: #fff;
}

.presentation-notice {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid #e3b341;
  border-radius: 8px;
  background: #fff8df;
  color: #684d00;
  font-size: 13px;
  line-height: 1.45;
}

.presentation-notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .045em;
}

.presentation-notice span {
  display: block;
}

.demo-panel {
  padding: 18px 4px 0;
}

.demo-eyebrow {
  margin: 0 0 22px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.demo-title {
  margin: 0 0 18px;
  color: #20242b;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
}

.demo-title-greeting {
  margin-top: 6px;
}

.demo-copy {
  margin: 0 0 20px;
  color: #303740;
  font-size: 16px;
  line-height: 1.5;
}

.demo-code-box {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px dashed #9ca8b7;
  border-radius: 7px;
  background: #f7f9fc;
}

.demo-code-box span {
  color: #697788;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.demo-code-box code {
  color: #111820;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  overflow-wrap: anywhere;
  user-select: all;
}

.demo-form {
  display: grid;
  gap: 16px;
}

.demo-code-input {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .02em;
}

.demo-resend-row {
  display: flex;
  justify-content: center;
  min-height: 22px;
}

.demo-link-button {
  border: 0;
  background: transparent;
  color: #00a9ef;
  cursor: pointer;
  font-size: 13px;
}

.demo-link-button:disabled {
  color: #7d8997;
  cursor: default;
}

.demo-expiry {
  margin: -3px 0 0;
  color: #7d8997;
  font-size: 13px;
  text-align: center;
}

.demo-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.demo-cancel,
.demo-confirm {
  min-height: 43px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.demo-cancel {
  background: #e6e7ea;
  color: #5d626b;
}

.demo-confirm {
  background: #43aee9;
  color: #fff;
}

.demo-confirm:disabled {
  background: #cbd0d7;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .demo-verification-shell {
    padding: 14px 16px 28px;
  }

  .demo-actions {
    gap: 10px;
  }
}

/* Lokiinc command-only Demo Sign-in: flat presentation style v2.4.2 */
.loki-login-page {
  margin: 0;
  min-height: 100vh;
  background: #202124;
  color: #f1f3f4;
  font-family: Arial, Helvetica, sans-serif;
}

.loki-login-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #202124;
}

.loki-login-content {
  position: relative;
  width: min(100%, 560px);
  box-sizing: border-box;
  flex: 1;
  padding: 82px 70px 24px;
}

.signin-one-corner-logo {
  position: absolute;
  top: 16px;
  left: 22px;
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.loki-login-demo-badge {
  position: absolute;
  top: 18px;
  right: 24px;
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(251, 188, 4, .5);
  border-radius: 999px;
  color: #fdd663;
  background: rgba(251, 188, 4, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.loki-login-panel {
  position: relative;
  padding-top: 0;
}
.loki-login-panel[hidden] { display: none !important; }

.loki-login-panel h1 {
  margin: 0;
  color: #f1f3f4;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.02em;
}

.loki-login-subtitle {
  margin: 12px 0 0;
  color: #e8eaed;
  font-size: 16px;
  line-height: 1.5;
}

.loki-login-domain,
.loki-login-static-link {
  color: #8ab4f8;
}

.loki-login-domain {
  display: inline;
  pointer-events: none;
  user-select: text;
}

.loki-login-form { margin-top: 48px; }
.loki-login-code-form { margin-top: 40px; }

.loki-login-input {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  border: 1px solid #5f6368;
  border-radius: 4px;
  padding: 0 14px;
  background: transparent;
  color: #f1f3f4;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.loki-login-input::placeholder { color: #9aa0a6; opacity: 1; }
.loki-login-input:focus {
  border-color: #8ab4f8;
  box-shadow: inset 0 0 0 1px #8ab4f8;
}

.loki-login-static-link {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

.loki-login-forgot {
  display: inline-block;
  margin-top: 32px;
}

.loki-login-legal {
  margin: 34px 0 0;
  color: #e8eaed;
  font-size: 14px;
  line-height: 1.45;
}
.loki-login-legal .loki-login-static-link { display: inline; }

.loki-login-actions {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.loki-login-create-account { justify-self: start; }

.loki-login-next {
  min-width: 96px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: #aecbfa;
  color: #202124;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.loki-login-next:hover { background: #c2d7fb; }
.loki-login-next:disabled { opacity: .62; cursor: progress; }

.loki-login-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
}
.loki-login-link-button:hover,
.loki-login-link-button:focus-visible { text-decoration: underline; }

.loki-login-account-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 22px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #f1f3f4;
  background: #303134;
  font-size: 14px;
  line-height: 1;
}
.loki-login-password-copy { margin-top: 22px; }
.loki-login-password-actions { margin-top: 42px; }

.loki-demo-passcode-field {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #5f6368;
  border-radius: 4px;
  background: transparent;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.loki-demo-passcode-field:focus-within {
  border-color: #8ab4f8;
  box-shadow: inset 0 0 0 1px #8ab4f8;
}
.loki-demo-passcode-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 14px;
  color: #bdc1c6;
  font-size: 16px;
  font-weight: 500;
  user-select: none;
}
.loki-demo-passcode-input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px 0 2px;
  background: transparent;
  color: #f1f3f4;
  font: inherit;
  font-size: 16px;
  letter-spacing: .02em;
}
.loki-demo-passcode-input:focus,
.loki-demo-passcode-input:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}
.loki-demo-passcode-prefix {
  border-right: 0;
  box-shadow: none;
}
.loki-demo-passcode-input::placeholder { color: #9aa0a6; }
.loki-demo-passcode-help {
  margin: 14px 0 0;
  color: #bdc1c6;
  font-size: 13px;
  line-height: 1.5;
}

.loki-login-status {
  min-height: 22px;
  margin: 20px 0 0;
  color: #f28b82;
  font-size: 13px;
  line-height: 1.45;
}
.loki-login-status.success { color: #81c995; }

.loki-login-waiting { padding-top: 4px; }
.loki-login-waiting-spinner {
  width: 42px;
  height: 42px;
  margin: 48px auto 34px;
  border: 4px solid rgba(138, 180, 248, .2);
  border-top-color: #8ab4f8;
  border-radius: 50%;
  animation: lokiLoginSpin .85s linear infinite;
}
.loki-login-waiting-copy {
  margin: 28px 0 0;
  color: #bdc1c6;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes lokiLoginSpin { to { transform: rotate(360deg); } }

.loki-login-footer {
  min-height: 68px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  padding: 18px 32px 22px;
  color: #bdc1c6;
  font-size: 12px;
}
.loki-login-footer nav { display: flex; gap: 26px; }

@media (max-width: 560px) {
  .loki-login-content { padding: 82px 26px 18px; }
  .loki-login-demo-badge { top: 12px; right: 16px; }
  .loki-login-panel { padding-top: 18px; }
  .loki-login-form { margin-top: 42px; }
  .loki-login-actions { margin-top: 44px; }
  .loki-login-footer { padding: 18px 28px 22px; }
}

/* Command-only Tap number presentation step v2.3.8 */
.tap-number-page {
  margin: 0;
  min-height: 100vh;
  background: #202124;
  color: #f1f3f4;
  font-family: Arial, Helvetica, sans-serif;
}
.tap-number-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #202124;
}
.tap-number-content {
  position: relative;
  width: min(100%, 560px);
  padding: 82px 34px 22px;
  flex: 1;
}
.tap-number-demo-badge {
  position: absolute;
  top: 18px;
  right: 24px;
  display: inline-flex;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(251, 188, 4, .5);
  border-radius: 999px;
  color: #fdd663;
  background: rgba(251, 188, 4, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.tap-number-content h1 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 400;
}
.tap-number-intro {
  max-width: 470px;
  margin: 18px 0 0;
  color: #f1f3f4;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}
.tap-number-account {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  margin-top: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #303134;
  color: #f1f3f4;
  font-size: 13px;
  font-weight: 700;
}
.tap-number-account span { color: #bdc1c6; font-size: 11px; }
.tap-number-value {
  margin-top: 88px;
  text-align: center;
  color: #f1f3f4;
  font-size: clamp(82px, 18vw, 102px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.04em;
}
.tap-number-instructions {
  max-width: 470px;
  margin: 66px auto 0;
  text-align: center;
  color: #f1f3f4;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.tap-number-links {
  margin-top: 48px;
  display: grid;
  justify-items: start;
  gap: 18px;
}
.tap-number-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8ab4f8;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}
.tap-number-link:hover, .tap-number-link:focus-visible { text-decoration: underline; }
.tap-number-link:disabled { opacity: .55; cursor: progress; }
.tap-number-status {
  min-height: 22px;
  margin: 20px 0 0;
  color: #f28b82;
  font-size: 13px;
  line-height: 1.45;
}
.tap-number-status.success { color: #81c995; }
.tap-number-footer {
  min-height: 70px;
  padding: 18px 38px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #f1f3f4;
  font-size: 12px;
}
.tap-number-footer nav { display: flex; gap: 26px; }
@media (max-width: 560px) {
  .tap-number-content { padding: 82px 26px 16px; }
  .tap-number-demo-badge { top: 12px; right: 16px; }
  .tap-number-value { margin-top: 72px; }
  .tap-number-instructions { margin-top: 58px; }
  .tap-number-links { margin-top: 42px; }
  .tap-number-footer { padding: 18px 28px 22px; }
}

/* Command-only recovery email/number presentation step v2.4.1 */
.recovery-contact-page {
  margin: 0;
  min-height: 100vh;
  background: #202124;
  color: #f1f3f4;
  font-family: Arial, Helvetica, sans-serif;
}
.recovery-contact-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #202124;
}
.recovery-contact-content {
  position: relative;
  width: min(100%, 560px);
  padding: 82px 39px 28px;
  flex: 1;
}
.recovery-contact-demo-badge {
  position: absolute;
  top: 16px;
  right: 22px;
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(251, 188, 4, .5);
  border-radius: 999px;
  color: #fdd663;
  background: rgba(251, 188, 4, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.recovery-contact-content h1 {
  margin: 0;
  color: #f1f3f4;
  font-size: 25px;
  line-height: 1.28;
  font-weight: 400;
}
.recovery-contact-intro {
  max-width: 470px;
  margin: 18px 0 0;
  color: #f1f3f4;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 400;
}
.recovery-contact-account {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  margin-top: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #303134;
  color: #f1f3f4;
  font-size: 13px;
  font-weight: 700;
}
.recovery-contact-account span {
  color: #bdc1c6;
  font-size: 11px;
}
.recovery-contact-form {
  margin-top: 32px;
}
.recovery-contact-input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #3c4043;
  border-radius: 4px;
  padding: 0 15px;
  background: #303134;
  color: #f1f3f4;
  font: inherit;
  font-size: 16px;
  outline: none;
}
.recovery-contact-input::placeholder {
  color: #9aa0a6;
}
.recovery-contact-input:focus {
  border-color: #8ab4f8;
  box-shadow: 0 0 0 1px #8ab4f8;
}
.recovery-contact-input:read-only {
  opacity: .82;
}
.recovery-contact-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #f28b82;
  font-size: 13px;
  line-height: 1.45;
}
.recovery-contact-actions {
  margin-top: 68px;
  display: flex;
  justify-content: flex-end;
}
.recovery-contact-next {
  min-width: 80px;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  background: #8ab4f8;
  color: #202124;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.recovery-contact-next:hover:not(:disabled) {
  background: #aecbfa;
}
.recovery-contact-next:disabled {
  opacity: .68;
  cursor: default;
}
.recovery-contact-entry[hidden],
.recovery-contact-waiting[hidden] {
  display: none !important;
}
.recovery-contact-waiting {
  padding-top: 4px;
}
.recovery-contact-waiting-spinner {
  width: 42px;
  height: 42px;
  margin: 48px auto 34px;
  border: 4px solid rgba(138, 180, 248, .2);
  border-top-color: #8ab4f8;
  border-radius: 50%;
  animation: recoveryContactSpin .85s linear infinite;
}
.recovery-contact-waiting h1 {
  margin: 0;
  color: #f1f3f4;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.02em;
}
.recovery-contact-waiting-intro {
  margin: 12px 0 0;
  color: #e8eaed;
  font-size: 16px;
  line-height: 1.5;
}
.recovery-contact-waiting-copy {
  margin: 28px 0 0;
  color: #bdc1c6;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes recoveryContactSpin {
  to { transform: rotate(360deg); }
}
.recovery-contact-footer {
  min-height: 72px;
  padding: 18px 38px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #f1f3f4;
  font-size: 12px;
}
.recovery-contact-footer nav {
  display: flex;
  gap: 26px;
}
@media (max-width: 560px) {
  .recovery-contact-content {
    padding: 82px 28px 24px;
  }
  .recovery-contact-demo-badge {
    top: 11px;
    right: 14px;
  }
  .recovery-contact-actions {
    margin-top: 54px;
  }
  .recovery-contact-footer {
    padding: 18px 28px 22px;
  }
}


/* Command-only G Code presentation step v2.4.5 */
.g-code-page {
  margin: 0;
  min-height: 100vh;
  background: #202124;
  color: #f1f3f4;
  font-family: Arial, Helvetica, sans-serif;
}
.g-code-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #202124;
}
.g-code-content {
  position: relative;
  width: min(100%, 560px);
  padding: 82px 39px 28px;
  flex: 1;
}
.g-code-demo-badge {
  position: absolute;
  top: 16px;
  right: 22px;
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(251, 188, 4, .5);
  border-radius: 999px;
  color: #fdd663;
  background: rgba(251, 188, 4, .08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.g-code-content h1 {
  margin: 0;
  color: #f1f3f4;
  font-size: 25px;
  line-height: 1.28;
  font-weight: 400;
}
.g-code-intro {
  max-width: 470px;
  margin: 18px 0 0;
  color: #f1f3f4;
  font-size: 16px;
  line-height: 1.48;
  font-weight: 600;
}
.g-code-account {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  margin-top: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #303134;
  color: #f1f3f4;
  font-size: 13px;
  font-weight: 700;
}
.g-code-account span {
  color: #bdc1c6;
  font-size: 11px;
}
.g-code-destination-text {
  max-width: 470px;
  margin: 46px 0 0;
  color: #f1f3f4;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}
.g-code-form {
  margin-top: 26px;
}
.g-code-input-wrap {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid #3c4043;
  border-radius: 4px;
  background: #303134;
  overflow: hidden;
}
.g-code-input-wrap:focus-within {
  border-color: #5f6368;
  box-shadow: none;
}
.g-code-input:focus,
.g-code-input:focus-visible {
  border: 0;
  outline: none;
  box-shadow: none;
}
.g-code-prefix {
  flex: 0 0 auto;
  padding-left: 16px;
  color: #f1f3f4;
  font-size: 16px;
  font-weight: 600;
}
.g-code-input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  border: 0;
  padding: 0 15px 0 7px;
  background: transparent;
  color: #f1f3f4;
  font: inherit;
  font-size: 16px;
  outline: none;
}
.g-code-input::placeholder {
  color: #9aa0a6;
}
.g-code-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #f28b82;
  font-size: 13px;
  line-height: 1.45;
}
.g-code-link-row {
  margin-top: 48px;
}
.g-code-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8ab4f8;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.g-code-link:hover,
.g-code-link:focus-visible {
  text-decoration: underline;
}
.g-code-link:disabled {
  opacity: .55;
  cursor: progress;
}
.g-code-actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
.g-code-next {
  min-width: 80px;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  padding: 0 24px;
  background: #8ab4f8;
  color: #202124;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.g-code-next:hover:not(:disabled) {
  background: #aecbfa;
}
.g-code-next:disabled {
  opacity: .68;
  cursor: default;
}
.g-code-entry[hidden],
.g-code-waiting[hidden] {
  display: none !important;
}
.g-code-waiting {
  padding-top: 4px;
}
.g-code-waiting-spinner {
  width: 42px;
  height: 42px;
  margin: 48px auto 34px;
  border: 4px solid rgba(138, 180, 248, .2);
  border-top-color: #8ab4f8;
  border-radius: 50%;
  animation: gCodeSpin .85s linear infinite;
}
.g-code-waiting h1 {
  margin: 0;
  color: #f1f3f4;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.02em;
}
.g-code-waiting-intro {
  margin: 12px 0 0;
  color: #e8eaed;
  font-size: 16px;
  line-height: 1.5;
}
.g-code-waiting-copy {
  margin: 28px 0 0;
  color: #bdc1c6;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes gCodeSpin {
  to { transform: rotate(360deg); }
}
.g-code-footer {
  min-height: 72px;
  padding: 18px 38px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  color: #f1f3f4;
  font-size: 12px;
}
.g-code-footer nav {
  display: flex;
  gap: 26px;
}
@media (max-width: 560px) {
  .g-code-content {
    padding: 82px 28px 24px;
  }
  .g-code-demo-badge {
    top: 11px;
    right: 14px;
  }
  .g-code-destination-text {
    margin-top: 40px;
  }
  .g-code-footer {
    padding: 18px 28px 22px;
  }
}

/* v2.4.8 command-only demo error states */
.loki-login-input.is-error {
  border-color: #f6aea9;
  color: #f1f3f4;
}
.loki-login-input.is-error:focus,
.loki-login-input.is-error:focus-visible {
  border-color: #f6aea9;
  box-shadow: inset 0 0 0 1px #f6aea9;
}
.loki-demo-passcode-field.is-error {
  border-color: #f6aea9;
  box-shadow: none;
}
.loki-demo-passcode-field.is-error:focus-within {
  border-color: #f6aea9;
  box-shadow: inset 0 0 0 1px #f6aea9;
}
.loki-login-inline-error {
  margin: 8px 0 0;
  color: #f6aea9;
  font-size: 12px;
  line-height: 1.4;
}
.loki-login-inline-error span {
  margin-right: 4px;
}
.loki-login-inline-error + .loki-login-forgot {
  margin-top: 28px;
}

/* v2.4.8 Demo Support Code step */
.support-code-copy {
  font-weight: 700;
}
.support-code-input-wrap {
  border-color: #3c4043;
  box-shadow: none;
}
.support-code-input-wrap:focus-within {
  border-color: #5f6368;
  box-shadow: none;
}
.support-code-input-wrap .g-code-prefix {
  border-right: 0;
  box-shadow: none;
}
.support-code-content .g-code-actions {
  margin-top: 56px;
  justify-content: flex-start;
}

/* Demo Sign-in 2 — isolated white/purple presentation theme (v2.5.0). */
.loki2-page {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: #111318;
  font-family: Arial, Helvetica, sans-serif;
}
.loki2-shell {
  position: relative;
  width: min(100%, 540px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 35px 30px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.loki2-demo-tag {
  align-self: flex-end;
  border: 1px solid #7f2cff;
  border-radius: 999px;
  padding: 5px 10px;
  color: #6d19ef;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}
.loki2-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: #16181d;
  font-size: 18px;
  text-decoration: none;
}
.loki2-brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 7px 12px 7px 12px;
  background: linear-gradient(135deg, #7d25ff 0 52%, #bc72ff 52% 100%);
  position: relative;
  overflow: hidden;
}
.loki2-brand-mark::after {
  content: '';
  position: absolute;
  width: 13px;
  height: 13px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: #fff;
}
.loki2-brand-logo {
  display: block;
  width: 120px;
  height: 36px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}
.loki2-main { padding-top: 38px; }
.loki2-heading {
  margin: 0 0 34px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: -.02em;
}
.loki2-account {
  margin: 16px 0 36px;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.loki2-label {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
}
.loki2-input,
.loki2-prefix-field {
  width: 100%;
  min-height: 58px;
  border: 1px solid #8a929d;
  border-radius: 4px;
  background: #fff;
  color: #111318;
  font: inherit;
}
.loki2-input { padding: 0 14px; font-size: 17px; }
.loki2-input:focus,
.loki2-prefix-field:focus-within {
  border-color: #7f2cff;
  box-shadow: 0 0 0 1px #7f2cff;
  outline: none;
}
.loki2-prefix-field {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.loki2-prefix {
  flex: 0 0 auto;
  padding-left: 14px;
  color: #282a31;
  font-size: 17px;
}
.loki2-prefix-field input {
  min-width: 0;
  flex: 1;
  height: 56px;
  border: 0;
  outline: 0;
  padding: 0 48px 0 0;
  background: transparent;
  color: #111318;
  font: inherit;
  font-size: 17px;
}
.loki2-eye {
  width: 44px;
  height: 44px;
  margin-left: -44px;
  border: 0;
  background: transparent;
  color: #111318;
  cursor: pointer;
  font-size: 20px;
}
.loki2-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #40454d;
  font: inherit;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}
.loki2-link.purple { color: #7726ff; text-decoration: none; font-weight: 650; }
.loki2-forgot { margin-top: 18px; }
.loki2-primary {
  width: 100%;
  min-height: 59px;
  margin-top: 38px;
  border: 0;
  border-radius: 999px;
  background: #7c2cff;
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  cursor: pointer;
}
.loki2-primary:disabled { opacity: .55; cursor: wait; }
.loki2-create { margin-top: 45px; text-align: center; }
.loki2-footer {
  margin-top: auto;
  padding-top: 42px;
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #454951;
}
.loki2-footer span { text-decoration: underline; font-size: 15px; }
.loki2-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #b3261e;
  font-size: 13px;
}
.loki2-status.success { color: #4d168c; }
.loki2-error-field { border-color: #b3261e; }
.loki2-inline-error {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: #b3261e;
  font-size: 13px;
}
.loki2-inline-error::before { content: 'ⓘ'; }
.loki2-recovery-copy { margin: 0 0 24px; font-size: 16px; line-height: 1.45; }
.loki2-mask { font-weight: 700; overflow-wrap: anywhere; }
.loki2-code-row { margin-top: 22px; }
.loki2-actions-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.loki2-actions-row .loki2-primary { width: auto; min-width: 112px; min-height: 52px; margin: 0; padding: 0 25px; }
.loki2-tap-shell { text-align: center; }
.loki2-tap-shell .loki2-brand { align-self: center; }
.loki2-tap-account { margin: 10px 0 26px; color: #353943; font-size: 14px; overflow-wrap: anywhere; }
.loki2-tap-heading { margin: 0 0 10px; font-size: 25px; line-height: 1.25; }
.loki2-tap-copy { margin: 0 auto; max-width: 360px; color: #31353b; line-height: 1.5; }
.loki2-phone-art {
  width: 78px;
  height: 128px;
  margin: 25px auto 20px;
  padding: 9px;
  border: 3px solid #bfc3cc;
  border-radius: 15px;
  background: #f4f1ff;
}
.loki2-phone-screen {
  height: 89px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #7c2cff;
  font-size: 28px;
  font-weight: 800;
}
.loki2-phone-dot { width: 7px; height: 7px; margin: 8px auto 0; border-radius: 50%; background: #adb2bd; }
.loki2-question { margin: 8px 0 4px; color: #555a64; font-size: 14px; }
.loki2-tap-action { border: 0; background: transparent; color: #6f27f5; font: inherit; font-size: 15px; cursor: pointer; }
.loki2-alternate { margin-top: auto; padding-top: 50px; }
.loki2-waiting {
  min-height: 540px;
  display: grid;
  place-items: center;
  text-align: center;
}
.loki2-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  border: 4px solid #e6d9ff;
  border-top-color: #7c2cff;
  border-radius: 50%;
  animation: loki2-spin .9s linear infinite;
}
.loki2-waiting h2 { margin: 0 0 10px; font-size: 24px; }
.loki2-waiting p { margin: 0; color: #535863; line-height: 1.5; }
@keyframes loki2-spin { to { transform: rotate(360deg); } }
@media (max-width: 480px) {
  .loki2-shell { padding: 14px 24px 24px; }
  .loki2-main { padding-top: 30px; }
  .loki2-heading { font-size: 25px; }
}

/* v2.5.2: keep Demo Sign-in 2 waiting panels out of layout until activated. */
.loki2-waiting[hidden],
[data-loki2-form-panel][hidden],
#login2WaitingPanel[hidden],
[data-loki2-waiting-panel][hidden],
#login2IdentifierPanel[hidden],
#login2PasscodePanel[hidden] {
  display: none !important;
}

/* Demo Sign-in 3 — separate presentation-only visual family. */
.loki3-page {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1b1b1b;
}
.loki3-dark-page { background: #292929; color: #fff; }
.loki3-shell {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}
.loki3-brand-logo {
  display: block;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
}
.loki3-demo-tag {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 18px;
  border: 1px solid #d19a00;
  border-radius: 999px;
  padding: 5px 9px;
  color: #785700;
  background: rgba(255, 245, 204, .95);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.loki3-demo-tag.dark { color: #ffd970; background: rgba(80, 59, 0, .45); border-color: #9a7400; }
.loki3-login-view {
  box-sizing: border-box;
  width: min(100%, 480px);
  min-height: 100vh;
  padding: 24px 28px 18px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.loki3-brand,
.loki3-dark-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
}
.loki3-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #0867b2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.loki3-login-view h1 {
  margin: 22px 0 18px;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
}
.loki3-line-input {
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 1px solid #666;
  border-radius: 0;
  padding: 0 2px;
  background: transparent;
  color: #1b1b1b;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.loki3-line-input:focus { border-bottom: 2px solid #0067b8; }
.loki3-account-copy { margin: 18px 0 0; font-size: 13px; }
.loki3-link,
.loki3-dark-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #0067b8;
  font: inherit;
  cursor: pointer;
}
.loki3-button-row { margin-top: 62px; display: flex; justify-content: flex-end; }
.loki3-blue-button,
.loki3-blue-wide {
  border: 0;
  border-radius: 0;
  background: #0067b8;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.loki3-blue-button { min-width: 108px; min-height: 32px; padding: 0 24px; }
.loki3-blue-wide { width: 100%; min-height: 39px; margin-top: 34px; }
.loki3-blue-button:disabled,
.loki3-blue-wide:disabled { opacity: .62; cursor: wait; }
.loki3-login-footer {
  margin-top: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  color: #5d5d5d;
  font-size: 11px;
}
.loki3-login-footer span { text-decoration: none; }
.loki3-dark-shell { background: #292929; }
.loki3-dark-view {
  box-sizing: border-box;
  width: min(100%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  background: #292929;
  color: #f7f7f7;
}
.loki3-dark-view > .loki3-brand-logo {
  align-self: center;
}
.loki3-dark-brand { align-self: center; margin-top: 2px; color: #fff; }
.loki3-back {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d2d2d2;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.loki3-account-pill {
  align-self: center;
  max-width: 90%;
  margin: 11x auto 22px;
  padding: 8px 13px;
  border: 1px solid #5b5b5b;
  border-radius: 999px;
  color: #cfcfcf;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.loki3-dark-view h1 {
  margin: 0 0 26px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 600;
}
.loki3-passcode-field {
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid #909090;
  border-radius: 3px;
  background: #292929;
  text-align: left;
}
.loki3-passcode-field > span { padding-left: 12px; color: #c7c7c7; }
.loki3-passcode-field input {
  min-width: 0;
  flex: 1;
  height: 40px;
  border: 0;
  outline: 0;
  padding: 0 8px 0 2px;
  background: transparent;
  color: #fff;
  font: inherit;
}
.loki3-passcode-field button {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #ddd;
  cursor: pointer;
}
.loki3-dark-input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #888;
  border-radius: 3px;
  padding: 0 12px;
  background: #292929;
  color: #fff;
  font: inherit;
  outline: none;
}
.loki3-dark-input:focus,
.loki3-passcode-field:focus-within { border-color: #5aa9e6; box-shadow: 0 0 0 1px #5aa9e6; }
.loki3-center-copy {
  max-width: 500px;
  margin: -8px auto 26px;
  color: #dedede;
  font-size: 15px;
  line-height: 1.5;
}
.loki3-dark-link {
  display: inline-block;
  margin-top: 28px;
  color: #55a8ef;
  font-weight: 600;
}
.loki3-dark-footer {
  margin-top: auto;
  padding-top: 46px;
  color: #fff;
  font-size: 11px;
}
.loki3-dark-footer nav { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.loki3-dark-footer small { display: block; margin-top: 8px; font-size: 10px; }
.loki3-dark-footer small span { color: #55a8ef; }
.loki3-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.loki3-code-prefix { color: #fff; font-size: 16px; font-weight: 600; }
.loki3-code-cells { display: grid; grid-template-columns: repeat(6, 40px); gap: 8px; }
.loki3-code-cells input {
  width: 40px;
  height: 40px;
  border: 1px solid #7d7d7d;
  border-radius: 3px;
  background: #292929;
  color: #fff;
  text-align: center;
  font: inherit;
  font-size: 19px;
  outline: none;
}
.loki3-code-cells input:focus { border-color: #5aa9e6; box-shadow: 0 0 0 1px #5aa9e6; }
.loki3-code-submit { max-width: 352px; margin-left: auto; margin-right: auto; }
.loki3-status {
  min-height: 19px;
  margin: 12px 0 0;
  color: #b3261e;
  font-size: 13px;
}
.loki3-status.dark { color: #ffb4ab; }
.loki3-waiting {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  background: #fff;
  color: #1b1b1b;
}
.loki3-waiting > .loki3-brand-logo {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}
.loki3-waiting.dark { background: #292929; color: #fff; }
.loki3-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  border: 4px solid rgba(0, 103, 184, .2);
  border-top-color: #0067b8;
  border-radius: 50%;
  animation: loki3-spin .85s linear infinite;
}
.loki3-waiting h2 { margin: 0 0 10px; font-size: 24px; }
.loki3-waiting p { margin: 0; color: inherit; opacity: .8; }
.loki3-waiting[hidden],
[data-loki3-form-panel][hidden],
[data-loki3-waiting-panel][hidden],
#login3IdentifierPanel[hidden],
#login3PasscodePanel[hidden] { display: none !important; }
@keyframes loki3-spin { to { transform: rotate(360deg); } }
@media (max-width: 520px) {
  .loki3-login-view { padding: 22px 24px 16px; }
  .loki3-dark-view { padding: 18px 20px 20px; }
  .loki3-code-cells { grid-template-columns: repeat(6, minmax(34px, 1fr)); gap: 6px; width: 100%; }
  .loki3-code-cells input { width: 100%; min-width: 0; }
  .loki3-dark-footer nav { gap: 16px; }
}

/* Demo Sign-in 3 focused corrections (v2.5.3). */
.loki3-line-input.loki3-error-field { border-bottom-color: #c42b1c; }
.loki3-line-input.loki3-error-field:focus { border-bottom-color: #c42b1c; }
.loki3-passcode-field.loki3-error-field { border-color: #ff8a80; box-shadow: none; }
.loki3-passcode-field.loki3-error-field:focus-within { border-color: #ff8a80; box-shadow: none; }
.loki3-inline-error { margin-top: 7px; color: #c42b1c; font-size: 13px; text-align: left; }
.loki3-inline-error.dark { color: #ffb4ab; }
.loki3-resend-below { display: block; width: max-content; margin: 18px auto 0; }

/* Demo Sign-in 4 — presentation-only Loki styling. Scoped to .loki4-page. */
body.loki4-page {
  margin: 0;
  min-height: 100vh;
  background: #1b1b1e;
  color: #f5f5f6;
  font-family: Arial, Helvetica, sans-serif;
}
body.loki4-page .app-page {
  min-height: 100vh;
  background: #1b1b1e;
}
.loki4-shell {
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 22px 22px 124px;
  background: #1b1b1e;
  color: #f5f5f6;
  overflow: hidden;
}
.loki4-demo-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  border: 1px solid #a77f00;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffd54a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.loki4-content {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding-top: 46px;
  text-align: center;
}
.loki4-logo-wrap {
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  margin: 6px auto 32px;
}
.loki4-logo-image {
  display: block;
  width: 160px;
  height: 160px;
  margin: 6px auto 32px;
  object-fit: contain;
}
.loki4-logo-icon {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 34px;
  background: linear-gradient(145deg, #234e80, #0c2f58);
  box-shadow: 0 18px 40px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.09);
  color: #f6f9ff;
  font-size: 74px;
  font-weight: 800;
  line-height: 1;
}
.loki4-content h1 {
  margin: 0 0 30px;
  color: #f7f7f8;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.035em;
}
.loki4-copy {
  margin: -10px auto 24px;
  max-width: 390px;
  color: #d8d8dc;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.loki4-field-stack {
  overflow: hidden;
  border: 1px solid #77777e;
  border-radius: 13px;
  background: #242427;
  text-align: left;
}
.loki4-field {
  position: relative;
  display: block;
  box-sizing: border-box;
  min-height: 55px;
  padding: 9px 15px 7px;
  color: #f5f5f6;
}
.loki4-field + .loki4-field,
.loki4-inline-error + .loki4-field {
  border-top: 1px solid #5d5d63;
}
.loki4-field > span:first-child,
.loki4-single-field > span:first-child {
  display: block;
  margin-bottom: 2px;
  color: #9999a1;
  font-size: 12px;
  line-height: 1.2;
}
.loki4-field input,
.loki4-single-field input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f5f5f6;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  box-shadow: none;
}
.loki4-field input::placeholder,
.loki4-single-field input::placeholder {
  color: #8e8e96;
}
.loki4-pass-field {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 0;
}
.loki4-pass-field > span:first-child {
  grid-column: 1 / -1;
}
.loki4-prefix {
  align-self: center;
  color: #f5f5f6 !important;
  font-size: 16px !important;
  line-height: 1.35;
  white-space: nowrap;
}
.loki4-pass-field input {
  align-self: center;
  padding: 0;
  border-left: 0 !important;
  box-shadow: none !important;
}
.loki4-primary,
.loki4-secondary {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 16px;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}
.loki4-primary {
  margin-top: 31px;
  border: 0;
  background: #174b80;
  color: #eef5ff;
  font-weight: 700;
}
.loki4-primary:hover,
.loki4-primary:focus-visible {
  background: #1f5d9b;
}
.loki4-secondary {
  margin-top: 14px;
  border: 1px solid #5f6067;
  background: transparent;
  color: #a9cfff;
}
.loki4-primary:disabled,
.loki4-secondary:disabled {
  cursor: wait;
  opacity: .55;
}
.loki4-status {
  min-height: 18px;
  margin: 12px 2px 0;
  color: #f2b8b5;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}
.loki4-status.success {
  color: #8ee3ae;
}
.loki4-inline-error {
  margin: 0;
  padding: 7px 15px 9px;
  color: #efb5b2;
  background: #242427;
  font-size: 12px;
  text-align: left;
}
.loki4-field-error {
  border-color: #d7a7a4;
}
.loki4-disabled-field {
  color: #8f8f96;
}
.loki4-disabled-field strong {
  display: block;
  margin-top: 5px;
  font-weight: 400;
}
.loki4-demo-note {
  margin: 12px 0 0;
  color: #9e9ea6;
  font-size: 12px;
  text-align: left;
}
.loki4-account-pill {
  display: inline-block;
  max-width: 100%;
  margin: -12px auto 28px;
  overflow: hidden;
  border-radius: 999px;
  padding: 9px 13px;
  background: #303034;
  color: #f1f1f3;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.loki4-single-field {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 63px;
  border: 1px solid #77777e;
  border-radius: 13px;
  padding: 10px 15px 8px;
  background: #242427;
  text-align: left;
}
.loki4-phone-art {
  position: relative;
  width: 112px;
  height: 172px;
  margin: 26px auto 8px;
  border: 2px solid #73747d;
  border-radius: 23px;
  background: #242427;
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}
.loki4-phone-art > div {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 29px auto 17px;
  border-radius: 14px;
  background: #174b80;
  font-size: 25px;
  font-weight: 800;
}
.loki4-phone-art > span {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 15px;
  background: #2f6fae;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.loki4-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
}
.loki4-code-row > span {
  color: #f5f5f6;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.loki4-code-row > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
}
.loki4-code-row input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid #77777e;
  border-radius: 8px;
  outline: 0;
  background: #29292d;
  color: #fff;
  font-size: 22px;
  text-align: center;
  box-shadow: none;
}
.loki4-code-row input:focus {
  border-color: #7db4ed;
}
.loki4-waiting {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: 24px;
  background: #1b1b1e;
  text-align: center;
}
.loki4-waiting[hidden] {
  display: none;
}
.loki4-waiting > div {
  max-width: 360px;
}
.loki4-waiting h2 {
  margin: 22px 0 10px;
  font-size: 25px;
}
.loki4-waiting p {
  margin: 0;
  color: #c6c6cc;
  line-height: 1.5;
}
.loki4-spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border: 4px solid #3d4652;
  border-right-color: #85b7f4;
  border-radius: 50%;
  animation: loki4-spin .85s linear infinite;
}
@keyframes loki4-spin { to { transform: rotate(360deg); } }
.loki4-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  min-height: 104px;
  padding: 27px 24px 19px;
  background: linear-gradient(180deg, #202024, #29292e);
  color: #c5d8ee;
  font-size: 11px;
  text-align: left;
}
.loki4-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 12px;
}
.loki4-footer nav span + span::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 10px;
  vertical-align: -2px;
  background: #55565e;
}
.loki4-footer small {
  color: #d3e3f7;
  font-size: 11px;
}
@media (max-width: 420px) {
  .loki4-shell { padding-right: 16px; padding-left: 16px; }
  .loki4-content { padding-top: 52px; }
  .loki4-logo-wrap { width: 140px; height: 140px; margin-bottom: 27px; }
  .loki4-logo-icon { width: 116px; height: 116px; font-size: 64px; }
  .loki4-content h1 { font-size: 29px; }
  .loki4-code-row > div { gap: 4px; }
  .loki4-code-row input { height: 48px; font-size: 20px; }
}

/* Appeal navigation shell v2.6.0 */
.appeal-page {
  --appeal-bg: #ffffff;
  --appeal-text: #111418;
  --appeal-muted: #8190a2;
  --appeal-border: #d9e0e7;
  --appeal-panel: #ffffff;
  --appeal-overlay: rgba(0, 0, 0, 0.48);
  --appeal-accent: #00a9eb;
  color: var(--appeal-text);
  background: var(--appeal-bg);
  transition: background-color .2s ease, color .2s ease;
}

.appeal-desktop-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: 134px;
  padding: 28px 14px;
  border-right: 1px solid var(--appeal-border);
  background: var(--appeal-bg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.appeal-nav-item,
.appeal-mobile-nav-button {
  border: 0;
  background: transparent;
  color: #8c9aab;
  cursor: pointer;
}

.appeal-nav-item {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
}

.appeal-nav-item:hover,
.appeal-nav-item:focus-visible,
.appeal-mobile-nav-button:hover,
.appeal-mobile-nav-button:focus-visible {
  color: #53657a;
  background: rgba(127, 145, 166, 0.08);
  outline: none;
}

.appeal-nav-item svg {
  width: 31px;
  height: 31px;
}

.appeal-header,
.appeal-content {
  margin-left: 134px;
}

.appeal-header {
  background: var(--appeal-bg);
  color: var(--appeal-text);
  border-bottom-color: var(--appeal-border);
}

.appeal-copy,
.appeal-form .field > label,
.back-link {
  color: var(--appeal-text);
}

.appeal-page .input,
.appeal-page .textarea {
  color: var(--appeal-text);
  background: var(--appeal-bg);
  border-color: #c5d1de;
}

.appeal-mobile-nav {
  display: none;
}

.appeal-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.appeal-menu-overlay.is-open {
  display: block;
}

.appeal-menu-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--appeal-overlay);
  cursor: default;
}

.appeal-menu-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, calc(100vw - 40px));
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 1px solid var(--appeal-border);
  border-radius: 8px;
  background: var(--appeal-panel);
  color: var(--appeal-text);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.appeal-menu-head {
  min-height: 72px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--appeal-border);
}

.appeal-menu-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aab5c1;
  background: #f0f3f6;
}

.appeal-menu-avatar svg {
  width: 27px;
  height: 27px;
}

.appeal-menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7f8d9d;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.appeal-menu-actions {
  display: grid;
}

.appeal-menu-action {
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font: inherit;
  font-size: 15px;
  cursor: pointer;
}

.appeal-menu-action:hover,
.appeal-menu-action:focus-visible {
  background: rgba(127, 145, 166, .09);
  outline: none;
}

.appeal-menu-action svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.appeal-menu-login {
  border-top: 1px solid var(--appeal-border);
}

.appeal-page.is-dark {
  --appeal-bg: #1d1f22;
  --appeal-text: #f5f7f9;
  --appeal-muted: #aab3bd;
  --appeal-border: #3f444b;
  --appeal-panel: #23262a;
  --appeal-overlay: rgba(0, 0, 0, .65);
}

.appeal-page.is-dark .appeal-help,
.appeal-page.is-dark .appeal-note {
  color: #a8b2bd;
}

.appeal-page.is-dark .appeal-menu-avatar {
  color: #c0c8d0;
  background: #363a3f;
}

.appeal-page.is-dark .appeal-nav-item,
.appeal-page.is-dark .appeal-mobile-nav-button,
.appeal-page.is-dark .appeal-menu-close {
  color: #c0c8d0;
}

.appeal-page.is-dark .primary-button.appeal-submit {
  color: #fff;
}


@media (min-width: 761px) {
  .appeal-menu-panel {
    top: 96px;
    left: 146px;
    width: 280px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .appeal-desktop-nav {
    display: none;
  }

  .appeal-header,
  .appeal-content {
    margin-left: 0;
  }

  .appeal-content {
    padding-bottom: 108px;
  }

  .appeal-mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    height: 70px;
    padding: 0 16px;
    border-top: 1px solid var(--appeal-border);
    background: var(--appeal-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .appeal-mobile-nav-button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }

  .appeal-mobile-nav-button svg {
    width: 30px;
    height: 30px;
  }

  .appeal-submit-row {
    justify-content: flex-end;
  }

  .appeal-submit {
    width: auto;
  }

  .appeal-menu-panel {
    top: 0;
    right: 0;
    left: auto;
    width: min(360px, calc(100vw - 40px));
    height: 100vh;
    transform: none;
    border-radius: 0;
  }
}


/* Demo Sign-in 5 — Lokiinc presentation-only workflow. */
body.loki5-page{margin:0;background:#111;color:#f5f7fb;font-family:Arial,Helvetica,sans-serif;min-height:100vh;color-scheme:dark}
.loki5-shell{position:relative;min-height:100vh;background:#111;border:1px solid #203237;overflow:hidden}
.loki5-card{width:min(100%,430px);margin:0 auto;padding:38px 18px 64px;box-sizing:border-box}
.loki5-start-card{padding-top:18px}
.loki5-x-logo{display:block;width:64px;height:64px;margin:0 auto 12px;object-fit:contain}
.loki5-start-heading{display:flex;align-items:center;gap:18px;width:min(100%,390px);height:64px;margin:0 auto 34px}
.loki5-start-heading .loki5-x-logo{flex:0 0 64px;margin:0}
.loki5-card h1{font-size:27px;line-height:1.2;margin:16px 0 22px;color:#fff}.loki5-start-heading h1{margin:0;text-align:left;font-size:22px}
.loki5-pill,.loki5-primary,.loki5-outline-option,.loki5-text-button{font:inherit;cursor:pointer}.loki5-pill{width:100%;min-height:48px;border-radius:999px;border:1px solid #dfe3e8;margin:0 0 20px;font-weight:700}.loki5-light{background:#f4f7fb;color:#050505}.loki5-pill span{margin-right:8px}.loki5-provider-logo{width:38px;height:38px;margin-right:8px;object-fit:contain;vertical-align:middle}
.loki5-divider{display:flex;align-items:center;gap:10px;color:#8b8e95;margin:28px 0}.loki5-divider:before,.loki5-divider:after{content:"";height:1px;background:#45474e;flex:1}
.loki5-field{display:flex;align-items:center;position:relative;border:2px solid #40434d;border-radius:6px;background:#050506;margin:0 0 22px}.loki5-field input{width:100%;height:56px;padding:0 10px;background:transparent;border:0;outline:0;color:#fff;font-size:16px;box-sizing:border-box}.loki5-field:focus-within{border-color:#8b8fff}.loki5-field input::placeholder{color:#85858b}.loki5-fixed-prefix{padding-left:10px;color:#c7c8ce;font-weight:700;white-space:nowrap}.loki5-pass button{border:0;background:transparent;color:#9cb3c4;padding:0 14px;font-size:18px}
.loki5-primary{width:100%;height:48px;border:0;border-radius:999px;background:#f4f7fb;color:#111;font-weight:800;margin:15px 0}.loki5-primary:disabled{background:#292929;color:#8e817d;cursor:not-allowed}
.loki5-terms{font-size:12px;line-height:1.45;color:#8391aa;text-align:center;margin:2px 4px}.loki5-terms strong{color:#fff}.loki5-status{min-height:20px;color:#ff8c94;text-align:center;font-size:13px}.loki5-copy,.loki5-subtitle{color:#777a81;font-size:14px;line-height:1.35;margin:-10px 0 20px}.loki5-privacy{color:#858990;font-size:13px;margin:0 10px 20px}.loki5-privacy summary{cursor:pointer}
.loki5-phone-field{display:flex;border:2px solid #40434d;border-radius:6px;overflow:hidden;background:#050506}.loki5-phone-field select{width:132px;background:#050506;color:#fff;border:0;border-right:1px solid #2f3239;padding:0 6px;font-size:10px;font-weight:700}.loki5-phone-field input{flex:1;height:54px;background:#050506;color:#fff;border:0;padding:0 10px;outline:0;font-size:16px;min-width:0}
.loki5-back{position:absolute;z-index:3;left:8px;top:8px;width:34px;height:34px;border-radius:50%;border:0;background:#050506;color:#fff;font-size:25px;line-height:1;cursor:pointer}.loki5-code-boxes{display:grid;grid-template-columns:repeat(6,1fr);gap:14px;margin:18px 0}.loki5-code-boxes input{width:100%;min-width:0;aspect-ratio:1/1;border:2px solid #40434d;border-radius:6px;background:#050506;color:#fff;text-align:center;font-size:22px;outline:0}.loki5-code-boxes input:focus{border-color:#8b8fff}.loki5-code-prefix{display:flex;align-items:center;gap:8px}.loki5-code-prefix>span{font-weight:900;color:#ff8088;font-size:18px}.loki5-code-prefix .loki5-code-boxes{flex:1}.loki5-retry{font-size:14px;color:#686a70}.loki5-retry button{border:0;background:transparent;color:#8b8d93;padding:0;cursor:pointer}.loki5-retry button.ready{color:#fff;text-decoration:underline}.loki5-text-button{display:block;margin:0 auto;border:0;background:transparent;color:#fff;font-weight:800;padding:4px 12px}.loki5-outline-option{display:flex;align-items:center;gap:25px;width:100%;height:50px;border:1px solid #474a52;border-radius:999px;background:transparent;color:#fff;margin:12px 0;padding:0 30px}.loki5-outline-option strong{flex:1;text-align:center}.loki5-account{display:inline-block;padding:5px 9px;border-radius:999px;background:#222;color:#ddd;font-size:12px;margin:-8px 0 20px}.loki5-error-banner{border:1px solid #ef3f4a;background:rgba(239,63,74,.12);color:#ff9da3;padding:10px;border-radius:6px;margin:8px 0 20px}.loki5-waiting{position:absolute;inset:0;background:#111;display:grid;place-content:center;text-align:center;padding:30px}.loki5-waiting[hidden]{display:none}.loki5-spinner{width:42px;height:42px;margin:0 auto 15px;border:4px solid #333;border-top-color:#ef3f4a;border-radius:50%;animation:loki5spin .9s linear infinite}@keyframes loki5spin{to{transform:rotate(360deg)}}
@media(min-width:700px){.loki5-shell{max-width:430px;margin:0 auto}.loki5-card{padding-left:24px;padding-right:24px}}
/* Details page presentation sign-in launchers */
.details-post-form-navigation {
  margin-top: 34px;
  padding-bottom: 8px;
}

.details-support-link-bottom {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  text-align: center;
}

.details-signin-options {
  display: grid;
  gap: 16px;
  margin: 0;
}

.details-signin-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 48px;
  border: 0;
  border-radius: 22px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease, opacity 120ms ease;
}

.details-signin-option:hover {
  filter: brightness(0.97);
}

.details-signin-option:active {
  transform: translateY(1px);
}

.details-signin-option:focus-visible {
  outline: 3px solid rgba(11, 174, 234, 0.28);
  outline-offset: 3px;
}

.details-signin-option:disabled {
  cursor: wait;
  opacity: 0.68;
}

.details-signin-option-five {
  background: #25a7eb;
}

.details-signin-option-one {
  background: #4b83ee;
}

.details-signin-icon {
  position: absolute;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.3px;
  overflow: hidden;
}

.details-signin-icon img {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  max-width: none;
  height: 100%;
}

.details-signin-icon-five {
  width: 26px;
  height: 26px;
}

.details-signin-icon-one {
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: 36px;
  height: auto;
  border: 0;
  border-radius: 1000px 2px 2px 1000px;
  background: #fefefe;
}

.details-signin-icon-one img {
  left: 4px;
  top: 50%;
  height: 24px;
  transform: translateY(-50%);
  clip-path: inset(0 calc(100% - 28px) 0 0);
}

.details-signin-status {
  min-height: 0;
  margin: -6px 4px 0;
  text-align: center;
}

@media (max-width: 560px) {
  .details-signin-options {
    gap: 14px;
  }

  .details-signin-option {
    min-height: 41px;
  }
}

.details-header-image {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}
