:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f6673;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --accent: #0f766e;
  --line: #d9d4c8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), transparent 32rem),
    linear-gradient(315deg, rgba(180, 83, 9, 0.14), transparent 28rem),
    var(--paper);
}

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

.panel {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  box-shadow: 0 24px 80px rgba(23, 23, 23, 0.12);
}

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

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 52ch;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 999px;
  color: #115e59;
  background: rgba(15, 118, 110, 0.1);
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.16);
}
