:root {
  --paper: #f2e7ca;
  --paper-light: #fbf4df;
  --ink: #1c1917;
  --orange: #f04a24;
  --yellow: #f7d84a;
  --blue: #1558d6;
  --green: #177f54;
  --red: #c7332d;
  --muted: #756c5d;
  --line: rgba(28, 25, 23, 0.24);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Georgia, "Times New Roman", serif;
  --utility: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  --mono: "Cascadia Mono", Consolas, monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(75, 57, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 57, 30, 0.028) 1px, transparent 1px);
  background-size: 17px 17px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  min-height: 78px;
  padding: 13px clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 3px solid var(--ink);
  background: var(--paper-light);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-coin,
.footer-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.brand-name,
.footer-brand {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.06em;
}

.market-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.market-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.7s steps(2, end) infinite;
}

.topbar-link {
  justify-self: end;
  font-family: var(--utility);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.ticker {
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.ticker-track {
  width: max-content;
  min-width: 200%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 0;
  animation: ticker 34s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticker-track span {
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.ticker-track b {
  color: #62dca1;
}

.ticker-track em {
  color: #ff786e;
  font-style: normal;
  font-weight: bold;
}

.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 106px) clamp(18px, 5vw, 76px) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(38px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.game-copy h2,
.create-copy h2,
.manifesto h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(64px, 9.1vw, 132px);
}

.hero h1 i,
.game-copy h2 i {
  position: relative;
  z-index: 0;
  color: var(--paper-light);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 5px 5px 0 var(--orange);
}

.hero-intro {
  max-width: 600px;
  margin: 34px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.38;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  background: var(--orange);
  color: white;
}

.button-quiet {
  background: var(--paper-light);
}

.button-dark {
  border-color: var(--paper-light);
  background: var(--yellow);
  color: var(--ink);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quote-board {
  position: relative;
  min-height: 555px;
  padding: 22px;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 13px 13px 0 var(--blue);
  overflow: hidden;
}

.quote-board::before,
.quote-board::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 18px;
  height: calc(100% + 18px);
  background: repeating-linear-gradient(180deg, transparent 0 12px, var(--paper) 12px 24px);
}

.quote-board::before { left: -9px; }
.quote-board::after { right: -9px; }

.quote-board-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 2px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
}

.quote-avatar {
  width: 88px;
  height: 88px;
  margin: 28px 0 14px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 50px;
}

.quote-identity {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.quote-identity h2 {
  margin: 0;
  font-family: var(--utility);
  font-size: clamp(25px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.quote-identity span {
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
}

.quote-price {
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.quote-price strong {
  font-family: var(--display);
  font-size: clamp(88px, 10vw, 144px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.02em;
}

.quote-price span {
  padding-bottom: 8px;
  font-family: var(--mono);
  font-weight: 800;
}

.quote-change {
  width: max-content;
  margin-top: 18px;
  padding: 7px 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: bold;
}

.positive {
  background: var(--green);
  color: white;
}

.negative {
  background: var(--red);
  color: white;
}

.quote-reason {
  max-width: 320px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.35;
}

.quote-stamp {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 5px double var(--orange);
  border-radius: 50%;
  color: var(--orange);
  transform: rotate(-11deg);
  font-family: var(--display);
  font-size: 22px;
  line-height: 0.9;
  text-align: center;
  opacity: 0.88;
}

.opening-bell {
  min-height: 98px;
  padding: 20px clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.opening-bell > p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: bold;
  line-height: 1.2;
}

.bell-mark {
  font-size: 40px;
}

.bell-index {
  display: grid;
  text-align: right;
}

.bell-index small {
  font-family: var(--utility);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.bell-index strong {
  font-family: var(--mono);
  font-size: 20px;
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 1320px;
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 50px;
}

.section-heading h2,
.game-copy h2,
.create-copy h2,
.manifesto h2 {
  font-size: clamp(48px, 6.4vw, 92px);
}

.section-heading > p {
  margin: 0 0 4px;
  font-size: 17px;
}

.market {
  background: var(--paper-light);
}

.coin-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
}

.coin-card {
  min-height: 330px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--paper-light);
  transition: background 160ms ease;
}

.coin-card:hover {
  background: #fff9e8;
}

.coin-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coin-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 28px;
}

.coin-symbol {
  padding: 5px 8px;
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: bold;
}

.coin-card h3 {
  margin: 22px 0 2px;
  font-family: var(--utility);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.coin-handle {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
}

.coin-card-price {
  margin: 25px 0 15px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}

.coin-card-price strong {
  font-family: var(--display);
  font-size: 52px;
  line-height: 0.9;
}

.coin-card-price span {
  padding: 5px 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: bold;
}

.coin-card > p {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 2px dashed var(--line);
  font-size: 14px;
  line-height: 1.35;
}

.game-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(45px, 8vw, 120px);
  background: var(--blue);
  color: white;
}

.game-copy {
  max-width: 520px;
  align-self: center;
}

.game-copy h2 i {
  color: var(--yellow);
  -webkit-text-stroke-color: var(--ink);
  text-shadow: 5px 5px 0 var(--orange);
}

.game-copy > p:not(.eyebrow) {
  font-size: 19px;
}

.game-rules {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: rules;
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.game-rules li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  counter-increment: rules;
}

.game-rules li::before {
  content: "0" counter(rules) " / ";
  color: var(--yellow);
}

.game-shell {
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}

.game-header {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.game-header div {
  padding: 9px 13px;
  display: grid;
  background: var(--ink);
}

.game-header small {
  color: #b8b2a6;
  font-family: var(--utility);
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.15em;
}

.game-header strong {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: clamp(16px, 2.4vw, 26px);
}

.game-arena {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-color: #efeadc;
  background-image:
    linear-gradient(rgba(28, 25, 23, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 25, 23, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
}

.game-arena::after {
  content: "MERCADO INSTÁVEL";
  position: absolute;
  right: -54px;
  bottom: 70px;
  color: rgba(199, 51, 45, 0.2);
  transform: rotate(-90deg);
  font-family: var(--display);
  font-size: 42px;
  pointer-events: none;
}

.game-coin {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  transform: translate(-50%, -50%) rotate(-7deg);
  box-shadow: 8px 8px 0 var(--orange);
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}

.game-coin:active:not(:disabled) {
  transform: translate(-50%, -50%) scale(0.92) rotate(5deg);
  box-shadow: 3px 3px 0 var(--orange);
}

.game-coin:disabled {
  filter: grayscale(0.8);
  opacity: 0.55;
  cursor: default;
}

.game-coin span {
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.8;
}

.game-coin small {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: bold;
}

.game-message {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  margin: 0;
  padding: 8px 11px;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
}

.game-event {
  position: absolute;
  z-index: 4;
  min-width: 90px;
  min-height: 48px;
  padding: 8px;
  border: 3px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  transform: rotate(var(--turn));
  box-shadow: 4px 4px 0 var(--ink);
}

.game-event.gift { background: #66d9a1; }
.game-event.bill { background: #ff786e; }

.game-footer {
  padding: 15px;
  display: flex;
  gap: 12px;
}

.dark-context {
  border-color: var(--paper-light);
  background: transparent;
  color: white;
}

.score-form {
  padding: 0 15px 18px;
}

.score-form label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-form {
  display: flex;
}

.inline-form input,
.inline-form button {
  min-height: 47px;
  border: 2px solid var(--paper-light);
}

.inline-form input {
  min-width: 0;
  flex: 1;
  padding: 9px 12px;
}

.inline-form button {
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--utility);
  font-weight: 900;
  text-transform: uppercase;
}

.ranking {
  background: var(--orange);
}

.compact-heading {
  color: white;
}

.ranking-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
}

.scoreboard {
  margin: 0;
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--paper-light);
  list-style: none;
  counter-reset: rank;
}

.scoreboard li {
  min-height: 78px;
  padding: 13px 18px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  counter-increment: rank;
}

.scoreboard li:last-child { border-bottom: 0; }
.scoreboard li::before {
  content: counter(rank, decimal-leading-zero);
  font-family: var(--display);
  font-size: 28px;
}

.scoreboard strong {
  font-family: var(--utility);
  font-size: 20px;
  font-weight: 900;
}

.scoreboard span {
  font-family: var(--mono);
  font-weight: bold;
}

.award-card {
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 3px solid var(--ink);
  background: var(--yellow);
  text-align: center;
  box-shadow: 9px 9px 0 var(--ink);
}

.award-ribbon {
  width: 100%;
  padding-bottom: 13px;
  border-bottom: 2px dashed var(--ink);
  font-family: var(--mono);
  font-size: 10px;
}

.award-seal {
  width: 112px;
  height: 112px;
  margin: 25px 0 15px;
  display: grid;
  place-items: center;
  border: 7px double var(--red);
  border-radius: 50%;
  color: var(--red);
  transform: rotate(-8deg);
  font-family: var(--display);
  font-size: 47px;
}

.award-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 47px;
  line-height: 0.95;
  text-transform: uppercase;
}

.award-card p {
  max-width: 280px;
}

.award-card small {
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px dashed var(--ink);
  font-family: var(--mono);
  font-weight: bold;
}

.create-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(45px, 8vw, 120px);
  background: var(--paper-light);
}

.create-copy blockquote {
  margin: 42px 0 0;
  padding: 20px 0 0 24px;
  border-top: 3px solid var(--ink);
  border-left: 8px solid var(--blue);
  font-size: 21px;
  font-style: italic;
}

.create-copy cite {
  display: block;
  margin-top: 9px;
  font-family: var(--utility);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.coin-form {
  padding: clamp(25px, 4vw, 48px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 11px 11px 0 var(--blue);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-grid label,
.coin-form > label {
  display: grid;
  gap: 7px;
}

.field-grid label span,
.check-field span {
  font-family: var(--utility);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-grid input {
  width: 100%;
  min-height: 54px;
  padding: 11px 13px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper-light);
  color: var(--ink);
}

.field-grid input:focus {
  background: white;
}

.symbol-field { grid-column: span 1; }
.slogan-field { grid-column: span 2; }

.check-field {
  margin: 24px 0;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.check-field input {
  width: 21px;
  height: 21px;
  accent-color: var(--blue);
}

.wide { width: 100%; }

.form-feedback {
  min-height: 22px;
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 11px;
}

.manifesto {
  display: grid;
  grid-template-columns: auto 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(25px, 6vw, 80px);
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.manifesto-number {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(100px, 15vw, 230px);
  line-height: 0.7;
  transform: rotate(-6deg);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: 7px 7px 0 var(--ink);
}

.manifesto > p {
  margin: 0;
  font-size: 16px;
}

footer {
  padding: 40px clamp(18px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  background: var(--ink);
  color: var(--paper-light);
  font-family: var(--utility);
  font-size: 13px;
}

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

.footer-brand span {
  width: 35px;
  height: 35px;
  color: var(--ink);
  font-size: 20px;
  box-shadow: 2px 2px 0 var(--paper-light);
}

footer p,
footer small { margin: 0; }
footer small {
  grid-column: 1 / -1;
  color: #aaa397;
  font-family: var(--mono);
  font-size: 10px;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 18px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transform: translateY(160%);
  transition: transform 220ms ease;
  font-family: var(--utility);
  font-weight: 900;
}

.toast.visible { transform: translateY(0); }

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

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

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .market-status { display: none; }

  .hero,
  .game-section,
  .create-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .quote-board {
    width: min(100%, 560px);
    justify-self: center;
  }

  .section-heading,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 23px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .coin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-copy,
  .create-copy {
    max-width: 680px;
  }

  .manifesto-number {
    width: max-content;
  }

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

  footer p { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }

  .topbar {
    min-height: 67px;
    padding: 10px 14px;
  }

  .brand-coin {
    width: 36px;
    height: 36px;
    font-size: 21px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .brand-name { font-size: 23px; }
  .topbar-link { font-size: 11px; }

  .hero {
    padding-inline: 17px;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 92px);
  }

  .hero h1 i { text-shadow: 4px 4px 0 var(--orange); }
  .hero-actions .button { flex: 1; }

  .quote-board {
    min-height: 492px;
    padding: 19px;
    box-shadow: 8px 8px 0 var(--blue);
  }

  .quote-avatar {
    width: 70px;
    height: 70px;
    font-size: 38px;
  }

  .quote-identity {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .quote-price strong { font-size: 92px; }
  .quote-stamp {
    width: 75px;
    height: 75px;
    font-size: 17px;
  }

  .opening-bell {
    grid-template-columns: auto 1fr;
    gap: 13px;
  }

  .bell-index { display: none; }
  .bell-mark { font-size: 26px; }

  .section {
    padding-inline: 17px;
  }

  .section-heading h2,
  .game-copy h2,
  .create-copy h2,
  .manifesto h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .coin-grid { grid-template-columns: 1fr; }
  .coin-card { min-height: 295px; }

  .game-section { gap: 40px; }
  .game-shell { box-shadow: 7px 7px 0 var(--yellow); }
  .game-header { padding: 9px; }
  .game-header div { padding: 8px 7px; }
  .game-arena { min-height: 365px; }
  .game-coin {
    width: 104px;
    height: 104px;
  }
  .game-footer { flex-direction: column; }

  .ranking-layout { grid-template-columns: 1fr; }
  .scoreboard li {
    grid-template-columns: 39px 1fr auto;
    padding-inline: 13px;
  }

  .field-grid { grid-template-columns: 1fr; }
  .slogan-field { grid-column: auto; }
  .coin-form {
    padding: 22px 17px;
    box-shadow: 7px 7px 0 var(--blue);
  }

  .manifesto { gap: 35px; }
  .manifesto-number {
    font-size: 130px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer a { width: max-content; }
}

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

