/* The comparison pages (/otter-alternative/, /granola-alternative/,
   /fr/alternative-otter/). Same look as the home page, which keeps its own
   styles inline, plus a table and two small text styles. */
:root {
  --bg: #ece5d3;
  --text: #1a2419;
  --text-soft: #5b6157;
  --text-faint: #8a8a7d;
  --accent: #2d4a35;
  --accent-deep: #223a29;
  --rule: #cdbd94;
  --amber: #E8A33D;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  background: var(--bg); color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
main { max-width: 680px; margin: 0 auto; padding: 64px 24px 120px; }
a { color: var(--accent); }
a:hover { color: var(--accent-deep); }

.wordmark {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, system-ui, sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: -.03em;
  color: var(--text); text-decoration: none;
}
.wordmark .dot { color: var(--amber); }
.family {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12.5px; color: var(--text-faint); letter-spacing: .08em;
}
.family a { color: var(--text-faint); text-decoration: none; }
.family a:hover { color: var(--accent); }

h1 { margin-top: 28px; font-size: 30px; line-height: 1.25; letter-spacing: -.015em; font-weight: 700; }
.intro { margin-top: 16px; font-size: 18.5px; line-height: 1.6; color: var(--text-soft); }

h2 {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint); margin: 52px 0 10px;
}
p + p { margin-top: 12px; }

.table { overflow-x: auto; margin: 0 -4px; }
table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
th, td { text-align: left; vertical-align: top; padding: 10px 8px; border-top: 1px solid var(--rule); }
thead th { border-top: 0; font-size: 13px; color: var(--text-faint); font-weight: 600; }
tbody th { font-weight: 600; color: var(--text); width: 26%; }
td { color: var(--text-soft); }
td:first-of-type { color: var(--text); }
.small { margin-top: 10px; font-size: 13.5px; color: var(--text-faint); }

ul.points { list-style: none; }
ul.points li { padding: 14px 0; border-top: 1px solid var(--rule); color: var(--text-soft); font-size: 16px; }
ul.points li strong { color: var(--text); font-weight: 600; }

.store {
  display: inline-block; margin-top: 44px; padding: 13px 22px 12px; border-radius: 14px;
  background: var(--accent); color: var(--bg); text-decoration: none;
  font-size: 17px; font-weight: 600; line-height: 1.3;
}
.store:hover { background: var(--accent-deep); color: var(--bg); }
.store small { display: block; font-size: 12.5px; font-weight: 400; opacity: .78; }
.also { margin-top: 28px; font-size: 15px; color: var(--text-soft); }

footer {
  margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--rule);
  color: var(--text-faint); font-size: 14px; display: flex; gap: 22px; flex-wrap: wrap;
}
footer a { color: var(--text-soft); text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 520px) {
  h1 { font-size: 25px; }
  tbody th { width: auto; }
  table { font-size: 14px; }
}
