:root {
  --decision-charcoal: #0b0d0d;
  --meter-navy: #11243a;
  --meter-navy-2: #172f4d;
  --bill-paper: #eee7da;
  --bill-paper-soft: #d9d0c2;
  --highlighter-amber: #e49324;
  --utility-blue: #4476ad;
  --graphite-line: #424846;
  --ink: #f5f0e8;
  --muted: #b9afa2;
  --shadow: rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(68, 118, 173, .18), transparent 34rem),
    radial-gradient(circle at 86% 4%, rgba(228, 147, 36, .10), transparent 32rem),
    linear-gradient(180deg, #090b0b 0%, var(--decision-charcoal) 42%, #0a0c0d 100%);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

p, h1, h2, h3, li, .btn, .card, .resource-row, .notice {
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(238, 231, 218, .12);
  background: rgba(8, 11, 12, .88);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1220px;
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark,
.brand-logo {
  display: block;
}

.brand-logo {
  width: min(280px, 32vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-wrap: nowrap;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  border-bottom-color: var(--highlighter-amber);
}

main {
  overflow: hidden;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 22px;
}

.hero {
  max-width: 1220px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 70px 22px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 42px;
  align-items: center;
}

.page-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 78px 22px 34px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .72fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(68, 118, 173, .45);
  border-radius: 6px;
  background: rgba(17, 36, 58, .68);
  color: #cbe1fb;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlighter-amber);
  box-shadow: 0 0 0 4px rgba(228, 147, 36, .16);
}

h1, h2, h3, .stat-value {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .95;
}

h1 {
  max-width: 760px;
  font-size: clamp(50px, 8.6vw, 116px);
  font-weight: 800;
}

.page-hero h1 {
  font-size: clamp(52px, 7.4vw, 92px);
}

h1 .mark,
h2 .mark {
  color: var(--highlighter-amber);
  text-decoration: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: 8px;
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  font-size: clamp(24px, 2.7vw, 34px);
}

.hero-copy,
.lede {
  max-width: 660px;
  margin: 24px 0 28px;
  color: var(--bill-paper-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--graphite-line);
  border-radius: 6px;
  background: rgba(238, 231, 218, .04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.btn.primary {
  border-color: rgba(228, 147, 36, .75);
  background: var(--highlighter-amber);
  color: #16110b;
}

.btn.blue {
  border-color: rgba(68, 118, 173, .7);
  background: rgba(68, 118, 173, .18);
  color: #d7e7fb;
}

.notice {
  max-width: 760px;
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--utility-blue);
  background: rgba(17, 36, 58, .42);
  color: var(--muted);
  font-size: 14px;
}

.desk-panel,
.mini-board,
.method-panel,
.contact-card {
  position: relative;
  border: 1px solid rgba(238, 231, 218, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 36, 58, .9), rgba(9, 11, 12, .96)),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(238, 231, 218, .03) 24px);
  box-shadow: 0 28px 80px var(--shadow);
  overflow: hidden;
}

.desk-panel {
  min-height: 520px;
}

.desk-panel::before,
.mini-board::before,
.method-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(228, 147, 36, .10), transparent 32%),
    radial-gradient(circle at 72% 18%, rgba(68, 118, 173, .28), transparent 16rem);
  pointer-events: none;
}

.paper {
  position: absolute;
  width: 58%;
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 4px;
  background: var(--bill-paper);
  color: #0f1111;
  transform: rotate(-3deg);
  top: 80px;
  left: 52px;
  box-shadow: 0 26px 42px rgba(0, 0, 0, .28);
}

.paper.second {
  width: 50%;
  min-height: 230px;
  top: 220px;
  left: auto;
  right: 44px;
  transform: rotate(4deg);
}

.paper-line {
  height: 9px;
  margin-top: 18px;
  border-radius: 99px;
  background: rgba(16, 17, 17, .45);
}

.paper-line.short {
  width: 66%;
}

.paper-line.blue {
  width: 78%;
  background: rgba(68, 118, 173, .8);
}

.highlight {
  display: inline;
  padding: 2px 5px;
  background: rgba(228, 147, 36, .8);
  color: #120f0a;
  font-weight: 800;
}

.desk-stamp {
  position: absolute;
  top: 40px;
  right: 38px;
  z-index: 2;
  padding: 12px 16px;
  border: 1px solid var(--highlighter-amber);
  border-radius: 4px;
  color: #ffd695;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  transform: rotate(1deg);
}

.utility-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid rgba(68, 118, 173, .55);
  background: rgba(17, 36, 58, .92);
  color: #cfe4ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--bill-paper-soft);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.card,
.paper-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(238, 231, 218, .12);
  border-radius: 8px;
  background: rgba(17, 36, 58, .56);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.paper-card {
  background:
    linear-gradient(180deg, rgba(238, 231, 218, .96), rgba(217, 208, 194, .94));
  color: #111;
}

.card p,
.paper-card p {
  color: var(--bill-paper-soft);
}

.paper-card p {
  color: #3d3832;
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--highlighter-amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.check-band {
  border-top: 1px solid rgba(238, 231, 218, .10);
  border-bottom: 1px solid rgba(238, 231, 218, .10);
  background:
    linear-gradient(90deg, rgba(17, 36, 58, .78), rgba(11, 13, 13, .88)),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(238, 231, 218, .025) 22px);
}

.do-not-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.do-not-item,
.check-item {
  padding: 18px;
  border: 1px solid rgba(228, 147, 36, .34);
  border-radius: 6px;
  background: rgba(228, 147, 36, .08);
  color: #ffd89d;
  font-weight: 800;
}

.hub-grid,
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 24px;
  align-items: start;
}

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

.resource-row {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(238, 231, 218, .12);
  border-radius: 8px;
  background: rgba(238, 231, 218, .055);
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(68, 118, 173, .22);
  color: #d8e9ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.method-panel {
  padding: 24px;
}

.method-panel > * {
  position: relative;
}

.method-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 18px;
  color: var(--bill-paper-soft);
}

.method-step strong {
  color: var(--highlighter-amber);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, .6fr);
  gap: 24px;
  align-items: stretch;
}

.about-panel,
.article-panel {
  padding: 34px;
  border: 1px solid rgba(238, 231, 218, .12);
  border-radius: 8px;
  background: rgba(238, 231, 218, .055);
}

.article-panel {
  max-width: 920px;
}

.article-panel p,
.article-panel li,
.about-panel p {
  color: var(--bill-paper-soft);
}

.article-panel h2,
.article-panel h3 {
  margin-top: 28px;
}

.mini-board {
  min-height: 360px;
  padding: 30px;
}

.mini-note {
  position: relative;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 6px;
  background: var(--bill-paper);
  color: #111;
  box-shadow: 0 20px 34px rgba(0, 0, 0, .22);
}

.mini-note p {
  color: #34302b;
}

.mini-note.two {
  margin-left: 48px;
  transform: rotate(2deg);
}

.mini-note.one {
  transform: rotate(-2deg);
}

.contact-card {
  padding: 30px;
}

.contact-card > * {
  position: relative;
}

.site-footer {
  border-top: 1px solid rgba(238, 231, 218, .12);
  background: #070909;
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  grid-template-areas:
    "links legal"
    "logo disclaimer";
  gap: 22px 34px;
}

.footer-inner > div:first-child {
  display: contents;
}

.footer-logo {
  grid-area: logo;
  width: min(260px, 54vw);
  align-self: end;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-legal {
  grid-area: legal;
  justify-self: end;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  background: #070909;
  color: #d6e9ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-legal a {
  padding: 0 0 2px;
  border-bottom: 1px solid rgba(68, 118, 173, .8);
}

.footer-legal a + a::before {
  content: "/";
  margin-right: 10px;
  color: rgba(238, 231, 218, .35);
}

.disclaimer {
  grid-area: disclaimer;
  align-self: end;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.disclaimer a,
.article-panel a,
.contact-card a {
  color: #d6e9ff;
  text-decoration: underline;
  text-decoration-color: rgba(68, 118, 173, .8);
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(320px, 82vw);
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .hero,
  .page-hero,
  .hub-grid,
  .content-grid,
  .about,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-areas:
      "links"
      "legal"
      "logo"
      "disclaimer";
  }

  .footer-links {
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-legal {
    justify-self: start;
    padding-left: 0;
    background: transparent;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .desk-panel {
    min-height: 430px;
  }

  .cards,
  .cards.two,
  .do-not-list,
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding: 14px 16px;
  }

  .section,
  .hero,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    width: 100%;
  }

  .hero {
    display: block;
    overflow: hidden;
  }

  .hero > * {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(28px, 7.4vw, 32px);
    line-height: 1.06;
  }

  .hero h1 {
    max-width: calc(100vw - 32px);
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
  }

  .hero-copy,
  .lede {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 16px;
    line-height: 1.45;
  }

  .desk-panel,
  .method-panel,
  .mini-board,
  .contact-card,
  .about-panel,
  .article-panel,
  .card,
  .paper-card,
  .resource-row,
  .notice {
    max-width: 100%;
  }

  .desk-panel {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    min-height: 380px;
    margin-top: 32px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    gap: 10px 14px;
    font-size: 11px;
    letter-spacing: .02em;
  }

  .nav a {
    white-space: normal;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "links"
      "legal"
      "logo"
      "disclaimer";
  }

  .footer-legal {
    grid-area: legal;
    justify-self: start;
    padding-left: 0;
    background: transparent;
  }

  .disclaimer {
    text-align: left;
  }

  h1 .mark,
  h2 .mark {
    display: inline;
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
  }

  .cards,
  .cards.two,
  .do-not-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .btn {
    width: 100%;
  }

  .notice {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    font-size: 14px;
    line-height: 1.45;
  }

  .resource-row {
    grid-template-columns: 1fr;
  }

  .paper {
    width: 64%;
    left: 22px;
    top: 66px;
    padding: 16px;
    min-height: 245px;
  }

  .paper.second {
    width: 58%;
    right: 22px;
    top: 210px;
    min-height: 190px;
  }

  .desk-stamp {
    top: 22px;
    right: 22px;
    max-width: 130px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .utility-strip {
    flex-wrap: wrap;
  }

  .mini-note.two {
    margin-left: 0;
  }
}
