/* ===== PermitsDone — Design System =====
   Clean & trustworthy. Stripe/Linear vibe.
   ============================================ */

:root {
  /* Colors — light only (contractors view in daylight) */
  --bg: #FBFAF7;
  --surface: #FFFFFF;
  --surface-alt: #F5F3EE;
  --border: #E5E2DA;
  --border-strong: #D4D1CA;
  --text: #1A1814;
  --text-muted: #6B685F;
  --text-faint: #A6A39C;

  --primary: #0E5C53;            /* Deep teal — trust, calm */
  --primary-hover: #0A4640;
  --primary-soft: #DCEAE7;
  --accent: #E8714B;              /* Warm terracotta — CTAs */
  --accent-hover: #D45F3A;
  --accent-soft: #FCE8DF;

  --success: #2F7A3D;
  --warning: #B5611A;
  --error: #B23A4F;

  /* Type */
  --font-sans: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Type scale */
  --text-xs: 0.75rem;     /* 12 */
  --text-sm: 0.875rem;    /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-md: 1.0625rem;   /* 17 */
  --text-lg: 1.25rem;     /* 20 */
  --text-xl: 1.5rem;      /* 24 */
  --text-2xl: 2rem;       /* 32 */
  --text-3xl: 2.75rem;    /* 44 */
  --text-4xl: 3.75rem;    /* 60 */
  --text-hero: clamp(2.5rem, 5.5vw, 4.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 24, 20, 0.06), 0 1px 3px rgba(26, 24, 20, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 24, 20, 0.08), 0 2px 6px rgba(26, 24, 20, 0.04);

  /* Container */
  --container: 1200px;
  --container-narrow: 760px;
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ===== Layout helpers ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-9) 0; }
.section-tight { padding: var(--space-8) 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
}
h1 { font-size: var(--text-hero); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: var(--text-xl); line-height: 1.25; letter-spacing: -0.01em; }
h4 { font-size: var(--text-lg); font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.005em; line-height: 1.3; }
p { color: var(--text); }
.lead { font-size: var(--text-lg); color: var(--text-muted); line-height: 1.55; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--r-md);
  transition: all 160ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-alt); border-color: var(--text-faint); }
.btn-ghost { color: var(--text); padding: 0.5rem 0; }
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 1.05rem 1.85rem; font-size: var(--text-md); }

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 160ms ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand svg { width: 28px; height: 28px; }
.nav-links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  padding: var(--space-8) 0 var(--space-6);
  margin-top: var(--space-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-6);
}
.footer-brand p { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--space-3); max-width: 28ch; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { color: var(--text); font-size: var(--text-sm); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: var(--text-xs);
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ===== Cards / Common blocks ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  transition: border-color 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--border-strong); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pill-dot::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}

/* ===== Marquee strip ===== */
.divider-line {
  height: 1px;
  background: var(--border);
  margin: var(--space-6) 0;
}

/* ===== Forms ===== */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-4);
}
.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}
.field .help { font-size: var(--text-xs); color: var(--text-muted); }
.input, .select, .textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 92, 83, 0.15);
}

/* ===== Anti-AI-look details ===== */
::selection { background: var(--accent-soft); color: var(--text); }

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

/* ===== Reclara-grade utilities (added in redesign) ===== */

/* Gradient brand text */
.brand-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #1A8478 60%, var(--accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.05em;
}

/* Subtle grain background — for hero sections */
.grain-bg {
  background-image:
    radial-gradient(rgba(14, 92, 83, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(232, 113, 75, 0.03) 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  background-position: 0 0, 14px 14px;
}
.grain-bg-soft {
  background-image: radial-gradient(rgba(14, 92, 83, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Section label / pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--primary-soft);
  color: #094E47;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(14, 92, 83, 0.12);
}
.pill svg { width: 12px; height: 12px; }
.pill-accent {
  background: var(--accent-soft);
  color: #9B3C1E;
  border-color: rgba(232, 113, 75, 0.18);
}
.pill-neutral {
  background: var(--surface-alt);
  color: var(--text-muted);
  border-color: var(--border);
}

/* Browser chrome card (for hero preview) */
.browser-card {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow:
    0 1px 0 rgba(26, 24, 20, 0.04),
    0 24px 48px -12px rgba(14, 92, 83, 0.18),
    0 8px 16px -8px rgba(26, 24, 20, 0.08);
  overflow: hidden;
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.browser-chrome .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.browser-chrome .dot-r { background: #FF5F57; }
.browser-chrome .dot-y { background: #FEBC2E; }
.browser-chrome .dot-g { background: #28C840; }
.browser-chrome .url {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
.browser-chrome .url-spacer { flex: 1; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.card-hover { transition: all 200ms ease; }
.card-hover:hover {
  border-color: var(--text-faint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Numbered step circle */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
}
.step-icon svg { width: 18px; height: 18px; }

/* Tag (mono uppercase) */
.tag-mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Pricing card */
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-6) var(--space-7);
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 92, 83, 0.08), var(--shadow-md);
}
.price-card .ribbon {
  position: absolute;
  top: -12px;
  left: var(--space-5);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-left: 4px;
}
.price-features {
  list-style: none;
  margin: var(--space-5) 0;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: var(--text-base);
  color: var(--text);
}
.price-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E5C53' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 10 18 19 7'/></svg>") center / 12px no-repeat;
}

/* Trust card (icon + headline + body) */
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.trust-card .icon-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 14px;
}
.trust-card .icon-frame svg { width: 20px; height: 20px; }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-item .faq-body {
  padding: 0 0 var(--space-5);
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.65;
  max-width: 70ch;
}

/* Logo strip / social proof */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  opacity: 0.7;
}
.logo-strip span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Quote block */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-7);
  position: relative;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--primary-soft);
  position: absolute;
  top: 24px;
  left: 24px;
  pointer-events: none;
}
.quote-card .quote-body {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
  padding-left: 12px;
}
.quote-card .quote-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: 12px;
}

/* Mock browser report preview */
.report-preview {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6);
}
@media (min-width: 720px) {
  .report-preview { grid-template-columns: 1.2fr 1fr; padding: var(--space-7); }
}
.report-preview .preview-section {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text);
}
.report-preview .preview-aside {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-5);
}
.report-preview .field-table {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  font-size: var(--text-xs);
  margin-top: 10px;
}
.report-preview .field-table .row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  padding: 9px 12px;
  border-top: 1px solid var(--border);
}
.report-preview .field-table .row:first-child {
  background: var(--surface-alt);
  font-weight: 600;
  border-top: none;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero meta line */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--success); }

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--primary);
}
.stat .label {
  margin-top: 6px;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Two-up grid */
.grid-2 { display: grid; gap: var(--space-5); }
.grid-3 { display: grid; gap: var(--space-5); }
.grid-4 { display: grid; gap: var(--space-5); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0A4640 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 113, 75, 0.22) 0, transparent 38%),
    radial-gradient(circle at 82% 110%, rgba(255, 255, 255, 0.10) 0, transparent 40%);
  pointer-events: none;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin-top: var(--space-3); }
.cta-banner .btn-primary { margin-top: var(--space-5); }

/* Section spacing rhythms */
.section-tight-y { padding: var(--space-8) 0; }
.divider-top { border-top: 1px solid var(--border); }


/* ===== Hero ===== */
.hero-section {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  overflow: hidden;
}
.hero-section .grain-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(rgba(14, 92, 83, 0.06) 1px, transparent 1px),
    radial-gradient(rgba(232, 113, 75, 0.04) 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  background-position: 0 0, 14px 14px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
          mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}
.hero-container { position: relative; z-index: 1; }
.hero-title {
  margin-top: 22px;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 18ch;
}
.hero-lead {
  margin-top: 22px;
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-preview {
  margin-top: 64px;
}

/* Section heads */
.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}
.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  letter-spacing: -0.025em;
}
.section-head p.lead {
  margin-top: 14px;
  font-size: var(--text-md);
}
.section-head[style*="text-align"] {
  margin-left: auto;
  margin-right: auto;
}

/* Status pill / timeline (preview card) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.status-pill.status-filed {
  background: rgba(47, 122, 61, 0.12);
  color: #1F5F2A;
}
.status-pill.status-filed::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(47, 122, 61, 0.18);
}

.status-timeline {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.status-timeline li {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 0.86rem;
}
.status-timeline .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-strong);
  margin-left: 4px;
}
.status-timeline .dot.done { background: var(--primary); }
.status-timeline .dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.status-timeline .dot.pending { background: var(--border-strong); }
.status-timeline .time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Nav refinement */
.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-right: 12px;
}
.nav-link:hover { color: var(--text); }

