:root {
  --ink: #0a1113;
  --panel: #111b1e;
  --panel-2: #172527;
  --paper: #eee7d2;
  --muted: #aeb4aa;
  --line: rgba(238, 231, 210, 0.16);
  --mint: #76f5ca;
  --gold: #e2bb5f;
  --rust: #e86856;
  --blue: #8ab4f8;
  --white: #fbf7ea;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#main,
main section,
.page-hero,
footer {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(238, 231, 210, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 231, 210, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 42px 42px;
  color: var(--paper);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  opacity: 0.22;
  z-index: 10;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 17, 19, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 245, 202, 0.56);
  background: #0f1b1d;
  color: var(--mint);
  font: 700 20px/1 "Consolas", monospace;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: "Georgia", serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 11px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
  outline: 1px solid var(--line);
  outline-offset: -1px;
}

.nav-links .nav-cta {
  min-width: 164px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding-inline: 16px;
  color: var(--ink);
  background: var(--mint);
  border: 1px solid var(--mint);
  font-weight: 800;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--ink);
  outline-color: rgba(118, 245, 202, 0.7);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 128px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.92) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 17, 19, 0.96) 0%, rgba(10, 17, 19, 0.72) 46%, rgba(10, 17, 19, 0.38) 100%),
    linear-gradient(0deg, rgba(10, 17, 19, 0.9) 0%, transparent 44%);
}

.hero-copy {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--mint);
  font-family: "Consolas", "Cascadia Mono", monospace;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 920px;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 710px;
  margin: 20px 0 0;
  color: rgba(238, 231, 210, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-protocol {
  width: min(820px, 100%);
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(118, 245, 202, 0.2);
  background: rgba(10, 17, 19, 0.58);
  list-style: none;
}

.hero-protocol li {
  padding: 14px 16px;
  border-right: 1px solid rgba(118, 245, 202, 0.16);
}

.hero-protocol li:last-child {
  border-right: 0;
}

.hero-protocol strong,
.hero-protocol span {
  display: block;
}

.hero-protocol strong {
  color: var(--gold);
  font: 700 12px/1.2 "Consolas", monospace;
  text-transform: uppercase;
}

.hero-protocol span {
  margin-top: 6px;
  color: rgba(238, 231, 210, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

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

.button {
  min-width: 164px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}

.button.ghost {
  color: var(--paper);
  background: rgba(238, 231, 210, 0.06);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 1px solid rgba(255, 255, 255, 0.26);
  outline-offset: 3px;
}

.hero-stats {
  width: min(760px, 100%);
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(10, 17, 19, 0.66);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  font: 700 34px/1 "Consolas", monospace;
  color: var(--gold);
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.notice-band {
  padding: 18px max(16px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(226, 187, 95, 0.32);
  background: rgba(226, 187, 95, 0.12);
  color: #f8e8b8;
}

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

.protocol {
  border-bottom: 1px solid var(--line);
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.protocol-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(17, 27, 30, 0.9);
}

.protocol-grid span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--mint);
  font: 700 12px/1.2 "Consolas", monospace;
  text-transform: uppercase;
}

.protocol-grid h3 {
  font-size: 23px;
}

.protocol-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.stack {
  display: grid;
  gap: 14px;
}

.insight,
.topic-card,
.risk-tool,
.risk-output,
.evidence article,
.content-card,
.term,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(17, 27, 30, 0.86);
  border-radius: 8px;
}

.insight {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
}

.number {
  color: var(--gold);
  font: 700 18px/1 "Consolas", monospace;
  grid-row: 1 / span 2;
}

.insight h3,
.insight p {
  grid-column: 2;
}

.insight h3,
.topic-card h3,
.evidence h3,
.content-card h3,
.term h3,
.faq-item h3 {
  font-size: 21px;
  line-height: 1.15;
}

.insight p,
.topic-card p,
.evidence p,
.content-card p,
.term p,
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.matrix {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.topic-card {
  min-height: 260px;
  padding: 22px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topic-card:hover,
.topic-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(118, 245, 202, 0.5);
  background: rgba(23, 37, 39, 0.96);
  outline: none;
}

.topic-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 245, 202, 0.5);
  color: var(--mint);
  font: 700 18px/1 "Consolas", monospace;
}

.risk-section {
  border-bottom: 1px solid var(--line);
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 18px;
  align-items: stretch;
}

.risk-tool {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label,
legend {
  color: var(--paper);
  font-weight: 700;
}

select,
input[type="range"] {
  width: 100%;
  margin-top: 8px;
}

select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #0b1416;
  color: var(--paper);
}

input[type="range"] {
  accent-color: var(--mint);
}

fieldset {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  margin: 0;
  padding: 18px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--mint);
}

.risk-output {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.risk-label {
  color: var(--muted);
  text-transform: uppercase;
  font-family: "Consolas", monospace;
  font-size: 12px;
}

.risk-output strong {
  margin-top: 10px;
  color: var(--gold);
  font: 700 82px/1 "Consolas", monospace;
}

.meter {
  height: 12px;
  margin: 18px 0;
  background: rgba(238, 231, 210, 0.1);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--rust));
}

.risk-output p {
  color: var(--paper);
  margin: 0;
}

.evidence {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.evidence-list {
  display: grid;
  gap: 14px;
}

.evidence article {
  padding: 22px;
}

.cta-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 72px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(118, 245, 202, 0.38);
  background: #10201e;
  border-radius: 8px;
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px max(16px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--paper);
  text-decoration: none;
}

.page-hero {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0 48px;
}

.page-hero h1 {
  font-size: clamp(44px, 8vw, 88px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(238, 231, 210, 0.86);
  font-size: 20px;
}

.content-grid {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 96px;
  display: grid;
  gap: 16px;
}

.content-card {
  padding: 26px;
}

.article-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 46px;
}

.article-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 7.2vw, 88px);
}

.article-hero p {
  max-width: 800px;
  color: rgba(238, 231, 210, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.keyword-strip {
  width: min(980px, 100%);
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.keyword-strip span,
.keyword-strip strong,
.keyword-strip em {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: rgba(17, 27, 30, 0.72);
  color: var(--muted);
  font: 700 12px/1.2 "Consolas", monospace;
  text-transform: uppercase;
}

.keyword-strip strong {
  color: var(--gold);
}

.keyword-strip em {
  font-style: normal;
  color: var(--mint);
}

.article-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  align-items: start;
}

.article-main,
.article-sidebar {
  display: grid;
  gap: 16px;
}

.article-section,
.answer-box,
.sidebar-panel,
.related-card,
.cluster-link,
.cluster-stats div {
  border: 1px solid var(--line);
  background: rgba(17, 27, 30, 0.86);
  border-radius: 8px;
}

.answer-box {
  padding: 28px;
  border-color: rgba(118, 245, 202, 0.34);
  background: rgba(16, 32, 30, 0.86);
}

.answer-box span,
.panel-label {
  color: var(--mint);
  font: 700 12px/1.2 "Consolas", monospace;
  text-transform: uppercase;
}

.answer-box p {
  margin: 12px 0 0;
  color: var(--paper);
  font-size: 19px;
}

.article-section {
  padding: 28px;
}

.article-section h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.article-section p,
.article-section li {
  color: var(--muted);
  font-size: 17px;
}

.article-section p {
  margin: 12px 0 0;
}

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

.check-list li,
.source-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.source-list a {
  color: var(--paper);
  text-decoration-color: rgba(118, 245, 202, 0.42);
  text-underline-offset: 4px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
}

.sidebar-panel {
  padding: 22px;
}

.sidebar-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 20px;
  line-height: 1.2;
}

.sidebar-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.related-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.related-card {
  display: grid;
  gap: 7px;
  padding: 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.related-card:hover,
.related-card:focus-visible,
.cluster-link:hover,
.cluster-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(118, 245, 202, 0.5);
  background: rgba(23, 37, 39, 0.98);
  outline: none;
}

.related-card span,
.cluster-link span {
  color: var(--gold);
  font: 700 12px/1 "Consolas", monospace;
}

.related-card strong,
.cluster-link strong {
  color: var(--paper);
  line-height: 1.2;
}

.compact .faq-item {
  padding: 18px;
}

.compact .faq-item h2 {
  font-family: "Segoe UI", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}

.cluster-hero {
  padding-bottom: 34px;
}

.cluster-stats {
  width: min(820px, 100%);
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cluster-stats div {
  padding: 20px;
}

.cluster-stats dt {
  color: var(--gold);
  font: 700 36px/1 "Consolas", monospace;
}

.cluster-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.cluster-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 96px;
  display: grid;
  gap: 42px;
}

.cluster-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.cluster-heading h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

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

.cluster-link {
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cluster-link em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.content-card ul,
.content-card ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.content-card li + li {
  margin-top: 10px;
}

.term-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.term {
  padding: 22px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(17, 27, 30, 0.86);
}

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

th {
  color: var(--mint);
  font-family: "Consolas", monospace;
  font-size: 13px;
  text-transform: uppercase;
}

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

tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    background: #0b1416;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .nav-links.is-open {
    display: flex;
  }

  .split,
  .evidence,
  .tool-layout,
  .article-layout,
  .cluster-section {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .topic-grid,
  .term-grid,
  .protocol-grid,
  .cluster-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section,
  .article-hero,
  .article-layout,
  .cluster-wrap,
  .page-hero,
  .content-grid,
  .cta-strip {
    width: min(1180px, calc(100% - 12px));
  }

  h1,
  h2,
  h3 {
    overflow-wrap: break-word;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-copy {
    padding: 76px 0 34px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

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

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .hero-protocol {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .topic-grid,
  .term-grid,
  .protocol-grid,
  .risk-tool,
  .cluster-links,
  .cluster-stats {
    grid-template-columns: 1fr;
  }

  .protocol-grid article {
    min-height: auto;
  }

  .protocol-grid span {
    margin-bottom: 28px;
  }

  .insight {
    grid-template-columns: 1fr;
  }

  .number,
  .insight h3,
  .insight p {
    grid-column: auto;
    grid-row: auto;
  }

  .topic-card {
    min-height: 220px;
  }

  .content-card,
  .answer-box,
  .article-section,
  .sidebar-panel,
  .faq-item,
  .compact .faq-item {
    padding: 12px;
  }

  .article-section p,
  .article-section li,
  .answer-box p {
    font-size: 15px;
    line-height: 1.45;
  }

  .keyword-strip span,
  .keyword-strip strong,
  .keyword-strip em {
    max-width: 100%;
    white-space: normal;
  }

  table {
    min-width: 0;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    background: rgba(17, 27, 30, 0.86);
  }

  th,
  td {
    padding: 10px;
    font-size: 13px;
  }

  td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--mint);
    font: 700 11px/1.2 "Consolas", monospace;
    text-transform: uppercase;
  }

  td:nth-child(1)::before {
    content: "Category";
  }

  td:nth-child(2)::before {
    content: "What to check";
  }

  td:nth-child(3)::before {
    content: "What not to assume";
  }

  .cta-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .risk-output strong {
    font-size: 64px;
  }
}
