/* Supplement to the Mars site stylesheet (style.css). Only adds what the site
   lacks: form inputs, pricing tiers, dashboard rows. Reuses the site's CSS
   variables + components (.soft-card, .btn, .hero-badge), so account pages are
   visually part of the site. Loaded AFTER style.css. */

.account-wrap { padding: 140px 0 90px; position: relative; z-index: 1; }
.acc-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.acc-head .hero-badge { margin-bottom: 18px; }
.acc-head .section-title { margin: 0 0 14px; }
.acc-head .section-subtitle { margin: 0 auto; }

/* ---- forms / auth ---- */
.auth-wrap { display: flex; justify-content: center; }
.auth-card { width: 100%; max-width: 430px; padding: 38px 34px; }
.auth-h { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.auth-sub { color: var(--muted); margin: 0 0 26px; font-size: .98rem; }
.field { margin-bottom: 16px; }
label { display: block; font-size: .82rem; font-weight: 600; color: var(--muted); margin: 0 0 7px; }
input, select {
  width: 100%; padding: 13px 15px; border-radius: 14px; font-family: inherit; font-size: 1rem;
  color: var(--text); background: rgba(255,255,255,.04); border: 1px solid var(--border);
  outline: none; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
input::placeholder { color: #6b5b5b; }
input:focus {
  border-color: var(--primary);
  background: rgba(168,85,247,.06);
  box-shadow: 0 0 0 4px rgba(168,85,247,.12);
}
.auth-alt { text-align: center; color: var(--muted); font-size: .92rem; margin: 20px 0 0; }
.auth-alt a { color: var(--primary-3); font-weight: 600; }

/* ---- notices ---- */
.notice { padding: 12px 15px; border-radius: 13px; font-size: .92rem; margin-bottom: 18px; display: none; }
.notice.show { display: block; }
.notice.err { background: rgba(168,85,247,.10); border: 1px solid rgba(168,85,247,.30); color: var(--primary-3); }
.notice.ok  { background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.28); color: #86efac; }

/* ---- pricing ---- */
.price-product { margin-bottom: 50px; }
.price-product-h { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; flex-wrap: wrap; }
.price-product-h img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 22px rgba(168,85,247,.5); }
.price-product-h h3 { margin: 0; font-size: 1.45rem; font-weight: 800; }
.price-product-h .pt { color: var(--muted); font-size: .95rem; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 18px; }
.tier { position: relative; padding: 30px 26px; display: flex; flex-direction: column; gap: 5px;
  transition: transform .35s var(--ease), border-color .35s var(--ease); }
.tier:hover { transform: translateY(-5px); }
.tier.feat { border-color: rgba(168,85,247,.45);
  background: linear-gradient(180deg, rgba(168,85,247,.09), rgba(255,255,255,.03)); }
.tier .pop { position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: .68rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)); padding: 4px 13px; border-radius: 999px; }
.tier .name { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; }
.tier .price { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; margin: 2px 0; }
.tier .per { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.tier li { font-size: .92rem; color: #d8c9c9; display: flex; gap: 9px; align-items: center; }
.tier li i { color: var(--primary); font-size: .85rem; }
.tier .btn { margin-top: auto; }

/* ---- dashboard ---- */
.dash { display: grid; gap: 20px; }
.card-pad { padding: 28px 30px; }
.lic-card { padding: 26px 30px; }
.lic-card h3 { margin: 0 0 4px; font-size: 1.15rem; font-weight: 800; display: flex; align-items: center; gap: 11px; }
.lic-card .meta { color: var(--muted); font-size: .85rem; margin: 0 0 16px; }
.section-t { font-size: .72rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .7px; margin: 0 0 6px; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.row:last-child { border-bottom: 0; }
.row .k { color: var(--muted); font-size: .9rem; }
.row .v { font-weight: 600; font-size: .92rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem;
  background: rgba(255,255,255,.05); padding: 3px 9px; border-radius: 7px; }
.pill { font-size: .68rem; font-weight: 800; padding: 4px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }
.pill.ok { color: #86efac; background: rgba(74,222,128,.12); }
.pill.bad { color: var(--primary-3); background: rgba(168,85,247,.12); }
.pill.none { color: var(--muted); background: rgba(255,255,255,.06); }
.dash-actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn.sm { padding: 10px 16px; font-size: .85rem; border-radius: 12px; }

@media (max-width: 600px) {
  .account-wrap { padding: 110px 0 70px; }
  .row { flex-direction: column; align-items: flex-start; }
  .row .v { justify-content: flex-start; }
}
