html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  background: #fbfaf8;
  color: #1c1b19;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}
::selection { background: rgba(46, 90, 138, .14); }
a { color: inherit; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(56px, 12vh, 128px) 24px 0;
}
main {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

/* Hero */
header {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wordmark {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #1c1b19;
}
a.wordmark { text-decoration: none; }
.portrait {
  width: 72px;
  height: 72px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}
h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 48px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.022em;
  text-wrap: balance;
  max-width: 15em;
}

/* Sections */
section {
  display: flex;
  flex-direction: column;
}
.intro {
  margin-top: 56px;
  gap: 22px;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.65;
  color: #3a3835;
}
.ruled {
  margin-top: 72px;
  border-top: 1px solid #e7e4de;
  padding-top: 56px;
}
.story { gap: 40px; }
.results { gap: 36px; }
.results-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.asks { gap: 24px; }
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  color: #3a3835;
  text-align: left;
}
.compare th {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8a8579;
}
.compare th,
.compare td {
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid #e7e4de;
  vertical-align: top;
}
.compare td:first-child {
  font-weight: 600;
  color: #1c1b19;
}
h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8a8579;
}
p { margin: 0; }
.body-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: #3a3835;
}
strong {
  font-weight: 600;
  color: #1c1b19;
}
.emph { color: #1c1b19; }

/* Footer */
footer {
  margin-top: 88px;
  border-top: 1px solid #e7e4de;
  padding: 32px 0 64px;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3835;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 6px;
  align-items: baseline;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 6px;
  align-items: baseline;
}
footer a {
  color: #2e5a8a;
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 90, 138, .3);
}
footer a:hover { border-bottom-color: rgba(46, 90, 138, .8); }
.sep { color: #b5b0a5; }

@media print {
  @page { margin: 0.5in; }
  h1, h2 { break-after: avoid; }
  img, table, tr { break-inside: avoid; max-width: 100%; }
  p { orphans: 3; widows: 3; }
}
