/*
 * The marketing site. Read on a laptop or a phone, at rest, by someone deciding
 * whether this is worth their time - so this one is for reading, unlike the app,
 * which is for glancing at mid-effort.
 */

:root {
  --bg: #0b0d10;
  --surface: #13171c;
  --border: #232a33;
  --text: #e9edf2;
  --muted: #909bab;
  --accent: #ff4b36;
  --yes: #46b083;
  color-scheme: dark;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); }
a:hover { text-decoration-color: currentColor; }

header.site, footer.site, main { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header.site {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.wordmark { font-weight: 700; letter-spacing: -0.02em; text-decoration: none; font-size: 18px; }
header.site nav { display: flex; gap: 20px; flex-wrap: wrap; font-size: 15px; color: var(--muted); }

main { padding-bottom: 64px; }

section { margin: 0 0 56px; }
section.narrow { max-width: 640px; }

h1 {
  font-size: clamp(30px, 6.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 700;
  margin: 0 0 20px;
}
h2 { font-size: clamp(21px, 3.4vw, 26px); letter-spacing: -0.018em; margin: 0 0 16px; }
h3 { font-size: 17px; margin: 0 0 8px; }
p { margin: 0 0 16px; }

.lead { font-size: clamp(18px, 2.4vw, 21px); color: #c8d1dc; }
.small { font-size: 15px; color: var(--muted); }

.hero { padding: 16px 0 8px; }

.cta {
  display: inline-block;
  background: var(--text);
  color: #0b0d10;
  font-weight: 650;
  text-decoration: none;
  border-radius: 10px;
  padding: 15px 28px;
  margin: 8px 0;
}
.cta:hover { background: #fff; }

ol.protocol { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); }
ol.protocol li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
ol.protocol .dur {
  flex: none;
  width: 72px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: var(--muted);
}
ol.protocol li.sprint { color: #fff; }
ol.protocol li.sprint .dur { color: var(--accent); }

ol.steps { padding-left: 20px; }
ol.steps li { margin-bottom: 10px; }

.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid p { color: var(--muted); font-size: 16px; margin: 0; }

ul.plain { list-style: none; padding: 0; margin: 0; }
ul.plain li { padding: 10px 0; border-bottom: 1px solid var(--border); }
ul.plain li:last-child { border-bottom: 0; }

.honest {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.honest ul { padding-left: 20px; margin: 0; }
.honest li { margin-bottom: 12px; }
.honest li:last-child { margin-bottom: 0; }

.callout {
  background: #2a1613;
  border: 1px solid #4a2723;
  border-radius: 14px;
  padding: 24px;
}
.callout h2 { margin-top: 0; }
.callout ul { padding-left: 20px; }
.callout li { margin-bottom: 6px; }

table { width: 100%; border-collapse: collapse; font-size: 16px; }
th, td { text-align: left; padding: 12px 10px 12px 0; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 14px; }
td.yes { color: var(--yes); font-weight: 600; }
td.no { color: var(--accent); font-weight: 600; }

footer.site { border-top: 1px solid var(--border); padding-top: 24px; padding-bottom: 56px; color: var(--muted); font-size: 15px; }
footer.site p { margin: 0 0 8px; }
