:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --rule: rgba(17, 17, 17, 0.14);

  --page: 860px;
  --gutter: 112px;

  --font: "Red Hat Display", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;

  --step: 18px;
}

@media (max-width: 720px) {
  :root {
    --gutter: 48px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Hide scrollbars visually (still scrollable) */
html,
body {
  -ms-overflow-style: none; /* IE/Edge legacy */
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  padding-left: var(--gutter);
  padding-right: 48px;
  overflow-x: hidden;
}

/* screen-reader only */
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  transform: translateY(-200%);
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  z-index: 100;
}
.skip-link:focus {
  transform: translateY(0);
}

.page {
  max-width: var(--page);
  margin: 96px 0;
}

@media (max-width: 720px) {
  .page {
    margin: 96px auto;
  }
}

.aboutTitle {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 18px;
  margin: 0 0 0px;
}

p.heading {
  margin: 0 0 0px;
}

h1 {
  font-size: 22px;
  margin: 0 0 14px;
}

h2 {
  font-size: 16px;
  margin: 22px 0 10px;
}

p {
  margin: 0 0 28px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92em;
}

ul {
  margin: 0 0 28px;
  padding-left: 18px;
}

li {
  margin: 6px 0;
}

form.notify {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

form.notify input[type="email"] {
  width: min(420px, 100%);
  padding: 6px 0 8px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  font: inherit;
  background: transparent;
  color: var(--text);
}

form.notify input[type="email"]::placeholder {
  color: var(--muted);
}

form.notify button {
  -webkit-appearance: none;
  appearance: none;
  padding: 6px 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

form.notify button:hover {
  text-decoration-thickness: 2px;
}

form.notify button::after {
  content: " →";
}

form.notify input[type="email"]:focus-visible {
  outline: 0;
  border-bottom-color: var(--text);
}

.mono {
  font-family: var(--mono);
}

.footer {
  margin-top: 18px;
  padding-top: 12px;
  padding-bottom: 28px;
  border-top: 1px solid var(--rule);
}

.footerRow {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.footerRow a {
  color: inherit;
}


@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
