:root {
  --navy: #061b49;
  --ink: #10264f;
  --blue: #0b61ff;
  --blue-soft: #eaf2ff;
  --teal: #14b8b7;
  --teal-soft: #e8fbfb;
  --line: #dbe5f2;
  --muted: #64748b;
  --paper: #ffffff;
  --shell: #f8fbff;
  --shadow: 0 14px 34px rgba(6, 27, 73, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(234, 242, 255, 0.72), rgba(248, 251, 255, 0) 360px),
    var(--shell);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.03;
  margin: 0 0 24px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.14;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

pre {
  margin: 20px 0 0;
  padding: 18px;
  color: #dbeafe;
  background: #071936;
  border: 1px solid #12376d;
  border-radius: 8px;
  overflow-x: auto;
  white-space: pre;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

pre code {
  display: block;
  min-width: max-content;
  font-size: 14px;
  line-height: 1.7;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 650;
  margin-right: auto;
  white-space: nowrap;
}

.brand strong {
  color: var(--blue);
}

.mark {
  color: var(--teal);
  font-weight: 900;
}

nav {
  display: flex;
  gap: 28px;
  font-weight: 750;
  color: #183260;
}

nav a {
  padding: 24px 0 21px;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.button,
.primary,
.secondary {
  border: 1px solid var(--blue);
  border-radius: 8px;
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.button,
.secondary {
  color: var(--blue);
  background: var(--paper);
}

.primary {
  color: white;
  background: var(--blue);
  display: inline-block;
  box-shadow: 0 10px 24px rgba(11, 97, 255, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.15fr);
  gap: 48px;
  padding: 72px 44px 36px;
  align-items: center;
}

.copy {
  min-width: 0;
}

.hero > *,
.page-hero > *,
.panels > *,
.feature-grid > *,
.docs-layout > * {
  min-width: 0;
}

.eyebrow {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  gap: 18px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.proof {
  display: flex;
  gap: 26px;
  color: #183260;
  flex-wrap: wrap;
}

.proof span:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 8px;
}

.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(6, 27, 73, 0.1);
  overflow: hidden;
}

.product img {
  display: block;
  width: 100%;
}

.strip {
  margin: 0 28px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip a,
.strip span {
  padding: 22px;
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.strip a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.strip a:last-child,
.strip span:last-child {
  border-right: 0;
}

.panels {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
  gap: 18px;
  padding: 0 28px 28px;
}

article,
.cta,
.feature-card,
.doc-section,
.hero-note,
.command-card,
.callout-band {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

article,
.cta {
  padding: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.cards a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cards a:hover {
  border-color: rgba(11, 97, 255, 0.46);
  background: var(--blue-soft);
}

.cards strong {
  font-size: 16px;
}

.cards span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.check-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
li {
  margin: 16px 0;
  color: #183260;
  font-weight: 700;
  line-height: 1.45;
}

.check-list li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.cta {
  margin: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  padding: 68px 44px 34px;
  align-items: end;
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
}

.hero-note,
.command-card {
  padding: 24px;
}

.hero-note {
  display: grid;
  gap: 10px;
  border-left: 5px solid var(--teal);
}

.hero-note span {
  color: var(--muted);
  line-height: 1.55;
}

.command-card {
  display: grid;
  gap: 10px;
  background: #071936;
  border-color: #12376d;
  color: #dbeafe;
}

.command-card code {
  display: block;
  overflow-wrap: anywhere;
  color: #dbeafe;
  font-size: 13px;
}

.workflow-band {
  margin: 0 28px 22px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workflow-band span {
  padding: 18px 12px;
  text-align: center;
  font-weight: 850;
  border-right: 1px solid var(--line);
}

.workflow-band span:nth-child(odd) {
  color: var(--blue);
  background: var(--blue-soft);
}

.workflow-band span:nth-child(even) {
  color: #047f80;
  background: var(--teal-soft);
}

.workflow-band span:last-child {
  border-right: 0;
}

.feature-grid {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 28px;
}

dl {
  margin: 22px 0 0;
}

dt {
  color: var(--navy);
  font-weight: 850;
  margin-top: 18px;
}

dd {
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

.callout-band {
  margin: 0 28px 28px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-left: 5px solid var(--teal);
}

.docs-hero {
  align-items: stretch;
}

.docs-layout {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.side-nav a {
  padding: 11px 12px;
  border-radius: 6px;
  color: #183260;
  font-weight: 800;
  min-width: 0;
}

.side-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.docs-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.docs-content > * {
  min-width: 0;
}

.doc-section {
  padding: 28px;
  scroll-margin-top: 96px;
  min-width: 0;
}

.notice {
  margin-top: 18px;
  padding: 16px;
  display: grid;
  gap: 6px;
  color: var(--ink);
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 183, 0.28);
  border-radius: 8px;
}

.notice span {
  color: var(--muted);
  line-height: 1.5;
}

.reference-list {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 16px;
}

.reference-list dt,
.reference-list dd {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.command-table {
  display: grid;
  grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.command-table span {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.command-table span:nth-child(odd) {
  background: var(--blue-soft);
  color: var(--navy);
  font-weight: 800;
}

.command-table span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.boundary-section {
  border-left: 5px solid var(--teal);
}

footer {
  padding: 32px 44px;
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
  }

  nav a {
    padding: 0 0 10px;
  }

  .button {
    display: none;
  }

  .hero,
  .page-hero,
  .panels,
  .feature-grid,
  .docs-layout {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 42px;
  }

  .strip,
  .workflow-band,
  .cards {
    grid-template-columns: 1fr;
  }

  .strip,
  .workflow-band,
  .cta,
  .callout-band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .strip a,
  .strip span,
  .workflow-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip a:last-child,
  .workflow-band span:last-child {
    border-bottom: 0;
  }

  .cta,
  .callout-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-list,
  .command-table {
    grid-template-columns: 1fr;
  }

  .reference-list dt {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .command-table span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .command-table span:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 38px;
  }

  p {
    font-size: 16px;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .brand {
    font-size: 24px;
  }

  .actions,
  .proof,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary,
  .secondary {
    text-align: center;
  }

  .side-nav {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .doc-section,
  article,
  .cta,
  .callout-band {
    padding: 22px;
  }
}
