:root {
  color-scheme: dark;
  --ink: #090909;
  --paper: #f3f0e8;
  --paper-2: #d2d0c9;
  --gray: #747474;
  --gray-dark: #3d3d3d;
  --white: #fffdf6;
  --green: #28d45f;
  --red: #ef3d2f;
  --yellow: #ffd34f;
  --blue: #77a7ff;
  --line: #0a0a0a;
  --shadow: #0a0a0a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 260px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.11) 1px, transparent 0),
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 18px 18px, 100% 56px;
  opacity: 0.42;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 28px;
  border-bottom: 4px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 240, 232, 0.92);
  border-color: var(--ink);
  backdrop-filter: blur(8px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark.mini {
  width: 42px;
  height: 42px;
}

.brand-type,
.footer-brand strong {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
  text-shadow: 2px 2px 0 var(--white);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-nav a,
.nav-buy,
.bottom-nav a {
  text-decoration: none;
}

.top-nav a {
  color: var(--ink);
  text-shadow: 1px 1px 0 var(--white);
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--red);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 86px;
  height: 44px;
  padding: 0 18px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(2deg);
}

.hero {
  position: relative;
  min-height: min(90svh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 112px 28px 64px;
  border-bottom: 5px solid var(--ink);
  background: #6b6b6b;
}

.hero-art {
  position: absolute;
  top: 58px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 58px);
  object-fit: contain;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 240, 232, 0.08) 0%, rgba(243, 240, 232, 0) 54%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(243, 240, 232, 0.04), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}

.hero-logo {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  object-fit: cover;
  transform: rotate(-4deg);
}

.kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 10px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 8px;
  font-size: 4.4rem;
  line-height: 0.86;
  color: var(--white);
  text-shadow:
    4px 0 0 var(--ink),
    -4px 0 0 var(--ink),
    0 4px 0 var(--ink),
    0 -4px 0 var(--ink),
    6px 6px 0 var(--ink);
}

.hero-line {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1.05;
  text-shadow:
    2px 0 0 var(--ink),
    -2px 0 0 var(--ink),
    0 2px 0 var(--ink),
    0 -2px 0 var(--ink);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.6;
  text-shadow: 2px 2px 0 var(--ink);
}

.hero-actions,
.chart-actions,
.buy-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.btn:hover,
.nav-buy:hover,
.social-row a:hover,
.ca-copy:hover {
  transform: translate(2px, 2px) rotate(0deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  background: var(--white);
  font-weight: 950;
}

.btn.primary {
  background: var(--green);
  color: var(--ink);
}

.btn.ghost {
  background: var(--paper);
  color: var(--ink);
}

.btn.wide {
  width: 100%;
}

.ca-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(560px, 100%);
  min-height: 50px;
  margin-top: 18px;
  padding: 8px 10px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
}

.ca-label,
.ca-action {
  display: inline-grid;
  place-items: center;
  height: 32px;
  padding: 0 10px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 950;
}

.ca-label {
  border: 2px solid var(--ink);
  background: var(--blue);
  color: var(--ink);
}

.ca-value {
  overflow: hidden;
  color: var(--ink);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-action {
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.ticker-band {
  overflow: hidden;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  padding: 18px 26px;
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-band,
.section-pad {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section-pad {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-heading h2,
.chart-copy h2,
.buy-copy h2 {
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 26px;
  padding-bottom: 24px;
}

.stat,
.feature-card,
.hub-card,
.recipe-board,
.recipe-list article,
.chart-terminal,
.game-card,
.roadmap article {
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--shadow);
}

.stat {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.stat-value {
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    2px 0 0 var(--ink),
    -2px 0 0 var(--ink),
    0 2px 0 var(--ink),
    0 -2px 0 var(--ink);
}

.stat-label {
  color: var(--gray-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.chart-copy h2,
.buy-copy h2 {
  margin-bottom: 14px;
  font-size: 3.3rem;
  line-height: 0.94;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 22px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
}

.feature-card h3,
.hub-card h3,
.recipe-board h3,
.game-card h3,
.roadmap h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p,
.hub-card p,
.recipe-list p,
.lore-text p,
.chart-copy p,
.buy-copy p,
.roadmap p,
.site-footer p {
  color: #232323;
  line-height: 1.65;
}

.hub-section {
  border-top: 5px solid var(--ink);
}

.hub-section .section-heading p:not(.kicker) {
  max-width: 760px;
  color: #232323;
  line-height: 1.65;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.hub-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 22px;
}

.hub-card a,
.hub-status {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  min-height: 36px;
  margin-top: auto;
  padding: 0 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.hub-status {
  background: var(--yellow);
}

.recipe-board {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 18px;
  padding: 22px;
  background: var(--paper-2);
}

.recipe-board h3 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.recipe-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.recipe-list article {
  padding: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}

.recipe-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  margin-bottom: 12px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
}

.recipe-list strong {
  display: block;
  margin-bottom: 8px;
}

.chart-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 28px;
  align-items: center;
}

.chart-copy p,
.buy-copy p {
  max-width: 520px;
  margin-bottom: 24px;
}

.chart-terminal {
  overflow: hidden;
  background: var(--ink);
  transform: rotate(1.2deg);
}

.terminal-top,
.terminal-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 4px solid var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-top span:nth-child(1) {
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--yellow);
}

.terminal-top span:nth-child(3) {
  background: var(--green);
}

.terminal-top strong {
  margin-left: auto;
  color: var(--ink);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 0.85rem;
}

.gecko-chart-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
}

.gecko-chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111827;
}

.terminal-foot {
  justify-content: space-between;
  border-top: 4px solid var(--ink);
  border-bottom: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.terminal-foot strong {
  color: var(--green);
}

.terminal-foot a {
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.lore-band {
  max-width: none;
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  background: var(--paper-2);
}

.lore-band > * {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.lore-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.quote-panel {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 28px;
  border: 4px solid var(--ink);
  border-left: 12px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-1deg);
}

.quote-panel p {
  margin-bottom: 12px;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2.5rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.quote-panel span {
  color: var(--ink);
  font-weight: 800;
}

.lore-text {
  align-self: center;
  max-width: 640px;
}

.arcade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.game-card {
  padding: 22px;
}

.bbq-card {
  grid-column: 1 / -1;
}

.game-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.game-head span {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bbq-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.bbq-scoreboard div {
  min-height: 76px;
  padding: 12px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.bbq-scoreboard span {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-dark);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.bbq-scoreboard strong {
  display: block;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.bbq-grill {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 330px;
  margin-bottom: 16px;
  padding: 22px;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.1) 34px 42px),
    linear-gradient(180deg, #262626, #0d0d0d);
  box-shadow: inset 0 -20px 0 rgba(0, 0, 0, 0.34);
}

.bbq-grill::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.18) 24px 30px),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.12) 54px 60px);
  opacity: 0.75;
}

.bbq-grill::after {
  content: "BBQ DESK";
  position: absolute;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.16);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
}

.steak {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 136px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  filter: drop-shadow(4px 5px 0 var(--ink));
  transform: rotate(var(--steak-tilt, -3deg));
  transition: transform 120ms ease, filter 120ms ease;
}

.steak:nth-child(2n) {
  --steak-tilt: 4deg;
}

.steak:nth-child(3n) {
  --steak-tilt: -7deg;
}

.steak span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.steak::before,
.steak::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.steak::before {
  inset: -18px -10px;
  z-index: 2;
  background: url("./assets/tbone-steak.svg") center / contain no-repeat;
}

.steak::after {
  inset: 14px 18px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(239, 61, 47, 0.2);
  filter: blur(16px);
  opacity: 0.3;
}

.steak.is-ready {
  filter: drop-shadow(4px 5px 0 var(--ink)) drop-shadow(0 0 0 var(--yellow)) drop-shadow(0 0 10px var(--green));
  animation: steakPulse 540ms ease-in-out infinite alternate;
}

.steak.is-ready::after {
  background: rgba(40, 212, 95, 0.45);
  opacity: 1;
}

.steak.is-flipped {
  transform: rotate(calc(var(--steak-tilt, -3deg) + 180deg)) scale(0.92);
  filter: drop-shadow(3px 4px 0 var(--ink)) saturate(1.25) brightness(1.08);
}

.steak.is-burnt {
  filter: drop-shadow(4px 5px 0 var(--ink)) grayscale(1) brightness(0.42);
}

.steak.is-burnt::after {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.steak:disabled {
  cursor: default;
}

.bbq-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.bbq-message {
  min-height: 32px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

@keyframes steakPulse {
  from {
    transform: rotate(var(--steak-tilt, -3deg)) scale(1);
  }
  to {
    transform: rotate(var(--steak-tilt, -3deg)) scale(1.04);
  }
}

.meter {
  height: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-2);
}

.meter span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
  transition: width 180ms ease;
}

.dad-joke {
  min-height: 78px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.45;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.roadmap article {
  padding: 20px;
}

.roadmap span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.buy-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 5px solid var(--ink);
}

.buy-actions {
  justify-content: flex-end;
}

.crew-section {
  padding-top: 44px;
}

.social-row a {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.social-row a:hover {
  border-color: var(--ink);
  color: var(--red);
}

.site-footer {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 40px 28px 78px;
  border-top: 5px solid var(--ink);
  text-align: center;
}

.site-footer p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.creator-pill {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100vw - 44px);
  min-height: 43px;
  padding: 8px 14px 8px 10px;
  border: 2px solid #c99d3e;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.94);
  color: #4b4032;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(9, 9, 9, 0.16), 0 2px 0 rgba(9, 9, 9, 0.12);
  backdrop-filter: blur(10px);
}

.creator-pill strong {
  color: #1f5b98;
  font-weight: 950;
}

.creator-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 950;
  box-shadow: 2px 2px 0 var(--ink);
}

.creator-sep {
  color: #b08a36;
}

.creator-arrow {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1f5b98;
  color: var(--white);
  font-weight: 950;
}

.creator-pill:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 14px 28px rgba(9, 9, 9, 0.2), 0 2px 0 rgba(9, 9, 9, 0.18);
}

.bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 7px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  backdrop-filter: blur(8px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.bottom-nav a.active {
  background: var(--green);
  color: var(--ink);
}

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

@media (max-width: 980px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .top-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding: 92px 20px 78px;
  }

  .hero-art {
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 6, 10, 0.12), rgba(5, 6, 10, 0.08) 44%, rgba(5, 6, 10, 0.76)),
      linear-gradient(90deg, rgba(5, 6, 10, 0.1), rgba(5, 6, 10, 0.3));
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-line {
    font-size: 1.75rem;
  }

  .stats,
  .card-grid.three,
  .hub-grid,
  .recipe-board,
  .chart-section,
  .lore-layout,
  .roadmap,
  .buy-section {
    grid-template-columns: 1fr 1fr;
  }

  .chart-section,
  .recipe-board,
  .lore-layout,
  .buy-section {
    gap: 20px;
  }

  .chart-copy,
  .buy-copy {
    grid-column: 1 / -1;
  }

  .chart-terminal,
  .buy-actions {
    grid-column: 1 / -1;
  }

  .buy-actions {
    justify-content: flex-start;
  }

  .bbq-grill {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 380px;
  }

  .bottom-nav {
    display: grid;
  }

  .creator-pill {
    right: 12px;
    bottom: 72px;
    max-width: calc(100vw - 24px);
    min-height: 39px;
    padding: 7px 12px 7px 9px;
    gap: 7px;
    font-size: 0.68rem;
  }

  .creator-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    font-size: 0.58rem;
  }
}

@media (max-width: 680px) {
  .creator-sep,
  .creator-need {
    display: none;
  }

  .nav-buy {
    min-width: 72px;
    padding: 0 12px;
  }

  .brand-type {
    font-size: 1.32rem;
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 78px 16px 72px;
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% + 32px);
    height: auto;
    max-width: none;
    margin: -14px -16px 18px;
    object-fit: contain;
    object-position: center center;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    width: 100%;
  }

  .hero-logo {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-line {
    font-size: 1.42rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .chart-actions,
  .buy-actions,
  .social-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .social-row a {
    width: 100%;
  }

  .ca-copy {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ca-action {
    grid-column: 1 / -1;
  }

  .section-pad {
    padding: 64px 16px;
  }

  .section-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats,
  .card-grid.three,
  .hub-grid,
  .recipe-board,
  .recipe-list,
  .arcade-grid,
  .roadmap,
  .lore-layout {
    grid-template-columns: 1fr;
  }

  .bbq-scoreboard {
    grid-template-columns: 1fr;
  }

  .bbq-scoreboard div {
    min-height: 62px;
  }

  .bbq-grill {
    gap: 10px;
    min-height: 340px;
    padding: 14px;
  }

  .steak {
    min-height: 96px;
  }

  .steak::before {
    inset: -10px -8px;
  }

  .bbq-controls {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .chart-copy h2,
  .buy-copy h2 {
    font-size: 2.35rem;
  }

  .quote-panel {
    min-height: 210px;
  }

  .quote-panel p {
    font-size: 2rem;
  }

  .ticker-track span {
    padding: 15px 18px;
    font-size: 1.05rem;
  }
}

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