/* Throwaway skeleton styling (#375) — self-contained, no design-system dependency. Real brand,
   copy and imagery are a separate future map. Just enough to read as a real page in a browser. */

:root {
  --bg: #f4f1ea;
  --card: #ffffff;
  --ink: #2b2b28;
  --muted: #6b6b63;
  --accent: #3f6b4c;
  --accent-ink: #ffffff;
  --error: #a33a2f;
  --border: #d9d4c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.card {
  width: 100%;
  max-width: 26rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input {
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  background: #fff;
  color: inherit;
}

input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

button {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent);
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.05);
}

button:disabled {
  opacity: 0.6;
  cursor: progress;
}

.status {
  margin: 0.75rem 0 0;
  min-height: 1.25rem;
  font-size: 0.95rem;
}

.status[data-kind="ok"] {
  color: var(--accent);
  font-weight: 600;
}

.status[data-kind="error"] {
  color: var(--error);
}
