:root {
  --paper: #f2eee6;
  --surface: #fbf8f1;
  --ink: #171814;
  --muted: #66675f;
  --line: #d4cec1;
  --accent: #d75d3b;
  --focus: #235ccc;
  --sans: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { color-scheme: light; }

body {
  margin: 0;
  min-height: 100svh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.shell {
  width: min(100% - 48px, 1500px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--surface);
  background: var(--ink);
  font: 700 14px/1 var(--mono);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.nav-actions {
  justify-content: flex-end;
  gap: 9px;
}

.nav-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #bbb5aa;
  border-radius: 7px;
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nav-button:hover { background: rgba(255, 255, 255, .9); }

.nav-button.primary {
  border-color: var(--ink);
  color: var(--surface);
  background: var(--ink);
}

.nav-button.primary:hover { background: #282b27; }

.page {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 72px;
}

.hero {
  max-width: 930px;
  padding-bottom: clamp(50px, 7vw, 84px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 795;
  line-height: .94;
  letter-spacing: -.04em;
}

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 540;
  line-height: 1.42;
  letter-spacing: -.018em;
}

.content { border-top: 1px solid var(--line); }

.item {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(0, 1.8fr);
  gap: clamp(34px, 6vw, 88px);
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.item h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.answer > :first-child { margin-top: 0; }
.answer > :last-child { margin-bottom: 0; }

.item p,
.item ul,
.item ol {
  color: var(--muted);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.58;
}

.item p { margin: 12px 0 0; }
.item ul,
.item ol { margin: 0; padding-left: 1.25rem; }
.item li + li { margin-top: 7px; }

.revenue-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.revenue-row strong {
  color: var(--ink);
  font-size: 42px;
  letter-spacing: -.04em;
}

.revenue-row span {
  max-width: 340px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

footer {
  margin-top: auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

footer p { margin: 0; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

.legal { display: flex; gap: 15px; }

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .shell { width: min(100% - 48px, 820px); }
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand actions" "links links";
    padding: 12px 0;
    row-gap: 12px;
  }
  .brand { grid-area: brand; }
  .nav-links { grid-area: links; justify-content: center; }
  .nav-actions { grid-area: actions; }
}

@media (max-width: 680px) {
  .shell { width: calc(100% - 28px); }
  .nav {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "actions" "links";
    gap: 11px;
    padding: 12px 0 14px;
  }
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .nav-button { min-height: 42px; }
  .nav-links {
    justify-content: flex-start;
    gap: 20px;
    padding-top: 4px;
    overflow-x: auto;
    white-space: nowrap;
  }
  .page { padding: 48px 0 56px; }
  .hero { padding-bottom: 46px; }
  h1 { font-size: clamp(44px, 13vw, 62px); }
  .lead { margin-top: 20px; font-size: 18px; }
  .item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 27px 0 30px;
  }
  .item p,
  .item ul,
  .item ol { font-size: 16px; }
  .revenue-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  footer { align-items: flex-start; flex-direction: column; }
}
