*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink-950);
}
body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--ink-950);
}
body::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: -4rem;
  pointer-events: none;
  opacity: 0.22;
  contain: strict;
  background-image:
    linear-gradient(rgb(213 240 90 / 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgb(213 240 90 / 0.038) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  contain: strict;
  background: radial-gradient(
    circle at 50% 0,
    rgb(255 255 255 / 0.025),
    transparent 32rem
  );
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
h4,
dl,
dd {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: var(--step-4);
  max-width: 12ch;
}
h2 {
  font-size: var(--step-3);
  max-width: 16ch;
}
h3 {
  font-size: var(--step-1);
}
code,
pre {
  font-family: var(--font-mono);
}
code {
  font-size: 0.88em;
}
pre {
  margin: 0;
  white-space: pre;
  overflow-x: auto;
  scrollbar-width: thin;
}
::selection {
  color: var(--signal-ink);
  background: var(--signal);
}
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
  border-radius: 2px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  inset: 0.75rem auto auto 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  color: var(--signal-ink);
  background: var(--signal);
}
.skip-link:focus {
  transform: translateY(0);
}
.shell {
  width: min(100% - 2.25rem, var(--content));
  margin-inline: auto;
}
.shell > *,
.narrow > *,
.section-head > *,
.comparison > *,
.role-grid > *,
.safety-grid > *,
.status-grid > *,
.quick-start > *,
.workflow-layout > * {
  min-width: 0;
}
.narrow {
  width: min(100% - 2.25rem, var(--narrow));
  margin-inline: auto;
}
.section {
  position: relative;
  isolation: isolate;
  padding-block: var(--space-6);
  border-top: 1px solid rgb(48 53 47 / 0.72);
}
.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgb(12 14 13 / 0.92),
    rgb(18 21 19 / 0.5) 55%,
    rgb(12 14 13 / 0.84)
  );
}
.section:nth-of-type(even)::before {
  background:
    radial-gradient(
      circle at 82% 40%,
      rgb(139 124 255 / 0.045),
      transparent 28rem
    ),
    radial-gradient(
      circle at 12% 78%,
      rgb(152 245 208 / 0.035),
      transparent 24rem
    ),
    linear-gradient(90deg, rgb(16 18 17 / 0.9), rgb(12 14 13 / 0.72));
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: end;
  margin-bottom: var(--space-5);
}
.section-head::after {
  content: "";
  grid-column: 1 / -1;
  width: clamp(4rem, 10vw, 8rem);
  height: 1px;
  margin-top: var(--space-2);
  background: linear-gradient(90deg, var(--signal), transparent);
}
.section-head p {
  max-width: 56ch;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.eyebrow {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font: 700 var(--step--1)/1.2 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}
.eyebrow::before {
  content: "";
  inline-size: 1.75rem;
  block-size: 1px;
  background: currentColor;
}
.muted {
  color: var(--muted);
}
.status {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  font: 650 var(--step--1)/1.3 var(--font-mono);
  color: var(--muted);
}
.status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 4px rgb(239 189 102 / 0.12);
}
.status.ok::before {
  background: var(--success);
}
.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;
}
[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body::before {
    animation: none;
  }
}
