/* ============================================================
   SIMD-547: resource-based fee burn explainer
   Solana brand system (solana.com): #121212 ground, white
   neo-grotesque type, tight tracking, pill CTAs, the
   purple -> green gradient. Warm tones are used only as the
   semantic "burn intensity" inside the data viz.
   ============================================================ */

:root {
  /* ground */
  --bg: #121212;
  --bg-deep: #0d0d10;
  --bg-elev: #1a1a1c;
  --bg-elev-2: #202023;

  /* ink */
  --ink: #ffffff;
  --muted: #c0c0c0;
  --dim: #8c8c8e;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);

  /* Solana brand */
  --sol-purple: #9945ff;
  --sol-green: #14f195;
  --sol-mint: #00ffbd;
  --sol-cyan: #00d1ff;
  --sol-deep-purple: #14001d;

  --grad-sol: linear-gradient(96deg, #9945ff 0%, #14f195 100%);
  --grad-sol-3: linear-gradient(100deg, #9945ff 0%, #00d1ff 52%, #14f195 100%);

  /* burn intensity (data viz only) */
  --burn-cool: #6b7480;
  --burn-warm: #ffb02e;
  --burn-hot: #ff6a1f;
  --grad-burn: linear-gradient(90deg, #ffc24a, #ff8a1f 55%, #ff5a1f);

  --font-display: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg,
canvas {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--sol-purple);
  color: #fff;
}

/* keyboard focus (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid var(--sol-mint);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- background field ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(115% 80% at 82% 4%, rgba(153, 69, 255, 0.16), transparent 55%),
    radial-gradient(95% 70% at 8% 102%, rgba(20, 241, 149, 0.1), transparent 58%),
    radial-gradient(70% 60% at 96% 96%, rgba(0, 209, 255, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 26%, transparent 76%);
  opacity: 0.35;
}

/* film grain */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, 2%); }
  80% { transform: translate(4%, 3%); }
  100% { transform: translate(0, 0); }
}

.embers {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 189, 0.7);
  background: radial-gradient(circle, rgba(20, 241, 149, 0.22), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 70;
  mix-blend-mode: screen;
  transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s var(--ease);
  will-change: transform;
}
.cursor--hot {
  width: 52px;
  height: 52px;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.32), transparent 72%);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(320px, 74vw);
}
.preloader__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--dim);
}
.preloader__id {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 8vw, 46px);
  letter-spacing: -0.03em;
  background: var(--grad-sol);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.preloader__bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: var(--line-strong);
  overflow: hidden;
}
.preloader__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--grad-sol);
  box-shadow: 0 0 16px rgba(20, 241, 149, 0.5);
}
.preloader__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sol-mint);
}
.accent {
  background: var(--grad-sol);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 44px);
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.82), transparent);
  backdrop-filter: blur(6px);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.nav__flame {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad-sol);
  box-shadow: 0 0 12px 1px rgba(20, 241, 149, 0.7);
  animation: flicker 2.6s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}
.nav__links {
  display: flex;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}
.nav__links a {
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--grad-sol);
  transition: width 0.28s var(--ease);
}
.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  width: 100%;
}
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}
.nav__status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol-green);
  box-shadow: 0 0 9px var(--sol-green);
  animation: flicker 2s ease-in-out infinite;
}

/* ---------- buttons (Solana pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--primary {
  color: #0b0b0c;
  background: #ffffff;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -10px rgba(0, 255, 189, 0.5);
}
.btn--ghost {
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--sol-mint);
  color: var(--sol-mint);
  transform: translateY(-2px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  width: min(var(--maxw), 90vw);
  margin-inline: auto;
  padding: 140px 0 80px;
}
.hero__grid {
  max-width: 640px;
}
.hero__title {
  font-size: clamp(52px, 11vw, 132px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 22px 0 26px;
}
.hero__title span {
  display: block;
}
.hero__title--hot {
  background: var(--grad-sol-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 40px rgba(153, 69, 255, 0.3));
}
.hero__lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.62;
}
.hero__lede .accent {
  font-weight: 600;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* copyable contract address */
.ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-top: 22px;
  padding: 8px 12px 8px 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.ca:hover,
.ca:focus-visible {
  border-color: var(--sol-mint);
  transform: translateY(-1px);
}
.ca__tag {
  flex: none;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #0b0b0c;
  background: var(--grad-sol);
  padding: 4px 9px;
  border-radius: 999px;
}
.ca__addr {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
}
.ca__icon {
  flex: none;
  display: inline-flex;
  color: var(--dim);
  transition: color 0.2s var(--ease);
}
.ca__icon svg {
  width: 15px;
  height: 15px;
}
.ca:hover .ca__icon,
.ca:focus-visible .ca__icon {
  color: var(--sol-mint);
}
.ca__done {
  flex: none;
  display: none;
  font-weight: 600;
  color: var(--sol-green);
}
.ca.is-copied {
  border-color: var(--sol-green);
}
.ca.is-copied .ca__icon {
  display: none;
}
.ca.is-copied .ca__done {
  display: inline;
}

/* coin */
.hero__coin {
  display: grid;
  place-items: center;
}
.coin {
  position: relative;
  width: min(340px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.coin__glow {
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.45), rgba(20, 241, 149, 0.2) 46%, transparent 70%);
  filter: blur(26px);
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}
.coin__mark {
  position: relative;
  width: 58%;
  filter: drop-shadow(0 0 22px rgba(153, 69, 255, 0.5)) drop-shadow(0 0 30px rgba(20, 241, 149, 0.3));
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: var(--grad-sol);
  animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.015);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: clamp(14px, 2.4vw, 20px);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  will-change: transform;
  animation: marquee 28s linear infinite;
}
.marquee__dot {
  background: var(--grad-sol);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- generic section ---------- */
.section {
  width: min(var(--maxw), 90vw);
  margin-inline: auto;
  padding: clamp(90px, 14vh, 150px) 0;
}
.section__head {
  max-width: 900px;
  margin-bottom: 54px;
}
.section__title {
  font-size: clamp(26px, 4.4vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-top: 16px;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards--matters {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  position: relative;
  padding: 28px 24px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bg-elev), rgba(26, 26, 28, 0.4));
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-sol);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.card:hover::before {
  transform: scaleX(1);
}
.card__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  background: var(--grad-sol);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 14px 0 10px;
  letter-spacing: -0.02em;
}
.card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- numbers (pinned) ---------- */
.numbers {
  position: relative;
}
.numbers__pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  width: min(var(--maxw), 90vw);
  margin-inline: auto;
  padding: 100px 0;
}
.numbers__head {
  max-width: 820px;
}
.numbers__title {
  font-size: clamp(26px, 4.6vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 14px;
}

.bars {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 0 34px;
}
.bar__label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.bar__note {
  color: var(--dim);
}
.bar__track {
  position: relative;
  height: 46px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 5px;
  will-change: transform;
}
.bar__fill--dim {
  background: linear-gradient(90deg, #59636f, #79828f);
}
.bar__fill--warm {
  background: linear-gradient(90deg, #ffc24a, var(--burn-warm) 60%, var(--burn-hot));
  box-shadow: 0 0 26px rgba(255, 138, 31, 0.35);
}
.bar__fill--hot {
  background: var(--grad-burn);
  box-shadow: 0 0 34px rgba(255, 90, 31, 0.45);
}
.bar__val {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}
/* near-zero bar: keep the value beside the sliver, not pinned to the far right */
.bar--tiny .bar__val {
  right: auto;
  left: 14px;
}
.bars__inflation {
  position: absolute;
  top: -4px;
  bottom: 34px;
  left: var(--infl);
  width: 0;
  border-left: 2px dashed rgba(255, 255, 255, 0.6);
  opacity: 0;
}
.bars__infl-label {
  position: absolute;
  top: -2px;
  right: 10px;
  white-space: nowrap;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-sol-3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__cap {
  display: block;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 26ch;
}

/* ---------- steps ---------- */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
}
.step {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.step:last-child {
  border-bottom: 1px solid var(--line);
}
.step__no {
  flex: none;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  background: rgba(153, 69, 255, 0.08);
  color: var(--sol-mint);
}
.step h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.step p {
  color: var(--muted);
  margin-top: 6px;
  max-width: 60ch;
  font-size: 15px;
}

/* ---------- quote ---------- */
.quote {
  width: min(var(--maxw), 90vw);
  margin: clamp(40px, 8vh, 80px) auto;
  padding: clamp(48px, 8vw, 90px) clamp(28px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(153, 69, 255, 0.16), transparent 55%),
    radial-gradient(120% 140% at 0% 100%, rgba(20, 241, 149, 0.14), transparent 55%),
    var(--bg-elev);
  overflow: hidden;
}
.quote__inner {
  max-width: 880px;
}
.quote blockquote {
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
  margin: 18px 0 20px;
}
.quote__by {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ---------- footer ---------- */
.footer {
  width: min(var(--maxw), 90vw);
  margin: 60px auto 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.footer__row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__note {
  max-width: 62ch;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
}
.footer__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
}
.footer__x {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer__x:hover,
.footer__x:focus-visible {
  color: var(--sol-mint);
}

/* ---------- reveal (JS-driven) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
}
.is-ready .reveal {
  will-change: opacity, transform;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
    gap: 8px;
  }
  .hero__coin {
    order: -1;
    margin-bottom: 6px;
  }
  .coin {
    width: 180px;
  }
  .nav__links {
    display: none;
  }
  .cards,
  .cards--matters,
  .stats {
    grid-template-columns: 1fr;
  }
  .numbers__pin {
    min-height: auto;
    padding: 90px 0;
  }
}
@media (max-width: 560px) {
  .nav__status {
    display: none;
  }
  .bar__val {
    font-size: 12px;
    right: 10px;
  }
  .bar--tiny .bar__val {
    left: 10px;
  }
  /* keep the inflation caption on-screen: anchor it to the container's right edge */
  .bars__inflation {
    left: auto !important;
    right: 0;
    border-left: none;
    border-right: 2px dashed rgba(255, 255, 255, 0.55);
  }
  .bars__infl-label {
    font-size: 9px;
    right: 6px;
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .grain,
  .embers,
  .coin,
  .coin__glow {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
