:root {
  --ink: #070708;
  --ink-soft: #121214;
  --paper: #f6edd8;
  --paper-deep: #e7d7b6;
  --gold: #e2a31c;
  --gold-deep: #b47a0d;
  --line: #0b0b0c;
  --mute: #b8ae9a;
  --panel: #101012;
  --blush: #e23b3b;
  --shadow: 8px 8px 0 #000;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

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

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(226, 163, 28, 0.16), transparent 58%),
    radial-gradient(circle at 100% 80%, rgba(226, 163, 28, 0.06), transparent 30%),
    #070708;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(#e2a31c 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.stage-floor {
  position: absolute;
  left: -18%;
  right: -18%;
  top: 46%;
  height: 90%;
  background: repeating-linear-gradient(
    90deg,
    #0a0a0c 0 46px,
    #17171b 46px 92px
  );
  transform: perspective(720px) rotateX(64deg);
  transform-origin: center top;
  filter: contrast(1.05);
}

.stage-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #070708 92%);
}

.site-wrap {
  position: relative;
  z-index: 1;
}

.site-nav {
  background: rgba(7, 7, 8, 0.72);
  border-bottom: 3px solid #000;
  backdrop-filter: blur(14px);
}

.site-nav.is-scrolled {
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.35);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #000;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 var(--gold);
}

.brand-word {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-word span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.navbar-nav .nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper) !important;
  padding: 0.45rem 0.7rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
}

.comic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 3px solid #000;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.62rem 1rem;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.comic-btn:hover {
  color: #111;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

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

.comic-btn.ink {
  background: #111;
  color: var(--gold);
}

.comic-btn.ink:hover {
  color: var(--gold);
}

.comic-btn.wide {
  min-width: 160px;
}

.navbar-toggler {
  border: 3px solid #000;
  background: var(--gold);
  box-shadow: 3px 3px 0 #000;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.kicker {
  display: inline-block;
  background: var(--gold);
  color: #111;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.28rem 0.6rem;
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  margin: 0;
}

.section-note {
  max-width: 280px;
  color: var(--mute);
  font-size: 0.92rem;
  margin: 0;
}

.panel {
  background: var(--panel);
  border: 4px solid #000;
  box-shadow: var(--shadow);
}

.paper-panel {
  background: var(--paper);
  color: #161513;
  border: 4px solid #000;
  box-shadow: var(--shadow);
}

.safe-frame {
  width: 100%;
  background: #000;
}

.safe-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* HERO — splash page on a perspective plinth */
.hero {
  padding: 7.5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.issue-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 3px solid #000;
  background: var(--paper);
  color: #111;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  box-shadow: 4px 4px 0 #000;
  margin-bottom: 1.2rem;
}

.issue-chip i {
  color: var(--gold-deep);
}

.hero-title {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: clamp(5.2rem, 14vw, 9.4rem);
  letter-spacing: 0.08em;
  line-height: 0.78;
  margin: 0 0 0.4rem;
  text-shadow: 6px 6px 0 #000;
}

.hero-symbol {
  display: inline-block;
  font-family: "Bangers", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.speech {
  position: relative;
  background: var(--paper);
  color: #171513;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem 1.35rem;
  max-width: 540px;
}

.speech p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
}

.speech:after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -22px;
  width: 28px;
  height: 22px;
  background: var(--paper);
  border-right: 4px solid #000;
  border-bottom: 4px solid #000;
  clip-path: polygon(0 0, 100% 0, 40% 100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.hero-stage {
  position: relative;
}

.hero-art {
  position: relative;
  z-index: 2;
  border: 5px solid #000;
  background: #000;
  box-shadow: 12px 12px 0 #000, 12px 12px 0 5px var(--gold);
}

.hero-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-plinth {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  bottom: -34px;
  height: 70px;
  background: repeating-linear-gradient(
    90deg,
    #0c0c0e 0 16px,
    #1b1b20 16px 32px
  );
  transform: perspective(280px) rotateX(52deg);
  transform-origin: center top;
  border: 3px solid #000;
}

.pow-tag {
  position: absolute;
  z-index: 3;
  top: -18px;
  left: -12px;
  background: var(--blush);
  color: #fff;
  border: 3px solid #000;
  font-family: "Bangers", system-ui, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  padding: 0.15rem 0.55rem;
  box-shadow: 4px 4px 0 #000;
}

/* ABOUT — wide cinema strip */
.about {
  padding-top: 3rem;
}

.about-board {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.1rem;
}

.about-copy {
  padding: 1.6rem 1.5rem 1.7rem;
}

.about-copy h3 {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.8rem;
}

.about-copy p {
  margin: 0;
  font-family: "Literata", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.6;
}

.banner-panel {
  padding: 0.7rem;
  background: #000;
}

.banner-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ORIGIN — collected clipping */
.origin .clip-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1.1rem;
}

.origin-side {
  padding: 1.5rem;
}

.origin-side h3 {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.7rem;
}

.origin-side p {
  color: var(--mute);
  margin: 0 0 1.2rem;
  line-height: 1.55;
}

.tweet-card {
  background: #fff8ec;
  color: #161513;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem 1.1rem;
}

.tweet-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.tweet-top img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border: 3px solid #000;
}

.tweet-name {
  font-weight: 800;
  line-height: 1.15;
}

.tweet-name small {
  display: block;
  font-weight: 600;
  color: #6d6658;
}

.tweet-body {
  font-family: "Literata", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.tweet-photo {
  border: 3px solid #000;
  background: #000;
  margin-bottom: 0.85rem;
}

.tweet-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tweet-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6a6356;
}

/* HOW TO BUY — sunday strip */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.strip-cell {
  min-height: 100%;
  padding: 1.15rem 1rem 1.2rem;
}

.strip-num {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 2rem;
  color: var(--gold-deep);
  line-height: 1;
}

.strip-cell i {
  font-size: 1.7rem;
  margin: 0.7rem 0 0.55rem;
}

.strip-cell h3 {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
}

.strip-cell p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ca-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.ca-bar code {
  color: var(--gold);
  font-size: 0.92rem;
  word-break: break-all;
}

.ca-bar.is-pending code {
  color: var(--mute);
}

/* COMMUNITY — membership badge */
.community-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.1rem;
  align-items: center;
}

.logo-badge {
  padding: 1.3rem;
  background: #000;
}

.logo-badge img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}

.community-copy {
  padding: 1.7rem 1.5rem;
}

.community-copy h3 {
  font-family: "Bangers", system-ui, sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.6rem;
}

.community-copy p {
  margin: 0 0 1.2rem;
  line-height: 1.55;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer {
  border-top: 4px solid #000;
  padding: 1.4rem 0 1.8rem;
  color: var(--mute);
  font-size: 0.86rem;
}

.site-footer strong {
  color: var(--paper);
}

@media (max-width: 991.98px) {
  .hero-grid,
  .about-board,
  .origin .clip-wrap,
  .community-board,
  .strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.4rem;
  }

  .nav-cta {
    margin-top: 0.8rem;
  }

  .hero-plinth {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
