:root {
  color-scheme: light;
  --bg: #e9e9e7;
  --paper: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f6f6f6;
  --side: #fafafa;
  --border: #dedede;
  --border-strong: #b8b8b8;
  --text: #343434;
  --ink: #1f1f1f;
  --muted: #777777;
  --accent: #2f2f2f;
  --accent-soft: #f0f0f0;
  --nav-top-gap: 18px;
  --shadow: none;
  --sticky-clearance: 28px;
  --scroll-clearance: 154px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-clearance);
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--text);
  font-family:
    "Avenir Next", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui,
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
  background: var(--bg);
}

body::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 18;
  height: var(--nav-top-gap);
  background: var(--bg);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 12vw, 3.15rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 9vw, 2.05rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

[hidden] {
  display: none !important;
}

[data-glass] {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

@media (min-width: 641px) {
  h1,
  h2 {
    text-align: left;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }
}

@media (min-width: 981px) {
  html {
    scroll-padding-top: 154px;
  }

  h1 {
    font-size: 5.1rem;
  }

  h2 {
    font-size: 3rem;
  }
}
