/* ============ DESIGN TOKENS ============ */
:root {
  --ink: #0a1628;
  --ink-soft: #1a2942;
  --paper: #f6f3ec;
  --paper-warm: #ede7d8;
  --rule: #d4cdb8;
  --accent: #B06A4E;
  --accent-deep: #8E523B;
  --amber: #C7A44C;
  --amber-soft: #F5EDD9;
  --green: #6D8B74;
  --green-light: #85A28C;
  --muted: #6b6356;

  --tone-red-bg:   #F4E8E0;
  --tone-red-fg:   #8E523B;
  --tone-amber-bg: #F5EDD9;
  --tone-amber-fg: #9B7E33;
  --tone-green-bg: #EAEFE9;
  --tone-green-fg: #4F6B57;
  --tone-muted-bg: #f0ede4;
  --tone-muted-fg: #6b6356;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

em { font-style: italic; color: var(--accent); }

/* ============ TOP BAR ============ */
.topbar {
  border-bottom: 1px solid var(--rule);
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(20px);
  position: sticky; top: 0; z-index: 100;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px; padding-bottom: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px;
}
.logo-mark {
  background: var(--ink); color: var(--paper);
  width: 28px; height: 28px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: ui-monospace, monospace;
  font-size: 10px; font-weight: 600;
}
.logo small {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 9px; font-weight: 400;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 1px;
}
.status {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============ HERO (INDEX) ============ */
.hero { padding: 64px 24px 80px; max-width: 760px; }
.hero-meta {
  display: inline-block;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 2px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
}
.lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 300;
}

/* ============ UPLOAD CARD ============ */
.upload-card {
  background: #fff;
  border: 2px dashed var(--rule);
  padding: 48px 36px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}
.upload-card:hover, .upload-card.dragover {
  border-color: var(--accent);
  background: #FAF6EC;
}
.upload-tag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--paper);
  padding: 0 10px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.upload-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.upload-title {
  font-size: 22px;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.upload-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.upload-perks {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}
.upload-perks .tick { color: var(--green); }

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* ============ PROGRESS / ERROR ============ */
.progress {
  margin-top: 32px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-align: center;
}
.progress-spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--rule);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.progress-text { font-weight: 500; margin-bottom: 4px; }
.progress-sub { font-size: 13px; color: var(--muted); }

.error-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: #F4E8E0;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 14px;
}
.error-box strong { display: block; margin-bottom: 4px; color: var(--accent); }

/* ============ RESULT PAGE — base ============ */
.result-page { padding: 40px 24px 80px; max-width: 1000px; }
.result-meta {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ============ FOOTER ============ */
.footer-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
}

/* ====================================================================
   ============ SESSION 5 UX — REIMAGINED RESULT PAGE ============
   ====================================================================
   Goals (broker-aligned, no categorical "NOT SAFE TO SHIP"):
   - 3-second understanding (hero + traffic light)
   - Money Leak Counter
   - Customs Health Progress
   - Top 3 Risks
   - Accordion + How-to-fix
   - Special Checks chips
   - "What customs officer may ask"
   - 4-priority action plan
   ==================================================================== */

/* ===== HERO CARD ===== */
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px 32px 28px;
  margin-bottom: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 24px 60px -36px rgba(10,22,40,0.18);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 200px at 100% 0%, rgba(196,69,54,0.05), transparent 70%);
}
.hero-card.hero-amber::before {
  background: radial-gradient(800px 200px at 100% 0%, rgba(212,160,23,0.07), transparent 70%);
}
.hero-card.hero-green::before {
  background: radial-gradient(800px 200px at 100% 0%, rgba(45,94,62,0.06), transparent 70%);
}

.hero-traffic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-card.hero-red    .hero-traffic { background: var(--tone-red-bg);   color: var(--tone-red-fg); }
.hero-card.hero-amber  .hero-traffic { background: var(--tone-amber-bg); color: var(--tone-amber-fg); }
.hero-card.hero-green  .hero-traffic { background: var(--tone-green-bg); color: var(--tone-green-fg); }

.hero-traffic .hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-card.hero-red    .hero-traffic .hero-dot { background: var(--accent); }
.hero-card.hero-amber  .hero-traffic .hero-dot { background: var(--amber); }
.hero-card.hero-green  .hero-traffic .hero-dot { background: var(--green); }

.hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 22px;
}
.hero-left { padding-right: 28px; border-right: 1px solid var(--rule); }
.hero-score {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--accent);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-card.hero-amber .hero-score { color: var(--tone-amber-fg); }
.hero-card.hero-green .hero-score { color: var(--green); }
.hero-score-of {
  font-size: 28px;
  color: var(--muted);
  font-family: Georgia, serif;
}
.hero-score-label {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid var(--rule);
}
.hero-stat-icon { font-size: 20px; }
.hero-stat-num {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-stat-label {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 0.2s, transform 0.2s;
}
.btn-amber:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink-soft);
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-light:hover { background: var(--paper); border-color: var(--ink); }

/* ===== GENERIC CARD ===== */
.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.card-title {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.card-meta {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.empty-state { color: var(--muted); font-size: 14px; padding: 8px 0; }

/* ===== HEALTH METER ===== */
.health-card {}
.health-meter {}
.health-bar {
  position: relative;
  height: 14px;
  background: var(--paper-warm);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.health-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.health-bar-fill.fill-red    { background: linear-gradient(90deg, var(--accent), #C99883); }
.health-bar-fill.fill-amber  { background: linear-gradient(90deg, var(--amber), #D9BD75); }
.health-bar-fill.fill-green  { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.health-bar-target {
  position: absolute;
  top: -4px; bottom: -4px;
  width: 2px;
  background: var(--green);
  left: 0%;
  transition: left 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.health-bar-target::after {
  content: "цель";
  position: absolute;
  top: -16px; left: 6px;
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.health-legend {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.legend-dot.now    { background: var(--accent); }
.legend-dot.target { background: var(--green); }

/* ===== MONEY COUNTER ===== */
.money-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.money-icon { font-size: 44px; line-height: 1; }
.money-body { flex: 1; }
.money-label {
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(246, 243, 236, 0.6);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.money-value {
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.money-value > span:first-child { color: var(--amber); }
.money-currency { font-size: 20px; color: rgba(246, 243, 236, 0.6); }
.money-sub {
  font-size: 13px;
  color: rgba(246, 243, 236, 0.65);
  margin-top: 8px;
}

/* ===== TOP 3 RISKS ===== */
.top-risks { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.top-risk {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  align-items: center;
}
.top-risk.top-risk-red    { border-left: 3px solid var(--accent); }
.top-risk.top-risk-amber  { border-left: 3px solid var(--amber);  }
.top-risk.top-risk-green  { border-left: 3px solid var(--green);  }
.top-risk-num {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.top-risk-body { flex: 1; min-width: 0; }
.top-risk-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.top-risk-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== TONE DOTS ===== */
.dot-red, .dot-amber, .dot-green, .dot-muted {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-red    { background: var(--accent); }
.dot-amber  { background: var(--amber);  }
.dot-green  { background: var(--green);  }
.dot-muted  { background: var(--muted);  }

/* ===== ACCORDION (issues + actions) ===== */
.accordion { display: grid; gap: 8px; }
.acc-item {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.acc-item[open] { box-shadow: inset 4px 0 0 var(--rule); }
.acc-item.acc-red[open]    { box-shadow: inset 4px 0 0 var(--accent); }
.acc-item.acc-amber[open]  { box-shadow: inset 4px 0 0 var(--amber);  }
.acc-item.acc-green[open]  { box-shadow: inset 4px 0 0 var(--green);  }

.acc-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { background: var(--paper); }

.acc-icon { display: inline-flex; }
.acc-title { flex: 1; font-weight: 600; font-size: 15px; min-width: 0; }
.acc-tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.acc-tag.tag-red    { background: var(--tone-red-bg);   color: var(--tone-red-fg); }
.acc-tag.tag-amber  { background: var(--tone-amber-bg); color: var(--tone-amber-fg); }
.acc-tag.tag-green  { background: var(--tone-green-bg); color: var(--tone-green-fg); }
.acc-meta {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.acc-toggle {
  margin-left: auto;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s;
}
.acc-item[open] .acc-toggle { transform: rotate(45deg); }

.acc-body {
  padding: 4px 18px 18px 50px;
  border-top: 1px solid var(--rule);
}
.acc-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 12px;
}
.why-block {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--paper);
  border-left: 2px solid var(--muted);
  font-size: 12px;
  color: var(--ink-soft);
  border-radius: 3px;
}
.why-block b { font-weight: 600; }

/* ===== HOW-TO-FIX ===== */
.fix-block {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--tone-green-bg);
  border-radius: 4px;
  border-left: 3px solid var(--green);
}
.fix-head {
  font-weight: 600;
  font-size: 13px;
  color: var(--tone-green-fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.fix-steps {
  margin: 0 0 6px 18px;
  padding: 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}
.fix-steps li { padding: 3px 0; }
.fix-eta {
  margin-top: 8px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--tone-green-fg);
}

/* ===== ACTION LIST (inside priorities accordion) ===== */
.action-list {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.action-list li {
  padding: 10px 12px 10px 32px;
  background: var(--paper);
  border-radius: 4px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}
.action-list li::before {
  content: "☐";
  position: absolute;
  left: 12px; top: 9px;
  color: var(--muted);
  font-size: 14px;
}

/* ===== SPECIAL CHECKS ===== */
.checks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.check-chip {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  border-left-width: 3px;
}
.check-chip.check-red    { border-left-color: var(--accent); }
.check-chip.check-amber  { border-left-color: var(--amber); }
.check-chip.check-green  { border-left-color: var(--green); }
.check-chip.check-muted  { border-left-color: var(--muted); opacity: 0.75; }

.check-chip-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.check-icon {
  font-size: 18px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 50%;
  flex-shrink: 0;
}
.check-titles { flex: 1; min-width: 0; }
.check-title { font-weight: 600; font-size: 13px; line-height: 1.2; }
.check-en {
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}
.check-status {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 3px;
  white-space: nowrap;
}
.check-status-red    { background: var(--tone-red-bg);   color: var(--tone-red-fg); }
.check-status-amber  { background: var(--tone-amber-bg); color: var(--tone-amber-fg); }
.check-status-green  { background: var(--tone-green-bg); color: var(--tone-green-fg); }
.check-status-muted  { background: var(--tone-muted-bg); color: var(--tone-muted-fg); }
.check-note {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== OFFICER VIEW ===== */
.officer-card {
  background: linear-gradient(135deg, #FAF6EC 0%, #F5EDD9 100%);
  border-color: var(--amber);
  border-left-width: 3px;
}
.officer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.officer-item {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.65);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.officer-eye { font-size: 16px; flex-shrink: 0; }
.officer-empty { color: var(--muted); font-size: 13px; padding: 8px 0; list-style: none; }

/* ===== DOWNLOAD BLOCK ===== */
.download-block {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.download-block h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.download-block p {
  font-size: 14px;
  color: rgba(246, 243, 236, 0.7);
}
.download-block .btn-primary {
  background: var(--amber);
  color: var(--ink);
}
.download-block .btn-primary:hover {
  background: #fff;
  color: var(--ink);
}

/* ===== DISCLAIMER ===== */
.result-disclaimer {
  margin-top: 24px;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-left { padding-right: 0; padding-bottom: 16px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero-stats { grid-template-columns: 1fr; }
  .money-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .money-value { font-size: 36px; }
}
@media (max-width: 720px) {
  .hero-card { padding: 22px 18px 20px; }
  .card { padding: 18px 18px; }
  .download-block { flex-direction: column; align-items: stretch; }
  .download-block .btn-primary { justify-content: center; }
  .topbar-inner .status { display: none; }
  .footer-bar { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
  .acc-body { padding-left: 18px; }
  .hero-score { font-size: 72px; }
}
