:root {
  color-scheme: light dark;
  --background: #f7f8fa;
  --text: #171717;
  --muted: #5f6673;
  --line: #d9dde5;
  --accent: #1d6f63;
  --accent-strong: #12483f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  overflow-wrap: anywhere;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

.site-header,
.site-footer {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.page {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 72px 24px;
  flex: 1;
  display: grid;
  align-items: center;
}

.intro,
.content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.content h1 {
  font-size: 3.6rem;
}

p {
  max-width: 62ch;
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.lede {
  color: var(--muted);
  font-size: 1.35rem;
}

.press-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
}

.press-list div {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.press-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.press-list dd {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--muted);
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  .content h1 {
    font-size: 2.6rem;
  }

  .lede {
    font-size: 1.2rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #151716;
    --text: #f7f4ed;
    --muted: #bab3a8;
    --line: #393d38;
    --accent: #73d0bd;
    --accent-strong: #8be0ce;
  }
}
