@import url("https://fonts.googleapis.com/css2?family=Almendra:ital,wght@0,700;1,700&family=Barlow+Condensed:wght@500;700;900&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a0807;
  color: #f7ead4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.marketing-site {
  --black: #080706;
  --coal: #100d0b;
  --panel: #18130f;
  --panel-raised: #211812;
  --line: #463426;
  --red: #a81712;
  --red-bright: #d33727;
  --red-dark: #630b08;
  --gold: #e6a72f;
  --gold-bright: #ffd164;
  --gold-dark: #8e5d13;
  --ivory: #fff2d8;
  --muted: #c9b89f;
  --pixel-font: "Courier New", Courier, monospace;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(230, 167, 47, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 167, 47, 0.018) 1px, transparent 1px),
    var(--black);
  background-size: 32px 32px;
  color: var(--ivory);
}

.marketing-site::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 4px);
}

.marketing-site a {
  text-decoration: none;
}

.marketing-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1220px, calc(100% - 48px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  transform: translateX(-50%);
}

.marketing-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.marketing-brand__shield {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--black);
  outline: 2px solid var(--gold);
  background: var(--gold);
  box-shadow:
    inset -4px -4px 0 var(--gold-dark),
    inset 4px 4px 0 var(--gold-bright),
    5px 5px 0 var(--black);
  color: var(--red-dark);
  font: 900 12px/1 var(--pixel-font);
}

.marketing-brand__name {
  display: grid;
  color: var(--gold-bright);
  font: 900 14px/0.85 var(--pixel-font);
  letter-spacing: 0.12em;
  text-shadow: 2px 2px 0 var(--black);
}

.marketing-brand__name b:first-child {
  color: var(--red-bright);
}

.marketing-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #decdb5;
  font: 700 11px/1 var(--pixel-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-nav a,
.text-link,
.marketing-footer__links a {
  transition: color 140ms ease;
}

.marketing-nav a:hover,
.text-link:hover,
.marketing-footer__links a:hover {
  color: var(--gold-bright);
}

.marketing-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.text-link {
  color: #e4d5be;
  font: 700 11px/1 var(--pixel-font);
  text-transform: uppercase;
}

.pixel-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 3px solid var(--black);
  padding: 0 22px;
  background: var(--ivory);
  box-shadow:
    inset -4px -4px 0 rgba(0, 0, 0, 0.2),
    inset 4px 4px 0 rgba(255, 255, 255, 0.22),
    5px 5px 0 var(--black);
  color: var(--black);
  font: 900 11px/1 var(--pixel-font);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: box-shadow 120ms ease, transform 120ms ease, filter 120ms ease;
}

.pixel-button:hover {
  box-shadow:
    inset -4px -4px 0 rgba(0, 0, 0, 0.2),
    inset 4px 4px 0 rgba(255, 255, 255, 0.22),
    2px 2px 0 var(--black);
  filter: brightness(1.08);
  transform: translate(3px, 3px);
}

.pixel-button--small {
  min-height: 40px;
  border-color: var(--gold);
  padding: 0 15px;
  background: var(--red);
  color: #fff8e9;
}

.pixel-button--primary {
  border-color: var(--gold);
  background: linear-gradient(#ca2d21, #8c100c);
  color: #fff7e5;
}

.pixel-button--ghost {
  border-color: #806541;
  background: #17120f;
  color: #f1dfc4;
}

.pixel-button--gold {
  border-color: #fff0bf;
  background: var(--gold);
  color: var(--black);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(56px, 7vw, 100px);
  padding: 132px max(24px, calc((100vw - 1220px) / 2)) 92px;
  border-bottom: 4px solid var(--gold-dark);
  background:
    radial-gradient(circle at 78% 34%, rgba(168, 23, 18, 0.24), transparent 27%),
    radial-gradient(circle at 18% 24%, rgba(230, 167, 47, 0.07), transparent 24%),
    linear-gradient(125deg, #0c0a08 0 53%, #18100d 53% 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 680px;
  height: 680px;
  border: 72px solid rgba(230, 167, 47, 0.035);
  transform: rotate(45deg);
}

.hero-section__copy,
.hero-console {
  position: relative;
  z-index: 2;
}

.pixel-kicker {
  margin: 0 0 22px;
}

.pixel-kicker span {
  display: inline-block;
  border: 2px solid var(--gold);
  border-left: 6px solid var(--red-bright);
  padding: 8px 12px;
  background: #15100d;
  box-shadow: 4px 4px 0 var(--black);
  color: var(--gold-bright);
  font: 900 9px/1 var(--pixel-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-section h1 {
  max-width: 680px;
  color: #fff7e7;
  font-size: clamp(54px, 5vw, 74px);
  text-shadow: 5px 5px 0 #000;
}

.hero-section h1 > span,
.hero-section h1 > em {
  white-space: nowrap;
}

.hero-section h1 > span {
  display: inline;
}

.hero-section h1 > span:first-child::after {
  content: " ";
}

.hero-section h1 > em {
  display: block;
}

.hero-section h1 em,
.section-heading h2 em,
.final-cta h2 em {
  color: var(--gold);
  font-style: normal;
  text-shadow: 4px 4px 0 var(--red-dark);
}

.hero-section__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #d9c8b0;
  font-size: 18px;
  line-height: 1.75;
}

.hero-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-section__note {
  margin: 27px 0 0;
  color: #ab9a84;
  font: 700 10px/1.6 var(--pixel-font);
}

.hero-section__note span {
  margin-right: 7px;
  color: var(--gold);
}

.hero-console {
  padding: 8px 18px 26px 0;
}

.game-frame {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--black);
  outline: 3px solid var(--gold);
  background: var(--black);
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.5);
}

.game-frame__chrome,
.showcase-card__bar {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 15px;
  border-bottom: 3px solid var(--gold-dark);
  background: #0e0b09;
  color: #cdbb9e;
  font: 900 9px/1 var(--pixel-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-frame__signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-bright);
}

.game-frame__signal i {
  width: 8px;
  height: 8px;
  background: #57c77c;
  box-shadow: 0 0 0 2px #193c25;
}

.game-frame__screen {
  position: relative;
  min-height: 475px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44)),
    linear-gradient(#63524a 0 58%, #39251a 58% 61%, #7f5327 61% 100%);
}

.game-frame__screen::before {
  content: "";
  position: absolute;
  inset: 61% 0 0;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, #f4c55c 25%, transparent 25%),
    linear-gradient(-45deg, #f4c55c 25%, transparent 25%);
  background-size: 22px 22px;
}

.battle-sky {
  position: absolute;
  inset: 0 0 42%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.025) 50%, transparent 51%),
    linear-gradient(#2c2020, #70402c);
  background-size: 28px 28px, auto;
}

.pixel-star {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  box-shadow: 5px 0 0 var(--gold-bright), -5px 0 0 var(--gold-bright), 0 5px 0 var(--gold-bright), 0 -5px 0 var(--gold-bright);
}

.pixel-star--one { top: 34%; left: 13%; }
.pixel-star--two { top: 21%; right: 14%; transform: scale(0.65); }
.pixel-star--three { top: 50%; right: 29%; transform: scale(0.45); }

.boss-hud {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 16px;
  border: 3px solid var(--gold-dark);
  padding: 13px 15px;
  background: rgba(8, 7, 6, 0.94);
  box-shadow: 5px 5px 0 var(--black);
  font-family: var(--pixel-font);
}

.boss-hud span,
.boss-hud small {
  color: #a9987f;
  font-size: 9px;
  text-transform: uppercase;
}

.boss-hud strong {
  display: block;
  margin-top: 5px;
  color: var(--ivory);
  font-size: 13px;
  text-transform: uppercase;
}

.boss-hud__level {
  align-self: start;
  border: 2px solid var(--red-bright);
  padding: 7px 8px;
  color: var(--gold-bright) !important;
}

.health-bar {
  height: 15px;
  overflow: hidden;
  border: 3px solid var(--black);
  outline: 1px solid #a67629;
  background: #2c251f;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.08);
}

.health-bar i {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, #8c0e0b, var(--red-bright));
  box-shadow: inset 0 3px 0 rgba(255, 158, 115, 0.25);
}

.health-bar--hero {
  grid-column: 1 / -1;
  width: 100%;
}

.boss-hud small {
  grid-column: 1 / -1;
  text-align: right;
}

.boss-hud small b {
  color: var(--gold-bright);
}

.boss-sprite {
  display: block;
  width: 150px;
  aspect-ratio: 1;
  background-image: url("/boss-sprites.png");
  background-position: var(--sprite-x) var(--sprite-y);
  background-repeat: no-repeat;
  background-size: 300% 200%;
  image-rendering: pixelated;
}

.hero-boss {
  position: absolute;
  z-index: 2;
  bottom: 76px;
  left: 50%;
  width: 270px;
  filter: drop-shadow(0 18px 4px rgba(0, 0, 0, 0.38));
  transform: translateX(-50%);
}

.damage-number {
  position: absolute;
  z-index: 5;
  top: 170px;
  right: 55px;
  color: var(--gold-bright);
  font: 900 34px/1 var(--pixel-font);
  text-shadow: 4px 4px 0 var(--red-dark), 7px 7px 0 var(--black);
  transform: rotate(5deg);
}

.battle-command {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 3px solid var(--gold-dark);
  padding: 11px 13px;
  background: rgba(8, 7, 6, 0.95);
  box-shadow: 5px 5px 0 var(--black);
  font-family: var(--pixel-font);
}

.battle-command__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--red);
  color: var(--gold-bright);
  font-size: 20px;
}

.battle-command small {
  display: block;
  margin-bottom: 4px;
  color: #9f8d75;
  font-size: 8px;
  text-transform: uppercase;
}

.battle-command strong {
  color: var(--ivory);
  font-size: 11px;
}

.battle-command__xp {
  color: var(--gold-bright);
  font-size: 11px;
}

.game-frame__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--gold-dark);
  background: #0e0b09;
}

.game-frame__stats div {
  padding: 14px;
  border-right: 1px solid #49351f;
  text-align: center;
}

.game-frame__stats div:last-child {
  border-right: 0;
}

.game-frame__stats span,
.game-frame__stats strong {
  display: block;
  font-family: var(--pixel-font);
}

.game-frame__stats span {
  margin-bottom: 7px;
  color: #8f806b;
  font-size: 8px;
  text-transform: uppercase;
}

.game-frame__stats strong {
  color: var(--gold-bright);
  font-size: 13px;
}

.achievement-card {
  position: absolute;
  z-index: 6;
  right: -4px;
  bottom: -5px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 3px solid var(--black);
  outline: 2px solid var(--gold);
  padding: 11px 15px;
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--black);
  color: var(--black);
  font-family: var(--pixel-font);
}

.achievement-card > span {
  font-size: 24px;
}

.achievement-card small,
.achievement-card strong {
  display: block;
}

.achievement-card small {
  margin-bottom: 4px;
  font-size: 7px;
  text-transform: uppercase;
}

.achievement-card strong {
  font-size: 10px;
  text-transform: uppercase;
}

.game-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 4px solid var(--black);
  background: var(--red);
}

.game-pillars > div {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 13px;
  padding: 24px clamp(20px, 4vw, 48px);
  border-right: 3px solid var(--black);
}

.game-pillars > div:last-child {
  border-right: 0;
}

.game-pillars span {
  grid-row: span 2;
  color: var(--gold-bright);
  font: 900 22px/1 var(--pixel-font);
}

.game-pillars strong,
.game-pillars small {
  font-family: var(--pixel-font);
}

.game-pillars strong {
  color: #fff9eb;
  font-size: 11px;
  text-transform: uppercase;
}

.game-pillars small {
  color: #edbdb0;
  font-size: 9px;
}

.marketing-section {
  position: relative;
  padding: 128px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  color: #fff5df;
  font-size: clamp(48px, 5.4vw, 76px);
  text-shadow: 4px 4px 0 #000;
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--split > p {
  margin: 0;
}

.motivation-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(168, 23, 18, 0.12), transparent 23%),
    #0d0a08;
}

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

.benefit-card {
  position: relative;
  min-height: 300px;
  border: 3px solid #5f4935;
  border-top: 7px solid #716050;
  padding: 30px;
  background: var(--panel);
  box-shadow: 8px 8px 0 #000;
}

.benefit-card--gold {
  border-top-color: var(--gold);
}

.benefit-card--red {
  border-top-color: var(--red-bright);
}

.benefit-card__number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #6f5f4d;
  font: 900 11px/1 var(--pixel-font);
}

.benefit-card__icon {
  display: grid;
  width: 58px;
  height: 50px;
  place-items: center;
  margin-bottom: 38px;
  border: 3px solid var(--gold-dark);
  background: var(--black);
  box-shadow: 4px 4px 0 var(--gold-dark);
  color: var(--gold-bright);
  font: 900 13px/1 var(--pixel-font);
}

.benefit-card h3,
.quest-card h3 {
  margin: 0 0 14px;
  color: #fff0d2;
  font: 900 18px/1.25 var(--pixel-font);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.benefit-card p,
.quest-card p {
  margin: 0;
  color: #bfae97;
  font-size: 14px;
  line-height: 1.7;
}

.steps-section {
  border-block: 3px solid #5b401d;
  background:
    linear-gradient(45deg, rgba(230, 167, 47, 0.024) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(230, 167, 47, 0.024) 25%, transparent 25%),
    #120e0b;
  background-size: 20px 20px;
}

.quest-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.quest-card {
  border: 4px solid var(--black);
  outline: 2px solid #6d5030;
  background: #0c0a08;
  box-shadow: 8px 8px 0 #000;
}

.quest-card__visual {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  overflow: hidden;
  border-bottom: 3px solid #6d5030;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34)),
    linear-gradient(#49312b 0 60%, #8c5d2c 60%);
}

.quest-card__visual::after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  opacity: 0.15;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%);
  background-size: 18px 18px;
}

.quest-card__step {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  border: 2px solid var(--gold);
  padding: 7px 9px;
  background: var(--black);
  color: var(--gold-bright);
  font: 900 8px/1 var(--pixel-font);
  text-transform: uppercase;
}

.quest-card__boss {
  position: relative;
  z-index: 2;
  width: 170px;
  filter: drop-shadow(0 10px 3px rgba(0, 0, 0, 0.4));
}

.quest-card__copy {
  min-height: 175px;
  padding: 26px;
}

.quest-card__visual--attack {
  align-content: center;
  gap: 14px;
  padding: 50px 32px 24px;
  background: #291b17;
}

.quest-card__visual--attack .health-bar {
  position: relative;
  z-index: 2;
  width: 100%;
}

.quest-card__visual--attack small,
.quest-card__visual--victory small {
  position: relative;
  z-index: 2;
  color: #dbc59f;
  font: 900 9px/1 var(--pixel-font);
}

.quest-card__damage {
  position: relative;
  z-index: 2;
  color: var(--gold-bright);
  font: 900 46px/1 var(--pixel-font);
  text-shadow: 4px 4px 0 var(--red-dark);
}

.quest-card__visual--victory {
  align-content: center;
  gap: 10px;
  background: radial-gradient(circle, #4a271b, #17100d 70%);
}

.victory-mark,
.quest-card__visual--victory strong,
.quest-card__visual--victory small {
  position: relative;
  z-index: 2;
}

.victory-mark {
  color: var(--gold-bright);
  font-size: 64px;
  text-shadow: 5px 5px 0 var(--red-dark);
}

.quest-card__visual--victory strong {
  color: var(--ivory);
  font: 900 13px/1 var(--pixel-font);
  text-transform: uppercase;
}

.gameplay-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(168, 23, 18, 0.14), transparent 25%),
    #090706;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
}

.showcase-card {
  overflow: hidden;
  margin: 0;
  border: 4px solid var(--black);
  outline: 2px solid var(--gold-dark);
  background: var(--black);
  box-shadow: 9px 9px 0 #000;
}

.showcase-card--dashboard {
  grid-row: span 2;
}

.showcase-card__bar span {
  color: #8f7f69;
}

.showcase-card__bar b {
  color: var(--gold-bright);
}

.showcase-card figcaption {
  display: grid;
  gap: 7px;
  min-height: 88px;
  padding: 19px 21px;
  border-top: 3px solid var(--gold-dark);
  background: #0d0a08;
}

.showcase-card figcaption strong,
.showcase-card figcaption span {
  display: block;
}

.showcase-card figcaption strong {
  color: var(--gold-bright);
  font: 900 12px/1.2 var(--pixel-font);
  text-transform: uppercase;
}

.showcase-card figcaption span {
  color: #b9a78f;
  font-size: 13px;
  line-height: 1.5;
}

.dashboard-mock {
  display: flex;
  min-height: 570px;
  padding: 24px;
  background: #241813;
}

.dashboard-mock__rail {
  display: flex;
  width: 62px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border: 3px solid #745325;
  border-right: 0;
  padding: 18px 8px;
  background: var(--black);
}

.dashboard-mock__rail strong {
  color: var(--gold-bright);
  font: 900 11px/1 var(--pixel-font);
}

.dashboard-mock__rail i {
  width: 24px;
  height: 6px;
  background: #5d4b39;
}

.dashboard-mock__rail i:first-of-type {
  background: var(--red-bright);
}

.dashboard-mock__content {
  flex: 1;
  border: 3px solid #745325;
  padding: 25px;
  background: #110e0b;
}

.dashboard-mock__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-mock__heading small,
.dashboard-mock__heading strong {
  display: block;
  font-family: var(--pixel-font);
}

.dashboard-mock__heading small {
  margin-bottom: 7px;
  color: #867763;
  font-size: 8px;
  text-transform: uppercase;
}

.dashboard-mock__heading strong {
  color: var(--ivory);
  font-size: 16px;
  text-transform: uppercase;
}

.dashboard-mock__heading > span {
  border: 2px solid var(--gold-dark);
  padding: 9px 10px;
  background: var(--red);
  color: #fff2d7;
  font: 900 8px/1 var(--pixel-font);
  text-transform: uppercase;
}

.dashboard-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.dashboard-mock__stats div {
  border: 2px solid #6a4d2b;
  padding: 14px 12px;
  background: #1c1611;
}

.dashboard-mock__stats small,
.dashboard-mock__stats b {
  display: block;
  font-family: var(--pixel-font);
}

.dashboard-mock__stats small {
  margin-bottom: 9px;
  color: #81725f;
  font-size: 7px;
  text-transform: uppercase;
}

.dashboard-mock__stats b {
  color: var(--gold-bright);
  font-size: 13px;
}

.dashboard-mock__battle {
  display: grid;
  min-height: 325px;
  grid-template-columns: minmax(150px, 0.7fr) 1fr;
  align-items: center;
  gap: 28px;
  border: 2px solid #6a4d2b;
  padding: 25px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.52)),
    linear-gradient(#46302b 0 62%, #76502c 62%);
}

.dashboard-mock__boss {
  width: 180px;
  justify-self: center;
}

.dashboard-mock__battle small,
.dashboard-mock__battle strong,
.dashboard-mock__battle span {
  display: block;
  font-family: var(--pixel-font);
}

.dashboard-mock__battle small {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
}

.dashboard-mock__battle strong {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: 15px;
  text-transform: uppercase;
}

.dashboard-mock__battle span {
  margin-top: 10px;
  color: #d5c3a8;
  font-size: 8px;
}

.boss-detail-mock,
.hit-mock {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
  background: #1b130f;
  text-align: center;
}

.boss-detail-mock {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.52)),
    linear-gradient(#46302b 0 58%, #76502c 58%);
}

.boss-detail-mock__sprite {
  width: 145px;
  margin-bottom: -8px;
  filter: drop-shadow(0 10px 3px rgba(0, 0, 0, 0.4));
}

.status-chip {
  border: 2px solid var(--red-bright);
  padding: 5px 7px;
  background: var(--black);
  color: var(--gold-bright);
  font: 900 7px/1 var(--pixel-font);
  text-transform: uppercase;
}

.boss-detail-mock h3 {
  margin: 12px 0 16px;
  color: var(--ivory);
  font: 900 14px/1 var(--pixel-font);
  text-transform: uppercase;
}

.boss-detail-mock .health-bar {
  width: 100%;
}

.boss-detail-mock__values {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 13px 0;
}

.boss-detail-mock__values span {
  border: 1px solid #76572f;
  padding: 8px;
  background: rgba(8, 7, 6, 0.82);
  color: #a5947c;
  font: 900 7px/1.4 var(--pixel-font);
  text-transform: uppercase;
}

.boss-detail-mock__values b {
  display: block;
  margin-top: 4px;
  color: var(--gold-bright);
}

.boss-detail-mock button {
  width: 100%;
  border: 2px solid var(--gold);
  padding: 10px;
  background: var(--red);
  color: #fff2dc;
  font: 900 8px/1 var(--pixel-font);
  text-transform: uppercase;
}

.hit-mock {
  gap: 14px;
  background:
    radial-gradient(circle, rgba(200, 52, 35, 0.45), transparent 47%),
    #120d0a;
}

.hit-mock__label {
  color: var(--gold-bright);
  font: 900 11px/1 var(--pixel-font);
  text-transform: uppercase;
}

.hit-mock > strong {
  position: relative;
  z-index: 2;
  color: #fff1cf;
  font: 900 48px/1 var(--pixel-font);
  text-shadow: 4px 4px 0 var(--red-dark);
}

.hit-mock__burst {
  position: absolute;
  color: rgba(230, 167, 47, 0.18);
  font-size: 230px;
}

.hit-mock .health-bar {
  position: relative;
  z-index: 2;
  width: 86%;
}

.hit-mock small {
  position: relative;
  z-index: 2;
  color: #bca98e;
  font: 900 8px/1 var(--pixel-font);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 4px solid var(--gold-dark);
  background: var(--red);
}

.feature-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 13px;
  padding: 28px 26px;
  border-right: 3px solid var(--black);
}

.feature-strip > div:last-child {
  border-right: 0;
}

.feature-strip > div > span {
  grid-row: span 2;
  color: var(--gold-bright);
  font-size: 25px;
}

.feature-strip strong,
.feature-strip small {
  font-family: var(--pixel-font);
}

.feature-strip strong {
  color: #fff5e2;
  font-size: 10px;
  text-transform: uppercase;
}

.feature-strip small {
  color: #ebbbb0;
  font-size: 8px;
}

.faq-section {
  background: #100d0b;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 3px solid #5f472d;
}

.faq-list details {
  border-bottom: 3px solid #5f472d;
  background: #13100d;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 20px;
  color: #f5dfbc;
  font: 900 12px/1.4 var(--pixel-font);
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--gold-bright);
  font-size: 22px;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: 0;
  padding: 0 20px 25px;
  color: #baa990;
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 630px;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 90px max(24px, calc((100vw - 1040px) / 2));
  border-block: 4px solid var(--gold-dark);
  background:
    radial-gradient(circle at 22% 60%, rgba(195, 43, 31, 0.28), transparent 29%),
    linear-gradient(120deg, #1b100d 0 48%, #0a0807 48%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(45deg, #e6a72f 25%, transparent 25%), linear-gradient(-45deg, #e6a72f 25%, transparent 25%);
  background-size: 28px 28px;
}

.final-cta__boss,
.final-cta__content {
  position: relative;
  z-index: 2;
}

.final-cta__boss {
  width: 330px;
  justify-self: center;
  filter: drop-shadow(0 25px 8px rgba(0, 0, 0, 0.55));
}

.final-cta__content > p:not(.pixel-kicker) {
  max-width: 570px;
  margin: 25px 0 30px;
  color: #cbb99f;
  font-size: 17px;
  line-height: 1.7;
}

.marketing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  background: #070605;
}

.marketing-footer > p {
  margin: 0;
  color: #8f806c;
  font: 700 9px/1.5 var(--pixel-font);
  text-align: center;
  text-transform: uppercase;
}

.marketing-footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: #b7a68f;
  font: 700 9px/1 var(--pixel-font);
  text-transform: uppercase;
}

.flash {
  width: min(1120px, calc(100% - 40px));
  margin: 16px auto 0;
  border-radius: 8px;
  padding: 10px 14px;
}

.flash--notice {
  border: 1px solid rgba(89, 220, 154, 0.4);
  background: rgba(89, 220, 154, 0.12);
  color: #b9f3d4;
}

.flash--alert {
  border: 1px solid rgba(202, 59, 45, 0.4);
  background: rgba(202, 59, 45, 0.15);
  color: #ffd4cf;
}

@media (max-width: 1000px) {
  .marketing-header {
    grid-template-columns: 1fr auto;
  }

  .marketing-nav {
    display: none;
  }

  .hero-section {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 150px;
  }

  .hero-section__copy {
    width: 100%;
    min-width: 0;
    max-width: 740px;
    text-align: center;
    justify-self: center;
  }

  .hero-section__lead {
    margin-inline: auto;
  }

  .hero-section__actions {
    justify-content: center;
  }

  .hero-console {
    width: min(650px, 100%);
    margin: 0 auto;
  }

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

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

  .motivation-grid,
  .quest-path {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

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

  .showcase-card--dashboard {
    grid-row: auto;
  }

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

  .feature-strip > div:nth-child(2) {
    border-right: 0;
  }

  .feature-strip > div:nth-child(-n + 2) {
    border-bottom: 3px solid var(--black);
  }
}

@media (max-width: 720px) {
  .marketing-header {
    width: calc(100% - 30px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .marketing-header__actions .text-link {
    display: none;
  }

  .marketing-header__actions {
    display: none;
  }

  .marketing-brand__shield {
    width: 37px;
    height: 37px;
  }

  .marketing-brand__name {
    font-size: 11px;
  }

  .pixel-button--small {
    min-height: 36px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero-section {
    gap: 58px;
    padding-inline: 16px;
  }

  .hero-section__copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-section h1 {
    font-size: clamp(40px, 11.5vw, 52px);
    letter-spacing: -0.02em;
  }

  .hero-section h1 > span,
  .hero-section h1 > em {
    display: block;
    white-space: normal;
  }

  .hero-section h1 > span:first-child::after {
    content: none;
  }

  .hero-section__lead {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }

  .hero-section__actions .pixel-button {
    width: 100%;
  }

  .hero-section__note {
    text-align: left;
  }

  .hero-console {
    width: calc(100vw - 42px);
    max-width: calc(100vw - 42px);
    min-width: 0;
    padding: 0;
  }

  .game-frame {
    width: 100%;
    min-width: 0;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.6);
  }

  .game-frame__chrome > span:last-child {
    display: none;
  }

  .boss-hud {
    right: 14px;
    left: 14px;
  }

  .boss-hud strong {
    font-size: 11px;
  }

  .game-frame__screen {
    min-height: 400px;
  }

  .hero-boss {
    width: 220px;
  }

  .damage-number {
    top: 160px;
    right: 30px;
    font-size: 26px;
  }

  .game-frame__stats {
    grid-template-columns: 1fr;
  }

  .game-frame__stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid #49351f;
    padding: 10px 14px;
  }

  .game-frame__stats div:last-child {
    border-bottom: 0;
  }

  .game-frame__stats span {
    margin: 0;
  }

  .achievement-card {
    right: 0;
  }

  .game-pillars {
    grid-template-columns: 1fr;
  }

  .game-pillars > div {
    border-right: 0;
    border-bottom: 3px solid var(--black);
  }

  .game-pillars > div:last-child {
    border-bottom: 0;
  }

  .marketing-section {
    padding: 92px 18px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .dashboard-mock {
    min-height: 480px;
    padding: 12px;
  }

  .dashboard-mock__rail {
    display: none;
  }

  .dashboard-mock__content {
    padding: 15px;
  }

  .dashboard-mock__stats {
    grid-template-columns: 1fr;
  }

  .dashboard-mock__battle {
    min-height: 250px;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .dashboard-mock__boss {
    width: 115px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip > div {
    border-right: 0;
    border-bottom: 3px solid var(--black);
  }

  .final-cta {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 80px 20px;
    text-align: center;
  }

  .final-cta__boss {
    width: 220px;
  }

  .final-cta__content > p:not(.pixel-kicker) {
    margin-inline: auto;
  }

  .marketing-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .marketing-footer__links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .hero-section__copy,
  .hero-console {
    width: 100%;
    max-width: 340px;
    justify-self: center;
  }

  .hero-section__lead {
    overflow-wrap: anywhere;
  }

  .battle-command {
    right: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .damage-number {
    animation: damage-bob 1.8s steps(2, end) infinite;
  }

  .achievement-card {
    animation: achievement-bob 3s steps(3, end) infinite;
  }

  @keyframes damage-bob {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-7px) rotate(5deg); }
  }

  @keyframes achievement-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
}

/* Admin */
.admin-shell {
  --admin-bg: #0c0f16;
  --admin-surface: #171a22;
  --admin-surface-raised: #1f232e;
  --admin-line: #343846;
  --admin-line-soft: #272c39;
  --admin-text: #f4efe4;
  --admin-muted: #aeb5c2;
  --admin-gold: #f5b859;
  --admin-red: #d33727;
  --admin-green: #57c7a5;
  width: min(1120px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 20px 64px;
  color: var(--admin-text);
}

body:has(.admin-shell) {
  background:
    linear-gradient(rgba(245, 184, 89, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 89, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 18% 0, rgba(211, 55, 39, 0.16), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(87, 199, 165, 0.12), transparent 30%),
    #0c0f16;
  background-size: 32px 32px, 32px 32px, auto, auto, auto;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.8fr);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 -20px 30px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(245, 184, 89, 0.12);
  background: rgba(12, 15, 22, 0.88);
  backdrop-filter: blur(16px);
}

.admin-header__title {
  min-width: 0;
}

.admin-header h1 {
  margin: 8px 0 0;
  color: #fff8ec;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-nav form {
  margin: 0;
}

.admin-nav__button,
.admin-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--admin-line);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(31, 35, 46, 0.74);
  color: #dcd4c8;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.admin-nav__button:hover,
.admin-nav a:hover,
.admin-nav a.is-active {
  border-color: rgba(245, 184, 89, 0.7);
  background: rgba(245, 184, 89, 0.12);
  color: #fff8ec;
}

.admin-nav__button:hover,
.admin-nav a:hover {
  transform: translateY(-1px);
}

.admin-nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--admin-gold);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.admin-card,
.admin-panel {
  position: relative;
  border: 1px solid var(--admin-line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(23, 26, 34, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.admin-card {
  overflow: hidden;
  padding: 20px;
}

.admin-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--admin-gold), transparent);
}

.admin-panel {
  padding: 20px;
}

.admin-card span,
.admin-muted {
  color: var(--admin-muted);
}

.admin-card strong {
  display: block;
  margin-top: 10px;
  color: #fff8ec;
  font-size: 34px;
  line-height: 1;
}

.admin-panel h2,
.admin-panel h3 {
  color: #fff8ec;
}

.admin-panel h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow-wrap: anywhere;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--admin-line-soft);
  padding: 14px 12px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--admin-gold);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table tbody tr {
  transition: background 0.16s ease;
}

.admin-table tbody tr:hover {
  background: rgba(245, 184, 89, 0.045);
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table a {
  color: var(--admin-gold);
  font-weight: 800;
  text-decoration: none;
}

.admin-table a:hover {
  color: #ffd27a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-auth {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
  background:
    linear-gradient(rgba(245, 184, 89, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 89, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 184, 89, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(87, 199, 165, 0.16), transparent 34%),
    #0c0f16;
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
}

.admin-auth__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1fr);
  width: min(940px, 100%);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #2b3040;
  border-radius: 8px;
  padding: 0;
  background: #f7ead4;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
}

.admin-auth__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 6px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #d33727, #f5b859, #57c7a5);
}

.admin-auth__visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(rgba(255, 242, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 242, 216, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #2a1612, #11141c 54%, #132d2a);
  background-size: 22px 22px, 22px 22px, auto;
}

.admin-auth__visual::before {
  content: "ADMIN";
  position: absolute;
  top: 28px;
  left: 28px;
  border: 1px solid rgba(245, 184, 89, 0.4);
  border-radius: 999px;
  padding: 6px 10px;
  color: #f5b859;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.admin-auth__visual::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(245, 184, 89, 0.24);
  transform: rotate(18deg);
}

.admin-auth__visual-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(260px, 82%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(245, 184, 89, 0.32);
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.34);
  box-shadow: inset 0 0 0 8px rgba(255, 242, 216, 0.035), 0 24px 60px rgba(0, 0, 0, 0.26);
}

.admin-auth__visual-card img {
  width: 88%;
  height: 88%;
  object-fit: cover;
  object-position: left top;
  image-rendering: pixelated;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.38));
}

.admin-auth__form {
  display: grid;
  align-content: center;
  padding: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.26)),
    #f7ead4;
  color: #17120e;
}

.admin-auth__panel h1 {
  margin: 14px 0 8px;
  color: #17120e;
  font-size: 38px;
  line-height: 1.08;
}

.admin-auth .admin-muted {
  margin: 0 0 24px;
  color: #6d604f;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #a81712;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-mark::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: 4px 4px 0 #f5b859;
}

.admin-form,
.admin-field {
  display: grid;
  gap: 8px;
}

.admin-form {
  gap: 18px;
}

.admin-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-field label,
.sprite-picker legend {
  color: #dcd4c8;
  font-weight: 700;
}

.admin-field input,
.admin-field select {
  width: 100%;
  border: 1px solid #343846;
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(16, 19, 26, 0.94);
  color: #f4efe4;
  font: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.admin-field input:focus,
.admin-field select:focus {
  outline: none;
  border-color: #f5b859;
  background: #0d1017;
  box-shadow: 0 0 0 3px rgba(245, 184, 89, 0.16);
}

.admin-field input[type="file"] {
  padding: 9px;
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dcd4c8;
  font-weight: 700;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #f5b859;
}

.admin-panel__header,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-panel__header h2 {
  margin: 0;
}

.admin-actions {
  justify-content: flex-end;
  margin-bottom: 16px;
}

.admin-actions form {
  margin: 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #473a2e;
  border-radius: 8px;
  padding: 0 18px;
  background: linear-gradient(180deg, #ffd27a, #f5b859);
  color: #1b1611;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  background: #ffd27a;
  box-shadow: 0 10px 24px rgba(245, 184, 89, 0.18);
  transform: translateY(-1px);
}

.admin-auth .button {
  width: 100%;
}

.admin-auth .admin-field label,
.admin-auth .admin-checkbox {
  color: #2b2119;
}

.admin-auth .admin-field input {
  border-color: #d8c4a6;
  background: #fffaf0;
  color: #17120e;
}

.admin-auth .admin-field input:focus {
  border-color: #a81712;
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(168, 23, 18, 0.14);
}

.button--danger {
  border-color: #7c2119;
  background: linear-gradient(180deg, #df4a3d, #b92f24);
  color: #fff8ec;
}

.button--danger:hover {
  background: #df4a3d;
  box-shadow: 0 10px 24px rgba(211, 55, 39, 0.18);
}

.button--ghost {
  border-color: #3d4558;
  background: rgba(31, 35, 46, 0.78);
  color: #fff8ec;
}

.button--ghost:hover {
  background: rgba(245, 184, 89, 0.1);
  box-shadow: none;
}

.boss-sprite--small {
  width: 56px;
}

.admin-card--sprite {
  display: grid;
  place-items: center;
}

.admin-panel--spaced {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.sprite-library {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.sprite-library--arenas {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sprite-library__item {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--admin-line-soft, #2b3040);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent),
    #11141c;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.sprite-library__item:hover {
  border-color: rgba(245, 184, 89, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.sprite-library__item h3,
.sprite-library__item p {
  margin: 0 0 6px;
}

.uploaded-sprite {
  display: block;
  width: 150px;
  height: 150px;
  justify-self: center;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.34));
}

.uploaded-sprite--small {
  width: 56px;
  height: 56px;
}

@media (max-width: 760px) {
  .admin-auth {
    align-items: stretch;
    padding: 18px;
  }

  .admin-auth__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-auth__visual {
    min-height: 190px;
    padding: 28px;
  }

  .admin-auth__visual-card {
    width: 156px;
  }

  .admin-auth__form {
    padding: 34px 24px 28px;
  }

  .admin-auth__panel h1 {
    font-size: 32px;
  }
}

.uploaded-sprite--large {
  width: min(260px, 100%);
  height: 260px;
}

.uploaded-arena {
  display: block;
  width: 100%;
  max-height: 112px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #10131a;
  border-radius: 6px;
}

.uploaded-arena--large {
  max-width: 640px;
  max-height: none;
}

.uploaded-arena--empty {
  display: grid;
  place-items: center;
  border: 1px dashed #5d6578;
  color: #9da5b4;
  font-size: 13px;
  text-transform: uppercase;
}

.sprite-picker {
  margin: 0;
  border: 1px solid #343846;
  border-radius: 8px;
  padding: 16px;
  background: rgba(12, 15, 22, 0.36);
}

.sprite-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.sprite-picker__grid--arenas {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sprite-option {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px solid #343846;
  border-radius: 8px;
  padding: 10px;
  background: #11141c;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.sprite-option:hover {
  border-color: rgba(245, 184, 89, 0.45);
  background: #161b25;
  transform: translateY(-1px);
}

.sprite-option:has(input:checked) {
  border-color: #f5b859;
  box-shadow: 0 0 0 2px rgba(245, 184, 89, 0.16);
}

.sprite-option input {
  position: absolute;
  opacity: 0;
}

@media (max-width: 720px) {
  .admin-shell {
    padding: 22px 14px 48px;
  }

  .admin-header {
    position: static;
    grid-template-columns: 1fr;
    margin: -22px -14px 24px;
    padding: 18px 14px;
  }

  .admin-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .admin-nav__button,
  .admin-nav a {
    white-space: nowrap;
  }

  .admin-form__row,
  .sprite-picker__grid {
    grid-template-columns: 1fr;
  }

  .sprite-picker__grid--arenas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Aurora alignment for Rails hotsite + admin. Matches the app HUD palette. */
:root {
  --aurora-bg: #0a0e1a;
  --aurora-bg-2: #0f1526;
  --aurora-panel: #141b2e;
  --aurora-panel-deep: #0d1220;
  --aurora-panel-raised: #18213a;
  --aurora-line: #263657;
  --aurora-text: #f0f4f8;
  --aurora-muted: #8b95ab;
  --aurora-green: #3fddb3;
  --aurora-green-bright: #4ade9c;
  --aurora-teal: #2dd4bf;
  --aurora-violet: #9d7fe8;
  --aurora-magenta: #e879c4;
  --aurora-heat: #e8622c;
  --aurora-danger: #ef4444;
  --display-font: "Almendra", Georgia, serif;
  --hud-font: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --slash-panel: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  --ragged-panel: polygon(
    0 12px,
    11px 0,
    calc(100% - 22px) 0,
    100% 16px,
    100% calc(100% - 13px),
    calc(100% - 10px) 100%,
    18px 100%,
    0 calc(100% - 24px)
  );
}

body {
  background:
    radial-gradient(circle at 16% 12%, rgba(63, 221, 179, 0.1), transparent 25rem),
    radial-gradient(circle at 78% 18%, rgba(157, 127, 232, 0.11), transparent 28rem),
    linear-gradient(180deg, var(--aurora-bg) 0%, var(--aurora-bg-2) 52%, #070a12 100%);
  color: var(--aurora-text);
  font-family: var(--hud-font);
}

.marketing-site {
  --black: #0a0e1a;
  --coal: #0f1526;
  --panel: #141b2e;
  --panel-raised: #18213a;
  --line: #263657;
  --red: #e8622c;
  --red-bright: #ef4444;
  --red-dark: #7f1d1d;
  --gold: #3fddb3;
  --gold-bright: #4ade9c;
  --gold-dark: #145b55;
  --ivory: #f0f4f8;
  --muted: #8b95ab;
  --pixel-font: var(--hud-font);
  background:
    radial-gradient(circle at 8% 16%, rgba(63, 221, 179, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(157, 127, 232, 0.1), transparent 26rem),
    radial-gradient(circle at 42% 92%, rgba(45, 212, 191, 0.07), transparent 24rem),
    linear-gradient(180deg, #0a0e1a 0%, #0f1526 56%, #070a12 100%);
  color: var(--aurora-text);
}

.marketing-site::before {
  opacity: 0.055;
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 244, 248, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(45, 212, 191, 0.13) 0 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(240, 244, 248, 0.08) 0 1px, transparent 1px 6px);
  background-size: 17px 19px, 23px 29px, auto;
}

.marketing-header {
  color: var(--aurora-muted);
}

.marketing-brand__shield {
  border: 0;
  outline: 0;
  background:
    linear-gradient(160deg, #4ade9c 0 42%, #9d7fe8 43% 58%, #15213a 59% 100%);
  box-shadow:
    inset 0 0 0 3px #050712,
    inset 0 0 0 5px rgba(240, 244, 248, 0.7),
    6px 6px 0 #000;
  clip-path: polygon(50% 0, 100% 16%, 88% 78%, 50% 100%, 12% 78%, 0 16%);
  color: #07111f;
}

.marketing-brand__name,
.marketing-brand__name b:first-child,
.marketing-nav a:hover,
.text-link:hover,
.marketing-footer__links a:hover {
  color: var(--aurora-green-bright);
}

.marketing-nav,
.text-link,
.marketing-footer__links {
  color: #a9b4ca;
}

.pixel-button,
.button {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, #4ade9c 0%, #2dd4bf 54%, #137b73 100%);
  box-shadow:
    inset 0 3px 0 rgba(240, 244, 248, 0.22),
    inset 0 -5px 0 rgba(0, 0, 0, 0.32),
    6px 7px 0 #000;
  clip-path: var(--slash-panel);
  color: #06121d;
  font-family: var(--hud-font);
  text-shadow: 0 1px 0 rgba(240, 244, 248, 0.26);
}

.pixel-button:hover,
.button:hover {
  background:
    linear-gradient(180deg, #67f0bf 0%, #2dd4bf 54%, #137b73 100%);
  box-shadow:
    inset 0 3px 0 rgba(240, 244, 248, 0.22),
    inset 0 -5px 0 rgba(0, 0, 0, 0.32),
    2px 3px 0 #000;
}

.pixel-button--primary,
.pixel-button--small {
  background:
    linear-gradient(180deg, #4ade9c 0%, #2dd4bf 54%, #137b73 100%);
  color: #06121d;
}

.pixel-button--ghost,
.button--ghost {
  background:
    linear-gradient(180deg, #19223a 0%, #0d1220 100%);
  box-shadow:
    inset 0 0 0 2px rgba(45, 212, 191, 0.7),
    inset 0 -5px 0 rgba(0, 0, 0, 0.34),
    5px 6px 0 #000;
  color: var(--aurora-text);
  text-shadow: 1px 1px 0 #050712;
}

.pixel-button--gold,
.achievement-card {
  background: #9d7fe8;
  color: #080c17;
}

.button--danger,
.boss-detail-mock button {
  background:
    linear-gradient(180deg, #ff8a4c 0%, var(--aurora-heat) 45%, #8f271a 100%);
  color: #fff7ed;
  text-shadow: 2px 2px 0 #220814;
}

.hero-section,
.final-cta {
  border-color: rgba(45, 212, 191, 0.42);
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.94), rgba(20, 27, 46, 0.78)),
    linear-gradient(115deg, rgba(63, 221, 179, 0.13), transparent 28%),
    linear-gradient(128deg, transparent 38%, rgba(157, 127, 232, 0.13) 52%, rgba(45, 212, 191, 0.1) 68%, transparent 82%),
    #0a0e1a;
}

.hero-section::after,
.final-cta::before {
  opacity: 0.12;
  border-color: rgba(45, 212, 191, 0.1);
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(63, 221, 179, 0.8) 28%, rgba(157, 127, 232, 0.6) 49%, rgba(45, 212, 191, 0.72) 66%, transparent 78%);
  animation: rails-aurora-sweep 16s linear infinite;
}

.hero-section h1,
.section-heading h2,
.final-cta h2 {
  color: var(--aurora-text);
  font-family: var(--display-font);
  letter-spacing: 0;
  text-shadow:
    0 3px 0 #050712,
    5px 7px 0 rgba(0, 0, 0, 0.72);
}

.hero-section h1 em,
.section-heading h2 em,
.final-cta h2 em,
.hero-section__note span,
.boss-hud small b,
.battle-command__xp,
.game-frame__stats strong,
.showcase-card__bar b,
.showcase-card figcaption strong,
.faq-list summary span {
  color: var(--aurora-green-bright);
  text-shadow: 0 2px 0 #050712;
}

.hero-section__lead,
.hero-section__note,
.section-heading > p:last-child,
.section-heading--split > p,
.benefit-card p,
.quest-card p,
.showcase-card figcaption span,
.faq-list details p,
.final-cta__content > p:not(.pixel-kicker),
.game-frame__stats span,
.boss-hud span,
.boss-hud small,
.battle-command small,
.dashboard-mock__heading small,
.dashboard-mock__stats small,
.dashboard-mock__battle span,
.boss-detail-mock__values span,
.hit-mock small,
.marketing-footer > p {
  color: var(--aurora-muted);
}

.pixel-kicker span,
.quest-card__step,
.status-chip {
  border-color: rgba(45, 212, 191, 0.7);
  border-left-color: var(--aurora-green-bright);
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.2), rgba(157, 127, 232, 0.1));
  box-shadow:
    inset 5px 0 0 var(--aurora-green-bright),
    inset 0 0 0 1px rgba(45, 212, 191, 0.34),
    4px 4px 0 #000;
  clip-path: var(--slash-panel);
  color: var(--aurora-text);
}

.game-frame,
.benefit-card,
.quest-card,
.showcase-card,
.faq-list details,
.admin-card,
.admin-panel,
.sprite-library__item,
.sprite-picker,
.sprite-option {
  border: 0;
  border-radius: 0;
  outline: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(63, 221, 179, 0.055), transparent 12rem),
    radial-gradient(circle at 90% 8%, rgba(157, 127, 232, 0.045), transparent 14rem),
    linear-gradient(180deg, #141b2e 0%, #0d1220 100%);
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(45, 212, 191, 0.44),
    10px 10px 0 rgba(0, 0, 0, 0.72);
  clip-path: var(--ragged-panel);
}

.game-frame__chrome,
.showcase-card__bar,
.game-frame__stats,
.showcase-card figcaption,
.marketing-footer,
.battle-command,
.boss-hud {
  border-color: rgba(45, 212, 191, 0.32);
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.96), rgba(20, 27, 46, 0.94));
  color: var(--aurora-text);
}

.game-frame__screen,
.quest-card__visual,
.dashboard-mock__battle,
.boss-detail-mock {
  background:
    radial-gradient(circle at 50% 42%, rgba(63, 221, 179, 0.16), transparent 12rem),
    radial-gradient(circle at 76% 18%, rgba(157, 127, 232, 0.13), transparent 11rem),
    linear-gradient(rgba(10, 14, 26, 0.28), rgba(10, 14, 26, 0.82)),
    linear-gradient(#141b2e 0 58%, #0b1020 58% 100%);
}

.game-frame__screen::before,
.quest-card__visual::after {
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, rgba(45, 212, 191, 0.42) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(157, 127, 232, 0.32) 25%, transparent 25%);
}

.battle-sky {
  background:
    linear-gradient(90deg, transparent 49%, rgba(240, 244, 248, 0.035) 50%, transparent 51%),
    linear-gradient(#0f1526, #111a32);
}

.pixel-star,
.game-frame__signal i {
  background: var(--aurora-green-bright);
  box-shadow:
    5px 0 0 var(--aurora-green-bright),
    -5px 0 0 var(--aurora-green-bright),
    0 5px 0 var(--aurora-green-bright),
    0 -5px 0 var(--aurora-green-bright);
}

.health-bar {
  border: 0;
  outline: 0;
  background: #08101f;
  box-shadow:
    inset 0 0 0 2px #050712,
    inset 0 0 0 4px rgba(45, 212, 191, 0.5),
    3px 4px 0 #000;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.health-bar i {
  background:
    repeating-linear-gradient(90deg, #4ade9c 0 16px, #3fddb3 16px 25px),
    linear-gradient(90deg, #3fddb3, #2dd4bf);
  box-shadow:
    inset 0 3px 0 rgba(240, 244, 248, 0.2),
    0 0 16px rgba(63, 221, 179, 0.36);
}

.damage-number,
.quest-card__damage,
.hit-mock > strong {
  color: #fff7ed;
  text-shadow:
    4px 4px 0 #7f1d1d,
    -2px -2px 0 #050712,
    0 0 18px rgba(232, 98, 44, 0.72);
}

.battle-command__icon,
.dashboard-mock__heading > span,
.game-pillars,
.feature-strip {
  background: var(--aurora-heat);
  color: #fff7ed;
}

.battle-command__icon {
  color: #fff7ed;
}

.game-pillars,
.feature-strip {
  border-color: #050712;
  background:
    linear-gradient(90deg, #0f1526, #141b2e);
  box-shadow:
    inset 0 1px 0 rgba(45, 212, 191, 0.22),
    inset 0 -1px 0 rgba(45, 212, 191, 0.22);
}

.game-pillars > div,
.feature-strip > div {
  border-color: rgba(45, 212, 191, 0.32);
}

.game-pillars span,
.feature-strip > div > span,
.benefit-card__icon,
.dashboard-mock__stats b,
.boss-detail-mock__values b,
.hit-mock__label {
  color: var(--aurora-green-bright);
}

.benefit-card--gold,
.benefit-card--red {
  border-top-color: transparent;
}

.benefit-card__icon,
.dashboard-mock__stats div,
.boss-detail-mock__values span {
  border-color: rgba(45, 212, 191, 0.42);
  background: rgba(10, 14, 26, 0.82);
}

.motivation-section,
.steps-section,
.gameplay-section,
.faq-section {
  border-color: rgba(45, 212, 191, 0.28);
  background:
    radial-gradient(circle at 85% 15%, rgba(157, 127, 232, 0.08), transparent 25%),
    radial-gradient(circle at 8% 15%, rgba(63, 221, 179, 0.07), transparent 23%),
    #0a0e1a;
}

.dashboard-mock,
.dashboard-mock__content,
.dashboard-mock__rail,
.boss-detail-mock,
.hit-mock {
  border-color: rgba(45, 212, 191, 0.34);
  background:
    radial-gradient(circle at 18% 14%, rgba(63, 221, 179, 0.055), transparent 12rem),
    linear-gradient(180deg, #141b2e, #0d1220);
}

.dashboard-mock__rail i {
  background: rgba(139, 149, 171, 0.42);
}

.dashboard-mock__rail i:first-of-type {
  background: var(--aurora-teal);
}

.hit-mock {
  background:
    radial-gradient(circle, rgba(232, 98, 44, 0.32), transparent 47%),
    #0d1220;
}

.hit-mock__burst {
  color: rgba(232, 98, 44, 0.14);
}

.faq-list,
.faq-list details {
  border-color: rgba(45, 212, 191, 0.28);
}

.flash {
  border-radius: 0;
  clip-path: var(--ragged-panel);
}

.flash--notice {
  border-color: rgba(74, 222, 156, 0.44);
  background: rgba(74, 222, 156, 0.12);
  color: #dfffee;
}

.flash--alert {
  border-color: rgba(239, 68, 68, 0.44);
  background: rgba(239, 68, 68, 0.14);
  color: #ffe2d3;
}

.admin-shell {
  --admin-bg: #0a0e1a;
  --admin-surface: #141b2e;
  --admin-surface-raised: #18213a;
  --admin-line: #2dd4bf;
  --admin-line-soft: #263657;
  --admin-text: #f0f4f8;
  --admin-muted: #8b95ab;
  --admin-gold: #3fddb3;
  --admin-red: #e8622c;
  --admin-green: #4ade9c;
  color: var(--admin-text);
}

body:has(.admin-shell),
.admin-auth {
  background:
    radial-gradient(circle at 16% 12%, rgba(63, 221, 179, 0.1), transparent 25rem),
    radial-gradient(circle at 78% 18%, rgba(157, 127, 232, 0.11), transparent 28rem),
    linear-gradient(180deg, #0a0e1a 0%, #0f1526 52%, #070a12 100%);
}

.admin-header {
  border-bottom-color: rgba(45, 212, 191, 0.28);
  background: rgba(10, 14, 26, 0.9);
  box-shadow:
    inset 0 -1px 0 rgba(45, 212, 191, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.22);
}

.admin-header h1,
.admin-panel h2,
.admin-panel h3,
.admin-card strong,
.admin-table td,
.admin-auth__panel h1 {
  color: var(--aurora-text);
}

.admin-header h1,
.admin-panel h2,
.admin-panel h3,
.admin-auth__panel h1 {
  font-family: var(--display-font);
  letter-spacing: 0;
  text-shadow:
    0 3px 0 #050712,
    4px 5px 0 rgba(0, 0, 0, 0.62);
}

.site-mark,
.admin-table th,
.admin-table a,
.admin-card::before {
  color: var(--aurora-green-bright);
}

.site-mark::before {
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--aurora-violet);
}

.admin-nav__button,
.admin-nav a {
  border: 0;
  border-radius: 0;
  background: rgba(20, 27, 46, 0.86);
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.32);
  clip-path: var(--slash-panel);
  color: #d9e2ee;
  font-family: var(--hud-font);
}

.admin-nav__button:hover,
.admin-nav a:hover,
.admin-nav a.is-active {
  background: rgba(45, 212, 191, 0.14);
  box-shadow:
    inset 0 0 0 2px rgba(45, 212, 191, 0.7),
    0 0 18px rgba(45, 212, 191, 0.12);
  color: var(--aurora-text);
}

.admin-nav a.is-active {
  box-shadow:
    inset 0 0 0 2px rgba(45, 212, 191, 0.7),
    inset 0 -3px 0 var(--aurora-violet),
    0 0 18px rgba(45, 212, 191, 0.12);
}

.admin-card::before {
  background: linear-gradient(90deg, var(--aurora-green), var(--aurora-violet), transparent);
}

.admin-card strong {
  font-family: var(--hud-font);
  text-shadow:
    0 2px 0 #050712,
    0 0 20px rgba(63, 221, 179, 0.18);
}

.admin-muted,
.admin-card span,
.admin-table th,
.sprite-library__item p,
.admin-auth .admin-muted {
  color: var(--aurora-muted);
}

.admin-table th,
.admin-table td {
  border-bottom-color: rgba(38, 54, 87, 0.9);
}

.admin-table tbody tr:hover {
  background: rgba(45, 212, 191, 0.07);
}

.admin-table a:hover {
  color: var(--aurora-teal);
}

.admin-field label,
.sprite-picker legend,
.admin-checkbox {
  color: #d9e2ee;
}

.admin-field input,
.admin-field select,
.admin-auth .admin-field input {
  border: 0;
  border-radius: 0;
  background: #070b15;
  box-shadow:
    inset 0 0 0 2px #050712,
    inset 0 0 0 4px rgba(45, 212, 191, 0.5),
    4px 4px 0 rgba(0, 0, 0, 0.55);
  color: var(--aurora-text);
}

.admin-field input:focus,
.admin-field select:focus,
.admin-auth .admin-field input:focus {
  border-color: transparent;
  background: #0a1020;
  box-shadow:
    inset 0 0 0 2px #050712,
    inset 0 0 0 4px var(--aurora-teal),
    0 0 20px rgba(45, 212, 191, 0.14),
    4px 4px 0 rgba(0, 0, 0, 0.55);
}

.admin-checkbox input {
  accent-color: var(--aurora-green-bright);
}

.admin-auth__panel {
  border: 0;
  border-radius: 0;
  background: #0d1220;
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(45, 212, 191, 0.48),
    0 30px 90px rgba(0, 0, 0, 0.5);
  clip-path: var(--ragged-panel);
}

.admin-auth__panel::before {
  border-radius: 0;
  background: linear-gradient(90deg, var(--aurora-green), var(--aurora-violet), var(--aurora-teal));
}

.admin-auth__visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(63, 221, 179, 0.15), transparent 14rem),
    radial-gradient(circle at 80% 14%, rgba(157, 127, 232, 0.14), transparent 12rem),
    linear-gradient(145deg, #0f1526, #0d1220 54%, #102326);
}

.admin-auth__visual::before {
  border-color: rgba(45, 212, 191, 0.5);
  border-radius: 0;
  color: var(--aurora-green-bright);
}

.admin-auth__visual::after {
  border-color: rgba(157, 127, 232, 0.24);
}

.admin-auth__visual-card {
  border-color: rgba(45, 212, 191, 0.36);
  border-radius: 0;
  background: rgba(5, 7, 18, 0.44);
}

.admin-auth__form {
  background:
    radial-gradient(circle at 80% 0, rgba(157, 127, 232, 0.08), transparent 13rem),
    linear-gradient(180deg, #141b2e, #0d1220);
  color: var(--aurora-text);
}

.admin-auth .admin-field label,
.admin-auth .admin-checkbox {
  color: #d9e2ee;
}

.sprite-library__item:hover,
.sprite-option:hover,
.sprite-option:has(input:checked) {
  border-color: transparent;
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(157, 127, 232, 0.62),
    0 0 22px rgba(157, 127, 232, 0.18),
    8px 8px 0 #000;
}

.uploaded-arena,
.uploaded-arena--empty {
  border-radius: 0;
  background: #0a0e1a;
}

.support-strip {
  background:
    radial-gradient(circle at 82% 18%, rgba(157, 127, 232, 0.12), transparent 22rem),
    linear-gradient(180deg, #10182c 0%, #0a0e1a 100%);
}

.support-strip__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.support-page {
  overflow: hidden;
}

.support-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 92px;
  border-bottom: 4px solid rgba(45, 212, 191, 0.42);
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.96), rgba(20, 27, 46, 0.8)),
    linear-gradient(115deg, rgba(63, 221, 179, 0.14), transparent 28%),
    linear-gradient(128deg, transparent 38%, rgba(157, 127, 232, 0.14) 54%, rgba(45, 212, 191, 0.1) 70%, transparent 84%),
    #0a0e1a;
}

.support-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 64px solid rgba(45, 212, 191, 0.08);
  transform: rotate(45deg);
}

.support-hero__copy,
.support-terminal {
  position: relative;
  z-index: 2;
}

.support-hero h1 {
  margin: 0;
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.88;
  text-shadow:
    0 3px 0 #050712,
    5px 7px 0 rgba(0, 0, 0, 0.72);
}

.support-hero h1 > span,
.support-hero h1 > em {
  display: block;
}

.support-hero h1 > em {
  color: var(--aurora-green-bright);
  font-style: normal;
}

.support-hero__copy > p:not(.pixel-kicker),
.support-terminal__status small {
  max-width: 590px;
  color: var(--aurora-muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.support-terminal {
  min-width: 0;
  border: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(63, 221, 179, 0.1), transparent 11rem),
    linear-gradient(180deg, #141b2e 0%, #0d1220 100%);
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(45, 212, 191, 0.45),
    14px 14px 0 rgba(0, 0, 0, 0.72);
  clip-path: var(--ragged-panel);
}

.support-terminal__bar,
.support-terminal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(45, 212, 191, 0.26);
}

.support-terminal__bar {
  grid-template-columns: 1fr auto;
  padding: 14px 16px;
  background: #080c17;
  color: #a9b4ca;
  font: 900 0.78rem/1 var(--hud-font);
  text-transform: uppercase;
}

.support-terminal__bar b {
  color: var(--aurora-green-bright);
}

.support-terminal__screen {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 0.72fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(ellipse at 26% 72%, rgba(63, 221, 179, 0.2), transparent 28%),
    linear-gradient(#10182d 0 58%, #07101e 58%);
}

.support-terminal__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, #fff 0 1px, transparent 1px 7px);
}

.support-terminal__boss {
  position: relative;
  z-index: 2;
  width: min(280px, 100%);
  justify-self: center;
  filter: drop-shadow(0 22px 10px rgba(0, 0, 0, 0.7));
}

.support-terminal__status {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.support-terminal__status span,
.support-terminal__stats span,
.support-pact article > span,
.support-unlocks small {
  color: #a9b4ca;
  font: 900 0.72rem/1 var(--hud-font);
  text-transform: uppercase;
}

.support-terminal__status strong {
  color: var(--aurora-green-bright);
  font-family: var(--display-font);
  font-size: 3.4rem;
  line-height: 0.95;
  text-shadow: 0 3px 0 #050712;
}

.support-terminal__stats > div {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #0d1220;
}

.support-terminal__stats strong {
  color: var(--aurora-text);
  font: 900 1rem/1 var(--hud-font);
  text-transform: uppercase;
}

.support-pact,
.support-unlocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: #0d1220;
}

.support-pact article,
.support-unlocks > div {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 14%, rgba(63, 221, 179, 0.08), transparent 12rem),
    linear-gradient(180deg, #141b2e 0%, #0d1220 100%);
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(45, 212, 191, 0.28),
    8px 8px 0 rgba(0, 0, 0, 0.62);
  clip-path: var(--ragged-panel);
}

.support-pact h2,
.support-unlocks strong {
  margin: 0;
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: 2.2rem;
  line-height: 1;
}

.support-pact p {
  margin: 0;
  color: var(--aurora-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.support-commission {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  background:
    radial-gradient(circle at 82% 32%, rgba(157, 127, 232, 0.16), transparent 25rem),
    linear-gradient(180deg, #10182c, #0a0e1a);
}

.support-commission h2 {
  margin: 0 0 20px;
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.92;
  text-shadow: 0 3px 0 #050712;
}

.support-commission h2 em {
  color: #b9a6ff;
  font-style: normal;
}

.support-commission__copy > p:not(.pixel-kicker) {
  max-width: 590px;
  color: var(--aurora-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.support-commission__perks {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  color: var(--aurora-text);
  list-style: none;
}

.support-commission__perks li::before {
  margin-right: 10px;
  color: var(--aurora-green-bright);
  content: "◆";
}

.support-commission__card {
  overflow: hidden;
  background: linear-gradient(180deg, #16172b, #0d1220);
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(157, 127, 232, 0.5),
    14px 14px 0 rgba(0, 0, 0, 0.68);
  clip-path: var(--ragged-panel);
}

.support-commission__card-bar,
.support-commission__card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  background: #090d18;
  color: #b9a6ff;
  font: 900 0.75rem/1 var(--hud-font);
  text-transform: uppercase;
}

.support-commission__card-bar b { color: var(--aurora-green-bright); }

.support-commission__card-screen {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) 1fr;
  align-items: end;
  min-height: 340px;
  gap: 20px;
  padding: 26px;
  background:
    radial-gradient(ellipse at 32% 70%, rgba(157, 127, 232, 0.26), transparent 30%),
    linear-gradient(#111b30 0 58%, #080d18 58%);
}

.support-commission__silhouette {
  width: min(250px, 100%);
  height: 280px;
  justify-self: center;
  filter: hue-rotate(35deg) drop-shadow(0 22px 12px rgba(0, 0, 0, 0.7));
}

.support-commission__card-screen > div:last-child {
  display: grid;
  align-content: center;
  gap: 12px;
}

.support-commission__card-screen span,
.support-commission__card-screen small {
  color: #a9b4ca;
  font: 900 0.75rem/1.4 var(--hud-font);
  text-transform: uppercase;
}

.support-commission__card-screen strong {
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: 2.1rem;
  line-height: 0.95;
}

.support-commission__card-footer {
  justify-content: space-around;
  color: #a9b4ca;
  font-size: 0.64rem;
}

.support-faq {
  background:
    radial-gradient(circle at 12% 24%, rgba(157, 127, 232, 0.12), transparent 26rem),
    #0a0e1a;
}

.support-unlocks {
  padding: 0;
  background: transparent;
}

.support-unlocks > div {
  min-height: 190px;
}

.support-unlocks > div > span {
  color: var(--aurora-green-bright);
  font-size: 2rem;
}

.support-final-cta {
  border-top: 4px solid rgba(45, 212, 191, 0.42);
}

.support-wall {
  background:
    radial-gradient(circle at 78% 20%, rgba(63, 221, 179, 0.12), transparent 24rem),
    linear-gradient(180deg, #10182c 0%, #0a0e1a 100%);
}

.support-wall__list {
  display: grid;
  width: min(980px, 100%);
  gap: 12px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.support-wall__list li,
.support-wall__empty {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(63, 221, 179, 0.1), rgba(157, 127, 232, 0.08)),
    #0d1220;
  box-shadow:
    0 0 0 2px #050712,
    0 0 0 4px rgba(45, 212, 191, 0.24),
    6px 6px 0 rgba(0, 0, 0, 0.56);
  clip-path: var(--slash-panel);
}

.support-panel--commission {
  position: relative;
  grid-column: 1 / -1;
  border-color: rgba(157, 127, 232, 0.56);
  background:
    radial-gradient(circle at 88% 14%, rgba(157, 127, 232, 0.2), transparent 13rem),
    linear-gradient(180deg, #17182e 0%, #0d1220 100%);
}

.support-panel--commission-active {
  background:
    radial-gradient(circle at 84% 20%, rgba(63, 221, 179, 0.16), transparent 14rem),
    linear-gradient(180deg, #142234 0%, #0d1220 100%);
}

.commission-status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--aurora-green-bright);
  font: 900 0.76rem/1 var(--hud-font);
  text-transform: uppercase;
}

.commission-status-line i,
.commission-workspace__privacy i {
  width: 8px;
  height: 8px;
  background: var(--aurora-green-bright);
  box-shadow: 0 0 10px var(--aurora-green-bright);
}

.support-panel__perks {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--aurora-muted);
  font-size: 0.9rem;
  list-style: none;
}

.support-panel__perks li::before {
  margin-right: 8px;
  color: var(--aurora-green-bright);
  content: "◆";
}

.support-panel__link {
  color: var(--aurora-green-bright);
  font: 900 0.76rem/1 var(--hud-font);
  text-transform: uppercase;
}

.commission-page {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.commission-thread {
  display: grid;
  gap: 24px;
}

.commission-workspace {
  overflow: hidden;
  border: 1px solid rgba(90, 211, 205, 0.32);
  background:
    radial-gradient(circle at 82% 8%, rgba(157, 127, 232, 0.12), transparent 21rem),
    linear-gradient(180deg, #111a2c, #0b1120);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.commission-workspace__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px 22px;
  border-bottom: 1px solid rgba(90, 211, 205, 0.25);
  background: rgba(5, 10, 20, 0.42);
}

.commission-workspace__header span,
.commission-workspace__privacy {
  color: #9eabc3;
  font: 900 0.7rem/1 var(--hud-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commission-workspace__header h2 {
  margin: 8px 0 0;
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.commission-workspace__privacy {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--aurora-green-bright);
  white-space: nowrap;
}

.commission-workspace__intro {
  margin: 0;
  padding: 20px 30px;
  color: var(--aurora-muted);
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.commission-thread__messages {
  display: grid;
  gap: 22px;
  min-height: 240px;
  padding: 28px 30px;
}

.commission-message {
  display: grid;
  gap: 8px;
  max-width: min(720px, 86%);
}

.commission-message--customer {
  justify-self: end;
  text-align: right;
}

.commission-message__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #8390a8;
  font-size: 0.78rem;
}

.commission-message--customer .commission-message__meta { justify-content: flex-end; }

.commission-message__meta strong {
  color: var(--aurora-text);
  font: 900 0.76rem/1 var(--hud-font);
  text-transform: uppercase;
}

.commission-message__meta time { color: #7b879d; }

.commission-message__bubble {
  padding: 16px 18px;
  color: var(--aurora-text);
  background: #152137;
  border: 1px solid rgba(143, 160, 194, 0.2);
  border-radius: 3px 14px 14px 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.commission-message--customer .commission-message__bubble {
  color: #08131b;
  background: linear-gradient(135deg, #62e4c0, #42c8bc);
  border-color: transparent;
  border-radius: 14px 3px 14px 14px;
}

.commission-message p {
  margin: 0;
  white-space: pre-wrap;
}

.commission-message__attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.commission-message__attachments a {
  display: grid;
  gap: 6px;
  width: 112px;
  color: inherit;
  font-size: 0.72rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.commission-message__attachments img {
  width: 112px;
  height: 76px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.commission-message-form {
  display: grid;
  gap: 14px;
  padding: 24px 30px 28px;
  background: rgba(3, 8, 17, 0.58);
  border-top: 1px solid rgba(90, 211, 205, 0.25);
}

.commission-message-form__prompt {
  color: #9eabc3;
  font: 900 0.78rem/1 var(--hud-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commission-message-form textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 112px;
  padding: 16px 18px;
  color: var(--aurora-text);
  font: inherit;
  line-height: 1.5;
  resize: vertical;
  background: #0a1120;
  border: 1px solid rgba(97, 126, 174, 0.48);
  border-radius: 8px;
}

.commission-message-form textarea:focus {
  outline: 2px solid rgba(83, 222, 191, 0.46);
  border-color: var(--aurora-green-bright);
}

.commission-message-form__actions,
.commission-attachments-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.commission-upload {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #c4d0e4;
  font: 900 0.74rem/1 var(--hud-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px dashed rgba(126, 147, 188, 0.62);
  border-radius: 6px;
}

.commission-upload:hover { border-color: var(--aurora-green-bright); color: var(--aurora-green-bright); }
.commission-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.commission-attachments-selected {
  align-items: flex-start;
  color: #aab5c7;
  font-size: 0.82rem;
}

.commission-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--aurora-muted) !important;
  font: 700 0.82rem/1.45 Inter, ui-sans-serif, system-ui, sans-serif !important;
  text-transform: none !important;
}

@media (max-width: 720px) {
  .commission-page {
    width: min(100% - 32px, 980px);
  }

  .commission-message,
  .commission-thread__message {
    max-width: 100%;
  }

  .commission-workspace__header,
  .commission-message-form__actions,
  .commission-attachments-selected {
    align-items: flex-start;
    flex-direction: column;
  }

  .commission-workspace__header,
  .commission-workspace__intro,
  .commission-thread__messages,
  .commission-message-form {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.support-wall__list li > span {
  color: var(--aurora-green-bright);
  font: 900 1rem/1 var(--hud-font);
}

 .admin-commission-thread__header {
  align-items: center;
  margin-bottom: 16px;
}

.admin-commission-thread__header > span,
.admin-commission-thread__eyebrow {
  margin: 0;
  color: var(--admin-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-commission-thread__eyebrow {
  margin-bottom: 7px;
  color: var(--admin-gold);
}

.admin-commission-thread {
  display: grid;
  gap: 18px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(108, 120, 148, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 0, rgba(87, 199, 165, 0.09), transparent 19rem),
    #121722;
}

.admin-commission-message {
  display: grid;
  gap: 7px;
  max-width: min(720px, 86%);
}

.admin-commission-message--admin {
  justify-self: end;
  text-align: right;
}

.admin-commission-message__meta {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--admin-muted);
  font-size: 12px;
}

.admin-commission-message--admin .admin-commission-message__meta {
  justify-content: flex-end;
}

.admin-commission-message__meta strong {
  color: #fff8ec;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-commission-message__bubble {
  padding: 13px 15px;
  color: #e7e9ee;
  line-height: 1.48;
  border: 1px solid rgba(130, 147, 180, 0.3);
  border-radius: 3px 12px 12px;
  background: #1d293e;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.admin-commission-message--admin .admin-commission-message__bubble {
  color: #102018;
  border-color: transparent;
  border-radius: 12px 3px 12px 12px;
  background: linear-gradient(135deg, #7ad5b1, #4bbd9b);
}

.admin-commission-message__bubble p {
  margin: 0;
  white-space: pre-wrap;
}

.admin-commission-message__attachments {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.admin-commission-message__attachments img {
  display: block;
  width: min(100%, 440px);
  max-height: 420px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(4, 8, 15, 0.5);
}

.admin-commission-reply {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--admin-line-soft);
}

.admin-commission-reply textarea {
  width: 100%;
  min-height: 105px;
  resize: vertical;
  border: 1px solid #343846;
  border-radius: 8px;
  padding: 12px 13px;
  color: #f4efe4;
  background: rgba(16, 19, 26, 0.94);
  font: inherit;
}

.admin-commission-reply textarea:focus {
  outline: none;
  border-color: var(--admin-gold);
  box-shadow: 0 0 0 3px rgba(245, 184, 89, 0.16);
}

@media (max-width: 720px) {
  .admin-commission-thread__header > span {
    display: none;
  }

  .admin-commission-thread {
    padding: 16px;
  }

  .admin-commission-message {
    max-width: 100%;
  }
}

.support-wall__list strong,
.support-wall__empty strong {
  color: var(--aurora-text);
  font-family: var(--display-font);
  font-size: 1.8rem;
  line-height: 1;
}

.support-wall__list small,
.support-wall__empty p {
  margin: 0;
  color: var(--aurora-muted);
  font: 900 0.78rem/1 var(--hud-font);
  text-transform: uppercase;
}

.support-wall__empty {
  width: min(760px, 100%);
  grid-template-columns: 1fr;
  margin: 34px auto 0;
  text-align: center;
}

@keyframes rails-aurora-sweep {
  0% {
    transform: translateX(-8%) rotate(-9deg);
  }

  50% {
    transform: translateX(8%) rotate(-9deg);
  }

  100% {
    transform: translateX(-8%) rotate(-9deg);
  }
}

@media (max-width: 720px) {
  .hero-section h1 {
    font-size: 2.9rem;
    letter-spacing: 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 3rem;
  }

  .admin-header h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1000px) {
  .support-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .support-hero__copy {
    max-width: 760px;
    justify-self: center;
    text-align: center;
  }

  .support-hero__copy > p:not(.pixel-kicker) {
    margin-inline: auto;
  }

  .support-pact,
  .support-unlocks {
    grid-template-columns: 1fr;
  }

  .support-commission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .support-hero {
    gap: 42px;
    padding-inline: 16px;
  }

  .support-hero h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
  }

  .support-terminal__screen,
  .support-terminal__stats {
    grid-template-columns: 1fr;
  }

  .support-terminal__screen {
    min-height: auto;
    padding: 28px 20px;
  }

  .support-terminal__boss {
    width: min(230px, 74vw);
  }

  .support-terminal__status {
    text-align: center;
  }

  .support-terminal__status strong {
    font-size: 2.7rem;
  }

  .support-strip__actions .pixel-button,
  .final-cta__actions .pixel-button,
  .support-hero .pixel-button {
    width: 100%;
  }

  .support-wall__list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .support-wall__list small {
    grid-column: 2;
  }
}

/* Shared product logo supplied by the brand owner. */
.marketing-brand img {
  display: block;
  width: 156px;
  height: auto;
}

.site-mark__logo {
  display: block;
  width: 144px;
  height: auto;
}

@media (max-width: 720px) {
  .marketing-brand img {
    width: 124px;
  }
}
