/* ========== Everything — styles ==========
   Rule: clean minimal frame, chaos in the content.
   Frame = nav, sections, buttons, type. Chaos = gallery tiles.
   ========================================== */

:root {
  --bg: #ffffff;
  --ink: #0b0b0b;
  --ink-soft: #4a4a4a;
  --ink-muted: #8a8a8a;
  --rule: #111111;
  --accent: #f5b800;        /* logo yellow/gold */
  --accent-deep: #d89a00;
  --accent-ink: #0b0b0b;    /* text on yellow */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }

img { max-width: 100%; display: block; }

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
}

/* ---------- NAV ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: var(--bg);
  border-bottom: 1px solid #eee;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav__logo { height: 28px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
  font-size: 14px;
}

.nav__links a { text-decoration: none; }
.nav__links a:not(.nav__cta):hover { text-decoration: underline; text-underline-offset: 4px; }

.nav__cta {
  padding: 9px 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--ink);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.12s ease, color 0.12s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--accent); }

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 10vw, 120px) var(--pad) clamp(56px, 10vw, 120px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 28px;
  overflow: hidden;
}

.hero > *:not(.hero__bg) {
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(var(--hero-cols, 20), 1fr);
  grid-auto-rows: 1fr;
  /* keep center readable — edges full, center fades out */
  -webkit-mask-image: radial-gradient(ellipse 55% 55% at center, transparent 30%, rgba(0,0,0,0.65) 60%, #000 85%);
          mask-image: radial-gradient(ellipse 55% 55% at center, transparent 30%, rgba(0,0,0,0.65) 60%, #000 85%);
}

.hero__bg > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.6vw, 22px);
  line-height: 1;
  opacity: 0;
  will-change: opacity, transform;
  animation-name: heroFlash;
  animation-duration: var(--d, 3s);
  animation-delay: var(--o, 0s);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  filter: saturate(1.05);
  user-select: none;
}

@media (max-width: 700px) {
  .hero__bg > span { font-size: clamp(16px, 4vw, 24px); }
  /* softer mask on mobile so there's visible chaos behind hero text */
  .hero__bg {
    -webkit-mask-image: radial-gradient(ellipse 70% 45% at center, transparent 22%, rgba(0,0,0,0.55) 50%, #000 80%);
            mask-image: radial-gradient(ellipse 70% 45% at center, transparent 22%, rgba(0,0,0,0.55) 50%, #000 80%);
  }
}

@keyframes heroFlash {
  0%   { opacity: 0;    transform: scale(0.88); }
  18%  { opacity: 0.85; transform: scale(1); }
  62%  { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg > span { animation: none; opacity: 0.35; }
}

.hero__logo {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  mix-blend-mode: multiply; /* drops the white jpg background on white bg */
}

.hero__title {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 12vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
}

.hero__ticker {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 18px 32px;
  min-width: min(260px, 100%);
  max-width: 100%;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.12s ease, color 0.12s ease, transform 0.08s ease;
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--accent); }
.btn:active { transform: translateY(1px); }

.btn__label { font-size: 18px; }
.btn__sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.8;
}

/* ---------- SECTIONS ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad);
}

.section__title {
  font-family: "Archivo Black", "Space Grotesk", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}

/* ---------- MANIFESTO ---------- */

.manifesto__body {
  max-width: 720px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  font-weight: 500;
}
.manifesto__body p { margin: 0 0 18px; }
.manifesto__body em { font-style: italic; color: var(--accent-deep); }

/* ---------- FACTORY (manifesto section) ----------
   Crude 3D conveyor belt. Items ride in from left, get
   stamped "$EVERYTHING" mid-belt, exit as gold coins.
   Pure CSS 3D — no libs.
----------------------------------------------------- */

.manifesto { }

.factory {
  position: relative;
  margin: 0 0 clamp(32px, 5vw, 56px);
  height: clamp(200px, 26vw, 320px);
  background: #fafafa;
  border: 1.5px solid #111;
  box-shadow: 8px 8px 0 #111;
  overflow: hidden;
}

.factory__scene {
  position: absolute;
  inset: 0;
  perspective: 900px;
  perspective-origin: 50% 30%;
  transform-style: preserve-3d;
}

.factory__belt {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 8%;
  height: 70px;
  transform: rotateX(62deg);
  transform-origin: 50% 0%;
  background:
    repeating-linear-gradient(90deg,
      #2b2b2b 0 22px, #1a1a1a 22px 24px,
      #2b2b2b 24px 46px, #0c0c0c 46px 48px);
  animation: factoryBelt 0.55s linear infinite;
  box-shadow: 0 10px 0 #060606, 0 20px 40px rgba(0,0,0,0.25);
}
@keyframes factoryBelt {
  from { background-position: 0 0; }
  to   { background-position: -48px 0; }
}

.factory__belt-shadow {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.06) 80%, rgba(0,0,0,0.12) 100%);
}

.factory__track {
  position: absolute;
  left: 0; right: 0;
  bottom: 30%;
  height: 0;
  transform-style: preserve-3d;
}

.factory__item {
  position: absolute;
  left: -10%;
  bottom: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
  transform: translateX(0);
  animation-name: factoryRun;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}
.factory__item__obj {
  display: inline-block;
  animation: factoryObjFade 8s linear infinite;
  animation-delay: var(--delay, 0s);
}
.factory__item__coin {
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  width: 1.1em; height: 1.1em;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd84a 0%, var(--accent) 50%, var(--accent-deep) 100%);
  border: 2px solid #111;
  box-shadow: inset -4px -6px 0 rgba(0,0,0,0.18), 0 3px 5px rgba(0,0,0,0.25);
  opacity: 0;
  animation: factoryCoinFade 8s linear infinite;
  animation-delay: var(--delay, 0s);
  color: #111;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.26em;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.factory__item__coin::before {
  content: "$";
  position: absolute;
  font-size: 0.55em;
  font-family: "Archivo Black", sans-serif;
  color: #111;
}

@keyframes factoryRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(130vw); }
}
@keyframes factoryObjFade {
  0%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}
@keyframes factoryCoinFade {
  0%, 48% { opacity: 0; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
  55%, 100% { opacity: 1; transform: scale(1); }
}

.factory__stamp {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
  width: clamp(110px, 15vw, 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: factoryStamp 2s ease-in-out infinite;
  transform-origin: 50% 0%;
  z-index: 3;
}
.factory__stamp-arm {
  width: 6px;
  height: clamp(40px, 6vw, 70px);
  background: linear-gradient(180deg, #333, #111);
  border: 1px solid #000;
}
.factory__stamp-head {
  background: var(--accent);
  color: #111;
  border: 2px solid #111;
  padding: 10px 14px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.08em;
  box-shadow: 4px 4px 0 #111;
  white-space: nowrap;
}
@keyframes factoryStamp {
  0%, 35%  { transform: translateX(-50%) translateY(0); }
  45%      { transform: translateX(-50%) translateY(42%); }
  55%      { transform: translateX(-50%) translateY(42%); }
  65%, 100%{ transform: translateX(-50%) translateY(0); }
}

.factory__flash {
  position: absolute;
  left: 50%;
  bottom: 32%;
  width: clamp(70px, 10vw, 130px);
  height: clamp(70px, 10vw, 130px);
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, 50%) scale(0);
  opacity: 0;
  animation: factoryFlash 2s ease-in-out infinite;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
@keyframes factoryFlash {
  0%, 40%  { opacity: 0; transform: translate(-50%, 50%) scale(0); }
  48%      { opacity: 0.55; transform: translate(-50%, 50%) scale(1.6); }
  55%      { opacity: 0; transform: translate(-50%, 50%) scale(2.2); }
  100%     { opacity: 0; transform: translate(-50%, 50%) scale(0); }
}

/* ---------- TWEETS (receipts section) ---------- */

.tweets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}
@media (max-width: 900px) {
  .tweets { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tweets { grid-template-columns: 1fr; }
}

.tweet {
  display: block;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 1.5px solid #111;
  padding: 18px 20px 20px;
  box-shadow: 5px 5px 0 #111;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.tweet:hover,
.tweet:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--accent);
  background: #fdfdfa;
  outline: none;
}

.tweet--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .tweet--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .tweet--wide { grid-column: span 1; }
}

.tweet__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tweet__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  overflow: hidden;
  border: 1.5px solid #111;
}
.tweet__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tweet__id {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.tweet__name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tweet__handle {
  color: #777;
  font-size: 13px;
  line-height: 1.2;
  margin-top: 2px;
}
.tweet__icon {
  width: 18px;
  height: 18px;
  color: #111;
  flex-shrink: 0;
  opacity: 0.85;
}
.tweet:hover .tweet__icon { opacity: 1; }

.tweet__body {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  margin: 0;
  white-space: pre-wrap;
  color: #111;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.tweet__body mark {
  background: var(--accent);
  color: #111;
  padding: 0 4px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- TORNADO (gallery section) ----------
   3 counter-rotating 3D rings of tokenizable objects.
------------------------------------------------- */

.gallery-section { position: relative; }

.tornado-wrap {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vw, 640px);
  perspective: 1400px;
  perspective-origin: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tornado {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.tornado__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
}
.tornado__ring--a { animation: tornadoSpinA 30s linear infinite; }
.tornado__ring--b { animation: tornadoSpinB 26s linear infinite; }
.tornado__ring--c { animation: tornadoSpinC 36s linear infinite; }

@keyframes tornadoSpinA {
  from { transform: translate(-50%, -50%) rotateY(0); }
  to   { transform: translate(-50%, -50%) rotateY(360deg); }
}
@keyframes tornadoSpinB {
  from { transform: translate(-50%, calc(-50% - clamp(110px, 14vw, 180px))) rotateX(-10deg) rotateY(360deg); }
  to   { transform: translate(-50%, calc(-50% - clamp(110px, 14vw, 180px))) rotateX(-10deg) rotateY(0); }
}
@keyframes tornadoSpinC {
  from { transform: translate(-50%, calc(-50% + clamp(110px, 14vw, 180px))) rotateX(10deg) rotateY(0); }
  to   { transform: translate(-50%, calc(-50% + clamp(110px, 14vw, 180px))) rotateX(10deg) rotateY(360deg); }
}

.tornado__item {
  position: absolute;
  top: 0; left: 0;
  min-width: 64px;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid #111;
  box-shadow: 3px 3px 0 #111;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  white-space: nowrap;
  backface-visibility: visible;
}
.tornado__item--accent {
  background: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  padding: 12px 18px;
}
.tornado__item--ink {
  background: #111;
  color: var(--accent);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(14px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  padding: 12px 18px;
}

@media (max-width: 640px) {
  .tornado-wrap { height: clamp(380px, 100vw, 460px); perspective: 900px; }
  .tornado__item {
    min-width: 44px;
    padding: 6px 9px;
    font-size: 22px;
    box-shadow: 2px 2px 0 #111;
  }
  .tornado__item--accent,
  .tornado__item--ink {
    padding: 7px 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

/* ---------- RECEIPT 3D (how-to-buy section) ----------
   Infinite-scroll 3D-tilted receipt paper. The strip is
   rendered twice in JS so translateY(-50%) loops cleanly.
------------------------------------------------------- */

.buy__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 820px) {
  .buy__layout { grid-template-columns: 1fr; }
}

.receipt3d {
  position: relative;
  height: clamp(420px, 58vw, 560px);
  perspective: 1100px;
  perspective-origin: 50% 40%;
}

@media (max-width: 820px) {
  .receipt3d { height: clamp(360px, 85vw, 500px); perspective: 900px; }
}

.receipt3d__panel {
  position: absolute;
  inset: 0;
  margin: 0 auto;
  max-width: 360px;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateY(-8deg) rotateZ(-2deg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(253,253,250,0) 0%, #fdfdfa 10%, #fdfdfa 90%, rgba(253,253,250,0) 100%);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.18),
    0 6px 18px rgba(0,0,0,0.12);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-right: 1px solid rgba(0,0,0,0.05);
}

.receipt3d__scroll {
  padding: 24px 26px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  color: #111;
  animation: receiptScroll 11s linear infinite;
  will-change: transform;
}
@keyframes receiptScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.receipt3d__header {
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 14px 0 10px;
  border-bottom: 2px dashed #333;
  margin-bottom: 10px;
}
.receipt3d__meta {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-bottom: 14px;
}
.receipt3d__line {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px dashed #ccc;
}
.receipt3d__line--big {
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 2px solid #222;
  border-top: 2px solid #222;
  margin: 10px 0;
}

@media (max-width: 640px) {
  .receipt3d__panel {
    max-width: 300px;
    transform: rotateX(10deg) rotateY(-4deg) rotateZ(-1deg);
  }
  .receipt3d__scroll { padding: 18px 20px; font-size: 12px; }
  .receipt3d__header { font-size: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .factory__belt,
  .factory__item,
  .factory__item__obj,
  .factory__item__coin,
  .factory__stamp,
  .factory__flash,
  .tornado__ring,
  .receipt3d__scroll { animation: none !important; }
}

/* ---------- HOW TO BUY ---------- */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  display: grid;
  gap: 14px;
  font-size: clamp(18px, 2vw, 22px);
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.steps__n {
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  color: var(--accent-deep);
}

.steps__hint {
  margin: 18px 0 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid #111;
  box-shadow: 4px 4px 0 #111;
}

/* ---------- SOCIALS ---------- */

.socials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}
@media (max-width: 560px) {
  .socials__grid { grid-template-columns: 1fr; }
}
.social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: #fff;
  border: 1.5px solid #111;
  text-decoration: none;
  color: #111;
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background 0.12s ease, color 0.12s ease;
}
.social svg { width: 22px; height: 22px; }
.social:hover { background: var(--accent); }

/* ---------- FOOTER ---------- */

.footer {
  border-top: 1px solid #eee;
  padding: 28px var(--pad) 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  font-size: 13px;
}
.footer__row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer__row--muted { color: var(--ink-muted); }
.footer__label {
  font-family: "Archivo Black", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}
.footer__ca {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--ink-soft);
  background: #f5f5f5;
  padding: 6px 10px;
  border: 1px solid #eee;
}
