/* ============================================================
   Vault Landing Page
   Standalone stylesheet — independent from the app's style.css
   ============================================================ */

:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #fafbfd;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #0f172a;
  --text-muted: #667085;
  --text-subtle: #98a2b3;

  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-tint: #eff4ff;
  --primary-tint-2: #dbe7ff;

  --income: #059669;
  --income-tint: #ecfdf5;
  --expense: #dc2626;
  --expense-tint: #fef2f2;
  --savings: #7c3aed;
  --savings-tint: #f5f0ff;
  --warning: #d97706;
  --warning-tint: #fff7ed;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 4px 12px rgba(15, 23, 42, 0.06), 0 24px 48px -12px rgba(15, 23, 42, 0.12);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 14px;

  --container: 1320px;
  --gutter: clamp(20px, 3vw, 28px);
}

[data-theme="dark"] {
  --bg: #0f1419;
  --surface: #161b22;
  --surface-2: #1c222b;
  --border: #262d38;
  --border-strong: #323a46;
  --text: #e6edf3;
  --text-muted: #8b95a5;
  --text-subtle: #6b7280;

  --primary: #3b82f6;
  --primary-hover: #60a5fa;
  --primary-tint: rgba(59, 130, 246, 0.12);
  --primary-tint-2: rgba(59, 130, 246, 0.22);

  --income: #10b981;
  --income-tint: rgba(16, 185, 129, 0.12);
  --expense: #ef4444;
  --expense-tint: rgba(239, 68, 68, 0.12);
  --savings: #a78bfa;
  --savings-tint: rgba(167, 139, 250, 0.14);
  --warning: #f59e0b;
  --warning-tint: rgba(245, 158, 11, 0.12);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.3), 0 24px 48px -12px rgba(0, 0, 0, 0.5);
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s ease, color 0.2s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* BUTTONS / MARK / THEME TOGGLE */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 20px; border-radius: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #ffffff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); color: #ffffff; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--primary-tint); color: var(--primary); }
.btn-lg { padding: 14px 24px; font-size: 16px; }

.vault-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff; font-weight: 800; font-size: 18px;
  letter-spacing: -0.02em; flex-shrink: 0;
}
.vault-mark.sm { width: 28px; height: 28px; font-size: 14px; border-radius: 6px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -0.01em;
}

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.theme-toggle:hover { background: var(--primary-tint); color: var(--primary); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* NAV */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav.is-scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-actions { display: flex; align-items: center; gap: 4px; }
.nav-actions .btn { padding: 9px 16px; font-size: 14px; }
.nav-actions .btn-lg { padding: 10px 18px; font-size: 14px; }

@media (max-width: 520px) {
  .nav-actions .nav-signin { display: none; }
}

/* HERO */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -10% 30% auto -10%;
  height: 420px;
  background: radial-gradient(ellipse at 30% 40%, var(--primary-tint) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start; position: relative; z-index: 1;
  padding-top: clamp(20px, 3vw, 40px);
}
.hero-copy { padding-top: clamp(8px, 2vw, 24px); }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

/* FREE BADGE — the magic word, hero-sized */
.free-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--income-tint);
  color: var(--income);
  border: 1.5px solid var(--income);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}
.free-badge .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--income);
  margin-right: 8px;
  vertical-align: 2px;
  animation: free-pulse 2s ease-in-out infinite;
}
@keyframes free-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  margin-left: 10px;
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.hero-micro { font-size: 13px; color: var(--text-subtle); }
.hero-micro strong { color: var(--income); font-weight: 700; }

/* DASHBOARD MOCKUP */
.dashboard-frame {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transform-origin: left center;
}
@media (max-width: 960px) { .dashboard-frame { transform: none; } }

.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.dash-tabs { display: flex; gap: 4px; font-size: 12px; color: var(--text-muted); }
.dash-tabs .tab { padding: 5px 10px; border-radius: 6px; font-weight: 500; }
.dash-tabs .tab.active { background: var(--primary-tint); color: var(--primary); font-weight: 600; }
.dash-user { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.dash-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

.dash-body { padding: 20px; display: grid; gap: 16px; }
.dash-header {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.dash-title { font-size: 15px; font-weight: 700; color: var(--text); }
.dash-period {
  font-size: 12px; color: var(--text-muted);
  padding: 4px 10px; border: 1px solid var(--border);
  border-radius: 6px; background: var(--surface);
}

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.metric {
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-md); background: var(--surface);
}
.metric-label {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
}
.metric-label .pip { width: 7px; height: 7px; border-radius: 50%; }
.pip-income { background: var(--income); }
.pip-expense { background: var(--expense); }
.pip-savings { background: var(--savings); }
.metric-value {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); font-variant-numeric: tabular-nums;
}
.metric-delta { font-size: 11px; font-weight: 500; margin-top: 4px; }
.delta-up { color: var(--income); }
.delta-down { color: var(--expense); }
.delta-neutral { color: var(--text-muted); }

.dash-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; }
.dash-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 14px;
}
.dash-card-title {
  font-size: 12px; font-weight: 600; color: var(--text);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-card-title .more { color: var(--text-subtle); font-size: 14px; letter-spacing: 2px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 14px; }
.donut {
  --p1: 38; --p2: 24; --p3: 18; --p4: 12;
  width: 92px; height: 92px; border-radius: 50%;
  background:
    conic-gradient(
      var(--expense) 0% calc(var(--p1) * 1%),
      var(--primary) calc(var(--p1) * 1%) calc((var(--p1) + var(--p2)) * 1%),
      var(--savings) calc((var(--p1) + var(--p2)) * 1%) calc((var(--p1) + var(--p2) + var(--p3)) * 1%),
      var(--warning) calc((var(--p1) + var(--p2) + var(--p3)) * 1%) calc((var(--p1) + var(--p2) + var(--p3) + var(--p4)) * 1%),
      var(--border-strong) calc((var(--p1) + var(--p2) + var(--p3) + var(--p4)) * 1%) 100%
    );
  position: relative; flex-shrink: 0;
}
.donut::after {
  content: ""; position: absolute; inset: 14px;
  background: var(--surface); border-radius: 50%;
}
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 1;
}
.donut-center .v { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1; }
.donut-center .l { font-size: 9px; color: var(--text-muted); margin-top: 2px; }

.legend { display: grid; gap: 6px; font-size: 11px; color: var(--text-muted); flex: 1; min-width: 0; }
.legend-row { display: flex; align-items: center; gap: 8px; }
.legend-row .sw { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.legend-row .name {
  flex: 1; color: var(--text); font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.legend-row .amt { font-variant-numeric: tabular-nums; color: var(--text-muted); }

/* Transactions */
.txn-list { display: flex; flex-direction: column; }
.txn {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.txn:last-child { border-bottom: none; }
.txn-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.txn-icon.food { background: var(--expense-tint); color: var(--expense); }
.txn-icon.income { background: var(--income-tint); color: var(--income); }
.txn-icon.transport { background: var(--savings-tint); color: var(--savings); }
.txn-icon.bills { background: var(--primary-tint); color: var(--primary); }
.txn-icon.fun { background: var(--warning-tint); color: var(--warning); }

.txn-meta { min-width: 0; }
.txn-name {
  font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.txn-cat { font-size: 10.5px; color: var(--text-muted); line-height: 1.3; }
.txn-amt { font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.txn-amt.neg { color: var(--text); }
.txn-amt.pos { color: var(--income); }

/* TRUST STRIP */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  padding: 18px 0;
  font-size: 14px; color: var(--text-muted);
}
.trust-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
.trust-item .glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px; background: var(--surface-2);
  border: 1px solid var(--border);
}

/* SECTION HEADERS */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-eyebrow {
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.6vw, 40px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.15; max-width: 640px;
}
.section-lede {
  font-size: 17px; color: var(--text-muted);
  max-width: 580px; margin-top: 14px; line-height: 1.55;
}
.section-head { margin-bottom: clamp(32px, 5vw, 56px); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon.blue { background: var(--primary-tint); color: var(--primary); }
.feature-icon.green { background: var(--income-tint); color: var(--income); }
.feature-icon.purple { background: var(--savings-tint); color: var(--savings); }
.feature h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.015em; }
.feature p { color: var(--text-muted); font-size: 15px; line-height: 1.55; }

/* SHOWCASE */
.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.showcase-row + .showcase-row { margin-top: clamp(56px, 8vw, 96px); }
.showcase-row.reverse .showcase-copy { order: 2; }
.showcase-row.reverse .showcase-art  { order: 1; }
@media (max-width: 880px) {
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; }
  .showcase-row.reverse .showcase-copy, .showcase-row.reverse .showcase-art { order: initial; }
}

.showcase-copy h3 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 14px;
}
.showcase-copy p {
  color: var(--text-muted); font-size: 17px;
  line-height: 1.55; max-width: 480px;
}

.art-frame {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 22px;
}

.budgets-list { display: flex; flex-direction: column; gap: 18px; }
.budget { display: grid; gap: 8px; }
.budget-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.budget-name {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--text);
}
.budget-name .ico {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.budget-amt { font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.budget-amt strong { color: var(--text); font-weight: 600; }
.budget-bar {
  height: 8px; background: var(--border);
  border-radius: 999px; overflow: hidden;
}
.budget-bar > i {
  display: block; height: 100%; border-radius: 999px;
  transition: width 0.4s ease;
}
.budget-bar.safe > i { background: var(--income); }
.budget-bar.warn > i { background: var(--warning); }
.budget-bar.over > i { background: var(--expense); }

.budget-tag {
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
}
.budget-tag.safe { background: var(--income-tint); color: var(--income); }
.budget-tag.warn { background: var(--warning-tint); color: var(--warning); }
.budget-tag.over { background: var(--expense-tint); color: var(--expense); }

.trend-card { display: grid; gap: 16px; }
.trend-head { display: flex; justify-content: space-between; align-items: baseline; }
.trend-head .total {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.trend-head .label { font-size: 12px; color: var(--text-muted); }
.trend-chart { height: 160px; width: 100%; }
.trend-legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted);
}
.trend-legend .sw {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 3px; margin-right: 6px; vertical-align: -1px;
}
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px;
  border-top: 1px solid var(--border);
  margin-top: 4px; padding-top: 16px;
}
.cat-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.cat-row .name {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 500;
}
.cat-row .name .sw { width: 8px; height: 8px; border-radius: 50%; }
.cat-row .amt { font-variant-numeric: tabular-nums; color: var(--text-muted); }

/* COMPARE */
.compare {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.compare-head .section-title { margin: 0 auto; }
.compare-head .section-lede { margin-left: auto; margin-right: auto; }
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 920px; margin: 0 auto;
}
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative;
}
.compare-card.us {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint), var(--shadow-md);
}
.compare-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.compare-card h3 {
  font-size: 20px; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.compare-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.compare-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text);
}
.compare-list li .mark {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.compare-list.good li .mark { background: var(--income-tint); color: var(--income); }
.compare-list.bad li { color: var(--text-muted); }
.compare-list.bad li .mark { background: var(--surface-2); color: var(--text-subtle); border: 1px solid var(--border); }

/* FINAL CTA */
.final-cta { padding: clamp(64px, 8vw, 96px) 0; }
.final-cta-inner {
  background: linear-gradient(135deg, var(--primary-tint) 0%, var(--savings-tint) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta-inner::before {
  content: ""; position: absolute; inset: -50% -10% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 24px; position: relative;
}
.final-cta .btn { position: relative; }
.final-cta-micro {
  margin-top: 14px; color: var(--text-muted);
  font-size: 14px; position: relative;
}

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
}
.footer-left {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.footer-center { display: flex; gap: 22px; font-size: 14px; }
.footer-center a { color: var(--text-muted); font-weight: 500; }
.footer-center a:hover { color: var(--text); }
.footer-right { display: flex; justify-content: flex-end; }

@media (max-width: 640px) {
  .footer-row { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-right { justify-content: center; }
  .footer-center { justify-content: center; }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 520px) {
  .hero h1 { font-size: 40px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row .metric:last-child { grid-column: span 2; }
  .dash-split { grid-template-columns: 1fr; }
  .free-badge { font-size: 14px; padding: 7px 14px; }
  .eyebrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
