:root {
  color-scheme: light dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4fbf9;
  color: #10201d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 280px;
  background: #f4fbf9;
}

.shell {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: #087c7b;
  color: #ffffff;
  font-weight: 700;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 18px;
  line-height: 1.2;
}

.brand p,
.muted {
  color: #66736f;
  font-size: 12px;
  line-height: 1.45;
}

.card,
.status {
  border: 1px solid rgba(8, 124, 123, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 32, 29, 0.08);
}

.card {
  padding: 14px;
}

.eyebrow {
  margin-bottom: 8px;
  color: #66736f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.35;
}

.status {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  font-size: 12px;
}

.status.success {
  border-color: rgba(21, 128, 61, 0.28);
  background: #ecfdf3;
  color: #14532d;
}

.status.error {
  border-color: rgba(185, 28, 28, 0.24);
  background: #fef2f2;
  color: #7f1d1d;
}

.status.pending {
  color: #475569;
}

.button {
  min-height: 42px;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  background: #087c7b;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition:
    opacity 150ms ease,
    transform 150ms ease,
    background 150ms ease;
}

.button:not(:disabled):hover {
  background: #076b6a;
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (prefers-color-scheme: dark) {
  :root,
  body {
    background: #081312;
    color: #f8fafc;
  }

  .card,
  .status {
    background: #0f1f1d;
    border-color: rgba(148, 163, 184, 0.2);
  }

  .brand p,
  .muted,
  .eyebrow,
  .status.pending {
    color: #94a3b8;
  }

  .status.success {
    background: rgba(21, 128, 61, 0.18);
    color: #bbf7d0;
  }

  .status.error {
    background: rgba(185, 28, 28, 0.18);
    color: #fecaca;
  }
}
