@font-face {
  font-family: "Manrope Variable";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  font-family:
    "Manrope Variable",
    "Manrope",
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  color: #101c36;
  background: #f1f6fc;
  font-size: 16px;
  --ink: #101c36;
  --navy: #101c36;
  --muted: #536078;
  --paper: #ffffff;
  --soft: #f1f6fc;
  --soft-blue: #edf5ff;
  --line: #dce5f2;
  --border: #dce5f2;
  --accent: #2355cc;
  --accent-strong: #183fa3;
  --cyan: #32bddd;
  --danger: #b33838;
  --shadow: 0 12px 40px #101c3614;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #2355cc;
  outline-offset: 3px;
}
a {
  color: var(--accent);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 1.8rem;
  letter-spacing: -0.055rem;
  font-weight: 800;
}
h2 {
  font-size: 1.15rem;
  letter-spacing: -0.02rem;
}
h3 {
  font-size: 1rem;
}
p {
  line-height: 1.6;
}
small,
.small {
  font-size: 0.8125rem;
  line-height: 1.5;
}
code {
  overflow-wrap: anywhere;
}
button {
  border: 0;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid #d6e4f6;
  border-radius: 7px;
  background: white;
  color: var(--navy);
  min-width: 0;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #bdd4f4;
  border-color: #2355cc;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: normal;
}
th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.025rem;
  color: var(--muted);
  background: #f7faff;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
td {
  font-size: 0.875rem;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid #e7edf6;
}
tr:last-child td {
  border-bottom: 0;
}
td strong {
  font-weight: 700;
}
td small {
  display: block;
  color: var(--muted);
  margin-top: 0.2rem;
}
td .btn {
  min-height: 32px;
  padding: 0.4rem 0.7rem;
  font-size: 0.8125rem;
}
@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}
