:root {
  color-scheme: light;
  --background: #f5f7fb;
  --foreground: #172033;
  --muted: #5c677d;
  --brand: #0c7a75;
  --surface: #ffffff;
  --line: #dbe2ee;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(100%, 760px);
  padding: clamp(32px, 8vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 80px rgb(23 32 51 / 10%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7rem, 7rem);
  line-height: 0.95;
}

.lead {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.status {
  display: inline-block;
  margin: 28px 0 0;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--brand), white 70%);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  .page {
    padding: 16px;
  }

  .hero {
    padding: 28px;
  }

  h1 {
    font-size: 3.25rem;
  }
}
