:root {
  --canvas: #f8fafc;
  --surface: #ffffff;
  --soft: #f1f5f9;
  --ink: #172033;
  --muted: #5f6c80;
  --faint: #8a96a8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --blue: #2563eb;
  --blue-soft: #edf4ff;
  --teal: #0f766e;
  --teal-soft: #ecfdf5;
  --amber: #b45309;
  --amber-soft: #fffbeb;
  --focus: #f97316;
  --sans: "Segoe UI", Tahoma, Arial, sans-serif;
  --mono: Consolas, "Cascadia Code", "Courier New", monospace;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --topbar: 70px;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--canvas);
}
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(
    circle at top left,
    #fff 0,
    #f8fbff 28%,
    var(--canvas) 65%
  );
  font: 16px/1.7 var(--sans);
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: balance;
}
.skip-link {
  position: fixed;
  z-index: 60;
  top: -5rem;
  left: 1rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  color: #fff;
  border-radius: 6px;
  background: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}
.page-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(180px, 1fr);
  min-height: var(--topbar);
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  min-height: 44px;
  text-decoration: none;
}
.brand-lockup {
  display: block;
  width: min(176px, 100%);
  height: auto;
  flex: 0 0 auto;
}
.brand-context {
  display: block;
  max-width: 86px;
  color: var(--muted);
  font: 700 10px/1.3 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.brand:hover .brand-context {
  color: var(--blue);
}
.top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  font-size: 13px;
  font-weight: 700;
}
.top-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}
.top-links a:hover {
  color: var(--blue);
}
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}
.docs-link,
.button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.docs-link {
  gap: 7px;
  padding: 0 14px;
  color: #fff;
  background: var(--blue);
}
.docs-link:hover {
  background: #1d4ed8;
}
.menu-button {
  display: none;
  padding: 0 12px;
  color: var(--blue);
  border: 1px solid #c7d9f1;
  background: var(--surface);
  cursor: pointer;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  min-height: calc(100dvh - var(--topbar));
  padding-block: clamp(72px, 10vw, 128px);
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--faint);
  font-size: 12px;
}
.breadcrumbs span + span {
  color: #a7b0bf;
}
.eyebrow,
.micro-label {
  margin-bottom: 12px;
  color: var(--blue);
  font: 750 11px/1.4 var(--mono);
  letter-spacing: 0.09em;
}
.micro-label {
  color: var(--teal);
}
h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.3vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}
h1 span,
.final-section h2 span {
  color: var(--blue);
}
.lede {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 31px;
}
.button {
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  transition: 0.18s var(--ease);
}
.button:hover {
  transform: translateY(-1px);
}
.button.primary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.button.primary:hover {
  background: #1d4ed8;
}
.button.quiet {
  color: #28466f;
  background: var(--surface);
}
.button.quiet:hover {
  color: var(--blue);
  border-color: #aac8fa;
  background: var(--blue-soft);
}
.command-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.command-stack span {
  padding: 5px 8px;
  color: #4b6384;
  border: 1px solid #d7e4f6;
  border-radius: 4px;
  background: #f4f8ff;
  font: 10px var(--mono);
  letter-spacing: 0.035em;
}
.workflow-panel {
  overflow: hidden;
  border: 1px solid #c7d9f1;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgb(37 99 235 / 0.09);
}
.panel-topline {
  display: flex;
  justify-content: space-between;
  padding: 14px 17px;
  color: #5274a7;
  border-bottom: 1px solid #d7e4f6;
  background: #f7faff;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
}
.workflow-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-panel li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 85px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
}
.workflow-panel li > span,
.workflow-list > li > span {
  color: var(--blue);
  font: 11px var(--mono);
}
.workflow-panel strong {
  display: block;
  font-size: 14px;
}
.workflow-panel small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.workflow-panel b {
  color: #8ba0be;
  font: 15px var(--mono);
}
.workflow-panel > p {
  margin: 0;
  padding: 13px 17px;
  color: #42658f;
  background: var(--blue-soft);
  font-size: 12px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 50%;
  background: #22c55e;
}
.section {
  padding-block: clamp(76px, 11vw, 130px);
  border-top: 1px solid var(--line);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2,
.final-section h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}
.section-heading > p:last-child,
.split-heading > p {
  color: var(--muted);
  font-size: 17px;
}
.architecture-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.architecture-layout article {
  min-height: 204px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.architecture-layout article:nth-child(2n) {
  border-right: 0;
}
.architecture-layout article:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.architecture-layout h3 {
  margin-bottom: 7px;
  color: #21334d;
  font-size: 19px;
}
.architecture-layout p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.65fr);
  gap: clamp(32px, 8vw, 95px);
  max-width: none;
}
.split-heading > p {
  align-self: end;
  margin-bottom: 0;
  font-size: 15px;
}
.workflow-list {
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.workflow-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 23px 3px;
  border-bottom: 1px solid var(--line);
}
.workflow-list strong {
  font-size: 16px;
}
.workflow-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.workflow-list a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #5274a7;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: 16px var(--mono);
  text-decoration: none;
}
.workflow-list a:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.learning-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 39px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.learning-steps article {
  min-height: 232px;
  padding: 23px;
  border-right: 1px solid var(--line);
}
.learning-steps article:last-child {
  border-right: 0;
}
.learning-steps span {
  color: var(--blue);
  font: 11px var(--mono);
}
.learning-steps h3 {
  margin: 31px 0 8px;
  font-size: 17px;
}
.learning-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.notice {
  margin-top: 18px;
  padding: 18px 20px;
  color: #9a4409;
  border: 1px solid #f6cf8a;
  border-radius: 8px;
  background: var(--amber-soft);
}
.notice strong {
  font-size: 14px;
}
.notice p {
  margin: 4px 0 0;
  color: #805120;
  font-size: 14px;
}
.final-section {
  padding-block: clamp(82px, 12vw, 150px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.final-section h2 {
  margin-inline: auto;
}
.final-section > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}
.final-section .hero-actions {
  justify-content: center;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 24px;
  color: #778499;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.site-footer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
