/* ==========================================================================
   SWARM — swarm.green
   Plain CSS. No build step, no frameworks, no inline styles anywhere.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --honey: #F5A623;
  --amber-deep: #E8890C;
  --comb: #FFC94D;
  --pollen: #FFE9A8;
  --cream: #FFF8E7;
  --hive-black: #0E1116;
  --bark: #161A21;
  --wax: #252A33;
  --ink: #E6EDF3;
  --ink-dim: #9AA4B2;
  --leaf: #3FB950;

  /* Derived tokens (accessibility + surfaces).
     --honey-ink is the darkest amber in the family; it is the only amber that
     clears WCAG AA (6.4:1) as text on --cream. Never set amber text on cream
     with --honey or --amber-deep. */
  --honey-ink: #8A4B03;
  --leaf-ink: #1A7530;
  --bark-dim: #525B69;
  --card-light: #FFFDF7;
  --rule-light: #F0DFB8;
  --rule-dark: rgba(245, 166, 35, .16);

  /* Contextual tokens, re-declared per band in section 3 */
  --bg: var(--hive-black);
  --fg: var(--ink);
  --fg-dim: var(--ink-dim);
  --accent: var(--honey);
  --surface: var(--wax);
  --rule: var(--rule-dark);
  --focus: var(--comb);
  --ok: var(--leaf);

  /* Type */
  --font-display: "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", "Consolas", monospace;

  /* Rhythm */
  --pad-x: clamp(20px, 5vw, 48px);
  --wrap: 1180px;
  --section-y: clamp(72px, 9vw, 132px);
  --radius: 18px;
  --chamfer: 26px;

  --ease: cubic-bezier(.22, .72, .2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset + base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--hive-black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--honey); color: var(--hive-black); }

.skip {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -140%;
  z-index: 200;
  background: var(--honey);
  color: var(--hive-black);
  font-weight: 600;
  padding: .85rem 1.4rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: translate .2s var(--ease);
}
.skip:focus { translate: -50% 0; }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout primitives + colour bands
   -------------------------------------------------------------------------- */
.wrap {
  width: min(var(--wrap), 100% - (var(--pad-x) * 2));
  margin-inline: auto;
}
.wrap--narrow { --wrap: 820px; }

.band {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  padding-block: var(--section-y);
  overflow: clip;
}

.band--dark  { --bg: var(--hive-black); --fg: var(--ink); --fg-dim: var(--ink-dim); --accent: var(--honey);     --surface: #191E26; --rule: var(--rule-dark);  --focus: var(--comb); --ok: var(--leaf); }
.band--dark2 { --bg: var(--bark);       --fg: var(--ink); --fg-dim: var(--ink-dim); --accent: var(--honey);     --surface: #1F242D; --rule: var(--rule-dark);  --focus: var(--comb); --ok: var(--leaf); }
.band--cream { --bg: var(--cream);      --fg: var(--bark); --fg-dim: var(--bark-dim); --accent: var(--honey-ink); --surface: var(--card-light); --rule: var(--rule-light); --focus: var(--honey-ink); --ok: var(--leaf-ink); }

/* Subtle honeycomb texture */
.band--comb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/comb.svg");
  background-size: 62px 107px;
  background-position: center top;
  pointer-events: none;
}
.band--dark.band--comb::before,
.band--dark2.band--comb::before { opacity: .13; }
.band--cream.band--comb::before { opacity: .18; }

.band > .wrap { position: relative; z-index: 1; }

/* Section headers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .7875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 11px; height: 12.7px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  flex: none;
}

.sec-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -.028em;
}
.sec-head p {
  margin-top: 1.1rem;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--fg-dim);
  max-width: 62ch;
}

.lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--fg-dim); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .85rem 1.65rem;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--comb), var(--honey) 46%, var(--amber-deep));
  color: var(--hive-black);
  box-shadow: 0 10px 30px -12px rgba(245, 166, 35, .75), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(245, 166, 35, .85), inset 0 1px 0 rgba(255, 255, 255, .45); }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--fg) 26%, transparent);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); transform: translateY(-2px); }

.btn--soon,
.btn[disabled] {
  background: color-mix(in srgb, var(--fg) 9%, transparent);
  color: var(--fg-dim);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--fg) 16%, transparent);
  cursor: not-allowed;
  transform: none;
}
.btn--soon:hover { transform: none; }

.btn--sm { min-height: 44px; padding: .6rem 1.15rem; font-size: .94rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding-block: .68rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-decoration-color: color-mix(in srgb, var(--accent) 38%, transparent);
  text-underline-offset: 5px;
  transition: text-decoration-color .2s var(--ease), gap .2s var(--ease);
}
.textlink:hover { text-decoration-color: currentColor; gap: .7rem; }

/* --------------------------------------------------------------------------
   5. Ribbon + navigation
   -------------------------------------------------------------------------- */
.ribbon {
  background: linear-gradient(90deg, #12161d, #1b1208 45%, #12161d);
  border-bottom: 1px solid rgba(245, 166, 35, .2);
  color: var(--pollen);
  font-size: .8125rem;
  letter-spacing: .01em;
  text-align: center;
  padding: .55rem var(--pad-x);
}
.ribbon b { color: var(--comb); font-weight: 600; }
.ribbon .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--leaf);
  margin-right: .5rem;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px rgba(63, 185, 80, .18);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 17, 22, .82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(245, 166, 35, .14);
}
.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
}
.brand img { width: 34px; height: 34px; }
.brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: .15em;
}
.brand:hover img { transform: translateY(-1px) rotate(-4deg); }
.brand img { transition: transform .3s var(--ease); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 44px;
  color: var(--ink-dim);
  font-size: .945rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 14px;
  height: 1.5px;
  background: var(--honey);
  transition: right .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--comb); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(230, 237, 243, .18);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle .bars { display: block; width: 19px; height: 13px; position: relative; }
.nav__toggle .bars i {
  position: absolute; left: 0; right: 0;
  height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav__toggle .bars i:nth-child(1) { top: 0; }
.nav__toggle .bars i:nth-child(2) { top: 5.6px; }
.nav__toggle .bars i:nth-child(3) { top: 11.2px; }
.nav__toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.nav__panel { display: none; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__panel {
    display: block;
    border-top: 1px solid rgba(245, 166, 35, .14);
    background: rgba(14, 17, 22, .97);
    max-height: 0;
    overflow: hidden;
    /* visibility keeps the collapsed links out of the tab order and the
       accessibility tree, while still allowing the height transition */
    visibility: hidden;
    transition: max-height .35s var(--ease), visibility 0s linear .35s;
  }
  .nav__panel[data-open="true"] {
    max-height: 480px;
    visibility: visible;
    transition: max-height .35s var(--ease), visibility 0s;
  }
  .nav__panel ul { padding: .6rem 0 1.1rem; }
  .nav__panel a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 var(--pad-x);
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(230, 237, 243, .06);
  }
  .nav__panel a:hover { background: rgba(245, 166, 35, .08); color: var(--comb); }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--hive-black);
  padding-block: clamp(64px, 9vw, 118px) clamp(48px, 6vw, 84px);
  overflow: clip;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(48% 42% at 50% 30%, rgba(245, 166, 35, .34), transparent 70%),
    radial-gradient(34% 30% at 14% 72%, rgba(232, 137, 12, .20), transparent 72%),
    radial-gradient(36% 32% at 88% 60%, rgba(255, 201, 77, .16), transparent 72%);
  pointer-events: none;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--hive-black));
  pointer-events: none;
  z-index: -1;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .95;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .42rem 1rem .42rem .7rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, .09);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .3);
  color: var(--pollen);
  font-size: .795rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.hero__badge .pip {
  width: 8px; height: 9.2px;
  background: var(--leaf);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.hero h1 {
  margin: 1.5rem auto 0;
  max-width: 16ch;
  font-size: clamp(2.9rem, 8.4vw, 6.1rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
}
.hero h1 .glow {
  background: linear-gradient(105deg, var(--comb), var(--honey) 42%, var(--amber-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 1.5rem auto 0;
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.68;
  color: var(--ink-dim);
}
.hero .cta-row { margin-top: 2.2rem; justify-content: center; }

.hero__sub {
  margin-top: 1.35rem;
  font-size: .86rem;
  color: #7E8796;
}

/* --------------------------------------------------------------------------
   7. Hex stat cells (honeycomb strip)
   -------------------------------------------------------------------------- */
/* A row of pointy-top hexagons whose vertical edges meet, so five cells read
   as one strip of honeycomb rather than five separate badges. */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: clamp(2.8rem, 5.5vw, 4.6rem);
}
.stat {
  position: relative;
  width: 152px;
  aspect-ratio: .866;
  background: linear-gradient(165deg, rgba(245, 166, 35, .55), rgba(245, 166, 35, .12));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.stat__in {
  position: absolute;
  inset: 1.5px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(165deg, #1B212A, #11151B);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .3rem;
  padding: 0 1.15rem;
  text-align: center;
}
.stat__v {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--comb);
}
.stat__v small { font-size: .62em; margin-left: .06em; color: var(--honey); }
.stat__l {
  font-size: .7625rem;
  line-height: 1.32;
  color: var(--ink-dim);
  letter-spacing: .015em;
}

@media (max-width: 800px) {
  .stat { width: 132px; }
  .stat__v { font-size: 1.55rem; }
  .stat__l { font-size: .72rem; }
}
@media (max-width: 460px) {
  .stat { width: 112px; }
  .stat__in { padding: 0 .7rem; }
  .stat__v { font-size: 1.3rem; }
  .stat__l { font-size: .66rem; }
}

/* --------------------------------------------------------------------------
   8. Cards (chamfered "hex" cards)
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.band--cream .card { box-shadow: inset 0 0 0 1px var(--rule-light); }
.band--dark .card,
.band--dark2 .card { box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .12); }
.band--dark .card:hover,
.band--dark2 .card:hover { background: #1F252F; }

.card h3 {
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: .55rem;
}
.card p { color: var(--fg-dim); font-size: .985rem; line-height: 1.64; }

.hexicon {
  width: 46px; height: 53px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  background: linear-gradient(160deg, var(--comb), var(--amber-deep));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  color: var(--hive-black);
  flex: none;
}
.hexicon svg { width: 22px; height: 22px; }

.hexicon--quiet {
  background: linear-gradient(160deg, rgba(245, 166, 35, .22), rgba(245, 166, 35, .07));
  color: var(--honey);
  box-shadow: none;
}
.band--cream .hexicon--quiet { background: var(--pollen); color: var(--honey-ink); }

/* Feature list ("Why SWARM") */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem) clamp(1.8rem, 3.4vw, 3.4rem);
}
.why li { display: flex; gap: 1.05rem; align-items: flex-start; }
.why .hexicon { width: 38px; height: 44px; margin: .2rem 0 0; }
.why .hexicon svg { width: 18px; height: 18px; }
.why h3 { font-size: 1.11rem; font-weight: 600; margin-bottom: .35rem; }
.why p { color: var(--fg-dim); font-size: .975rem; line-height: 1.62; }

/* --------------------------------------------------------------------------
   9. Tokenomics panel + charts
   -------------------------------------------------------------------------- */
.panel {
  background: linear-gradient(158deg, #171C25, #0E1116 70%);
  color: var(--ink);
  --fg: var(--ink);
  --fg-dim: var(--ink-dim);
  --accent: var(--honey);
  --surface: #1F242D;
  --rule: var(--rule-dark);
  --focus: var(--comb);
  --ok: var(--leaf);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
  padding: clamp(1.5rem, 3.4vw, 3rem);
}
.panel-grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 940px) { .panel-grid { grid-template-columns: minmax(0, 1fr); } }

.panel h3 {
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.panel .sub { font-size: .875rem; color: var(--ink-dim); margin-top: .3rem; }

.chart { width: 100%; margin-top: 1.2rem; }
.chart--ring { max-width: 306px; margin-inline: auto; }
.chart svg { width: 100%; height: auto; overflow: visible; }

.chart-fallback { font-size: .875rem; color: var(--ink-dim); margin-top: 1rem; }
.chart-fallback dl { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; margin: .6rem 0 0; }
.chart-fallback dt { font-family: var(--font-mono); color: var(--comb); font-size: .82rem; }
.chart-fallback dd { margin: 0; }

/* Compact per-era table that balances the emission column inside the panel */
/* The per-era table must never widen the panel: on phones it scrolls inside its own box. */
.panel-grid > * { min-width: 0; }
.ladder { margin-top: clamp(1.6rem, 3vw, 2.4rem); max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.ladder h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
}
.minitable {
  width: 100%;
  min-width: 0;
  margin-top: .65rem;
  font-size: .82rem;
  border-collapse: collapse;
}
.minitable caption {
  caption-side: bottom;
  padding: .7rem 0 0;
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-dim);
}
.minitable th,
.minitable td {
  padding: .42rem .5rem;
  border-bottom: 1px solid rgba(245, 166, 35, .12);
  white-space: nowrap;
}
.minitable th:first-child,
.minitable td:first-child { padding-left: 0; }
.minitable th:last-child,
.minitable td:last-child { padding-right: 0; }
.minitable thead th {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--honey);
}
.minitable tbody th {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink-dim);
}
.minitable tbody td { color: var(--ink); }
.minitable tbody tr:last-child th,
.minitable tbody tr:last-child td { border-bottom: 0; }
.minitable .num { text-align: right; }
.minitable thead th.num { text-align: right; }

/* Phone sizing for the per-era table. Kept after the base rules so it wins the cascade. */
@media (max-width: 560px) {
  .minitable { font-size: .76rem; }
  .minitable th,
  .minitable td { padding: .4rem .35rem; }
  /* The block reward is the sum of the four amounts and is listed on /network, so phones drop that column to fit. */
  .minitable th:nth-child(2),
  .minitable td:nth-child(2) { display: none; }
}
@media (max-width: 420px) {
  .minitable { font-size: .7rem; }
  .minitable th,
  .minitable td { padding: .4rem .22rem; }
}

.legend { margin-top: 1.3rem; display: grid; gap: .8rem; }
.legend li { display: grid; grid-template-columns: 14px 1fr auto; gap: .8rem; align-items: baseline; }
.legend .sw { width: 12px; height: 13.86px; align-self: center; }
.legend .nm { font-size: .93rem; font-weight: 500; }
.legend .nm em { display: block; font-style: normal; font-size: .81rem; color: var(--ink-dim); font-weight: 400; line-height: 1.5; margin-top: .15rem; }
.legend .pc { font-family: var(--font-mono); font-size: 1rem; color: var(--comb); }

.rule-tag {
  display: block;
  margin-top: 1.4rem;
  padding: .7rem .95rem;
  border-radius: 12px;
  background: rgba(245, 166, 35, .09);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .26);
  color: var(--pollen);
  font-size: .82rem;
  line-height: 1.5;
}
.rule-tag b { color: var(--comb); font-weight: 600; }
.band--cream .rule-tag {
  background: var(--pollen);
  box-shadow: inset 0 0 0 1px #EAC978;
  color: #5C3A05;
}
.band--cream .rule-tag b { color: var(--honey-ink); }
/* ...but a dark panel sitting inside a cream band keeps the dark treatment */
.band--cream .panel .rule-tag {
  background: rgba(245, 166, 35, .09);
  box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .26);
  color: var(--pollen);
}
.band--cream .panel .rule-tag b { color: var(--comb); }

/* --------------------------------------------------------------------------
   10. Steps / roadmap / FAQ
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.step__n {
  width: 44px; height: 50.8px;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  background: linear-gradient(160deg, var(--comb), var(--amber-deep));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--font-mono);
  font-size: 1.02rem;
  color: var(--hive-black);
}
.step .btn { margin-top: 1.35rem; width: 100%; }
.step__app { font-size: .79rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .45rem; }

.road { display: grid; gap: clamp(1.1rem, 2vw, 1.5rem); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: road; }
.road li { position: relative; padding-top: 2.5rem; }
.road li::before {
  content: "";
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 1.5px;
  background: var(--rule);
}
.road li::after {
  content: "";
  position: absolute;
  top: 6px; left: 0;
  width: 15px; height: 17.3px;
  background: color-mix(in srgb, var(--accent) 38%, transparent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.road li.is-now::after { background: var(--ok); }
.road h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .45rem; }
.road p { color: var(--fg-dim); font-size: .95rem; line-height: 1.6; }
.road .tag {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-dim); margin-bottom: .5rem;
}
.road li.is-now .tag { color: var(--ok); }

.faq { display: grid; gap: .6rem; }
.faq details {
  background: var(--surface);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.band--cream .faq details { box-shadow: inset 0 0 0 1px var(--rule-light); }
.band--dark2 .faq details { box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .12); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 60px;
  padding: 1.05rem clamp(1.1rem, 2.4vw, 1.7rem);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary .ind {
  position: relative;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}
.faq summary .ind::before,
.faq summary .ind::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  background: var(--accent);
  transition: transform .26s var(--ease), opacity .2s var(--ease);
}
.faq summary .ind::before { width: 10px; height: 1.8px; }
.faq summary .ind::after { width: 1.8px; height: 10px; }
.faq details[open] summary .ind::after { transform: rotate(90deg); opacity: 0; }
.faq .answer { padding: 0 clamp(1.1rem, 2.4vw, 1.7rem) 1.4rem; }
.faq .answer p { color: var(--fg-dim); font-size: .985rem; line-height: 1.68; }
.faq .answer p + p { margin-top: .8rem; }

/* --------------------------------------------------------------------------
   11. Tables + prose (sub pages)
   -------------------------------------------------------------------------- */
.tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}
.band--cream .tablewrap { box-shadow: inset 0 0 0 1px var(--rule-light); }
.band--dark .tablewrap,
.band--dark2 .tablewrap { box-shadow: inset 0 0 0 1px rgba(245, 166, 35, .12); }

table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .94rem; }
caption { text-align: left; padding: 1.1rem clamp(1rem, 2vw, 1.5rem) .2rem; color: var(--fg-dim); font-size: .875rem; }
th, td { text-align: left; padding: .82rem clamp(1rem, 2vw, 1.5rem); border-bottom: 1px solid var(--rule); vertical-align: top; }
thead th {
  font-family: var(--font-body);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { font-family: var(--font-mono); font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
tbody th { font-weight: 500; white-space: nowrap; }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); margin-top: 2.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; font-weight: 600; margin-top: 1.9rem; }
.prose p, .prose li { color: var(--fg-dim); }
.prose p + p, .prose p + ul, .prose ul + p, .prose h2 + p, .prose h3 + p { margin-top: .95rem; }
.prose ul { margin-top: .95rem; display: grid; gap: .55rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 9px; height: 10.4px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.prose a { color: var(--accent); text-underline-offset: 3px; }
.prose strong { color: var(--fg); font-weight: 600; }

.page-head { padding-block: clamp(56px, 7vw, 92px) clamp(36px, 4vw, 56px); }
.page-head h1 {
  font-size: clamp(2.3rem, 5.6vw, 3.9rem);
  font-weight: 800;
  letter-spacing: -.035em;
  max-width: 20ch;
}
/* scoped to the lead paragraph only, so a .pill in the same block keeps its
   own colour and size */
.page-head__lead { margin-top: 1.2rem; max-width: 58ch; color: var(--ink-dim); font-size: clamp(1.02rem, 1.4vw, 1.16rem); }
.page-head .pill { margin-bottom: 1.1rem; }

.crumbs { margin-bottom: 1.3rem; font-size: .86rem; color: var(--ink-dim); }
.crumbs a { color: var(--ink-dim); text-decoration: none; border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--comb); border-color: currentColor; }
.crumbs span { margin: 0 .5rem; opacity: .5; }

.note {
  padding: 1.05rem 1.25rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 24%, transparent);
  font-size: .93rem;
  line-height: 1.62;
  color: var(--fg-dim);
}
.note strong { color: var(--fg); }

/* Brand page bits */
.swatches { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 14px; }
.swatch { background: var(--surface); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)); overflow: hidden; }
.band--cream .swatch { box-shadow: inset 0 0 0 1px var(--rule-light); }
.swatch .chip { height: 86px; }
.swatch .meta { padding: .8rem .95rem 1rem; }
.swatch .nm { font-size: .9rem; font-weight: 600; }
.swatch .hx { font-family: var(--font-mono); font-size: .8rem; color: var(--fg-dim); margin-top: .15rem; }
.chip-honey { background: #F5A623; } .chip-amber { background: #E8890C; }
.chip-comb { background: #FFC94D; } .chip-pollen { background: #FFE9A8; }
.chip-cream { background: #FFF8E7; } .chip-hive { background: #0E1116; }
.chip-bark { background: #161A21; } .chip-wax { background: #252A33; }
.chip-ink { background: #E6EDF3; } .chip-inkdim { background: #9AA4B2; }
.chip-leaf { background: #3FB950; } .chip-honeyink { background: #8A4B03; }

.assetgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(318px, 1fr)); gap: 14px; }
.asset { background: var(--surface); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)); padding: 1.2rem; text-align: center; }
.band--cream .asset { box-shadow: inset 0 0 0 1px var(--rule-light); }
.asset .stage { display: grid; place-items: center; height: 128px; padding: 0 1.2rem; border-radius: 12px; margin-bottom: .95rem; }
.stage--light { background: #FFF8E7; }
.stage--dark { background: #0E1116; }
.asset img { width: auto; height: auto; max-width: 100%; max-height: 80px; }
.asset .nm { font-size: .9rem; font-weight: 600; }
.asset .dc { font-size: .8rem; color: var(--fg-dim); margin-top: .2rem; min-height: 2.6em; }

.dodont { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(14px, 2vw, 22px); }
.dodont h3 { display: flex; align-items: center; gap: .55rem; font-size: 1.06rem; margin-bottom: .9rem; }
.dodont .mk { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; flex: none; }
.mk--do { background: rgba(63, 185, 80, .18); color: var(--leaf-ink); }
.mk--dont { background: rgba(200, 60, 40, .14); color: #A93216; }
.band--dark .mk--do, .band--dark2 .mk--do { color: var(--leaf); }
.band--dark .mk--dont, .band--dark2 .mk--dont { color: #F08A6C; }

.typespec { display: grid; gap: 1.4rem; }
.typespec > div { padding-bottom: 1.4rem; border-bottom: 1px solid var(--rule); }
.typespec > div:last-child { border-bottom: 0; padding-bottom: 0; }
.typespec .sample { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.15; letter-spacing: -.02em; }
.typespec .sample--display { font-family: var(--font-display); font-weight: 700; }
.typespec .sample--body { font-family: var(--font-body); font-weight: 400; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; }
.typespec .sample--mono { font-family: var(--font-mono); font-weight: 500; }
.typespec .meta { font-size: .85rem; color: var(--fg-dim); margin-top: .6rem; font-family: var(--font-mono); }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--hive-black);
  border-top: 1px solid rgba(245, 166, 35, .15);
  padding-block: clamp(48px, 6vw, 78px) 2.2rem;
  overflow: clip;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/comb.svg");
  background-size: 74px 128px;
  opacity: .08;
  pointer-events: none;
}
.footer > .wrap { position: relative; }
.footer__top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.35fr) repeat(auto-fit, minmax(150px, 1fr));
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(230, 237, 243, .08);
}
.footer__brand p { margin-top: 1rem; max-width: 38ch; color: var(--ink-dim); font-size: .93rem; }
.footer h2 {
  font-family: var(--font-body);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: .9rem;
}
.footer nav ul { display: grid; gap: .1rem; }
.footer nav a {
  display: flex;
  align-items: center;
  gap: .4rem;
  min-height: 44px;
  color: var(--ink-dim);
  font-size: .93rem;
  text-decoration: none;
}
.footer nav a:hover { color: var(--comb); }
.footer__bottom {
  padding-top: 1.8rem;
  display: grid;
  gap: 1rem;
}
.footer__bottom p { color: #7E8796; font-size: .8125rem; line-height: 1.65; max-width: 90ch; }
.footer__bottom .row { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; align-items: center; justify-content: space-between; }

/* --------------------------------------------------------------------------
   13. Utilities
   -------------------------------------------------------------------------- */
.mt-s { margin-top: 1rem; }
.mt-m { margin-top: 1.8rem; }
.mt-l { margin-top: clamp(2.2rem, 4vw, 3.4rem); }
.center { text-align: center; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .72rem;
  border-radius: 999px;
  font-size: .745rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}
.pill--soon { background: color-mix(in srgb, var(--fg) 10%, transparent); color: var(--fg-dim); }
.pill--live { background: rgba(63, 185, 80, .16); color: var(--ok); }

.ext { width: 13px; height: 13px; opacity: .65; }

/* --------------------------------------------------------------------------
   14. Reveal on scroll (only when JS is running)
   -------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

/* --------------------------------------------------------------------------
   15. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .card:hover, .btn:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   16. "The Swarm" map  (added, nothing above is changed)
   The framed card keeps the deep warm black of the owner's prototype so the
   heat reads; everything around it uses the site's existing band, section and
   card rules.
   -------------------------------------------------------------------------- */
.swarmmap { margin-top: clamp(1.75rem, 4vw, 2.5rem); }

.swarmmap__frame {
  position: relative;
  border: 1px solid rgba(245, 166, 35, .25);
  border-radius: var(--radius);
  background: #0A0908;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.swarmmap__frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--honey), transparent);
  background-size: 200% 100%;
  animation: swarmFlow 3s linear infinite;
}
@keyframes swarmFlow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.swarmmap__plot { position: relative; }
.swarmmap__plot svg { display: block; width: 100%; height: auto; }

.swarmmap__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 77, .4);
  background: rgba(14, 17, 22, .85);
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .16em;
  color: var(--comb);
  pointer-events: none;
  white-space: nowrap;
}
.swarmmap__pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--comb);
  box-shadow: 0 0 8px var(--comb);
  animation: swarmPip 1.8s ease-in-out infinite;
}
@keyframes swarmPip { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

.swarmmap__key {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(230, 237, 243, .1);
  background: rgba(14, 17, 22, .85);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--ink-dim);
  pointer-events: none;
}
.swarmmap__key i {
  display: block;
  width: 110px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(245, 166, 35, .12), #FF8A1F, var(--comb));
}

.swarmmap__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid rgba(230, 237, 243, .07);
  background: #100E0C;
  margin: 0;
}
.swarmmap__stats > div {
  min-width: 0;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(230, 237, 243, .06);
}
.swarmmap__stats > div:last-child { border-right: 0; }
.swarmmap__stats dt {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.swarmmap__stats dd {
  margin: .35rem 0 0;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--comb);
}
.swarmmap__stats dd.is-plain { color: var(--ink); }
.swarmmap__stats p {
  margin-top: .2rem;
  font-size: .78rem;
  line-height: 1.45;
  color: var(--ink-dim);
}

.swarmmap figcaption {
  margin-top: 1rem;
  max-width: 68ch;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--fg-dim);
}
.swarmmap__src {
  display: block;
  margin-top: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--fg-dim);
}

/* Screen-blended heat, and the hotspots, inside the SVG */
.swarmmap__heat { mix-blend-mode: screen; }
.hot { cursor: pointer; }
.hot:focus { outline: none; }
.hot__halo {
  fill: none;
  stroke: var(--comb);
  stroke-width: 1.4;
  opacity: 0;
  transition: opacity .18s var(--ease);
}
.hot:hover .hot__halo,
.hot:focus-visible .hot__halo { opacity: 1; }
.hot:focus-visible .hot__halo { stroke: #FFFFFF; stroke-width: 2; }
.ring-pulse {
  animation: swarmRing 2.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes swarmRing {
  0% { transform: scale(.35); opacity: .9; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* The map is the picture; the table is the text alternative. With JavaScript
   off the map never draws, so the table becomes the content. */
.js .swarmmap__table {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}
.swarmmap__table { margin-top: 1rem; }
.swarmmap__nojs { margin-top: .75rem; font-size: .88rem; color: var(--fg-dim); }
.js .swarmmap__nojs { display: none; }

@media (max-width: 620px) {
  .swarmmap__key { display: none; }
  .swarmmap__pill { top: 12px; left: 12px; padding: 5px 10px; font-size: .6rem; }
  .swarmmap__stats > div { border-right: 0; border-bottom: 1px solid rgba(230, 237, 243, .06); }
  .swarmmap__stats > div:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   17. Downloads  (added)
   -------------------------------------------------------------------------- */
.dlgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
}
.dlgrid > * { min-width: 0; }
.dl { display: flex; flex-direction: column; }
.dl h3 { margin-top: .2rem; }
.dl > p { margin-top: .6rem; }
.dl__plats {
  margin-top: auto !important;
  padding-top: 1rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--fg-dim);
}
.dl .mt-m { margin-top: 1rem; }
.dl__builds {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.dl__builds > li {
  padding: .9rem;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--surface);
}
.dl__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  flex-wrap: wrap;
}
.dl__plat { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--fg); }
.dl__meta { font-family: var(--font-mono); font-size: .76rem; color: var(--fg-dim); }
.dl__builds .btn { margin-top: .7rem; }
.dl__hash {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .7rem;
  padding-top: .7rem;
  border-top: 1px solid var(--rule);
}
.dl__k {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.dl__hash code {
  flex: 1 1 12ch;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--fg);
  overflow-wrap: anywhere;
}
.dl__hash .btn { margin-top: 0; flex: none; }
.dl__notice {
  margin-top: .6rem !important;
  font-size: .8rem !important;
  line-height: 1.5;
  color: var(--accent);
}
