:root {
  color-scheme: light;
  --bg: #f6f3ea;
  --ink: #15161b;
  --muted: #676b75;
  --line: #ded8cb;
  --surface: #fffaf0;
  --red: #f22e3d;
  --blue: #2e5bff;
  --mint: #00b894;
  --yellow: #ffd60a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 48px 22px 56px;
}

.mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--red);
  box-shadow: 18px 10px 0 var(--blue), 4px 28px 0 var(--yellow);
  margin-bottom: 36px;
}

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

h1 {
  margin: 0;
  font-size: clamp(36px, 9vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.65;
}

a {
  color: var(--ink);
  font-weight: 900;
}

.panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

button,
.button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--surface);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.secondary,
.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

code {
  overflow-wrap: anywhere;
  border-radius: 6px;
  background: rgba(21, 22, 27, 0.08);
  padding: 2px 5px;
}

.status {
  min-height: 22px;
  color: var(--mint);
  font-weight: 850;
}

.footer {
  margin-top: 42px;
  font-size: 12px;
}
