:root {
  color-scheme: light;
  --navy: #061d33;
  --navy-2: #0b3458;
  --blue: #1a85c8;
  --blue-light: #64c7ef;
  --gold: #f4c25e;
  --gold-light: #ffe7a3;
  --red: #c8203a;
  --paper: #f4faff;
  --white: #ffffff;
  --slate: #48536d;
  --line: rgba(6, 29, 51, 0.19);
  --display: "Anybody", sans-serif;
  --body: "Familjen Grotesk", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(0.22, 0.74, 0.2, 1);
  --spring: cubic-bezier(0.2, 1.45, 0.35, 1);
  --pad: clamp(22px, 4.6vw, 76px);
  --section: clamp(96px, 12vw, 176px);
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(26, 133, 200, 0.18);
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { touch-action: manipulation; }

::selection { background: var(--gold); color: var(--navy); }

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

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 12px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--navy);
  padding: 11px 16px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms var(--ease);
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.18;
  filter: url("#paper-noise");
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 18px var(--pad) auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 9px 10px 9px 13px;
  background: rgba(244, 250, 255, 0.97);
  border: 2px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--blue);
  border: 1.5px solid var(--navy);
  transform: rotate(-3deg);
}

.brand-mark img {
  width: 39px;
  height: 46px;
  object-fit: contain;
  object-position: center 18%;
}

.brand-name {
  font-family: var(--display);
  font-variation-settings: "wdth" 86;
  font-size: 17px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.brand-name i { color: var(--red); font-style: normal; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0 10px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.join-orbit {
  justify-self: end;
  display: inline-grid;
  grid-template-columns: auto 38px;
  align-items: center;
  min-height: 50px;
  background: var(--navy);
  border: 2px solid var(--navy);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 240ms var(--spring), box-shadow 240ms var(--ease);
}

.join-orbit span { padding: 0 14px; }
.join-orbit svg { width: 38px; height: 38px; padding: 10px; background: var(--gold); border-left: 2px solid var(--navy); }
.join-orbit svg path { fill: none; stroke: var(--navy); stroke-width: 2; }
.join-orbit:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--red); }

.menu-button {
  display: none;
  justify-self: end;
  width: 50px;
  height: 50px;
  padding: 0;
  position: relative;
  border: 2px solid var(--navy);
  border-radius: 0;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 22px;
  height: 2px;
  left: 12px;
  background: currentColor;
  transition: transform 260ms var(--ease), top 260ms var(--ease);
}

.menu-button span:first-child { top: 18px; }
.menu-button span:last-child { top: 28px; }
.menu-button[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.menu-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--red);
  color: var(--white);
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity 260ms var(--ease), visibility 0s linear 260ms;
}

.menu-drawer[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu-drawer-inner {
  min-height: 100%;
  padding: 138px var(--pad) 48px;
  display: flex;
  flex-direction: column;
}

.menu-drawer .utility-label { color: var(--white); }
.menu-drawer nav { margin-top: 24px; }

.menu-drawer nav a {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0 18px;
  border-bottom: 2px solid rgba(255,255,255,0.28);
  text-decoration: none;
  transition: padding-left 240ms var(--ease), border-color 240ms var(--ease);
}

.menu-drawer nav a:hover { padding-left: 12px; border-color: var(--gold); }
.menu-drawer nav b { font-family: var(--mono); font-size: 12px; color: var(--gold); }
.menu-drawer nav span { font-family: var(--display); font-variation-settings: "wdth" 76; font-size: clamp(36px, 8vw, 82px); font-weight: 850; line-height: 0.82; text-transform: uppercase; }
.menu-note { max-width: 520px; margin: auto 0 0; padding-top: 48px; font-size: 18px; }

.utility-label {
  margin-bottom: 20px;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.utility-label-light { color: rgba(255,255,255,0.68); }
.section-pad { padding: var(--section) var(--pad); }

.button {
  display: inline-grid;
  grid-template-columns: auto 44px;
  align-items: center;
  min-height: 56px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 240ms var(--spring), box-shadow 240ms var(--ease);
}

.button span { padding: 0 18px; }
.button i { align-self: stretch; display: grid; place-items: center; border-left: 2px solid currentColor; font-family: var(--body); font-size: 20px; font-style: normal; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--red); }
.button-ink { background: var(--navy); color: var(--white); }
.button-ink i { color: var(--navy); background: var(--gold); border-color: var(--navy); }
.button-paper { background: var(--paper); color: var(--navy); }
.button-paper i { background: var(--red); color: var(--white); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold i { background: var(--white); }

.text-link, .underlined-link {
  color: var(--navy);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link { padding: 14px 4px; }
.text-link span, .underlined-link span { display: inline-block; margin-left: 8px; transition: transform 220ms var(--spring); }
.text-link:hover span { transform: translateY(4px); }
.underlined-link { display: inline-block; padding-bottom: 4px; border-bottom: 2px solid var(--red); }
.underlined-link:hover span { transform: translate(3px, 3px); }

.hero {
  min-height: 100svh;
  padding: 118px var(--pad) 24px;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(6,29,51,0.07) 49.9% 50.1%, transparent 50.1%),
    var(--paper);
}

.hero-grid {
  min-height: calc(100svh - 142px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 2px solid var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.hero-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(300px, 42vw, 680px);
  aspect-ratio: 1;
  right: -9%;
  bottom: -37%;
  border: clamp(40px, 7vw, 100px) solid var(--blue-light);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-grid::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: radial-gradient(circle, rgba(6,29,51,0.2) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  mask-image: linear-gradient(110deg, transparent 0 58%, #000 58% 100%);
  opacity: 0.38;
}

.hero-index {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 18px;
  display: flex;
  gap: 22px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--slate);
}

.poster-copy {
  grid-column: 1 / span 7;
  align-self: center;
  padding: clamp(62px, 8vw, 124px) 0 clamp(50px, 6vw, 88px) clamp(52px, 7vw, 112px);
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 3vw, 34px);
  color: var(--slate);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span { width: 34px; height: 4px; background: var(--red); }

.poster-copy h1 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-variation-settings: "wdth" 82;
  font-weight: 880;
  letter-spacing: -0.07em;
  line-height: 0.72;
  text-transform: uppercase;
}

.poster-copy h1 span { display: block; }

.hero-small {
  margin: 0 0 clamp(15px, 2vw, 24px) 4px;
  color: var(--red);
  font-family: var(--mono);
  font-size: clamp(11px, 1.3vw, 16px);
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1;
}

.hero-loud { font-size: clamp(67px, 9.8vw, 160px); }
.hero-loud-outline { color: transparent; -webkit-text-stroke: clamp(1.5px, 0.18vw, 3px) var(--navy); }

.hero-deck {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.35;
}

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.poster-art {
  grid-column: 8 / -1;
  align-self: stretch;
  min-height: 650px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 60px 40px 86px 0;
}

.poster-shadow {
  position: absolute;
  width: min(31vw, 470px);
  aspect-ratio: 0.77;
  background: var(--navy);
  transform: rotate(5deg) translate(25px, 25px);
}

.poster-sheet {
  width: min(31vw, 470px);
  aspect-ratio: 0.77;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  border: 3px solid var(--navy);
  transform: rotate(-4deg);
  will-change: transform;
}

.poster-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.32) 1px, transparent 1.4px);
  background-size: 9px 9px;
  opacity: 0.36;
}

.poster-sheet::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -22%;
  width: 75%;
  aspect-ratio: 1;
  border: 38px solid var(--gold);
  border-radius: 50%;
}

.poster-code {
  position: absolute;
  z-index: 4;
  left: 20px;
  top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.poster-ring {
  position: absolute;
  z-index: 1;
  width: 76%;
  aspect-ratio: 1;
  top: 4%;
  right: -25%;
  border: 24px solid var(--red);
  border-radius: 50%;
}

.poster-sticker {
  position: absolute;
  z-index: 3;
  width: 84%;
  height: auto;
  left: 7%;
  top: 15%;
  filter: drop-shadow(8px 10px 0 rgba(6,29,51,0.94));
  transform: rotate(4deg);
}

.poster-call {
  position: absolute;
  z-index: 4;
  left: 24px;
  bottom: 60px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-variation-settings: "wdth" 70;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--navy);
}

.poster-footer {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
}

.poster-footer i { flex: 1; height: 1px; background: currentColor; }

.poster-burst {
  position: absolute;
  z-index: 6;
  width: clamp(96px, 9vw, 142px);
  aspect-ratio: 1;
  right: 3%;
  top: 8%;
  display: grid;
  place-items: center;
  color: var(--navy);
  transform: rotate(9deg);
  will-change: transform;
}

.poster-burst svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: var(--gold); stroke: var(--navy); stroke-width: 2; }
.poster-burst span { position: relative; z-index: 1; font-family: var(--display); font-variation-settings: "wdth" 70; font-size: clamp(15px, 1.5vw, 22px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.8; text-align: center; text-transform: uppercase; }

.poster-caption {
  position: absolute;
  right: 4%;
  bottom: 26px;
  margin: 0;
  color: var(--slate);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.poster-caption b { color: var(--navy); }

.hero-club-strip {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--navy);
  background: var(--white);
}

.hero-club-strip > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
}

.hero-club-strip > div + div { border-left: 2px solid var(--navy); }
.hero-club-strip b { font-family: var(--display); font-variation-settings: "wdth" 88; font-size: 19px; font-weight: 760; text-transform: uppercase; }
.hero-club-strip small { color: var(--slate); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.club-dot { width: 13px; height: 13px; border: 1.5px solid var(--navy); border-radius: 50%; }
.club-dot-blue { background: var(--blue); }
.club-dot-gold { background: var(--gold); }

.ticker {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-1.3deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 16px 0 14px;
  font-family: var(--display);
  font-variation-settings: "wdth" 74;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
}

.ticker-track i { color: var(--gold); font-style: normal; }

.manifesto {
  min-height: 760px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
  overflow: hidden;
}

.section-number {
  position: absolute;
  left: -0.07em;
  bottom: -0.28em;
  color: transparent;
  font-family: var(--display);
  font-variation-settings: "wdth" 130;
  font-size: clamp(340px, 48vw, 760px);
  font-weight: 900;
  line-height: 0.7;
  -webkit-text-stroke: 2px rgba(6,29,51,0.08);
  pointer-events: none;
}

.manifesto-copy { position: relative; z-index: 2; }
.manifesto-copy h2,
.clubs-copy h2,
.membership-head h2,
.system-copy h2,
.closing-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "wdth" 74;
  font-size: clamp(58px, 7.6vw, 124px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

.manifesto-copy em {
  display: block;
  color: var(--blue);
  font-variation-settings: "wdth" 110;
  font-weight: 430;
  text-transform: none;
}

.manifesto-body {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding-top: clamp(56px, 9vw, 142px);
}

.manifesto-body p { margin-bottom: 22px; color: var(--slate); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.42; }

.manifesto-stamp {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 8vw, 130px);
  bottom: 50px;
  width: clamp(190px, 19vw, 280px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 9px 9px 0 var(--red);
  text-align: center;
  transform: rotate(8deg);
}

.manifesto-stamp::before, .manifesto-stamp::after { content: ""; position: absolute; inset: 8px; border: 1.5px solid var(--navy); border-radius: inherit; }
.manifesto-stamp::after { inset: 16px; border-style: dashed; }
.manifesto-stamp span, .manifesto-stamp small { position: relative; z-index: 1; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.manifesto-stamp b { position: relative; z-index: 1; max-width: 82%; font-family: var(--display); font-variation-settings: "wdth" 76; font-size: clamp(27px, 2.8vw, 42px); font-weight: 850; line-height: 0.82; text-transform: uppercase; }

.matchday {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.matchday::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.19) 1px, transparent 1.4px);
  background-size: 13px 13px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  opacity: 0.3;
}

.matchday-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 60px;
  align-items: end;
  padding-bottom: 70px;
}

.matchday-head h2,
.life-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "wdth" 72;
  font-size: clamp(65px, 9vw, 150px);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 0.76;
  text-transform: uppercase;
}

.matchday-intro { max-width: 500px; margin: 0; color: rgba(255,255,255,0.68); font-size: clamp(18px, 1.7vw, 24px); }

.matchday-line {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  margin: 0;
  padding: 0 var(--pad) 52px;
  counter-reset: stop;
}

.matchday-line::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 36px;
  height: 3px;
  background: var(--gold);
}

.match-stop {
  min-height: 520px;
  position: relative;
  counter-increment: stop;
  padding: 0 clamp(22px, 2.8vw, 44px) 40px 0;
  border-right: 1px solid rgba(255,255,255,0.16);
}

.match-stop + .match-stop { padding-left: clamp(22px, 2.8vw, 44px); }
.match-stop:last-child { border-right: 0; }

.match-stop::before {
  content: counter(stop, decimal-leading-zero);
  position: relative;
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
}

.match-time {
  position: absolute;
  right: 16px;
  top: 0;
  color: var(--blue-light);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.match-figure { height: 158px; margin: 36px 0 24px; position: relative; }

.match-figure-tent i:first-child { position: absolute; left: 4%; top: 35px; width: 80%; height: 6px; background: var(--blue); transform: skew(-34deg); }
.match-figure-tent i:nth-child(2) { position: absolute; left: 14%; top: 40px; width: 4px; height: 95px; background: var(--white); box-shadow: 132px 0 0 var(--white); }
.match-figure-tent i:last-child { position: absolute; left: 30%; top: 18px; width: 0; height: 0; border-left: 54px solid transparent; border-right: 54px solid transparent; border-bottom: 58px solid var(--red); }

.match-figure-grill i:first-child { position: absolute; left: 17%; top: 58px; width: 118px; height: 52px; border: 5px solid var(--white); border-radius: 0 0 60px 60px; border-top-color: var(--gold); }
.match-figure-grill i:nth-child(2) { position: absolute; left: calc(17% + 24px); top: 105px; width: 5px; height: 42px; background: var(--white); box-shadow: 62px 0 0 var(--white); }
.match-figure-grill i:last-child { position: absolute; left: calc(17% + 34px); top: 5px; width: 12px; height: 48px; border: 4px solid var(--blue-light); border-width: 0 4px; transform: skew(-12deg); box-shadow: 30px 10px 0 -3px var(--red), 58px -3px 0 -3px var(--gold); }

.match-figure-game i:first-child { position: absolute; left: 10%; top: 30px; width: 150px; height: 100px; border: 4px solid var(--blue-light); transform: rotate(-5deg); }
.match-figure-game i:first-child::before, .match-figure-game i:first-child::after { content: ""; position: absolute; width: 24px; height: 24px; background: var(--gold); border-radius: 50%; }
.match-figure-game i:first-child::before { left: 24px; top: 18px; box-shadow: 65px 33px 0 var(--red); }
.match-figure-game i:first-child::after { right: 18px; top: 14px; box-shadow: -70px 45px 0 var(--white); }
.match-figure-game i:last-child { position: absolute; left: 46%; top: 12px; width: 7px; height: 136px; background: var(--white); transform: rotate(18deg); }

.match-figure-march i { position: absolute; bottom: 12px; width: 5px; background: var(--white); transform-origin: bottom center; }
.match-figure-march i:first-child { left: 18%; height: 120px; transform: rotate(-6deg); }
.match-figure-march i:nth-child(2) { left: 48%; height: 142px; transform: rotate(3deg); }
.match-figure-march i:last-child { left: 75%; height: 110px; transform: rotate(8deg); }
.match-figure-march i::before { content: ""; position: absolute; left: 5px; top: 0; width: 58px; height: 38px; background: var(--red); clip-path: polygon(0 0,100% 15%,80% 100%,0 82%); }
.match-figure-march i:nth-child(2)::before { background: var(--blue); }
.match-figure-march i:last-child::before { background: var(--gold); }

.match-stop h3 { margin-bottom: 18px; font-family: var(--display); font-variation-settings: "wdth" 76; font-size: clamp(31px, 3vw, 47px); font-weight: 820; letter-spacing: -0.045em; line-height: 0.88; text-transform: uppercase; }
.match-stop p:last-child { color: rgba(255,255,255,0.62); font-size: 16px; line-height: 1.5; }
.sample-note { position: relative; z-index: 2; margin: 0; padding: 0 var(--pad) 52px; color: rgba(255,255,255,0.46); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }

.clubs {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 144px);
  align-items: center;
}

.clubs-copy h2 { font-size: clamp(58px, 7vw, 112px); }
.clubs-copy > p:last-child { max-width: 500px; margin: 28px 0 0; color: var(--slate); font-size: 20px; }

.club-selector {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
  border: 3px solid var(--navy);
  box-shadow: 11px 11px 0 var(--navy);
  background: var(--white);
}

.club-selector::before { content: ""; position: absolute; z-index: -1; inset: -20px 20px 20px -20px; background: var(--red); }
.club-tabs { display: grid; grid-template-rows: 1fr 1fr; border-right: 3px solid var(--navy); }

.club-tabs button {
  min-height: 170px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background-color 200ms var(--ease), color 200ms var(--ease), padding-left 240ms var(--spring);
}

.club-tabs button + button { border-top: 3px solid var(--navy); }
.club-tabs button:hover { padding-left: 30px; }
.club-tabs button[aria-selected="true"] { background: var(--navy); color: var(--white); }
.club-tabs button span { display: block; font-family: var(--display); font-variation-settings: "wdth" 77; font-size: clamp(27px, 2.4vw, 40px); font-weight: 820; letter-spacing: -0.04em; line-height: 0.85; text-transform: uppercase; }
.club-tabs button small { display: block; margin-top: 16px; color: currentColor; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; opacity: 0.66; text-transform: uppercase; }

.club-panel {
  min-height: 500px;
  padding: clamp(30px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}

.club-panel[hidden] { display: none; }
.club-panel::after { content: ""; position: absolute; width: 280px; aspect-ratio: 1; right: -90px; bottom: -120px; border: 55px solid rgba(255,255,255,0.25); border-radius: 50%; }
.club-panel-blue { background: var(--blue); color: var(--navy); }
.club-panel-gold { background: var(--gold); color: var(--navy); }
.club-panel-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: clamp(60px, 9vw, 126px); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.club-panel-kicker { margin-bottom: 11px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.club-panel h3 { max-width: 670px; margin-bottom: 20px; font-family: var(--display); font-variation-settings: "wdth" 80; font-size: clamp(42px, 5vw, 76px); font-weight: 850; letter-spacing: -0.05em; line-height: 0.83; text-transform: uppercase; }
.club-panel > p:not(.club-panel-kicker) { max-width: 590px; margin-bottom: 42px; font-size: 18px; line-height: 1.42; }
.club-panel-footer { display: flex; align-items: baseline; gap: 16px; position: relative; z-index: 2; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.club-panel-footer b { font-size: 14px; }

.life { background: var(--red); color: var(--white); overflow: hidden; }
.life-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr); gap: 60px; align-items: end; padding-bottom: 72px; }
.life-intro .utility-label { grid-column: 1 / -1; margin-bottom: -22px; }
.life-intro p:last-child { max-width: 450px; margin: 0; color: rgba(255,255,255,0.73); font-size: 20px; }

.ephemera {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.08fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 30px);
  padding: 0 var(--pad) var(--section);
  align-items: stretch;
}

.scrap { position: relative; min-width: 0; border: 3px solid var(--navy); color: var(--navy); }
.scrap h3 { margin-bottom: 18px; font-family: var(--display); font-variation-settings: "wdth" 76; font-size: clamp(38px, 4.2vw, 68px); font-weight: 850; letter-spacing: -0.05em; line-height: 0.82; text-transform: uppercase; }
.scrap > p:last-of-type { font-size: 17px; line-height: 1.45; }
.scrap-index { position: absolute; top: 18px; right: 20px; font-family: var(--mono); font-size: 9px; font-weight: 600; }

.scrap-bus { grid-column: 1; grid-row: 1; min-height: 570px; padding: 36px; background: var(--gold); transform: rotate(-1.2deg); }
.bus-window { height: 122px; display: flex; gap: 10px; margin-top: 52px; padding: 18px; background: var(--navy); }
.bus-window i { flex: 1; position: relative; overflow: hidden; background: var(--blue-light); border: 2px solid var(--paper); }
.bus-window i::before { content: ""; position: absolute; width: 42px; height: 42px; left: 50%; bottom: -7px; background: var(--red); border-radius: 50% 50% 0 0; transform: translateX(-50%); }

.scrap-mark { grid-column: 2; grid-row: 1; min-height: 570px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; background: var(--white); transform: rotate(2deg); }
.scrap-mark img { width: min(90%, 260px); height: 390px; object-fit: contain; }
.scrap-mark p, .scrap-swoosh p { margin: 24px 0 0; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.scrap-games { grid-column: 3; grid-row: 1 / span 2; min-height: 760px; padding: 42px; background: var(--navy); color: var(--white); transform: rotate(-0.8deg); }
.game-pips { width: min(92%, 420px); aspect-ratio: 1; margin: 80px auto 0; position: relative; border: 3px solid var(--gold); transform: rotate(7deg); }
.game-pips i { position: absolute; width: 52px; height: 52px; border: 3px solid var(--white); border-radius: 50%; }
.game-pips i:nth-child(1) { left: 12%; top: 12%; background: var(--red); }
.game-pips i:nth-child(2) { right: 12%; top: 12%; background: var(--blue); }
.game-pips i:nth-child(3) { left: calc(50% - 26px); top: calc(50% - 26px); background: var(--gold); }
.game-pips i:nth-child(4) { left: 12%; bottom: 12%; background: var(--blue); }
.game-pips i:nth-child(5) { right: 12%; bottom: 12%; background: var(--red); }

.scrap-rec { grid-column: 1 / span 2; grid-row: 2; min-height: 410px; padding: 42px 45% 38px 38px; background: var(--blue-light); transform: rotate(0.8deg); }
.mini-pitch { position: absolute; right: 28px; top: 28px; bottom: 28px; width: 39%; border: 3px solid var(--navy); }
.mini-pitch::before { content: ""; position: absolute; inset: 50% auto auto 0; width: 100%; height: 3px; background: var(--navy); }
.mini-pitch::after { content: ""; position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; border: 3px solid var(--navy); border-radius: 50%; transform: translate(-50%, -50%); }
.mini-pitch i { position: absolute; width: 16px; height: 16px; background: var(--red); border: 2px solid var(--navy); border-radius: 50%; }
.mini-pitch i:nth-child(1) { left: 18%; top: 25%; }
.mini-pitch i:nth-child(2) { right: 18%; top: 32%; background: var(--gold); }
.mini-pitch i:nth-child(3) { left: 32%; bottom: 22%; background: var(--gold); }
.mini-pitch i:nth-child(4) { right: 28%; bottom: 18%; }

.scrap-swoosh { grid-column: 2 / -1; grid-row: 3; min-height: 270px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; background: var(--paper); transform: rotate(-0.7deg); }
.scrap-swoosh img { width: min(82%, 760px); max-height: 190px; object-fit: contain; }

.membership-head { display: grid; grid-template-columns: 1fr minmax(280px, 0.45fr); align-items: end; gap: 60px; margin-bottom: 78px; }
.membership-head .utility-label { grid-column: 1 / -1; margin-bottom: -25px; }
.membership-head p:last-child { margin: 0; color: var(--slate); font-size: 20px; }

.membership-layout { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(240px, 0.72fr); align-items: stretch; }
.member-poster, .member-benefits { min-height: 670px; padding: clamp(28px, 3.2vw, 52px); border: 3px solid var(--navy); }
.member-poster + .member-poster, .member-benefits { margin-left: -3px; }
.member-poster { display: flex; flex-direction: column; }
.member-poster-blue { background: var(--blue); }
.member-poster-gold { background: var(--gold); transform: translateY(28px); }
.member-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; }
.member-poster h3 { margin: clamp(68px, 8vw, 110px) 0 10px; font-family: var(--display); font-variation-settings: "wdth" 74; font-size: clamp(52px, 5.7vw, 88px); font-weight: 880; letter-spacing: -0.06em; line-height: 0.8; text-transform: uppercase; }
.member-price { display: flex; align-items: flex-start; gap: 6px; margin: 0 0 35px; font-family: var(--display); font-variation-settings: "wdth" 82; font-size: 86px; font-weight: 830; letter-spacing: -0.07em; line-height: 1; }
.member-price sup { margin-top: 12px; font-family: var(--mono); font-size: 18px; letter-spacing: 0; }
.member-price small { align-self: flex-end; margin-bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.member-poster ul { list-style: none; margin: 0 0 38px; padding: 0; border-top: 2px solid rgba(6,29,51,0.35); }
.member-poster li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid rgba(6,29,51,0.28); font-size: 16px; }
.member-poster li::before { content: "+"; position: absolute; left: 4px; font-family: var(--mono); font-weight: 600; }
.member-poster .button { margin-top: auto; align-self: flex-start; }
.member-benefits { background: var(--navy); color: var(--white); }
.member-benefits .utility-label { color: var(--blue-light); }
.member-benefits ol { list-style: none; margin: clamp(64px, 8vw, 112px) 0 0; padding: 0; }
.member-benefits li { display: grid; grid-template-columns: 76px 1fr; align-items: center; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.member-benefits li b { color: var(--gold); font-family: var(--display); font-variation-settings: "wdth" 120; font-size: 48px; font-weight: 700; line-height: 1; }
.member-benefits li span { color: rgba(255,255,255,0.74); font-size: 15px; }
.benefits-foot { margin-top: 40px; color: rgba(255,255,255,0.54); font-size: 14px; }

.system-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: var(--section) var(--pad);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.system-copy { padding: 0; }
.system-copy h2 { font-size: clamp(54px, 6vw, 96px); }
.system-copy > p:not(.utility-label) { max-width: 520px; margin: 28px 0 34px; color: rgba(255,255,255,0.64); font-size: 19px; }

.system-preview {
  display: block;
  min-width: 0;
  position: relative;
  background: var(--paper);
  border: 3px solid var(--white);
  box-shadow: 17px 17px 0 var(--red);
  color: var(--navy);
  text-decoration: none;
  transform: rotate(1.4deg);
  transition: transform 420ms var(--spring), box-shadow 420ms var(--ease);
}

.system-preview:hover { transform: rotate(0deg) translate(-5px, -5px); box-shadow: 23px 23px 0 var(--red); }
.preview-chrome { height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 16px; background: var(--gold); border-bottom: 3px solid var(--navy); }
.preview-chrome i { width: 9px; height: 9px; border: 1.5px solid var(--navy); border-radius: 50%; background: var(--red); }
.preview-chrome i:nth-child(2) { background: var(--blue); }
.preview-chrome i:nth-child(3) { background: var(--white); }
.preview-chrome span { margin-left: auto; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.preview-body { min-height: 460px; display: grid; grid-template-columns: 84px 1fr; }
.preview-rail { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 28px; background: var(--blue); border-right: 3px solid var(--navy); }
.preview-rail span { width: 32px; height: 32px; border: 2px solid var(--navy); background: var(--paper); }
.preview-rail span:first-child { background: var(--navy); }
.preview-table { min-width: 0; padding: 30px; }
.preview-title { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 34px; }
.preview-title b { font-family: var(--display); font-variation-settings: "wdth" 76; font-size: 50px; font-weight: 850; line-height: 1; text-transform: uppercase; }
.preview-title span { padding: 7px 9px; background: var(--gold); border: 1.5px solid var(--navy); font-family: var(--mono); font-size: 8px; font-weight: 600; text-transform: uppercase; }
.preview-row { display: grid; grid-template-columns: 1.3fr 1fr 0.8fr 0.7fr; gap: 12px; align-items: center; min-height: 58px; border-bottom: 1px solid var(--line); font-size: 12px; }
.preview-row span:last-child { font-family: var(--mono); font-size: 9px; font-weight: 600; text-transform: uppercase; }
.preview-row-head { min-height: 38px; color: var(--slate); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

.closing {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  border-top: 3px solid var(--navy);
  color: var(--navy);
}

.closing::before {
  content: "";
  position: absolute;
  width: 630px;
  height: 630px;
  right: -170px;
  top: -210px;
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
}

.closing-copy { position: relative; z-index: 4; max-width: 930px; }
.closing-copy .utility-label { color: var(--navy); }
.closing-copy h2 { font-size: clamp(82px, 12.8vw, 210px); }
.closing-copy h2 i { color: var(--white); font-variation-settings: "wdth" 110; font-weight: 390; text-transform: none; -webkit-text-stroke: 2px var(--navy); }
.closing-copy > p:not(.utility-label) { max-width: 520px; margin: 34px 0; font-size: 22px; }
.closing-crest { position: absolute; z-index: 3; width: clamp(280px, 34vw, 580px); height: auto; right: 4%; bottom: -13%; transform: rotate(8deg); filter: drop-shadow(15px 20px 0 rgba(6,29,51,0.25)); }
.closing-type { position: absolute; z-index: 1; right: -0.08em; bottom: -0.38em; margin: 0; color: transparent; font-family: var(--display); font-variation-settings: "wdth" 145; font-size: clamp(370px, 48vw, 780px); font-weight: 900; line-height: 0.8; -webkit-text-stroke: 3px rgba(6,29,51,0.18); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: end;
  padding: 44px var(--pad);
  background: var(--navy);
  color: var(--white);
}

.site-footer > div { display: flex; flex-direction: column; }
.site-footer b { font-family: var(--display); font-variation-settings: "wdth" 82; font-size: 19px; font-weight: 780; text-transform: uppercase; }
.site-footer span, .site-footer p { color: rgba(255,255,255,0.54); font-size: 13px; }
.site-footer p { justify-self: end; margin: 0; font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { padding-bottom: 3px; border-bottom: 1px solid transparent; font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: border-color 180ms var(--ease), color 180ms var(--ease); }
.site-footer nav a:hover { color: var(--gold); border-color: var(--gold); }

.js-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms var(--ease), transform 760ms var(--ease);
}

.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-ready .scrap.reveal { transform: translateY(34px) rotate(var(--scrap-rotation, 0deg)); }
.js-ready .scrap.reveal.is-visible { transform: translateY(0) rotate(var(--scrap-rotation, 0deg)); }
.scrap-bus { --scrap-rotation: -1.2deg; }
.scrap-mark { --scrap-rotation: 2deg; }
.scrap-games { --scrap-rotation: -0.8deg; }
.scrap-rec { --scrap-rotation: 0.8deg; }
.scrap-swoosh { --scrap-rotation: -0.7deg; }

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

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .join-orbit { display: none; }
  .menu-button { display: block; }
  .poster-copy { grid-column: 1 / span 7; padding-left: 70px; }
  .poster-art { grid-column: 8 / -1; }
  .poster-shadow, .poster-sheet { width: min(34vw, 420px); }
  .manifesto { min-height: 720px; }
  .matchday-line { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 55px; }
  .matchday-line::before { display: none; }
  .match-stop { min-height: 490px; border-top: 3px solid var(--gold); }
  .match-stop:nth-child(2) { border-right: 0; }
  .match-stop:nth-child(n+3) { padding-top: 0; }
  .membership-layout { grid-template-columns: 1fr 1fr; }
  .member-benefits { grid-column: 1 / -1; min-height: auto; margin: -3px 0 0; }
  .member-benefits ol { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
  .member-benefits li { grid-template-columns: 62px 1fr; padding: 20px; border: 0; border-right: 1px solid rgba(255,255,255,0.18); }
  .member-benefits li:last-child { border-right: 0; }
}

@media (max-width: 900px) {
  :root { --pad: clamp(18px, 5vw, 40px); --section: clamp(82px, 16vw, 126px); }
  body { font-size: 17px; }
  .site-header { inset: 12px var(--pad) auto; min-height: 66px; box-shadow: 4px 4px 0 var(--navy); }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark img { width: 36px; height: 42px; }
  .hero { min-height: auto; padding-top: 100px; }
  .hero-grid { min-height: auto; grid-template-rows: auto auto auto; }
  .poster-copy { grid-column: 1 / -1; grid-row: 1; padding: 80px 42px 30px; }
  .hero-loud { font-size: clamp(76px, 15.8vw, 134px); }
  .poster-art { grid-column: 1 / -1; grid-row: 2; min-height: 610px; padding: 36px; }
  .poster-shadow, .poster-sheet { width: min(62vw, 430px); }
  .poster-burst { right: 14%; }
  .poster-caption { right: 9%; bottom: 20px; }
  .hero-club-strip { grid-row: 3; }
  .manifesto, .clubs, .life-intro, .membership-head, .system-proof { grid-template-columns: 1fr; }
  .manifesto { min-height: 900px; }
  .manifesto-body { padding-top: 0; }
  .manifesto-stamp { bottom: 80px; }
  .matchday-head { grid-template-columns: 1fr; align-items: start; }
  .matchday-intro { margin-top: -12px; }
  .club-selector { grid-template-columns: 1fr; }
  .club-tabs { grid-template-columns: 1fr 1fr; grid-template-rows: none; border-right: 0; border-bottom: 3px solid var(--navy); }
  .club-tabs button { min-height: 130px; }
  .club-tabs button + button { border-top: 0; border-left: 3px solid var(--navy); }
  .club-panel { min-height: 460px; }
  .life-intro .utility-label, .membership-head .utility-label { grid-column: auto; margin-bottom: 0; }
  .ephemera { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .scrap-bus { grid-column: 1; grid-row: 1; }
  .scrap-mark { grid-column: 2; grid-row: 1; }
  .scrap-games { grid-column: 1 / -1; grid-row: 2; min-height: 650px; }
  .scrap-rec { grid-column: 1 / -1; grid-row: 3; }
  .scrap-swoosh { grid-column: 1 / -1; grid-row: 4; }
  .system-copy { max-width: 680px; }
  .system-proof { padding-top: var(--section); padding-bottom: var(--section); }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 92px; }
  body { font-size: 16px; }
  .site-header { padding: 7px 8px 7px 10px; }
  .brand-name { font-size: 14px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark img { width: 33px; height: 39px; }
  .menu-button { width: 44px; height: 44px; }
  .menu-button span { left: 9px; }
  .menu-button span:first-child { top: 15px; }
  .menu-button span:last-child { top: 25px; }
  .menu-button[aria-expanded="true"] span:first-child,
  .menu-button[aria-expanded="true"] span:last-child { top: 20px; }
  .menu-drawer nav a { grid-template-columns: 42px 1fr; gap: 8px; }
  .hero { padding: 90px 12px 14px; }
  .hero-grid { border-width: 2px; }
  .hero-index { display: none; }
  .poster-copy { padding: 62px 18px 24px; }
  .eyebrow { align-items: flex-start; font-size: 8px; }
  .eyebrow span { flex: 0 0 24px; margin-top: 4px; }
  .poster-copy h1 { margin-bottom: 24px; }
  .hero-loud { font-size: clamp(64px, 20.5vw, 103px); line-height: 0.76; }
  .hero-small { font-size: 9px; letter-spacing: 0.16em; }
  .hero-deck { font-size: 18px; }
  .hero-actions { align-items: flex-start; gap: 10px; }
  .text-link { padding-left: 0; }
  .poster-art { min-height: 470px; padding: 22px 14px 54px; }
  .poster-shadow, .poster-sheet { width: min(74vw, 330px); }
  .poster-call { bottom: 48px; font-size: clamp(31px, 10vw, 44px); }
  .poster-burst { width: 92px; right: 3%; top: 3%; }
  .poster-caption { right: 5%; bottom: 15px; font-size: 7px; }
  .hero-club-strip { grid-template-columns: 1fr; }
  .hero-club-strip > div { min-height: 60px; grid-template-columns: 14px 1fr auto; padding: 12px 16px; }
  .hero-club-strip > div + div { border-left: 0; border-top: 2px solid var(--navy); }
  .hero-club-strip b { font-size: 16px; }
  .manifesto { min-height: 860px; gap: 34px; }
  .manifesto-copy h2, .clubs-copy h2, .membership-head h2, .system-copy h2, .closing-copy h2 { font-size: clamp(50px, 15vw, 80px); }
  .manifesto-stamp { width: 190px; right: 28px; bottom: 70px; }
  .matchday-head h2, .life-intro h2 { font-size: clamp(57px, 17vw, 90px); }
  .matchday-line { display: block; padding-bottom: 20px; }
  .match-stop, .match-stop + .match-stop { min-height: 500px; padding: 0 0 60px; border-right: 0; }
  .match-time { right: 0; }
  .match-figure { max-width: 290px; }
  .club-selector { box-shadow: 7px 7px 0 var(--navy); }
  .club-selector::before { inset: -10px 10px 10px -10px; }
  .club-tabs { grid-template-columns: 1fr; }
  .club-tabs button { min-height: 108px; padding: 20px; }
  .club-tabs button + button { border-left: 0; border-top: 3px solid var(--navy); }
  .club-panel { min-height: 510px; padding: 28px 22px; }
  .club-panel-meta { margin-bottom: 70px; }
  .club-panel h3 { font-size: clamp(41px, 12.5vw, 62px); }
  .ephemera { grid-template-columns: 1fr; }
  .scrap-bus, .scrap-mark, .scrap-games, .scrap-rec, .scrap-swoosh { grid-column: 1; grid-row: auto; transform: none; }
  .scrap-bus, .scrap-mark { min-height: 500px; }
  .scrap-games { min-height: 620px; }
  .scrap-rec { min-height: 620px; padding: 38px 28px 300px; }
  .mini-pitch { left: 28px; right: 28px; top: auto; bottom: 28px; width: auto; height: 240px; }
  .scrap-swoosh { min-height: 220px; }
  .membership-head { gap: 24px; margin-bottom: 48px; }
  .membership-layout { grid-template-columns: 1fr; }
  .member-poster, .member-benefits { min-height: 620px; margin: 0; }
  .member-poster + .member-poster, .member-benefits { margin: -3px 0 0; }
  .member-poster-gold { transform: none; }
  .member-benefits { min-height: auto; }
  .member-benefits ol { grid-template-columns: 1fr; }
  .member-benefits li { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .system-proof { gap: 64px; }
  .system-preview { box-shadow: 9px 9px 0 var(--red); transform: none; }
  .preview-body { min-height: 390px; grid-template-columns: 54px 1fr; }
  .preview-rail span { width: 26px; height: 26px; }
  .preview-table { padding: 20px 15px; overflow: hidden; }
  .preview-title b { font-size: 36px; }
  .preview-row { grid-template-columns: 1.2fr 0.8fr; }
  .preview-row span:nth-child(2), .preview-row span:nth-child(3) { display: none; }
  .closing { min-height: 850px; }
  .closing-copy h2 { font-size: clamp(76px, 23vw, 120px); }
  .closing-copy h2 i { -webkit-text-stroke-width: 1.5px; }
  .closing-crest { width: 330px; right: -50px; bottom: -7%; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .ticker-track { animation: none; }
  .js-ready .reveal,
  .js-ready .scrap.reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}

/* --------------------------------------------------------------------------
   Dense utility proof: member management
   -------------------------------------------------------------------------- */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.utility-page {
  background: #eaf2f8;
  font-size: 16px;
}

.utility-shell {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  grid-template-rows: 70px 1fr;
}

.utility-rail {
  position: fixed;
  z-index: 60;
  inset: 0 auto 0 0;
  width: 270px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  border-right: 3px solid var(--navy);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.rail-brand {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--blue);
  border-bottom: 3px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
}

.rail-brand img {
  width: 48px;
  height: 58px;
  object-fit: contain;
  object-position: center 19%;
}

.rail-brand span {
  font-family: var(--display);
  font-variation-settings: "wdth" 82;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.rail-brand i { color: var(--red); font-style: normal; }

.rail-context {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 22px 18px 8px;
  padding: 15px 16px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--gold);
}

.rail-context span { color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.rail-context b { font-size: 14px; }

.rail-nav { padding: 8px 12px 30px; }
.rail-nav p { margin: 20px 10px 8px; color: rgba(255,255,255,0.38); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.rail-nav a {
  min-height: 45px;
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  padding: 7px 10px;
  border: 1.5px solid transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.rail-nav a span { font-family: var(--mono); font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.34); }
.rail-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); transform: translateX(2px); }
.rail-nav a.is-active { background: var(--paper); border-color: var(--paper); color: var(--navy); box-shadow: 5px 5px 0 var(--red); }
.rail-nav a.is-active span { color: var(--red); }

.rail-user {
  min-height: 82px;
  display: grid;
  grid-template-columns: 40px 1fr 34px;
  gap: 11px;
  align-items: center;
  margin-top: auto;
  padding: 15px 16px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.rail-avatar { width: 40px; height: 40px; display: grid; place-items: center; background: var(--gold); border: 2px solid var(--white); color: var(--navy); font-family: var(--mono); font-size: 10px; font-weight: 600; }
.rail-user div { min-width: 0; display: flex; flex-direction: column; }
.rail-user b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.rail-user small { color: rgba(255,255,255,0.46); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.rail-user button { width: 34px; height: 34px; padding: 0; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: var(--white); cursor: pointer; }

.utility-topbar {
  position: sticky;
  z-index: 45;
  top: 0;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 0 clamp(18px, 3vw, 42px);
  background: rgba(244,250,255,0.97);
  border-bottom: 2px solid var(--navy);
}

.concept-back { justify-self: start; color: var(--navy); font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }
.concept-back span { display: inline-block; margin-right: 8px; transition: transform 180ms var(--spring); }
.concept-back:hover span { transform: translateX(-3px); }
.topbar-status { display: flex; align-items: center; gap: 8px; color: var(--slate); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.topbar-status span { width: 9px; height: 9px; background: var(--red); border: 1px solid var(--navy); border-radius: 50%; }
.topbar-help { width: 38px; height: 38px; padding: 0; border: 2px solid var(--navy); border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--mono); font-weight: 600; cursor: pointer; transition: transform 180ms var(--spring), box-shadow 180ms var(--ease); }
.topbar-help:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--red); }
.rail-toggle { display: none; width: 44px; height: 44px; padding: 0; position: relative; border: 2px solid var(--navy); background: var(--blue); color: var(--navy); cursor: pointer; }
.rail-toggle span { position: absolute; left: 9px; width: 22px; height: 2px; background: currentColor; transition: transform 220ms var(--ease), top 220ms var(--ease); }
.rail-toggle span:first-child { top: 15px; }
.rail-toggle span:last-child { top: 25px; }
.rail-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.rail-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.member-main {
  grid-column: 2;
  min-width: 0;
  padding: clamp(36px, 5vw, 76px) clamp(18px, 3vw, 42px) 76px;
}

.member-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 42px;
  margin-bottom: 44px;
}

.member-page-head .utility-label { margin-bottom: 13px; color: var(--red); }
.member-page-head h1 { margin: 0 0 11px; font-family: var(--display); font-variation-settings: "wdth" 76; font-size: clamp(68px, 8vw, 124px); font-weight: 870; letter-spacing: -0.065em; line-height: 0.72; text-transform: uppercase; }
.member-page-head p:last-child { max-width: 620px; margin: 0; color: var(--slate); font-size: 18px; }
.add-member-button { flex: 0 0 auto; }

.member-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
  border: 3px solid var(--navy);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--blue);
}

.member-ledger article { min-height: 160px; padding: 22px 24px; border-right: 2px solid var(--navy); }
.member-ledger article:last-child { border-right: 0; }
.member-ledger p { margin: 0 0 20px; color: var(--slate); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.member-ledger strong { display: block; margin-bottom: 15px; font-family: var(--display); font-variation-settings: "wdth" 96; font-size: 54px; font-weight: 820; letter-spacing: -0.055em; line-height: 0.85; font-variant-numeric: tabular-nums; }
.member-ledger span { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: 12px; }
.member-ledger i { width: 9px; height: 9px; background: var(--slate); border-radius: 50%; }
.member-ledger .ledger-blue { background: var(--blue); }
.member-ledger .ledger-gold { background: var(--gold); }
.member-ledger .ledger-red { background: var(--red); }

.member-workspace {
  min-width: 0;
  max-width: 100%;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 10px 10px 0 var(--navy);
}

.workspace-head {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border-bottom: 2px solid var(--navy);
}

.workspace-head .utility-label { margin-bottom: 7px; color: var(--red); }
.workspace-head h2 { margin: 0; font-family: var(--display); font-variation-settings: "wdth" 82; font-size: 34px; font-weight: 820; letter-spacing: -0.04em; line-height: 1; text-transform: uppercase; }
.workspace-actions { display: flex; gap: 10px; }

.quiet-button {
  min-height: 42px;
  padding: 9px 13px;
  border: 1.5px solid var(--navy);
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--spring);
}

.quiet-button:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.quiet-button span { margin-right: 6px; color: var(--red); font-size: 14px; }

.member-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.42fr) auto;
  gap: 12px;
  align-items: stretch;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: #f8fbfe;
}

.search-control {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.search-control:focus-within { border-color: var(--blue); box-shadow: inset 4px 0 0 var(--blue); }
.search-control svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 2; }
.search-control input { width: 100%; min-width: 0; padding: 10px 0; border: 0; outline: 0; background: transparent; color: var(--navy); font-size: 14px; }
.search-control input::placeholder { color: #74839a; opacity: 1; }

.select-control {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  background: var(--white);
  border: 1.5px solid var(--line);
}

.select-control:focus-within { border-color: var(--blue); }
.select-control > span { color: var(--slate); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.select-control select { width: 100%; min-width: 0; padding: 10px 22px 10px 8px; border: 0; outline: 0; background-color: var(--white); color: var(--navy); font-size: 13px; font-weight: 600; }

.status-filters { display: flex; border: 1.5px solid var(--navy); }
.status-filters button { min-width: 72px; padding: 8px 11px; border: 0; border-right: 1px solid var(--navy); border-radius: 0; background: var(--white); color: var(--navy); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background-color 160ms var(--ease), color 160ms var(--ease); }
.status-filters button:last-child { border-right: 0; }
.status-filters button:hover { background: var(--gold-light); }
.status-filters button[aria-pressed="true"] { background: var(--navy); color: var(--white); }
.status-filters b { margin-left: 3px; color: var(--red); font-variant-numeric: tabular-nums; }
.status-filters button[aria-pressed="true"] b { color: var(--gold); }

.bulk-bar {
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
  background: var(--gold);
  border-bottom: 2px solid var(--navy);
}

.bulk-bar:not([hidden]) { display: flex; }
.bulk-bar b { margin-right: auto; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.bulk-bar button { padding: 8px 11px; border: 1.5px solid var(--navy); background: var(--paper); color: var(--navy); font-family: var(--mono); font-size: 8px; font-weight: 600; text-transform: uppercase; cursor: pointer; }

.member-table-wrap { width: 100%; min-width: 0; max-width: 100%; overflow-x: auto; outline-offset: -3px; }
.member-table { width: 100%; min-width: 1080px; border-collapse: collapse; table-layout: fixed; }
.member-table th, .member-table td { padding: 15px 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.member-table th { height: 45px; background: #edf4f8; color: var(--slate); font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.member-table th:nth-child(1) { width: 46px; }
.member-table th:nth-child(2) { width: 245px; }
.member-table th:nth-child(3) { width: 160px; }
.member-table th:nth-child(4) { width: 132px; }
.member-table th:nth-child(5) { width: 112px; }
.member-table th:nth-child(6) { width: 104px; }
.member-table th:nth-child(7) { width: 112px; }
.member-table th:nth-child(8) { width: 60px; }
.member-table tbody tr { transition: background-color 160ms var(--ease), box-shadow 160ms var(--ease); }
.member-table tbody tr:hover { background: #f1f8fc; box-shadow: inset 4px 0 0 var(--blue); }
.member-table tbody tr.is-selected { background: #fff8df; box-shadow: inset 4px 0 0 var(--gold); }
.member-table tbody tr[hidden] { display: none; }
.member-table td { color: #233b52; font-size: 13px; }
.member-table td > b { display: block; color: var(--navy); font-size: 13px; }
.member-table time { font-family: var(--mono); font-size: 10px; font-variant-numeric: tabular-nums; }
.table-sub { display: block; margin-top: 2px; color: #74839a; font-size: 10px; }

.check-cell { padding-left: 17px !important; padding-right: 3px !important; }
.check-cell label { width: 28px; height: 32px; display: grid; place-items: center; cursor: pointer; }
.check-cell input { width: 17px; height: 17px; margin: 0; accent-color: var(--red); cursor: pointer; }

.member-identity { min-width: 0; display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 11px; }
.member-identity .avatar { width: 40px; height: 40px; display: grid; place-items: center; border: 1.5px solid var(--navy); color: var(--navy); font-family: var(--mono); font-size: 9px; font-weight: 600; }
.avatar-blue { background: var(--blue-light); }
.avatar-red { background: #f1a9b4; }
.avatar-gold { background: var(--gold); }
.avatar-navy { background: var(--navy); color: var(--white) !important; }
.member-identity div { min-width: 0; }
.member-identity b, .member-identity small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.member-identity b { margin-bottom: 2px; color: var(--navy); font-size: 13px; }
.member-identity small { color: #63738a; font-size: 10px; }

.status { width: max-content; display: inline-flex; align-items: center; gap: 7px; padding: 5px 8px; border: 1px solid currentColor; font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-paid { background: #dff3ea; color: #12603d; }
.status-review { background: #fff0c7; color: #80500a; }
.row-action { width: 36px; height: 36px; padding: 0; border: 1.5px solid transparent; background: transparent; color: var(--navy); cursor: pointer; }
.row-action:hover { border-color: var(--navy); background: var(--gold); }

.table-empty { min-height: 230px; align-items: center; justify-content: center; gap: 22px; padding: 40px; text-align: left; }
.table-empty:not([hidden]) { display: flex; }
.table-empty > span { width: 76px; height: 76px; display: grid; place-items: center; background: var(--red); border: 2px solid var(--navy); color: var(--white); font-family: var(--display); font-size: 44px; font-weight: 850; }
.table-empty b { font-family: var(--display); font-variation-settings: "wdth" 82; font-size: 24px; text-transform: uppercase; }
.table-empty p { margin: 4px 0 0; color: var(--slate); }
.table-footer { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 28px; background: #edf4f8; border-top: 1px solid var(--line); }
.table-footer p { margin: 0; color: var(--slate); font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; }
.table-footer b { color: var(--navy); font-variant-numeric: tabular-nums; }
.utility-disclaimer { margin: 30px 0 0; color: var(--slate); font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; }

.member-dialog {
  width: min(680px, calc(100vw - 36px));
  max-height: min(850px, calc(100svh - 36px));
  margin: auto;
  padding: 0;
  border: 3px solid var(--navy);
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  box-shadow: 14px 14px 0 var(--red);
  overflow: auto;
  overscroll-behavior: contain;
}

.member-dialog::backdrop { background: rgba(6,29,51,0.78); }
.member-dialog-form > header { position: sticky; z-index: 2; top: 0; min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 26px; background: var(--blue); border-bottom: 3px solid var(--navy); }
.member-dialog-form header .utility-label { margin-bottom: 7px; color: var(--navy); }
.member-dialog-form h2 { margin: 0; font-family: var(--display); font-variation-settings: "wdth" 78; font-size: 40px; font-weight: 850; letter-spacing: -0.05em; line-height: 0.85; text-transform: uppercase; }
.dialog-close { flex: 0 0 auto; width: 44px; height: 44px; padding: 0; border: 2px solid var(--navy); background: var(--gold); color: var(--navy); font-size: 29px; line-height: 1; cursor: pointer; }
.dialog-body { display: grid; gap: 19px; padding: 28px 26px; }
.dialog-body label:not(.check-label) { display: grid; gap: 7px; }
.dialog-body label > span { color: var(--slate); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.dialog-body input:not([type="checkbox"]), .dialog-body select { width: 100%; min-height: 50px; padding: 11px 13px; border: 1.5px solid var(--navy); border-radius: 0; background-color: var(--white); color: var(--navy); }
.dialog-body input:focus-visible, .dialog-body select:focus-visible { outline-color: var(--blue); box-shadow: inset 5px 0 0 var(--blue); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-label { min-height: 62px; display: flex; align-items: center; gap: 13px; padding: 12px 14px; background: var(--gold-light); border: 1.5px solid var(--navy); cursor: pointer; }
.check-label input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--red); }
.check-label span { display: flex; flex-direction: column; color: var(--navy) !important; font-family: var(--body) !important; letter-spacing: 0 !important; text-transform: none !important; }
.check-label b { font-size: 14px; }
.check-label small { color: var(--slate); font-size: 12px; }
.dialog-note { padding: 16px 18px; background: var(--navy); color: var(--white); border-left: 7px solid var(--red); }
.dialog-note b { color: var(--gold); font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.dialog-note p { margin: 5px 0 0; color: rgba(255,255,255,0.64); font-size: 13px; }
.member-dialog-form > footer { position: sticky; bottom: 0; min-height: 82px; display: flex; align-items: center; justify-content: flex-end; gap: 12px; padding: 14px 26px; background: var(--paper); border-top: 2px solid var(--navy); }

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  padding: 16px 18px;
  background: var(--navy);
  border: 2px solid var(--white);
  box-shadow: 7px 7px 0 var(--red);
  color: var(--white);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .utility-shell { grid-template-columns: 230px minmax(0, 1fr); }
  .utility-rail { width: 230px; }
  .member-ledger { grid-template-columns: 1fr 1fr; }
  .member-ledger article:nth-child(2) { border-right: 0; }
  .member-ledger article:nth-child(-n+2) { border-bottom: 2px solid var(--navy); }
  .member-filters { grid-template-columns: 1fr minmax(190px, 0.5fr); }
  .status-filters { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 860px) {
  .utility-page.menu-open { overflow: hidden; }
  .utility-shell { grid-template-columns: 1fr; grid-template-rows: 64px 1fr; }
  .utility-rail { width: min(310px, calc(100vw - 54px)); transform: translateX(-105%); box-shadow: 18px 0 0 rgba(200,32,58,0.92); transition: transform 300ms var(--ease); }
  .utility-rail.is-open { transform: translateX(0); }
  .utility-topbar { grid-column: 1; grid-template-columns: auto 1fr auto auto; padding: 0 14px; }
  .rail-toggle { display: block; }
  .member-main { grid-column: 1; padding-top: 40px; }
  .member-page-head { align-items: flex-start; }
  .member-page-head h1 { font-size: clamp(70px, 14vw, 106px); }
}

@media (max-width: 660px) {
  .utility-topbar { grid-template-columns: auto 1fr auto; }
  .topbar-status { display: none; }
  .member-main { padding: 34px 14px 58px; }
  .member-page-head { display: grid; gap: 24px; }
  .add-member-button { justify-self: start; }
  .member-ledger { grid-template-columns: 1fr; box-shadow: 6px 6px 0 var(--blue); }
  .member-ledger article { min-height: 138px; border-right: 0; border-bottom: 2px solid var(--navy); }
  .member-ledger article:nth-child(2) { border-right: 0; }
  .member-ledger article:nth-child(-n+3) { border-bottom: 2px solid var(--navy); }
  .member-ledger article:last-child { border-bottom: 0; }
  .workspace-head { align-items: flex-start; flex-direction: column; padding: 22px 18px; }
  .workspace-actions { width: 100%; }
  .workspace-actions .quiet-button { flex: 1; }
  .member-filters { grid-template-columns: 1fr; padding: 14px 18px; }
  .status-filters { grid-column: auto; width: 100%; }
  .status-filters button { flex: 1; min-width: 0; }
  .bulk-bar { padding: 8px 18px; flex-wrap: wrap; }
  .table-footer { align-items: flex-start; flex-direction: column; padding: 15px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .member-dialog { max-height: calc(100svh - 18px); }
  .member-dialog-form > header, .dialog-body, .member-dialog-form > footer { padding-left: 18px; padding-right: 18px; }
  .member-dialog-form > footer { align-items: stretch; flex-direction: column-reverse; }
  .member-dialog-form > footer .button { width: 100%; }
  .toast { right: 14px; bottom: 14px; max-width: calc(100vw - 28px); }
}
