:root {
  --bg: #0c0b0a;
  --bg-2: #141210;
  --panel: #1b1814;
  --ink: #f6f0e4;
  --ink-dim: #b7ab9a;
  --stamp: #ff6a1a;
  --stamp-hot: #ff8c42;
  --amber: #e8a54b;
  --receipt: #f3e6c9;
  --receipt-ink: #1a1612;
  --receipt-rule: rgba(26, 22, 18, 0.16);
  --cyan: #14f1c9;
  --purple: #9b4dff;
  --line: rgba(243, 230, 201, 0.12);
  --font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Segoe UI", sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Courier New", monospace;
  --header-h: 68px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

body.is-nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
}

p {
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--stamp);
  color: #140b04;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.skip-link:focus {
  top: 12px;
}

.scanlines,
.pixel-grid {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
}

.scanlines {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.015) 0 1px,
    transparent 1px 4px
  );
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.pixel-grid {
  background-image:
    linear-gradient(rgba(255, 106, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 26, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 0, #000 0, transparent 72%);
  opacity: 0.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 11, 10, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 26, 0.4);
  box-shadow: 0 0 0 1px rgba(155, 77, 255, 0.18);
}

.brand__name {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.nav a:hover,
.mobile-nav a:hover {
  color: var(--stamp-hot);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--compact {
  min-height: 40px;
  padding: 0 14px;
}

.btn--lg {
  min-height: 52px;
  padding: 0 22px;
  font-size: 13px;
}

.btn--stamp {
  background: linear-gradient(180deg, var(--stamp-hot), var(--stamp));
  color: #1a0d04;
  box-shadow: 0 8px 24px rgba(255, 106, 26, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(243, 230, 201, 0.24);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--stamp:hover {
  box-shadow: 0 10px 28px rgba(255, 106, 26, 0.34);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -6px;
}

.menu-toggle__bars::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #120f0d;
  padding: 8px 16px 18px;
}

.mobile-nav nav {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 1px dashed rgba(243, 230, 201, 0.1);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 12px;
  display: grid;
  gap: 8px;
  position: relative;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(232, 165, 75, 0.4);
  border-radius: 999px;
  background: rgba(232, 165, 75, 0.08);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.status-pill--center {
  margin-bottom: 18px;
}

.led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: blink 1.6s steps(2, end) infinite;
}

.hero__kicker,
.section-kicker,
.bezel__meta,
.terminal__title,
.receipt__sub,
.stamp-note,
.copy-block__note,
.tape__waiting-kicker,
.tape__waiting-ca {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero__kicker {
  margin: 18px 0 10px;
  color: var(--cyan);
}

.hero__title {
  font-size: clamp(3.4rem, 12vw, 7rem);
  color: var(--ink);
}

.hero__slogan {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3.4rem);
  line-height: 0.92;
  color: var(--stamp-hot);
}

.hero__support {
  margin-top: 18px;
  font-size: 1.15rem;
  max-width: 22ch;
}

.hero__line {
  margin-top: 8px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 13px;
}

.stage-row {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  overflow-x: auto;
}

.stage-row li {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border: 1px dashed rgba(255, 106, 26, 0.45);
  background:
    radial-gradient(circle at 0 50%, transparent 5px, rgba(255, 106, 26, 0.08) 5.5px) left / 12px 100% no-repeat,
    rgba(255, 106, 26, 0.05);
}

.stage-row__num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--amber);
}

.stage-row__label {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 14px;
}

.stage-row__arrow {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--stamp), var(--purple));
  border: 0;
  padding: 0;
  position: relative;
}

.stage-row__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--purple);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__mascot {
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero__mascot img {
  width: min(100%, 560px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
  animation: float 5.5s ease-in-out infinite;
}

.banner-bezel {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 40px;
}

.bezel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #100e0c;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(20, 241, 201, 0.08);
}

.bezel__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.bezel__meta--right {
  margin-left: auto;
  color: var(--amber);
}

.banner-bezel__art {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.narrative,
.receipt-section,
.chart-section,
.manifesto,
.final-cta,
.terminal-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2,
.final-cta h2 {
  font-size: clamp(2.4rem, 8vw, 5rem);
  margin-top: 10px;
}

.route {
  display: grid;
  gap: 18px;
}

.station {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
  position: relative;
  clip-path: polygon(
    10px 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    10px 100%,
    0 calc(100% - 10px),
    0 10px
  );
}

.station::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 106, 26, 0.5) 1.2px, transparent 1.4px);
  background-size: 10px 10px;
  background-position: -5px -5px;
  opacity: 0.18;
  pointer-events: none;
}

.station__code {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.station h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
  color: var(--stamp-hot);
}

.station p {
  color: var(--ink-dim);
  max-width: 28ch;
}

.route__track {
  height: 28px;
  position: relative;
  background-image: repeating-linear-gradient(
    90deg,
    var(--stamp) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.7;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.route__slip {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 18px;
  margin-top: -9px;
  background: var(--receipt);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  animation: feed 4.8s linear infinite;
}

.copy-block {
  margin-top: 42px;
  display: grid;
  gap: 22px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.08), rgba(155, 77, 255, 0.05));
  border: 1px solid var(--line);
}

.copy-block__note {
  color: var(--amber);
}

.deny-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--ink);
}

.deny-list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(243, 230, 201, 0.12);
}

.deny-list li::before {
  content: "× ";
  color: var(--stamp);
}

blockquote {
  margin: 0;
  padding: 0;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height: 1.15;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

blockquote p + p {
  margin-top: 16px;
  color: var(--stamp-hot);
}

.receipt-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
  position: relative;
  padding-top: 12px;
}

.stamp-arm {
  height: 0;
  position: relative;
  z-index: 3;
}

.stamp-head {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(45deg, #c2410c 0 6px, #ff6a1a 6px 12px);
  clip-path: polygon(
    8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px),
    calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px
  );
  transform: translateY(-120px) scale(0.85);
  opacity: 0;
  box-shadow: inset 0 0 0 8px rgba(26, 13, 4, 0.25);
}

.receipt {
  width: min(100%, 430px);
  background:
    repeating-linear-gradient(transparent 0 28px, var(--receipt-rule) 28px 29px),
    var(--receipt);
  color: var(--receipt-ink);
  padding: 8px 22px 18px;
  position: relative;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.35),
    8px 0 0 rgba(155, 77, 255, 0.12);
}

.receipt__perf {
  height: 14px;
  margin: 0 -22px;
  background: radial-gradient(circle, var(--bg) 5px, transparent 5.5px) 0 0 / 14px 14px;
}

.receipt__head {
  text-align: center;
  padding: 10px 0 16px;
  border-bottom: 2px dashed rgba(26, 22, 18, 0.22);
}

.receipt__brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.receipt__sub {
  margin-top: 6px;
  color: rgba(26, 22, 18, 0.55);
}

.receipt__rows {
  margin: 8px 0 0;
}

.receipt__rows > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(26, 22, 18, 0.18);
  font-family: var(--font-mono);
  font-size: 13px;
}

.receipt__rows dt {
  color: rgba(26, 22, 18, 0.58);
}

.receipt__rows dd {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 68%);
}

.ca-value {
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.copy-btn,
.terminal__actions .btn {
  min-height: 36px;
}

.copy-btn {
  border: 1px solid rgba(26, 22, 18, 0.25);
  background: #1a1612;
  color: var(--receipt);
  border-radius: 999px;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.receipt__close {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 0.95;
  margin: 22px 0 10px;
}

.receipt__mark {
  position: absolute;
  right: 28px;
  bottom: 78px;
  width: 86px;
  height: 86px;
  opacity: 0;
  transform: scale(0.4) rotate(-12deg);
  transition: opacity 0.2s ease, transform 0.2s ease;
  background:
    radial-gradient(circle, transparent 18px, #ff6a1a 19px 27px, transparent 28px),
    repeating-conic-gradient(#ff6a1a 0 12deg, #c2410c 0 24deg);
  clip-path: polygon(
    6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px),
    calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.receipt.is-stamped .receipt__mark {
  opacity: 0.82;
  transform: scale(1) rotate(-8deg);
}

.receipt-stage.is-stamping .stamp-head {
  animation: stamp-drop 0.55s cubic-bezier(0.2, 1.4, 0.3, 1) forwards;
}

.receipt-stage.is-stamping .receipt {
  animation: receipt-shake 0.42s ease;
}

.stamp-note {
  text-align: center;
  max-width: 36ch;
}

.terminal {
  background: #0a0908;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 106, 26, 0.08);
}

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

.cursor {
  width: 8px;
  height: 14px;
  background: var(--stamp);
  margin-left: auto;
  animation: blink 1s steps(1) infinite;
}

.terminal__grid {
  display: grid;
  gap: 12px;
  margin: 0;
}

.terminal__grid > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(243, 230, 201, 0.1);
  font-family: var(--font-mono);
  font-size: 13px;
}

.terminal__grid dt {
  color: var(--ink-dim);
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

.terminal__grid dd {
  margin: 0;
  color: var(--stamp-hot);
  word-break: break-all;
  overflow-wrap: anywhere;
  text-align: right;
}

.terminal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tape {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.tape__slot {
  width: min(100%, 720px);
  height: 18px;
  background: linear-gradient(#2a241e, #0e0c0a);
  border-radius: 6px 6px 0 0;
  box-shadow: inset 0 -6px 0 rgba(255, 106, 26, 0.25);
}

.tape__body {
  width: min(100%, 720px);
  min-height: 320px;
  background: var(--receipt);
  color: var(--receipt-ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.tape__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.18;
  filter: grayscale(0.4);
  pointer-events: none;
}

.tape__waiting {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 32px 18px;
  background:
    repeating-linear-gradient(transparent 0 28px, rgba(26, 22, 18, 0.08) 28px 29px);
}

.tape__waiting-copy {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1;
  max-width: 12ch;
}

.tape__waiting-ca {
  letter-spacing: 0.04em;
  text-transform: none;
  word-break: break-all;
  overflow-wrap: anywhere;
  max-width: min(100%, 42ch);
}

.tape__open {
  width: min(100%, 320px);
}

.manifesto__sheet {
  background: var(--receipt);
  color: var(--receipt-ink);
  padding: clamp(28px, 6vw, 64px);
  position: relative;
  overflow: hidden;
}

.manifesto__sheet::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed rgba(26, 22, 18, 0.18);
  pointer-events: none;
}

.manifesto .section-kicker {
  color: #8a5a22;
  position: relative;
}

.manifesto__print {
  position: relative;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.manifesto__print p + p {
  margin-top: 28px;
}

.manifesto__print p:nth-child(2) {
  color: #c2410c;
}

.manifesto__print p:nth-child(3) {
  text-shadow: 3px 0 0 rgba(155, 77, 255, 0.28), -2px 0 0 rgba(20, 241, 201, 0.2);
}

.manifesto__close {
  position: relative;
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}

.final-cta {
  padding-bottom: 28px;
}

.final-cta__panel {
  padding: clamp(28px, 6vw, 64px) 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 106, 26, 0.16), transparent 46%),
    var(--panel);
  border: 1px solid var(--line);
}

.final-cta__ticker {
  margin: 18px 0 26px;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px 40px;
  text-align: center;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer__name {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.footer__links a:hover {
  color: var(--stamp-hot);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes feed {
  from {
    left: -8%;
  }
  to {
    left: 100%;
  }
}

@keyframes stamp-drop {
  0% {
    opacity: 0;
    transform: translateY(-120px) scale(0.85);
  }
  62% {
    opacity: 1;
    transform: translateY(18px) scale(1.05);
  }
  78% {
    transform: translateY(6px) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
  }
}

@keyframes receipt-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px) rotate(-0.4deg);
  }
  50% {
    transform: translateX(5px) rotate(0.5deg);
  }
  75% {
    transform: translateX(-2px);
  }
}

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

  .header-actions {
    gap: 6px;
  }

  .btn--compact {
    padding: 0 10px;
    letter-spacing: 0.08em;
  }

  .receipt__rows > div {
    flex-direction: column;
    align-items: flex-start;
  }

  .receipt__rows dd {
    max-width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .terminal__grid > div {
    flex-direction: column;
    gap: 6px;
  }

  .terminal__grid dd {
    text-align: left;
  }
}

@media (min-width: 760px) {
  .nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .header-actions {
    margin-left: 0;
  }

  .route {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    align-items: stretch;
  }

  .route__track {
    height: 8px;
    width: 100%;
    align-self: center;
    background-image: repeating-linear-gradient(
      90deg,
      var(--stamp) 0 8px,
      transparent 8px 16px
    );
  }

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

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    min-height: calc(100vh - var(--header-h));
    padding-top: 12px;
  }

  .hero__mascot {
    justify-content: flex-end;
    margin-right: -4vw;
  }

  .hero__mascot img {
    width: min(42vw, 680px);
  }

  .banner-bezel__art {
    aspect-ratio: 21 / 7;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .led,
  .cursor,
  .hero__mascot img,
  .route__slip,
  .receipt-stage.is-stamping .stamp-head,
  .receipt-stage.is-stamping .receipt,
  .reveal {
    animation: none;
    transition: none;
  }

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

  .receipt__mark {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .receipt-stage.is-stamping .stamp-head {
    opacity: 0;
  }
}
