:root {
  color-scheme: light;
  --bg: #f6f4ee;
  --ink: #18201f;
  --muted: #5e6865;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-strong: #0b4f49;
  --line: #d7ddd8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.13), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(235, 179, 72, 0.22), transparent 28%),
    var(--bg);
  color: var(--ink);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.hero {
  width: min(100%, 760px);
  padding: clamp(2rem, 7vw, 5rem);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 32, 31, 0.12);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.summary {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(15, 118, 110, 0.14);
}

@media (max-width: 520px) {
  .page-shell {
    align-items: stretch;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
