/*
 * Client portal — simplified top-nav layout (no admin sidebar).
 * Requires tokens.css + base.css + components.css first.
 */

.portal-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 26px; background: rgba(7, 7, 7, .92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.portal-header .script { font-size: 20px }
.portal-nav { display: flex; align-items: center; gap: 18px }
.portal-nav a { color: #d7d0c6; text-decoration: none; font-size: 13px }
.portal-nav a:hover, .portal-nav a.active { color: var(--gold2) }

.portal-wrap { max-width: 920px; margin: 0 auto; padding: 32px 26px 60px }
.portal-hero { margin-bottom: 26px }
.portal-hero h1 { margin: 0 0 6px; font-size: 26px }
.portal-hero p { margin: 0; color: var(--muted); font-size: 13px }

.auth-shell { min-height: 100vh; display: grid; place-items: center }
.auth-card { width: min(400px, 92vw) }
.auth-card .script { font-size: 24px; display: block; text-align: center; margin-bottom: 4px }
.auth-card p.sub { text-align: center; color: var(--muted); font-size: 12px; margin: 0 0 20px }
.auth-card .switch { text-align: center; margin-top: 16px; font-size: 12px; color: var(--muted) }
.auth-card .switch a { color: var(--gold2); text-decoration: none }

@media (max-width: 640px) {
  .portal-nav { gap: 12px; flex-wrap: wrap }
}
