:root {
  --black: #111111;
  --ink: #202020;
  --paper: #f5f2e9;
  --white: #fffefa;
  --gray: #dad9d4;
  --orange: #ff5a2f;
  --green: #4ba56c;
  --line: rgba(17, 17, 17, .22);
  --sans: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main, section, article, header, footer, nav, div, figure, aside { min-width: 0; }
h1, h2, h3, p, li, th, td, figcaption, a { overflow-wrap: anywhere; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  padding: 8px max(18px, 4vw);
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 30px;
  background: rgba(245, 242, 233, .95);
  border-bottom: 3px solid var(--black);
  backdrop-filter: blur(16px);
}

.brand { width: 235px; }
.brand svg { display: block; width: 100%; height: auto; }

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 44px);
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
  color: var(--black);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.site-header nav a:hover::after { transform: scaleX(1); }

.site-header > strong {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 4px solid var(--orange);
  font-size: .68rem;
}

.hero {
  position: relative;
  min-height: max(760px, calc(100vh - 84px));
  display: grid;
  grid-template-columns: minmax(440px, 1.02fr) minmax(0, .98fr);
  color: var(--paper);
  background: var(--black);
  border-bottom: 8px solid var(--orange);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  height: 18%;
  content: "";
  background:
    linear-gradient(45deg, var(--orange) 25%, transparent 25% 75%, var(--orange) 75%),
    linear-gradient(45deg, var(--orange) 25%, var(--black) 25% 75%, var(--orange) 75%);
  background-position: 0 0, 18px 18px;
  background-size: 36px 36px;
  opacity: .35;
}

.hero-media {
  position: relative;
  min-height: 680px;
  border-right: 8px solid var(--orange);
  overflow: hidden;
}

.hero-media figure { height: 100%; margin: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: saturate(.85) contrast(1.04);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(17, 17, 17, .55));
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  right: 25px;
  bottom: 95px;
  left: 25px;
  z-index: 2;
  padding: 13px 16px;
  color: var(--black);
  background: var(--paper);
  border-left: 8px solid var(--orange);
  font-size: .7rem;
  font-weight: 800;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(75px, 9vw, 140px) max(25px, 6vw) 130px;
  align-self: center;
}

.hero-copy > p {
  margin: 0 0 25px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  font: 900 clamp(3.8rem, 6.5vw, 8rem)/.86 var(--sans);
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.risk-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper);
  background: var(--black);
  border-top: 3px solid var(--paper);
}

.risk-tabs span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(245, 242, 233, .35);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.risk-tabs span:nth-child(2) { background: #292929; }
.risk-tabs span:nth-child(3) { background: #47251c; }
.risk-tabs span:nth-child(4) { background: var(--orange); }

.overview {
  padding: clamp(80px, 11vw, 165px) max(20px, 7vw);
  display: grid;
  grid-template-columns: minmax(170px, .35fr) minmax(0, 1.65fr);
  align-items: start;
  gap: clamp(40px, 8vw, 145px);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .045) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, .045) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.overview > header {
  position: sticky;
  top: 115px;
  color: var(--white);
  background: var(--black);
  border-bottom: 12px solid var(--orange);
  text-align: center;
}

.overview > header span {
  display: block;
  padding: 38px 20px 12px;
  font: 900 clamp(3.8rem, 8vw, 8rem)/.8 var(--sans);
  letter-spacing: -.07em;
}

.overview > header p {
  margin: 0;
  padding: 13px;
  color: var(--black);
  background: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.overview-content {
  max-width: 1080px;
  color: #575757;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
}

.overview-content p { margin: 0 0 1.45em; }

.overview-content > p:first-child {
  color: var(--black);
  font: 400 clamp(1.5rem, 2.7vw, 2.6rem)/1.38 var(--serif);
}

.report-stack { background: var(--black); }

.report {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-bottom: 8px solid var(--black);
}

.report:nth-child(even) { background: var(--gray); }
.report:nth-child(4n) { color: var(--paper); background: #222; }

.report > header {
  min-height: 280px;
  padding: clamp(60px, 9vw, 130px) max(24px, 8vw) 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 2px solid currentColor;
}

.report > header span {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.report h2 {
  max-width: 1250px;
  margin: 0;
  font: 900 clamp(3rem, 6.5vw, 8rem)/.86 var(--sans);
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.report-body {
  width: min(1080px, calc(100% - 40px));
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(60px, 9vw, 125px) 0;
  color: #575757;
  font-size: clamp(.99rem, 1.12vw, 1.09rem);
}

.report:nth-child(4n) .report-body { color: #d1d1d1; }
.report-body > :first-child { margin-top: 0; }
.report-body > :last-child { margin-bottom: 0; }
.report-body p { margin: 0 0 1.45em; }

.report-body h3 {
  margin: 50px 0 20px;
  padding-left: 22px;
  color: var(--black);
  border-left: 10px solid var(--orange);
  font: 900 clamp(1.65rem, 3vw, 2.8rem)/1.05 var(--sans);
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.report:nth-child(4n) .report-body h3 { color: var(--paper); }

.report-body ul, .report-body ol {
  margin: 27px 0 42px;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.report-body li {
  position: relative;
  margin: 10px 0;
  padding: 6px 0 6px 50px;
}

.report-body ul > li::before {
  position: absolute;
  top: .68em;
  left: 7px;
  width: 23px;
  height: 12px;
  content: "";
  background: var(--orange);
}

.report-body ol > li { counter-increment: item; }

.report-body ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  content: counter(item);
  background: var(--black);
  border: 3px solid var(--orange);
  font-size: .68rem;
  font-weight: 900;
}

.report:nth-child(4n) .report-body ol > li::before { background: var(--orange); border-color: var(--paper); }

.report-body figure {
  width: calc(100% + clamp(24px, 7vw, 110px));
  max-width: none;
  margin: 60px 0 60px calc(clamp(12px, 3.5vw, 55px) * -1);
  padding: 11px;
  background: var(--black);
  border: 4px solid var(--orange);
  box-shadow: 15px 15px 0 rgba(255, 90, 47, .28);
}

.report-body figure img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  background: var(--black);
}

.report-body figcaption {
  padding: 13px 8px 3px;
  color: var(--paper);
  font-size: .7rem;
  font-weight: 700;
  text-align: center;
}

.table-scroll {
  width: calc(100% + clamp(24px, 7vw, 110px));
  max-width: none;
  margin: 50px 0 65px calc(clamp(12px, 3.5vw, 55px) * -1);
  overflow-x: auto;
  background: var(--white);
  border: 4px solid var(--black);
  box-shadow: 12px 12px 0 var(--orange);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  border-collapse: collapse;
  background: var(--white);
}

.overview-content > table, .report-body > table {
  width: 100%;
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

thead { color: var(--white); background: var(--black); }

th, td {
  min-width: 140px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: .8rem;
  line-height: 1.52;
}

th {
  color: #ff9b7f;
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) { background: rgba(255, 90, 47, .08); }
strong,
b {
  color: inherit;
  font-weight: inherit;
}

#faq .report-body > ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#faq .report-body > ol > li {
  margin: 0;
  padding: 26px 25px 22px 72px;
  background: var(--paper);
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 var(--orange);
}

#faq .report-body > ol > li::before { top: 23px; left: 24px; }
#faq .report-body > ol > li p { margin: 10px 0 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.site-footer {
  min-height: 370px;
  padding: 75px max(22px, 7vw);
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  align-items: center;
  gap: 45px;
  color: var(--paper);
  background:
    linear-gradient(120deg, transparent 67%, rgba(255, 90, 47, .7) 67%),
    var(--black);
  border-top: 8px solid var(--orange);
}

.footer-logo { width: min(350px, 75vw); }
.footer-logo svg { display: block; width: 100%; height: auto; }
.site-footer nav { display: flex; gap: 30px; }

.site-footer nav a {
  color: var(--paper);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer nav a:hover { color: #ff9b7f; }

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(245, 242, 233, .58);
  font-size: .72rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); }
  .hero h1 { font-size: clamp(3.4rem, 7.5vw, 6.4rem); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 130px; }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .brand { width: 195px; }

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 23px;
    padding: 5px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a { white-space: nowrap; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
    border-right: 0;
    border-bottom: 8px solid var(--orange);
  }

  .hero-media img { min-height: 520px; }
  .hero-copy { padding: 75px 20px 125px; }
  .hero h1 { font-size: clamp(3.3rem, 12vw, 5.7rem); }

  .risk-tabs {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-tabs span { min-height: 52px; border-bottom: 1px solid rgba(245, 242, 233, .35); }

  .overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview > header {
    position: static;
    width: min(260px, 90%);
  }

  .report > header { min-height: 230px; }
  .report h2 { font-size: clamp(2.6rem, 10vw, 5rem); }

  #faq .report-body > ol { grid-template-columns: 1fr; }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo { margin-inline: auto; }
  .site-footer nav { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 440px) {
  .site-header { padding-inline: 12px; }
  .brand { width: 165px; }
  .site-header > strong { width: 39px; height: 39px; }
  .hero-media, .hero-media img { min-height: 390px; }
  .hero-media figcaption { right: 12px; bottom: 88px; left: 12px; }
  .hero h1 { font-size: clamp(2.9rem, 13vw, 4.3rem); }
  .overview { padding-inline: 14px; }

  .report > header { padding: 55px 16px 35px; }
  .report h2 { font-size: 2.55rem; }
  .report-body { width: calc(100% - 28px); }

  .report-body figure, .table-scroll {
    width: calc(100% + 12px);
    margin-left: -6px;
  }

  #faq .report-body > ol > li { padding: 23px 15px 18px 56px; }
  #faq .report-body > ol > li::before { left: 14px; }
  th, td { min-width: 135px; padding: 11px; }
}

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

  .reveal { opacity: 1; transform: none; }
}
