/* ClawPipe — Apple HIG-aligned design system
 * Calm, content-first, platform-native typography.
 * Light-first with automatic dark mode. No decorative motion.
 */

/* === Tokens === */
:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-subtle: #fafafa;
  --bg-muted: #f1f1f3;
  --surface: #ffffff;
  --surface-raised: #f8f8fa;

  --border: #e5e5e7;
  --border-subtle: #ededef;
  --border-strong: #d4d4d8;

  --text: #1d1d1f;
  --text-secondary: #515154;
  --text-tertiary: #86868b;
  --text-inverse: #f5f5f7;

  --accent: #6e56cf;
  --accent-hover: #5a43bb;
  --accent-light: #f3f0fa;
  --accent-subtle: #faf8fd;

  --green: #16a34a;
  --green-light: #dcfce7;
  --red: #dc2626;
  --blue: #2563eb;
  --amber: #d97706;

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Monaco, monospace;

  --max-w: 1120px;
  --max-w-narrow: 680px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-card: 0 0 0 1px var(--border);

  --transition: 180ms cubic-bezier(0.32, 0.72, 0, 1);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-subtle: #0a0a0b;
    --bg-muted: #1c1c1e;
    --surface: #141416;
    --surface-raised: #1c1c1e;
    --border: #2c2c2e;
    --border-subtle: #1c1c1e;
    --border-strong: #3a3a3c;
    --text: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --text-inverse: #1d1d1f;
    --accent: #9e86e6;
    --accent-hover: #b49ff0;
    --accent-light: rgba(158,134,230,0.14);
    --accent-subtle: rgba(158,134,230,0.06);
    --white: #141416;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.7);
  }
}

/* === Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }

/* === Layout === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 112px 0; }
.section-alt { background: var(--bg-subtle); }

/* === Typography — SF-style hierarchy === */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--text);
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

h3, .h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.subhead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 620px;
  font-weight: 400;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* === Buttons — 44px min tap target === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-subtle); color: var(--text); border-color: var(--text-tertiary); }

.btn-ghost { background: transparent; color: var(--text-secondary); padding: 12px 16px; }
.btn-ghost:hover { color: var(--text); background: var(--bg-muted); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Cards === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--border-strong); }

.card-sm { padding: 20px; border-radius: var(--radius-md); }
.card-flat { border-color: var(--border-subtle); }
.card-flat:hover { border-color: var(--border); }

/* === Grid === */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-lg { padding: 72px 0; }
}

/* === Badge === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-light);
}

/* === Code === */
code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--bg-muted);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
}

pre {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

/* === Stat === */
.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* === Logo strip === */
.logo-strip {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.logo-strip span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* === Table === */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
th { font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-tertiary); background: var(--bg-subtle); }
td:first-child { font-weight: 500; color: var(--text); }
tr:last-child td { border-bottom: none; }
.yes { color: var(--green); font-weight: 600; }
.no { color: var(--text-tertiary); }
.table-wrap th:nth-child(2) { color: var(--accent); }
.table-wrap td:nth-child(2) { background: var(--accent-subtle); }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}
.faq-item.open .faq-a { max-height: 500px; padding-top: 12px; }

/* === Header — backdrop-blur sticky === */
.site-header {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.site-header .logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-header .logo span { color: var(--accent); }
.site-header nav { display: flex; align-items: center; gap: 4px; }
.site-header nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.site-header nav a:hover { color: var(--text); background: var(--bg-muted); text-decoration: none; }

/* === Footer === */
.site-footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-grid a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-grid a:hover { color: var(--text); text-decoration: none; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 280px;
  margin-top: 8px;
  line-height: 1.5;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-header nav a { font-size: 13px; padding: 6px 8px; }
}

/* === Pricing cards — now fully themed === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition);
  position: relative;
}
.pricing-card:hover { border-color: var(--border-strong); }
.pricing-card.most-popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: var(--accent-subtle);
}
.pricing-card .tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-card.most-popular .tier-name { color: var(--accent); }
.pricing-card .tier-pitch {
  font-size: 13px;
  color: var(--text-secondary);
  min-height: 40px;
}
.pricing-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0;
}
.pricing-card .price-monthly,
.pricing-card .price-annual {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}
.pricing-card .price-suffix { font-size: 14px; color: var(--text-secondary); }
.pricing-card .tier-calls {
  font-size: 13px;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  flex: 1;
}
.pricing-card ul li { color: var(--text-secondary); padding-left: 22px; position: relative; line-height: 1.4; }
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pricing-card .btn { width: 100%; }
.pricing-card .popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-card.highlighted { outline: 2px solid var(--accent); outline-offset: 4px; }

.pricing-grid.annual .price-monthly { display: none; }
.pricing-grid.annual .price-annual { display: inline; }
.price-annual { display: none; }

/* === Billing toggle === */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--text-secondary);
}
.billing-toggle .save-badge {
  background: var(--green);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-style: normal;
  margin-left: 4px;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .track {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: 26px;
  transition: background var(--transition);
}
.toggle-switch .knob {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked ~ .track { background: var(--accent); }
.toggle-switch input:checked ~ .knob { transform: translateX(18px); }

/* === ROI calculator === */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.roi-controls { display: flex; flex-direction: column; gap: 24px; }
.roi-results { display: flex; flex-direction: column; gap: 16px; }
.roi-controls label {
  font-weight: 500;
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}
.roi-controls input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}
.roi-controls select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  min-height: 44px;
}
.roi-controls fieldset { border: none; padding: 0; }
.roi-controls legend { font-weight: 500; margin-bottom: 10px; font-size: 14px; }
.roi-controls .mix-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.roi-controls .mix-row span:first-child { min-width: 80px; }
.roi-controls .mix-pct { min-width: 40px; color: var(--accent); font-variant-numeric: tabular-nums; }
.roi-headline {
  text-align: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.roi-headline .label { font-size: 13px; color: var(--text-secondary); margin-bottom: 6px; }
.roi-headline .amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.roi-headline .pct { font-size: 14px; color: var(--text-secondary); margin-top: 4px; }
.roi-breakdown { display: flex; flex-direction: column; gap: 12px; }
.roi-row { display: flex; flex-direction: column; gap: 4px; }
.roi-row .line { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); }
.roi-row .bar-bg { background: var(--bg-muted); border-radius: 4px; height: 6px; overflow: hidden; }
.roi-row .bar-fill { height: 100%; border-radius: 4px; transition: width 0.3s ease; }
.roi-row .bar-fill.c1 { background: var(--accent); }
.roi-row .bar-fill.c2 { background: var(--green); }
.roi-row .bar-fill.c3 { background: var(--amber); }
.roi-tier {
  font-size: 13px;
  padding: 12px 16px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  color: var(--text);
}

/* === Callout === */
.callout {
  background: var(--accent-subtle);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
}

/* === Security list === */
.security-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.security-list { list-style: none; }
.security-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.security-list li:last-child { border-bottom: none; }
.security-list strong { color: var(--text); min-width: 120px; font-weight: 500; }
@media (max-width: 768px) { .security-split { grid-template-columns: 1fr; gap: 24px; } }

/* === Accessibility === */
.skip-link {
  position: absolute; top: -48px; left: 0;
  background: var(--accent); color: #fff;
  padding: 10px 16px; z-index: 100;
  border-radius: 0 0 6px 0; font-size: 13px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }
a:focus-visible, .btn:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.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; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* === Code compare === */
.code-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.code-block { position: relative; }
.code-block .tag {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: var(--radius-full);
}
.code-block.before .tag { background: rgba(220,38,38,0.1); color: var(--red); }
.code-block.after .tag { background: rgba(22,163,74,0.1); color: var(--green); }
@media (max-width: 640px) { .code-compare { grid-template-columns: 1fr; } }

/* === Mobile menu === */
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { display: block; }
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; }
  .site-header nav {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .site-header nav.open { max-height: 360px; padding: 12px 16px; }
  .site-header nav a { padding: 12px 16px; font-size: 15px; min-height: 44px; display: flex; align-items: center; }
  .site-header nav a.btn { justify-content: center; }
  #pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card.most-popular { order: -1; }
  .roi-grid { grid-template-columns: 1fr !important; }
}

/* === Dashboard mockup (hero visual) === */
.dash-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
  max-width: 980px;
  margin: 56px auto 0;
  position: relative;
}
.dash-mock .chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.dash-mock .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-muted); }
.dash-mock .url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  background: var(--surface);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.dash-mock .body { display: grid; grid-template-columns: 200px 1fr; min-height: 320px; }
.dash-mock .side { background: var(--bg-subtle); border-right: 1px solid var(--border); padding: 20px 16px; }
.dash-mock .side-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-tertiary); margin-bottom: 10px; }
.dash-mock .side-item {
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--text-secondary);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-mock .side-item.active { background: var(--accent-light); color: var(--accent); font-weight: 500; }
.dash-mock .side-item::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}
.dash-mock .main { padding: 24px; background: var(--surface); }
.dash-mock .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.dash-mock .stat-cell {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.dash-mock .stat-cell .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-tertiary); margin-bottom: 4px; }
.dash-mock .stat-cell .val { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); font-variant-numeric: tabular-nums; }
.dash-mock .stat-cell .val.green { color: var(--green); }
.dash-mock .chart {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  height: 160px;
}
.dash-mock .chart-title { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 12px; }
.dash-mock .bars { display: flex; align-items: flex-end; gap: 6px; height: 100px; }
.dash-mock .bar { flex: 1; background: var(--accent); border-radius: 3px 3px 0 0; opacity: 0.75; }
@media (max-width: 720px) {
  .dash-mock .body { grid-template-columns: 1fr; }
  .dash-mock .side { display: none; }
  .dash-mock .stat-row { grid-template-columns: repeat(2, 1fr); }
  .dash-mock { margin-top: 40px; }
}
