/* ==========================================================================
   Token system
   ========================================================================== */
:root {
  --ink: #0A0E13;
  --panel: #10161D;
  --panel-2: #161D26;
  --border: #232B35;
  --text: #E7ECEF;
  --text-muted: #8B98A5;
  --text-dim: #5B6670;
  --amber: #F2A63C;
  --amber-dim: rgba(242, 166, 60, 0.12);
  --teal: #46D1C0;
  --teal-dim: rgba(70, 209, 192, 0.12);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --max-w: 1120px;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(139,152,165,0.10) 1px, transparent 0);
  background-size: 28px 28px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.in-view { transition-delay: 0.08s; }
.reveal-delay-2.in-view { transition-delay: 0.16s; }
.reveal-delay-3.in-view { transition-delay: 0.24s; }
.reveal-delay-4.in-view { transition-delay: 0.32s; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 19, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.nav-links a:hover { color: var(--text); }
.nav-links .active { color: var(--text); }

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
}

.lang-btn {
  padding: 6px 10px;
  cursor: pointer;
  background: transparent;
  color: var(--text-dim);
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
}

.lang-btn.active {
  background: var(--teal-dim);
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal);
  color: #06201C;
}
.btn-primary:hover { background: #5adcc9; transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-dim); transform: translateY(-1px); }

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-dim);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--teal-dim); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.eyebrow.amber { color: var(--amber); }
.eyebrow.amber::before {
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-dim);
}

/* ==========================================================================
   Hero — two column with photo
   ========================================================================== */
.hero { padding: 72px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto 12px; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero .accent { color: var(--teal); }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 0 26px;
}

.proof-line {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--text-dim);
  border-left: 2px solid var(--teal);
  padding-left: 12px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

/* Trust card w/ photo */
.trust-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(70,209,192,0.08), 0 20px 60px -20px rgba(0,0,0,0.6);
}

.trust-card img {
  width: 100%;
  border-radius: 11px;
  display: block;
}

.trust-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  background: rgba(10,14,19,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.trust-badge .name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.trust-badge .role {
  font-size: 12.5px;
  color: var(--text-muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  margin-top: 8px;
}
.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ==========================================================================
   Signature diagram
   ========================================================================== */
.diagram-frame {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  padding: 28px 24px 20px;
}

.diagram-frame svg { width: 100%; height: auto; display: block; }

.diagram-caption {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.diagram-caption .amber-dot,
.diagram-caption .teal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
}
.amber-dot { background: var(--amber); }
.teal-dot { background: var(--teal); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 60ch;
  margin-bottom: 36px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.section-lede {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

/* ==========================================================================
   Pain log
   ========================================================================== */
.log {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
}

.log-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.log-row:last-child { border-bottom: none; }

.log-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--amber-dim);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.log-icon svg { width: 18px; height: 18px; }

.log-body { flex: 1; }

.log-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.closing-line {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 14.5px;
  color: var(--teal);
}

/* ==========================================================================
   Benefit cards (why modernize)
   ========================================================================== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.benefit-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.benefit-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-dim);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { width: 22px; height: 22px; }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 8px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* ==========================================================================
   Mini benefit strip (condensed, for Services page)
   ========================================================================== */
.mini-benefit-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mini-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--panel);
  flex: 1;
  min-width: 210px;
}
.mini-benefit .benefit-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.mini-benefit .benefit-icon svg { width: 18px; height: 18px; }
.mini-benefit span {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   Article / blog post
   ========================================================================== */
.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.article-body {
  max-width: 72ch;
  font-size: 17px;
  color: var(--text-muted);
}
.article-body p { margin: 0 0 22px; }
.article-body strong { color: var(--text); }
.article-body h2 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 44px 0 18px;
}
.article-body h3 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.15rem;
  margin: 32px 0 14px;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 18px;
  margin: 28px 0;
  color: var(--text);
  font-style: italic;
}
.article-body pre {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  overflow-x: auto;
  margin: 0 0 24px;
}
.article-body pre code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  background: none;
  padding: 0;
}
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  color: var(--teal);
  background: var(--teal-dim);
  padding: 2px 6px;
  border-radius: 4px;
}
.article-body figure { margin: 32px 0; }
.article-body figcaption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: center;
}

.article-share {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  align-items: center;
  flex-wrap: wrap;
}
.article-share span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   Blog listing
   ========================================================================== */
.blog-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.blog-card .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--text);
}
.blog-card p { color: var(--text-muted); font-size: 15px; margin: 0 0 14px; }
.blog-card .read-more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
}

/* ==========================================================================
   Generic cards / grid
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  padding: 26px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 10px;
}
.card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

/* ==========================================================================
   Checklist
   ========================================================================== */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text-muted);
}
.checklist li strong { color: var(--text); font-weight: 600; }
.check-icon {
  color: var(--teal);
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   Doc mockup (services hero visual)
   ========================================================================== */
.doc-mockup {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.doc-mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--panel-2);
}
.doc-mockup-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border);
}
.doc-mockup-body { padding: 22px; }
.doc-mockup-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.doc-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 9px;
}
.doc-line.w-90 { width: 90%; }
.doc-line.w-70 { width: 70%; }
.doc-line.w-50 { width: 50%; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}
.chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.chip.on { color: var(--teal); border-color: var(--teal); background: var(--teal-dim); }

.doc-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  margin-top: 6px;
}
.doc-chart span {
  flex: 1;
  background: var(--teal-dim);
  border-top: 2px solid var(--teal);
  border-radius: 2px 2px 0 0;
  animation: chart-grow 1.2s ease-out both;
}
@keyframes chart-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* ==========================================================================
   TCO bar chart
   ========================================================================== */
.tco-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) {
  .tco-wrap { grid-template-columns: 1fr; }
}

.tco-bars {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  height: 180px;
}
.tco-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.tco-bar {
  width: 100%;
  max-width: 88px;
  border-radius: 6px 6px 0 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  transform: scaleY(0);
  transform-origin: bottom;
}
.tco-bar.before { background: var(--amber); height: 150px; }
.tco-bar.after { background: var(--teal); height: 96px; }
.tco-bar.in-view { transform: scaleY(1); }
.tco-bar-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.tco-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--teal);
  margin: 0 0 8px;
}
.tco-note {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
}

/* ==========================================================================
   Pricing box
   ========================================================================== */
.price-box {
  border: 1px solid var(--teal);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--teal-dim), transparent 60%);
  padding: 32px;
  margin-top: 40px;
}
.price-box .price-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 8px;
}
.price-box .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0 0 6px;
}
.price-box .price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.price-box .price-note {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 24px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 15.5px; margin: 0 0 8px; font-weight: 600; }
.faq-item p { margin: 0; color: var(--text-muted); font-size: 14.5px; }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; max-width: 320px; margin: 0 auto; }
}

.about-photo-frame {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  background: var(--panel);
  box-shadow: 0 0 0 1px rgba(70,209,192,0.08), 0 20px 60px -20px rgba(0,0,0,0.6);
}
.about-photo-frame img { border-radius: 11px; }

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
}

.prose { max-width: 62ch; font-size: 17px; color: var(--text-muted); }
.prose p { margin: 0 0 20px; }
.prose strong { color: var(--text); }

.stat-strip {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin: 36px 0 40px;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  border-right: 1px solid var(--border);
  background: var(--panel);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.stat .label {
  font-size: 12.5px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Lead form
   ========================================================================== */
.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .lead-grid { grid-template-columns: 1fr; }
}

.lead-form-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 28px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  resize: vertical;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field textarea { min-height: 88px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

.form-msg {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  display: none;
}
.form-msg.show { display: block; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band { border-top: 1px solid var(--border); padding: 60px 0; text-align: center; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 16px;
}
.cta-band p { color: var(--text-muted); max-width: 46ch; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 13.5px;
  color: var(--text-dim);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer a:hover { color: var(--text-muted); }
