@import url("/assets/shared.css");

:root {
  --reveal-ink: #132238;
  --reveal-muted: #5a6474;
  --reveal-line: #d9e2ef;
  --reveal-paper: #ffffff;
  --reveal-soft: #f5f8fc;
  --reveal-blue: #2563eb;
  --reveal-green: #0f766e;
  --reveal-orange: #c2410c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--reveal-ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.10), transparent 28rem),
    linear-gradient(135deg, #f7fbff 0%, #eef6f2 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}

.home-link:hover,
.back-link:hover {
  text-decoration: underline;
}

@media print {
  nav,
  .toolbar,
  .controls,
  .actions,
  button,
  .home-link,
  .back-link {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #111827 !important;
  }

  main,
  section,
  article {
    box-shadow: none !important;
  }
}
