/* ============================================================================
   Snapcash — Light fintech theme
   Light backgrounds · dark interactive panels · #5eb3e4 accent · pill buttons
   Class names preserved for compatibility with apply/dashboard/admin/login.
   ========================================================================== */
:root {
  --bg: #ffffff;
  --bg-2: #f4f8fc;
  --bg-3: #eef4fb;
  --panel: #0e1b2b;
  --panel-2: #142234;
  --card: #ffffff;
  --line: rgba(14, 27, 43, 0.09);
  --line-strong: rgba(14, 27, 43, 0.16);
  --line-dark: rgba(148, 190, 228, 0.16);
  --ink: #0e1b2b;
  --ink-soft: #24354a;
  --body: #48586b;
  --muted: #7c8ba0;
  --ink-invert: #f3f8fd;
  --body-invert: #aebdd0;
  --accent: #5eb3e4;
  --accent-hover: #7cc4ee;
  --accent-deep: #3d97cc;
  --accent-ink: #06121f;
  --tint: rgba(94, 179, 228, 0.10);
  --tint-line: rgba(94, 179, 228, 0.28);
  --tint-strong: rgba(94, 179, 228, 0.16);
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(14, 27, 43, 0.05);
  --shadow: 0 18px 50px rgba(14, 27, 43, 0.10);
  --shadow-lg: 0 30px 80px rgba(14, 27, 43, 0.16);
  --shadow-accent: 0 8px 20px rgba(94, 179, 228, 0.35);
  color-scheme: light;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--body); line-height: 1.7; font-size: 16px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { color: var(--ink); letter-spacing: -0.025em; line-height: 1.1; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.35rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
a { color: var(--accent-deep); }
p { color: var(--body); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); z-index: 200; transition: width .1s linear; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.3rem; color: var(--ink); text-decoration: none; letter-spacing: -0.03em; font-family: 'Plus Jakarta Sans', sans-serif; }
.logo-mark { width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(145deg, var(--accent), var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px; box-shadow: 0 6px 16px rgba(94,179,228,0.4); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color .15s ease; padding: 8px 0; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.active { color: var(--accent-deep); font-weight: 600; }
.logo-img { height: 26px; width: auto; display: block; }
.foot-logo-chip { display: inline-flex; background: #fff; padding: 9px 16px; border-radius: 12px; margin-bottom: 16px; }
@media (max-width: 480px) {
  .nav-inner { gap: 10px; padding: 18px 0; }
  .nav-links { gap: 16px; }
  .nav-links a { padding: 10px 0; }
  .nav-links .btn { padding: 11px 20px; font-size: 0.9rem; }
  .logo-img { height: 22px; }
}

.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: none; cursor: pointer; text-decoration: none; text-align: center; font-family: inherit; font-weight: 700; font-size: 0.98rem; padding: 14px 30px; border-radius: 999px; transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease; will-change: transform; }
.btn-blue, .btn-primary { background: linear-gradient(145deg, var(--accent), var(--accent-deep)); color: #fff !important; box-shadow: var(--shadow-accent); }
.btn-blue:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 23px rgba(94,179,228,0.5); }
.btn-blue::after, .btn-primary::after { content: "\2192"; font-size: 1.05em; transition: transform .2s ease; }
.btn-blue:hover::after, .btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,0.6); color: var(--ink) !important; border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep) !important; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-light { background: #fff; color: var(--accent-deep) !important; box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn[aria-disabled="true"], .btn.btn-loading { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.calc .btn::after, .final .btn::after, .btn-light::after { content: none; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--tint); border: 1px solid var(--tint-line); color: var(--accent-deep); font-size: 0.8rem; font-weight: 600; border-radius: 999px; padding: 7px 16px; }
.kicker { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-deep); margin-bottom: 16px; }
.sub { color: var(--body); max-width: 40rem; font-size: 1.06rem; }
section { padding: clamp(64px, 9vw, 108px) 0; position: relative; }
.tinted { background: var(--bg-2); }
.more { display: inline-block; margin-top: 36px; font-weight: 600; color: var(--accent-deep); text-decoration: none; }
.more:hover { color: var(--accent); }

.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); position: relative; }
.hero, main, body { overflow-x: clip; }
.hero h1 { margin-bottom: 22px; }
.hero-sub { margin-bottom: 32px; font-size: 1.14rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.5; z-index: -1; pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(94,179,228,0.4), transparent 70%); top: -120px; right: -100px; }
.blob-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(124,196,238,0.28), transparent 70%); bottom: -140px; left: -120px; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(61,151,204,0.18), transparent 70%); top: 40%; left: 45%; }

.calc { background: linear-gradient(165deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.calc::before { content: ""; position: absolute; width: 240px; height: 240px; background: radial-gradient(circle, rgba(94,179,228,0.22), transparent 70%); top: -80px; right: -80px; pointer-events: none; }
.calc-title { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 24px; position: relative; }
.calc-row-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.calc-row-head label { font-size: 0.92rem; color: var(--body-invert); font-weight: 500; }
.calc-value { font-size: 1.85rem; font-weight: 800; color: var(--ink-invert); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
input[type=range] { width: 100%; height: 34px; cursor: pointer; -webkit-appearance: none; appearance: none; background: transparent; }
input[type=range]::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--accent) var(--fill, 40%), rgba(148,190,228,0.18) var(--fill, 40%)); }
input[type=range]::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(148,190,228,0.18); }
input[type=range]::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--accent); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); margin-top: -9px; box-shadow: 0 4px 12px rgba(0,0,0,0.35); transition: transform .15s ease, box-shadow .15s ease; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(94,179,228,0.18); }
input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); box-shadow: 0 4px 12px rgba(0,0,0,0.35); }
input[type=range]:focus-visible { outline: none; }
input[type=range]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 8px rgba(94,179,228,0.28); }
.calc-minmax { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--muted); margin: 2px 0 22px; }
.calc-quote { background: rgba(94,179,228,0.09); border: 1px solid rgba(94,179,228,0.22); border-radius: 18px; padding: 20px 22px; margin: 6px 0 22px; font-variant-numeric: tabular-nums; position: relative; }
.q-line { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 4px 0; color: var(--body-invert); }
.q-line span:last-child { font-weight: 600; color: var(--ink-invert); font-family: ui-monospace, 'SF Mono', Menlo, monospace; }
.q-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1.5px solid rgba(94,179,228,0.22); margin-top: 14px; padding-top: 14px; }
.q-total .lbl { font-size: 0.9rem; font-weight: 600; color: var(--ink-invert); }
.q-total .amt { font-size: 1.7rem; font-weight: 800; color: var(--accent); }
.calc .btn { width: 100%; }
.calc-fine { margin-top: 15px; text-align: center; font-size: 0.74rem; color: var(--muted); }

.cards { display: grid; gap: 22px; margin-top: 54px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease; transform-style: preserve-3d; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--tint-line); }
.card .num { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--tint); border: 1px solid var(--tint-line); color: var(--accent-deep); font-weight: 800; font-size: 1.05rem; margin-bottom: 18px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.95rem; }

.checklist { list-style: none; padding: 0; margin: 46px 0 0; display: grid; gap: 15px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.checklist li { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 19px 21px; font-size: 0.97rem; color: var(--ink); font-weight: 500; box-shadow: var(--shadow-sm); }
.tick { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; margin-top: 1px; background: linear-gradient(145deg, var(--accent), var(--accent-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; }

.steps-grid { display: grid; gap: 22px; margin-top: 54px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-card .step-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.4rem; font-weight: 800; line-height: 1; color: var(--tint-line); letter-spacing: -0.04em; margin-bottom: 12px; transition: color .25s ease; }
.step-card:hover .step-n { color: var(--accent); }
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 0.94rem; }

.elig-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .elig-grid { grid-template-columns: 1fr; } }
.elig-intro { position: sticky; top: 96px; align-self: start; }
.elig-intro h2 { margin-bottom: 14px; }
#costs-h { margin-bottom: 14px; }
.elig-intro .sub { margin-bottom: 0; }
.elig-intro .btn { margin-top: 30px; }
@media (max-width: 900px) { .elig-intro { position: static; } }
.elig-list { border-top: 1px solid var(--line); }
.elig-row { display: flex; gap: 24px; padding: 30px 4px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.elig-row:hover { background: var(--tint); }
.e-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--tint); border: 1px solid var(--tint-line); color: var(--accent-deep); font-weight: 800; font-size: 0.95rem; font-variant-numeric: tabular-nums; }
.elig-row h3 { margin-bottom: 6px; }
.elig-row p { font-size: 0.95rem; margin: 0; }

.process-section { padding-top: clamp(96px, 12vw, 140px); padding-bottom: clamp(96px, 12vw, 140px); }
.process-section h2 { margin-bottom: 12px; }
.process-section .sub { margin-bottom: 0; }

.rep { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; color: var(--body); box-shadow: var(--shadow-sm); }
.rep h3 { color: var(--ink); margin-bottom: 4px; }
.rep .rep-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.rep table { width: 100%; border-collapse: collapse; font-size: 0.92rem; font-variant-numeric: tabular-nums; }
.rep td { padding: 11px 0; border-bottom: 1px dashed var(--line-strong); }
.rep td:last-child { text-align: right; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-weight: 600; color: var(--ink); }
.rep tr:last-child td { border-bottom: none; padding-top: 16px; font-weight: 700; color: var(--ink); }
.rep tr:last-child td:last-child { color: var(--accent-deep); font-size: 1.2rem; }
.rep .rep-fine { margin-top: 18px; font-size: 0.72rem; color: var(--muted); }

@media (max-width: 640px) {
  #faq { padding-top: 88px; }
}

.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 4px 24px; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: border-color .2s ease, box-shadow .2s ease; overflow: hidden; }
.faq details[open] { border-color: var(--tint-line); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700; color: var(--ink); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent-deep); transition: transform .25s ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: 0 0 20px; font-size: 0.96rem; animation: faqreveal .3s ease; }
@keyframes faqreveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.final { background: linear-gradient(150deg, var(--panel-2), var(--panel)); border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.final::before { content: ""; position: absolute; width: 380px; height: 380px; background: radial-gradient(circle, rgba(94,179,228,0.3), transparent 70%); top: -140px; right: -100px; pointer-events: none; }
.final::after { content: ""; position: absolute; width: 320px; height: 320px; background: radial-gradient(circle, rgba(61,151,204,0.22), transparent 70%); bottom: -160px; left: -80px; pointer-events: none; }
.final h2 { color: var(--ink-invert); margin-bottom: 14px; position: relative; }
.final p { color: var(--body-invert); max-width: 34rem; margin: 0 auto 30px; position: relative; font-size: 1.06rem; }
.final .btn { background: #fff; color: var(--accent-deep) !important; box-shadow: var(--shadow); position: relative; }
.final .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

footer { background: var(--panel); color: var(--body-invert); padding: 72px 0 40px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col .logo { color: var(--ink-invert); margin-bottom: 16px; }
.foot-blurb { font-size: 0.9rem; color: var(--body-invert); max-width: 30rem; }
.foot-col h4 { color: var(--ink-invert); font-size: 0.9rem; margin-bottom: 16px; }
.foot-col a { display: block; color: var(--body-invert); text-decoration: none; font-size: 0.9rem; padding: 6px 0; transition: color .15s ease; }
.foot-col a:hover { color: var(--accent); }
.compliance { font-size: 0.76rem; color: var(--muted); line-height: 1.7; padding-top: 28px; }
.compliance em { font-style: normal; color: var(--body-invert); }

.to-top { position: fixed; bottom: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(145deg, var(--accent), var(--accent-deep)); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-accent); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease, visibility .3s; z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(94,179,228,0.5); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.app-main { max-width: 620px; margin: 0 auto; padding: 60px 22px 96px; }
.app-main.wide { max-width: 900px; }
.alert { display: none; background: rgba(224, 96, 72, 0.08); border: 1px solid rgba(224, 96, 72, 0.3); color: #c0392b; border-radius: 12px; padding: 14px 16px; font-size: 0.88rem; margin: 0 0 18px; }
.alert.ok { background: var(--tint); border-color: var(--tint-line); color: var(--accent-deep); }
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: #fff; color: var(--ink); font-family: inherit; font-size: 0.95rem; transition: border-color .15s ease, box-shadow .15s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--tint); }
.steps { display: flex; gap: 8px; margin-bottom: 26px; }
.step { flex: 1; height: 5px; border-radius: 999px; background: var(--line-strong); transition: background .3s ease; }
.step.on { background: var(--accent); }
.pane { display: none; }
.pane.on { display: block; }
.linkline { text-align: center; margin-top: 18px; font-size: 0.88rem; color: var(--body); }

/* ---------- Auth method toggle (email/password vs WhatsApp) ---------- */
.auth-toggle { display: flex; gap: 8px; background: var(--bg-2); border-radius: 12px; padding: 4px; margin-bottom: 22px; }
.auth-toggle button { flex: 1; border: none; background: transparent; padding: 10px; border-radius: 9px; font-size: 0.9rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: background .15s ease, color .15s ease; }
.auth-toggle button.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- Phone number input with fixed +27 prefix ---------- */
.phone-input-row { display: flex; gap: 10px; }
.phone-prefix { flex-shrink: 0; display: flex; align-items: center; padding: 0 14px; border: 1.5px solid var(--line-strong); border-radius: 12px; background: var(--bg-2); color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.phone-input-row input { flex: 1; }

/* ---------- Six-digit OTP input ---------- */
.otp-boxes { display: flex; gap: 8px; justify-content: center; margin: 6px 0 4px; }
.otp-boxes input { width: 44px; height: 52px; text-align: center; font-size: 1.3rem; font-weight: 700; padding: 0; border: 1.5px solid var(--line-strong); border-radius: 12px; background: #fff; color: var(--ink); font-family: inherit; }
.otp-boxes input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--tint); }
@media (max-width: 400px) { .otp-boxes input { width: 38px; height: 46px; font-size: 1.15rem; } .otp-boxes { gap: 6px; } }

.otp-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--muted); margin: 4px 0 20px; }
.otp-meta button { background: none; border: none; color: var(--accent-deep); font-weight: 600; cursor: pointer; padding: 0; font-size: 0.85rem; }
.otp-meta button:disabled { color: var(--muted); cursor: default; }

/* ---------- Live password requirement checklist ---------- */
.pw-checklist { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 5px; }
.pw-checklist li { font-size: 12.5px; color: var(--muted); padding-left: 20px; position: relative; transition: color .15s ease; }
.pw-checklist li::before { content: '\2713'; position: absolute; left: 0; color: var(--line-strong); font-weight: 700; }
.pw-checklist li[data-ok="true"] { color: #1e8f5a; }
.pw-checklist li[data-ok="true"]::before { color: #1e8f5a; }
.field-err { color: #c0392b; font-size: 0.78rem; margin-top: 5px; display: none; }
.consent { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; font-size: 0.9rem; color: var(--body); cursor: pointer; }
.consent input { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--accent); }

.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 34px; flex-wrap: wrap; }
.dash-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.badge { display: inline-block; padding: 7px 14px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; }
.badge.review { background: rgba(230, 162, 60, 0.14); color: #b9791a; border: 1px solid rgba(230,162,60,0.3); }
.badge.approved { background: rgba(46, 174, 116, 0.13); color: #1e8f5a; border: 1px solid rgba(46,174,116,0.3); }
.badge.declined { background: rgba(224, 96, 72, 0.12); color: #c0392b; border: 1px solid rgba(224,96,72,0.3); }
.badge.neutral { background: var(--tint); color: var(--accent-deep); border: 1px solid var(--tint-line); }
.tl { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin: 26px 0 6px; }
.tl div { text-align: center; }
.tl .bar { height: 5px; border-radius: 4px; background: var(--line-strong); }
.tl .done .bar, .tl .now .bar { background: var(--accent); }
.tl .now .bar { box-shadow: 0 0 12px rgba(94,179,228,0.6); }
.tl span { display: block; font-size: 0.7rem; margin-top: 8px; color: var(--muted); }
.tl .done span, .tl .now span { color: var(--accent-deep); }
.todo { list-style: none; padding: 0; margin: 0; }
.todo li { display: flex; gap: 12px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--body); }
.todo li:last-child { border-bottom: none; }
.todo .t-ic { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; margin-top: 1px; }
.todo .done .t-ic { background: var(--accent); color: #fff; }
.todo .todo-pending .t-ic { background: transparent; border: 1.5px dashed var(--line-strong); color: var(--muted); }
.todo .done { color: var(--ink); }
.todo small { display: block; color: var(--muted); font-size: 0.78rem; }

:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0; z-index: 300; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .blob { display: none; }
}
