/* ============================================================
   AscendQ v2 — auth pages (signup, login, reset)
   ============================================================ */
.auth {
  display: grid;
  place-items: start center;
  padding: 30px 0 60px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
}
.auth-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(221,185,116,0.4);
  background: rgba(221,185,116,0.08);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}
.auth-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.auth h1 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.auth h1 em { color: var(--gold); font-style: italic; }
.auth .lead {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.auth .panel {
  background: rgba(232,228,220,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
}
.auth label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0 0 7px;
  font-weight: 600;
}
.auth label + input { margin-bottom: 14px; }
.auth input {
  width: 100%;
  background: #0F1011;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.auth input:focus { border-color: var(--gold); }
.auth input[readonly] { opacity: 0.65; cursor: not-allowed; }
.auth .hint {
  font-size: 12.5px;
  color: var(--text-sub);
  margin: -8px 0 16px;
  line-height: 1.45;
}
.auth .hint b { color: var(--gold); }
.auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0F1011;
  border: none;
  border-radius: 12px;
  padding: 15px 22px;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  margin-top: 6px;
  transition: transform .12s;
}
.auth-btn em { font-style: italic; }
.auth-btn:hover:not(:disabled) { transform: translateY(-1px); }
.auth-btn:disabled { opacity: .5; cursor: not-allowed; }
.err {
  color: var(--red);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.45;
  min-height: 18px;
}
.alt {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-sub);
}
.alt a { color: var(--gold); text-decoration: none; }
.alt a:hover { text-decoration: underline; }
.loading-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-dim);
}
