/* ═══════════════════════════════════════════════════════════════
   THE TRADER'S MORNING CHRONICLE — Shared Stylesheet
   Newspaper aesthetic · Modern dark web · Gold accents
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --card:        #1a1a1a;
  --card-border: #2a2a2a;
  --gold:        #c9a84c;
  --gold-light:  #e2c070;
  --gold-dark:   #9a7a30;
  --text:        #e8e8e8;
  --text-muted:  #999999;
  --text-dim:    #666666;
  --red:         #c0392b;
  --green:       #27ae60;
  --serif:       Georgia, 'Times New Roman', serif;
  --sans:        -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:        'SF Mono', 'Fira Code', 'Consolas', monospace;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --transition:  0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

p { color: var(--text-muted); line-height: 1.7; }

strong { color: var(--text); font-weight: 600; }
em { color: var(--gold); font-style: normal; }

code {
  font-family: var(--mono);
  background: #1e1e1e;
  color: var(--gold-light);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.875em;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container--wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

/* ── Decorative Rules ─────────────────────────────────────────── */
.rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  margin: 0;
}

.rule--thick {
  height: 3px;
  background: var(--gold);
}

.rule--double {
  border: none;
  height: 6px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0, var(--gold) 1px,
    transparent 1px, transparent 3px,
    var(--gold) 3px, var(--gold) 4px
  );
}

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__logo span { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; display: block; line-height: 1; letter-spacing: 0.15em; text-transform: uppercase; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.8rem !important;
}

.nav__cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.04) 39px, rgba(201,168,76,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.03) 39px, rgba(201,168,76,0.03) 40px);
  pointer-events: none;
}

.hero__date {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--sans);
}

.hero__masthead {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero__masthead em {
  color: var(--gold);
  display: block;
  font-style: italic;
}

.hero__rule {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.hero__subline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__scroll {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.hero__scroll svg { opacity: 0.4; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}
.btn--primary:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); color: var(--gold-light); }

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--text); }

.btn--sm { padding: 9px 18px; font-size: 0.8rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }

.btn--full { width: 100%; justify-content: center; }

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.card:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }

.card--featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  position: relative;
}

.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.card__icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

/* ── Section Headers ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--sans);
}

.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--text);
}

.section-header__deck {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-style: italic;
  font-family: var(--serif);
}

/* ── Grids ────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 32px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat__value {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
}

/* ── Preview (blurred teaser) ─────────────────────────────────── */
.preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.preview__content {
  filter: blur(4px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.preview__gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.98) 100%);
  padding: 32px;
  gap: 12px;
}

.preview__gate-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
}

.preview__gate-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.price { font-family: var(--serif); }
.price__amount { font-size: 3rem; color: var(--text); }
.price__period { font-size: 1rem; color: var(--text-muted); font-family: var(--sans); }
.price__note { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }
.feature-list li.disabled { opacity: 0.35; }
.feature-list li.disabled::before { color: var(--text-dim); }

/* ── Contact Form ─────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--sans);
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-select option { background: var(--card); }

/* ── Accordion ────────────────────────────────────────────────── */
.accordion { border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; }

.accordion-item { border-bottom: 1px solid var(--card-border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1rem;
  text-align: left;
  transition: background var(--transition);
}

.accordion-trigger:hover { background: #1e1e1e; }

.accordion-trigger svg {
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--gold);
}

.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.accordion-content {
  background: var(--dark);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.accordion-content.open {
  max-height: 600px;
  padding: 20px 24px;
}

.accordion-content p { font-size: 0.9rem; }

/* ── Dashboard Specific ───────────────────────────────────────── */
.auth-wall {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  padding: 80px 24px;
}

.auth-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 440px;
  text-align: center;
}

.auth-box__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.auth-box__sub {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.auth-box h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.auth-box > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-dim);
  font-size: 0.78rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--card-border);
}

/* ── Dashboard Layout ─────────────────────────────────────────── */
.dash {
  min-height: 100vh;
  padding-top: 64px;
}

.dash__sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 260px;
  background: var(--dark);
  border-right: 1px solid var(--card-border);
  overflow-y: auto;
  padding: 24px 0;
  z-index: 100;
}

.dash__sidebar-section { padding: 8px 0; }

.dash__sidebar-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px 4px;
}

.dash__sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.dash__sidebar-link:hover { color: var(--gold); background: rgba(201,168,76,0.05); }
.dash__sidebar-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(201,168,76,0.06); }
.dash__sidebar-link svg { opacity: 0.7; flex-shrink: 0; }

.dash__main {
  margin-left: 260px;
  padding: 40px 40px;
}

.dash__page-title {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.dash__page-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ── Watchlist Archive Table ──────────────────────────────────── */
.archive-table {
  width: 100%;
  border-collapse: collapse;
}

.archive-table th {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid var(--card-border);
  background: var(--dark);
}

.archive-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-muted);
  vertical-align: middle;
}

.archive-table tr:hover td { background: rgba(201,168,76,0.03); }

.archive-table .td-date {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
}

.archive-table .td-badge {
  display: inline-flex;
  gap: 4px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge--gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge--green { background: rgba(39,174,96,0.15); color: #2ecc71; border: 1px solid rgba(39,174,96,0.3); }
.badge--red { background: rgba(192,57,43,0.15); color: #e74c3c; border: 1px solid rgba(192,57,43,0.3); }
.badge--gray { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--card-border); }

/* ── Strategy Explainer Tabs ──────────────────────────────────── */
.tabs { margin-bottom: 32px; }

.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--card-border);
  margin-bottom: 32px;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 12px 20px;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover { color: var(--text-muted); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Metric Grid (dashboard cards) ───────────────────────────── */
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }

.metric-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.metric-card__label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.metric-card__value {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-card__delta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.metric-card__delta.up { color: var(--green); }
.metric-card__delta.down { color: var(--red); }

/* ── Notification / Alert ─────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.alert--info { background: rgba(52,152,219,0.1); border: 1px solid rgba(52,152,219,0.25); color: #7ec8e3; }
.alert--warn { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); }
.alert--success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.25); color: #2ecc71; }
.alert--error { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.25); color: #e74c3c; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--card-border);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 280px;
}

.footer__col-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: var(--text-dim); font-size: 0.85rem; }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 700px;
}

.footer__copy { font-size: 0.78rem; color: var(--text-dim); white-space: nowrap; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dash__sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .dash__sidebar.open { transform: translateX(0); }
  .dash__main { margin-left: 0; padding: 24px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .hero__masthead { letter-spacing: -0.02em; }
  .hero__actions { flex-direction: column; align-items: center; }
  .stats-bar__inner { justify-content: center; }
  .stat__divider { display: none; }
  .auth-box { padding: 32px 24px; }
  .footer__bottom { flex-direction: column; }
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-in { animation: fadeInUp 0.6s ease both; }

/* ── Utility ──────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
