:root{
  --bg: #fff;
  --text: #111;
  --muted: #333;
  --border: #111;
  --bw: 4px;
  --max: 1100px;

  --s1: 10px;
  --s2: 16px;
  --s3: 24px;
  --s4: 36px;
  --s5: 56px;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
}

a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
a:hover{ border-bottom-width: 2px; }
a:focus-visible{
  outline: 2px solid #000;
  outline-offset: 3px;
}

#bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.page{
  position: relative;
  z-index: 1;
}

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s4) var(--s2);
}

.header{
  border-bottom: var(--bw) solid var(--border);
  padding: var(--s3) 0;
  margin-bottom: var(--s4);
}

.brand{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
}

.brand h1{
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  letter-spacing: 0.2px;
}

.brand .sub{
  margin: 6px 0 0 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
  max-width: 70ch;
}

.nav{
  margin-top: var(--s3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
}
.nav a{
  border-bottom: 0;
  padding: 6px 0;
}
.nav a:hover{ border-bottom: 2px solid currentColor; }

.hero{
  padding: var(--s3) 0 var(--s2) 0;
}
.kicker{
  margin: 0 0 var(--s2) 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--muted);
}
.h1{
  margin: 0 0 var(--s2) 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.12;
}
.lead{
  margin: 0;
  max-width: 78ch;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  color: var(--text);
}

.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s3);
  margin-top: var(--s4);
}
@media (min-width: 900px){
  .grid{ grid-template-columns: 1fr 1fr; }
}

.box{
  border: var(--bw) solid var(--border);
  background: #fff;
  padding: var(--s3);
}

.box h2{
  margin: 0 0 var(--s2) 0;
  font-size: 22px;
  line-height: 1.25;
}

.box p, .box li{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.box p{ margin: 0 0 var(--s2) 0; }
.box p:last-child{ margin-bottom: 0; }

.list{
  margin: 0;
  padding-left: 18px;
}
.list li{ margin: 7px 0; }

.hr{
  border: 0;
  border-top: 1px solid #bbb;
  margin: var(--s4) 0;
}

.footer{
  margin-top: var(--s5);
  border-top: var(--bw) solid var(--border);
  padding: var(--s3) 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.footer .row{
  display: flex;
  justify-content: space-between;
  gap: 10px 18px;
  flex-wrap: wrap;
}
.footer a{ border-bottom: 0; }
.footer a:hover{ border-bottom: 2px solid currentColor; }

.notice{
  font-size: 13px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
