/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.21_@opentelemetry+api@1.9.1_@playwright+test@1.60.0_@types+node@22.15.18_babel-plug_viawzubdw7oivhdhlep6ekimbq/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.5.21_@opentelemetry+api@1.9.1_@playwright+test@1.60.0_@types+node@22.15.18_babel-plug_viawzubdw7oivhdhlep6ekimbq/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/login-demo/signup-design-system.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*
 * ============================================================
 *  SENSITIVE & CONNECTED — SIGNUP DESIGN SYSTEM
 *  signup-design-system.css
 * ============================================================
 *
 *  Shared stylesheet for all signup/onboarding screens:
 *    signup-1-1-create-account.html
 *    signup-1-2-verify-email.html
 *    signup-1-3-trial.html
 *    signup-1-4-billing.html
 *    signup-1-5-license.html
 *    signup-1-6-modality.html
 *    signup-1-7-empty-clients.html
 *
 *  Usage in each HTML file:
 *    <link rel="stylesheet" href="signup-design-system.css">
 *  Then a small \3c style> block for screen-specific rules only.
 * ============================================================
 */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ── */
:root {
  --bg:            #F4F0E8;
  --sidebar-bg:    #EAE5DC;
  --surface:       #FDFAF5;
  --surface-2:     #F5F1EA;
  --border:        #DDD7CD;
  --border-card:   #E6E0D6;
  --border-inner:  #EDE8E0;
  --text:          #1C1912;
  --text-muted:    #65605A;
  --text-soft:     #9E9890;
  --accent:        #675BA0;
  --accent-bg:     #EBEBF3;
  --accent-strong: #544888;
  --accent-light:  #F3F1FA;
  --error:         #A32D2D;
  --error-bg:      #FCEBEB;
  --error-border:  rgba(162,45,45,.2);
  --success:       #2F6B4A;
  --success-bg:    #E8F5EE;
  --warning:       #9A6A2E;
  --warning-soft:  #F2E3CA;
  --pending:       #C2610F;
  --pending-bg:    #FDEBD6;
  --rb:  8px;
  --ri:  7px;
  --r:   12px;
}

/* ── Base ── */
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Centered page layout (auth screens 1-1 through 1-6) ── */
body.auth-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ── App shell layout (screens with sidebar: 1-4, 1-7) ── */
body.app-page { display: flex; }

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.logo-mark {
  /* Phase logo mark: self-contained lavender disc + sage crescent, so no purple
     circle behind it and no rounding. Source: assets/brand/logo-mark.svg. */
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.2px;
}

/* ── Auth card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 36px 36px 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.3px;
  margin-bottom: 6px;
}
.card-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}
.step-hint {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 20px;
  margin-top: -16px;
}

/* ── Error banner ── */
.err-banner {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-radius: var(--ri);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--error);
  margin-bottom: 18px;
}
.err-banner.show { display: flex; }

/* ── SSO buttons ── */
.sso-stack { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.sso-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--rb);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.sso-btn:hover:not(:disabled) { border-color: #9E9890; background: var(--surface-2); }
.sso-btn:disabled { opacity: .6; cursor: not-allowed; }
.sso-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(0,0,0,.1);
  border-top-color: var(--text-muted);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

/* ── Divider ── */
.divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.divider-line { flex: 1 1; height: 1px; background: var(--border-inner); }
.divider-text { font-size: 12px; color: var(--text-soft); white-space: nowrap; }

/* ── Form fields ── */
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field:last-of-type { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.field label .req { color: var(--accent); margin-left: 2px; }
.field label .opt { font-size: 11px; font-weight: 400; color: var(--text-soft); margin-left: 4px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 12px; gap: 12px; margin-bottom: 14px; }
.field-hint { font-size: 11px; color: var(--text-soft); margin-top: 2px; }

.inp-wrap { position: relative; }

input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--ri);
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color .12s, box-shadow .12s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
input::placeholder, textarea::placeholder { color: var(--text-soft); }
input.has-error { border-color: #E24B4A; box-shadow: 0 0 0 3px var(--error-bg); }
.inp-with-toggle { padding-right: 38px; }

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239E9890' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
  cursor: pointer;
}

.toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: color .12s;
}
.toggle-btn:hover { color: var(--text-muted); }

/* ── Field errors ── */
.field-error {
  display: none;
  align-items: flex-start;
  gap: 4px;
  font-size: 11px;
  color: var(--error);
  margin-top: 2px;
  line-height: 1.45;
}
.field-error.show { display: flex; }
.field-error svg { flex-shrink: 0; margin-top: 1px; }
.field-error a { color: var(--accent); font-weight: 500; text-decoration: none; }
.field-error a:hover { text-decoration: underline; }

/* ── Password strength ── */
.strength-wrap { display: none; flex-direction: column; gap: 4px; margin-top: 6px; }
.strength-wrap.show { display: flex; }
.strength-bar { height: 3px; border-radius: 2px; background: var(--border-inner); overflow: hidden; }
.strength-fill { height: 100%; border-radius: 2px; transition: width .2s, background .2s; width: 0%; }
.strength-label { font-size: 11px; }

/* ── Checkbox ── */
.cb-wrap { margin-bottom: 20px; }
.cb-row { display: flex; align-items: flex-start; gap: 10px; }
.cb-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, border-color .12s;
}
.cb-box.checked { background: var(--accent); border-color: var(--accent); }
.cb-box svg { display: none; }
.cb-box.checked svg { display: block; }
.cb-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.cb-label a { color: var(--accent); text-decoration: none; font-weight: 500; }
.cb-label a:hover { text-decoration: underline; }
.cb-error {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--error);
  margin-top: 5px;
  margin-left: 26px;
}
.cb-error.show { display: flex; }

/* ── Buttons ── */
.btn-primary {
  width: 100%;
  padding: 10px 20px;
  border-radius: var(--rb);
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.btn-primary:hover:not(:disabled) { background: var(--accent-strong); }
.btn-primary:disabled { opacity: .38; cursor: not-allowed; }

.btn-ghost {
  padding: 8px 16px;
  border-radius: var(--rb);
  border: 1px solid var(--border);
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .12s, color .12s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Secondary link ── */
.secondary-link { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.secondary-link a { color: var(--accent); text-decoration: none; font-weight: 500; }
.secondary-link a:hover { text-decoration: underline; }

/* ── Trust note ── */
.trust-note { text-align: center; font-size: 11px; color: var(--text-soft); line-height: 1.5; }
.trust-note a { color: var(--text-soft); text-decoration: underline; }

/* ── Spinner ── */
.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Page header (above plan card, verify card etc.) ── */
.page-head { text-align: center; margin-bottom: 28px; }
.page-title-lg { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.3px; margin-bottom: 6px; }
.page-sub { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── Plan toggle ── */
.plan-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 480px;
}
.plan-tab {
  flex: 1 1;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.plan-tab:hover { color: var(--text); }
.plan-tab.active {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.plan-tab .tab-price { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -.2px; }
.plan-tab.active .tab-price { color: var(--accent); }
.plan-tab .tab-label { font-size: 11px; color: var(--text-soft); }
.plan-tab.active .tab-label { color: var(--text-muted); }

/* ── Plan card ── */
.plan-card {
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 0 4px var(--accent-bg);
  overflow: hidden;
}
.plan-head {
  background: var(--accent-light);
  border-bottom: 1px solid rgba(103,91,160,.15);
  padding: 22px 28px 20px;
}
.plan-name { font-size: 12px; font-weight: 600; color: var(--accent-strong); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 10px; }
.plan-body { padding: 20px 28px 24px; }
.features-label { font-size: 11px; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 14px; }
.features-grid { display: flex; flex-direction: column; gap: 9px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.feature-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--success-bg);
  border: 1px solid rgba(47,107,74,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* CTA wrap (below plan card) */
.cta-wrap { width: 100%; max-width: 480px; margin-top: 20px; }
.cta-note { font-size: 12px; color: var(--text-soft); text-align: center; line-height: 1.55; }

/* ── Legal note box ── */
.legal-note {
  background: var(--surface-2);
  border: 1px solid var(--border-inner);
  border-radius: var(--ri);
  padding: 12px 14px;
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 24px;
}

/* ── Compare note ── */
.compare-note {
  width: 100%;
  max-width: 480px;
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--ri);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.compare-note svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }

/* ── Inline note (lavender tint) ── */
.inline-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(103,91,160,.15);
  border-radius: var(--ri);
  padding: 10px 14px;
  font-size: 12px;
  color: var(--accent-strong);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* ── Verify email screen ── */
.email-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid rgba(103,91,160,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.btn-resend {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--rb);
  transition: background .12s, color .12s;
}
.btn-resend:hover:not(:disabled) { background: var(--accent-light); }
.btn-resend:disabled { color: var(--text-soft); cursor: not-allowed; }
.countdown { font-size: 12px; color: var(--text-soft); }
.sent-note {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--success);
  background: var(--success-bg);
  border: 1px solid rgba(47,107,74,.15);
  border-radius: var(--ri);
  padding: 8px 14px;
  margin-bottom: 8px;
}
.sent-note.show { display: flex; }
.back-link { font-size: 13px; color: var(--text-soft); }
.back-link a { color: var(--text-muted); font-weight: 500; text-decoration: none; }
.back-link a:hover { color: var(--accent); text-decoration: underline; }

/* ── Tags multi-select ── */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: var(--ri);
  padding: 8px 10px;
  background: var(--surface);
  min-height: 44px;
  cursor: text;
  transition: border-color .12s, box-shadow .12s;
}
.tags-wrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 10px;
  background: var(--accent-bg);
  border: 1px solid rgba(103,91,160,.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-strong);
}
.tag-remove {
  background: none; border: none; padding: 0;
  cursor: pointer; color: var(--accent); opacity: .6;
  display: flex; align-items: center; transition: opacity .12s;
}
.tag-remove:hover { opacity: 1; }
.tags-input {
  border: none; outline: none; font-family: inherit;
  font-size: 12px; color: var(--text);
  background: transparent; min-width: 120px; flex: 1 1; padding: 2px 0;
}
.tags-input::placeholder { color: var(--text-soft); }
.tags-field-wrap { position: relative; margin-bottom: 0; }
.tags-dropdown {
  display: none;
  position: absolute; left: 0; right: 0; top: calc(100% + 4px);
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--ri);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  z-index: 10;
  max-height: 220px;
  overflow-y: auto;
}
.tags-dropdown.open { display: block; }
.tags-dropdown::-webkit-scrollbar { width: 4px; }
.tags-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.dropdown-item {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .1s;
}
.dropdown-item:hover { background: var(--accent-light); color: var(--accent); }
.dropdown-item.selected { color: var(--text-soft); pointer-events: none; }

/* ── App shell — Sidebar ── */
.sidebar {
  width: 240px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  padding: 0 0 32px;
  min-height: 100vh;
}
.brand {
  height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-name { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: -.2px; }

.nav { padding: 0 10px; display: flex; flex-direction: column; gap: 1px; margin-top: 4px; }
.nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 10px;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--ri);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.nav-link:hover { background: rgba(0,0,0,.04); color: var(--text); }
.nav-link.active { background: var(--accent-bg); color: var(--accent); font-weight: 600; }
.nav-icon { opacity: .55; }
.nav-link.active .nav-icon { opacity: 1; color: var(--accent); }

/* ── Avatar button (bottom of sidebar) ── */
.sidebar-footer { margin-top: auto; padding: 0 0 0; }
.avatar-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: background .12s, border-color .12s;
  position: relative; -webkit-user-select: none; -moz-user-select: none; user-select: none;
  margin: 0 8px;
}
.avatar-btn:hover { background: var(--surface-2); border-color: #C8C2B8; }
.avatar-btn.open { background: var(--surface-2); border-color: var(--accent); }
.th-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.th-text { flex: 1 1; min-width: 0; }
.th-name { font-size: 13px; font-weight: 600; white-space: nowrap; }
.th-role { font-size: 11px; color: var(--text-soft); margin-top: 1px; white-space: nowrap; }

/* ── Avatar dropdown menu ── */
.avatar-menu {
  display: none; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--r);
  padding: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1), 0 1px 4px rgba(0,0,0,.06);
  margin: 0 8px 8px;
  overflow: hidden;
}
.avatar-menu.open { display: flex; }
.avatar-menu-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .1s, color .1s;
}
.avatar-menu-item:hover { background: var(--accent-light); color: var(--accent); }
.avatar-menu-item.active { background: var(--accent-bg); color: var(--accent); font-weight: 600; }
.avatar-menu-item.logout:hover { background: #FCEBEB; color: var(--error); }
.avatar-menu-divider { height: 1px; background: var(--border-inner); margin: 3px 8px; }

/* ── App shell — Main area ── */
.main { flex: 1 1; display: flex; flex-direction: column; overflow-y: auto; }
.topbar {
  height: 54px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 48px; gap: 10px; flex-shrink: 0;
}
.topbar-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--border); border-radius: var(--ri);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer;
}
.topbar-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.content { padding: 44px 48px; max-width: 760px; }
.page-title { font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: -.3px; margin-bottom: 32px; }

/* ── Status banners ── */
.trial-banner {
  display: flex; align-items: center; gap: 12px;
  border-radius: var(--ri);
  padding: 12px 16px; margin-bottom: 32px;
  font-size: 13px;
}
.trial-banner.info {
  background: var(--accent-light);
  border: 1px solid rgba(103,91,160,.18);
  color: var(--accent-strong);
}
.trial-banner.warning {
  background: var(--pending-bg);
  border: 1px solid rgba(194,97,15,.2);
  color: var(--pending);
}
.trial-banner svg { flex-shrink: 0; }
.trial-banner strong { font-weight: 600; }
.trial-banner a {
  color: var(--accent); font-weight: 600;
  text-decoration: none; margin-left: auto;
  flex-shrink: 0; font-size: 12px;
}
.trial-banner a:hover { text-decoration: underline; }

/* ── Section blocks ── */
.section { margin-bottom: 32px; }
.section-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 12px; letter-spacing: -.1px; }

/* ── Surface cards (billing, current plan etc.) ── */
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: var(--r);
  padding: 20px 22px;
}

/* ── Toast ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text); color: #fff;
  padding: 10px 18px; border-radius: var(--rb);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Empty state ── */
.empty-state {
  flex: 1 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 32px;
}
.empty-illustration { width: 80px; height: 80px; margin-bottom: 24px; }
.empty-title { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -.1px; }
.empty-sub { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; max-width: 300px; }

/* ── Scrollbars ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-soft); }


/* ============================================================
   LOGIN FLOW — shared rules
   Covers: login-1-login.html, login-2-forgot.html,
           login-3-reset.html
   ============================================================ */

/* ── Forgot password link row (login screen) ── */
.forgot-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
  margin-bottom: 14px;
}
.forgot-link {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color .12s;
}
.forgot-link:hover { color: var(--accent); }

/* ── Account locked banner ── */
.locked-banner {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-radius: var(--ri);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--error);
  margin-bottom: 18px;
  line-height: 1.5;
}
.locked-banner.show { display: flex; }
.locked-banner svg { flex-shrink: 0; margin-top: 1px; }

/* ── Card state transitions (forgot / reset screens) ── */
/* form-state: visible by default, hidden when another state shows */
.form-state { display: flex; flex-direction: column; }
.form-state.hide { display: none; }

/* sent state (forgot screen — after email dispatched) */
.sent-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 4px;
}
.sent-state.show { display: flex; }

/* success / expired states (reset screen) */
.success-state,
.expired-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 4px;
}
.success-state.show { display: flex; }
.expired-state.show { display: flex; }

/* ── State icon (success / expired) ── */
.state-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.state-icon.success {
  background: var(--success-bg);
  border: 1px solid rgba(47,107,74,.18);
  color: var(--success);
}
.state-icon.expired {
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  color: var(--error);
}
.state-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 6px; letter-spacing: -.15px;
}
.state-body {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 24px; max-width: 320px;
}

/* ── Sent icon (forgot screen) ── */
.sent-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--success-bg);
  border: 1px solid rgba(47,107,74,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--success); margin-bottom: 18px;
}
.sent-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 6px; letter-spacing: -.15px;
}
.sent-body {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.sent-body strong { color: var(--text); font-weight: 600; }

/* ── Resend row (forgot screen) ── */
.resend-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@15.5.21_@opentelemetry+api@1.9.1_@playwright+test@1.60.0_@types+node@22.15.18_babel-plug_viawzubdw7oivhdhlep6ekimbq/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/.pnpm/next@15.5.21_@opentelemetry+api@1.9.1_@playwright+test@1.60.0_@types+node@22.15.18_babel-plug_viawzubdw7oivhdhlep6ekimbq/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/login-demo/login-demo-isolation.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
html,
body {
  min-height: 100%;
}

.login-demo-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-x: hidden;
}

.login-demo-shell,
.login-demo-shell button,
.login-demo-shell input,
.login-demo-shell select,
.login-demo-shell textarea {
  line-height: normal;
}

.login-demo-shell .card {
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 36px 36px 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  display: block;
  gap: normal;
}

