:root {
  --black: #070707;
  --ink: #111111;
  --paper: #f3f0ea;
  --paper-deep: #dfd8ce;
  --red: #d8241f;
  --gold: #ffd21a;
  --blue: #0077cc;
  --blue-dark: #003f72;
  --site-max: 1280px;
  --edge: clamp(14px, 2.2vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #151515;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .09), transparent 34rem),
    #151515;
  font-family: "Roboto Condensed", Impact, "Arial Narrow", sans-serif;
  overflow-x: hidden;
}

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

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

.page-shell {
  width: min(100%, var(--site-max));
  min-height: 100vh;
  margin: 0 auto;
  background: var(--black);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .48);
}

.site-header {
  min-height: clamp(48px, 4.8vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 0 var(--edge);
  color: var(--paper);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  white-space: nowrap;
}

.brand-text {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.05rem, 2.35vw, 2.05rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.brand-text-old {
  font-family: "Rock Salt", "Brush Script MT", cursive;
  font-size: clamp(1.05rem, 2.35vw, 2.05rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.brand-text span {
  color: var(--red);
}

.brand-stamp {
  display: inline-grid;
  place-items: center;
  width: clamp(16px, 1.7vw, 22px);
  height: clamp(16px, 1.7vw, 22px);
  color: var(--red);
  border: 1px solid var(--red);
  font-family: "Oswald", sans-serif;
  font-size: clamp(.5rem, .8vw, .7rem);
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  padding: 0 clamp(5px, .9vw, 13px);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.56rem, .88vw, .82rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.is-active {
  color: var(--gold);
}

.join-button,
.learn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(28px, 3vw, 38px);
  padding: 0 clamp(10px, 1.55vw, 18px);
  color: var(--black);
  background: var(--gold);
  border: 1px solid #d2a700;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.62rem, .96vw, .88rem);
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .13);
  white-space: nowrap;
}

.mission-hero {
  position: relative;
  min-height: clamp(315px, 34vw, 500px);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .78) 36%, rgba(0, 0, 0, .3) 58%, rgba(0, 0, 0, .04) 100%),
    url("assets/landing-hero-large.png") right center / auto 100% no-repeat,
    radial-gradient(circle at 30% 38%, #2a2a2a, #080808 62%);
}

.mission-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .3)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.mission-copy {
  width: clamp(320px, 40%, 500px);
  padding: clamp(26px, 4.5vw, 56px) 0 0 var(--edge);
  color: #ffffff;
}

.mission-copy p {
  margin: 0 0 clamp(9px, 1.3vw, 14px);
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.85rem, 1.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.mission-copy h1 {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.7rem, 3.35vw, 3.25rem);
  font-weight: 500;
  line-height: 1.17;
  text-transform: uppercase;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, .58);
}

.mission-copy span {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: .12em;
  text-underline-offset: .22em;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: clamp(76px, 8.4vw, 116px);
  background: var(--paper);
  border-top: 1px solid #b9b2a8;
  border-bottom: 1px solid #b9b2a8;
}

.feature-card {
  display: grid;
  grid-template-columns: clamp(42px, 5vw, 72px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.35vw, 18px);
  padding: clamp(10px, 1.45vw, 18px) clamp(12px, 1.6vw, 22px);
  border-right: 1px solid #b9b2a8;
  background: linear-gradient(180deg, #fbfaf7, var(--paper-deep));
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  background: #ffffff;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.feature-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.83rem, 1.16vw, 1.22rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card small {
  display: block;
  max-width: 19ch;
  font-size: clamp(.68rem, .96vw, .96rem);
  font-weight: 700;
  line-height: 1.17;
}

.clan-strip {
  min-height: clamp(84px, 9vw, 126px);
  display: grid;
  grid-template-columns: clamp(56px, 7vw, 90px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(12px, 1.6vw, 20px) clamp(20px, 4vw, 58px) clamp(12px, 1.6vw, 20px) var(--edge);
  color: #ffffff;
  background:
    linear-gradient(90deg, #03131d 0%, var(--blue-dark) 34%, var(--blue) 100%);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.clan-avatar {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 0px solid #057bc4;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, .28);
}

.clan-avatar-old   {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #057bc4;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .28);
}

.clan-copy h2 {
  margin: 0 0 3px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.98rem, 1.55vw, 1.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.clan-copy p {
  max-width: 560px;
  margin: 0;
  font-size: clamp(.73rem, .98vw, 1.04rem);
  font-weight: 700;
  line-height: 1.18;
}

.learn-button {
  min-height: clamp(38px, 4vw, 50px);
  padding: 0 clamp(18px, 3vw, 32px);
  font-size: clamp(.78rem, 1.08vw, 1.12rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(42px, 4.6vw, 58px);
  padding: 12px var(--edge);
  color: rgba(243, 240, 234, .72);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-footer p {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.68rem, .9vw, .84rem);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.grumble-page {
  min-height: clamp(520px, 60vw, 720px);
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, 1.2fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(28px, 5vw, 70px) var(--edge);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, .96), rgba(7, 7, 7, .68)),
    url("assets/ninja-cityscape.png") right center / cover no-repeat,
    radial-gradient(circle at 30% 20%, #272727, #050505 68%);
  overflow: hidden;
}

.grumble-art {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  align-self: center;
}

.grumble-art::before {
  content: "";
  position: absolute;
  inset: 16% 8% 2%;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 40, 40, .34), transparent 52%),
    radial-gradient(circle at 44% 70%, rgba(112, 10, 10, .44), transparent 58%);
  filter: blur(18px);
}

.grumble-art img {
  position: relative;
  z-index: 1;
  width: min(88%, 420px);
  max-height: clamp(360px, 45vw, 560px);
  object-fit: contain;
  filter: drop-shadow(18px 20px 0 rgba(0, 0, 0, .34));
}

.wisdom-art img {
  width: min(96%, 460px);
  max-height: clamp(380px, 48vw, 600px);
}

.grumble-card {
  align-self: center;
  max-width: 680px;
  padding: clamp(24px, 4vw, 48px);
  background: rgba(243, 240, 234, .94);
  color: var(--ink);
  border-left: clamp(8px, 1vw, 14px) solid var(--red);
  box-shadow: clamp(8px, 1.2vw, 16px) clamp(8px, 1.2vw, 16px) 0 rgba(0, 0, 0, .65);
}

.section-kicker,
.grumble-card time,
.grumble-card footer span {
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: clamp(.92rem, 1.2vw, 1.2rem);
}

.grumble-card time {
  display: block;
  margin-bottom: clamp(12px, 2vw, 22px);
  color: rgba(17, 17, 17, .6);
  font-size: clamp(.72rem, .9vw, .9rem);
}

.grumble-card h1 {
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.1rem, 5vw, 5rem);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

.grumble-card blockquote {
  margin: 0;
}

.grumble-card blockquote p {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.55rem, 3.2vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.grumble-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 38px);
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, .18);
}

.grumble-card footer span {
  color: var(--red);
  font-size: clamp(.9rem, 1.2vw, 1.15rem);
}

.comic-page {
  min-height: clamp(520px, 60vw, 720px);
  display: grid;
  align-content: center;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(28px, 5vw, 70px) var(--edge);
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, .76)),
    url("assets/ninja-cityscape.png") center center / cover no-repeat,
    radial-gradient(circle at 50% 20%, #292929, #050505 70%);
  overflow: hidden;
}

.comic-heading {
  width: min(100%, 860px);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.comic-meta-left {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(10px, 1.4vw, 18px);
  min-width: 0;
}

.comic-meta-left h1 {
  margin: 0;
  color: var(--red);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.92rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.comic-meta-left span {
  color: var(--paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.82rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.comic-heading time {
  color: rgba(243, 240, 234, .68);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.72rem, .9vw, .9rem);
  font-weight: 700;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.comic-stage {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 18px);
  background: rgba(243, 240, 234, .95);
  border: clamp(4px, .6vw, 7px) solid var(--black);
  box-shadow: clamp(8px, 1.3vw, 18px) clamp(8px, 1.3vw, 18px) 0 rgba(214, 40, 40, .8);
}

.comic-stage img {
  width: 100%;
  border: 2px solid var(--black);
}

.comic-stage figcaption {
  margin: clamp(10px, 1.5vw, 16px) 0 0;
  color: var(--ink);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.hidden-clan-page {
  min-height: clamp(520px, 60vw, 720px);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 70px) var(--edge);
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, .76)),
    url("assets/ninja-cityscape.png") center center / cover no-repeat,
    radial-gradient(circle at 50% 20%, #292929, #050505 70%);
  overflow: hidden;
}

.coming-soon-panel {
  width: min(100%, 860px);
  padding: clamp(34px, 7vw, 92px) clamp(20px, 5vw, 70px);
  background: rgba(7, 7, 7, .72);
  border: clamp(4px, .6vw, 7px) solid var(--black);
  box-shadow: clamp(8px, 1.3vw, 18px) clamp(8px, 1.3vw, 18px) 0 rgba(214, 40, 40, .8);
  text-align: center;
}

.coming-soon-panel .section-kicker {
  margin: 0 0 clamp(12px, 2vw, 22px);
}

.coming-soon-panel h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(3.4rem, 10vw, 9rem);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 5px 6px 0 rgba(214, 40, 40, .68);
}

.about-hero {
  min-height: clamp(430px, 45vw, 640px);
  display: grid;
  align-items: end;
  padding: clamp(30px, 5vw, 70px) var(--edge);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .76) 38%, rgba(5, 5, 5, .28) 68%, rgba(5, 5, 5, .08) 100%),
    url("assets/landing-hero-large.png") right bottom / auto 102% no-repeat,
    url("assets/ninja-cityscape.png") center center / cover no-repeat,
    #050505;
  overflow: hidden;
}

.about-hero-copy {
  width: min(100%, 620px);
}

.about-hero h1 {
  max-width: 10em;
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.35rem, 6vw, 6rem);
  font-weight: 500;
  line-height: .98;
  text-transform: uppercase;
  text-shadow: 4px 5px 0 rgba(0, 0, 0, .62);
}

.about-lede {
  max-width: 650px;
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: var(--paper);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-page {
  padding: clamp(28px, 5vw, 70px) var(--edge);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .82)),
    url("assets/ninja-cityscape.png") center top / cover fixed no-repeat,
    #050505;
}

.about-scroll {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(214, 40, 31, .16), transparent 16px),
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(223, 216, 206, .96)),
    var(--paper);
  border-left: clamp(7px, .85vw, 12px) solid var(--red);
  box-shadow: clamp(8px, 1.3vw, 18px) clamp(8px, 1.3vw, 18px) 0 rgba(0, 0, 0, .68);
}

.about-intro {
  margin: 0 0 clamp(26px, 4vw, 46px);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.45rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.about-section {
  margin: clamp(28px, 4.4vw, 54px) 0 0;
}

h2.about-section,
.about-section h2,
.rules-panel h2,
.faq-list h2,
.oath-panel h2 {
  margin: 0 0 clamp(12px, 1.8vw, 18px);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.28rem, 2.25vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-section p,
.about-grid p,
.faq-list dd,
.oath-panel p {
  margin: 0;
  font-size: clamp(.98rem, 1.22vw, 1.18rem);
  font-weight: 700;
  line-height: 1.38;
}

.about-section p + p {
  margin-top: 12px;
}

.brush-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px clamp(18px, 2.5vw, 34px);
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  padding: 0;
  list-style: none;
}

.brush-list li {
  position: relative;
  padding-left: 22px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.98rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.brush-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 12px;
  height: 4px;
  background: var(--red);
  transform: rotate(-12deg);
}

.about-callout {
  margin: clamp(30px, 4.6vw, 58px) 0;
  padding: clamp(18px, 3vw, 34px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .72)),
    url("assets/ninja-cityscape.png") center center / cover no-repeat,
    var(--black);
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 rgba(214, 40, 31, .78);
}

.about-callout span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.85rem, 1vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}

.about-callout p {
  margin: 0;
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.45rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: clamp(30px, 4.6vw, 58px) 0;
}

.about-grid section {
  min-height: 150px;
  padding: clamp(16px, 2.2vw, 24px);
  background: rgba(255, 255, 255, .58);
  border-top: 5px solid var(--red);
}

.about-grid h3 {
  margin: 0 0 9px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1rem, 1.42vw, 1.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.rules-panel {
  margin: clamp(30px, 4.6vw, 58px) 0;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(7, 7, 7, .92);
  color: var(--paper);
}

.rules-panel ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(18px, 2.5vw, 28px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: rule;
}

.rules-panel li {
  counter-increment: rule;
  min-height: 142px;
  padding: clamp(14px, 2vw, 22px);
  background: #121212;
  border: 1px solid rgba(243, 240, 234, .16);
}

.rules-panel li::before {
  content: "0" counter(rule);
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.rules-panel strong,
.rules-panel span {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.rules-panel strong {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: clamp(.82rem, 1vw, .98rem);
}

.rules-panel span {
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  line-height: 1.08;
}

.faq-list {
  margin: clamp(30px, 4.6vw, 58px) 0;
}

.faq-list dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
}

.faq-list div {
  padding: clamp(14px, 2vw, 22px);
  background: rgba(255, 255, 255, .52);
}

.faq-list dt {
  margin: 0 0 6px;
  color: var(--red);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(.92rem, 1.15vw, 1.08rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq-list dd {
  margin: 0;
}

.oath-panel {
  margin-top: clamp(30px, 4.6vw, 58px);
  padding: clamp(22px, 3.5vw, 42px);
  background: #ffffff;
  border: 3px solid var(--black);
  box-shadow: 8px 8px 0 rgba(214, 40, 31, .78);
}

.oath-panel h2 {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.oath-panel p + p {
  margin-top: 10px;
}

.oath-panel footer {
  margin-top: 18px;
  color: var(--red);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1;
}

@media (min-width: 1281px) {
  .page-shell {
    margin-top: clamp(0px, 2vw, 24px);
    margin-bottom: clamp(0px, 2vw, 24px);
  }
}

@media (max-width: 900px) {
  :root {
    --edge: clamp(14px, 3.2vw, 24px);
  }

  .site-header {
    min-height: 56px;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-block: 8px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: 26px;
    flex: 0 0 auto;
    padding: 0 6px;
  }

  .mission-hero {
    min-height: clamp(310px, 50vw, 430px);
    background-position: right center;
    background-size: auto 100%, auto 100%, auto;
  }

  .mission-copy {
    width: min(58%, 430px);
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid #b9b2a8;
  }

  .grumble-page {
    grid-template-columns: 1fr;
    gap: 22px;
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .7)),
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      radial-gradient(circle at 40% 20%, #252525, #050505 70%);
  }

  .grumble-art {
    min-height: 280px;
  }

  .grumble-art::before {
    inset: 7% 20%;
  }

  .grumble-art img {
    width: min(62vw, 320px);
    max-height: 330px;
  }

  .wisdom-art img {
    width: min(68vw, 360px);
    max-height: 360px;
  }

  .grumble-card {
    max-width: none;
  }

  .comic-page {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .78)),
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      radial-gradient(circle at 40% 20%, #252525, #050505 70%);
  }

  .hidden-clan-page {
    min-height: clamp(480px, 68vw, 640px);
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .78)),
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      radial-gradient(circle at 40% 20%, #252525, #050505 70%);
  }

  .about-hero {
    min-height: clamp(410px, 70vw, 560px);
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .9) 0%, rgba(5, 5, 5, .62) 44%, rgba(5, 5, 5, .18) 100%),
      url("assets/landing-hero-large.png") right bottom / auto 82% no-repeat,
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      #050505;
  }

  .about-hero-copy {
    width: min(64%, 470px);
  }

  .about-page {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .84)),
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      #050505;
  }

  .rules-panel ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --edge: 16px;
  }

  body {
    background: var(--black);
  }

  .page-shell {
    box-shadow: none;
  }

  .site-header {
    align-items: center;
  }

  .brand-text {
    font-size: clamp(1rem, 5.5vw, 1.35rem);
  }

  .join-button {
    min-height: 32px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px;
    padding-bottom: 2px;
  }

  .mission-hero {
    min-height: clamp(430px, 118vw, 540px);
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .64) 38%, rgba(0, 0, 0, .18) 68%, rgba(0, 0, 0, .2) 100%),
      url("assets/landing-hero-large.png") center bottom / auto 67% no-repeat,
      radial-gradient(circle at 50% 34%, #2b2b2b, #070707 70%);
  }

  .mission-copy {
    width: 100%;
    padding: 24px 18px 0;
    text-align: left;
  }

  .mission-copy p {
    font-size: .9rem;
  }

  .mission-copy h1 {
    max-width: 11.5em;
    font-size: clamp(1.48rem, 7.1vw, 2rem);
    line-height: 1.22;
  }

  .feature-row {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .feature-card {
    min-height: 82px;
    grid-template-columns: 58px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid #b9b2a8;
    padding: 12px 16px;
  }

  .feature-card strong {
    font-size: 1rem;
  }

  .feature-card small {
    max-width: none;
    font-size: .84rem;
  }

  .clan-strip {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 0;
    padding: 14px 16px;
  }

  .clan-copy h2 {
    font-size: 1.05rem;
  }

  .clan-copy p {
    font-size: .82rem;
  }

  .learn-button {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-height: 42px;
  }

  .site-footer {
    padding: 14px 16px;
  }

  .grumble-page {
    min-height: 0;
    padding: 24px 16px 34px;
    background:
      linear-gradient(180deg, rgba(7, 7, 7, .9), rgba(7, 7, 7, .82)),
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      radial-gradient(circle at 50% 12%, #252525, #050505 70%);
  }

  .grumble-art {
    min-height: 240px;
  }

  .grumble-art::before {
    inset: 8% 12%;
  }

  .grumble-art img {
    width: min(74vw, 270px);
    max-height: 270px;
  }

  .wisdom-art img {
    width: min(80vw, 300px);
    max-height: 300px;
  }

  .grumble-card {
    padding: 22px 18px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, .65);
  }

  .grumble-card h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  .grumble-card blockquote p {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .grumble-card footer {
    display: grid;
  }

  .grumble-card .learn-button {
    justify-self: stretch;
  }

  .comic-page {
    padding: 24px 16px 34px;
  }

  .comic-heading {
    gap: 12px;
  }

  .comic-meta-left {
    gap: 10px;
  }

  .comic-meta-left h1,
  .comic-meta-left span,
  .comic-heading time {
    font-size: .78rem;
  }

  .comic-stage {
    padding: 8px;
    box-shadow: 7px 7px 0 rgba(214, 40, 40, .8);
  }

  .comic-stage figcaption {
    font-size: .9rem;
  }

  .hidden-clan-page {
    min-height: 430px;
    padding: 24px 16px 34px;
  }

  .coming-soon-panel {
    padding: 42px 18px;
    box-shadow: 7px 7px 0 rgba(214, 40, 40, .8);
  }

  .coming-soon-panel h1 {
    font-size: clamp(2.8rem, 17vw, 4.8rem);
  }

  .about-hero {
    min-height: 500px;
    align-items: start;
    padding: 24px 16px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .7) 40%, rgba(5, 5, 5, .22) 72%, rgba(5, 5, 5, .1) 100%),
      url("assets/landing-hero-large.png") center bottom / auto 62% no-repeat,
      url("assets/ninja-cityscape.png") center top / cover no-repeat,
      #050505;
  }

  .about-hero-copy {
    width: 100%;
  }

  .about-hero h1 {
    max-width: 8.4em;
    font-size: clamp(2.05rem, 12vw, 3rem);
    line-height: 1.04;
  }

  .about-lede {
    max-width: 18em;
    font-size: .95rem;
  }

  .about-page {
    padding: 24px 16px 34px;
  }

  .about-scroll {
    padding: 22px 18px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, .68);
  }

  .about-intro {
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .brush-list,
  .about-grid,
  .faq-list dl {
    grid-template-columns: 1fr;
  }

  .about-grid section {
    min-height: 0;
  }

  .about-callout {
    box-shadow: 7px 7px 0 rgba(214, 40, 31, .78);
  }

  .about-callout p {
    font-size: clamp(1.35rem, 8vw, 2.15rem);
  }

  .oath-panel {
    box-shadow: 7px 7px 0 rgba(214, 40, 31, .78);
  }
}
