:root {
  color-scheme: light;
  --paper: oklch(97% 0.006 92);
  --surface: oklch(99% 0.004 92);
  --ink: oklch(19% 0.018 250);
  --muted: oklch(48% 0.018 250);
  --line: oklch(84% 0.012 250);
  --soft: oklch(93% 0.01 250);
  --accent: oklch(48% 0.14 242);
  --accent-dark: oklch(34% 0.13 242);
  --green: oklch(51% 0.12 150);
  --amber: oklch(62% 0.13 75);
  --max: 1120px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
}

.skip:focus {
  left: 10px;
  z-index: 20;
  background: var(--surface);
  padding: 8px 10px;
  border: 1px solid var(--line);
}

header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklch, var(--surface), transparent 5%);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 780;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
  border-radius: 7px;
  font-size: .85rem;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .92rem;
}

.navlinks a { color: var(--muted); text-decoration: none; }
.navlinks a:hover { color: var(--ink); }

main { min-height: 70vh; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 20px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: start;
}

.hero > *,
.grid > *,
.newsletter > *,
.section > *,
.article > * {
  min-width: 0;
}

.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  font-weight: 800;
  margin-bottom: 12px;
}

h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 12ch;
}

.lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 7px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--surface);
  text-decoration: none;
  font-weight: 740;
}

.button.secondary {
  color: var(--accent-dark);
  background: transparent;
}

.proof {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 18px;
  min-width: 0;
}

.proof h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: .94rem;
  min-width: 0;
}

.checklist li span:last-child {
  min-width: 0;
}

.check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--green);
  background: oklch(93% 0.035 150);
  font-weight: 900;
}

.band {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 16px;
  min-width: 0;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
  max-width: 100%;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .94rem;
}

.tag {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .5fr);
  gap: 20px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--surface);
  border-radius: 8px;
  padding: 22px;
}

.newsletter p { color: oklch(78% 0.012 250); margin: 8px 0 0; }

form {
  display: grid;
  gap: 9px;
  align-content: start;
}

label {
  font-size: .78rem;
  font-weight: 760;
  color: oklch(84% 0.012 250);
}

input {
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid oklch(48% 0.018 250);
  padding: 0 12px;
  font: inherit;
}

button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: oklch(78% 0.14 85);
  color: var(--ink);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.note {
  color: oklch(74% 0.012 250);
  font-size: .78rem;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 36px;
  color: var(--muted);
  font-size: .84rem;
}

.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 42px 20px;
}

.article h1 {
  max-width: 14ch;
  font-size: 2.55rem;
}

.article h2 {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article p, .article li { color: var(--muted); }

.comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: .92rem;
}

.comparison th, .comparison td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--soft);
  color: var(--ink);
}

@media (max-width: 860px) {
  .hero, .newsletter { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.25rem; max-width: 15ch; }
  .section-head { display: block; }
  .section-head p { margin-top: 8px; }
  .nav { align-items: flex-start; }
  .navlinks { flex-wrap: wrap; justify-content: flex-end; }
}

@media (max-width: 560px) {
  .nav { display: grid; }
  .navlinks {
    justify-content: flex-start;
    gap: 10px 14px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  h1, .article h1 { font-size: 1.95rem; }
  .hero { padding-top: 38px; }
  h2 { font-size: 1.35rem; }
  .proof h2,
  .card h3 {
    overflow-wrap: anywhere;
  }
}
