@font-face {
  font-family: "HermesScript";
  src: url("/assets/GreatVibes-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "HermesCondensed";
  src: url("/assets/police.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07090b;
  --panel: #101216;
  --panel-2: #17191e;
  --text: #f7f2ec;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.13);
  --red: #ed242b;
  --red-rgb: 237, 36, 43;
  --gold: #ffffff;
  --cream: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.article-page {
  background: #000;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0;
}

.brand-logo {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #050505;
  object-fit: cover;
}

.brand-name {
  color: var(--text);
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
}

nav a.active,
nav a:hover {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

main {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: 56px 0 36px;
}

.hero-copy h1,
.article-header h1,
.section-head h2,
.archive-head h1,
.prose h1 {
  margin: 0;
  max-width: 920px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: clamp(42px, 7vw, 98px);
  line-height: 0.94;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-feature {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), #090a0d);
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.92));
  z-index: 1;
}

.hero-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.feature-label,
.hero-feature strong,
.hero-feature small {
  position: relative;
  z-index: 2;
}

.feature-label {
  display: inline-flex;
  padding: 9px 12px;
  background: var(--red);
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.hero-feature strong {
  display: block;
  margin-top: 380px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-feature small {
  display: block;
  margin-top: 12px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.45;
}

.section-head {
  margin: 0 0 24px;
}

.section-head h2,
.archive-head h1,
.prose h1 {
  font-size: clamp(36px, 5vw, 68px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 82px;
}

.dossier-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 0 54px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(var(--red-rgb), 0.2), rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.015));
}

.dossier-callout h2 {
  margin: 0;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  text-transform: uppercase;
}

.dossier-callout p:last-child {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.55;
}

.dossier-list {
  margin-bottom: 82px;
}

.dossier-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.dossier-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.76;
}

.dossier-card span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 48px);
}

.dossier-card em {
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dossier-card strong {
  display: block;
  margin: 16px 0 14px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
}

.dossier-card small {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.card:hover {
  border-color: rgba(var(--red-rgb), 0.6);
  transform: translateY(-2px);
}

.card:hover::after {
  opacity: 1;
}

.card-format {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  max-width: calc(100% - 32px);
  align-items: center;
  padding: 7px 10px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 220ms ease,
    transform 320ms ease;
}

.card:hover .card-image {
  opacity: 0.86;
  transform: translateY(0);
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 196px;
  flex-direction: column;
  justify-content: space-between;
}

.card strong {
  display: block;
  margin: 46px 0 12px;
  color: var(--text);
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.card:hover strong,
.card:focus-visible strong {
  color: var(--red);
}

.muted {
  color: var(--muted);
}

.card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.card em {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.card:hover small,
.card:hover em,
.card:focus-visible small,
.card:focus-visible em {
  opacity: 0;
  transform: translateY(6px);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
  padding: 54px 0 80px;
}

.article {
  min-width: 0;
}

.article-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  font-size: clamp(46px, 7vw, 86px);
}

.dossier-header {
  margin-bottom: 34px;
}

.article-facts {
  display: grid;
  gap: 8px;
}

.article-facts span {
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.demo-badge {
  margin-left: 8px;
  padding: 4px 7px;
  background: var(--red);
  color: white;
}

.format-pill {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  margin: 0 0 18px;
  padding: 9px 13px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-frame {
  margin: 34px 0;
}

.dossier-flow {
  display: grid;
  gap: 0;
}

.dossier-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(34px, 6vw, 58px) 0;
}

.dossier-block + .dossier-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dossier-block.reverse {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 0.9fr);
}

.dossier-block.reverse .dossier-text {
  order: 2;
}

.dossier-block.reverse .dossier-media {
  order: 1;
}

.dossier-text h2 {
  margin: 0 0 16px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.dossier-text p:last-child {
  margin: 0;
  color: #ddd3ca;
  font-size: 19px;
  line-height: 1.72;
}

.dossier-media {
  margin: 0;
}

.dossier-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.reel-shell {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #000;
}

.reel-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 46%, rgba(0, 0, 0, 0.76));
}

.reel-shell img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  opacity: 0.78;
}

.reel-brand {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  padding: 10px 16px;
  background: var(--red);
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.article-body,
.source-note,
.reaction-slot,
.ad-slot,
.related,
.prose {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.article-body,
.source-note,
.prose {
  padding: clamp(22px, 4vw, 34px);
}

.article-body p,
.source-note p,
.prose p {
  margin: 0 0 18px;
  color: #ddd3ca;
  font-size: 19px;
  line-height: 1.72;
}

.prose h2 {
  margin: 38px 0 14px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.prose ul {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.prose li {
  padding-left: 16px;
  border-left: 3px solid var(--red);
  color: #ddd3ca;
  font-size: 18px;
  line-height: 1.6;
}

.prose li strong {
  color: var(--text);
}

.source-note {
  margin-top: 16px;
}

.source-note h2,
.reaction-slot h2,
.related h2 {
  margin: 0 0 16px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 31px;
  text-transform: uppercase;
}

.source-note a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.reaction-slot,
.ad-slot,
.related {
  padding: 20px;
}

.reaction-grid {
  display: flex;
  gap: 8px;
}

.reaction-grid button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  background: #050505;
  color: var(--text);
  cursor: pointer;
  font: 26px/1 system-ui, sans-serif;
}

.reaction-grid button:hover {
  border-color: var(--red);
  background: var(--red);
}

.ad-slot {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 18px),
    rgba(255, 255, 255, 0.025);
}

.ad-slot span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ad-slot strong {
  display: block;
  max-width: 180px;
  font-size: 17px;
}

.mini-link {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.mini-link strong {
  display: block;
  margin-top: 6px;
  font-family: HermesCondensed, Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.narrow {
  max-width: 940px;
  padding: 60px 0 90px;
}

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

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .article-shell,
  .article-header,
  .dossier-block,
  .dossier-block.reverse,
  .dossier-card {
    grid-template-columns: 1fr;
  }

  .dossier-block.reverse .dossier-text,
  .dossier-block.reverse .dossier-media {
    order: initial;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-feature {
    min-height: 520px;
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100vw - 24px, 1180px);
  }

  nav {
    width: 100%;
    overflow-x: auto;
  }

  .hero-copy h1,
  .article-header h1 {
    font-size: 44px;
  }

  .hero-feature strong {
    font-size: 38px;
  }
}
