@import url("https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@700,500&f[]=satoshi@400,500,700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  background: var(--surface-0);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-0);
  background-color: var(--surface-0);
  background-image: var(--pattern);
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
select,
input[type="button"],
input[type="submit"] {
  min-height: 44px;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  padding-left: 18px;
}

main,
header,
footer {
  width: 100%;
}

.shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
  padding: var(--space-6) 0 var(--space-10);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
}

.stack-2,
.stack-3,
.stack-4 {
  display: grid;
  gap: var(--space-2);
}

.stack-3 {
  gap: var(--space-3);
}

.stack-4 {
  gap: var(--space-4);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.cluster--compact {
  gap: var(--space-2);
}

.muted {
  color: var(--text-2);
}

.accent {
  color: var(--accent-strong);
}

.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;
}

@media (min-width: 960px) {
  .layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
