:root {
  --paper: #f4f1e9;
  --bright: #faf8f2;
  --ink: #11110f;
  --muted: #676660;
  --rule: rgba(17, 17, 15, 0.22);
  --blue: #1554ff;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.74), transparent 30rem),
    repeating-linear-gradient(93deg, rgba(30,28,21,.012) 0 1px, transparent 1px 7px),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", sans-serif;
}

a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.02em;
  text-decoration: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

nav { display: flex; gap: 28px; }
nav a {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover, nav a:focus-visible, nav a[aria-current="page"] { color: var(--blue); }
.hero { position: relative; padding: 116px 0 72px; }

.registration {
  position: absolute;
  top: 44px;
  right: 0;
  display: flex;
  align-items: center;
}

.registration span { width: 112px; height: 1px; background: var(--rule); }
.registration i { width: 13px; height: 13px; margin-left: -1px; border-radius: 50%; background: var(--blue); }

.eyebrow, aside {
  margin: 0;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .11em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 24px 0 32px;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 760;
  letter-spacing: -.075em;
  line-height: .98;
}

.lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.75;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px 0 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.facts div { padding: 24px 24px 26px 0; }
.facts div + div { padding-left: 24px; border-left: 1px solid var(--rule); }
.facts dt { margin-bottom: 11px; color: var(--muted); font: 11px ui-monospace, monospace; letter-spacing: .12em; }
.facts dd { margin: 0; font-size: 15px; font-weight: 650; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 120px;
  border-top: 1px solid var(--rule);
}

.card {
  min-height: 360px;
  padding: 40px;
  background: rgba(250,248,242,.48);
  border-bottom: 1px solid var(--rule);
}

.card + .card { border-left: 1px solid var(--rule); }
.number { margin: 0 0 76px; color: var(--muted); font: 13px ui-monospace, monospace; }
.card h2 { margin: 12px 0 14px; font-size: 34px; letter-spacing: -.045em; }
.card > p:not(.eyebrow):not(.number) { max-width: 390px; margin: 0 0 34px; color: var(--muted); line-height: 1.75; }

.action, .inline-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.action:hover, .action:focus-visible, .inline-link:hover, .inline-link:focus-visible { color: var(--blue); }

.legal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 64px;
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--rule);
}

.legal-header h1 {
  margin: 18px 0 0;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: -.065em;
  line-height: 1;
}

.legal-header > p { align-self: end; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 680px);
  gap: 72px;
  padding: 64px 0 120px;
}

aside { position: sticky; top: 32px; align-self: start; color: var(--muted); }
.legal-content section { padding-bottom: 46px; }
.legal-content section + section { padding-top: 46px; border-top: 1px solid var(--rule); }
.legal-content h2 { margin: 0 0 18px; font-size: 25px; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: #44433f; font-size: 16px; line-height: 1.85; }
.legal-content p { margin: 0; }
.legal-content p + p { margin-top: 14px; }
.legal-content ul, .legal-content ol { margin: 0; padding-left: 1.25em; }
.legal-content li + li { margin-top: 10px; }

.callout { padding: 26px !important; background: var(--ink); color: var(--bright); }
.callout p { color: rgba(250,248,242,.72); }
.inverse { margin-top: 24px; color: var(--bright); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .05em;
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .site-header { min-height: 70px; }
  nav { gap: 14px; }
  nav a { font-size: 10px; }
  .hero { padding: 94px 0 56px; }
  .registration { top: 35px; }
  .hero h1 { font-size: clamp(46px, 15vw, 72px); }
  .facts { grid-template-columns: 1fr; margin-top: 54px; }
  .facts div, .facts div + div { padding: 18px 0; border-left: 0; }
  .facts div + div { border-top: 1px solid var(--rule); }
  .cards { grid-template-columns: 1fr; padding-bottom: 80px; }
  .card { min-height: 0; padding: 30px 22px 36px; }
  .card + .card { border-left: 0; }
  .number { margin-bottom: 44px; }
  .legal-header { grid-template-columns: 1fr; gap: 30px; padding: 72px 0 46px; }
  .legal-layout { grid-template-columns: 1fr; gap: 40px; padding: 42px 0 80px; }
  aside { position: static; }
  footer { flex-direction: column; }
}
