@font-face {
  font-family: 'Druk Wide';
  src: url('/fonts/Druk Wide Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica Neue LT';
  src: url('/fonts/HelveticaNeueLTStd-Roman.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica LT';
  src: url('/fonts/HelveticaLTStd-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --neon: #e3e829;
  --orange: #fc4c02;
  --black: #000;
  --white: #fff;
  --grey: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue LT', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--neon);
  color: var(--black);
}

a {
  color: var(--neon);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hazard {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--neon) 0 14px, var(--black) 14px 28px);
}

.wrap {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 72px) clamp(18px, 5vw, 40px) 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica LT', Helvetica, Arial, sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 40px;
}

.brand svg {
  color: var(--neon);
}

h1 {
  font-family: 'Druk Wide', 'Arial Black', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.updated {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 40px;
}

h2 {
  font-family: 'Druk Wide', 'Arial Black', sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 44px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

p,
li {
  color: var(--grey);
  font-size: 15.5px;
  margin-bottom: 12px;
}

ul {
  padding-left: 20px;
}

li::marker {
  color: var(--neon);
}

strong {
  color: var(--white);
  font-weight: 400;
  font-family: 'Helvetica LT', Helvetica, Arial, sans-serif;
}

.note {
  border: 1px dashed rgba(252, 76, 2, 0.55);
  padding: 16px 18px;
  margin: 26px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.note b {
  color: var(--orange);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 14.5px;
}

th,
td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--grey);
  vertical-align: top;
}

th {
  color: var(--neon);
  font-family: 'Helvetica LT', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer {
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
}
