:root {
  color-scheme: light;
  --canvas: #f4f0e8;
  --surface: #fbf9f5;
  --text: #24211f;
  --muted: #726a64;
  --divider: #cfc6b8;
  --accent: #963d4c;
  --focus: #375f7c;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}
a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 10;
}
.skip-link:focus {
  top: 1rem;
}
header {
  background: var(--surface);
  border-bottom: 1px solid var(--divider);
}
.nav,
main,
footer {
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
}
.nav {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
main {
  padding-block: 3.5rem;
}
.hero {
  max-width: 48rem;
  padding-block: 2rem 3rem;
}
h1 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.25;
  margin-top: 2.5rem;
}
h3 {
  margin-top: 1.75rem;
}
.lede {
  color: var(--muted);
  font-size: 1.15rem;
}
.notice,
.card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-block: 1.25rem;
}
.notice {
  border-left: 0.3rem solid var(--accent);
}
.status-label {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}
label {
  display: block;
  font-weight: 650;
  margin-top: 1rem;
}
input,
textarea,
select {
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.35rem;
  padding: 0.7rem;
  border: 1px solid #8f857d;
  border-radius: 0.65rem;
  background: white;
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 8rem;
}
button,
.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 0.65rem;
  background: var(--accent);
  color: white;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.secondary {
  background: var(--surface);
  color: var(--accent);
}
.status {
  margin-top: 1rem;
  font-weight: 650;
}
.table-wrap {
  max-width: 100%;
  margin-block: 1.25rem;
  overflow-x: auto;
}
table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  background: var(--surface);
}
th,
td {
  border: 1px solid var(--divider);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}
th {
  background: #eee7dc;
}
code {
  font-size: 0.95em;
  overflow-wrap: anywhere;
}
footer {
  border-top: 1px solid var(--divider);
  padding-block: 2rem;
  color: var(--muted);
}
@media (max-width: 42rem) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
