:root {
  --bg: #050505;
  --panel: #151515;
  --panel-2: #202020;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --red: #e62429;
  --blue: #178ee8;
  --line: #333;
  --max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  background: #202020;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  grid-template-rows: 52px 40px;
  min-height: 92px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::before {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  pointer-events: none;
}

.brand {
  color: #fff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  grid-column: 2;
  grid-row: 1;
  line-height: 0.9;
  text-align: center;
  text-decoration: none;
  text-shadow: 3px 3px 0 var(--red);
  text-transform: uppercase;
  transform: skew(-10deg);
}

.brand span:first-child {
  color: var(--blue);
  margin-right: 7px;
}

.brand span:last-child {
  color: #fff;
}

.main-nav {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0;
  grid-column: 1 / -1;
  grid-row: 2;
  height: 40px;
  justify-content: center;
}

.main-nav a,
.subscribe-link {
  color: #fff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 40px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover,
.subscribe-link:hover {
  color: var(--red);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 3px;
  left: 22px;
  opacity: 0;
  position: absolute;
  right: 22px;
  transform: translateY(1px);
  transition: opacity 0.15s ease;
}

.main-nav a:hover::after {
  opacity: 1;
}

.header-actions {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  grid-column: 3;
  grid-row: 1;
  gap: 22px;
  height: 100%;
  justify-content: center;
}

.icon-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 42px;
  position: relative;
  width: 42px;
}

.icon-button:hover span {
  border-color: var(--red);
}

.icon-button:hover span::after {
  background: var(--red);
}

.icon-button span {
  border: 4px solid #fff;
  border-radius: 999px;
  display: block;
  height: 24px;
  left: 8px;
  position: absolute;
  top: 6px;
  width: 24px;
}

.icon-button span::after {
  background: #fff;
  content: "";
  height: 16px;
  position: absolute;
  right: -9px;
  top: 16px;
  transform: rotate(-45deg);
  width: 4px;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 70% 45%, rgba(230, 36, 41, 0.26), transparent 28%),
    linear-gradient(90deg, #050505 0%, #050505 45%, #120808 100%);
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(360px, 0.84fr) minmax(340px, 0.62fr);
  min-height: calc(100vh - 92px);
  padding: 64px clamp(28px, 5.8vw, 92px) 58px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
  bottom: 0;
  content: "";
  height: 140px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-copy,
.hero-cover {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-heading p,
.comic-card span,
.forum-posts span {
  color: var(--red);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(72px, 11vw, 164px);
  font-style: italic;
  line-height: 0.82;
  margin: 0;
  max-width: 760px;
  text-transform: uppercase;
}

.hero h1 span {
  color: #fff;
  display: block;
}

.lead {
  color: #e8e8e8;
  font-size: clamp(19px, 1.75vw, 26px);
  font-weight: 700;
  line-height: 1.28;
  margin: 22px 0 0;
  max-width: 620px;
}

.issue-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  max-width: 560px;
}

.issue-meta div {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px 18px 13px 0;
}

.issue-meta div:last-child {
  border-right: 0;
  padding-left: 18px;
}

.issue-meta div:nth-child(2) {
  padding-left: 18px;
}

.issue-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.issue-meta dd {
  color: #fff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 15px;
  font-style: italic;
  margin: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.primary-button,
.secondary-button,
.comic-card button,
.plan button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 16px;
  font-style: italic;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  text-decoration: none;
  text-transform: uppercase;
  transform: skew(-12deg);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.primary-button,
.comic-card button,
.plan-featured button {
  background: var(--red);
  color: #fff;
}

.secondary-button,
.plan button {
  background: #fff;
  color: #101010;
}

.primary-button:hover,
.secondary-button:hover,
.comic-card button:hover,
.plan button:hover {
  transform: skew(-12deg) translateY(-2px);
}

.hero-cover {
  margin: 0;
}

.hero-cover img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 36px 90px rgba(230, 36, 41, 0.28);
  display: block;
  max-height: 650px;
  object-fit: cover;
  width: min(100%, 500px);
}

.ticker {
  background: var(--red);
  color: #fff;
  display: flex;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 16px;
  gap: 48px;
  overflow: hidden;
  padding: 18px 24px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 68px clamp(22px, 5vw, 84px);
}

.section-dark {
  background: #0b0b0b;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: var(--max);
}

.section-heading-row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.section-heading h2 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(34px, 4.6vw, 62px);
  font-style: italic;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.section-link,
.section-note {
  color: inherit;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 13px;
  max-width: 360px;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
}

.section-link {
  border-bottom: 3px solid var(--red);
  padding-bottom: 8px;
}

.section-note {
  color: #555;
  line-height: 1.35;
}

.comic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: var(--max);
}

.filter {
  background: var(--panel);
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 12px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 18px;
  text-transform: uppercase;
}

.filter.is-active {
  background: var(--red);
  border-color: var(--red);
}

.comic-grid,
.plans {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: var(--max);
}

.comic-card,
.plan,
.forum-form,
.forum-posts article {
  background: var(--panel);
  border: 1px solid var(--line);
}

.comic-card {
  display: grid;
  grid-template-rows: 340px 1fr;
  min-height: 548px;
  overflow: hidden;
}

.comic-card img,
.cover-art {
  height: 340px;
  object-fit: cover;
  width: 100%;
}

.cover-art {
  align-items: center;
  background: linear-gradient(135deg, #101010, #123a60 55%, #e62429);
  color: #fff;
  display: flex;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 92px;
  font-style: italic;
  justify-content: center;
  text-shadow: 7px 7px 0 #000;
}

.comic-card--red .cover-art {
  background: linear-gradient(135deg, #101010, #581010 55%, #e62429);
}

.comic-card div:last-child {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.comic-card h3,
.plan h3,
.forum-posts h3 {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 25px;
  font-style: italic;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.comic-card p,
.plan p,
.forum-posts p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.38;
}

.comic-card button {
  align-self: flex-start;
  margin-top: auto;
}

.subscription {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.94)),
    #fff;
  color: #111;
}

.subscription .section-heading p {
  color: var(--red);
}

.plan {
  background: #fff;
  color: #111;
  min-height: 270px;
  padding: 28px;
  position: relative;
}

.plan::before {
  background: var(--red);
  content: "";
  height: 5px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
}

.plan-featured {
  background: #111;
  border-color: var(--red);
  color: #fff;
  transform: translateY(-14px);
}

.price {
  color: var(--red) !important;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 40px !important;
  margin: 0;
}

.videos {
  background:
    radial-gradient(circle at 28% 42%, rgba(23, 142, 232, 0.18), transparent 28%),
    #080808;
}

.video-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 360px;
  margin: 0 auto;
  max-width: var(--max);
}

.video-main,
.video-list button {
  background: var(--panel);
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.video-main {
  align-items: center;
  display: flex;
  gap: 22px;
  min-height: 300px;
  padding: 34px;
}

.video-main strong {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(30px, 4.4vw, 56px);
  font-style: italic;
  text-transform: uppercase;
}

.play-icon {
  border-bottom: 34px solid transparent;
  border-left: 54px solid var(--red);
  border-top: 34px solid transparent;
  display: block;
  height: 0;
  width: 0;
}

.video-list {
  display: grid;
  gap: 14px;
}

.video-list button {
  font-weight: 900;
  min-height: 104px;
  padding: 22px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.video-list button:hover {
  border-color: var(--red);
  color: var(--red);
}

.forum {
  background: #fff;
  color: #111;
}

.forum-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.forum-form {
  background: #f4f4f4;
  display: grid;
  gap: 16px;
  padding: 26px;
}

.forum-form label {
  display: grid;
  font-weight: 900;
  gap: 8px;
}

.forum-form input,
.forum-form textarea {
  border: 1px solid #bbb;
  min-height: 48px;
  padding: 12px;
}

.forum-form input:focus,
.forum-form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(230, 36, 41, 0.18);
}

.forum-form textarea {
  min-height: 130px;
  resize: vertical;
}

.forum-posts {
  display: grid;
  gap: 16px;
}

.forum-posts article {
  background: #f8f8f8;
  color: #111;
  padding: 24px;
}

.forum-posts article:first-child {
  border-left: 6px solid var(--red);
}

.modal {
  background: #111;
  border: 1px solid var(--red);
  color: #fff;
  max-width: 520px;
  padding: 34px;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.modal-close {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  position: absolute;
  right: 18px;
  top: 10px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: 42px 46px;
    min-height: 88px;
    padding-left: 16px;
  }

  .brand {
    font-size: 20px;
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }

  .main-nav {
    background: #151515;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
  }

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

  .main-nav a {
    font-size: 9px;
    line-height: 46px;
    flex: 0 0 auto;
    padding: 0 12px 0 0;
  }

  .main-nav a::after {
    left: 0;
    right: 12px;
  }

  .header-actions {
    border-left: 0;
    grid-column: 2;
    grid-row: 1;
    padding-right: 12px;
  }

  .subscribe-link {
    display: none;
  }

  .hero,
  .video-layout,
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 38px;
    min-height: 0;
    padding: 42px 24px 52px;
  }

  .hero h1 {
    font-size: clamp(62px, 20vw, 82px);
    max-width: 100%;
  }

  .lead {
    font-size: 20px;
  }

  .issue-meta {
    grid-template-columns: 1fr;
  }

  .issue-meta div,
  .issue-meta div:nth-child(2),
  .issue-meta div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    padding: 12px 0;
  }

  .issue-meta div:last-child {
    border-bottom: 0;
  }

  .comic-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: none;
  }

  .comic-card {
    grid-template-rows: 340px 1fr;
  }

  .comic-card img,
  .cover-art {
    height: 340px;
  }

  .section-heading-row {
    align-items: flex-start;
    display: block;
  }

  .section-link,
  .section-note {
    display: inline-block;
    margin-top: 16px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(62px, 20vw, 82px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .comic-card button,
  .plan button {
    width: min(100%, 260px);
  }
}
