:root {
  --green: #00a676;
  --ink: #14212b;
  --muted: #5b6f7f;
  --line: #d8e5ea;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 166, 118, 0.18), transparent 32%),
    linear-gradient(135deg, #dff4f0, #edf5f8 58%, #f8fbfc);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

.card {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(20, 33, 43, 0.14);
}

.mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 16px 34px rgba(0, 166, 118, 0.28);
  font-size: 22px;
  font-weight: 900;
}

.eyebrow {
  margin: 26px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid rgba(0, 166, 118, 0.24);
  border-radius: 999px;
  padding: 10px 13px;
  color: #0a4f3b;
  background: rgba(0, 166, 118, 0.09);
  font-size: 13px;
  font-weight: 850;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 166, 118, 0.12);
}
