:root {
  --void: #070504;
  --ink: #100b07;
  --panel: #1a120c;
  --plate: #24180f;
  --burnt: #c2410c;
  --ember: #e85d04;
  --orange: #ff7a18;
  --bright: #ff9f1c;
  --amber: #f5c518;
  --gold: #ffd24a;
  --cream: #f6ead4;
  --paper: #efe2c6;
  --paper-ink: #1c140c;
  --muted: #b8a48a;
  --sol-cyan: #14f195;
  --sol-purple: #9945ff;
  --line: rgba(246, 234, 212, 0.14);
  --header-h: 68px;
  --font-display: "Chakra Petch", "Trebuchet MS", sans-serif;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(1200px 600px at 80% 8%, rgba(255, 122, 24, 0.12), transparent 55%),
    radial-gradient(900px 500px at 10% 30%, rgba(196, 65, 12, 0.1), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--void) 100%);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.6;
  image-rendering: auto;
}

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

a {
  color: var(--amber);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
}

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

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12) 0,
    rgba(0, 0, 0, 0.12) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: 100%;
  min-height: var(--header-h);
  overflow-x: clip;
  background: rgba(16, 11, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 7px;
  background:
    radial-gradient(circle at 8px 0, transparent 5px, var(--ink) 5.5px) 0 0 / 16px 7px;
  opacity: 0.95;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1180px;
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0 16px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-inline: auto;
}

.nav a {
  color: var(--cream);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--amber);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease), background 0.12s var(--ease);
}

.btn:hover {
  color: var(--ink);
  background: var(--amber);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
}

.btn-buy {
  border-color: var(--orange);
  background: linear-gradient(180deg, var(--orange), var(--burnt));
  color: #1a0c04;
}

.btn-buy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(16, 11, 7, 0.45);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 28px 40px;
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 20px;
}

.hero-copy,
.hero-art,
.hero-stamp-frame,
.hero-mascot {
  min-width: 0;
  max-width: 100%;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.6vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.line-burn {
  display: block;
  color: var(--orange);
  text-shadow: 0 0 24px rgba(255, 122, 24, 0.28);
}

.line-stamp {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 210, 74, 0.22);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 10px;
  border: 1px dashed var(--amber);
  color: var(--amber);
  font-family: var(--font-pixel);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-lead {
  max-width: 34ch;
  margin: 0 0 20px;
  color: var(--cream);
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.sol-mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--sol-cyan), var(--sol-purple));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ca-box {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  border: 1px solid var(--amber);
  background: #0c0906;
}

.ca-label {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: 0.52rem;
}

.ca-value {
  flex: 1;
  min-width: 0;
  padding: 12px 12px;
  overflow: hidden;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy {
  flex: 0 0 auto;
  min-width: 118px;
  border: 0;
  border-left: 1px solid var(--amber);
  background: var(--plate);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
}

.btn-copy:hover,
.btn-copy.is-stamped {
  background: var(--amber);
  color: var(--ink);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.stamp-sheet {
  position: relative;
  max-width: 100%;
  border: 10px solid transparent;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--paper), var(--paper)),
    radial-gradient(circle, var(--void) 5px, var(--paper) 6px);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size: auto, 18px 18px;
  background-position: 0 0, -9px -9px;
}

.hero-stamp-frame {
  width: 100%;
  max-width: 560px;
  padding: 14px;
  box-sizing: border-box;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero-stamp-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(28, 20, 12, 0.25);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 12% 10% 18%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.32), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 122, 24, 0.18), transparent 58%),
    #0c0906;
  animation: float-press 4.8s var(--ease) infinite;
}

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

.banner-stamp {
  margin: 0;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.banner-stamp img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

.section-head {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-family: var(--font-pixel);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.section-head h2,
.cta-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.protocol {
  padding: 36px 0 64px;
}

.press-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.stage {
  margin: 0;
}

.stage-plate {
  height: 100%;
  padding: 22px 20px 24px;
  border: 1px solid rgba(255, 210, 74, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 159, 28, 0.06), transparent 40%),
    var(--plate);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.stage-num {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: var(--font-pixel);
  font-size: 0.7rem;
}

.stage-plate h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.stage-chain {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-plate p:last-child {
  margin: 0;
  color: var(--cream);
}

.stage-join {
  display: flex;
  align-items: center;
  width: 64px;
}

.stage-join span {
  display: block;
  width: 100%;
  height: 6px;
  background-image: linear-gradient(90deg, var(--orange) 0 6px, transparent 6px 12px);
  background-size: 12px 6px;
  background-repeat: repeat-x;
}

.protocol-route {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  color: var(--gold);
  font-family: var(--font-pixel);
  font-size: clamp(0.48rem, 1.5vw, 0.68rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}

.about {
  padding: 20px 16px 72px;
}

.postage {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px 36px 40px;
  color: var(--paper-ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.postage-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.postmark {
  position: absolute;
  top: 36px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 3px solid rgba(28, 20, 12, 0.55);
  border-radius: 50%;
  transform: rotate(12deg);
  opacity: 0.72;
}

.postmark span {
  font-family: var(--font-pixel);
  font-size: 0.42rem;
  line-height: 1.4;
  text-align: center;
}

.postage blockquote {
  margin: 0;
  padding-right: 70px;
}

.postage p {
  margin: 0 0 1.15em;
  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  line-height: 1.55;
}

.postage p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}

.machine-section {
  padding: 10px 0 72px;
}

.machine {
  width: min(420px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 16px 20px;
  border: 1px solid rgba(255, 210, 74, 0.28);
  background:
    linear-gradient(180deg, #2a1c12, #140e09);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.machine-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
}

.machine-status {
  color: var(--amber);
}

.machine-body {
  position: relative;
  min-height: 250px;
  padding: 8px 8px 16px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 210, 74, 0.04) 0 8px,
      transparent 8px 16px
    ),
    #0d0906;
}

.press-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
}

.press-handle {
  width: 86px;
  height: 22px;
  border-radius: 11px;
  background: radial-gradient(circle at 30% 30%, #5a5a5a, #1a1a1a);
  box-shadow: 0 4px 0 #050505;
}

.press-neck {
  width: 18px;
  height: 54px;
  background: linear-gradient(90deg, #2a2a2a, #111);
}

.press-plate {
  width: 150px;
  height: 28px;
  background: linear-gradient(180deg, #3a3a3a, #151515);
  box-shadow: 0 6px 0 #050505;
}

.press-bed {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118px;
  margin-top: 18px;
}

.receipt {
  width: min(220px, 86%);
  min-height: 92px;
  display: grid;
  place-items: center;
  color: transparent;
  transform: scale(0.96);
}

.receipt-mark {
  font-family: var(--font-pixel);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ink-flash {
  position: absolute;
  inset: 18% 18%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.7), transparent 68%);
  opacity: 0;
  pointer-events: none;
}

.sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  animation: spark-pop 420ms ease-out forwards;
}

.stamp-trigger {
  width: 100%;
  min-height: 56px;
  margin-top: 16px;
  border: 2px solid #2a1408;
  background: linear-gradient(180deg, var(--orange), var(--burnt));
  color: #1a0c04;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 6px 0 #5a1d06;
}

.stamp-trigger:hover {
  filter: brightness(1.06);
}

.stamp-trigger:active,
.machine.is-stamping .stamp-trigger {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #5a1d06;
}

.machine.is-stamping {
  animation: machine-shake 280ms steps(3);
}

.machine.is-stamping .press-column {
  animation: press-down 320ms var(--ease);
}

.machine.is-stamping .ink-flash {
  animation: ink-hit 280ms ease-out;
}

.machine.is-stamped .receipt {
  color: var(--burnt);
  transform: scale(1);
  box-shadow: inset 0 0 0 3px rgba(196, 65, 12, 0.28);
}

.machine.is-stamped .machine-status {
  color: var(--gold);
}

.chart-section {
  padding: 10px 0 72px;
}

.chart-bezel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 210, 74, 0.22);
  background: #0c0906;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.chart-chrome {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font-pixel);
  font-size: 0.5rem;
}

.chart-screen {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #070504;
  border: 1px solid rgba(246, 234, 212, 0.08);
}

.chart-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.chart-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 32px 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 122, 24, 0.12), transparent 46%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 210, 74, 0.04) 0 2px,
      transparent 2px 8px
    );
}

.await-kicker {
  margin: 0 0 10px;
  color: var(--amber);
  font-family: var(--font-pixel);
  font-size: 0.55rem;
}

.await-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--gold);
}

.await-copy {
  max-width: 38ch;
  margin: 0 0 22px;
  color: var(--cream);
}

.cta {
  padding: 10px 16px 80px;
}

.cta-stamp {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px;
}

.cta-banner {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(1.05);
}

.cta-copy {
  position: absolute;
  inset: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
  background: linear-gradient(90deg, rgba(7, 5, 4, 0.82) 0%, rgba(7, 5, 4, 0.42) 62%, rgba(7, 5, 4, 0.18) 100%);
  color: var(--cream);
}

.cta-copy h2 {
  color: var(--gold);
}

.cta-copy p {
  margin: 16px 0 22px;
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px 40px;
  background:
    radial-gradient(circle at 8px 0, transparent 5px, var(--ink) 5.5px) 0 0 / 16px 8px no-repeat,
    var(--void);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer-inner p {
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-note {
  margin-top: 14px;
  font-size: 0.85rem;
}

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

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

@keyframes float-press {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-10px); }
  70% { transform: translateY(3px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes press-down {
  0% { transform: translateY(0); }
  55% { transform: translateY(18px); }
  100% { transform: translateY(0); }
}

@keyframes ink-hit {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes machine-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

@keyframes spark-pop {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--sx), var(--sy)) scale(0); opacity: 0; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-art {
    order: -1;
  }

  .hero-copy h1 {
    font-size: 1.85rem;
  }

  .press-line {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stage-join {
    width: 100%;
    height: 36px;
    justify-content: center;
  }

  .stage-join span {
    width: 6px;
    height: 100%;
    background-image: linear-gradient(180deg, var(--orange) 0 6px, transparent 6px 12px);
    background-size: 6px 12px;
    background-repeat: repeat-y;
  }

  .postage {
    padding: 32px 22px 28px;
  }

  .postage blockquote {
    padding-right: 0;
    padding-top: 12px;
  }

  .postmark {
    width: 72px;
    height: 72px;
    top: 22px;
    right: 16px;
  }

  .cta-copy {
    position: relative;
    inset: auto;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(7, 5, 4, 0.88), rgba(7, 5, 4, 0.72));
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    display: flex;
    order: 3;
    flex: 1 0 100%;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0 0 10px;
    justify-content: space-between;
    gap: 4px;
  }

  .nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-size: 0.78rem;
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .header-actions .btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .banner-strip,
  .section-head,
  .press-line,
  .protocol-route,
  .chart-bezel,
  .machine {
    width: min(calc(100% - 20px), 1180px);
  }

  .brand span {
    display: none;
  }

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

  .ca-box {
    flex-wrap: wrap;
  }

  .ca-label {
    min-height: 36px;
  }

  .ca-value {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .btn-copy {
    min-height: 44px;
    min-width: 100%;
    border-left: 0;
    border-top: 1px solid var(--amber);
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .chart-chrome {
    flex-direction: column;
  }

  .protocol-route {
    text-align: left;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
}

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

  .hero-mascot,
  .status-dot,
  .machine.is-stamping,
  .machine.is-stamping .press-column,
  .machine.is-stamping .ink-flash,
  .spark,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

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