/* ============================================================
   NextUp Bill Pay Ledger — Design System
   ============================================================ */

:root {
  --chase-blue: #085eb0;
  --chase-blue-dark: #04275c;
  --chase-blue-darker: #041a3d;
  --chase-blue-light: #e8f1fc;
  --chase-blue-mid: #1477c6;

  --income-green: #17805a;
  --income-green-bg: #e7f6ef;
  --debt-red: #c53030;
  --debt-red-bg: #fbeaea;
  --business-orange: #c9711f;
  --business-orange-bg: #fbeee0;
  --bill-blue: #0b5eb0;
  --bill-blue-bg: #e8f1fc;

  --bg: #f3f6fb;
  --card-bg: #ffffff;
  --border: #e1e7f0;
  --border-strong: #c9d4e4;
  --text: #16202e;
  --text-muted: #5b6b81;
  --text-faint: #8697ac;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15, 35, 64, 0.06);
  --shadow: 0 4px 16px rgba(15, 35, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(8, 30, 61, 0.14);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 14.5px; transition: all .15s ease; white-space: nowrap;
}
.btn-primary { background: var(--chase-blue); color: #fff; }
.btn-primary:hover { background: var(--chase-blue-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--chase-blue); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--chase-blue); background: var(--chase-blue-light); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; }
.btn-ghost:hover { background: rgba(8,94,176,0.08); color: var(--chase-blue); }
.btn-danger { background: #fff; color: var(--debt-red); border-color: #f0c4c4; }
.btn-danger:hover { background: var(--debt-red-bg); }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ============================================================
   Landing / marketing pages
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--chase-blue-dark); white-space: nowrap; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--chase-blue), var(--chase-blue-darker));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(4,26,61,0.25);
}
.brand-mark svg { width: 60%; height: 60%; }
.brand-mark .tick { animation: tickPulse 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes tickPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark .tick { animation: none; }
}
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 600; color: var(--text-muted); }
.nav-links a:hover { color: var(--chase-blue); }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none; width: 38px; height: 38px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border-strong); border-radius: 8px; font-size: 18px; color: var(--chase-blue-dark);
}

.hero { padding: 88px 24px 60px; background: radial-gradient(1200px 500px at 50% -10%, var(--chase-blue-light), transparent); position: relative; overflow: hidden; }
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.28; z-index: 0; pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite;
}
.hero-blob.b1 { width: 360px; height: 360px; background: var(--chase-blue); top: -100px; left: -80px; }
.hero-blob.b2 { width: 300px; height: 300px; background: var(--income-green); top: 10%; right: -100px; animation-delay: -5s; }
.hero-blob.b3 { width: 240px; height: 240px; background: var(--business-orange); bottom: -80px; left: 30%; animation-delay: -10s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -24px) scale(1.1); }
  66% { transform: translate(-24px, 20px) scale(0.94); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob, .hero-mock, .mock-bar-fill { animation: none !important; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
  background: var(--chase-blue-light); color: var(--chase-blue-dark); font-size: 13px; font-weight: 700; margin-bottom: 22px;
}
.hero h1 { font-size: 48px; letter-spacing: -0.02em; font-weight: 800; color: var(--chase-blue-darker); }
.hero h1 span { color: var(--chase-blue); }
.hero p.lead { margin-top: 18px; font-size: 18px; color: var(--text-muted); line-height: 1.6; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--text-faint); }

.hero-mock {
  max-width: 980px; margin: 56px auto 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: relative; z-index: 1;
  animation: mockFloat 7s ease-in-out infinite;
}
@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mock-bar { background: var(--chase-blue-darker); padding: 12px 18px; display: flex; gap: 6px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }

.mock-blur { background: #fff; filter: blur(3.5px); user-select: none; }
.mock-peek-badge {
  position: absolute; inset: 0; top: 44px; display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.mock-peek-badge span {
  background: rgba(4,26,61,0.88); color: #fff; padding: 11px 22px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  box-shadow: var(--shadow-lg); white-space: nowrap;
}

.mock-body { padding: 28px 28px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mock-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.mock-card .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-faint); font-weight: 700; }
.mock-card .val { font-size: 22px; font-weight: 800; margin-top: 6px; }
.mock-card.green .val { color: var(--income-green); }
.mock-card.red .val { color: var(--debt-red); }
.mock-card.orange .val { color: var(--business-orange); }
.mock-card.blue .val { color: var(--chase-blue); }

.mock-panels { padding: 20px 28px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mock-panel { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.mock-panel-title { font-size: 12.5px; font-weight: 700; color: var(--text-muted); margin-bottom: 12px; }

.mock-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.mock-calendar span { aspect-ratio: 1; border-radius: 5px; background: var(--bg); position: relative; }
.mock-calendar span.d-bill::after,
.mock-calendar span.d-income::after,
.mock-calendar span.d-debt::after {
  content: ""; position: absolute; inset: 3px; border-radius: 3px;
}
.mock-calendar span.d-bill::after { background: var(--bill-blue); }
.mock-calendar span.d-income::after { background: var(--income-green); }
.mock-calendar span.d-debt::after { background: var(--debt-red); }

.mock-debt-row { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 10px; }
.mock-debt-row:first-of-type { margin-top: 2px; }
.mock-debt-row span { width: 62px; flex-shrink: 0; }
.mock-bar-track { flex: 1; height: 8px; border-radius: 5px; background: var(--bg); overflow: hidden; }
.mock-bar-fill {
  height: 100%; border-radius: 5px; width: 0; background: linear-gradient(90deg, var(--chase-blue), var(--income-green));
  animation: growBar 1.6s ease-out forwards;
}
@keyframes growBar { from { width: 0; } to { width: var(--pct); } }

.section { padding: 72px 24px; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--chase-blue-darker); letter-spacing: -0.01em; }
.section-head p { margin-top: 12px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }

.feature-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--chase-blue-light); color: var(--chase-blue); font-size: 19px; margin-bottom: 14px;
  transition: transform .2s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }
.feature-card h3 { font-size: 16.5px; font-weight: 700; }
.feature-card p { margin-top: 8px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }

.how-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.how-step .num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--chase-blue-dark); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 15px;
}
.how-step h4 { font-size: 15.5px; font-weight: 700; }
.how-step p { margin-top: 6px; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

.pricing-wrap { display: flex; justify-content: center; }
.price-card {
  background: linear-gradient(180deg, #fff, #fbfdff); border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 40px; max-width: 400px; width: 100%; text-align: center; box-shadow: var(--shadow);
}
.price-tag { font-size: 46px; font-weight: 800; color: var(--chase-blue-darker); }
.price-tag span { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.trial-badge {
  display: inline-block; margin-top: 10px; padding: 5px 14px; border-radius: 999px;
  background: rgba(23,138,84,0.12); color: var(--income-green); font-weight: 700; font-size: 13px;
}
.price-list { margin: 24px 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
.price-list li::before { content: "✓"; color: var(--income-green); font-weight: 800; }

.footer { border-top: 1px solid var(--border); padding: 32px 24px; color: var(--text-faint); font-size: 13px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-legal { width: 100%; font-size: 12px; line-height: 1.6; color: var(--text-faint); }
.footer-legal a { color: inherit; text-decoration: underline; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- sticky nav scrolled state ---------- */
.nav.scrolled { box-shadow: 0 2px 14px rgba(8,30,61,0.08); background: rgba(255,255,255,0.97); }

/* ---------- trust bar ---------- */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; padding: 22px 24px; }
.trust-bar-inner {
  max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap; text-align: center;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); }
.trust-item .ic { font-size: 17px; color: var(--chase-blue); }

/* ---------- inline SVG icon sizing ---------- */
.ic svg, .feature-icon svg, .mock-panel-title svg, .mock-peek-badge svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; stroke: currentColor; flex-shrink: 0; }
.feature-icon svg { width: 20px; height: 20px; vertical-align: middle; }
.mock-panel-title svg, .mock-peek-badge svg { margin-right: 5px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; text-align: left; font-size: 15.5px; font-weight: 700;
  color: var(--chase-blue-darker); cursor: pointer;
}
.faq-q .chev { font-size: 14px; color: var(--text-faint); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px; font-size: 14.5px; color: var(--text-muted); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 22px 20px; }

/* ---------- closing CTA banner ---------- */
.cta-banner {
  margin: 0 24px 72px; max-width: 1100px; margin-left: auto; margin-right: auto;
  background: linear-gradient(135deg, var(--chase-blue-darker), var(--chase-blue) 75%);
  border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -0.01em; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-top: 12px; font-size: 15.5px; }
.cta-banner .hero-actions { margin-top: 26px; }
.cta-banner .btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   Auth / checkout pages
   ============================================================ */
.auth-shell { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 40px 20px; background: linear-gradient(160deg, var(--chase-blue-darker), var(--chase-blue) 65%); }
.auth-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; width: 100%; max-width: 420px; }
.auth-legal-links { text-align: center; font-size: 12.5px; }
.auth-legal-links a { color: rgba(255,255,255,0.75); }
.auth-legal-links a:hover { color: #fff; }
.auth-terms-note { text-align: center; margin-top: 14px; font-size: 12px; color: var(--text-faint); line-height: 1.5; }
.auth-card.wide { max-width: 520px; }
.auth-card.checkout-card { max-width: 560px; padding: 40px 40px 32px; }

#checkoutEl { margin-top: 4px; }
.checkout-loading { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 14px; }
.auth-brand { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 22px; }
.auth-card h1 { font-size: 22px; font-weight: 800; text-align: center; color: var(--chase-blue-darker); }
.auth-card p.sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 6px; }

.field { margin-top: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-size: 14.5px; color: var(--text); background: #fbfcfe; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--chase-blue); box-shadow: 0 0 0 3px rgba(8,94,176,0.12); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-hint { font-size: 12px; color: var(--text-faint); margin-top: 5px; }
.form-error { background: var(--debt-red-bg); color: var(--debt-red); border-radius: var(--radius-sm); padding: 10px 13px; font-size: 13.5px; margin-top: 16px; display: none; }
.form-error.show { display: block; }
.form-success { background: var(--income-green-bg); color: var(--income-green); border-radius: var(--radius-sm); padding: 10px 13px; font-size: 13.5px; margin-top: 16px; display: none; }
.form-success.show { display: block; }

.auth-actions { margin-top: 22px; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--text-muted); }
.auth-divider { display: flex; align-items: center; gap: 10px; margin: 20px 0; color: var(--text-faint); font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.plan-summary { background: var(--chase-blue-light); border-radius: var(--radius); padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.plan-summary .name { font-weight: 700; font-size: 14.5px; color: var(--chase-blue-darker); }
.plan-summary .sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.plan-summary .amt { font-size: 24px; font-weight: 800; color: var(--chase-blue-dark); }

.card-icons { display: flex; gap: 6px; }
.card-icons span { font-size: 11px; padding: 3px 7px; border: 1px solid var(--border-strong); border-radius: 5px; color: var(--text-faint); font-weight: 700; }
.secure-note { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-faint); margin-top: 16px; justify-content: center; }

/* ============================================================
   Dashboard shell
   ============================================================ */
.app-shell { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px; flex-shrink: 0; background: var(--chase-blue-darker); color: #fff;
  display: flex; flex-direction: column; padding: 20px 14px; position: sticky; top: 0; height: 100vh;
}
.sidebar .brand { color: #fff; padding: 8px 10px 22px; }
.side-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.side-link {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.72); transition: all .15s;
}
.side-link .ic { width: 18px; text-align: center; font-size: 15px; }
.side-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.side-link.active { background: var(--chase-blue); color: #fff; box-shadow: var(--shadow-sm); }
.side-footer { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; margin-top: 14px; }
.side-user { display: flex; align-items: center; gap: 10px; padding: 8px 10px; font-size: 13px; color: rgba(255,255,255,0.8); }
.side-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--chase-blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }

.main {
  flex: 1; min-width: 0; padding: 26px 32px 60px;
}
.main-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 14px; }
.main-header h1 { font-size: 24px; font-weight: 800; color: var(--chase-blue-darker); }
.main-header .sub { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.header-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.tabpage { display: none; }
.tabpage.active { display: block; animation: fadeIn .15s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ---------- summary cards ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat-grid-3 { grid-template-columns: repeat(3, 1fr); }
.stat-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.stat-card .lbl { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); font-weight: 700; }
.stat-card .val { font-size: 25px; font-weight: 800; margin-top: 8px; color: var(--text); }
.stat-card .note { font-size: 12px; color: var(--text-faint); margin-top: 4px; }
.stat-card.positive .val { color: var(--income-green); }
.stat-card.negative .val { color: var(--debt-red); }
.stat-card.accent { border-color: rgba(8,94,176,0.25); background: linear-gradient(180deg, #fff, var(--chase-blue-light)); }

.panel-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; }
@media (max-width: 1000px) { .panel-grid { grid-template-columns: 1fr; } .stat-grid { grid-template-columns: repeat(2,1fr); } }

.card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; }
.card-head h3 { font-size: 15.5px; font-weight: 700; }
.card-head .sub { font-size: 12.5px; color: var(--text-faint); }

/* ---------- tables ---------- */
.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-faint);
  padding: 8px 10px; border-bottom: 1px solid var(--border); font-weight: 700;
}
.table td { padding: 9px 10px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #fafcff; }
.table input.cell-input {
  width: 100%; border: 1px solid transparent; background: transparent; padding: 6px 8px; border-radius: 6px;
  font-size: 14px; color: var(--text); font-family: inherit;
}
.table input.cell-input:hover { border-color: var(--border-strong); }
.table input.cell-input:focus { outline: none; border-color: var(--chase-blue); background: #fff; box-shadow: 0 0 0 2px rgba(8,94,176,0.12); }
.table select.cell-input { width: auto; border: 1px solid var(--border-strong); background: #fff; padding: 5px 6px; border-radius: 6px; font-size: 13px; }
.table .amt-cell input { text-align: right; font-weight: 700; }
.table .row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.icon-btn {
  width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border); background: #fff; color: var(--text-faint);
  display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .15s;
}
.icon-btn:hover { color: var(--debt-red); border-color: #f0c4c4; background: var(--debt-red-bg); }
.table-wrap { overflow-x: auto; }

/* ---------- Trends tab — animated wheel + insight cards ---------- */
.trend-hero {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
}
.trend-wheel-wrap { position: relative; width: 240px; height: 240px; flex-shrink: 0; animation: trendPop .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes trendPop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.trend-wheel-center {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
}
.trend-wheel-total { font-size: 26px; font-weight: 800; color: var(--text); }
.trend-wheel-label { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.trend-legend { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 200px; }
.trend-legend-row { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: 0; animation: trendFadeIn .4s ease forwards; }
.trend-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.trend-legend-name { flex: 1; font-weight: 600; }
.trend-legend-amt { font-weight: 700; color: var(--text-muted); }
@keyframes trendFadeIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: translateX(0); } }
.trend-mini-ring-wrap { position: relative; width: 84px; height: 84px; flex-shrink: 0; }
.trend-mini-ring-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.trend-change-row, .trend-tip-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px;
  opacity: 0; animation: trendFadeIn .45s ease forwards;
}
.trend-change-row:last-child, .trend-tip-row:last-child { border-bottom: none; }
.trend-change-icon, .trend-tip-icon {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px;
}
.trend-change-icon.up { background: var(--income-green-bg); color: var(--income-green); }
.trend-change-icon.down { background: var(--debt-red-bg); color: var(--debt-red); }
.trend-tip-icon { background: var(--chase-blue-light); color: var(--chase-blue); }
@media (max-width: 480px) {
  .trend-hero { flex-direction: column; }
  .trend-wheel-wrap { width: 200px; height: 200px; }
}

.pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.pill-bill { background: var(--bill-blue-bg); color: var(--bill-blue); }
.pill-debt { background: var(--debt-red-bg); color: var(--debt-red); }
.pill-business { background: var(--business-orange-bg); color: var(--business-orange); }
.pill-income { background: var(--income-green-bg); color: var(--income-green); }
.pill-active { background: var(--income-green-bg); color: var(--income-green); }
.pill-pending { background: #fff6e0; color: #a5710a; }
.pill-manual { background: #f1eefc; color: #6b3fc7; }
.pill-paused { background: #eef0f4; color: var(--text-faint); }

.section-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--text-faint); margin: 22px 0 10px; }

/* ---------- forms inline ---------- */
.inline-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; margin-top: 12px; padding-top: 14px; border-top: 1px dashed var(--border); }
.inline-form .field { margin-top: 0; min-width: 130px; flex: 1; }
.inline-form .field.grow-2 { flex: 2; }
.inline-form label { font-size: 11px; }

/* ---------- debt cards ---------- */
.debt-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; background: #fff; }
.debt-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.debt-rank { width: 26px; height: 26px; border-radius: 50%; background: var(--chase-blue-light); color: var(--chase-blue-dark); font-weight: 800; font-size: 12.5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.debt-name-row { display: flex; align-items: center; gap: 10px; }
.debt-balance { font-size: 19px; font-weight: 800; }
.progress-track { height: 8px; border-radius: 6px; background: var(--border); overflow: hidden; margin-top: 12px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--chase-blue), var(--income-green)); border-radius: 6px; transition: width .3s ease; }
.debt-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.debt-meta-grid .field { margin-top: 0; }
.debt-meta-grid label { font-size: 10.5px; }
.debt-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; gap: 8px; }
.debt-foot strong { color: var(--chase-blue-dark); }
@media (max-width: 900px) { .debt-meta-grid { grid-template-columns: repeat(2,1fr); } }
.debt-card-header { cursor: pointer; }
.debt-card-header .chev { color: var(--text-faint); transition: transform .25s ease; flex-shrink: 0; }
.debt-card.open .debt-card-header .chev { transform: rotate(180deg); }
.debt-card-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }

/* ---------- calendar ---------- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.cal-nav { display: flex; align-items: center; gap: 10px; }
.cal-nav .month-label { font-size: 18px; font-weight: 800; min-width: 190px; text-align: center; color: var(--chase-blue-darker); }
.cal-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); }
.cal-legend .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; }
.cal-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--border-strong);
  font-size: 12.5px; font-weight: 600; color: var(--text-muted); background: #fff;
}
.filter-chip input { accent-color: var(--chase-blue); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-dow { text-align: center; font-size: 11px; font-weight: 800; color: var(--text-faint); text-transform: uppercase; padding-bottom: 6px; }
.cal-cell {
  min-height: 108px; border: 1px solid var(--border); border-radius: 10px; padding: 8px; background: #fff;
  display: flex; flex-direction: column; gap: 4px; cursor: pointer; transition: box-shadow .15s, border-color .15s;
}
.cal-cell:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.cal-cell.empty { background: transparent; border-color: transparent; cursor: default; }
.cal-cell.today { border-color: var(--chase-blue); box-shadow: 0 0 0 2px rgba(8,94,176,0.14); }
.cal-date { font-size: 12.5px; font-weight: 700; color: var(--text-muted); }
.cal-cell.today .cal-date { color: var(--chase-blue); }
.cal-chips { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.cal-chip {
  font-size: 10.5px; padding: 2px 6px; border-radius: 5px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border-left: 3px solid transparent;
}
.cal-chip.bill { background: var(--bill-blue-bg); color: var(--bill-blue); border-color: var(--bill-blue); }
.cal-chip.debt { background: var(--debt-red-bg); color: var(--debt-red); border-color: var(--debt-red); }
.cal-chip.income, .cal-chip.business-income { background: var(--income-green-bg); color: var(--income-green); border-color: var(--income-green); }
.cal-chip.business-expense { background: var(--business-orange-bg); color: var(--business-orange); border-color: var(--business-orange); }
.cal-more { font-size: 10px; color: var(--text-faint); font-weight: 700; }
.cal-day-total { font-size: 10px; font-weight: 700; color: var(--text-faint); margin-top: auto; padding-top: 2px; }
.cal-day-net { display: none; }
.cal-day-dots { display: none; }

/* ---------- day detail modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(8, 20, 40, 0.5); display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 440px; width: 100%; max-height: 84vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); padding: 24px;
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.modal-head h3 { font-size: 17px; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--text-faint); padding: 4px; }
.modal-item { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.modal-item:last-child { border-bottom: none; }
.modal-item .name { font-size: 14px; font-weight: 600; }
.modal-item .amt { font-weight: 800; font-size: 14.5px; }
.modal-item.income .amt { color: var(--income-green); }
.modal-item.debt .amt { color: var(--debt-red); }
.modal-item.business-expense .amt { color: var(--business-orange); }
.modal-total { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--border); font-weight: 800; }

/* ---------- transfer / snowball highlight boxes ---------- */
.highlight-box { background: var(--chase-blue-light); border: 1px solid rgba(8,94,176,0.2); border-radius: var(--radius); padding: 16px 18px; }
.highlight-box .big { font-size: 28px; font-weight: 800; color: var(--chase-blue-dark); }
.highlight-box .lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.freq-toggle { display: flex; gap: 6px; margin-top: 10px; }
.freq-toggle button {
  flex: 1; padding: 7px; border-radius: 8px; border: 1px solid var(--border-strong); background: #fff;
  font-size: 12.5px; font-weight: 700; color: var(--text-muted);
}
.freq-toggle button.active { background: var(--chase-blue); border-color: var(--chase-blue); color: #fff; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--text-faint); }
.empty-state .ic { font-size: 30px; margin-bottom: 10px; }

.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--chase-blue-darker); color: #fff; padding: 12px 18px;
  border-radius: 10px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 200;
  opacity: 0; transform: translateY(10px); transition: all .2s ease; pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }

.pwa-install-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  background: var(--chase-blue-darker); color: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px); transition: all .25s ease; pointer-events: none;
}
.pwa-install-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.pwa-install-inner { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; max-width: 640px; margin: 0 auto; }
.pwa-install-icon { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.pwa-install-icon svg { width: 18px; height: 18px; }
.pwa-install-text { flex: 1; font-size: 13px; line-height: 1.4; }
.pwa-install-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.pwa-install-dismiss { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1; cursor: pointer; padding: 4px 6px; }
.pwa-install-dismiss:hover { color: #fff; }
@media (max-width: 640px) { .pwa-install-inner { flex-wrap: wrap; } .pwa-install-text { flex-basis: 100%; order: 1; } .pwa-install-actions { order: 2; margin-left: 44px; } }

/* ============================================================
   Mobile — landing page nav
   ============================================================ */
@media (max-width: 760px) {
  .nav-toggle { display: flex; position: relative; z-index: 46; }
  .nav-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff;
    padding: 84px 20px 24px; flex-direction: column; gap: 16px; overflow-y: auto; z-index: 45;
  }
  .nav-menu.open { display: flex; }
  .nav.menu-open { backdrop-filter: none; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 18px; font-size: 17px; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 18px 40px; }
  .hero h1 { font-size: 30px; }
  .hero p.lead { font-size: 16px; }
  .section { padding: 48px 18px; }
  .section-head h2 { font-size: 26px; }
  .price-card { padding: 28px 20px; }
  .price-tag { font-size: 38px; }
  .mock-body { grid-template-columns: 1fr 1fr; padding: 20px 20px 0; }
  .mock-panels { grid-template-columns: 1fr; padding: 16px 20px 20px; }
  .mock-peek-badge span { font-size: 12px; padding: 9px 16px; white-space: normal; text-align: center; }
  .auth-card.checkout-card { padding: 28px 22px; }
}

@media (max-width: 860px) and (min-width: 601px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Mobile — dashboard app shell
   ============================================================ */
.mobile-topbar { display: none; }

.sidebar-toggle {
  display: none; width: 34px; height: 34px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06); color: #fff; align-items: center; justify-content: center; cursor: pointer;
}
.sidebar-toggle svg { width: 19px; height: 19px; stroke: currentColor; display: block; }
.sidebar-backdrop { display: none; }

@media (max-width: 860px) {
  .app-shell { flex-direction: column; min-height: 0; }

  .mobile-topbar {
    display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 60;
    background: var(--chase-blue-darker); color: #fff; padding: 12px 16px;
  }
  .mobile-topbar { gap: 12px; }
  .mobile-topbar .brand { color: #fff; margin: 0; }
  .mobile-topbar-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .mobile-topbar .avatar-display { width: 30px; height: 30px; }
  .mobile-topbar .logout-trigger {
    width: 34px; height: 34px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.06);
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px;
  }
  .sidebar-toggle { display: flex; }

  .sidebar-backdrop {
    display: block; position: fixed; inset: 0; z-index: 56; background: rgba(4,26,61,0.45);
    opacity: 0; pointer-events: none; transition: opacity .2s ease;
  }
  .sidebar-backdrop.show { opacity: 1; pointer-events: auto; }

  .sidebar {
    width: 100%; height: auto; max-height: calc(100vh - 60px); position: fixed; left: 0; right: 0; top: 60px; bottom: auto; z-index: 57;
    flex-direction: column; overflow-y: auto; padding: 10px 14px 14px; box-shadow: 0 12px 24px rgba(4,26,61,0.3);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease;
  }
  .sidebar.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .side-nav { flex-direction: column; gap: 3px; }
  .side-link { flex-direction: row; gap: 11px; padding: 11px 12px; font-size: 14.5px; white-space: normal; text-align: left; }
  .side-link .ic { width: 18px; font-size: 17px; }
  .side-footer { display: block; }
  .sidebar .brand { display: none; }

  .main { padding: 18px 16px 32px; flex: none; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .how-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .mock-body { grid-template-columns: 1fr 1fr; }
  .icon-btn { width: 34px; height: 34px; }
  .main-header h1 { font-size: 20px; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .auth-card, .auth-card.checkout-card { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .debt-card { padding: 14px; }
  .table td, .table th { padding: 8px; }
  .inline-form { gap: 12px; }
  .inline-form .field, .inline-form .field.grow-2 { flex: 1 1 100%; min-width: 0; }
}

@media (max-width: 700px) {
  /* No horizontal swipe anywhere: tables shrink and wrap instead of scrolling. */
  .table-wrap { overflow-x: visible; }
  .table { min-width: 0; table-layout: fixed; }
  .table th, .table td { padding: 7px 6px; font-size: 12.5px; white-space: normal; word-break: break-word; }
  .table th:first-child, .table td:first-child { min-width: 0; }
  .table select.cell-input { width: 100%; font-size: 12px; padding: 4px; }
  .table .row-actions { justify-content: flex-start; }
}

/* ---------- calendar (mobile) ---------- */
@media (max-width: 640px) {
  .cal-toolbar { flex-direction: column; align-items: stretch; }
  .cal-nav { justify-content: space-between; }
  .cal-nav .month-label { min-width: 0; font-size: 15px; }
  .cal-filters { justify-content: center; }
  .cal-grid { gap: 4px; }
  .cal-cell { min-height: 52px; padding: 4px; border-radius: 8px; display: flex; flex-direction: column; align-items: flex-start; }
  .cal-date { font-size: 10.5px; }
  .cal-chips, .cal-more, .cal-day-total { display: none; }
  .cal-day-net {
    display: block; font-size: 11px; font-weight: 800; margin-top: auto; line-height: 1.1;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
  }
  .cal-day-net.pos { color: var(--income-green); }
  .cal-day-net.neg { color: var(--debt-red); }
  .cal-day-dots { display: flex; gap: 2px; margin-top: 2px; flex-wrap: wrap; }
  .cal-dot-mini { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
  .cal-dot-mini.bill { background: var(--bill-blue); }
  .cal-dot-mini.debt { background: var(--debt-red); }
  .cal-dot-mini.income, .cal-dot-mini.business-income { background: var(--income-green); }
  .cal-dot-mini.business-expense { background: var(--business-orange); }
}

@media (max-width: 380px) {
  .cal-cell { min-height: 46px; }
  .cal-day-net { font-size: 10px; }
}

/* ---------- legal pages ---------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-wrap .updated { color: var(--text-faint); font-size: 13px; margin-top: 6px; }
.legal-wrap h1 { font-size: 32px; font-weight: 800; color: var(--chase-blue-darker); letter-spacing: -0.01em; }
.legal-wrap h2 { font-size: 19px; font-weight: 700; color: var(--chase-blue-darker); margin-top: 40px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-top: 12px; }
.legal-wrap ul, .legal-wrap ol { margin-top: 12px; padding-left: 22px; }
.legal-wrap li { margin-top: 6px; }
.legal-wrap a { color: var(--chase-blue); font-weight: 600; }
.legal-notice { margin-top: 28px; padding: 14px 16px; background: var(--chase-blue-light); border: 1px solid var(--border); border-radius: var(--radius); font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ---------- demo mode banner + guided tour ---------- */
.demo-banner {
  background: linear-gradient(90deg, var(--chase-blue-darker), var(--chase-blue));
  color: #fff; padding: 10px 18px; display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; font-size: 13.5px; font-weight: 600; text-align: center;
}
.demo-banner .tag {
  background: var(--income-green); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
}
.demo-banner .btn { padding: 6px 12px; font-size: 12.5px; }
.demo-banner .btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.demo-banner .btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: #fff; }
.demo-banner .btn-primary { background: var(--income-green); border-color: var(--income-green); }
.demo-banner .btn-primary:hover { background: #14724f; }
@media (max-width: 640px) {
  .demo-banner { padding: 9px 12px; font-size: 12.5px; }
}

.tour-highlight {
  position: relative; z-index: 61;
  box-shadow: 0 0 0 3px rgba(52,224,161,0.9), 0 0 0 7px rgba(52,224,161,0.28);
  border-radius: 8px;
}
.tour-tooltip {
  position: fixed; z-index: 500; width: 272px; max-width: calc(100vw - 24px);
  background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 14px 16px;
}
.tour-tooltip .tour-step-count { font-size: 11px; font-weight: 700; color: var(--text-faint); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.tour-tooltip .tour-text { font-size: 13.5px; color: var(--ink, #16233b); line-height: 1.5; margin-bottom: 12px; }
.tour-tooltip .tour-actions { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.feedback-stars { display: flex; gap: 6px; margin: 4px 0 2px; }
.feedback-stars button {
  background: none; border: none; cursor: pointer; font-size: 26px; line-height: 1; padding: 2px;
  color: var(--border-strong); transition: color .12s;
}
.feedback-stars button.selected, .feedback-stars button:hover { color: #f2b705; }
