/* wpekits.com — brand: indigo / amber / mint on violet-white */

:root {
  --bg: #FBFBFE;
  --ink: #14142B;
  --kit: #4338F5;
  --kit-deep: #2A22B8;
  --signal: #FFB020;
  --mint: #2FD3A6;
  --muted: #5B5B78;
  --line: #E4E4F0;

  --font-display: "Syne", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --wrap: 1200px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--kit); text-decoration-color: color-mix(in srgb, var(--kit) 40%, transparent); }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

code, .mono { font-family: var(--font-mono); }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 8px; }

:focus-visible {
  outline: 2px solid var(--kit);
  outline-offset: 2px;
  border-radius: 4px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--kit);
  color: #fff;
}
.btn-primary:hover { background: var(--kit-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--kit); color: var(--kit); }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  margin-right: auto;
}
.brand-mark { flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
}
.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
}
.site-nav a { color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--kit); }

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

/* hero */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  max-width: 20ch;
  margin: 0 auto 0.5em;
}
.hero .lead {
  max-width: 60ch;
  margin: 0 auto 32px;
  font-size: 19px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* product pill — used as the "which product" tag throughout the page */
.product-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 14px;
}
.product-pill-kit {
  color: var(--kit-deep);
  background: color-mix(in srgb, var(--kit) 14%, transparent);
}
.product-pill-signal {
  color: color-mix(in srgb, var(--signal) 55%, var(--ink));
  background: color-mix(in srgb, var(--signal) 20%, transparent);
}
.product-pill-oninverse { background: color-mix(in srgb, #fff 16%, transparent); }
.product-pill-kit.product-pill-oninverse { color: #fff; }
.product-pill-signal.product-pill-oninverse { color: var(--signal); }

/* hero two-product split */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0 0;
  text-align: left;
}
.product-panel {
  border-radius: 20px;
  padding: 32px 30px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.product-panel-kit {
  background: color-mix(in srgb, var(--kit) 6%, #fff);
  border-color: color-mix(in srgb, var(--kit) 24%, var(--line));
}
.product-panel-signal {
  background: color-mix(in srgb, var(--signal) 8%, #fff);
  border-color: color-mix(in srgb, var(--signal) 30%, var(--line));
}
.product-mark {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}
.product-mark-kit { background: var(--kit); color: #fff; }
.product-mark-signal { background: var(--signal); color: var(--ink); }
.product-mark svg rect { fill: currentColor; }
.product-panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  margin-bottom: 0.4em;
}
.product-desc {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 15.5px;
}
.product-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-bullets li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: 14.5px;
}
.product-bullets li:last-child { border-bottom: 1px solid var(--line); }
.product-bullets span { font-weight: 700; color: inherit; }
.product-panel .btn { align-self: flex-start; margin-top: auto; }

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

.hero-scene-figure { margin: 48px 0 0; }
.hero-scene-caption {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 12px;
}

.hero-scene {
  position: relative;
  margin: 0 auto;
  max-width: var(--wrap);
  height: min(60vh, 560px);
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% 10%, color-mix(in srgb, var(--kit) 10%, transparent), transparent 60%),
    linear-gradient(160deg, #FBFBFE 0%, #F1F1FC 60%, #FBFBFE 100%);
  border: 1px solid var(--line);
}
#scene-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
#scene-canvas.is-ready { opacity: 1; }

.hero-scene-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 30% 20%, color-mix(in srgb, var(--kit) 25%, transparent), transparent),
    radial-gradient(50% 70% at 80% 70%, color-mix(in srgb, var(--mint) 20%, transparent), transparent),
    radial-gradient(40% 60% at 60% 90%, color-mix(in srgb, var(--signal) 20%, transparent), transparent);
  display: none;
}
.hero-scene.no-webgl .hero-scene-fallback { display: block; }
.hero-scene.no-webgl #scene-canvas { display: none; }

@media (max-width: 720px) {
  .hero-scene { height: 340px; border-radius: 18px; margin-top: 32px; }
}

/* product zones — group multiple sections under one product identity */
.product-zone-intro {
  padding: 72px 0 0;
  text-align: center;
}
.product-zone-intro h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); }
.product-zone-lead {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
@media (max-width: 720px) {
  .product-zone-intro { padding-top: 56px; }
}
.product-zone-signal {
  background: linear-gradient(180deg, color-mix(in srgb, var(--signal) 8%, var(--bg)) 0%, var(--bg) 40%);
}

/* facts strip */
.facts-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--kit) 4%, var(--bg));
  padding: 36px 0;
  margin-top: 56px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: var(--kit);
}
.fact-label { color: var(--muted); font-size: 14px; }

@media (max-width: 720px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
}

/* WPE Kits patterns — separate product, signal/amber accent band */
.wpekits-patterns {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--signal) 14%, var(--bg)) 0%, var(--bg) 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wpekits-patterns-inner { max-width: 820px; }
.wpekits-patterns .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: color-mix(in srgb, var(--signal) 60%, var(--ink));
  background: color-mix(in srgb, var(--signal) 18%, transparent);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.wpekits-patterns h2 { margin-bottom: 0.4em; }
.wpekits-patterns-summary {
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 0;
}
.wpekits-patterns-caps {
  margin: 18px 0;
  padding-left: 1.2em;
  color: var(--muted);
}
.wpekits-patterns-caps li { margin: 6px 0; }
.wpekits-patterns-meta {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 20px;
}
.wpekits-patterns-actions { margin-top: 24px; }
.wpekits-patterns-subhead {
  font-size: 1.05rem;
  margin: 32px 0 4px;
}
.btn-signal {
  background: var(--signal);
  color: var(--ink);
}
.btn-signal:hover { background: color-mix(in srgb, var(--signal) 82%, black); }

.steps-signal { gap: 24px; margin-top: 16px; }
.steps-signal h4 { font-size: 1rem; margin: 0 0 4px; font-family: var(--font-display); }
.steps-signal p { margin: 0; color: var(--muted); font-size: 14.5px; }
.step-num-signal { background: var(--signal); color: var(--ink); width: 30px; height: 30px; font-size: 14px; }

/* compare table */
.compare-table-wrap { margin-top: 28px; overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  border-bottom: 2px solid var(--line);
}
.compare-table th[scope="row"] {
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.compare-col-kit { color: var(--kit-deep); }
.compare-col-signal { color: color-mix(in srgb, var(--signal) 55%, var(--ink)); }
.compare-note {
  margin-top: 20px;
  font-weight: 600;
  color: var(--muted);
}

/* generic section rhythm */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }
.facts-strip { padding: 36px 0; }

section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 0.6em;
}

/* two kinds */
.kinds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}
.kind-col h3 { font-size: 1.3rem; margin-bottom: 0.3em; }
.kind-col > p { color: var(--muted); margin-top: 0; }
.kind-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.kind-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.kind-list li:last-child { border-bottom: 1px solid var(--line); }

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

/* featured */
.featured { background: var(--ink); color: #fff; }
.featured h2 { color: #fff; }
.featured-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.featured-card {
  background: color-mix(in srgb, #fff 6%, var(--ink));
  border: 1px solid color-mix(in srgb, #fff 12%, transparent);
  border-radius: var(--radius);
  padding: 20px;
}
.featured-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.featured-card .slug {
  color: var(--mint);
  font-size: 12.5px;
  display: block;
  margin-bottom: 10px;
}
.featured-card p {
  color: color-mix(in srgb, #fff 72%, transparent);
  font-size: 14.5px;
  margin: 0;
}

@media (max-width: 960px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* catalog */
.catalog-intro { color: var(--muted); margin-top: -8px; }
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 8px;
}
.search-field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.search-field input:focus-visible { outline: 2px solid var(--kit); outline-offset: 1px; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.chip:hover { border-color: var(--kit); color: var(--kit); }
.chip[aria-pressed="true"] {
  background: var(--kit);
  border-color: var(--kit);
  color: #fff;
}
.chip-row-kind .chip[aria-pressed="true"] {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
}
.checkbox-field input { accent-color: var(--kit); width: 16px; height: 16px; }

.catalog-count {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.kit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}
.kit-card { display: flex; flex-direction: column; }
.kit-card.is-highlight { border-color: color-mix(in srgb, var(--signal) 50%, var(--line)); }
.kit-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlight-mark { color: var(--signal); font-size: 0.85em; }
.kit-card .kit-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.kit-card .slug {
  font-size: 12px;
  color: var(--muted);
}
.version-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--kit-deep);
  background: color-mix(in srgb, var(--kit) 12%, transparent);
  padding: 2px 8px;
  border-radius: 999px;
}
.kind-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: color-mix(in srgb, var(--mint) 22%, transparent);
  padding: 2px 8px;
  border-radius: 999px;
}
.kit-card .desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.kit-card .category-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--mint);
  font-weight: 600;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.tag-chip {
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
}

.kit-card details {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.kit-card summary {
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--kit);
  list-style: none;
}
.kit-card summary::-webkit-details-marker { display: none; }
.kit-card summary::before { content: "+ "; }
.kit-card details[open] summary::before { content: "\2212 "; }
.kit-details-body { margin-top: 10px; }
.kit-details-desc { font-size: 13.5px; color: var(--ink); margin: 0 0 10px; }
.kit-details-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  margin: 0;
  font-size: 12.5px;
}
.kit-details-dl dt { color: var(--muted); font-weight: 600; }
.kit-details-dl dd { margin: 0; color: var(--ink); }
.kit-details-warning {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--signal) 70%, var(--ink));
  font-weight: 600;
}

.catalog-empty { color: var(--muted); padding: 32px 0; }

@media (max-width: 960px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* static list — SEO/crawler fallback, hidden once JS renders the grid */
.static-list-wrap { margin-top: 8px; }
.static-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 3;
  column-gap: 24px;
  font-size: 13px;
}
.static-list li {
  break-inside: avoid;
  padding: 4px 0;
  border-bottom: 1px dashed var(--line);
}
.static-list code {
  color: var(--muted);
  font-size: 11px;
  display: block;
}
.static-list-cat {
  color: var(--mint);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
}
.static-list-patterns {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.js .static-list-wrap { display: none; }

@media (max-width: 720px) {
  .static-list { columns: 1; }
}

/* how it works */
.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.steps li > div {
  min-width: 0;
  flex: 1 1 auto;
}
.step-num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kit);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 { font-size: 1.15rem; margin-bottom: 4px; }
.steps p { margin: 0 0 8px; color: var(--muted); }
.fine-print { font-size: 13.5px; }

.code-block {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--ink);
  color: #E4E4F0;
  padding: 16px 18px;
  border-radius: 10px;
  overflow-x: auto;
  max-width: 100%;
  margin: 12px 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.code-block code { color: inherit; }

/* production */
.production { background: color-mix(in srgb, var(--kit) 5%, var(--bg)); }
.production p { max-width: 68ch; font-size: 18px; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--kit);
  margin-left: 16px;
  flex: none;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list p { margin: 12px 0 0; color: var(--muted); max-width: 66ch; }

/* cta — two columns, one per product */
.cta { background: var(--ink); color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta-lead { color: color-mix(in srgb, #fff 78%, transparent); max-width: 56ch; margin: 0 auto 40px; }
.cta-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.cta-col {
  background: color-mix(in srgb, #fff 6%, var(--ink));
  border: 1px solid color-mix(in srgb, #fff 14%, transparent);
  border-radius: var(--radius);
  padding: 28px;
}
.cta-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.cta-col > p:not(.product-pill) { color: color-mix(in srgb, #fff 74%, transparent); margin: 0 0 20px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-ghost { color: #fff; border-color: color-mix(in srgb, #fff 40%, transparent); }
.cta .btn-ghost:hover { border-color: #fff; }
.cta .btn-primary { background: #fff; color: var(--kit-deep); }
.cta .btn-primary:hover { background: color-mix(in srgb, #fff 88%, var(--kit)); }
.cta-col-signal .btn-primary { color: color-mix(in srgb, var(--signal) 60%, var(--ink)); }

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

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-inner > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 40ch;
}
.footer-inner p { margin: 0; color: var(--muted); font-size: 14px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.copyright {
  width: 100%;
  margin-top: 24px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
