:root {
  color-scheme: dark;
  --black: #000;
  --panel: #101010;
  --raised: #181818;
  --line: #2c2c2c;
  --white: #f7f7f5;
  --muted: #919191;
  --max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
}

a {
  color: inherit;
  text-decoration-color: #666;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-color: var(--white);
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

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

.wordmark {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

main {
  padding: 84px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin: 68px 0 18px;
  font-size: 1.55rem;
  font-weight: 550;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 600;
}

.lede {
  max-width: 650px;
  color: #c7c7c7;
  font-size: 1.22rem;
  line-height: 1.55;
}

.statement {
  margin: 74px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

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

.card {
  min-height: 170px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

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

.card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.prose {
  max-width: 690px;
}

.prose h2 {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.prose ul {
  padding-left: 1.15rem;
}

.meta {
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
}

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

@media (max-width: 620px) {
  nav {
    gap: 12px;
  }

  nav a:nth-child(2) {
    display: none;
  }

  main {
    padding-top: 58px;
  }

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

  .statement {
    padding: 25px;
  }

  footer {
    flex-direction: column;
  }
}
