:root {
  color: #0f1115;
  background: #f5f5f3;
  --background: #f5f5f3;
  --primary: #0f1115;
  --secondary: #5f6368;
  --tertiary: #34383c;
  --shell: 1200px;
  --measure: 760px;
  --page-pad: clamp(24px, 5vw, 64px);
  --block-gap: clamp(32px, 6vh, 56px);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
}

a {
  color: inherit;
}

footer a {
  text-decoration-color: #b4b6b8;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

footer a:hover {
  color: #2b2f36;
}

a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--primary);
  outline-offset: 6px;
}

.shell {
  width: min(100%, var(--shell));
  display: grid;
  align-content: center;
  justify-items: start;
  gap: var(--block-gap);
  grid-template-rows: auto auto;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: var(--page-pad);
  padding-bottom: clamp(72px, 14vh, 140px);
}

.identity {
  display: grid;
  align-content: start;
  width: min(100%, var(--measure));
  max-width: var(--measure);
}

.kicker {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  font-weight: 550;
  line-height: 1.6;
  letter-spacing: 0;
}

h1 {
  margin: 12px 0 0;
  color: var(--primary);
  font-size: clamp(2.1rem, 8vw, 5.9rem);
  font-weight: 720;
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: normal;
}

.statement {
  max-width: 32rem;
  margin: 24px 0 0;
  color: var(--tertiary);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

footer {
  width: min(100%, var(--measure));
  max-width: var(--measure);
  display: grid;
  gap: 0.35rem;
  color: var(--secondary);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0;
}

footer p {
  margin: 0;
}

@media (max-width: 680px) {
  .shell {
    gap: 32px;
    padding: var(--page-pad);
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(1.9rem, 9.4vw, 3.9rem);
  }
}
