:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #150f14;
  color: #fff7e6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 12%, rgba(244, 190, 89, 0.2), transparent 28rem),
    linear-gradient(135deg, #170f14, #251813 52%, #0d1416);
}

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

.panel {
  width: min(100%, 430px);
  border: 1px solid rgba(246, 214, 149, 0.22);
  border-radius: 8px;
  background: rgba(18, 13, 17, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  padding: 28px;
}

.mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f1c978;
  color: #1b1210;
  font-weight: 800;
}

.eyebrow {
  margin: 22px 0 8px;
  color: #8af0bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.muted {
  color: #d8cab7;
  line-height: 1.5;
}

.stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #eadfcb;
  font-size: 14px;
}

input {
  width: 100%;
  border: 1px solid rgba(246, 214, 149, 0.28);
  border-radius: 6px;
  background: #211a1f;
  color: #fff7e6;
  font: inherit;
  padding: 12px 13px;
}

button {
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.primary {
  background: #8af0bd;
  color: #101613;
}

.secondary {
  width: 100%;
  margin-top: 12px;
  background: transparent;
  color: #f1c978;
  border-color: rgba(246, 214, 149, 0.34);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.actions button {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  color: #d8cab7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.status {
  margin-top: 18px;
  border-radius: 6px;
  padding: 11px 12px;
  background: rgba(138, 240, 189, 0.13);
  color: #bdf8d8;
  border: 1px solid rgba(138, 240, 189, 0.28);
}

.status.error {
  background: rgba(239, 68, 68, 0.13);
  color: #fecaca;
  border-color: rgba(239, 68, 68, 0.32);
}
