:root {
  --ink: #170704;
  --ink-soft: #3b211a;
  --paper: #fff0c2;
  --paper-deep: #f0cf7b;
  --cream: #fff8dc;
  --red: #c70e20;
  --red-bright: #ec1d2f;
  --red-dark: #820711;
  --gold: #ffd640;
  --gold-dark: #d89b00;
  --jade: #12664a;
  --muted: #6d5547;
  --line: rgba(23, 7, 4, 0.24);
  --poster-shadow: 10px 10px 0 var(--ink);
  --display-font: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body-font: Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
  font-family: var(--body-font);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--red-dark);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgb(255 214 64 / 22%), transparent 26rem),
    linear-gradient(rgb(23 7 4 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(23 7 4 / 3%) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

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

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

button,
select,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 4px solid var(--gold);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 5%) 50%, transparent 50%) 0 0 / 18px 18px,
    var(--red-dark);
  box-shadow: 0 5px 0 var(--ink);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  font-family: var(--display-font);
  font-size: 1.4rem;
  letter-spacing: 0.065em;
}

.brand__seal {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 1.45rem;
  transform: rotate(-8deg);
}

.brand__wordmark {
  text-shadow: 2px 2px 0 var(--ink);
}

.brand__flag {
  font-family: var(--body-font);
  font-size: 1.5rem;
  transform: rotate(7deg);
}

.site-nav,
.account {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav > a,
.link-button {
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 2px solid transparent;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav > a {
  display: inline-flex;
}

.site-nav > a:hover,
.link-button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-login {
  border-color: var(--gold) !important;
  color: var(--ink) !important;
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.nav-login:hover {
  color: var(--ink) !important;
  background: var(--cream);
  transform: rotate(1deg);
}

.account form {
  margin: 0;
}

.account__name {
  font-weight: 900;
}

.link-button {
  display: inline-flex;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

main {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 3px solid var(--ink);
  font-weight: 950;
  letter-spacing: 0.025em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button--primary,
.button--gold {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--ink);
}

.button--primary:hover,
.button--gold:hover {
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.button--cream,
.button--ghost {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}

.button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  filter: grayscale(0.55);
  transform: none;
}

.button:focus-visible,
.guild-link:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible,
.link-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--gold);
}

.flag-bunting {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1120px, 92%);
  align-items: flex-start;
  justify-content: space-between;
  height: 62px;
  margin: 20px auto -34px;
  border-top: 4px solid var(--ink);
  transform: rotate(-0.8deg);
}

.flag-bunting span {
  display: grid;
  width: 58px;
  height: 48px;
  place-items: center;
  margin-top: -2px;
  border: 2px solid var(--ink);
  color: var(--gold);
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.55rem;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.flag-bunting span:nth-child(even) {
  width: 44px;
  color: var(--red);
  background: var(--gold);
  transform: translateY(8px) rotate(5deg);
}

.flag-bunting span:nth-child(3n) {
  transform: translateY(3px) rotate(-4deg);
}

.campaign-hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  overflow: hidden;
  border: 5px solid var(--ink);
  color: var(--cream);
  background: var(--red);
  box-shadow: var(--poster-shadow);
}

.campaign-hero::before {
  position: absolute;
  z-index: 2;
  inset: 12px;
  border: 2px solid rgb(255 214 64 / 65%);
  content: "";
  pointer-events: none;
}

.campaign-hero__art {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.campaign-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(92 0 9 / 98%) 0%, rgb(125 3 15 / 92%) 32%, rgb(130 7 17 / 30%) 58%, transparent 78%),
    linear-gradient(0deg, rgb(23 7 4 / 62%), transparent 42%);
}

.campaign-hero__copy {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(61%, 760px);
  min-height: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 88px);
}

.campaign-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.campaign-kicker {
  width: fit-content;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #2bdc7d;
  box-shadow: 0 0 0 3px rgb(43 220 125 / 24%);
}

.status-dot--offline {
  background: var(--red-bright);
  box-shadow: 0 0 0 3px rgb(236 29 47 / 24%);
}

.campaign-overline {
  margin: 18px 0 12px;
  color: var(--gold);
  font-size: clamp(0.75rem, 1.3vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.campaign-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(4.1rem, 7.8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--ink);
}

.campaign-title__small,
.campaign-title__large {
  display: block;
}

.campaign-title__mobile-line {
  display: inline;
}

.campaign-title__small {
  margin-bottom: 0.12em;
  color: var(--gold);
  font-size: 0.48em;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.campaign-title__large {
  color: var(--cream);
  line-height: 1.06;
}

.campaign-hero__lead {
  max-width: 660px;
  margin: 27px 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 2px 2px 0 rgb(23 7 4 / 70%);
}

.campaign-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.campaign-fineprint {
  margin: 20px 0 0;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.sticker {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: var(--display-font);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
  animation: sticker-bob 2.8s ease-in-out infinite alternate;
}

.sticker--credits {
  top: 74px;
  right: 34px;
  border-radius: 50%;
}

.sticker--online {
  right: 46px;
  bottom: 40px;
  width: 136px;
  height: 92px;
  color: var(--cream);
  background: var(--red);
  transform: rotate(-7deg);
  animation-delay: -1.4s;
}

@keyframes sticker-bob {
  to { translate: 0 -7px; }
}

.news-ticker {
  position: relative;
  overflow: hidden;
  margin: 22px 0 0;
  border: 4px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 7px 7px 0 var(--ink);
}

.news-ticker span {
  display: block;
  width: max-content;
  padding: 13px 0;
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  white-space: nowrap;
  animation: ticker-roll 22s linear infinite;
}

@keyframes ticker-roll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.live-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 96px;
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--red-dark);
}

.live-strip > div {
  display: grid;
  min-height: 112px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border-right: 2px solid var(--ink);
  color: var(--cream);
  background: var(--red-dark);
  text-align: center;
}

.live-strip > div:nth-child(even) {
  color: var(--ink);
  background: var(--paper-deep);
}

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

.live-strip span {
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.live-strip strong {
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.poster-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 8vw, 100px);
  align-items: end;
  margin-bottom: 42px;
  padding: 0 clamp(4px, 3vw, 36px);
}

.poster-intro > *,
.feature-grid > *,
.poster-cta > *,
.manifest-steps > *,
.command-grid > *,
.dashboard-shell > * {
  min-width: 0;
}

.poster-intro .eyebrow,
.manifest-page .eyebrow,
.poster-cta .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.poster-intro h2,
.poster-cta h2,
.manifest-page h1,
.manifest-page h2,
.narrow-page h1 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-transform: uppercase;
}

.poster-intro h2 {
  font-size: clamp(3rem, 6.5vw, 6.3rem);
}

.poster-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 100px;
}

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: 4px solid var(--ink);
  box-shadow: 9px 9px 0 var(--ink);
}

.feature-card::after {
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border: 35px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
}

.feature-card--gold {
  color: var(--ink);
  background: var(--gold);
  transform: rotate(-0.5deg);
}

.feature-card--red {
  color: var(--cream);
  background: var(--red);
  transform: rotate(0.55deg);
}

.feature-card--paper {
  color: var(--ink);
  background: var(--cream);
  transform: rotate(0.35deg);
}

.feature-card--ink {
  color: var(--cream);
  background: var(--ink);
  transform: rotate(-0.4deg);
}

.feature-card__number {
  font-family: var(--display-font);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.feature-card__icon {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.8rem;
  filter: drop-shadow(3px 3px 0 rgb(23 7 4 / 35%));
}

.feature-card h2 {
  max-width: 520px;
  margin: 68px 0 16px;
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 600px;
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.poster-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  overflow: hidden;
  margin-bottom: 100px;
  border: 5px solid var(--ink);
  color: var(--cream);
  background: var(--red-dark);
  box-shadow: var(--poster-shadow);
}

.poster-cta__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
}

.poster-cta .eyebrow {
  color: var(--gold);
}

.poster-cta h2 {
  font-size: clamp(2.7rem, 5.3vw, 5.3rem);
}

.poster-cta p:not(.eyebrow) {
  margin: 24px 0;
  font-weight: 700;
  line-height: 1.6;
}

.poster-cta > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 63% center;
  border-left: 5px solid var(--ink);
}

.manifest-page {
  padding: 70px 0 100px;
}

.manifest-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 90px);
  border: 5px solid var(--ink);
  color: var(--cream);
  background:
    repeating-conic-gradient(from -12deg at 88% 100%, rgb(255 214 64 / 22%) 0 7deg, transparent 7deg 15deg),
    var(--red);
  box-shadow: var(--poster-shadow);
}

.manifest-hero::after {
  position: absolute;
  right: 5%;
  bottom: -0.42em;
  color: var(--gold);
  content: "★";
  font-size: clamp(12rem, 31vw, 30rem);
  opacity: 0.15;
  pointer-events: none;
}

.manifest-hero .eyebrow {
  color: var(--gold);
}

.manifest-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  font-size: clamp(3.4rem, 7.5vw, 8rem);
  text-shadow: 5px 5px 0 var(--ink);
}

.manifest-hero h1 span {
  color: var(--gold);
}

.manifest-hero > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 32px 0 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.65;
}

.manifest-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 56px 0 90px;
  border: 4px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

.manifest-steps article {
  min-height: 280px;
  padding: 34px;
  border-right: 3px solid var(--ink);
  background: var(--cream);
}

.manifest-steps article:nth-child(2) {
  background: var(--gold);
}

.manifest-steps article:last-child {
  border-right: 0;
}

.manifest-steps strong {
  color: var(--red);
  font-family: var(--display-font);
  font-size: 1.35rem;
}

.manifest-steps h2 {
  margin: 66px 0 14px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.manifest-steps p {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.command-poster {
  margin-bottom: 90px;
  padding: clamp(30px, 5vw, 60px);
  border: 5px solid var(--ink);
  background: var(--paper-deep);
  box-shadow: var(--poster-shadow);
}

.command-poster__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 4px solid var(--ink);
}

.command-poster__heading h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
}

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

.command-grid article {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.command-grid article:nth-child(4n + 2),
.command-grid article:nth-child(4n + 3) {
  background: var(--gold);
}

.command-grid code {
  color: var(--red-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.98rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.command-grid p {
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.manifest-final {
  padding: clamp(38px, 7vw, 90px);
  border: 5px solid var(--ink);
  color: var(--cream);
  background: var(--red-dark);
  box-shadow: var(--poster-shadow);
  text-align: center;
}

.manifest-final .eyebrow {
  justify-content: center;
  color: var(--gold);
}

.manifest-final h2 {
  max-width: 930px;
  margin: 0 auto 34px;
  font-size: clamp(3rem, 6.3vw, 6.5rem);
}

.manifest-final .button {
  margin: 6px;
}

.narrow-page {
  min-height: calc(100vh - 180px);
  padding: clamp(80px, 14vh, 150px) 0;
}

.narrow-page h1 {
  max-width: 950px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.narrow-page > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
  min-height: calc(100vh - 180px);
  padding: 52px 0 90px;
}

.guild-sidebar,
.settings-card {
  border: 4px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
}

.guild-sidebar {
  align-self: start;
  padding: 13px;
}

.guild-sidebar__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -13px -13px 13px;
  padding: 18px;
  color: var(--cream);
  background: var(--red-dark);
}

.guild-sidebar__heading .eyebrow {
  margin: 0;
  color: var(--gold);
}

.guild-sidebar__heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  font-weight: 950;
}

.guild-link {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border: 2px solid transparent;
  font-weight: 800;
}

.guild-link:hover,
.guild-link--active {
  border-color: var(--ink);
  background: var(--paper);
}

.guild-link--active {
  box-shadow: inset 5px 0 var(--red);
}

.guild-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
}

.settings-card {
  align-self: start;
  padding: clamp(24px, 5vw, 54px);
}

.settings-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--ink);
}

.settings-card h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.pill {
  flex: 0 0 auto;
  padding: 9px 11px;
  border: 3px solid currentColor;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.pill--active {
  color: var(--jade);
  background: rgb(18 102 74 / 9%);
}

.pill--paused {
  color: var(--red-dark);
  background: rgb(199 14 32 / 9%);
}

.settings-card form {
  display: grid;
  gap: 32px;
  margin-top: 30px;
}

fieldset {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 24px;
  border: 3px solid var(--ink);
  background: #fffdf1;
}

legend {
  padding: 0 10px;
  color: var(--red-dark);
  background: var(--cream);
  font-family: var(--display-font);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 50px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: white;
}

.switch-row,
.check-row {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 16px;
}

.role-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
}

.notice {
  margin-top: 24px;
  padding: 14px 16px;
  border: 3px solid;
  font-weight: 800;
}

.notice--success {
  border-color: var(--jade);
  color: #0d583d;
  background: rgb(18 102 74 / 9%);
}

.empty-state {
  padding: 18px;
  border: 2px dashed var(--ink);
  color: var(--muted);
  line-height: 1.5;
}

.empty-panel {
  align-self: start;
}

.empty-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(18px, 4vw, 64px);
  border-top: 4px solid var(--gold);
  color: var(--cream);
  background: var(--red-dark);
  font-size: 0.8rem;
  line-height: 1.45;
}

.site-footer strong {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

@media (max-width: 1020px) {
  .campaign-hero__copy {
    width: 68%;
    padding-inline: clamp(34px, 5vw, 64px);
  }

  .campaign-hero__art {
    object-position: 56% center;
  }

  .poster-cta {
    grid-template-columns: 1fr;
  }

  .poster-cta > img {
    min-height: 380px;
    border-top: 5px solid var(--ink);
    border-left: 0;
  }

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

@media (max-width: 860px) {
  .campaign-hero {
    min-height: 720px;
  }

  .campaign-hero__copy {
    width: 100%;
    min-height: 720px;
    padding-right: 25%;
  }

  .campaign-hero__art {
    object-position: 65% center;
  }

  .campaign-hero__shade {
    background:
      linear-gradient(90deg, rgb(92 0 9 / 99%) 0%, rgb(125 3 15 / 92%) 49%, rgb(130 7 17 / 42%) 78%, transparent),
      linear-gradient(0deg, rgb(23 7 4 / 70%), transparent 55%);
  }

  .sticker--credits {
    top: 36px;
    right: 24px;
  }

  .sticker--online {
    right: 24px;
    bottom: 28px;
  }

  .poster-intro {
    grid-template-columns: 1fr;
  }

  .poster-intro .eyebrow {
    margin-bottom: -12px;
  }

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

  .manifest-steps {
    grid-template-columns: 1fr;
  }

  .manifest-steps article {
    min-height: 0;
    border-right: 0;
    border-bottom: 3px solid var(--ink);
  }

  .manifest-steps article:last-child {
    border-bottom: 0;
  }

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

  .guild-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }

  .guild-sidebar__heading {
    min-width: max-content;
    margin: -13px 0 -13px -13px;
  }

  .guild-link {
    min-width: max-content;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    align-items: flex-start;
    gap: 8px;
    padding-inline: 14px;
  }

  .brand {
    gap: 7px;
    font-size: 1.08rem;
  }

  .brand__seal {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .brand__wordmark {
    white-space: nowrap;
  }

  .brand__flag {
    display: none;
  }

  .site-nav {
    align-items: flex-end;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
  }

  .site-nav > a,
  .link-button {
    padding: 8px 9px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .nav-login {
    max-width: 150px;
  }

  .site-nav > a:first-child {
    display: none;
  }

  .account {
    align-items: flex-end;
    flex-direction: column;
    gap: 2px;
  }

  main {
    width: min(100% - 16px, 1320px);
  }

  .flag-bunting {
    height: 46px;
    margin-top: 16px;
    margin-bottom: -24px;
  }

  .flag-bunting span {
    width: 40px;
    height: 36px;
    font-size: 1.1rem;
  }

  .flag-bunting span:nth-child(3n),
  .flag-bunting span:nth-child(4n) {
    display: none;
  }

  .campaign-hero {
    min-height: 930px;
    border-width: 4px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .campaign-hero::before {
    inset: 7px;
  }

  .campaign-hero__copy {
    width: 100%;
    min-height: 930px;
    justify-content: flex-start;
    padding: 58px 20px 365px;
  }

  .campaign-hero__art {
    inset: auto 0 0;
    height: 350px;
    opacity: 1;
    object-fit: cover;
    object-position: 68% 43%;
  }

  .campaign-hero__shade {
    background:
      linear-gradient(180deg, rgb(104 2 13 / 100%) 0%, rgb(104 2 13 / 98%) 58%, rgb(104 2 13 / 58%) 72%, rgb(23 7 4 / 18%) 100%),
      linear-gradient(90deg, rgb(104 2 13 / 74%), transparent);
  }

  .campaign-hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    text-shadow: 4px 4px 0 var(--ink);
  }

  .campaign-title__mobile-line {
    display: block;
  }

  .campaign-title__mobile-line:first-of-type {
    padding-top: 0.08em;
  }

  .campaign-kicker {
    max-width: 90%;
    font-size: 0.66rem;
  }

  .campaign-overline {
    max-width: 92%;
  }

  .campaign-hero__actions {
    display: grid;
    width: 100%;
    margin-top: 4px;
  }

  .campaign-hero__actions .button {
    width: 100%;
  }

  .sticker {
    width: 96px;
    height: 96px;
    font-size: 1.35rem;
  }

  .sticker--credits {
    top: auto;
    right: 18px;
    bottom: 105px;
  }

  .sticker--online {
    right: 128px;
    bottom: 30px;
    width: 104px;
    height: 74px;
  }

  .live-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 72px;
  }

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

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

  .live-strip > div {
    min-width: 0;
    padding: 14px 10px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .live-strip span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .live-strip strong {
    font-size: clamp(1.55rem, 8vw, 2.3rem);
    white-space: nowrap;
  }

  .poster-intro {
    padding-inline: 4px;
  }

  .poster-intro .eyebrow {
    margin-bottom: -4px;
  }

  .poster-intro .eyebrow,
  .poster-intro h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .poster-intro h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.9rem);
  }

  .poster-intro > p:last-child {
    max-width: 100%;
  }

  .feature-card {
    min-height: 280px;
    padding: 28px;
    box-shadow: 6px 6px 0 var(--ink);
    transform: none;
  }

  .feature-card h2 {
    margin-top: 58px;
    font-size: clamp(2rem, 10.5vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .poster-cta,
  .manifest-hero,
  .command-poster,
  .manifest-final {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .poster-cta > img {
    min-height: 300px;
  }

  .manifest-page {
    padding-top: 44px;
  }

  .manifest-hero {
    padding: 34px 24px 46px;
  }

  .manifest-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .command-poster {
    padding: 24px 18px;
  }

  .command-poster__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .command-poster__heading h2 {
    max-width: 100%;
    font-size: clamp(2.3rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .command-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .manifest-final {
    padding: 42px 22px;
  }

  .manifest-final .button {
    width: 100%;
    margin: 6px 0;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .settings-card {
    padding: 22px;
  }

  .settings-card__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pill {
    align-self: flex-start;
  }

  fieldset {
    padding: 20px 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .news-ticker span {
    width: auto;
    padding-inline: 12px;
    white-space: normal;
  }
}

@media (forced-colors: active) {
  .campaign-hero,
  .manifest-hero,
  .feature-card,
  .sticker,
  .live-strip,
  .poster-cta,
  .guild-sidebar,
  .settings-card {
    background-image: none;
    box-shadow: none;
  }
}
