/* =============================================================
   Argus — marketing site styles
   Editorial · Mono-data · Cream + Deep-dark · Forest accent
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --paper: #EFEAE0;            /* warm cream — base background */
  --paper-2: #E8E2D5;          /* slightly deeper cream — cards on cream */
  --paper-3: #DAD3C2;          /* deepest cream — hairline tints */
  --ink: #16140F;              /* near-black, slight warmth */
  --ink-muted: #6B6760;
  --ink-faint: #9C988F;
  --rule: rgba(22, 20, 15, 0.10);
  --rule-strong: rgba(22, 20, 15, 0.22);

  --dark: #0E0D0B;             /* deep dark for inverted sections */
  --dark-2: #1A1815;
  --dark-3: #26231F;
  --on-dark: #F2EDE4;
  --on-dark-muted: #8A857B;
  --on-dark-faint: #5C5852;
  --rule-on-dark: rgba(242, 237, 228, 0.10);

  --accent: #2F5945;           /* deep forest green */
  --accent-bright: #4A8970;
  --accent-soft: #C5D6CC;
  --alarm: #B85A3C;            /* warm rust — used in product viz */
  --warn: #D4A24C;             /* warm amber */

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --container: 1280px;
  --container-narrow: 980px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}

/* ---------- Layout primitives ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: clamp(80px, 10vw, 140px) 0; }
.section-tight { padding: clamp(56px, 6vw, 84px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.eyebrow.on-dark { color: var(--on-dark-muted); }

.eyebrow-with-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-with-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- Typography ---------- */
.display, h1.hero {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.display .em, h1.hero .em {
  font-style: italic;
  color: var(--accent);
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

h2.section-title .em { font-style: italic; color: var(--accent); }

h3.feature-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.lede {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 620px;
  margin: 0;
}

.on-dark { color: var(--on-dark); }
.on-dark .lede { color: var(--on-dark-muted); }
.on-dark h2.section-title { color: var(--on-dark); }
.on-dark h3.feature-title { color: var(--on-dark); }
.on-dark .display { color: var(--on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 120ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-primary.on-dark {
  background: var(--paper);
  color: var(--ink);
}
.btn-primary.on-dark:hover { background: var(--accent-soft); color: var(--ink); }

.btn-ghost {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-ghost.on-dark {
  border-color: var(--rule-on-dark);
  color: var(--on-dark);
}
.btn-ghost.on-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-arrow::after {
  content: '→';
  font-family: var(--font-sans);
  transition: transform 160ms ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 234, 224, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.nav-brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.nav-brand-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--paper);
}
.nav-brand-mark::before {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 140ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-cta-row .btn { padding: 9px 16px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero-wrap {
  padding-top: clamp(60px, 7vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-grid .hero-meta {
  border-left: 1px solid var(--rule);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-meta .lede { max-width: none; }

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

.hero-tag {
  display: inline-flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.hero-tag span:first-child { color: var(--accent); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid .hero-meta { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 24px; }
}

/* ---------- Path picker (home) ---------- */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.path {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 280px;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
  position: relative;
  overflow: hidden;
}

.path:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  background: var(--paper);
}

.path-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}

.path-title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 12px 0 6px;
}

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

.path-sub { color: var(--ink-muted); margin: 0; }

.path-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: auto;
}
.path-link::after { content: '→'; transition: transform 160ms ease; }
.path:hover .path-link::after { transform: translateX(4px); }

@media (max-width: 720px) {
  .paths { grid-template-columns: 1fr; }
}

/* ---------- Logo strip ---------- */
.logo-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--ink-faint);
}

.logo-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}

.logo-strip-logos {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
}

.logo-strip-logos span { opacity: 0.6; }

/* ---------- Dark sections ---------- */
.section-dark {
  background: var(--dark);
  color: var(--on-dark);
}

.section-dark .eyebrow { color: var(--on-dark-muted); }

/* ---------- Product viz (faux dashboard) ---------- */
.viz-frame {
  background: var(--dark-2);
  border: 1px solid var(--rule-on-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--on-dark);
}

.viz-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--rule-on-dark);
  background: var(--dark);
}

.viz-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.viz-dots {
  display: flex;
  gap: 6px;
}
.viz-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rule-on-dark);
}

.viz-bar-right {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--on-dark-faint);
}

/* table-style dashboard */
.viz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.viz-table th, .viz-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule-on-dark);
  font-weight: 400;
  vertical-align: middle;
}
.viz-table th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  background: var(--dark);
  font-weight: 500;
}
.viz-table tbody tr:hover { background: rgba(242,237,228,0.025); }
.viz-table .client-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--on-dark);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid;
}
.status-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.status-pill.red { color: #E68B72; border-color: rgba(184,90,60,0.3); background: rgba(184,90,60,0.10); }
.status-pill.red::before { background: var(--alarm); }
.status-pill.yellow { color: #DEB871; border-color: rgba(212,162,76,0.3); background: rgba(212,162,76,0.10); }
.status-pill.yellow::before { background: var(--warn); }
.status-pill.green { color: #93D2A8; border-color: rgba(74,137,112,0.3); background: rgba(74,137,112,0.10); }
.status-pill.green::before { background: var(--accent-bright); }

.viz-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--rule-on-dark);
  font-size: 11px;
  color: var(--on-dark-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark);
}

/* compact issue card variant */
.issue-card {
  background: var(--dark-2);
  border: 1px solid var(--rule-on-dark);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.32);
}

.issue-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--rule-on-dark);
  font-family: var(--font-mono);
  font-size: 13px;
}
.issue-row:first-of-type { border-top: none; }
.issue-row .pill-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.issue-row.red .pill-dot { background: var(--alarm); }
.issue-row.yellow .pill-dot { background: var(--warn); }
.issue-row.green .pill-dot { background: var(--accent-bright); }
.issue-row .issue-label { color: var(--on-dark); font-family: var(--font-sans); font-size: 14px; font-weight: 500;}
.issue-row .issue-meta { color: var(--on-dark-faint); font-size: 12px; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 56px;
}

.feature {
  background: var(--paper);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}

.feature p { color: var(--ink-muted); margin: 0; font-size: 15.5px; }

@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Section header (eyebrow + title + lede) ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 24px;
}

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Two-column with viz ---------- */
.viz-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .viz-section { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Quote ---------- */
.quote-block {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.quote-attr {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
  text-transform: uppercase;
}

/* ---------- What we check (list table) ---------- */
.checks-list {
  border-top: 1px solid var(--rule);
}

.check-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr auto;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.check-row .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
}

.check-row .name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.005em;
}

.check-row .desc {
  color: var(--ink-muted);
  font-size: 15px;
}

.check-row .frequency {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

@media (max-width: 880px) {
  .check-row { grid-template-columns: 1fr; gap: 4px; }
  .check-row .num { display: none; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 540px;
}

.tier.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
}
.tier.featured h3.tier-name { color: var(--paper); }
.tier.featured .tier-feat { color: var(--paper); }
.tier.featured .tier-feat-sub { color: rgba(242,237,228,0.6); }
.tier.featured .tier-blurb { color: rgba(242,237,228,0.7); }
.tier.featured .tier-list li { color: rgba(242,237,228,0.85); }
.tier.featured .tier-list li::before { background: var(--accent-bright); }
.tier.featured .btn-primary { background: var(--paper); color: var(--ink); }
.tier.featured .btn-primary:hover { background: var(--accent-bright); color: var(--paper); }

.tier-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--paper);
  padding: 4px 10px;
  border-radius: 4px;
}

.tier h3.tier-name {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.01em;
  margin: 0;
}

.tier-blurb {
  color: var(--ink-muted);
  font-size: 15px;
  margin: -12px 0 0;
  min-height: 44px;
}

.tier-feat {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.tier-feat-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  display: block;
  margin-top: 4px;
}

.tier-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 auto;
}

.tier-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
}

.tier-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 11px;
  height: 1.5px;
  background: var(--accent);
}

.tier .btn { width: 100%; justify-content: center; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--rule); }
.faq {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
}
.faq-a { color: var(--ink-muted); }

@media (max-width: 880px) {
  .faq { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
  padding: 72px clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin: clamp(80px, 10vw, 140px) 0;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
}
.cta-banner h2 .em { font-style: italic; color: var(--accent-bright); }

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.cta-banner-actions p { color: var(--on-dark-muted); margin: 0; }

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

@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; padding: 48px 32px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-on-dark);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .nav-brand { color: var(--on-dark); font-size: 28px; }
.footer-brand .nav-brand-mark::after { background: var(--dark); }
.footer-brand p { color: var(--on-dark-muted); max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-dark-muted);
  margin: 0 0 14px;
  font-weight: 500;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: var(--on-dark); font-size: 14px; transition: color 140ms; }
.footer-col li a:hover { color: var(--accent-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--on-dark-faint);
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Stats row ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule-on-dark);
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}

.stat {
  background: var(--dark);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat .number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.stat .number .em { color: var(--accent-bright); font-style: italic; }
.stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Page-specific (Owners) trend block ---------- */
.trend-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 110px;
}

.bar {
  flex: 1;
  background: var(--paper-3);
  border-radius: 2px;
  position: relative;
}
.bar.bar-green { background: var(--accent-bright); }
.bar.bar-red { background: var(--alarm); }
.bar.bar-yellow { background: var(--warn); }
.bar.bar-now { outline: 1px solid var(--ink); outline-offset: 1px; }

.trend-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ---------- Misc ---------- */
.section-divider {
  height: 1px;
  background: var(--rule);
  margin: 0;
  border: none;
}

.muted { color: var(--ink-muted); }

.tabular { font-variant-numeric: tabular-nums; }

::selection { background: var(--accent); color: var(--paper); }
