/* ========== FinFire dark · type: Geist · spacing: 4/8 base ========== */
:root {
  --bg: #0a0e16;
  --bg-grad-top: #0d1320;
  --surface: #131826;
  --surface-2: #1a2236;
  --surface-3: #232c44;
  --border: rgba(232, 239, 255, 0.08);
  --border-2: rgba(232, 239, 255, 0.14);
  --border-strong: rgba(232, 239, 255, 0.22);

  --text: #e8eef9;
  --text-2: #9da7bd;
  --text-3: #6b7691;
  --text-4: #4c5670;

  --accent: #6ea8ff;
  --accent-soft: rgba(110, 168, 255, 0.14);
  --accent-line: rgba(110, 168, 255, 0.4);
  --good: #34d399;
  --good-soft: rgba(52, 211, 153, 0.14);
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.14);
  --bad: #f87171;
  --bad-soft: rgba(248, 113, 113, 0.14);
  --purple: #b794f8;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --shadow-sm: 0 1px 0 rgba(255,255,255,0.04) inset, 0 1px 2px rgba(0,0,0,0.4);
  --shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 10px 30px -10px rgba(0,0,0,0.6);
  --shadow-lg: 0 1px 0 rgba(255,255,255,0.08) inset, 0 30px 60px -20px rgba(0,0,0,0.8);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(110, 168, 255, 0.08), transparent 60%),
    radial-gradient(800px 400px at 100% 10%, rgba(183, 148, 248, 0.05), transparent 70%);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input { font: inherit; color: inherit; }

/* ========== Layout ========== */
.ff-app { min-height: 100vh; padding-bottom: 120px; }

.ff-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(10, 14, 22, 0.7);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
}
.ff-brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.ff-brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: #0b0f17;
}
.ff-brand-name {
  font-family: var(--font-sans);
  font-weight: 600; letter-spacing: -0.02em; font-size: 15px;
}
.ff-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 1px;
}
.ff-header-right { display: flex; align-items: center; gap: 18px; }
.ff-header-stats { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ff-header-stats-row { display: flex; align-items: baseline; gap: 6px; font-family: var(--font-mono); }
.ff-header-stats-pct { font-size: 13px; color: var(--text); font-weight: 500; }
.ff-header-stats-label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.ff-header-bar {
  width: 140px; height: 4px; background: var(--surface-2); border-radius: 99px; overflow: hidden;
  border: 1px solid var(--border);
}
.ff-header-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  transition: width 0.8s cubic-bezier(.2,.8,.2,1);
}
.ff-icon-btn {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--text-3);
  border: 1px solid transparent;
  transition: 0.2s;
}
.ff-icon-btn:hover { color: var(--text); background: var(--surface); border-color: var(--border); }

/* ========== Hero ========== */
.ff-main { max-width: 760px; margin: 0 auto; padding: 56px 24px 0; }
.ff-hero { text-align: left; margin-bottom: 56px; }
.ff-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 0.14em;
  padding: 5px 10px; border: 1px solid var(--border); border-radius: 99px;
  background: var(--surface);
}
.ff-hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--good); box-shadow: 0 0 12px var(--good); }
.ff-hero h1 {
  font-size: clamp(34px, 5vw, 52px); font-weight: 500; letter-spacing: -0.03em;
  margin: 18px 0 14px; line-height: 1.05;
}
.ff-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.ff-hero p {
  max-width: 540px; color: var(--text-2); font-size: 16px; line-height: 1.6;
  margin: 0 0 24px;
}

.ff-hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0;
  padding: 16px 0; margin-top: 8px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ff-hero-stat { padding: 4px 18px; border-right: 1px solid var(--border); }
.ff-hero-stat:last-child { border-right: 0; }
.ff-hero-stat:first-child { padding-left: 0; }
.ff-hero-stat-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 6px;
}
.ff-hero-stat-value { font-family: var(--font-mono); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.ff-hero-stat-value .ff-num-accent { color: var(--accent); }
.ff-hero-stat-foot { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ========== Stage cards ========== */
.ff-stages { display: flex; flex-direction: column; gap: 0; padding-bottom: 80px; }

.ff-stage { position: relative; padding-left: 32px; }
.ff-spine {
  position: absolute; left: 12px; top: 0; bottom: 0; width: 1px;
  background: var(--border-2);
}
.ff-spine-top { top: -1px; height: 24px; bottom: auto; }
.ff-stage::before {
  content: ''; position: absolute; left: 12px; top: 32px; bottom: -32px; width: 1px;
  background: linear-gradient(to bottom, var(--border-2) 0%, var(--border-2) 50%, var(--border) 100%);
}
.ff-stage:last-child::before { display: none; }
.ff-stage.is-complete::before {
  background: linear-gradient(to bottom, var(--good) 0%, var(--good-soft) 60%, transparent 100%);
}
.ff-stage::after {
  content: ''; position: absolute; left: 8px; top: 28px;
  width: 9px; height: 9px; border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  z-index: 1;
}
.ff-stage.is-active::after {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.ff-stage.is-complete::after {
  background: var(--good); border-color: var(--good);
  box-shadow: 0 0 0 4px var(--good-soft);
}

.ff-stage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 12px 0;
  transition: 0.3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.ff-stage.is-active .ff-stage-card { border-color: var(--border-2); box-shadow: var(--shadow); }
.ff-stage.is-expanded .ff-stage-card { background: var(--surface); border-color: var(--border-2); }
.ff-stage.is-complete .ff-stage-card { border-color: rgba(52, 211, 153, 0.18); }

.ff-stage-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  width: 100%; padding: 20px 22px;
  text-align: left; align-items: flex-start;
}
.ff-stage-icon {
  position: relative;
  width: 48px; height: 48px; border-radius: var(--radius);
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  flex-shrink: 0;
}
.ff-stage.is-active .ff-stage-icon { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.ff-stage.is-complete .ff-stage-icon { color: var(--good); border-color: rgba(52, 211, 153, 0.4); background: var(--good-soft); }
.ff-stage-num {
  position: absolute; top: -7px; right: -7px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 500;
  color: var(--text-3); background: var(--bg);
  padding: 2px 5px; border-radius: 4px; border: 1px solid var(--border);
}

.ff-stage-titleblock { min-width: 0; }
.ff-stage-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.ff-stage-tag {
  font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text-3);
  padding: 3px 7px; border: 1px solid var(--border); border-radius: 4px;
}
.ff-stage-count { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.ff-stage-title {
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0; line-height: 1.2;
}
.ff-stage-desc {
  color: var(--text-2); font-size: 14px; line-height: 1.5;
  margin: 6px 0 14px;
}
.ff-stage-progress { display: flex; align-items: center; gap: 10px; }
.ff-stage-progress-track {
  flex: 1; height: 3px; background: var(--surface-2); border-radius: 99px; overflow: hidden;
}
.ff-stage-progress-fill {
  height: 100%; background: var(--accent); border-radius: 99px;
  transition: width 0.6s cubic-bezier(.2,.8,.2,1);
}
.ff-stage.is-complete .ff-stage-progress-fill { background: var(--good); }
.ff-stage-progress-label {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-3); min-width: 28px;
  text-align: right;
}

.ff-stage-aside {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  flex-shrink: 0;
}
.ff-stage-chevron {
  width: 28px; height: 28px; border-radius: 8px;
  display: grid; place-items: center;
  color: var(--text-3);
  transition: 0.3s;
}
.ff-stage.is-expanded .ff-stage-chevron { transform: rotate(180deg); color: var(--text); }

.ff-metric-chip {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  padding: 6px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}
.ff-metric-chip-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1px; }
.ff-metric-chip-value { font-size: 13px; color: var(--text); font-weight: 500; }
.ff-metric-chip.ff-tone-warn .ff-metric-chip-value { color: var(--warn); }
.ff-metric-chip.ff-tone-good .ff-metric-chip-value { color: var(--good); }

/* ========== Stage body (expanded) ========== */
.ff-stage-body {
  padding: 8px 22px 22px;
  border-top: 1px solid var(--border);
  opacity: 1 !important;
}
@keyframes ff-fade-up { from { transform: translateY(-4px); } to { transform: translateY(0); } }

.ff-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.ff-stage-why { margin: 18px 0 24px; padding: 16px 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.ff-stage-why p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.6; }

.ff-stage-tasks { margin-bottom: 24px; }
.ff-task {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.ff-task:last-child { border-bottom: 0; }
.ff-task-main {
  display: flex; align-items: center; gap: 10px;
  text-align: left;
  padding: 4px 0;
}
.ff-check {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--border-strong);
  display: grid; place-items: center;
  color: transparent;
  transition: 0.2s;
  flex-shrink: 0;
}
.ff-task-main:hover .ff-check { border-color: var(--text-3); }
.ff-task.is-done .ff-check { background: var(--good); border-color: var(--good); color: #051a13; }
.ff-task-label { color: var(--text); font-size: 14px; line-height: 1.4; }
.ff-task.is-done .ff-task-label { color: var(--text-3); text-decoration: line-through; text-decoration-thickness: 1px; }

.ff-learn-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-3);
  padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--border);
  transition: 0.2s;
}
.ff-learn-toggle:hover { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.ff-learn-toggle.is-open { color: var(--accent); border-color: var(--accent-line); background: var(--accent-soft); }
.ff-learn-body {
  grid-column: 1 / -1;
  padding: 12px 14px;
  margin: 6px 0 4px;
  background: var(--bg);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13.5px; line-height: 1.6;
  color: var(--text-2);
}

/* ========== Calculator ========== */
.ff-calc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.ff-calc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.ff-calc-eyebrow {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-3);
}
.ff-calc-hint { font-size: 11px; color: var(--text-4); font-style: italic; }
.ff-calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-bottom: 16px; }

.ff-num { display: flex; flex-direction: column; gap: 5px; }
.ff-num-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.ff-num-field {
  display: flex; align-items: center;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 0 10px;
  transition: 0.2s;
}
.ff-num-field:focus-within { border-color: var(--accent-line); background: var(--surface); box-shadow: 0 0 0 3px var(--accent-soft); }
.ff-num-prefix, .ff-num-suffix { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); }
.ff-num-field input {
  flex: 1;
  border: 0; background: transparent; outline: none;
  font-family: var(--font-mono); font-size: 14px; padding: 9px 6px;
  width: 100%; min-width: 0;
  -moz-appearance: textfield;
}
.ff-num-field input::-webkit-outer-spin-button,
.ff-num-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.ff-calc-out {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.ff-stat-wide { grid-column: 1 / -1; }
.ff-stat { padding: 4px 0; }
.ff-stat-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ff-stat-value { font-family: var(--font-mono); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.ff-stat-value.is-good { color: var(--good); }
.ff-stat-value.is-warn { color: var(--warn); }
.ff-stat-value.is-bad { color: var(--bad); }
.ff-stat-value.is-accent { color: var(--accent); }
.ff-stat-foot { font-size: 11px; color: var(--text-3); margin-top: 4px; font-family: var(--font-mono); }
.ff-good { color: var(--good); }

.ff-progress { height: 4px; background: var(--surface-2); border-radius: 99px; overflow: hidden; margin-top: 6px; border: 1px solid var(--border); }
.ff-progress > div { height: 100%; background: var(--accent); transition: width 0.6s; }

.ff-debt-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.ff-debt-row {
  display: grid; grid-template-columns: 1.4fr 1fr 0.8fr 1fr; gap: 8px;
  padding: 10px 12px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12.5px;
  align-items: center;
}
.ff-debt-name { color: var(--text); }
.ff-debt-balance { font-family: var(--font-mono); color: var(--warn); }
.ff-debt-apr { font-family: var(--font-mono); color: var(--text-2); font-size: 11.5px; }
.ff-debt-min { font-family: var(--font-mono); color: var(--text-3); font-size: 11.5px; text-align: right; }

/* ========== End anchor ========== */
.ff-end {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 40px 0 0;
  margin-left: 32px;
  position: relative;
}
.ff-end::before {
  content: ''; position: absolute; left: -20px; top: 0; width: 1px; height: 30px;
  background: var(--border-2);
}
.ff-end-mark {
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text-3);
  position: relative;
}
.ff-end.is-complete .ff-end-mark {
  background: var(--good); color: #051a13; border-color: var(--good);
  box-shadow: 0 0 0 6px var(--good-soft), 0 0 40px var(--good-soft);
}
.ff-end-label {
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-3);
}
.ff-end.is-complete .ff-end-label { color: var(--good); }

/* ========== Modals ========== */
.ff-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(5, 8, 14, 0.75);
  backdrop-filter: blur(14px);
  animation: ff-fade 0.25s ease;
}
@keyframes ff-fade { from { opacity: 0; } to { opacity: 1; } }
.ff-modal {
  width: 100%; max-width: 420px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: ff-pop 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes ff-pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.ff-modal-celebrate { max-width: 520px; padding: 36px; }
.ff-modal-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--text-2);
  margin: 0 auto 16px;
  border: 1px solid var(--border);
}
.ff-modal-confetti {
  width: 88px; height: 88px; border-radius: 99px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  margin: 0 auto 20px;
  border: 1px solid var(--accent-line);
  animation: ff-tada 1.5s ease-in-out infinite;
}
@keyframes ff-tada {
  0%, 100% { transform: scale(1) rotate(0); }
  25% { transform: scale(1.05) rotate(-3deg); }
  75% { transform: scale(1.05) rotate(3deg); }
}
.ff-modal-eyebrow {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent); margin-bottom: 10px;
}
.ff-modal-title { font-size: 32px; font-weight: 500; letter-spacing: -0.025em; margin: 0 0 12px; line-height: 1.1; }
.ff-modal-title-sm { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 8px; }
.ff-modal-sub { color: var(--text-2); margin: 0 0 24px; font-size: 14.5px; line-height: 1.55; }
.ff-modal-options { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; text-align: left; }
.ff-modal-option {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
}
.ff-modal-option > div { color: var(--text); }
.ff-modal-option-title { font-weight: 500; font-size: 14px; }
.ff-modal-option-sub { color: var(--text-3); font-size: 12.5px; margin-top: 2px; line-height: 1.4; }
.ff-modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ========== Buttons ========== */
.ff-btn {
  padding: 12px 18px; border-radius: 10px;
  font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: 0.2s;
  width: 100%;
}
.ff-btn-primary { background: var(--text); color: var(--bg); }
.ff-btn-primary:hover { background: #fff; }
.ff-btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.ff-btn-ghost:hover { background: var(--surface-3); }
.ff-btn-danger { background: var(--bad); color: #200; }
.ff-btn-danger:hover { background: #ff8585; }

/* ========== Footer mini stat ========== */
.ff-footer {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: rgba(19, 24, 38, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  font-size: 12px;
}
.ff-footer-dots { display: flex; }
.ff-footer-dot {
  width: 18px; height: 18px; border-radius: 99px;
  border: 2px solid var(--surface);
  margin-right: -6px;
}
.ff-footer-text { font-family: var(--font-mono); font-size: 11px; color: var(--text-2); }
.ff-footer-text strong { color: var(--text); font-weight: 500; }

/* ========== Responsive ========== */
@media (max-width: 640px) {
  .ff-main { padding: 32px 16px 0; }
  .ff-hero { margin-bottom: 32px; }
  .ff-hero h1 { font-size: 32px; }
  .ff-stage { padding-left: 24px; }
  .ff-spine, .ff-stage::before { left: 8px; }
  .ff-stage::after { left: 4px; }
  .ff-stage-head { padding: 16px; grid-template-columns: auto 1fr; }
  .ff-stage-aside { grid-column: 1 / -1; flex-direction: row-reverse; justify-content: space-between; align-items: center; }
  .ff-metric-chip { align-items: flex-start; }
  .ff-stage-body { padding: 8px 16px 16px; }
  .ff-header { padding: 12px 16px; gap: 12px; }
  .ff-header-bar { width: 90px; }
  .ff-header-stats { display: none; }
  .ff-debt-row { grid-template-columns: 1fr 1fr; row-gap: 4px; }
  .ff-debt-name { grid-column: 1 / -1; font-weight: 500; }
  .ff-hero-stats { grid-template-columns: 1fr 1fr; }
  .ff-hero-stat:nth-child(3) { display: none; }
}
