
/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --ink:        #0e1117;
  --ink-soft:   #2a3040;
  --surface:    #ffffff;
  --ground:     #f4f6f0;
  --border:     #e2e6dc;
  --accent:     #0a6e5c;
  --accent-2:   #c8e87a;
  --accent-dim: rgba(10,110,92,0.08);
  --muted:      #7a8592;
  --danger:     #b83232;
 
  --serif:  'Fraunces', Georgia, serif;
  --sans:   'DM Sans', sans-serif;
  --mono:   'DM Mono', monospace;
 
  --max:    1160px;
  --rad:    3px;
}
 
/* ═══════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { scroll-behavior: smooth; font-size: 16px; }
 
body {
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
 
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
 
/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
 
/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
 
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
 
.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
 
.nav-logo-mark svg { width: 18px; height: 18px; fill: white; }
 
.nav-wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
 
.nav-wordmark em { font-style: normal; color: var(--accent); }
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
 
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
 
.nav-links a:hover { color: var(--ink); }
 
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
 
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
 
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
 
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 10px rgba(10,110,92,0.25);
}
 
.btn-primary:hover {
  background: #085c4d;
  box-shadow: 0 4px 18px rgba(10,110,92,0.35);
  transform: translateY(-1px);
}
 
.btn-large {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
}
 
.btn svg { width: 16px; height: 16px; fill: currentColor; }
 
/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding-top: 64px; /* nav offset */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ground);
  position: relative;
  overflow: hidden;
}
 
/* Organic background shapes */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
 
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
 
.hero-blob-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -100px;
}
 
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-2);
  bottom: -100px; left: -80px;
}
 
/* Dot grid */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,110,92,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
 
.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
 
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(10,110,92,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
 
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}
 
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
 
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
 
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
 
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
 
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
 
.trust-dots {
  display: flex;
  gap: 3px;
}
 
.trust-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}
 
.trust-dot:nth-child(1) { opacity: 0.9; }
.trust-dot:nth-child(2) { opacity: 0.6; }
.trust-dot:nth-child(3) { opacity: 0.3; }
 
/* Hero stat card */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
 
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
 
.stat-card.green::before { background: var(--accent); }
.stat-card.lime::before { background: var(--accent-2); }
.stat-card.red::before { background: var(--danger); }
 
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
 
.stat-value {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
 
.stat-card.green .stat-value { color: var(--accent); }
.stat-card.red .stat-value { color: var(--danger); }
.stat-card.lime .stat-value { color: #5a8a0a; }
 
.stat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
 
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
 
/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
.section {
  padding: 100px 40px;
}
 
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
 
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
 
.section-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
 
.section-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
 
.section-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 640px;
}
 
/* ═══════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════ */
.problem-section {
  background: var(--ink);
  color: white;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
 
.problem-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
 
.problem-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
.problem-section .section-label { color: var(--accent-2); }
.problem-section .section-label::before { background: var(--accent-2); }
 
.problem-section .section-headline { color: white; }
.problem-section .section-headline em { color: rgba(255,255,255,0.4); }
 
.problem-section .section-body { color: rgba(255,255,255,0.65); max-width: 100%; }
 
.problem-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
 
.problem-quote cite {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 16px;
}
 
.problem-costs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.cost-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: border-color 0.2s;
}
 
.cost-item:hover { border-color: rgba(200,232,122,0.3); }
 
.cost-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200,232,122,0.1);
  border: 1px solid rgba(200,232,122,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
 
.cost-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
 
.cost-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
 
/* ═══════════════════════════════════════
   SOLUTION / FEATURES
═══════════════════════════════════════ */
.features-section { background: var(--surface); }
 
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
}
 
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
  position: relative;
}
 
.feature-card:hover { background: var(--ground); }
 
.feature-number {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
}
 
.feature-card:hover .feature-number { color: rgba(10,110,92,0.15); }
 
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
 
.feature-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
 
.feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
 
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 3px;
}
 
/* ═══════════════════════════════════════
   SOCIAL PROOF / MOMENT
═══════════════════════════════════════ */
.moment-section {
  background: var(--ground);
  padding: 100px 40px;
}
 
.moment-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
 
.moment-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
 
.timeline-item:last-child { padding-bottom: 0; }
 
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
 
.timeline-item:last-child::before { display: none; }
 
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  font-family: var(--mono);
  transition: all 0.2s;
  z-index: 1;
}
 
.timeline-item.active .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
 
.timeline-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  padding-top: 4px;
}
 
.timeline-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
 
/* Moment callout card */
.moment-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
 
.moment-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
 
.moment-quote {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: white;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
 
.moment-quote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--accent-2);
}
 
.moment-context {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
 
/* ═══════════════════════════════════════
   PRICING / APPROACH
═══════════════════════════════════════ */
.approach-section { background: var(--surface); }
 
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
 
.approach-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
 
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
 
.approach-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
 
.approach-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--accent-2);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
 
.approach-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
 
.approach-card.featured .approach-title { color: white; }
 
.approach-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
 
.approach-card.featured .approach-price {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.15);
}
 
.approach-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
 
.approach-card.featured .approach-desc { color: rgba(255,255,255,0.75); }
 
.approach-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.approach-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}
 
.approach-card.featured .approach-features li { color: rgba(255,255,255,0.85); }
 
.approach-features li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
 
.approach-card.featured .approach-features li::before { color: var(--accent-2); }
 
/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: var(--accent);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
 
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
 
.cta-section::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
 
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
 
.cta-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
 
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}
 
.cta-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-2);
}
 
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.65;
}
 
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
 
.btn-white {
  background: white;
  color: var(--accent);
  font-weight: 700;
}
 
.btn-white:hover {
  background: var(--ground);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
 
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
 
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}
 
.cta-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
 
/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 48px 40px;
}
 
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
 
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
 
.footer-logo-mark {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
 
.footer-logo-mark svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }
 
.footer-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
 
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
 
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
 
.footer-links a:hover { color: rgba(255,255,255,0.8); }
 
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
 
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .moment-inner { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid { grid-template-columns: 1fr; max-width: 480px; }
}
 
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 72px 24px; }
  .problem-section, .moment-section, .cta-section { padding: 72px 24px; }
  .hero-inner { padding: 60px 24px 80px; }
  .hero-aside { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
 
/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
