:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #080808;
  --muted: #666666;
  --accent: #0f5d45;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

.site {
  width: min(100% - 40px, 720px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 56px 0;
  text-align: center;
}

.logo {
  width: clamp(150px, 34vw, 250px);
  height: auto;
  margin-bottom: 32px;
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 12vw, 8rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.message {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.5;
}

@media (max-width: 520px) {
  .site {
    width: min(100% - 28px, 720px);
    padding: 36px 0;
  }

  .logo {
    margin-bottom: 28px;
  }
}
