:root {
  --ink: #05070b;
  --night: #151b25;
  --smoke: #2e3440;
  --slate: #3d4552;
  --hair: #d7bd94;
  --fur: #8d7558;
  --cyan: #02b3d3;
  --orange: #ff6a10;
  --cream: #f3e6d2;
  --white: #ffffff;
  --muted: #c9d0dc;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 189, 148, 0.2), transparent 22rem),
    radial-gradient(circle at 86% 8%, rgba(2, 179, 211, 0.18), transparent 20rem),
    linear-gradient(135deg, #111722 0%, #313743 46%, #0b0f17 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

body::after {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: clamp(42px, 7vw, 104px);
  content: "";
  background:
    linear-gradient(90deg, transparent 0 20%, var(--cyan) 20% 43%, var(--ink) 43% 55%, var(--orange) 55% 76%, transparent 76% 100%);
  opacity: 0.96;
  filter: drop-shadow(-18px 0 34px rgba(0, 0, 0, 0.28));
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--slate), var(--night));
  box-shadow: 0 18px 38px var(--shadow);
}

.brand-icon::before {
  position: absolute;
  inset: 10px 9px 11px;
  border: 5px solid var(--hair);
  border-bottom-color: transparent;
  border-radius: 50% 50% 34% 34%;
  content: "";
}

.brand-icon::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 28px;
  background: linear-gradient(var(--cyan) 0 50%, var(--orange) 50% 100%);
  content: "";
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a,
.nav button,
.action,
.outline-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav button:hover,
.action:hover,
.outline-action:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.cover {
  position: relative;
  display: grid;
  min-height: min(770px, calc(100vh - 90px));
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 34px;
}

.cover-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.issue-label {
  display: inline-grid;
  width: fit-content;
  grid-auto-flow: column;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(215, 189, 148, 0.42);
  padding: 9px 12px;
  color: var(--hair);
  background: rgba(215, 189, 148, 0.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.issue-label::before {
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  content: "";
}

h1 {
  max-width: 7ch;
  margin: 0;
  font-size: clamp(64px, 12vw, 154px);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.action,
.outline-action {
  min-width: 146px;
}

.action {
  border-color: rgba(2, 179, 211, 0.62);
  background: linear-gradient(90deg, var(--cyan), #168ba3);
}

.outline-action {
  border-color: rgba(255, 106, 16, 0.54);
}

.cover-stats {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.cover-stats div {
  min-height: 92px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.cover-stats div + div {
  border-left: 1px solid var(--line);
}

.cover-stats b {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
}

.cover-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.cover-art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 540px;
  background: var(--night);
  box-shadow: 0 30px 80px var(--shadow);
}

.cover-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
}

.cover-art::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.28), transparent 34%, transparent 68%, rgba(5, 7, 11, 0.18)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.7), transparent 34%);
  pointer-events: none;
}

.art-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 14px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-stage {
  width: min(1360px, calc(100% - 32px));
  margin: 12px auto 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #202733;
  box-shadow: 0 26px 72px var(--shadow);
}

.banner-stage img {
  display: block;
  width: 100%;
  height: clamp(220px, 33vw, 420px);
  object-fit: cover;
}

.marquee {
  display: flex;
  overflow: hidden;
  margin: 36px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.marquee-track {
  display: flex;
  min-width: max-content;
  animation: ticker 17s linear infinite;
}

.marquee span {
  padding: 16px 22px;
  color: var(--white);
  font-size: clamp(20px, 3.3vw, 42px);
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  padding: 18px 0 72px;
}

.lede,
.dossier {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 24px 64px var(--shadow);
}

.lede {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: clamp(22px, 4vw, 38px);
}

.lede h2,
.dossier h2,
.finale h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 78px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede p,
.finale p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dossier {
  padding: clamp(20px, 3vw, 30px);
}

.dossier-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.dossier-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 16px 0 4px;
}

.dossier-item b {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--ink);
  background: var(--hair);
  font-size: 20px;
  font-weight: 950;
}

.dossier-item:nth-child(2) b {
  background: var(--cyan);
}

.dossier-item:nth-child(3) b {
  background: var(--orange);
}

.dossier-item h3 {
  margin: 0 0 6px;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.dossier-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.finale {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 1px solid rgba(215, 189, 148, 0.32);
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(90deg, rgba(215, 189, 148, 0.18), transparent 56%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px var(--shadow);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

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

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .cover,
  .editorial {
    grid-template-columns: 1fr;
  }

  .cover-art {
    order: -1;
    min-height: 430px;
  }

  .cover-art img {
    min-height: 430px;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .shell,
  .banner-stage,
  .finale {
    width: min(100% - 22px, 1180px);
  }

  body::after {
    width: 34px;
  }

  .nav a,
  .nav button,
  .action,
  .outline-action {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .cover {
    padding-top: 10px;
  }

  .cover-stats {
    grid-template-columns: 1fr;
  }

  .cover-stats div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cover-art,
  .cover-art img {
    min-height: 360px;
  }

  .dossier-item {
    grid-template-columns: 1fr;
  }

  .dossier-item b {
    width: 56px;
    height: 56px;
  }

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