/* ========================================================================
   satsroad v2 — redesign draft
   Wider editorial layout · split hero · proper nav · refined packs grid.
   Coexists with style.css; everything here is scoped under the body tree
   of /v2/ pages, which do not load style.css.
   ======================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --surface: #121217;
  --surface-2: #181820;
  --border: #23232c;
  --border-2: #2d2d38;
  --fg: #ececf1;
  --fg-2: #c4c4cf;
  --muted: #8a8a99;
  --muted-2: #66667a;
  --accent: #f7931a;
  --accent-2: #ffb45a;
  --accent-soft: rgba(247, 147, 26, 0.12);
  --accent-line: rgba(247, 147, 26, 0.35);
  --success: #4ade80;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-accent: 0 2px 12px rgba(247, 147, 26, 0.25);

  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: "Fraunces", "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

a, a:visited {
  color: var(--accent);
  text-decoration: none;
}
a:hover { color: var(--accent-2); }

code {
  font-family: var(--mono);
  font-size: 0.88em;
}

/* subtle grid texture + soft glow */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(247, 147, 26, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(247, 147, 26, 0.04) 0%, transparent 35%),
    linear-gradient(to bottom, var(--bg), var(--bg));
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 40%, transparent 85%);
}

/* ── nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--fg);
}
.brand:hover { color: var(--fg); }

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--accent-line), 0 0 12px rgba(247, 147, 26, 0.2);
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  color: var(--fg-2);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  color: var(--accent) !important;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
}
.nav-cta:hover {
  color: var(--accent-2) !important;
  background: rgba(247, 147, 26, 0.2);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── main ────────────────────────────────────────────────────────────── */
.main {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

/* ── hero ────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 2rem 0 4rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 0 3rem;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.display .accent {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.lede code {
  font-size: 0.82em;
  padding: 1px 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg);
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #1a0f00;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  color: #1a0f00;
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(247, 147, 26, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  color: var(--fg);
  background: var(--surface);
  border-color: var(--accent-line);
}

.btn-full {
  width: 100%;
}

/* ── terminal card (hero right) ──────────────────────────────────────── */
.hero-term {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.term-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.9rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.term-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3a3a44;
}
.term-dot-r { background: #ff6058; }
.term-dot-y { background: #ffbd2e; }
.term-dot-g { background: #27c93f; }

.term-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.term-body {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.65;
  padding: 1.25rem 1.25rem 1.5rem;
  color: var(--fg-2);
  white-space: pre-wrap;
  word-break: break-all;
}
.term-prompt { color: var(--accent); font-weight: 500; }
.term-cmd    { color: var(--fg); }
.term-dim    { color: var(--muted); }
.term-ok     { color: var(--success); }

/* ── sections ────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 58ch;
  margin-bottom: 2.5rem;
}

.section-head { margin-bottom: 0; }

/* ── how it works ────────────────────────────────────────────────────── */
.how {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.step-n {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
}

.step h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--fg-2);
  font-size: 0.92rem;
  line-height: 1.6;
}
.step code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.82em;
}

/* ── packs grid ──────────────────────────────────────────────────────── */
.packs {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.pack {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pack:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.pack-featured {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(247, 147, 26, 0.04), transparent 60%), var(--surface);
}
.pack-featured:hover { border-color: var(--accent); }

.pack-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}
.pack-tag-free {
  color: var(--success);
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
}

.pack-name {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.55rem;
  padding-right: 4rem;
}

.pack-desc {
  color: var(--fg-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.pack-more {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.pack-more:hover { color: var(--accent-2); }

.pack-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  margin: auto 0 1.2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-sats {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-unit {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.price-usd {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout { margin-top: 0; }

/* ── invoice / paid states (HTMX-swapped fragments) ──────────────────── */
/* these are rendered by _invoice.html / _paid.html which use the
   original class names (.invoice, .paywith, .qr-link, .bolt11, .status,
   .paid, .note, .mac) — style them to fit the v2 look. */

.checkout .invoice {
  text-align: center;
  padding: 0.5rem 0;
}

.checkout .invoice .paywith {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}

.checkout .invoice .qr-link img {
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}

.checkout .invoice details {
  margin-top: 0.9rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--muted);
}
.checkout .invoice summary {
  cursor: pointer;
  color: var(--muted);
  padding: 0.3rem 0;
}
.checkout .invoice summary:hover { color: var(--fg-2); }

.checkout .bolt11 {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  text-align: left;
  word-break: break-all;
  white-space: pre-wrap;
  font-size: 0.7rem;
  font-family: var(--mono);
  color: var(--fg-2);
  margin-top: 0.5rem;
}

.checkout .status {
  color: var(--accent);
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.checkout .paid {
  text-align: center;
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.checkout .paid h2 {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.checkout .paid .buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--accent);
  color: #1a0f00;
  border: 0;
  padding: 0.78rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: var(--shadow-accent);
  text-decoration: none;
  margin-bottom: 0.85rem;
}
.checkout .paid .buy:hover { background: var(--accent-2); }
.checkout .paid .note {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.4rem;
  word-break: break-all;
}
.checkout .paid .note a { color: var(--fg); text-decoration: underline; }
.checkout .paid .note code,
.checkout .paid .mac {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: rgba(0,0,0,0.35);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--fg-2);
}

/* ── agents section ──────────────────────────────────────────────────── */
.agents {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.agents-grid {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2.25rem 2rem;
}

@media (max-width: 640px) {
  .agents-grid { padding: 1.5rem; }
}

/* ── docs styling (shared by agents partial + pack detail body) ──────── */
.docs h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin: 2rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.docs h2:first-child { margin-top: 0; }

.docs h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-2);
  margin: 1.4rem 0 0.45rem;
}

.docs p, .docs li {
  color: var(--fg-2);
  font-size: 0.93rem;
  line-height: 1.68;
}

.docs ul, .docs ol {
  padding-left: 1.35rem;
  margin: 0.55rem 0;
}

.docs li { margin-bottom: 0.55rem; }

.docs pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.docs pre code {
  font-family: var(--mono);
  color: var(--fg-2);
  background: transparent;
  padding: 0;
  border: 0;
  font-size: inherit;
}

.docs p code,
.docs li code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.85em;
  color: var(--fg);
}

.docs strong { color: var(--fg); font-weight: 600; }

.docs table,
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

.docs table thead,
.table thead {
  background: var(--surface-2);
}

.docs table th,
.table th {
  text-align: left;
  color: var(--fg);
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.docs table td,
.table td {
  color: var(--fg-2);
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.docs table td code,
.table td code {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* The docs partial uses class="docs-table" internally (inherited from the
   shared _agents_docs.html partial). Style those the same way. */
.docs .docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.88rem;
}
.docs .docs-table thead { background: var(--surface-2); }
.docs .docs-table th {
  text-align: left;
  color: var(--fg);
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.docs .docs-table td {
  color: var(--fg-2);
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.docs .docs-table td code {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.docs .docs-table th:first-child,
.docs .docs-table td:first-child { width: 1%; white-space: nowrap; }

/* the inherited _agents_docs.html opens with <div class="docs">,
   which we also need to inherit docs styling from. */
.docs .docs { padding: 0; }
.docs .docs h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  margin: 2rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.docs .docs h2:first-child { margin-top: 0; }
.docs .docs h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-2);
  margin: 1.4rem 0 0.45rem;
}
.docs .docs p,
.docs .docs li {
  color: var(--fg-2);
  font-size: 0.93rem;
  line-height: 1.68;
}
.docs .docs pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  overflow-x: auto;
  margin: 0.75rem 0 1rem;
}
.docs .docs pre code {
  font-family: var(--mono);
  color: var(--fg-2);
  background: transparent;
  padding: 0;
  border: 0;
  font-size: 0.82rem;
}
.docs .docs p code,
.docs .docs li code {
  background: var(--bg);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.85em;
  color: var(--fg);
}

/* ── pack detail ─────────────────────────────────────────────────────── */
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 3rem;
  align-items: start;
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.back {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: fit-content;
}
.back:hover { color: var(--fg); }

.detail-head {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.detail-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.85rem;
}

.detail-desc {
  color: var(--fg-2);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 60ch;
}

.detail-body { min-width: 0; }

.detail-side {
  position: sticky;
  top: 5rem;
}

@media (max-width: 900px) {
  .detail-side { position: static; order: -1; }
}

.buy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.buy-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1.1rem;
}

.buy-specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border);
}

.buy-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.88rem;
}

.buy-specs dt {
  color: var(--muted);
  font-weight: 500;
}

.buy-specs dd {
  color: var(--fg);
  text-align: right;
}

.buy-specs strong {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
}

.buy-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.buy-note code {
  background: var(--bg);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--fg-2);
  word-break: break-all;
  font-size: 0.72rem;
}

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

/* ── footer ──────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--fg);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
}

.footer-cols h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.footer-cols a {
  display: block;
  color: var(--fg-2);
  font-size: 0.9rem;
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.footer-cols a:hover { color: var(--accent); }

.footer-cols p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
