@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand-50: #EFF6FF;
  --brand-100: #DBEAFE;
  --brand-200: #BFDBFE;
  --brand-600: #2563EB;
  --brand-700: #1D4ED8;
  --brand-900: #1E3A8A;
  --gray-900: #111827;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --green-600: #16A34A;
  --green-50: #F0FDF4;
  --green-100: #DCFCE7;
  --red-50: #FEF2F2;
  --red-100: #FECACA;
  --red-700: #B91C1C;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 20px;
  height: 58px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1rem; }
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--brand-600); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 0.8rem;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--gray-700); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-600); }
.nav-cta {
  background: var(--brand-600) !important; color: #fff !important;
  padding: 8px 18px; border-radius: 10px; font-weight: 600; font-size: 0.85rem;
  transition: background .15s;
}
.nav-cta:hover { background: var(--brand-700) !important; }
.nav-login { color: var(--gray-600) !important; }
@media (max-width: 640px) { .nav-links .hide-mobile { display: none; } }

/* ── UTILITIES ── */
.badge {
  display: inline-block; background: var(--brand-50); color: var(--brand-600);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 4px 12px; border-radius: 999px;
}
.section { padding: 64px 20px; }
.section-alt { background: var(--gray-50); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.section-white { background: #fff; border-bottom: 1px solid var(--gray-100); }
.container { max-width: 768px; margin: 0 auto; }
.container-lg { max-width: 960px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.025em; margin-top: 10px; }
.section-head p { color: var(--gray-500); font-size: 0.875rem; margin-top: 6px; }

/* ── HERO ── */
.hero { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 80px 20px 0; text-align: center; }
.hero-logo { max-width: 340px; margin: 0 auto 32px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-50); border: 1px solid var(--brand-100);
  color: var(--brand-600); font-size: 0.7rem; font-weight: 600;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; letter-spacing: -.035em; max-width: 680px; margin: 0 auto 20px; }
.hero h1 span { color: var(--brand-600); }
.hero-sub { font-size: 1.05rem; color: var(--gray-500); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.hero-sub strong { color: var(--gray-800); }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px; background: var(--brand-600); color: #fff;
  font-weight: 700; font-size: 0.95rem; border-radius: 12px;
  transition: background .15s, transform .1s; box-shadow: 0 2px 10px rgba(37,99,235,.2);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px; background: var(--gray-50); color: var(--gray-700);
  font-weight: 600; font-size: 0.95rem; border-radius: 12px;
  border: 1px solid var(--gray-200); transition: background .15s; cursor: pointer;
}
.btn-outline:hover { background: var(--gray-100); }
.hero-note { margin-top: 14px; font-size: 0.72rem; color: var(--gray-400); }

/* stats bar */
.stats-bar { background: #fff; border-bottom: 1px solid var(--gray-100); }
.stats-inner { max-width: 700px; margin: 0 auto; padding: 20px 16px; display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }
.stat { padding: 0 12px; border-right: 1px solid var(--gray-100); }
.stat:last-child { border-right: none; }
.stat-val { font-size: 1.4rem; font-weight: 800; color: var(--brand-600); }
.stat-lbl { font-size: 0.68rem; color: var(--gray-500); font-weight: 500; margin-top: 2px; }

/* ── WHY STUDENTS FAIL ── */
.fail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-top: 16px; }
.fail-card { border-radius: 12px; border: 1px solid; padding: 20px; }
.fail-card.red   { background: var(--red-50); border-color: var(--red-100); }
.fail-card.green { background: var(--green-50); border-color: var(--green-100); }
.fail-card.blue  { background: var(--brand-50); border-color: var(--brand-100); }
.fail-card-title { font-weight: 700; font-size: 0.82rem; margin-bottom: 10px; }
.fail-card.red   .fail-card-title { color: var(--red-700); }
.fail-card.green .fail-card-title { color: var(--green-600); }
.fail-card.blue  .fail-card-title { color: var(--brand-700); }
.fail-card ul { list-style: none; }
.fail-card li { font-size: 0.75rem; color: var(--gray-600); display: flex; gap: 6px; margin-bottom: 6px; }
.fail-card li::before { content: "•"; flex-shrink: 0; }

/* ── METHOD STEPS ── */
.method-step { display: flex; gap: 16px; background: #fff; border-radius: 12px; border: 1px solid var(--gray-100); padding: 16px 20px; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.method-step + .method-step { margin-top: 16px; }
.method-step.brand-l { border-left: 4px solid var(--brand-600); }
.method-step.yellow-l { border-left: 4px solid #FACC15; }
.method-step.green-l  { border-left: 4px solid #4ADE80; }
.method-step.purple-l { border-left: 4px solid #C084FC; }
.step-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: var(--gray-500); margin-top: 2px; }
.step-tag { font-size: 0.65rem; font-weight: 600; padding: 2px 8px; border-radius: 999px; }
.tag-brand  { background: var(--brand-50);  color: var(--brand-700); }
.tag-yellow { background: #FEFCE8; color: #A16207; }
.tag-green  { background: var(--green-50); color: #166534; }
.tag-purple { background: #FAF5FF; color: #7E22CE; }
.step-body h3 { font-weight: 700; font-size: 0.875rem; color: var(--gray-900); margin-bottom: 4px; }
.step-body p  { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }
.step-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }

/* ── FRAMEWORKS ── */
.fw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.fw-card { background: var(--gray-50); border-radius: 16px; border: 1px solid var(--gray-100); padding: 24px; }
.fw-card-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.fw-icon { font-size: 1.8rem; }
.fw-card h3 { font-weight: 700; font-size: 0.875rem; }
.fw-card .fw-sub { font-size: 0.72rem; color: var(--brand-600); font-weight: 500; margin-top: 2px; }
.fw-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.65; }
.fw-example { background: #fff; border-radius: 8px; border: 1px solid var(--gray-100); padding: 8px 12px; margin-top: 10px; font-size: 0.72rem; color: var(--gray-400); font-style: italic; }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.how-card { background: #fff; border-radius: 16px; border: 1px solid var(--gray-100); padding: 24px; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.how-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-50); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 10px; }
.how-step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--brand-600); color: #fff; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.how-card h3 { font-weight: 700; font-size: 0.875rem; margin-bottom: 6px; }
.how-card p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.6; }

/* mistake types */
.mistake-box { background: #fff; border-radius: 16px; border: 1px solid var(--gray-100); padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,.04); margin-top: 24px; }
.mistake-box h3 { font-weight: 700; font-size: 0.875rem; text-align: center; margin-bottom: 16px; }
.mistake-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 12px; }
.mistake-item { display: flex; align-items: flex-start; gap: 10px; background: var(--gray-50); border-radius: 10px; border: 1px solid var(--gray-100); padding: 12px; }
.mistake-tag { font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; flex-shrink: 0; margin-top: 1px; }
.mt-red    { background: #FEE2E2; color: #B91C1C; }
.mt-orange { background: #FFEDD5; color: #C2410C; }
.mt-yellow { background: #FEF9C3; color: #A16207; }
.mt-purple { background: #FAF5FF; color: #7E22CE; }
.mistake-item p { font-size: 0.75rem; color: var(--gray-500); line-height: 1.55; }

/* ── CATEGORIES ── */
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 480px) { .cat-grid { grid-template-columns: repeat(4,1fr); } }
.cat-card { background: var(--gray-50); border-radius: 12px; border: 1px solid var(--gray-100); padding: 16px; text-align: center; transition: border-color .15s, background .15s; cursor: pointer; }
.cat-card:hover { border-color: var(--brand-200); background: var(--brand-50); }
.cat-icon { font-size: 1.5rem; margin-bottom: 6px; }
.cat-name { font-size: 0.75rem; font-weight: 600; color: var(--gray-800); line-height: 1.3; }
.cat-count { font-size: 0.68rem; color: var(--gray-400); margin-top: 2px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.plan { background: #fff; border-radius: 16px; border: 1px solid var(--gray-100); padding: 24px; display: flex; flex-direction: column; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.plan.highlighted { border-color: var(--brand-600); box-shadow: 0 0 0 1px var(--brand-600), 0 2px 8px rgba(37,99,235,.1); }
.plan-badge-inline { display: inline-block; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 2px 8px; border-radius: 999px; margin-bottom: 4px; }
.badge-brand { background: var(--brand-600); color: #fff; }
.badge-gray  { background: var(--gray-100); color: var(--gray-600); }
.plan-name { font-weight: 700; font-size: 0.95rem; color: var(--gray-900); }
.plan-price { font-size: 2rem; font-weight: 900; letter-spacing: -.04em; color: var(--gray-900); margin: 6px 0 2px; line-height: 1; }
.plan-period { font-size: 0.78rem; color: var(--gray-400); }
.plan-desc { font-size: 0.78rem; color: var(--gray-500); margin: 8px 0 16px; line-height: 1.55; }
.plan-features { list-style: none; flex: 1; margin-bottom: 20px; }
.plan-features li { display: flex; align-items: flex-start; gap: 7px; font-size: 0.8rem; color: var(--gray-700); margin-bottom: 8px; }
.plan-features li::before { content: "✓"; color: #22C55E; font-weight: 700; flex-shrink: 0; }
.plan-btn { display: block; width: 100%; text-align: center; padding: 10px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all .15s; cursor: pointer; border: none; }
.btn-brand-full { background: var(--brand-600); color: #fff; }
.btn-brand-full:hover { background: var(--brand-700); }
.btn-outline-full { background: var(--gray-50); color: var(--gray-700); border: 1px solid var(--gray-200); }
.btn-outline-full:hover { background: var(--gray-100); }

/* ── BOTTOM CTA ── */
.bottom-cta { padding: 64px 20px; text-align: center; background: #fff; border-bottom: 1px solid var(--gray-100); }
.cta-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--brand-50); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.bottom-cta h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px; }
.bottom-cta p { color: var(--gray-500); font-size: 0.95rem; max-width: 480px; margin: 0 auto 24px; line-height: 1.7; }

/* ── FORM ── */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 10px;
  font-size: 0.875rem; font-family: inherit; color: var(--gray-900);
  transition: border-color .15s, box-shadow .15s; outline: none;
}
.form-input:focus { border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 12px; background: var(--brand-600); color: #fff; font-weight: 700; font-size: 0.9rem; border: none; border-radius: 12px; cursor: pointer; transition: background .15s; }
.form-submit:hover { background: var(--brand-700); }
.form-note { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ── DASHBOARD ── */
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; margin-bottom: 24px; }
.dash-card { background: #fff; border: 1px solid var(--gray-100); border-radius: 16px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,.04); }
.dash-card-label { font-size: 0.7rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.dash-card-value { font-size: 2rem; font-weight: 900; color: var(--gray-900); }
.dash-card-sub { font-size: 0.72rem; color: var(--gray-400); margin-top: 4px; }
.gauge-bar { height: 10px; background: var(--gray-100); border-radius: 999px; overflow: hidden; margin-top: 8px; }
.gauge-fill { height: 100%; border-radius: 999px; }

/* ── QUIZ SETUP ── */
.cat-btn { padding: 8px 14px; border-radius: 8px; font-size: 0.82rem; font-weight: 500; border: 1px solid var(--gray-200); background: #fff; color: var(--gray-600); cursor: pointer; transition: all .15s; }
.cat-btn:hover, .cat-btn.active { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.count-btn { padding: 10px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; border: 1px solid var(--gray-200); background: #fff; color: var(--gray-600); cursor: pointer; transition: all .15s; text-align: center; }
.count-btn:hover, .count-btn.active { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.count-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.session-summary { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: 12px; padding: 14px 16px; }
.session-summary p { font-size: 0.82rem; color: var(--brand-700); }
.session-summary p:first-child { font-weight: 700; font-size: 0.875rem; color: var(--brand-900); margin-bottom: 4px; }

/* ── FOOTER ── */
footer { background: var(--brand-900); color: rgba(255,255,255,.7); padding: 32px 20px; }
.footer-inner { max-width: 960px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { font-weight: 800; font-size: 0.95rem; color: #fff; }
.footer-brand span { display: block; font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 2px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 960px; margin: 20px auto 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,.35); }

/* ── GUARANTEE ── */
.guarantee-box { max-width: 560px; margin: 32px auto 0; background: var(--green-50); border: 1px solid var(--green-100); border-radius: 16px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; }
.guarantee-box h3 { font-size: 0.95rem; font-weight: 700; color: var(--green-600); margin-bottom: 4px; }
.guarantee-box p { font-size: 0.82rem; color: #166534; line-height: 1.6; }

/* ── FAQ ── */
.faq-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 16px 20px; font-size: 0.9rem; font-weight: 600; color: var(--gray-900); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; }
.faq-question:hover { background: var(--gray-50); }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; transition: transform .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--brand-50); color: var(--brand-600); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── TERMS ── */
.terms-section { margin-bottom: 32px; }
.terms-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-100); }
.terms-section p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 10px; }
.terms-section ul { list-style: disc; padding-left: 20px; }
.terms-section li { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 6px; }

/* ── PAGE HEADER ── */
.page-header { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 40px 20px; }
.page-header h1 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.025em; }
.page-header p { color: var(--gray-500); font-size: 0.9rem; margin-top: 6px; }

/* ── APP STORE BADGES ── */
.app-badges { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-top:18px; }
.app-badge {
  display:inline-flex; align-items:center; gap:9px;
  background:#111; color:#fff; border-radius:10px;
  padding:9px 18px; border:1px solid rgba(255,255,255,.12);
  transition:background .15s, transform .1s; text-decoration:none;
}
.app-badge:hover { background:#1a1a1a; transform:translateY(-1px); }
.app-badge svg { width:22px; height:22px; flex-shrink:0; }
.app-badge-text { display:flex; flex-direction:column; line-height:1.25; }
.app-badge-text small { font-size:0.58rem; font-weight:400; opacity:.75; }
.app-badge-text strong { font-size:0.88rem; font-weight:700; white-space:nowrap; }
.footer-app-badges { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.footer-app-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.08); color:rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.14); border-radius:7px;
  padding:5px 11px; font-size:0.72rem; font-weight:600;
  transition:background .15s; text-decoration:none; white-space:nowrap;
}
.footer-app-badge:hover { background:rgba(255,255,255,.16); color:#fff; }
.footer-app-badge svg { width:13px; height:13px; flex-shrink:0; }

/* ── AUTH PAGES ── */
.auth-wrap { min-height: 100vh; background: var(--gray-50); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 20px; padding: 36px 32px; width: 100%; max-width: 420px; box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.auth-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem; margin-bottom: 24px; }
.auth-logo-icon { width: 30px; height: 30px; background: var(--brand-600); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 0.75rem; }
.auth-card h1 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.auth-card .sub { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 24px; }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.divider span { font-size: 0.75rem; color: var(--gray-400); }
.google-btn {
  width: 100%; padding: 11px; border: 1px solid var(--gray-200); border-radius: 10px;
  background: #fff; font-size: 0.875rem; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; transition: background .15s; font-family: inherit;
}
.google-btn:hover { background: var(--gray-50); }
.auth-footer { text-align: center; font-size: 0.8rem; color: var(--gray-500); margin-top: 20px; }
.auth-footer a { color: var(--brand-600); font-weight: 600; }
