:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18322b;
  background: #f5f6f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 48px 8vw;
  border-top: 6px solid #286447;
}

main { max-width: 850px; }

.eyebrow {
  color: #44634e;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 28px 0;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.06;
}

.description {
  max-width: 32rem;
  color: #52645c;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 10px 16px;
  border: 1px solid #cbd8c8;
  border-radius: 100px;
  font-size: 0.875rem;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #286447;
}

a { color: #286447; text-underline-offset: 4px; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
