:root {
  color-scheme: light;
  --navy-950: #04101f;
  --navy-900: #071a33;
  --navy-850: #0a2344;
  --navy-800: #0d2d55;
  --ink-950: #0b1729;
  --ink-800: #25354d;
  --ink-650: #4c607a;
  --ink-500: #6f8199;
  --blue-700: #175ed3;
  --blue-600: #2476ed;
  --blue-500: #3488ff;
  --violet-500: #7d6cf6;
  --cyan-400: #55d4e9;
  --mint-400: #51d4b4;
  --paper: #ffffff;
  --canvas: #f4f7fb;
  --canvas-blue: #edf4ff;
  --line: #dce5f0;
  --line-strong: #cbd8e7;
  --dark-line: rgba(159, 193, 231, .16);
  --dark-text: #f6f9ff;
  --dark-muted: #a9bbd2;
  --shadow-sm: 0 10px 30px rgba(16, 38, 70, .08);
  --shadow-md: 0 24px 70px rgba(10, 33, 65, .14);
  --shadow-dark: 0 35px 100px rgba(0, 7, 22, .45);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --shell: 1280px;
  --header-height: 84px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink-950);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #65ddf2;
  outline-offset: 4px;
  border-radius: 6px;
}

::selection {
  background: #cfe2ff;
  color: #071a33;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 16px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.brand-shell {
  color: var(--dark-text);
  background-color: var(--navy-900);
}

.brand-shell--header {
  position: relative;
  z-index: 50;
  background: #071a33;
}

.brand-shell--hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 29%, rgba(59, 120, 247, .22), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(119, 99, 234, .14), transparent 21%),
    linear-gradient(123deg, #071a33 0%, #082446 54%, #06182f 100%);
}

.brand-shell--hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .23;
  background-image:
    linear-gradient(rgba(128, 171, 220, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 171, 220, .07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
}

.site-header {
  position: relative;
  z-index: 20;
  width: min(var(--shell), calc(100% - 64px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid rgba(160, 193, 230, .13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 7, 22, .24);
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: .03em;
}

.brand-copy small {
  color: #7892b3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.header-release {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  padding: 7px 11px;
  border: 1px solid rgba(136, 176, 221, .16);
  border-radius: 999px;
  color: #92a9c3;
  font-size: 11px;
  line-height: 1;
}

.header-release span,
.status-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f6be5f;
  box-shadow: 0 0 0 4px rgba(246, 190, 95, .1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #aebed2;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.main-nav .nav-action {
  margin-left: 6px;
  padding-inline: 15px;
  border: 1px solid rgba(117, 164, 219, .26);
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border: 1px solid rgba(143, 182, 225, .22);
  border-radius: 12px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 13px;
  font-weight: 700;
}

.nav-toggle-icon {
  position: relative;
  width: 17px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  content: "";
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 750px;
  padding-block: 92px 100px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(152, 190, 231, .16);
  border-radius: 999px;
  background: rgba(6, 23, 45, .55);
  color: #a9bbd2;
  font-size: 11px;
  line-height: 1.2;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #69d7ed;
}

.hero .eyebrow {
  margin-top: 32px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(46px, 4.45vw, 68px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.hero h1 span {
  background: linear-gradient(98deg, #fff 2%, #9bc7ff 46%, #77ddec 82%, #b4a6ff 110%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #aec0d5;
  font-size: 17px;
  line-height: 1.85;
}

.hero-lead strong {
  color: #e7f0fb;
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #2e7ff2, #426fe4 58%, #776bed);
  box-shadow: 0 14px 36px rgba(44, 111, 229, .3);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 18px 48px rgba(44, 111, 229, .38);
}

.button--ghost {
  border-color: rgba(154, 188, 226, .21);
  background: rgba(255, 255, 255, .04);
  color: #dce8f7;
}

.button--ghost:hover {
  border-color: rgba(154, 188, 226, .38);
  background: rgba(255, 255, 255, .07);
}

.button--light {
  background: #fff;
  color: #0a2446;
  box-shadow: 0 15px 40px rgba(0, 14, 34, .22);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(152, 188, 227, .14);
  list-style: none;
}

.hero-proof li {
  min-width: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 6px;
  color: #ecf4ff;
  font-size: 12px;
}

.hero-proof span {
  color: #859bb8;
  font-size: 10px;
  line-height: 1.6;
}

.hero-stage {
  position: relative;
  min-width: 0;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(115, 161, 216, .14);
  border-radius: 50%;
}

.orbit--one {
  width: 610px;
  height: 610px;
}

.orbit--two {
  width: 450px;
  height: 450px;
  border-style: dashed;
  opacity: .7;
}

.app-window {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(171, 205, 243, .22);
  border-radius: 20px;
  background: #e9eff7;
  box-shadow: var(--shadow-dark);
}

.app-window--hero {
  position: relative;
  z-index: 2;
  width: min(100%, 730px);
  transform: perspective(1400px) rotateY(-5deg) rotateX(1deg);
  transform-origin: 50% 50%;
}

.window-bar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #dbe4ee;
  background: rgba(249, 251, 254, .96);
  color: #6f8094;
  font-size: 10px;
  line-height: 1;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cad5e2;
}

.window-dots i:first-child {
  background: #ef8f8b;
}

.window-dots i:nth-child(2) {
  background: #e8c46c;
}

.window-dots i:nth-child(3) {
  background: #72c9a6;
}

.window-secure {
  justify-self: end;
  padding: 5px 8px;
  border: 1px solid #d8e3ef;
  border-radius: 999px;
  color: #6b809b;
  font-size: 8px;
}

.app-window img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stage-card {
  position: absolute;
  z-index: 4;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(157, 194, 235, .2);
  border-radius: 15px;
  background: rgba(7, 28, 56, .9);
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 7, 22, .35);
  backdrop-filter: blur(16px);
}

.stage-card--isolation {
  top: 11%;
  right: -1%;
}

.stage-card--proxy {
  bottom: 8%;
  left: -2%;
}

.stage-card strong,
.stage-card small {
  display: block;
}

.stage-card strong {
  font-size: 12px;
}

.stage-card small {
  margin-top: 3px;
  color: #8fa8c5;
  font-size: 9px;
}

.mini-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
}

.mini-icon--layers::before,
.mini-icon--layers::after {
  position: absolute;
  left: 3px;
  width: 17px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-radius: 4px;
  content: "";
}

.mini-icon--layers::before { top: 3px; }
.mini-icon--layers::after { top: 8px; opacity: .55; }

.mini-icon--shield::before {
  position: absolute;
  inset: 2px 4px 1px;
  border: 1.7px solid currentColor;
  border-radius: 9px 9px 11px 11px;
  content: "";
  clip-path: polygon(50% 0, 100% 17%, 90% 72%, 50% 100%, 10% 72%, 0 17%);
}

.mini-icon--route::before {
  position: absolute;
  inset: 4px;
  border: 1.7px solid currentColor;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(45deg);
}

.mini-icon--route::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 5px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: 13px 13px 0 -1px #fff, 13px 13px 0 0 currentColor;
}

.mini-icon--sliders::before {
  position: absolute;
  top: 5px;
  left: 3px;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  box-shadow: 0 7px currentColor, 0 14px currentColor;
}

.mini-icon--sliders::after {
  position: absolute;
  top: 2px;
  left: 7px;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
  content: "";
  box-shadow: 6px 7px 0 -2px #fff, 6px 7px 0 0 currentColor, -3px 14px 0 -2px #fff, -3px 14px 0 0 currentColor;
}

.mini-icon--puzzle::before {
  position: absolute;
  inset: 4px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
  content: "";
}

.mini-icon--puzzle::after {
  position: absolute;
  top: 1px;
  left: 9px;
  width: 6px;
  height: 6px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.mini-icon--users::before {
  position: absolute;
  top: 3px;
  left: 8px;
  width: 7px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: -7px 5px 0 -2px #fff, -7px 5px 0 -1px currentColor, 7px 5px 0 -2px #fff, 7px 5px 0 -1px currentColor;
}

.mini-icon--users::after {
  position: absolute;
  bottom: 3px;
  left: 5px;
  width: 14px;
  height: 7px;
  border: 1.7px solid currentColor;
  border-radius: 9px 9px 4px 4px;
  content: "";
}

.mini-icon--archive::before {
  position: absolute;
  inset: 5px 4px 3px;
  border: 1.7px solid currentColor;
  border-radius: 4px;
  content: "";
  box-shadow: 0 -4px 0 -2px #fff, 0 -4px 0 -1px currentColor;
}

.mini-icon--archive::after {
  position: absolute;
  top: 11px;
  left: 9px;
  width: 6px;
  border-top: 1.7px solid currentColor;
  content: "";
}

.mini-icon--refresh::before {
  position: absolute;
  inset: 4px;
  border: 1.7px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
}

.mini-icon--refresh::after {
  position: absolute;
  top: 3px;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  content: "";
  transform: rotate(15deg);
}

.audience-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(160, 193, 230, .13);
  background: rgba(4, 16, 31, .35);
}

.audience-bar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.audience-bar p {
  margin: 0;
  color: #8299b5;
  font-size: 11px;
  font-weight: 700;
}

.audience-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: #d2ddeb;
  font-size: 12px;
  list-style: none;
}

.audience-bar li {
  position: relative;
}

.audience-bar li:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3c658f;
  content: "";
}

.section {
  position: relative;
  padding-block: 124px;
}

.section--light,
.section--downloads,
.section--faq {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.security-intro h2,
.faq-intro h2,
.closing-panel h2,
.page-hero h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: 760;
  letter-spacing: -.045em;
  line-height: 1.18;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr);
  align-items: end;
  gap: 70px;
}

.section-heading--split > p,
.section-heading--center > p,
.security-intro > p,
.faq-intro > p {
  margin: 0;
  color: var(--ink-650);
  line-height: 1.9;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  position: relative;
  min-height: 300px;
  grid-column: span 3;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f9fbfe;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: #bfd2e9;
  box-shadow: var(--shadow-sm);
}

.capability-card--featured {
  grid-column: span 6;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(97, 210, 234, .18), transparent 34%),
    linear-gradient(145deg, #0c315e, #0a2345 70%);
  border-color: #194475;
}

.capability-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #99aac0;
  font: 700 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .16em;
}

.capability-card--featured .capability-number {
  color: #7192b6;
}

.capability-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e5f2;
  border-radius: 13px;
  background: #fff;
  color: var(--blue-600);
}

.capability-card--featured .capability-icon {
  border-color: rgba(140, 188, 238, .19);
  background: rgba(255, 255, 255, .07);
  color: #6addf1;
}

.capability-card h3 {
  margin: 42px 0 13px;
  font-size: 20px;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.capability-card p {
  margin: 0;
  color: var(--ink-650);
  font-size: 13px;
  line-height: 1.9;
}

.capability-card--featured p {
  max-width: 540px;
  color: #afc2d9;
  font-size: 14px;
}

.capability-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  padding-top: 17px;
  border-top: 1px solid rgba(143, 184, 228, .15);
  color: #7f9cba;
  font-size: 11px;
}

.section--workflow {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(52, 136, 255, .1), transparent 30%),
    var(--canvas);
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  margin-top: 20px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-height: 340px;
  padding: 30px;
}

.workflow-list li + li {
  border-left: 1px solid var(--line);
}

.workflow-list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 53px;
  right: -12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #8da0b8;
  content: "→";
  font-size: 11px;
}

.workflow-index {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue-700);
  font: 800 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.workflow-copy {
  margin-top: 58px;
}

.workflow-copy > span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.workflow-copy h3 {
  margin: 8px 0 13px;
  font-size: 19px;
  line-height: 1.45;
}

.workflow-copy p {
  margin: 0;
  color: var(--ink-650);
  font-size: 13px;
  line-height: 1.9;
}

.section--product {
  background: #edf2f8;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .58fr);
  align-items: end;
  gap: 28px;
}

.showcase-main,
.showcase-narrow {
  min-width: 0;
  margin: 0;
}

.showcase-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--ink-500);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.showcase-label strong {
  color: var(--ink-800);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
}

.app-window--showcase {
  border-color: #cbd9e8;
  box-shadow: var(--shadow-md);
}

.device-frame {
  position: relative;
  overflow: hidden;
  padding: 13px 9px 9px;
  border: 1px solid #283c59;
  border-radius: 26px;
  background: #102039;
  box-shadow: var(--shadow-md);
}

.device-camera {
  width: 34px;
  height: 4px;
  margin: 0 auto 9px;
  border-radius: 999px;
  background: #34465e;
}

.device-frame img {
  width: 100%;
  border-radius: 18px;
}

.product-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-notes p {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 18px 20px;
  border-left: 2px solid #8aa9cc;
}

.product-notes strong {
  font-size: 13px;
}

.product-notes span {
  color: var(--ink-650);
  font-size: 11px;
}

.section--security {
  overflow: hidden;
  background:
    linear-gradient(rgba(67, 113, 165, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 113, 165, .08) 1px, transparent 1px),
    linear-gradient(135deg, #071a33, #0a284d 70%, #071a33);
  background-size: 72px 72px, 72px 72px, auto;
  color: #fff;
}

.security-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 130, 246, .18), transparent 68%);
}

.security-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 90px;
}

.security-intro h2 {
  color: #fff;
}

.security-intro > p {
  margin: 26px 0;
  color: #a9bbd2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link--light {
  color: #68d7ec;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(157, 193, 234, .15);
  border-radius: var(--radius-lg);
  background: rgba(157, 193, 234, .15);
}

.security-grid article {
  min-height: 230px;
  display: flex;
  gap: 18px;
  padding: 28px;
  background: rgba(7, 26, 51, .94);
}

.security-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(105, 215, 237, .3);
  border-radius: 8px;
  color: #69d7ed;
  font: 800 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.security-grid h3 {
  margin: 2px 0 12px;
  font-size: 16px;
  line-height: 1.45;
}

.security-grid p {
  margin: 0;
  color: #96abc3;
  font-size: 12px;
  line-height: 1.9;
}

.section-heading--download {
  align-items: start;
}

.release-explainer {
  padding: 22px 24px;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  background: #f8fafc;
}

.release-explainer p {
  margin: 13px 0 0;
  color: var(--ink-650);
  font-size: 12px;
  line-height: 1.8;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.release-badge::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.release-badge--pending {
  background: #fff1d9;
  color: #9a5b05;
}

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

.download-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfcfe;
}

.platform-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #d5e2f0;
  border-radius: 14px;
  background: #fff;
  color: #173c6c;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(25, 63, 106, .07);
}

.download-card .eyebrow {
  margin: 2px 0 6px;
  font-size: 9px;
}

.download-card-body {
  min-width: 0;
}

.download-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.download-card-heading .release-badge {
  flex: 0 0 auto;
}

.download-card h3 {
  margin: 0;
  font-size: 21px;
}

.download-card h3 span {
  color: var(--ink-500);
  font-size: 12px;
  font-weight: 650;
}

.download-card p {
  margin: 12px 0 18px;
  color: var(--ink-650);
  font-size: 12px;
}

.download-card p strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink-800);
  font-size: 11px;
}

.hash-line {
  display: grid;
  gap: 5px;
  color: var(--ink-500);
  font-size: 9px;
  letter-spacing: .08em;
}

.hash-line code,
.hash-line span:last-child {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink-800);
  font: 600 10px ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
}

.download-button {
  min-height: 48px;
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  border: 1px solid #d8e1eb;
  border-radius: 12px;
  background: #edf1f6;
  color: #7b8b9e;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.download-button[disabled] {
  cursor: not-allowed;
}

.download-button:not([disabled]) {
  border-color: #1f6be0;
  background: var(--blue-600);
  color: #fff;
  cursor: pointer;
}

.release-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.release-rules > div {
  min-width: 0;
  display: flex;
  gap: 14px;
  padding: 18px;
  background: #f7f9fc;
}

.release-rules > div > span {
  color: var(--blue-700);
  font: 800 9px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.release-rules p {
  margin: 0;
  color: var(--ink-650);
  font-size: 10px;
  line-height: 1.7;
}

.release-rules strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-800);
  font-size: 11px;
}

.upgrade-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid #cfe1f8;
  border-radius: 16px;
  background: #f1f7ff;
}

.upgrade-note-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dceaff;
  color: var(--blue-700);
  font: 800 13px Georgia, serif;
}

.upgrade-note p {
  margin: 0;
  color: var(--ink-650);
  font-size: 11px;
}

.upgrade-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-800);
  font-size: 12px;
}

.section--faq {
  border-top: 1px solid #e7edf4;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  color: var(--ink-800);
  font-size: 16px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 11px;
  left: 6px;
  width: 10px;
  border-top: 1px solid var(--ink-650);
  content: "";
  transition: transform .18s ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details > p {
  max-width: 700px;
  margin: -6px 58px 28px 0;
  color: var(--ink-650);
  font-size: 13px;
  line-height: 1.9;
}

.section--closing {
  padding-block: 72px;
  background: #fff;
}

.closing-panel {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 0%, rgba(99, 96, 231, .22), transparent 34%),
    linear-gradient(130deg, #08203e, #0b3260);
  color: #fff;
}

.closing-panel h2 {
  max-width: 780px;
  font-size: clamp(30px, 3vw, 44px);
}

.site-footer {
  padding-block: 72px 36px;
  background: var(--navy-950);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(110px, .55fr));
  gap: 54px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 22px 0 0;
  color: #778ca6;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 7px;
  color: #e7eef8;
  font-size: 12px;
}

.footer-nav a {
  color: #7f94ad;
  font-size: 11px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(145, 177, 213, .12);
  color: #61758e;
  font-size: 10px;
}

.footer-meta p {
  margin: 0;
}

/* Inner pages */
.inner-page {
  background: #f5f7fb;
}

.inner-page .brand-shell--header {
  background: #071a33;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 82px 94px;
  background:
    radial-gradient(circle at 82% 0%, rgba(74, 120, 235, .2), transparent 31%),
    linear-gradient(130deg, #071a33, #0a2a50);
  color: #fff;
}

.page-hero::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(130, 173, 221, .12);
  border-radius: 50%;
  content: "";
}

.page-hero .section-shell {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #8ea4be;
  font-size: 11px;
}

.breadcrumbs a {
  color: #b7c6d8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  max-width: 860px;
  color: #fff;
}

.page-hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #a9bbd2;
  font-size: 16px;
  line-height: 1.85;
}

.page-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 8px 11px;
  border: 1px solid rgba(154, 190, 231, .18);
  border-radius: 999px;
  color: #9eb2c9;
  font-size: 10px;
}

.page-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f0ba5d;
  content: "";
}

.page-content {
  padding-block: 72px 120px;
}

.page-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 820px);
  justify-content: space-between;
  gap: 72px;
}

.page-toc {
  position: sticky;
  top: 40px;
  align-self: start;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(14, 41, 74, .05);
}

.page-toc strong {
  padding: 8px 10px 12px;
  color: var(--ink-500);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.page-toc a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--ink-650);
  font-size: 12px;
  text-decoration: none;
}

.page-toc a:hover {
  background: var(--canvas-blue);
  color: var(--blue-700);
}

.prose {
  min-width: 0;
}

.prose-section {
  scroll-margin-top: 40px;
}

.prose-section + .prose-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.prose-section h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  letter-spacing: -.035em;
  line-height: 1.3;
}

.prose-section h3 {
  margin: 34px 0 11px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.prose-section p,
.prose-section li {
  color: var(--ink-650);
  font-size: 14px;
  line-height: 1.95;
}

.prose-section p {
  margin: 0 0 16px;
}

.prose-section a {
  color: var(--blue-700);
  text-underline-offset: 4px;
}

.prose-section ul,
.prose-section ol {
  padding-left: 1.4em;
}

.intro-card,
.warning-card,
.info-card {
  padding: 22px 24px;
  border: 1px solid #d8e4f1;
  border-radius: 16px;
  background: #f8fbff;
}

.intro-card {
  margin-bottom: 32px;
}

.intro-card p:last-child,
.warning-card p:last-child,
.info-card p:last-child {
  margin-bottom: 0;
}

.warning-card {
  border-color: #ead5ac;
  background: #fffaf0;
}

.warning-card strong,
.info-card strong {
  color: var(--ink-800);
}

.install-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  counter-increment: install-step;
}

.install-steps li::before {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eaf2ff;
  color: var(--blue-700);
  content: counter(install-step, decimal-leading-zero);
  font: 800 10px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.install-steps h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.install-steps p {
  margin: 0;
  font-size: 12px;
}

.command-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.command-box {
  overflow: hidden;
  border: 1px solid #1d3a60;
  border-radius: 14px;
  background: #07192f;
}

.command-meta {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 9px 7px 16px;
  border-bottom: 1px solid rgba(146, 183, 223, .14);
  color: #8298b1;
  font-size: 10px;
}

.copy-button {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(153, 192, 232, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: #d6e3f1;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(255, 255, 255, .1);
}

.command-box pre {
  overflow-x: auto;
  margin: 0;
  padding: 18px;
}

.command-box code {
  color: #e6f2ff;
  font: 500 12px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre;
}

.copy-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: #24705f;
  font-size: 11px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: .52em;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff5ef;
  color: #14765e;
  content: "✓";
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.data-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 30%;
  background: #f7f9fc;
  color: var(--ink-800);
}

.data-table td {
  color: var(--ink-650);
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.legal-meta {
  margin-top: 18px;
  color: #8091a7;
  font-size: 11px;
}

/* 404 */
.not-found-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #071a33;
  color: #fff;
}

.not-found-main {
  min-height: 620px;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(45, 118, 235, .2), transparent 25%),
    linear-gradient(rgba(80, 126, 177, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 126, 177, .07) 1px, transparent 1px),
    #071a33;
  background-size: auto, 70px 70px, 70px 70px, auto;
}

.not-found {
  max-width: 760px;
  text-align: center;
}

.error-code {
  margin: 0;
  background: linear-gradient(120deg, #75d9ed, #7e8df8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font: 800 clamp(82px, 15vw, 170px)/.9 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -.1em;
}

.not-found h1 {
  margin-top: 34px;
  color: #fff;
}

.not-found > p:not(.error-code) {
  margin: 20px auto 30px;
  color: #9eb2c9;
}

@media (max-width: 1180px) {
  .header-release {
    display: none;
  }

  .main-nav {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .stage-card--isolation { right: 0; }
  .stage-card--proxy { left: 0; }

  .capability-card {
    grid-column: span 4;
  }

  .capability-card--featured {
    grid-column: span 8;
  }

  .security-layout,
  .faq-layout {
    gap: 58px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .section-shell,
  .site-header {
    width: min(var(--shell), calc(100% - 40px));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    z-index: 50;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 12px;
    border: 1px solid rgba(154, 190, 230, .2);
    border-radius: 16px;
    background: rgba(7, 26, 51, .98);
    box-shadow: 0 24px 60px rgba(0, 8, 22, .46);
  }

  .main-nav[data-open="true"] {
    display: flex;
  }

  .main-nav a {
    padding: 12px 13px;
  }

  .main-nav .nav-action {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 72px 95px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 570px;
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .audience-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-block: 24px;
  }

  .audience-bar ul {
    justify-content: flex-start;
  }

  .section {
    padding-block: 100px;
  }

  .section-heading--split,
  .security-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading--split > p {
    max-width: 700px;
  }

  .capability-card,
  .capability-card--featured {
    grid-column: span 6;
  }

  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-list li:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .workflow-list li:nth-child(2)::after {
    display: none;
  }

  .product-showcase {
    grid-template-columns: minmax(0, 1.5fr) minmax(230px, .6fr);
  }

  .security-intro {
    max-width: 700px;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, .6fr);
    gap: 34px;
  }

  .page-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .page-toc strong {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header {
    width: min(var(--shell), calc(100% - 32px));
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .nav-toggle-label {
    display: none;
  }

  .hero {
    padding-block: 56px 80px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-stage {
    min-height: auto;
    display: block;
    padding: 38px 0 84px;
  }

  .orbit {
    display: none;
  }

  .app-window--hero {
    transform: none;
  }

  .stage-card {
    min-width: 0;
    width: calc(50% - 6px);
    padding: 12px;
  }

  .stage-card--isolation {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 0;
  }

  .stage-card--proxy {
    right: 0;
    bottom: 14px;
    left: auto;
  }

  .stage-card small {
    display: none;
  }

  .audience-bar ul {
    gap: 10px 20px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .security-intro h2,
  .faq-intro h2,
  .page-hero h1 {
    font-size: clamp(32px, 8.6vw, 42px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .capability-card,
  .capability-card--featured {
    min-height: 280px;
    grid-column: span 12;
  }

  .capability-card--featured {
    min-height: 340px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
  }

  .workflow-list li {
    min-height: 0;
  }

  .workflow-list li + li,
  .workflow-list li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .workflow-list li::after {
    display: none;
  }

  .workflow-copy {
    margin-top: 35px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .showcase-narrow {
    width: min(78%, 380px);
    margin-inline: auto;
  }

  .product-notes,
  .security-grid,
  .download-grid,
  .release-rules {
    grid-template-columns: 1fr;
  }

  .security-grid article {
    min-height: 0;
  }

  .download-card {
    padding: 24px;
  }

  .release-rules > div + div {
    border-top: 1px solid var(--line);
  }

  .upgrade-note {
    grid-template-columns: auto 1fr;
  }

  .upgrade-note .text-link {
    grid-column: 2;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 14px;
  }

  .closing-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding-block: 64px 72px;
  }

  .page-content {
    padding-block: 54px 90px;
  }

  .prose-section + .prose-section {
    margin-top: 54px;
    padding-top: 54px;
  }

  .page-toc {
    display: none;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table tr + tr {
    border-top: 1px solid var(--line);
  }

  .data-table th,
  .data-table td {
    border: 0;
  }

  .data-table th {
    padding-bottom: 4px;
  }

  .data-table td {
    padding-top: 4px;
  }
}

@media (max-width: 440px) {
  .section-shell,
  .site-header {
    width: min(var(--shell), calc(100% - 28px));
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .status-pill {
    width: 100%;
    border-radius: 12px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-proof {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .window-bar {
    height: 34px;
  }

  .stage-card {
    width: calc(50% - 4px);
  }

  .stage-card .mini-icon {
    width: 20px;
    height: 20px;
  }

  .stage-card strong {
    font-size: 10px;
  }

  .capability-card,
  .capability-card--featured {
    padding: 24px;
  }

  .capability-note {
    right: 24px;
    left: 24px;
  }

  .security-grid article {
    padding: 22px;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-card-heading {
    align-items: flex-start;
  }

  .download-button {
    grid-column: 1;
  }

  .release-explainer {
    padding: 18px;
  }

  .upgrade-note {
    grid-template-columns: 1fr;
  }

  .upgrade-note .text-link {
    grid-column: 1;
  }

  .showcase-narrow {
    width: 92%;
  }

  .footer-grid {
    gap: 34px 26px;
  }

  .install-steps li {
    grid-template-columns: 36px 1fr;
    gap: 13px;
    padding: 16px;
  }

  .install-steps li::before {
    width: 36px;
    height: 36px;
  }

  .command-meta {
    padding-left: 12px;
  }

  .command-box pre {
    padding: 15px 12px;
  }

  .command-box code {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .capability-card:hover {
    transform: none;
  }
}
