/* account.css — the Stockboard account / sign-in page.
   Reuses the site's tokens, type and .btn styles from styles.css; only the
   account-specific layout lives here. Dark, to match the hero identity. */

.account-body {
  background: var(--deep);
  color: var(--on);
  min-height: 100svh;
}

/* a plain "back to site" link in the nav pill, in place of the homepage menu */
.bar__back {
  font-size: 15px;
  color: var(--head-fg-70);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--on-line);
  transition: background var(--ease), color var(--ease);
}
.bar__back:hover { background: var(--head-hover); color: var(--on); }

.account {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(104px, 16vh, 160px) var(--pad-page) 64px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acct-card {
  background: var(--srf-hi);
  border: 1px solid var(--on-line);
  border-radius: var(--r-card);
  padding: clamp(24px, 5vw, 40px);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}

.acct-loading { color: var(--on-55); font-size: 15px; }

.acct-h {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--on);
}
.acct-sub { margin: 12px 0 24px; color: var(--on-70); font-size: 16px; line-height: 1.5; }
.acct-err { margin-top: 16px; color: var(--up-d); font-size: 14px; }
.acct-note { margin: 16px 0 0; color: var(--on-55); font-size: 13px; line-height: 1.5; }

.acct-wallet { margin-top: 4px; display: grid; gap: 8px; }
.acct-wallet__label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-55);
}
.acct-wallet__addr { font-size: 22px; font-weight: 600; color: var(--on); letter-spacing: -0.01em; }
.acct-wallet__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.acct-signout { margin-top: 24px; align-self: start; }

.acct-fine {
  max-width: 560px;
  margin: 20px auto 0;
  padding: 0 var(--pad-page);
  color: var(--on-55);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.mono { font-family: "JetBrains Mono", monospace; }

/* beta disclosure banner: the account/wallet layer is in testing */
.acct-beta {
  max-width: 560px;
  margin: 0 auto 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid #FF7A3240;
  background: #FF7A320f;
  border-radius: var(--r-card);
  color: var(--on-70);
  font-size: 13px;
  line-height: 1.5;
}
.acct-beta__tag {
  flex: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--up-d);
  border: 1px solid #FF7A3255;
  border-radius: 99px;
  padding: 3px 9px;
}
