/* ==========================================================================
   ROBIN TRUMP — $RTRUMP
   The Sherwood Campaign · a letterpress election broadside for Robinhood Chain
   ========================================================================== */

/* --------------------------------------------------------------- 1. TOKENS */
:root {
  /* inks */
  --paper:      #F1E8D5;
  --stock:      #E5D8B9;
  --stock-2:    #DCCCA6;
  --ink:        #191712;
  --ink-soft:   #2C2820;
  --red:        #B4342A;
  --red-dark:   #8E2620;
  --sherwood:   #17402A;
  --sherwood-2: #245C3B;
  --lime:       #D5FB4E;
  --lime-dark:  #B8E62E;
  --brass:      #B98A2C;

  /* type */
  --display: "Ultra", Georgia, "Times New Roman", serif;
  --gothic:  "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body:    "Crimson Pro", Georgia, "Times New Roman", serif;
  --mono:    ui-monospace, "SFMono-Regular", "Courier New", monospace;

  /* rhythm */
  --gutter: clamp(1.25rem, 4vw, 8.125rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
  --rule: 3px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-back: cubic-bezier(.2, .9, .3, 1.2);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;            /* NOT `hidden` — that would break position: sticky */
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .95rem + .3vw, 1.1875rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

::selection { background: var(--lime); color: var(--ink); }

/* ------------------------------------------------------ 2. TYPE PRIMITIVES */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .86;
  margin: 0;
}
.gothic {
  font-family: var(--gothic);
  font-weight: 400;
  letter-spacing: .1em;
}
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--gothic);
  font-size: clamp(.8125rem, .75rem + .28vw, 1.25rem);
  letter-spacing: .3em;
  color: var(--red);
  margin: 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.125rem, 1.1rem + 4.4vw, 4.875rem);
  line-height: .9;
  letter-spacing: -.02em;
  margin: .35em 0 0;
}

.lede {
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.375rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-soft);
  margin: 1rem 0 0;
  max-width: 46ch;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--lime);
  font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .16em;
  padding: 1rem 1.5rem;
}
.skip:focus { left: 0; }

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

/* ------------------------------------------------------- 3. PRESS TEXTURES */
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .15;
  mix-blend-mode: multiply;
}

/* misregistered ink — the reason this reads as printed, not rendered */
.ghost { text-shadow: .05em .05em 0 rgba(180, 52, 42, .42); }
.ghost-green { text-shadow: .035em .035em 0 rgba(23, 64, 42, .38); }

.halftone {
  background-image: radial-gradient(circle at 1px 1px, rgba(25,23,18,.5) 1.1px, transparent 1.4px);
  background-size: 7px 7px;
}

.rule-double {
  border-top: 5px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  height: 9px;
}

/* ballot fill-in line */
.leader {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 0;
  margin: 0 .75rem .35em;
  border-bottom: 3px dotted rgba(25, 23, 18, .4);
}
.leader--light { border-bottom-color: rgba(241, 232, 213, .34); }

/* scroll reveal — declared early so component :hover transforms win */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }


/* ------------------------------------------------------------- 4. WRAPPERS */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 1441px) { .wrap { max-width: 1180px; } }

.section { padding-block: var(--section-y); position: relative; }
.section--stock {
  background: var(--stock);
  border-top: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
}

/* ------------------------------------------------------------- 5. BUTTONS */
.btn {
  --shadow: var(--ink);
  --lift: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-height: 60px;
  padding: 0 1.75rem;
  border: var(--rule) solid var(--ink);
  font-family: var(--gothic);
  font-size: clamp(1.125rem, 1rem + .35vw, 1.5rem);
  letter-spacing: .11em;
  line-height: 1;
  cursor: pointer;
  position: relative;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--shadow);
  transform: translate(var(--lift), var(--lift));
  transition: transform .16s var(--ease), box-shadow .16s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover  { --lift: 3px; box-shadow: 4px 4px 0 var(--shadow); }
.btn:active { --lift: 7px; box-shadow: 0 0 0 var(--shadow); }

.btn svg { flex: none; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn--down:hover svg { transform: translateY(3px); }

.btn--primary { background: var(--red); color: var(--paper); }
.btn--primary:hover { background: var(--red-dark); color: var(--paper); }

.btn--ghost { --shadow: var(--sherwood); }
.btn--ghost:hover { background: var(--lime); }

.btn--lime {
  background: var(--lime);
  color: var(--sherwood);
  border-color: var(--sherwood);
  --shadow: var(--sherwood);
}
.btn--lime:hover { background: var(--paper); color: var(--sherwood); }

.btn--icon {
  min-height: 52px; width: 52px; padding: 0;
  box-shadow: 5px 5px 0 var(--shadow);
}
.btn--icon:hover { --lift: 3px; box-shadow: 2px 2px 0 var(--shadow); background: var(--lime); }
.btn--icon:active { --lift: 5px; box-shadow: 0 0 0 var(--shadow); }
.btn--icon:hover svg { transform: none; }   /* icon-only: no nudge */

.btn--sm { min-height: 46px; padding: 0 1.1rem; font-size: 1.1875rem; box-shadow: 4px 4px 0 var(--shadow); }
.btn--sm:hover { --lift: 2px; box-shadow: 2px 2px 0 var(--shadow); }
.btn--sm:active { --lift: 4px; box-shadow: 0 0 0 var(--shadow); }

.btn.is-copied { background: var(--lime); color: var(--sherwood); border-color: var(--sherwood); }

/* chips (filters) */
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 1.25rem;
  border: var(--rule) solid var(--ink);
  background: var(--paper); color: var(--ink);
  font-family: var(--gothic); font-size: 1.25rem; letter-spacing: .12em;
  cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .16s var(--ease);
}
.chip:hover { background: var(--stock-2); transform: translateY(-2px); }
.chip[aria-selected="true"] { background: var(--ink); color: var(--lime); }

/* ------------------------------------------------------------ 6. TOP BANDS */
.ticker {
  background: var(--sherwood);
  color: var(--lime);
  border-bottom: var(--rule) solid var(--ink);
  overflow: hidden;
  padding-block: .7rem;
  position: relative; z-index: 1;
}
.ticker__track {
  display: flex; width: max-content;
  animation: slide 38s linear infinite;
}
.ticker__group {
  font-family: var(--gothic);
  font-size: clamp(.875rem, .8rem + .3vw, 1.1875rem);
  letter-spacing: .22em;
  white-space: nowrap;
  padding-right: 2.5rem;
}
.ticker__group b { font-weight: 400; }
.tick-data   { color: var(--lime); }
.tick-slogan { color: var(--paper); }
.tick-dot    { color: var(--lime); opacity: .5; padding-inline: .85rem; font-size: .72em; vertical-align: .18em; }

@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee {
  background: var(--ink);
  color: var(--paper);
  border-block: var(--rule) solid var(--ink);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee__track { display: flex; width: max-content; animation: slide 30s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__group {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  white-space: nowrap;
  padding-right: 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee__star { color: var(--lime); font-size: .7em; }

/* --------------------------------------------------------------- 7. HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: var(--rule) solid var(--ink);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 0 rgba(25, 23, 18, .12); }

.header__inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: .75rem;
}

.brand { display: flex; align-items: center; gap: .75rem; flex: none; }
.brand__mark {
  width: 52px; height: 52px; border-radius: 50%;
  border: var(--rule) solid var(--ink);
  object-fit: cover; flex: none;
  transition: transform .4s var(--ease-out-back);
}
.brand:hover .brand__mark { transform: rotate(-12deg) scale(1.06); }
.brand__name { font-family: var(--gothic); font-size: 1.6875rem; letter-spacing: .05em; line-height: .92; }
.brand__ticker { font-family: var(--gothic); font-size: .9375rem; letter-spacing: .2em; color: var(--red); }

.nav { margin-left: auto; display: flex; gap: clamp(1rem, 2vw, 1.9rem); }
.nav__link {
  font-family: var(--gothic);
  font-size: 1.25rem; letter-spacing: .13em;
  white-space: nowrap;
  color: var(--ink);
  padding-block: .35rem;
  position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 3px; background: var(--red);
  transition: right .28s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="true"] { color: var(--ink); }
.nav__link:hover::after, .nav__link[aria-current="true"]::after { right: 0; }

.header .btn { flex: none; }

.burger {
  display: none;
  width: 52px; height: 52px; flex: none;
  border: var(--rule) solid var(--ink); background: var(--paper);
  cursor: pointer;
  align-items: center; justify-content: center;
  touch-action: manipulation;          /* no 300ms tap delay, no double-tap zoom */
  -webkit-tap-highlight-color: transparent;
  transition: background-color .2s var(--ease);
}
.burger:hover { background: var(--lime); }
.burger[aria-expanded="true"] { background: var(--ink); color: var(--lime); }
.burger__bar {
  display: block; width: 22px; height: 3px; background: currentColor;
  margin: 3px 0; transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  max-height: 72vh;
  max-height: 72dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 12px 24px rgba(25, 23, 18, .35);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--gothic); font-size: 1.5rem; letter-spacing: .14em;
  color: var(--paper);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(241, 232, 213, .18);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: var(--lime); }

/* ------------------------------------------------------------------ 8. HERO */
.hero { padding-block: clamp(1.75rem, 3vw, 2.75rem) clamp(2.5rem, 4vw, 3.5rem); overflow: hidden; }

.broadside-rule { margin-bottom: .75rem; }
.broadside-line {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .5rem 1rem;
  font-family: var(--gothic);
  font-size: clamp(.6875rem, .62rem + .32vw, 1.0625rem);
  letter-spacing: .3em;
  color: var(--sherwood);
  text-align: center;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--ink);
}
.broadside-line b { color: var(--red); font-weight: 400; }

.hero__head { position: relative; padding-top: clamp(1.5rem, 3vw, 2.25rem); z-index: 2; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.75rem, 1.1rem + 7.6vw, 7.25rem);
  line-height: .84;
  letter-spacing: -.028em;
  margin: .55rem 0 0;
}
.hero__title span { display: block; }

.hero__arrow {
  position: absolute;
  right: 1%; top: 11%;
  width: clamp(170px, 27vw, 380px);
  z-index: -1;
  pointer-events: none;
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: start;
  padding-top: clamp(1.75rem, 3.5vw, 3rem);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2.25rem; }

/* wallet action feedback */
.hero__socials {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .85rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(25, 23, 18, .22);
}
.hero__socials-label {
  font-family: var(--gothic);
  font-size: 1rem; letter-spacing: .26em;
  color: var(--sherwood);
}
.social-row {
  display: flex; flex-wrap: wrap; gap: .85rem;
  list-style: none; margin: 0; padding: 0;
}

.wallet-msg {
  margin: 1rem 0 0;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.5;
  padding-left: .9rem;
  border-left: 5px solid var(--sherwood);
}
.wallet-msg[data-tone="warn"] { border-left-color: var(--red); }
.wallet-msg[data-tone="ok"]   { border-left-color: var(--sherwood); }
.btn:disabled { cursor: progress; opacity: .8; }

/* the seal */
.seal-block { flex: none; width: clamp(230px, 26vw, 372px); justify-self: end; }
.seal {
  position: relative; width: 100%; aspect-ratio: 1;
  transform: rotate(-3deg);
  transition: transform .5s var(--ease);
}
.seal-block:hover .seal { transform: rotate(0deg) scale(1.02); }
.seal__ring { position: absolute; inset: 0; }
.seal__ring text { font-family: var(--gothic); }

.seal__face {
  /* an <img> is a replaced element: `inset` alone will NOT size it,
     so width/height are set explicitly. 80% = r40%, just inside the
     lime keyline the SVG ring draws at r41.2%. */
  position: absolute;
  left: 10%; top: 10%;
  width: 80%; height: 80%;
  border-radius: 50%;
  object-fit: cover;
}
.seal__ribbon {
  position: relative;
  margin: -6% auto 0;
  width: 92%;
  background: var(--red);
  border: var(--rule) solid var(--ink);
  box-shadow: 6px 6px 0 rgba(25, 23, 18, .85);
  transform: rotate(2deg);
  text-align: center;
  padding: .5rem 0 .4rem;
  font-family: var(--gothic);
  font-size: clamp(1.125rem, 1rem + .55vw, 1.5625rem);
  letter-spacing: .2em;
  color: var(--paper);
}

/* contract bar */
.contract {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  background: var(--stock);
  border: var(--rule) solid var(--ink);
  box-shadow: 8px 8px 0 rgba(25, 23, 18, .9);
  padding: 1.25rem 1.4rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: .75rem 1rem;
}
.contract__label {
  font-family: var(--gothic); font-size: 1.25rem; letter-spacing: .18em; color: var(--sherwood);
}
.contract__value {
  flex: 1 1 16rem; min-width: 0;
  font-family: var(--mono); font-size: clamp(.75rem, .64rem + .45vw, 1.125rem);
  overflow-wrap: anywhere;
  color: var(--ink);
  border-bottom: 2px solid rgba(25, 23, 18, .3);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.contract__value:hover { color: var(--red); border-bottom-color: var(--red); }
.contract .btn { margin-left: auto; }

/* stat strip */
.stats-band { background: var(--ink); border-top: var(--rule) solid var(--ink); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat {
  container-type: inline-size;
  padding: clamp(1.1rem, 2.2vw, 1.7rem) clamp(.75rem, 1.6vw, 1.5rem);
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid rgba(241, 232, 213, .2);
}
.stat:first-child { padding-left: 0; border-left: 0; }
.stat__key {
  font-family: var(--gothic);
  font-size: clamp(.75rem, .7rem + .25vw, 1rem);
  letter-spacing: .24em; color: var(--lime);
}
.stat__val {
  font-family: var(--gothic);
  font-size: clamp(1.25rem, 17cqi, 2.625rem);
  line-height: 1.08; color: var(--paper); margin-top: .4rem;
  letter-spacing: .01em;
}
@supports not (container-type: inline-size) {
  .stat__val { font-size: clamp(1.25rem, .8rem + 1.2vw, 2rem); }
}

/* ------------------------------------------------------ 9. SPINE + ARTICLES */
.spine { position: relative; }
.spine__shaft {
  position: absolute;
  left: calc(var(--gutter) * -.52);
  top: 0; bottom: 0; width: 6px;
  pointer-events: none;
}
.spine__shaft::before, .spine__shaft::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 0;
}
.spine__shaft::before { left: 0; border-left: 4px solid var(--sherwood); }
.spine__shaft::after  { left: 7px; border-left: 2px solid rgba(180, 52, 42, .5); }

.notch {
  position: absolute;
  left: calc(var(--gutter) * -.52 - 19px);
  top: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--gothic); font-size: 1.1875rem; color: var(--sherwood);
}
.notch svg { position: absolute; inset: 0; }
.notch span { position: relative; }

@media (max-width: 1100px) { .spine__shaft, .notch { display: none; } }

/* ---------------------------------------------------- 10. CAMPAIGN (story) */
.beats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.75rem, 3.5vw, 2.875rem);
  margin-top: clamp(1.75rem, 3.5vw, 3rem);
}
.beat__head {
  font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .2em;
  color: var(--sherwood);
  border-bottom: var(--rule) solid var(--ink);
  padding-bottom: .5rem; margin-bottom: 1.1rem;
}
.beat p { margin: 0 0 1rem; }
.beat p:last-child { margin-bottom: 0; }
.dropcap::first-letter {
  font-family: var(--display);
  font-size: 3.6em; line-height: .78;
  float: left; margin: .09em .12em 0 0;
  color: var(--red);
}

.slogan {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.125rem) clamp(1.25rem, 3vw, 2.5rem);
  background: var(--stock);
  border: var(--rule) solid var(--ink);
}
.slogan__sticker { flex: none; position: relative; transform: rotate(-4deg); width: clamp(150px, 20vw, 210px); }
.slogan__sticker img {
  width: 100%; border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(25, 23, 18, .85);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.slogan__sticker:hover img { transform: rotate(4deg) scale(1.03); box-shadow: 12px 12px 0 rgba(25,23,18,.85); }
.tape {
  position: absolute; width: 76px; height: 28px;
  background: rgba(241, 232, 213, .82);
  border: 1px solid rgba(25, 23, 18, .32);
  transform: rotate(-24deg);
}
.tape--tl { top: -14px; left: -20px; }
.tape--br { bottom: -14px; right: -20px; }
.slogan__body { flex: 1 1 340px; }
.slogan__quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, .9rem + 2.2vw, 2.75rem);
  line-height: .98; margin: .6rem 0 0;
}

/* ------------------------------------------------------------- 11. LEDGER */
.supply {
  background: var(--ink);
  border: var(--rule) solid var(--ink);
  box-shadow: 10px 10px 0 rgba(25, 23, 18, .35);
  padding: clamp(1.75rem, 4vw, 2.75rem) 1.25rem clamp(2rem, 4vw, 2.75rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.875rem);
  text-align: center;
}
.supply__key {
  font-family: var(--gothic);
  font-size: clamp(.8125rem, .75rem + .3vw, 1.25rem);
  letter-spacing: .34em; color: var(--lime);
}
.supply__num {
  font-family: var(--display);
  font-size: clamp(2rem, .3rem + 7.2vw, 6.5rem);
  line-height: 1; color: var(--paper);
  margin-top: .18em; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.supply__sub { font-style: italic; color: rgba(241, 232, 213, .72); margin-top: .5rem;
  font-size: clamp(1rem, .9rem + .5vw, 1.6875rem); }

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: clamp(1.5rem, 3vw, 2.375rem);
  align-items: start;
}

.card {
  background: var(--paper);
  border: var(--rule) solid var(--ink);
  box-shadow: 10px 10px 0 rgba(25, 23, 18, .35);
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.25rem, 2.4vw, 2.125rem);
}
.card__head {
  font-family: var(--gothic); font-size: 1.1875rem; letter-spacing: .26em;
  color: var(--sherwood);
  border-bottom: var(--rule) solid var(--ink);
  padding-bottom: .6rem;
}

.spec { display: flex; align-items: flex-end; margin-top: .9rem; }
.spec:first-of-type { margin-top: 1.25rem; }
.spec__key { font-family: var(--gothic); font-size: 1.25rem; letter-spacing: .14em; padding-bottom: .18rem; }
.spec__val { font-family: var(--gothic); font-size: 1.375rem; padding-bottom: .18rem; }
.spec__val--todo { font-family: var(--mono); font-size: 1.0625rem; color: var(--red); }

.cert { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; }
.cert__box {
  flex: none; width: 34px; height: 34px;
  border: var(--rule) solid var(--ink);
  background: var(--lime);
  display: grid; place-items: center;
}
.cert__box svg { width: 20px; height: 20px; }
.cert__box path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.is-visible .cert__box path { animation: tick .5s var(--ease) forwards; }
.cert:nth-of-type(2) .cert__box path { animation-delay: .12s; }
.cert:nth-of-type(3) .cert__box path { animation-delay: .24s; }
@keyframes tick { to { stroke-dashoffset: 0; } }
.cert__label { font-family: var(--gothic); font-size: 1.3125rem; letter-spacing: .1em; }
.cert__val { font-family: var(--display); font-size: 1.75rem; color: var(--sherwood); }

/* -------------------------------------------------------- 12. HOW TO BUY */
.steps {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.625rem);
  align-items: start;
}
.steps__tabs { display: flex; flex-direction: column; gap: 1rem; }

.step-tab {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; text-align: left; cursor: pointer;
  padding: 1.1rem 1.25rem;
  border: var(--rule) solid var(--ink);
  background: var(--paper); color: var(--ink);
  transition: background-color .22s var(--ease), transform .22s var(--ease), color .22s var(--ease);
}
.step-tab:hover { background: var(--stock-2); transform: translateX(4px); }
.step-tab[aria-selected="true"] { background: var(--sherwood); color: var(--paper); transform: translateX(8px); }
.step-tab[aria-selected="true"] .step-tab__num { background: var(--lime); color: var(--sherwood); border-color: var(--paper); }
.step-tab__num {
  flex: none; width: 46px; height: 46px;
  display: grid; place-items: center;
  border: var(--rule) solid var(--ink);
  background: var(--paper); color: var(--ink);
  font-family: var(--gothic); font-size: 1.625rem; line-height: 1;
  transform: rotate(45deg);
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}
.step-tab__num > span { transform: rotate(-45deg); }
.step-tab__label { font-family: var(--gothic); font-size: 1.6875rem; letter-spacing: .1em; }

.steps__panel {
  background: var(--paper);
  border: var(--rule) solid var(--ink);
  box-shadow: 10px 10px 0 var(--sherwood);
  padding: clamp(1.5rem, 3vw, 2.375rem);
  min-height: 360px;
}
.panel[hidden] { display: none; }
.panel__key { font-family: var(--gothic); font-size: 1.1875rem; letter-spacing: .26em; color: var(--red); }
.panel__title { font-family: var(--display); font-size: clamp(1.6rem, 1rem + 1.9vw, 2.875rem); line-height: 1; margin: .35rem 0 0; }
.panel p { margin: 1.1rem 0 0; }

.panel-anim > * { opacity: 0; transform: translateY(14px); animation: rise .45s var(--ease) forwards; }
.panel-anim > *:nth-child(2) { animation-delay: .05s; }
.panel-anim > *:nth-child(3) { animation-delay: .1s; }
.panel-anim > *:nth-child(4) { animation-delay: .15s; }
.panel-anim > *:nth-child(5) { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.note {
  margin-top: 1.4rem; padding: 1rem 1.25rem;
  background: var(--stock); border-left: 8px solid var(--sherwood);
}
.note strong { font-family: var(--gothic); font-size: 1.1875rem; letter-spacing: .16em; color: var(--sherwood); font-weight: 400; }

.warn {
  margin-top: 1.4rem; padding: 1.25rem 1.4rem;
  background: var(--red); color: var(--paper);
  border: var(--rule) solid var(--ink);
}
.warn__head { display: flex; align-items: center; gap: .7rem; font-family: var(--gothic); font-size: 1.5rem; letter-spacing: .14em; }
.warn p { margin-top: .6rem; }

.addr {
  margin-top: 1.4rem;
  padding: .9rem 1.1rem;
  background: var(--stock);
  border-left: 8px solid var(--sherwood);
}
.addr__key {
  display: block;
  font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .18em; color: var(--sherwood);
}
.addr__val {
  display: block; margin-top: .3rem;
  font-family: var(--mono); font-size: clamp(.75rem, .66rem + .4vw, .9375rem);
  line-height: 1.5; overflow-wrap: anywhere; color: var(--ink);
  border-bottom: 2px solid rgba(25, 23, 18, .28);
}
.addr__val:hover { color: var(--red); border-bottom-color: var(--red); }

.net-table { margin-top: 1.4rem; border: var(--rule) solid var(--ink); }
.net-row {
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
  padding: .85rem 1.1rem;
  border-bottom: 2px solid rgba(25, 23, 18, .26);
}
.net-row:last-child { border-bottom: 0; }
.net-row__key { flex: none; width: 122px; font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .16em; color: var(--sherwood); }
.net-row__val { flex: 1 1 200px; font-family: var(--mono); font-size: .9375rem; overflow-wrap: anywhere; }

/* --------------------------------------------------------- 13. ROADMAP */
.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.875rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
}
.phase {
  background: var(--paper);
  border: var(--rule) solid var(--ink);
  box-shadow: 8px 8px 0 rgba(25, 23, 18, .3);
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.phase:hover { transform: translateY(-6px); box-shadow: 10px 14px 0 rgba(25, 23, 18, .38); }
.phase__num {
  font-family: var(--display); font-size: 2.75rem; line-height: 1;
  color: var(--stock-2); position: absolute; top: 1rem; right: 1.1rem;
}
.phase__key { font-family: var(--gothic); font-size: 1.0625rem; letter-spacing: .24em; color: var(--red); padding-right: 3rem; }
.phase__title { font-family: var(--display); font-size: 1.5625rem; line-height: 1; margin: .45rem 0 .9rem; padding-right: 2.75rem; }
.phase ul { margin: 0; padding-left: 1.1rem; }
.phase li { margin-bottom: .45rem; font-size: 1.0625rem; line-height: 1.5; }
.phase li::marker { color: var(--sherwood); }

/* ---------------------------------------------------------- 14. ARSENAL */
.arsenal__bar {
  display: flex; align-items: flex-end; flex-wrap: wrap; gap: 1.25rem 2rem;
  margin-top: 1.4rem;
}
.arsenal__filters { display: flex; gap: .7rem; flex-wrap: wrap; margin-left: auto; }

.memes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.875rem);
  margin-top: clamp(1.75rem, 3vw, 2.375rem);
}
.meme {
  container-type: inline-size;
  border: 4px solid var(--ink);
  box-shadow: 8px 9px 0 rgba(25, 23, 18, .8);
  padding: clamp(1.4rem, 2.4vw, 2.125rem) clamp(1.25rem, 2.2vw, 1.875rem);
  min-height: 264px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.meme:hover { transform: translateY(-7px) rotate(-.7deg); box-shadow: 12px 15px 0 rgba(25, 23, 18, .85); }
.meme[hidden] { display: none; }
.meme__key { font-family: var(--gothic); font-size: 1.0625rem; letter-spacing: .26em; }
.meme__line {
  font-family: var(--display);
  font-size: clamp(1.1rem, 11cqi, 2.3rem);
  line-height: .93;
  overflow-wrap: break-word;
}
/* browsers without container queries: size off the viewport, conservatively */
@supports not (container-type: inline-size) {
  .meme__line { font-size: clamp(1.1rem, .9rem + 1vw, 1.9rem); }
}
.meme__foot { font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .2em; }

.meme--red   { background: var(--red);      color: var(--paper); }
.meme--paper { background: var(--paper);    color: var(--ink); }
.meme--green { background: var(--sherwood); color: var(--paper); }
.meme--lime  { background: var(--lime);     color: var(--ink); }
.meme--ink   { background: var(--ink);      color: var(--paper); }
.meme--stock { background: var(--stock);    color: var(--ink); }

.meme--sticker { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.meme--sticker img { width: 118px; flex: none; border: 4px solid var(--ink); }
.meme__chart { position: absolute; right: 4%; bottom: 11%; width: 58%; opacity: .32; }

/* ---------------------------------------------------------------- 15. FAQ */
.faq { max-width: 62rem; margin-top: clamp(1.75rem, 3.5vw, 2.75rem); border-top: 4px solid var(--ink); }
.faq__item { border-bottom: var(--rule) solid rgba(25, 23, 18, .25); }
.faq__item:last-child { border-bottom: 4px solid var(--ink); }
.faq__q {
  display: flex; align-items: flex-start; gap: 1.25rem;
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; color: inherit;
  padding: 1.35rem .25rem;
  font-family: var(--gothic);
  font-size: clamp(1.25rem, 1rem + .8vw, 1.875rem);
  letter-spacing: .05em;
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--red); }
.faq__icon { flex: none; margin-top: .18em; width: 24px; height: 24px; transition: transform .3s var(--ease); }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a {
  overflow: hidden;
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { min-height: 0; }
.faq__a p {
  margin: 0; padding: 0 0 1.4rem 3.4rem;
  font-family: var(--body); font-size: 1.1875rem; max-width: 62ch;
}

/* -------------------------------------------------------------- 16. RALLY */
.rally {
  background: var(--sherwood);
  color: var(--paper);
  border-top: var(--rule) solid var(--ink);
  position: relative; overflow: hidden;
}
.rally__target {
  position: absolute; right: 3%; top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 26vw, 340px);
  opacity: .9;
}
.rally__inner { position: relative; max-width: 58rem; }
.rally__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 1rem + 5.2vw, 5.375rem);
  line-height: .88; margin: .3em 0 0; color: var(--paper);
}
.rally .lede { color: rgba(241, 232, 213, .86); }
.socials { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.25rem; }

/* ------------------------------------------------------------- 17. FOOTER */
.footer { background: var(--ink); color: rgba(241, 232, 213, .7); padding-block: clamp(2rem, 4vw, 3.25rem); }
.footer__top {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  border-bottom: 2px solid rgba(241, 232, 213, .2);
  padding-bottom: 1.6rem;
}
.footer__mark { width: 76px; height: 76px; border-radius: 50%; border: var(--rule) solid rgba(241,232,213,.5); flex: none; }
.footer__name { font-family: var(--gothic); font-size: 1.875rem; letter-spacing: .05em; color: var(--paper); }
.footer__tag { font-family: var(--gothic); font-size: 1.0625rem; letter-spacing: .2em; color: var(--lime); margin-top: .2rem; }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-left: auto; }
.footer__nav a { font-family: var(--gothic); font-size: 1.125rem; letter-spacing: .14em; color: rgba(241, 232, 213, .75); }
.footer__nav a:hover { color: var(--lime); }
.footer__legal { margin: 1.5rem 0 0; font-size: .9375rem; line-height: 1.6; max-width: 68rem; }
.footer__colophon { margin-top: 1.25rem; font-family: var(--gothic); font-size: .9375rem; letter-spacing: .2em; color: rgba(241, 232, 213, .45); }

/* --------------------------------------------------------- 18. ANIMATION */
/* hero load sequence */
.hero__head .eyebrow,
.hero__title span,
.hero__body > * ,
.contract { opacity: 0; animation: rise .8s var(--ease) forwards; }
.hero__head .eyebrow  { animation-delay: .1s; }
.hero__title span:nth-child(1) { animation-delay: .2s; }
.hero__title span:nth-child(2) { animation-delay: .3s; }
.hero__title span:nth-child(3) { animation-delay: .4s; }
.hero__body > *:nth-child(1) { animation-delay: .55s; }
.hero__body > *:nth-child(2) { animation-delay: .45s; }
.contract { animation-delay: .7s; }

.seal-block { animation: stamp .7s var(--ease-out-back) .45s both; }
@keyframes stamp {
  from { opacity: 0; transform: scale(1.22) rotate(-9deg); }
  to   { opacity: 1; transform: none; }
}

/* the arrow draws itself */
.draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.5s var(--ease) .35s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.pop {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: pop .4s var(--ease-out-back) 1.65s forwards;
}
@keyframes pop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------- 19. RESPONSIVE */
/* the full nav needs ~1090px of header row; hand over to the burger before that */
@media (max-width: 1150px) {
  .nav { display: none; }
  .burger { display: flex; flex-direction: column; }
  .btn--header { margin-left: auto; }   /* takes over the push-right from .nav */
}

/* below this the brand + CTA + burger stop fitting on one row */
@media (max-width: 560px) {
  .header .btn--header { display: none; }
  .burger { margin-left: auto; }
}

@media (max-width: 1000px) {
  .hero__body { grid-template-columns: minmax(0, 1fr); }
  .seal-block { justify-self: center; margin-top: .5rem; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .steps__panel { min-height: 0; }
}

@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2n+1) { padding-left: 0; border-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(241, 232, 213, .2); }
  .hero__arrow { top: 2%; right: -12%; width: 190px; opacity: .8; }
  .contract .btn { margin-left: 0; width: 100%; }
  .faq__a p { padding-left: 0; }
  .btn:not(.btn--icon) { width: 100%; }
  .hero__actions .btn, .socials .btn { flex: 1 1 100%; }
  .hero__socials { gap: .75rem; }
  .hero__socials-label { flex: 1 1 100%; }
  .slogan__sticker { margin-inline: auto; }
  .arsenal__filters { margin-left: 0; }
  .rally__target { opacity: .35; right: -30%; }
}

@media (max-width: 420px) {
  .brand__name { font-size: 1.4rem; }
}

/* --------------------------------------------- 20. REDUCED MOTION / PRINT */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__head .eyebrow, .hero__title span, .hero__body > *, .contract { opacity: 1; }
  .draw { stroke-dashoffset: 0; }
  .pop { opacity: 1; }
  .ticker__track, .marquee__track { animation: none; }
}

@media print {
  .header, .ticker, .marquee, .burger, .mobile-nav { display: none; }
  body { background: #fff; }
  .grain::after { display: none; }
}

/* a link whose URL is not configured yet */
.btn[aria-disabled="true"], .is-unset {
  border-style: dashed;
  box-shadow: none;
  cursor: not-allowed;
}
