:root {
  color-scheme: dark;
  --ink: #f6f2e9;
  --muted: #c9c1b4;
  --dim: #928b82;
  --bg: #0d1110;
  --panel: #151b19;
  --panel-2: #20221b;
  --line: rgba(246, 242, 233, 0.14);
  --red: #d84c3f;
  --gold: #d3a545;
  --green: #6ca06f;
  --blue: #7ea1b8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 76, 63, 0.18), transparent 30%),
    linear-gradient(180deg, #101412 0%, #0d1110 46%, #12130f 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(13, 17, 16, 0.78);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #101412;
  display: inline-flex;
  font-size: 0.78rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.top-nav {
  display: flex;
  gap: 6px;
}

.top-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  padding: 10px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero {
  display: block;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.9) 0%, rgba(13, 17, 16, 0.54) 48%, rgba(13, 17, 16, 0.88) 100%),
    linear-gradient(180deg, rgba(13, 17, 16, 0.08), rgba(13, 17, 16, 0.86)),
    linear-gradient(135deg, rgba(216, 76, 63, 0.32), rgba(13, 17, 16, 0.92)),
    url("https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/2001760/ss_37556c971f35d6d1e48523f3a1d4090efb7dcf50.1920x1080.jpg")
      center / cover;
  inset: 0;
  min-height: 520px;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  min-width: 0;
  padding: clamp(72px, 10vw, 132px) 40px 64px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 11ch;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.24;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  font-size: 1.12rem;
  max-width: 620px;
}

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

.button,
.filter {
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  min-height: 44px;
  padding: 11px 16px;
  text-decoration: none;
  white-space: normal;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fffaf2;
}

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

.fact-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 40px 0 0;
  padding-top: 20px;
}

.fact-strip div {
  border-right: 1px solid var(--line);
  padding: 0 18px 0 0;
  min-width: 0;
}

.fact-strip div + div {
  padding-left: 18px;
}

.fact-strip div:last-child {
  border-right: 0;
}

dt {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  font-size: 1rem;
  font-weight: 800;
  margin: 6px 0 0;
  overflow-wrap: anywhere;
}

.section,
.research-band {
  padding: 86px 40px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
}

.research-band {
  align-items: start;
  background: #f0eadf;
  color: #171b18;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.8fr 1.2fr;
}

.research-band p {
  color: #4d504a;
}

.intent-grid,
.combat-grid,
.guide-list,
.tracker-grid {
  display: grid;
  gap: 14px;
}

.intent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intent-grid article {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.two-column {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
}

.section-copy {
  max-width: 760px;
}

.status-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 8px;
}

.panel-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px;
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
}

.panel-row strong {
  color: var(--ink);
  text-align: right;
}

.combat-lab {
  border-top: 1px solid var(--line);
}

.combat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.combat-grid article,
.guide-item,
details {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.tag,
.pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.tag {
  background: rgba(126, 161, 184, 0.18);
  color: #b8d5e5;
}

.pill {
  background: rgba(211, 165, 69, 0.16);
  color: #efc76a;
}

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

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  color: var(--muted);
  min-height: 38px;
  padding: 8px 12px;
}

.filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130b;
}

.guide-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-item {
  min-height: 230px;
}

.guide-item a,
.url-grid a {
  text-decoration: none;
}

.guide-item.is-hidden {
  display: none;
}

.url-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.url-grid a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  min-height: 178px;
  padding: 20px;
}

.url-grid span,
.article-status {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.url-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(13, 17, 16, 0.9), rgba(13, 17, 16, 0.72)),
    url("https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/2001760/header.jpg")
      center / cover;
  border-bottom: 1px solid var(--line);
  padding: 72px 40px;
}

.article-hero-inner,
.content-layout {
  margin: 0 auto;
  max-width: 1180px;
}

.breadcrumb {
  color: var(--muted);
  display: inline-flex;
  font-size: 0.92rem;
  margin-bottom: 22px;
  text-decoration: none;
}

.article-hero h1 {
  max-width: 13ch;
}

.article-meta {
  color: var(--dim);
  font-size: 0.94rem;
  margin-top: 18px;
}

.content-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  padding: 64px 40px 88px;
}

.article-body {
  min-width: 0;
}

.article-body section {
  border-bottom: 1px solid var(--line);
  padding: 0 0 34px;
  margin-bottom: 34px;
}

.article-body section:last-child {
  border-bottom: 0;
}

.article-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.article-body ul,
.article-body ol {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 22px;
}

.toc {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  position: sticky;
  top: 96px;
}

.toc h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.toc a {
  color: var(--muted);
  display: block;
  padding: 8px 0;
  text-decoration: none;
}

.toc a:hover {
  color: var(--ink);
}

.data-table {
  border: 1px solid var(--line);
  border-collapse: collapse;
  margin: 20px 0;
  width: 100%;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.callout {
  background: rgba(211, 165, 69, 0.1);
  border: 1px solid rgba(211, 165, 69, 0.35);
  border-radius: 8px;
  padding: 18px;
}

.page-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
}

.tracker {
  align-items: start;
  background:
    linear-gradient(rgba(13, 17, 16, 0.82), rgba(13, 17, 16, 0.88)),
    url("https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/2001760/ss_2e461fd29d34033c7b53a45f6c30124d18fcd1f2.1920x1080.jpg")
      center / cover;
  border: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
  max-width: none;
}

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

.tracker-grid label {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
}

input[type="checkbox"] {
  accent-color: var(--green);
  height: 18px;
  width: 18px;
}

.faq {
  max-width: 920px;
}

details {
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
}

details p {
  margin: 14px 0 0;
}

.sources {
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.sources a {
  color: #f1ca6e;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px 40px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .research-band,
  .two-column,
  .tracker {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-content {
    padding: 64px 28px 48px;
  }

  h1 {
    max-width: 12ch;
  }

  .intent-grid,
  .combat-grid,
  .guide-list,
  .tracker-grid,
  .url-grid,
  .page-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
    position: static;
  }

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

  .hero-media {
    min-height: 300px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
    max-width: 10ch;
  }

  .section,
  .research-band,
  .tracker {
    padding: 56px 20px;
  }

  .fact-strip,
  .intent-grid,
  .combat-grid,
  .guide-list,
  .tracker-grid,
  .url-grid,
  .page-links {
    grid-template-columns: 1fr;
  }

  .article-hero,
  .content-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fact-strip div,
  .fact-strip div + div {
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }

  .fact-strip div:first-child {
    border-top: 0;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
