/* ============================================================
   BrainBucks — Landing Page & Auth Styles
   ============================================================ */

:root {
  --gold:    #fbbf24;
  --gold-dk: #d97706;
  --navy:    #0f172a;
  --navy2:   #1e293b;
  --navy3:   #334155;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --accent:  #38bdf8;
  --green:   #34d399;
  --purple:  #c084fc;
  --orange:  #fb923c;
  --radius:  14px;
}

.landing-body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Nav ──────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -.5px;
}
.lp-nav-links { display: flex; align-items: center; gap: 16px; }
.lp-nav-link  { color: var(--muted); text-decoration: none; font-size: .95rem; transition: color .2s; }
.lp-nav-link:hover { color: var(--text); }
.lp-nav-name  { color: var(--muted); font-size: .95rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1a0f00;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(251,191,36,.35); }
.lp-btn-glow { box-shadow: 0 4px 20px rgba(251,191,36,.25); }
.lp-btn-glow:hover { box-shadow: 0 8px 36px rgba(251,191,36,.45); }
.lp-btn-lg { font-size: 1.15rem; padding: 16px 38px; border-radius: 12px; }
.lp-btn-full { width: 100%; text-align: center; box-sizing: border-box; }

.lp-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(251,191,36,.5);
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.lp-btn-outline:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.lp-btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-size: .95rem;
  text-decoration: none;
  padding: 13px 16px;
  transition: color .2s;
}
.lp-btn-ghost:hover { color: var(--text); }

.lp-btn-ghost-sm {
  background: none;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: .88rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.lp-btn-ghost-sm:hover { border-color: rgba(255,255,255,.3); color: var(--text); }

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
  padding: 110px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.lp-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}
.lp-hero-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(251,191,36,.14) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }

/* Floating decoration */
.lp-float {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: float 5s ease-in-out infinite;
}
.lp-float-1 { left: 3%; top: 22%; animation-delay: 0s; }
.lp-float-2 { right: 3%; top: 30%; animation-delay: 1.2s; }
.lp-float-3 { left: 5%; bottom: 18%; animation-delay: 2.4s; }
.lp-float-4 { right: 4%; bottom: 22%; animation-delay: 0.7s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.lp-float-card {
  background: rgba(30,41,59,.9);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
}
.lp-float-label { display: block; font-size: .78rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.lp-float-val   { display: block; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lp-float-choices { display: flex; gap: 6px; }
.fc { padding: 5px 10px; border-radius: 7px; font-size: .85rem; font-weight: 700; }
.fc-right { background: rgba(52,211,153,.2); border: 1px solid rgba(52,211,153,.4); color: var(--green); }
.fc-wrong { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: var(--muted); }

.lp-float-reward {
  background: rgba(30,41,59,.9);
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 20px rgba(251,191,36,.1);
  backdrop-filter: blur(8px);
}
.lp-reward-icon { display: block; font-size: 1.8rem; margin-bottom: 4px; }
.lp-reward-text { display: block; font-size: 1rem; font-weight: 800; color: var(--gold); }
.lp-reward-stars{ display: block; font-size: .82rem; color: var(--muted); margin-top: 4px; }

.lp-float-level {
  background: rgba(30,41,59,.9);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .85rem;
  color: var(--muted);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
}
.lp-lvl-badge { background: rgba(52,211,153,.15); border: 1px solid rgba(52,211,153,.3); color: var(--green); border-radius: 6px; padding: 2px 8px; font-weight: 700; font-size: .8rem; align-self: flex-start; }
.lp-lvl-bar   { height: 5px; background: rgba(255,255,255,.08); border-radius: 4px; margin-top: 4px; }
.lp-lvl-fill  { height: 100%; background: linear-gradient(90deg, var(--green), var(--accent)); border-radius: 4px; }

.lp-float-subject-badges {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-sbadge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
}
.math-b { background: rgba(96,165,250,.15); border: 1px solid rgba(96,165,250,.3); color: #93c5fd; }
.read-b { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); color: #6ee7b7; }
.ra-b   { background: rgba(192,132,252,.12); border: 1px solid rgba(192,132,252,.3); color: #d8b4fe; }

.lp-badge {
  display: inline-block;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.25);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.lp-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 22px;
  color: #fff;
  letter-spacing: -1px;
}
.lp-gold { color: var(--gold); }
.lp-shimmer {
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.lp-hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}
.lp-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.lp-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.lp-stat { text-align: center; }
.lp-stat-num   { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.lp-stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }
.lp-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); }

/* ── Proof strip ──────────────────────────────────────────── */
.lp-proof-strip {
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 24px;
  overflow: hidden;
}
.lp-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-proof-item { font-size: .88rem; color: var(--muted); font-weight: 500; }
.lp-proof-dot  { color: rgba(255,255,255,.15); font-size: 1.2rem; }

/* ── Section shared ───────────────────────────────────────── */
.lp-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.lp-section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 12px;
}
.lp-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 52px;
  line-height: 1.2;
  letter-spacing: -.5px;
}
.lp-section-title em { font-style: normal; color: var(--gold); }

/* ── Features ─────────────────────────────────────────────── */
.lp-features { padding: 96px 24px; background: var(--navy2); }
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 20px;
}
.lp-feature-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.lp-feature-card:hover {
  border-color: rgba(251,191,36,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.lp-feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.lp-feature-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.lp-feature-card p  { color: var(--muted); line-height: 1.65; margin: 0; font-size: .93rem; }

/* ── Subjects ─────────────────────────────────────────────── */
.lp-subjects { padding: 96px 24px; }
.lp-subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.lp-subject-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.lp-subject-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.lp-subject-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.math-card::before    { background: linear-gradient(90deg, #60a5fa, #38bdf8); }
.reading-card::before { background: linear-gradient(90deg, var(--green), #6ee7b7); }
.ra-card::before      { background: linear-gradient(90deg, var(--purple), #f0abfc); }

.lp-subject-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lp-subject-emoji  { font-size: 2rem; }
.lp-subject-header h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0; }
.lp-subject-card p { color: var(--muted); font-size: .93rem; line-height: 1.65; margin: 0 0 18px; }
.lp-subject-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.lp-subject-list li { color: var(--muted); font-size: .88rem; padding-left: 20px; position: relative; }
.lp-subject-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.lp-subject-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  letter-spacing: .5px;
}

/* ── How it works ─────────────────────────────────────────── */
.lp-how {
  padding: 96px 24px;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
}
.lp-how-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(56,189,248,.04), transparent),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(251,191,36,.04), transparent);
  pointer-events: none;
}
.lp-steps { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.lp-step  { flex: 1; min-width: 200px; text-align: center; padding: 0 20px; }
.lp-step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1a0f00;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(251,191,36,.3);
}
.lp-step h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.lp-step p  { color: var(--muted); font-size: .92rem; line-height: 1.65; margin: 0; }
.lp-step-arrow { font-size: 2rem; color: rgba(251,191,36,.2); padding-top: 20px; flex-shrink: 0; }

/* ── CTA ──────────────────────────────────────────────────── */
.lp-cta {
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(251,191,36,.1) 0%, transparent 65%);
  pointer-events: none;
}
.lp-cta-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.lp-cta-emoji { font-size: 3rem; margin-bottom: 20px; }
.lp-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -.5px;
}
.lp-cta p  { color: var(--muted); margin: 0 0 36px; font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer { padding: 40px 24px; border-top: 1px solid rgba(255,255,255,.06); }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.lp-footer-tag { color: var(--muted); font-size: .9rem; margin: 0; }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.lp-footer-links a:hover { color: var(--text); }

/* ── Auth pages ───────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(251,191,36,.06), transparent);
}
.auth-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.auth-card-wide { max-width: 560px; }
.auth-title { font-size: 1.9rem; font-weight: 900; color: #fff; margin: 0 0 8px; letter-spacing: -.5px; }
.auth-sub   { color: var(--muted); margin: 0 0 32px; font-size: .95rem; }
.auth-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: .9rem;
}
.auth-form  { display: flex; flex-direction: column; gap: 20px; }
.auth-field { display: flex; flex-direction: column; gap: 7px; }
.auth-field label { font-size: .88rem; font-weight: 600; color: var(--text); }
.auth-hint  { font-weight: 400; color: var(--muted); font-size: .8rem; }
.auth-field input, .auth-select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
}
.auth-field input:focus, .auth-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251,191,36,.12);
}
.auth-field input::placeholder { color: rgba(255,255,255,.2); }
.auth-select option { background: var(--navy2); color: var(--text); }
.auth-switch { text-align: center; color: var(--muted); font-size: .9rem; margin: 20px 0 0; }
.auth-switch a { color: var(--gold); text-decoration: none; font-weight: 700; }
.auth-switch a:hover { text-decoration: underline; }

/* Avatar picker */
.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
  gap: 10px;
}
.avatar-option input { display: none; }
.avatar-emoji {
  display: block;
  font-size: 1.9rem;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  transition: background .15s, border-color .15s, transform .15s;
}
.avatar-option input:checked + .avatar-emoji {
  border-color: var(--gold);
  background: rgba(251,191,36,.12);
  transform: scale(1.1);
}
.avatar-emoji:hover { background: rgba(255,255,255,.09); transform: scale(1.05); }

/* ── Dashboard ────────────────────────────────────────────── */
.dash-page { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.dash-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.dash-title  { font-size: 2rem; font-weight: 900; color: #fff; margin: 0 0 6px; letter-spacing: -.5px; }
.dash-sub    { color: var(--muted); margin: 0; font-size: .95rem; }

.dash-empty {
  text-align: center;
  padding: 80px 24px;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 18px;
}
.dash-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.dash-empty h2   { color: #fff; margin: 0 0 10px; font-size: 1.4rem; }
.dash-empty p    { color: var(--muted); margin: 0 0 24px; }

.dash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.dash-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.dash-card:hover { border-color: rgba(251,191,36,.2); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.dash-card-top { display: flex; align-items: center; gap: 16px; }
.dash-avatar   { font-size: 2.6rem; line-height: 1; }
.dash-name     { font-size: 1.2rem; font-weight: 800; color: #fff; }
.dash-money    { font-size: 1.05rem; color: var(--gold); font-weight: 700; margin-top: 3px; }

.dash-levels { display: flex; flex-direction: column; gap: 10px; }
.dash-level-row { display: flex; align-items: center; gap: 10px; }
.dash-level-label { font-size: .78rem; color: var(--muted); width: 88px; flex-shrink: 0; }
.dash-level-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.dash-level-bar { height: 100%; background: linear-gradient(90deg, #60a5fa, #38bdf8); border-radius: 4px; transition: width .4s; }
.reading-bar    { background: linear-gradient(90deg, var(--green), #6ee7b7); }
.ra-bar         { background: linear-gradient(90deg, var(--purple), #f0abfc); }
.dash-level-val { font-size: .8rem; color: var(--muted); width: 44px; text-align: right; flex-shrink: 0; }

.dash-time-row {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 14px;
  gap: 0;
}
.dash-time-card {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-time-val   { font-size: .95rem; font-weight: 800; color: #fff; }
.dash-time-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.dash-time-divider { width: 1px; height: 28px; background: rgba(255,255,255,.08); flex-shrink: 0; margin: 0 4px; }

.dash-card-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.dash-play-btn { flex: 1; text-align: center; }
.dash-delete-btn {
  background: none;
  border: 1px solid rgba(239,68,68,.25);
  color: rgba(239,68,68,.5);
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: .88rem;
  transition: border-color .2s, color .2s;
}
.dash-delete-btn:hover { border-color: rgba(239,68,68,.6); color: #f87171; }
.dash-packs-btn {
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.25);
  color: var(--gold);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.dash-packs-btn:hover { background: rgba(251,191,36,.2); }

/* Spelling pack UI */
.spelling-banner {
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  font-size: .9rem;
  color: #7dd3fc;
  margin-bottom: 12px;
}
.spelling-question { text-align: center; margin-bottom: 4px; }
.btn-hear-word {
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.3);
  color: #7dd3fc;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 14px;
  transition: background .2s;
}
.btn-hear-word:hover { background: rgba(56,189,248,.22); }
.spelling-choice { font-family: monospace; font-size: 1.05rem; letter-spacing: .5px; }

/* ── New UI elements from game (intake, penalty, redirect) ── */
.intake-banner {
  background: linear-gradient(90deg, rgba(56,189,248,.1), rgba(56,189,248,.04));
  border: 1px solid rgba(56,189,248,.25);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: .88rem;
  color: #7dd3fc;
  text-align: center;
  margin-bottom: 12px;
}
.intake-banner strong { color: #e0f2fe; }
.redirect-hint {
  display: block;
  margin-top: 8px;
  font-size: .87rem;
  color: #fcd34d;
  font-style: italic;
}
.penalty-text { color: #fca5a5; font-weight: 700; margin-left: 6px; }
.cap-note { color: var(--muted); font-size: .87rem; font-style: italic; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-float { display: none; }
  .lp-hero  { min-height: auto; }
}
@media (max-width: 640px) {
  .auth-card   { padding: 32px 20px; }
  .lp-steps    { flex-direction: column; align-items: center; }
  .lp-step-arrow { transform: rotate(90deg); padding: 0; }
  .lp-hero     { padding: 72px 24px 48px; }
  .lp-proof-inner { gap: 10px; }
  .lp-proof-dot { display: none; }
}
