:root {
  color-scheme: light;
  --bg: #fbfbf8;
  --ink: #1f2328;
  --muted: #6c7278;
  --line: rgba(31, 35, 40, 0.12);
  --accent: #b56a1e;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 50% 42%, rgba(181, 106, 30, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.page-body {
  background:
    radial-gradient(circle at top center, rgba(181, 106, 30, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9f8f4 100%);
}

.utility-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
  background: rgba(251, 251, 248, 0.94);
  backdrop-filter: blur(6px);
}

.page-body .utility-bar {
  background: rgba(249, 248, 244, 0.94);
}

.utility-bar__inner {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  padding: 12px 0 10px;
}

.utility-bar__inner-right {
  justify-content: flex-end;
}

.utility-bar__inner-left {
  justify-content: flex-start;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.utility-logo {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.utility-wordmark {
  display: inline-block;
  line-height: 1;
}

.utility-link:hover,
.utility-link:focus-visible {
  color: var(--ink);
}

.home-corner-link {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 10;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.home-corner-link:hover,
.home-corner-link:focus-visible {
  color: var(--ink);
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
}

.shell {
  min-height: calc(100vh - 52px);
  display: grid;
  place-items: center;
  align-content: center;
  width: min(720px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
  text-align: center;
}

.hero-shell {
  will-change: transform, opacity, filter;
  transition: opacity 140ms linear, transform 140ms linear, filter 140ms linear;
}

.mark {
  width: 88px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(181, 106, 30, 0.18), rgba(181, 106, 30, 0.72), rgba(181, 106, 30, 0.18));
}

.brand {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.12rem, 2.4vw, 1.42rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.page {
  width: min(760px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 88px 0 64px;
}

.home-details {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 96px;
}

.page h1 {
  max-width: 15ch;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.06;
}

.lede {
  max-width: 42rem;
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.82;
  color: var(--muted);
}

.section {
  margin-top: 58px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section p,
.section li,
.page-footer a {
  font-size: 1.06rem;
  line-height: 1.86;
}

.section p {
  margin: 0 0 18px;
}

.pull-quote {
  max-width: 28ch;
  margin: 20px 0;
  font-size: clamp(1.34rem, 2.8vw, 1.82rem);
  line-height: 1.36;
  color: var(--ink);
}

.section ul {
  margin: 0;
  padding-left: 22px;
}

.section li {
  margin: 0 0 12px;
}

.page-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.page-footer p {
  margin: 0 0 10px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--muted);
}

.page-footer a {
  color: var(--muted);
  text-decoration: none;
}

.llms-footer-link {
  display: inline-block;
  margin-top: 2px;
  font-family: "Courier New", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  opacity: 0.52;
}

.page-footer a:hover,
.page-footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 640px) {
  .utility-bar__inner {
    width: min(100vw - 24px, 960px);
    padding: 11px 0 9px;
  }

  .home-corner-link {
    top: 14px;
    right: 16px;
  }

  .shell {
    width: min(100vw - 24px, 720px);
  }

  .page {
    width: min(100vw - 24px, 760px);
    padding-top: 76px;
    padding-bottom: 52px;
  }

  .home-details {
    padding-top: 84px;
  }

  .mark {
    margin-bottom: 22px;
  }
}
