:root {
  --ink: #252527;
  --paper: #f7f6f2;
  --muted: #666463;
  --line: #dedbd4;
  --orange: #ff4a12;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-underline-offset: 4px;
}

.page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 820;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.lede {
  max-width: 680px;
  margin: 24px 0 44px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

p,
ul {
  margin: 0;
  color: var(--muted);
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 8px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 820;
  text-decoration: none;
}

.meta {
  margin-top: 52px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 32px, 860px);
    padding-top: 22px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 42px;
  }
}
