/* ============================================================
   REBURN — foundry design system

   The accent is molten-metal temperature, not a brand colour.
   The treasury gauge cools from white-hot to dull slag as it
   drains, so the brightest thing on the page is also the most
   honest one. Everything else stays quiet: hairline borders,
   flat panels, monospace instrumentation.
   ============================================================ */

:root {
  /* base — near-black with a faint warm cast, not blue-grey */
  --void:    #050608;
  --ink:     #08090c;
  --panel:   #0e1116;
  --panel-2: #131720;
  --raised:  #191e28;

  --line:      #1c212b;
  --line-warm: #30231a;

  --text:  #e9edf4;
  --muted: #7b8492;
  --dim:   #49515f;

  /* heat ramp — cool slag through molten to white-hot */
  --slag:  #8f2611;
  --cool:  #c2411b;
  --ember: #ff6b1f;
  --flame: #ffb03a;
  --hot:   #fff4cc;
  --heat:  var(--flame);

  --ok:  #4ade80;
  --bad: #f0654a;

  --display: 'Archivo', system-ui, sans-serif;
  --body:    'IBM Plex Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --r:    7px;
  --r-lg: 12px;
  --gut:  22px;
  --max:  660px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--void); color: var(--text); }

body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* furnace glow, low and warm, anchored to the top of the page */
body::before {
  content: '';
  position: fixed;
  inset: -25% -20% auto -20%;
  height: 78vh;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 107, 31, 0.13), transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 8%, rgba(255, 176, 58, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* fine grain so flat darks don't band on cheap phone panels */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── ember field ──────────────────────────────────────────
   Sparks drifting up off the furnace. Pure CSS, no canvas and
   no JS. Each ember carries its own size, lane, drift and
   timing as inline custom properties.                       */

.embers { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.ember {
  position: absolute;
  bottom: -12px;
  left: var(--x);
  width: var(--sz);
  height: var(--sz);
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 6px 1px rgba(255, 107, 31, 0.7);
  opacity: 0;
  animation: rise var(--dur) linear var(--delay) infinite;
}

@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0; }
  8%   { opacity: 0.75; }
  55%  { opacity: 0.45; }
  100% { transform: translate3d(var(--drift), -102vh, 0) scale(0.35); opacity: 0; }
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  position: relative;
  z-index: 2;
}

/* ── top bar ─────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 6, 8, 0.86);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); min-width: 0; }

.logo-slot {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--flame);
}
.logo-slot img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; display: block; }
.logo-slot svg { width: 100%; height: 100%; }

.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.topnav { display: flex; align-items: center; gap: 16px; }
.topnav a.navlink {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.topnav a.navlink:hover { color: var(--flame); }
@media (max-width: 430px) { .topnav a.navlink { display: none; } }

/* ── buttons ─────────────────────────────────────────────── */

.btn {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--text);
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover:not(:disabled) { border-color: var(--dim); background: var(--raised); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn:focus-visible { outline: 2px solid var(--flame); outline-offset: 2px; }

.btn-connect { white-space: nowrap; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; }
.btn-connect.on { color: var(--flame); border-color: var(--line-warm); background: rgba(255, 176, 58, 0.08); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 9px 13px;
}
.btn-ghost:hover:not(:disabled) { color: var(--flame); border-color: var(--line-warm); }

.btn-primary,
.btn-hot {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #170d03;
  background: linear-gradient(180deg, var(--hot) 0%, var(--flame) 55%, var(--ember) 100%);
  border: none;
  box-shadow:
    0 0 0 1px rgba(255, 176, 58, 0.35),
    0 8px 30px -12px rgba(255, 107, 31, 0.9);
}
.btn-primary { width: 100%; padding: 16px; font-size: 15px; }
.btn-hot { padding: 15px 30px; font-size: 14px; }
.btn-primary:hover:not(:disabled),
.btn-hot:hover { filter: brightness(1.08); }
.btn-primary:disabled { background: var(--panel-2); color: var(--dim); box-shadow: none; }

/* ── shared bits ─────────────────────────────────────────── */

.label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.tk { color: var(--text); font-family: var(--mono); font-size: 0.94em; }

/* ── gauge (signature element) ───────────────────────────── */

.gauge {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 107, 31, 0.06), transparent 55%),
    var(--panel);
  padding: 21px;
  margin-bottom: 16px;
}

.gauge-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }

.pulse {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.pulse i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--heat);
  box-shadow: 0 0 9px var(--heat);
  animation: breathe 2.4s ease-in-out infinite;
}
.pulse.stale i { background: var(--bad); box-shadow: none; animation: none; }
@keyframes breathe { 0%, 100% { opacity: 1 } 50% { opacity: 0.2 } }

.gauge-figure { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 17px; }

.gauge-number {
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(31px, 9.5vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--heat);
  text-shadow: 0 0 38px color-mix(in srgb, var(--heat) 45%, transparent);
  transition: color 0.8s ease, text-shadow 0.8s ease;
  word-break: break-all;
}
.gauge-number.tick { animation: tick 0.5s ease; }
@keyframes tick { 0% { filter: brightness(2) } 100% { filter: brightness(1) } }

.gauge-unit { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--muted); }

.heatbar {
  position: relative;
  height: 10px;
  border-radius: 99px;
  background: #0a0c10;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 17px;
}
.heatbar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--slag), var(--cool) 30%, var(--heat));
  box-shadow: 0 0 18px -2px var(--heat);
  transition: width 0.9s cubic-bezier(.22, .8, .3, 1), background 0.9s ease;
}
.heatbar-ticks {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(5,6,8,.9) calc(10% - 1px) 10%);
  pointer-events: none;
}

.gauge-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.stat { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stat-k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.stat-v {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  overflow: hidden; text-overflow: ellipsis;
}

/* ── panels ──────────────────────────────────────────────── */

.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 21px;
  margin-bottom: 16px;
}

.panel.action { border-color: var(--line-warm); }

.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 19px; }
.panel-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0;
}

.chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 4px 11px;
  white-space: nowrap;
}
.chip.good { color: var(--flame); border-color: var(--line-warm); background: rgba(255,176,58,.08); }
.chip.bad  { color: var(--bad); border-color: #3a2119; background: rgba(240,101,74,.08); }

/* ── input ───────────────────────────────────────────────── */

.field { margin-bottom: 17px; }
.field-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.field-top label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--muted);
}
.field-meta { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }

.input-row {
  display: flex; align-items: center; gap: 8px;
  background: #0a0c10;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 5px 6px 5px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input-row:focus-within {
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(255, 176, 58, 0.09);
}
.input-row input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 22px; font-weight: 500;
  padding: 10px 0;
}
.input-row input::placeholder { color: #2f3743; }

.field-hints { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; min-height: 1px; }
.hint {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
  color: var(--dim); border: 1px solid var(--line);
  border-radius: 5px; padding: 3px 9px;
}
.hint.warn { color: var(--flame); border-color: var(--line-warm); }

.fineprint { margin: 13px 0 0; font-size: 12px; color: var(--dim); text-align: center; line-height: 1.55; }

/* ── steps ───────────────────────────────────────────────── */

.steps {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 6px 21px;
  margin-bottom: 16px;
}
.step { display: flex; gap: 15px; padding: 14px 0; opacity: 0.34; transition: opacity 0.3s ease; }
.step + .step { border-top: 1px solid var(--line); }
.step.active, .step.done { opacity: 1; }

.step-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--dim); flex: none; margin-top: 6px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.step.active .step-dot { background: var(--flame); box-shadow: 0 0 11px var(--flame); animation: breathe 1.4s ease-in-out infinite; }
.step.done  .step-dot { background: var(--ok); box-shadow: none; animation: none; }
.step.error .step-dot { background: var(--bad); box-shadow: none; animation: none; }

.step-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.step-name { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.11em; text-transform: uppercase; }
.step-note { font-size: 12.5px; color: var(--muted); word-break: break-word; }
.step-note a { color: var(--flame); }

/* ── notice ──────────────────────────────────────────────── */

.notice {
  border: 1px solid var(--line);
  border-left: 2px solid var(--muted);
  border-radius: var(--r);
  background: var(--panel);
  padding: 14px 17px;
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}
.notice.error   { border-left-color: var(--bad); color: #ffbdae; }
.notice.success { border-left-color: var(--ok);  color: #b6f2ce; }
.notice a { color: inherit; }

/* ── address rows ────────────────────────────────────────── */

.addresses {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 16px;
}
.addr { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 17px; }
.addr + .addr { border-top: 1px solid var(--line); }
.addr-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim); flex: none;
}
.addr-v {
  font-family: var(--mono); font-size: 12px; color: var(--text);
  background: none; border: none; padding: 4px 0; cursor: pointer;
  text-align: right; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.addr-v:hover { color: var(--flame); }
.addr-v.copied { color: var(--ok); }
.addr-v:focus-visible { outline: 2px solid var(--flame); outline-offset: 2px; border-radius: 3px; }

/* ── feed ────────────────────────────────────────────────── */

.feed { margin-bottom: 36px; }
.feed-title {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 11px; font-weight: 400;
}
.feed-list {
  list-style: none; margin: 0; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--panel); overflow: hidden;
}
.feed-list li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 13px 17px; font-family: var(--mono); font-size: 12.5px;
}
.feed-list li + li { border-top: 1px solid var(--line); }
.feed-empty { color: var(--dim); justify-content: center !important; }
.feed-w { color: var(--muted); flex: none; }
.feed-a { color: var(--heat); overflow: hidden; text-overflow: ellipsis; text-align: right; }
.feed-s { font-size: 10px; color: var(--dim); letter-spacing: .11em; text-transform: uppercase; flex: none; }

/* ── footer ──────────────────────────────────────────────── */

.foot { border-top: 1px solid var(--line); padding: 24px 0 44px; text-align: center; }
.foot-links { display: flex; gap: 19px; justify-content: center; margin-bottom: 13px; flex-wrap: wrap; }
.foot-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
}
.foot-links a:hover { color: var(--flame); }
.foot-note { margin: 0; font-size: 11.5px; color: var(--dim); max-width: 42ch; margin-inline: auto; line-height: 1.55; }

/* ══════════════════════════════════════════════════════════
   LANDING
   ══════════════════════════════════════════════════════════ */

.hero { padding: 46px 0 34px; text-align: center; }

.hero-mark {
  width: clamp(132px, 34vw, 190px);
  height: clamp(132px, 34vw, 190px);
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  color: var(--flame);
  position: relative;
}
.hero-mark::after {
  content: '';
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 31, 0.24), transparent 68%);
  z-index: -1;
  animation: glowPulse 4.5s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.07); } }
.hero-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 26px; display: block; }
.hero-mark svg { width: 100%; height: 100%; }

.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(42px, 14vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero-title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--hot) 5%, var(--flame) 45%, var(--ember) 75%, var(--cool));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  max-width: 42ch;
  margin: 0 auto 30px;
}

.hero-cta { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }

/* contract block */
.ca-block {
  border: 1px solid var(--line-warm);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 107, 31, 0.07), transparent 60%), var(--panel);
  padding: 21px;
  margin-bottom: 16px;
}
.ca-block .label { display: block; margin-bottom: 11px; }
.ca-btn {
  width: 100%;
  font-family: var(--mono);
  font-size: clamp(11px, 3.2vw, 14px);
  color: var(--hot);
  background: #0a0c10;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 15px;
  cursor: pointer;
  word-break: break-all;
  text-align: left;
  line-height: 1.5;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.ca-btn:hover { border-color: var(--flame); }
.ca-btn.copied { color: var(--ok); border-color: var(--ok); }
.ca-note { margin: 11px 0 0; font-size: 12px; color: var(--dim); line-height: 1.55; }

/* three-up */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.three > div {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 18px 16px;
}
.three b {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 8px;
}
.three span { font-size: 13px; color: var(--muted); line-height: 1.55; display: block; }
@media (max-width: 560px) { .three { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   DOCS
   ══════════════════════════════════════════════════════════ */

.doc { padding: 36px 0 20px; }
.doc h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 9.5vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.doc .lede { color: var(--muted); font-size: 15.5px; margin: 0 0 10px; max-width: 46ch; line-height: 1.62; }
.doc section { margin-bottom: 28px; }
.doc h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 0 0 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.doc p { margin: 0 0 13px; font-size: 14.5px; line-height: 1.65; }
.doc p:last-child { margin-bottom: 0; }
.doc strong { color: var(--hot); font-weight: 600; }

.card { border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); padding: 18px 20px; }
.card.hot { border-left: 2px solid var(--flame); }

.flow { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.flow li { position: relative; padding-left: 36px; margin-bottom: 16px; counter-increment: s; }
.flow li:last-child { margin-bottom: 0; }
.flow li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 1px solid var(--line-warm);
  color: var(--flame);
  font-family: var(--mono);
  font-size: 11px;
  display: grid; place-items: center;
}
.flow b {
  display: block; font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 3px;
}
.flow span { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

.ca { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.ca-v {
  font-family: var(--mono); font-size: 12.5px; color: var(--hot);
  background: none; border: none; cursor: pointer; padding: 4px 0;
  word-break: break-all; text-align: left;
}
.ca-v:hover { color: var(--flame); }
.ca-v.copied { color: var(--ok); }

.back {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  margin-bottom: 24px;
}
.back:hover { color: var(--flame); }

.qa { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
.qa:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.qa h3 { font-size: 14px; font-weight: 600; margin: 0 0 6px; color: var(--text); }
.qa p { color: var(--muted); font-size: 13.5px; margin: 0; }

/* ── responsive ──────────────────────────────────────────── */

@media (max-width: 460px) {
  :root { --gut: 16px; }
  .gauge-foot { gap: 9px; }
  .addr { flex-direction: column; align-items: flex-start; gap: 5px; }
  .addr-v { text-align: left; width: 100%; }
  .topbar-inner { height: 66px; }
  .logo-slot { width: 40px; height: 40px; }
  .brand-name { font-size: 17px; }
  .hero { padding: 34px 0 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .embers { display: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
