:root {
  --bg: #faf9f5;
  --surface: #fffefa;
  --ink: #111110;
  --muted: #6f6c66;
  --quiet: #9a9790;
  --rule: #e0dbd2;
  --blush: #ecded9;
  --sage: #e4ebe1;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--rule);
}
nav img { display: block; width: auto; height: 20px; }

main { width: min(100% - 40px, 760px); margin: 0 auto; padding: 64px 0 96px; }
.back { display: inline-block; margin-bottom: 36px; color: var(--quiet); font-size: 13px; text-decoration: none; }
.back:hover, a:hover { color: var(--ink); }
.eyebrow { margin: 0 0 14px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
h1 { max-width: 700px; margin: 0 0 18px; font-size: clamp(40px, 8vw, 60px); font-weight: 650; letter-spacing: -.045em; line-height: 1.04; }
.dek { max-width: 680px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.5; }
.reviewed { margin: 20px 0 0; color: var(--quiet); font-size: 12px; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 48px 0 64px; }
.fit-card { padding: 24px; border: 1px solid var(--rule); border-radius: 18px; background: var(--surface); }
.fit-card.haven { background: var(--blush); border-color: transparent; }
.fit-label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.fit-card p { margin: 0; color: #3e3c38; font-size: 15px; }

section { margin-top: 56px; }
h2 { margin: 0 0 16px; font-size: 26px; letter-spacing: -.025em; line-height: 1.2; }
h3 { margin: 28px 0 8px; font-size: 18px; letter-spacing: -.015em; }
p { margin: 0 0 16px; font-size: 16px; }
ul { margin: 12px 0 0; padding-left: 22px; }
li { margin-bottom: 10px; }
a { color: inherit; text-underline-offset: 3px; }

.difference { padding: 30px; border-left: 3px solid #b69b90; background: rgba(236, 222, 217, .42); }
.difference p:last-child { margin-bottom: 0; }
.honest-note { padding: 24px; border-radius: 16px; background: var(--sage); }
.honest-note strong { display: block; margin-bottom: 6px; }
.honest-note p { margin: 0; }

.table-wrap { margin-top: 24px; overflow-x: auto; border: 1px solid var(--rule); border-radius: 16px; background: var(--surface); }
table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--rule); text-align: left; vertical-align: top; }
th { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
th:first-child, td:first-child { width: 27%; font-weight: 650; }
tr:last-child td { border-bottom: 0; }

.verdict { padding: 30px; border: 1px solid var(--rule); border-radius: 18px; background: var(--surface); }
.verdict p:last-child { margin-bottom: 0; }
.cta { margin-top: 56px; padding: 32px; border-radius: 18px; background: var(--blush); text-align: center; }
.cta p { margin-bottom: 16px; font-weight: 650; }
.button { display: inline-block; padding: 13px 24px; border-radius: 999px; background: var(--ink); color: white; font-size: 14px; font-weight: 650; text-decoration: none; }
.button:hover { color: white; opacity: .82; }
.cta small { display: block; margin-top: 12px; color: var(--muted); }

.sources { padding-top: 24px; border-top: 1px solid var(--rule); color: var(--muted); }
.sources p, .sources li { font-size: 13px; }
.sources ul { margin-top: 8px; }

footer { display: flex; justify-content: center; gap: 24px; padding: 20px 32px; border-top: 1px solid var(--rule); }
footer a { color: var(--quiet); font-size: 12px; text-decoration: none; }

@media (max-width: 620px) {
  main { width: min(100% - 32px, 760px); padding-top: 44px; }
  .fit-grid { grid-template-columns: 1fr; }
  .difference, .verdict, .cta { padding: 24px; }
  footer { flex-wrap: wrap; gap: 12px 20px; }
}
