:root {
  color-scheme: light;
  --ink: #1d2733;
  --muted: #5d6b7a;
  --line: #d8e0e8;
  --accent: #2f7d6d;
  --paper: #f7fafc;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(47, 125, 109, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(38, 89, 160, 0.12), transparent 36%),
    var(--paper);
}

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

.hero {
  width: min(100%, 760px);
  padding: clamp(40px, 8vw, 88px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(29, 39, 51, 0.08);
}

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

h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  margin: 32px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(47, 125, 109, 0.3);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(47, 125, 109, 0.08);
}
