:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --ink: #080808;
  --muted: #56524d;
  --line: rgba(8, 8, 8, 0.1);
  --panel: #ffffff;
  --dark: #0a0a0a;
  --red: #ef4444;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.nav,
.section,
.footer {
  margin: 0 auto;
  max-width: 880px;
  padding-left: 20px;
  padding-right: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-dot {
  display: inline-block;
  width: 0.24em;
  height: 0.24em;
  border-radius: 1px;
  background: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  padding-top: 48px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #777169;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.02;
}

.lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

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

.section {
  padding-top: 62px;
  padding-bottom: 62px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  line-height: 1.16;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
}

.body {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
}

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

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.card p,
.qa p,
.footer p {
  color: var(--muted);
}

.qa {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.qa:first-of-type {
  border-top: 0;
}

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

.list li {
  border-left: 3px solid var(--red);
  padding-left: 14px;
  color: var(--muted);
}

.table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.footer {
  padding-top: 36px;
  padding-bottom: 46px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 28px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }
}
