:root {
  color-scheme: light dark;
  --canvas: #f4f3ef;
  --ink: #1b1c1a;
  --muted: #63645f;
  --line: rgba(27, 28, 26, .14);
  --accent: #b54d2c;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
}

.site-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: .38;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .15;
  pointer-events: none;
}

.ambient--one {
  top: -25%;
  right: -12%;
  background: #d7a17a;
  animation: drift 13s ease-in-out infinite alternate;
}

.ambient--two {
  bottom: -34%;
  left: -18%;
  background: #9cb1a4;
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.header, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  color: inherit;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -.065em;
  text-decoration: none;
}

.wordmark-dot { color: var(--accent); }

.status, .eyebrow, .footer {
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); }
.status i { width: .45rem; height: .45rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 .22rem color-mix(in srgb, var(--accent) 14%, transparent); }

.hero { width: min(100%, 900px); margin: auto 0; padding: 4rem 0; }
.eyebrow { margin: 0 0 1.4rem; color: var(--accent); }

h1 {
  max-width: 10.4em;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.3rem);
  font-weight: 650;
  letter-spacing: -.07em;
  line-height: .91;
}

.footer { color: var(--muted); }
.footer p { margin: 0; }

a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@keyframes drift { to { transform: translate(7%, 5%) scale(1.12); } }

@media (max-width: 520px) {
  .site-shell { padding: 1.35rem; }
  .site-shell::before { background-size: 56px 56px; }
  .footer { align-items: flex-start; flex-direction: column; gap: .7rem; }
}

@media (prefers-color-scheme: dark) {
  :root { --canvas: #121312; --ink: #ededE8; --muted: #b5b6ae; --line: rgba(237, 237, 232, .13); --accent: #e0805f; }
  .ambient--one { background: #a94e32; opacity: .18; }
  .ambient--two { background: #557165; opacity: .15; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }
