:root {
  --yellow: #f7b500;
  --yellow-bright: #ffc400;
  --cream: #f2e8d5;
  --paper: #e5d5b9;
  --brown: #2a1008;
  --brown-2: #180905;
  --black: #0b0705;
  --green: #9fff38;
  --line: rgba(242, 232, 213, 0.2);
  --shell: min(1180px, calc(100vw - 48px));
  --shadow: 12px 12px 0 rgba(11, 7, 5, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(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;
}

.route-tape {
  position: relative;
  z-index: 20;
  height: 34px;
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
  border-bottom: 2px solid var(--black);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  line-height: 34px;
  white-space: nowrap;
}

.route-tape__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: tape 28s linear infinite;
}

.route-tape span {
  display: inline-block;
  padding-inline: 28px;
}

.route-tape i {
  width: 10px;
  height: 10px;
  background: var(--black);
  transform: rotate(45deg);
}

@keyframes tape {
  to { transform: translateX(-50%); }
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 34px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 14px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(11, 7, 5, 0.78), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--yellow);
  background: white;
  clip-path: polygon(50% 0, 95% 10%, 95% 70%, 85% 86%, 50% 100%, 15% 86%, 5% 70%, 5% 10%);
}

.brand__mark img {
  width: 47px;
  height: 52px;
  object-fit: cover;
  object-position: 50% 46%;
}

.brand__word {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  background: rgba(11, 7, 5, 0.65);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.header-cta span {
  padding-left: 8px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, calc(100vh - 34px));
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
}

.hero__art,
.hero__shade,
.hero__noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art {
  object-fit: cover;
  object-position: center;
  animation: hero-push 18s ease-in-out infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.97) 0%, rgba(8, 5, 3, 0.86) 28%, rgba(8, 5, 3, 0.2) 68%, rgba(8, 5, 3, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 5, 3, 0.48), transparent 45%);
}

.hero__noise,
.hero__noise::after {
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

@keyframes hero-push {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 112px;
}

.eyebrow,
.kicker {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(159, 255, 56, 0.15), 0 0 18px var(--green);
  animation: pulse 1.4s ease-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(159, 255, 56, 0), 0 0 22px var(--green); }
}

.hero h1,
.section-heading h2,
.lore h2,
.scanner h2,
.chart-heading h2,
.manifesto h2,
.dispatch-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(76px, 9.7vw, 152px);
  text-shadow: 0 9px 0 rgba(0, 0, 0, 0.28);
}

.hero h1 em {
  color: var(--yellow);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.18);
}

.hero__lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero__actions,
.dispatch-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 2px solid transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
}

.button--yellow {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.5);
}

.button--yellow:hover,
.button--yellow:focus-visible {
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
}

.button--yellow span {
  font-size: 18px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(11, 7, 5, 0.45);
}

.button small {
  color: var(--yellow);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.button--dark {
  color: var(--yellow);
  background: var(--black);
  box-shadow: 7px 7px 0 rgba(42, 16, 8, 0.28);
}

.button--outline-dark {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.microcopy {
  max-width: 480px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  z-index: 4;
  right: 4vw;
  bottom: 42px;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border: 4px double var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  text-align: center;
  transform: rotate(-10deg);
}

.hero__stamp::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--yellow);
  border-radius: 50%;
  content: "";
}

.hero__stamp span,
.hero__stamp small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.hero__stamp strong {
  font-family: Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.status-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--black);
  background: var(--cream);
  border-bottom: 1px solid var(--black);
}

.status-item {
  min-width: 0;
  padding: 30px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(11, 7, 5, 0.28);
}

.status-item:last-child {
  border-right: 0;
}

.status-item span,
.status-item strong {
  display: block;
}

.status-item span {
  margin-bottom: 8px;
  color: rgba(11, 7, 5, 0.52);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.status-item strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(15px, 1.7vw, 21px);
  letter-spacing: -0.02em;
}

.status-item__soon {
  color: #8a5a00;
}

.lore {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.lore__image {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(247, 181, 0, 0.6);
  background: var(--brown);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.lore__image::before {
  position: absolute;
  z-index: 2;
  top: -22px;
  left: 50%;
  width: 120px;
  height: 38px;
  background: rgba(247, 181, 0, 0.82);
  content: "";
  transform: translateX(-50%) rotate(2deg);
  clip-path: polygon(2% 8%, 98% 0, 94% 100%, 0 93%);
}

.lore__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.93) contrast(1.05);
}

.image-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: var(--black);
  background: var(--yellow);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.lore__copy .kicker,
.section-heading .kicker,
.chart-heading .kicker,
.manifesto__copy .kicker {
  margin: 0 0 18px;
}

.lore h2 {
  max-width: 510px;
  font-size: clamp(54px, 6.2vw, 86px);
}

.lore__copy > p:not(.kicker) {
  color: rgba(242, 232, 213, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.lore__copy strong {
  color: var(--yellow);
}

.signed-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.signed-line > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-weight: 900;
}

.signed-line small,
.signed-line strong {
  display: block;
}

.signed-line small {
  margin-bottom: 4px;
  color: rgba(242, 232, 213, 0.45);
  font-size: 8px;
  letter-spacing: 0.17em;
}

.signed-line strong {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.route {
  position: relative;
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
}

.route::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(90deg, transparent 49.5%, var(--black) 50%, transparent 50.5%), linear-gradient(0deg, transparent 49.5%, var(--black) 50%, transparent 50.5%);
  background-size: 42px 42px;
  content: "";
}

.route .shell {
  position: relative;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 40px;
  margin-bottom: 58px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  color: rgba(11, 7, 5, 0.56);
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(62px, 7vw, 102px);
}

.section-heading h2 span {
  display: inline-block;
  padding-inline: 0.08em;
  color: var(--yellow);
  background: var(--black);
  transform: rotate(-1deg);
}

.section-heading > p:last-child {
  max-width: 280px;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 410px;
  padding: 26px;
  border: 2px solid var(--black);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--black);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  transform: translate(-4px, -4px) rotate(-0.4deg);
  box-shadow: 13px 13px 0 var(--black);
}

.route-card--launch {
  color: var(--cream);
  background: var(--brown);
}

.route-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
}

.route-card__top span {
  font-family: Impact, sans-serif;
  font-size: 28px;
}

.route-card__top i {
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.route-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 34px 0 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 40px;
  line-height: 1;
}

.route-card h3 {
  margin: 0 0 12px;
  font-family: Impact, sans-serif;
  font-size: 34px;
  letter-spacing: 0.01em;
}

.route-card p {
  max-width: 310px;
  margin: 0;
  opacity: 0.67;
  font-size: 14px;
  line-height: 1.55;
}

.tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border: 1px dashed currentColor;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
}

.tag--ready {
  color: #217218;
}

.scanner {
  color: var(--black);
  background: var(--paper);
  border-bottom: 1px solid var(--black);
}

.scanner__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.scanner .kicker {
  color: #805900;
}

.scanner h2 {
  max-width: 500px;
  font-size: clamp(56px, 6.5vw, 90px);
}

.scanner__copy > p:not(.kicker) {
  max-width: 460px;
  font-size: 16px;
  line-height: 1.65;
}

.scanner__label {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 2px solid var(--black);
  background: #fff9e9;
  box-shadow: 12px 12px 0 rgba(42, 16, 8, 0.24);
  transform: rotate(1.2deg);
}

.scanner__label::after {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(0deg, transparent 0 3px, var(--black) 3px 4px);
  content: "";
  pointer-events: none;
}

.label-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--black);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.barcode {
  height: 78px;
  margin: 22px 0;
  background: repeating-linear-gradient(90deg, var(--black) 0 3px, transparent 3px 7px, var(--black) 7px 9px, transparent 9px 14px, var(--black) 14px 20px, transparent 20px 23px);
}

.label-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 20px;
  align-items: baseline;
}

.label-grid span {
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.label-grid strong {
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: clamp(17px, 2vw, 24px);
}

.label-stamp {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  border: 3px solid #b11a13;
  border-radius: 4px;
  color: #b11a13;
  font-family: Impact, sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  transform: rotate(-8deg);
}

.scanner__label.scanned {
  animation: label-jolt 380ms ease;
}

@keyframes label-jolt {
  25% { transform: rotate(-1deg) translateY(-5px); }
  75% { transform: rotate(2deg) translateY(3px); }
}

.scan-beam {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scan-beam::after {
  position: absolute;
  top: 0;
  left: -40%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(159, 255, 56, 0.65), transparent);
  content: "";
  transform: skewX(-15deg);
}

#scan-button.scanning .scan-beam::after {
  animation: scan 550ms ease;
}

@keyframes scan {
  to { left: 120%; }
}

.chart-section {
  background: var(--brown-2);
}

.chart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.chart-heading h2 {
  font-size: clamp(64px, 8vw, 112px);
}

.chart-heading h2 span,
.manifesto h2 span {
  color: var(--yellow);
}

.chart-live {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(159, 255, 56, 0.4);
  color: var(--green);
  background: rgba(159, 255, 56, 0.05);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.chart-terminal {
  overflow: hidden;
  border: 1px solid rgba(247, 181, 0, 0.42);
  background: #070b07;
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.28);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(247, 181, 0, 0.3);
  background: #110d09;
}

.terminal-bar > span {
  display: flex;
  gap: 7px;
}

.terminal-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5a3b10;
}

.terminal-bar i:first-child {
  background: var(--yellow);
}

.terminal-bar strong,
.terminal-bar small {
  font-size: 8px;
  letter-spacing: 0.13em;
}

.terminal-bar small {
  justify-self: end;
  color: rgba(242, 232, 213, 0.38);
}

.terminal-body {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-image: linear-gradient(rgba(159, 255, 56, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(159, 255, 56, 0.08) 1px, transparent 1px);
  background-size: 9% 50px;
}

.chart-grid::after {
  position: absolute;
  right: 4%;
  bottom: 21%;
  left: 3%;
  height: 40%;
  border-top: 3px solid var(--green);
  content: "";
  filter: drop-shadow(0 0 8px var(--green));
  clip-path: polygon(0 90%, 6% 82%, 10% 91%, 18% 69%, 25% 75%, 31% 52%, 38% 67%, 44% 42%, 52% 50%, 58% 22%, 65% 32%, 72% 12%, 80% 23%, 88% 3%, 94% 9%, 100% 0, 100% 8%, 94% 17%, 88% 11%, 80% 31%, 72% 20%, 65% 40%, 58% 30%, 52% 58%, 44% 50%, 38% 75%, 31% 60%, 25% 83%, 18% 77%, 10% 99%, 6% 90%, 0 98%);
  background: var(--green);
}

.fake-candle {
  position: absolute;
  bottom: 5%;
  width: 8px;
  height: 12%;
  background: rgba(159, 255, 56, 0.34);
}

.c1 { left: 10%; height: 10%; }.c2 { left: 22%; height: 18%; }
.c3 { left: 34%; height: 16%; }.c4 { left: 46%; height: 25%; }
.c5 { left: 58%; height: 35%; }.c6 { left: 70%; height: 43%; }
.c7 { left: 82%; height: 55%; }.c8 { left: 92%; height: 70%; }

.terminal-message {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 42px;
  border: 1px solid rgba(159, 255, 56, 0.35);
  color: var(--cream);
  background: rgba(7, 11, 7, 0.9);
  text-align: center;
  box-shadow: 0 0 70px rgba(159, 255, 56, 0.09);
}

.terminal-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 34px;
}

.terminal-message p {
  color: var(--green);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.terminal-message h3 {
  margin: 14px 0;
  font-family: Impact, sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.92;
}

.terminal-message small {
  color: rgba(242, 232, 213, 0.44);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

#dexscreener-frame {
  width: 100%;
  min-height: 660px;
  border: 0;
}

.contract-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px dashed rgba(247, 181, 0, 0.42);
}

.contract-box small,
.contract-box strong {
  display: block;
}

.contract-box small {
  margin-bottom: 5px;
  color: rgba(242, 232, 213, 0.42);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contract-box strong {
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(14px, 2vw, 18px);
}

.copy-button {
  padding: 12px 16px;
  border: 1px solid rgba(242, 232, 213, 0.28);
  color: rgba(242, 232, 213, 0.35);
  background: transparent;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.copy-button:not(:disabled) {
  border-color: var(--yellow);
  color: var(--yellow);
  cursor: pointer;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.manifesto__art {
  position: relative;
  border: 10px solid var(--paper);
  box-shadow: 14px 14px 0 var(--yellow);
  transform: rotate(-1deg);
}

.manifesto__art img {
  aspect-ratio: 1;
  object-fit: cover;
}

.manifesto__art-tag {
  position: absolute;
  right: -20px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.manifesto__art-tag strong {
  font-size: 22px;
}

.manifesto h2 {
  max-width: 650px;
  font-size: clamp(52px, 6.2vw, 88px);
}

.manifesto-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.manifesto-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.manifesto-list strong {
  color: var(--yellow);
  font-family: Impact, sans-serif;
  font-size: 26px;
}

.manifesto-list p {
  margin: 0;
  color: rgba(242, 232, 213, 0.54);
  font-size: 13px;
  line-height: 1.6;
}

.manifesto-list b {
  color: var(--cream);
  letter-spacing: 0.05em;
}

.dispatch-cta {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--black);
  background: var(--yellow);
  text-align: center;
}

.dispatch-cta::before,
.dispatch-cta::after {
  position: absolute;
  width: 430px;
  height: 180px;
  border: 3px solid rgba(11, 7, 5, 0.15);
  border-radius: 50%;
  content: "";
}

.dispatch-cta::before { top: 15%; left: -120px; transform: rotate(25deg); }
.dispatch-cta::after { right: -80px; bottom: 10%; transform: rotate(-30deg); }

.dispatch-cta__track {
  position: absolute;
  top: 43%;
  left: -8%;
  color: rgba(11, 7, 5, 0.06);
  font-family: Impact, sans-serif;
  font-size: clamp(150px, 21vw, 320px);
  line-height: 0.7;
  white-space: nowrap;
  transform: rotate(-7deg);
}

.dispatch-cta__content {
  position: relative;
  z-index: 2;
}

.dispatch-seal {
  display: grid;
  width: 110px;
  height: 110px;
  margin: 0 auto 26px;
  place-items: center;
  overflow: hidden;
  background: white;
  clip-path: polygon(50% 0, 96% 10%, 96% 70%, 84% 88%, 50% 100%, 16% 88%, 4% 70%, 4% 10%);
}

.dispatch-seal img {
  width: 112px;
  height: 124px;
  object-fit: cover;
  object-position: 50% 45%;
}

.dispatch-cta .kicker {
  color: rgba(11, 7, 5, 0.54);
}

.dispatch-cta h2 {
  font-size: clamp(70px, 10vw, 140px);
}

.dispatch-cta__content > p:not(.kicker) {
  max-width: 580px;
  margin: 26px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

.dispatch-cta__buttons {
  justify-content: center;
}

.site-footer {
  padding: 34px 0;
  background: #080503;
  border-top: 1px solid rgba(247, 181, 0, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong,
.footer-brand small,
.footer-route small,
.footer-route strong {
  display: block;
}

.footer-brand strong {
  font-family: Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.footer-brand small,
.footer-route small {
  color: rgba(242, 232, 213, 0.36);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.footer-route strong {
  margin-top: 5px;
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.footer-grid > p {
  margin: 0;
  color: rgba(242, 232, 213, 0.32);
  font-size: 9px;
  line-height: 1.6;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(360px, calc(100vw - 32px));
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--black);
  color: var(--black);
  background: var(--yellow);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
  transition: opacity 180ms ease, transform 240ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast > span {
  font-size: 28px;
}

.toast strong,
.toast small {
  display: block;
}

.toast strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.toast small {
  margin-top: 4px;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .header-cta { display: none; }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 42px;
    gap: 5px;
    place-content: center;
    border: 1px solid rgba(247, 181, 0, 0.6);
    background: rgba(11, 7, 5, 0.7);
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--yellow);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 34px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 90px 28px 40px;
    background: rgba(11, 7, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: Impact, sans-serif;
    font-size: 34px;
    letter-spacing: 0.03em;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero__art { object-position: 60% center; }
  .hero__shade {
    background: linear-gradient(0deg, rgba(8, 5, 3, 0.98) 0%, rgba(8, 5, 3, 0.7) 56%, rgba(8, 5, 3, 0.1) 100%);
  }

  .hero__content { padding: 170px 0 74px; }
  .hero h1 { font-size: clamp(72px, 14vw, 112px); }
  .hero__stamp { display: none; }

  .status-strip { grid-template-columns: 1fr 1fr; }
  .status-item:nth-child(2) { border-right: 0; }
  .status-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(11, 7, 5, 0.28); }

  .lore,
  .manifesto,
  .scanner__inner {
    grid-template-columns: 1fr;
  }

  .lore__copy { order: -1; }
  .lore h2 { max-width: 680px; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p:last-child { max-width: 540px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 350px; }
  .chart-heading { align-items: start; flex-direction: column; }

  .manifesto__art {
    width: min(570px, 92%);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding-block: 84px; }

  .route-tape { height: 30px; line-height: 30px; }
  .site-header { top: 30px; min-height: 76px; padding-inline: 14px; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__word { font-size: 24px; }
  .site-nav { inset: 30px 0 0; }

  .hero { min-height: 780px; }
  .hero__art { object-position: 61% top; }
  .hero__shade { background: linear-gradient(0deg, rgba(8, 5, 3, 1) 4%, rgba(8, 5, 3, 0.72) 55%, rgba(8, 5, 3, 0.08) 100%); }
  .hero__content { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(64px, 20.2vw, 92px); }
  .hero__lede { margin-top: 20px; font-size: 15px; line-height: 1.5; }
  .hero__actions { margin-top: 26px; }
  .hero__actions .button { width: 100%; }
  .microcopy { font-size: 8px; }

  .status-item { padding: 22px 16px; }
  .status-item strong { font-size: 14px; }

  .lore h2,
  .scanner h2,
  .manifesto h2 { font-size: clamp(48px, 15.5vw, 68px); }
  .section-heading h2,
  .chart-heading h2 { font-size: clamp(58px, 17vw, 78px); }

  .lore { gap: 56px; }
  .lore__image { padding: 8px; box-shadow: 8px 8px 0 rgba(11, 7, 5, 0.34); }
  .image-label { right: 8px; bottom: 8px; }

  .route-card { min-height: 370px; padding: 22px; box-shadow: 6px 6px 0 var(--black); }
  .route-card__icon { margin-block: 28px 22px; }

  .scanner__inner { gap: 46px; }
  .scanner__label { padding: 18px; box-shadow: 8px 8px 0 rgba(42, 16, 8, 0.24); }
  .barcode { height: 58px; }
  .label-grid { grid-template-columns: 95px 1fr; gap: 9px 12px; }
  .label-stamp { position: static; display: inline-block; margin-top: 20px; }

  .terminal-bar { grid-template-columns: 1fr auto; }
  .terminal-bar strong { display: none; }
  .terminal-body { min-height: 500px; }
  .terminal-message { width: calc(100% - 28px); padding: 34px 18px; }
  .contract-box { align-items: stretch; flex-direction: column; }
  .contract-box strong { overflow-wrap: anywhere; }

  .manifesto { gap: 65px; }
  .manifesto__art { width: calc(100% - 12px); border-width: 6px; box-shadow: 9px 9px 0 var(--yellow); }
  .manifesto-list > div { grid-template-columns: 42px 1fr; }

  .dispatch-cta { min-height: 650px; }
  .dispatch-cta h2 { font-size: clamp(66px, 19.5vw, 90px); }
  .dispatch-cta__buttons .button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid > p { grid-column: auto; }
  .toast { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}
