/* YUMINGLAB.COM — a self-contained, responsive product site. */
:root {
  --ink: #172c49;
  --brand: #2f7df6;
  --muted: #65758c;
  --line: #dce5f1;
  --paper: #f7faff;
  --accent: #a4d8ff;
  --white: #fff;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
a {
  color: inherit;
  text-decoration: none;
}
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-weight: 600;
}
img,
svg {
  vertical-align: middle;
}
button {
  color: inherit;
}
::selection {
  color: var(--ink);
  background: var(--accent);
}
:focus-visible {
  outline: 3px solid #409eff;
  outline-offset: 5px;
}
button:focus-visible {
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.mono {
  font-family: var(--mono);
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--brand);
  color: white;
  border-radius: 8px;
}
.skip-link:focus {
  top: 15px;
}
.mobile-break {
  display: none;
}
.site-header {
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 244, 0.8);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand > span {
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 650;
  line-height: 1.3;
}
.brand small {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.3px;
  margin-top: 5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  flex: 1;
  justify-content: flex-end;
}
.site-nav > a {
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav > a:hover {
  color: var(--brand);
}
.nav-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #409eff;
  border-radius: 50%;
  vertical-align: top;
  margin: 3px 0 0 3px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 28px;
}
.login-link {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.login-link .icon {
  width: 15px;
  height: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 50px;
  padding: 12px 23px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 7px;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.button:hover .icon:last-child {
  transform: translateX(3px);
}
.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px #2f7df621;
}
.button-dark:hover {
  background: #2169df;
  box-shadow: 0 7px 18px #2f7df630;
}
.button-light {
  background: #ffffff90;
  border-color: #cad5e6;
  color: var(--ink);
}
.button-light:hover {
  background: #fff;
  border-color: #9aacc8;
}
.button-small {
  min-height: 41px;
  padding: 8px 16px;
  font-size: 12px;
}
.button-lime {
  background: var(--accent);
  color: var(--ink);
}
.button-lime:hover {
  background: #c4e6ff;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 82% 44%, #d9eaff88 0, transparent 62%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: -0;
  background-image:
    linear-gradient(#518bdc25 1px, transparent 1px),
    linear-gradient(90deg, #518bdc25 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.27;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 34px;
  position: relative;
  padding-top: 83px;
  padding-bottom: 70px;
  min-height: 642px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  flex-shrink: 0;
  background: #409eff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #409eff10;
}
.hero .eyebrow {
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(42px, 4.25vw, 61px);
  line-height: 1.38;
  letter-spacing: -2.9px;
  font-weight: 600;
}
.hero h1 > span {
  color: var(--brand);
}
.hero-description {
  margin-top: 24px;
  color: #65758c;
  font-size: 15px;
  line-height: 1.95;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.hero-notes {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: #667a96;
  margin-top: 24px;
}
.hero-notes > span {
  display: flex;
  gap: 5px;
  align-items: center;
}
.hero-notes .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2;
}
.hero-caption {
  display: flex;
  align-items: center;
  position: relative;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-block: 22px;
  font-size: 11px;
  color: #6c7a90;
}
.hero-caption > span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
}
.hero-caption > p {
  border-left: 1px solid #becce1;
  padding-left: 22px;
}
.motion-toggle {
  margin-left: auto;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #4f6586;
  padding: 6px 0 6px 12px;
}
.motion-symbol {
  font-family: var(--mono);
  font-size: 13px;
}
.motion-toggle[aria-pressed="true"] .motion-symbol {
  font-size: 0;
}
.motion-toggle[aria-pressed="true"] .motion-symbol::before {
  content: "▷";
  font-size: 15px;
}
.network-demo {
  position: relative;
  min-width: 0;
  background: linear-gradient(150deg, #fffffffa, #f2f7ffed);
  border: 1px solid #cfdff5;
  border-radius: 14px;
  box-shadow:
    0 18px 48px #1f5ba90c,
    0 2px 7px #1f5ba906;
  transform: rotate(-1deg);
  padding: 23px 24px 0;
  transition: border-color 0.5s;
}
.network-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-family: var(--mono);
  letter-spacing: 1.6px;
  color: #61738e;
}
.network-topline > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-label {
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 1px;
}
.network-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}
.network-heading > span:first-child {
  font-size: 17px;
  font-weight: 550;
  letter-spacing: 0.5px;
}
.network-state-pill {
  color: #276bbf;
  font-size: 9px;
  background: #e7f1ff;
  padding: 3px 8px;
  border-radius: 4px;
}
.network-graph {
  position: relative;
  aspect-ratio: 650/400;
  margin: 2px -8px -5px;
  background: radial-gradient(circle, #6d9ed738 0.8px, transparent 1px);
  background-size: 18px 18px;
}
.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.route {
  stroke: #c2d6f1;
  stroke-width: 1.5;
}
.route-primary,
.route-end {
  stroke: #6ca7f6;
}
.route-backup {
  stroke-dasharray: 5 5;
  opacity: 0.7;
}
.route-junction {
  fill: #73b5ff;
}
.packet {
  stroke: #2f7df6;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 13 590;
  animation: route-flow 6s linear infinite;
}
.packet-backup {
  opacity: 0;
}
.packet-end {
  stroke-dasharray: 10 140;
  animation-duration: 2s;
  animation-delay: 0.5s;
}
.network-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -27px);
  font-size: 10px;
  white-space: nowrap;
  top: 50%;
}
.network-node strong {
  font-size: 10px;
  font-weight: 500;
}
.node-icon {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfcfe8;
  background: #f5f8fc;
  box-shadow: 0 5px 10px #1c375f09;
  border-radius: 12px;
}
.node-icon .icon {
  width: 24px;
  height: 24px;
  color: #3778cd;
}
.visitor-node {
  left: 10%;
}
.cdn-node {
  left: 68.5%;
}
.origin-node {
  left: 91.5%;
}
.cdn-node .node-icon {
  background: #e6f1ff;
  border-color: #7eaff0;
}
.cdn-node small {
  font-size: 8px;
  line-height: 1;
  color: #7184a1;
  margin-top: -4px;
}
.domain-node {
  position: absolute;
  left: 38.5%;
  width: 166px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #92bdf4;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 5px 10px #1a335806;
  transition:
    background 0.5s,
    border-color 0.5s,
    opacity 0.5s;
}
.primary-domain {
  top: 22.5%;
}
.backup-domain {
  top: 80%;
  border-style: dashed;
  border-color: #b4c6e1;
  background: #eef2f9;
}
.domain-node > div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  color: #5a7090;
}
.domain-node b {
  margin-left: auto;
  font-size: 8px;
  font-weight: 400;
  color: #3076cd;
}
.domain-node > strong {
  font-family: var(--mono);
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #254a7b;
  letter-spacing: -0.2px;
}
.tiny-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #409eff;
}
.backup-domain .tiny-dot {
  background: #94a3b9;
}
.backup-domain b {
  color: #7689a6;
}
.network-orchestrator {
  position: absolute;
  left: 38.5%;
  top: 49%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #6a7f9f;
}
.scan-ring {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 65px;
  height: 65px;
  border: 1px solid #99afcf70;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: scan 4s ease-out infinite;
}
.network-orchestrator img {
  position: relative;
  box-shadow: 0 0 0 7px #e4ebf6;
  border-radius: 8px;
}
.graph-note {
  position: absolute;
  left: 38.5%;
  bottom: 0;
  font-size: 8px;
  letter-spacing: 1px;
  color: #8393aa;
  transform: translateX(-50%);
}
.network-bottom {
  margin-top: 12px;
  border-top: 1px solid #d6e0ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0 18px;
}
.network-bottom > div:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #687d9c;
  font-size: 10px;
}
.live-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5279b3;
  flex-shrink: 0;
}
.simulation-actions {
  display: flex;
  gap: 7px;
}
.simulate-button {
  background: #e8f1ff;
  border: 1px solid #c7dcf8;
  color: #2c68b4;
  border-radius: 5px;
  min-height: 33px;
  padding: 5px 13px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.simulate-button .icon {
  width: 13px;
  height: 13px;
}
.simulate-button:hover {
  background: #d9e9ff;
}
.simulate-button:disabled {
  opacity: 0.6;
}
.reset-button {
  border: 1px solid #c9d8ee;
  background: transparent;
  color: #5f779c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 33px;
}
.reset-button .icon {
  width: 14px;
  height: 14px;
}
.reset-button:hover {
  background: #dae4f3;
}
.network-demo[data-state="detected"] .primary-domain,
.network-demo[data-state="switching"] .primary-domain,
.network-demo[data-state="recovered"] .primary-domain {
  border-color: #d6b3a0;
  background: #fff9f3;
}
.network-demo:not([data-state="normal"]) .primary-domain b {
  color: #ac7555;
}
.network-demo:not([data-state="normal"]) .primary-domain .tiny-dot {
  background: #b98562;
}
.network-demo:not([data-state="normal"]) .route-primary {
  stroke: #c6977b;
  stroke-dasharray: 4 5;
  opacity: 0.6;
}
.network-demo:not([data-state="normal"]) .packet-primary {
  opacity: 0;
}
.network-demo[data-state="detected"] .packet-end,
.network-demo[data-state="switching"] .packet-end {
  opacity: 0;
}
.network-demo[data-state="switching"] .backup-domain {
  border-color: #85b9fa;
  background: #edf5ff;
}
.network-demo[data-state="recovered"] .route-backup {
  stroke: #409eff;
  stroke-dasharray: none;
  opacity: 1;
}
.network-demo[data-state="recovered"] .packet-backup {
  opacity: 1;
}
.network-demo[data-state="recovered"] .backup-domain {
  border-style: solid;
  border-color: #6ba9f6;
  background: #edf6ff;
}
.network-demo[data-state="recovered"] .backup-domain b {
  color: #2875cf;
}
.network-demo[data-state="recovered"] .backup-domain .tiny-dot {
  background: #409eff;
}
.network-demo[data-state="recovered"] .primary-domain {
  opacity: 0.65;
}
.capability-strip {
  background: #edf3fb;
  border-block: 1px solid var(--line);
}
.capability-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-height: 83px;
  font-size: 12px;
}
.capability-inner > span:first-child {
  color: #7b889b;
  font-size: 11px;
}
.capability-inner > div,
.capability-inner > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 500;
  color: #377ccf;
}
.capability-inner .icon {
  width: 18px;
  height: 18px;
}
.strip-plus {
  font-size: 15px;
  font-weight: 300;
  color: #9ba8bc;
}
.capability-inner > strong {
  color: #2d5795;
  font-size: 12px;
}
.capability-inner > strong .icon {
  width: 15px;
}
.section {
  padding-block: 104px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #5c708d;
  margin-bottom: 17px;
}
h2 {
  font-size: 37px;
  letter-spacing: -1.1px;
  line-height: 1.5;
}
.section-heading > p {
  font-size: 13px;
  color: #4c658b;
  line-height: 1.95;
  padding-bottom: 6px;
}
.products-section {
  background: #fff;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  border: 1px solid #e0e8f3;
  border-radius: 11px;
  padding: 28px;
  background: #fafcff;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: 0 10px 25px #162b4a10;
  transform: translateY(-4px);
}
.product-featured {
  background: #edf5ff;
  border-color: #c9def8;
}
.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.product-top .mono {
  font-size: 9px;
  color: #7788a1;
  letter-spacing: 1px;
}
.product-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #eaf2ff;
  border: 1px solid #d9e8fc;
  border-radius: 9px;
  color: #387bcf;
}
.product-featured .product-icon {
  background: #dcebff;
}
.product-card h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}
.product-card > p {
  font-size: 13px;
  line-height: 1.95;
  color: #4c658a;
  min-height: 48px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2f72c8;
  font-size: 12px;
  font-weight: 500;
}
.text-link .icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.product-card > .text-link {
  display: flex;
  border-top: 1px solid #d0dced;
  padding-top: 20px;
  margin-top: 21px;
  justify-content: space-between;
}
.domain-mini,
.protection-mini,
.delivery-mini {
  height: 165px;
  margin-top: 26px;
  position: relative;
}
.domain-mini {
  padding: 19px 12px 0;
}
.mini-search {
  border: 1px solid #d1dced;
  box-shadow: 0 3px 10px #1b2f4e04;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 8px 10px;
}
.mini-search > .icon {
  width: 15px;
  height: 15px;
  color: #8293ac;
}
.mini-search > span:nth-child(2) {
  font-family: var(--mono);
  font-size: 11px;
  color: #4b648a;
}
.keycap {
  margin-left: auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e3f3;
  background: #f0f4fa;
  border-radius: 4px;
  line-height: 1;
  color: #8294af;
  font-size: 12px;
}
.suffix-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  gap: 7px;
}
.suffix-row > span {
  flex: 1;
  text-align: center;
  border: 1px solid #ccd9ec;
  padding: 4px 5px;
  font-size: 11px;
  font-family: var(--mono);
  border-radius: 4px;
  color: #49699a;
  background: #eaf0f8;
}
.suffix-row > span:first-child {
  background: #d2e0f5;
  color: #264779;
  border-color: #b1c7e9;
}
.mini-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8395af;
  font-size: 9px;
  margin-top: 15px;
}
.mini-footer .icon {
  width: 13px;
  height: 13px;
}
.protection-mini {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
.protection-orbit {
  width: 99px;
  height: 99px;
  border: 1px solid #bcceea;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.protection-orbit::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed #a1badf;
  border-radius: 50%;
}
.protection-orbit > .icon {
  width: 39px;
  height: 39px;
  color: #3563a8;
}
.orbit-dot {
  position: absolute;
  inset: -3px;
  animation: orbit 15s linear infinite;
}
.orbit-dot::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border: 2px solid #e9eff8;
  background: #4371b7;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 3px);
  top: 0;
  box-shadow: 0 0 0 3px #88a7d626;
}
.protection-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  color: #4c6d9f;
}
.protection-channels > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid #c3d5ef;
  border-radius: 4px;
  background: #eff3fa;
  white-space: nowrap;
}
.protection-channels i {
  width: 4px;
  height: 4px;
  background: #4e7abb;
  border-radius: 50%;
}
.delivery-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.delivery-source {
  width: 53px;
  height: 59px;
  border: 1px solid #cad7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #e7edf7;
  border-radius: 7px;
  flex-shrink: 0;
  font-size: 9px;
  color: #6f85a6;
}
.delivery-source .icon {
  width: 21px;
  height: 21px;
  color: #5473a2;
}
.delivery-connectors {
  height: 108px;
  width: 47px;
  position: relative;
  flex-shrink: 0;
}
.delivery-connectors i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  top: 50%;
  background: #b0c4e2;
}
.delivery-connectors i:first-child {
  top: 16%;
  left: 23px;
  background: none;
  height: 34%;
  border-top: 1px solid #b0c4e2;
  border-left: 1px solid #b0c4e2;
  border-radius: 5px 0 0 0;
}
.delivery-connectors i:last-child {
  top: 50%;
  left: 23px;
  background: none;
  height: 34%;
  border-bottom: 1px solid #b0c4e2;
  border-left: 1px solid #b0c4e2;
  border-radius: 0 0 0 5px;
}
.delivery-targets {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.delivery-targets > span {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid #d1dced;
  font-size: 10px;
  color: #687e9f;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.delivery-targets i {
  width: 4px;
  height: 4px;
  background: #5d81b6;
  border-radius: 50%;
}
.mini-example {
  position: absolute;
  font-size: 8px;
  color: #97a4b7;
  right: 0;
  bottom: 0;
}
.experience-section {
  background: #edf3fc;
  padding: 94px 0 100px;
  border-bottom: 1px solid #dce6f4;
}
.experience-shell {
  background: #13233b;
  border: 1px solid #223a59;
  color: #eff5ff;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 20px 40px #15325314;
}
.lab-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid #32507480;
  background: #172a44;
  gap: 20px;
}
.lab-tabs {
  display: flex;
  gap: 6px;
}
.lab-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  background: transparent;
  color: #9bb0cd;
  font-size: 12px;
  border-radius: 5px;
  padding: 10px 15px;
  white-space: nowrap;
}
.lab-tabs button[aria-selected="true"] {
  color: #e5f3ff;
  background: #294d78;
  border-color: #3a6da6;
}
.lab-tabs button:hover {
  color: #e5f3ff;
}
.lab-tabs .icon {
  width: 16px;
  height: 16px;
}
.lab-tag {
  font-family: var(--mono);
  color: #617799;
  font-size: 8px;
  letter-spacing: 1.2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lab-tag i {
  width: 4px;
  height: 4px;
  background: #5d86c3;
  border-radius: 50%;
}
.lab-panel {
  align-content: start;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 54px;
  padding: 48px;
  min-height: 447px;
}
.lab-copy {
  padding-top: 3px;
}
.lab-kicker {
  font-size: 11px;
  color: #85bcff;
  letter-spacing: 1px;
}
.lab-copy h3 {
  font-size: 30px;
  line-height: 1.55;
  letter-spacing: -0.8px;
  margin-top: 12px;
}
.lab-copy > p {
  font-size: 12px;
  color: #a2b4cd;
  line-height: 1.95;
  max-width: 370px;
  margin-top: 17px;
}
.lab-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  font-size: 11px;
  color: #c2d2e8;
}
.lab-points > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.lab-points .icon {
  width: 14px;
  height: 14px;
  color: #7db9ff;
}
.lab-link {
  border: 0;
  padding: 0;
  background: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  margin-top: 24px;
  color: #9ad7ff;
}
.lab-link .icon {
  width: 15px;
  height: 15px;
}
.failover-visual,
.cache-visual {
  border: 1px solid #37577780;
  border-radius: 8px;
  background: #1b304d;
  align-self: center;
  padding: 19px 23px;
}
.visual-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #6f86a9;
  font-size: 9px;
  letter-spacing: 1px;
  font-family: var(--mono);
}
.visual-topline > span:last-child {
  font-family: var(--font);
  letter-spacing: 0;
  font-size: 9px;
}
.workflow {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.workflow li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.workflow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 49px;
  bottom: -8px;
  width: 1px;
  background: #30518366;
}
.workflow-number {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #466e99;
  background: #254363;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #bfddff;
  font-family: var(--mono);
}
.workflow li:last-child .workflow-number {
  background: #9ed8ff;
  border-color: #9ed8ff;
  color: #163d65;
}
.workflow strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.workflow p {
  font-size: 10px;
  color: #a3b6d0;
  margin-top: 3px;
}
.workflow-tag {
  font-size: 8px;
  white-space: nowrap;
  color: #b5d9ff;
  background: #2b4b6e;
  padding: 4px 6px;
  border-radius: 4px;
  margin-left: auto;
}
.warning-tag {
  color: #e8bd80;
  background: #6c51374a;
}
.workflow li > .icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: #546f98;
}
.workflow-footnote {
  border-top: 1px solid #28457066;
  padding-top: 14px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #839abc;
}
.workflow-footnote .icon {
  width: 13px;
  height: 13px;
}
.demo-switch {
  display: inline-flex;
  gap: 5px;
  margin-top: 26px;
  padding: 4px;
  border: 1px solid #426389;
  border-radius: 6px;
}
.demo-switch button {
  padding: 7px 17px;
  border: 0;
  border-radius: 3px;
  font-size: 11px;
  color: #a6bdd8;
  background: transparent;
  white-space: nowrap;
}
.demo-switch button[aria-pressed="true"] {
  background: #a4d8ff;
  color: #163e68;
}
.lab-copy > p.lab-note {
  color: #758bab;
  font-size: 10px;
  margin-top: 22px;
}
.cache-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 46px 2px 34px;
  position: relative;
}
.cache-flow > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: opacity 0.4s;
}
.cache-node {
  width: 58px;
  height: 58px;
  border: 1px solid #476f9b;
  border-radius: 12px;
  background: #254363;
  display: grid;
  place-items: center;
}
.cache-node .icon {
  width: 27px;
  height: 27px;
  color: #81a3d6;
}
.cache-node-edge {
  background: #9bd2ff;
  border-color: #b5e0ff;
  box-shadow: 0 0 30px #87ace30c;
}
.cache-node-edge .icon {
  color: #184575;
}
.cache-flow strong {
  font-size: 10px;
  font-weight: 400;
  color: #98aece;
}
.cache-wire {
  height: 1px;
  flex: 1;
  min-width: 14px;
  background: #3662a5;
  margin-top: 29px;
  position: relative;
  overflow: hidden;
}
.cache-wire::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 16px;
  background: #9cbced;
  animation: cache-travel 2s linear infinite;
}
.cache-wire-origin::after {
  animation-delay: 1s;
}
.cached-badge {
  position: absolute;
  top: -25px;
  white-space: nowrap;
  font-size: 8px;
  color: #a1c0ee;
  opacity: 0;
  transition: opacity 0.4s;
}
.cache-caption {
  border-top: 1px solid #2a48756b;
  padding-top: 21px;
  min-height: 92px;
}
.cache-caption h4 {
  font-size: 14px;
  color: #d4e9ff;
}
.cache-caption p {
  font-size: 11px;
  color: #a2b8d3;
  margin-top: 8px;
}
.cache-file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 0;
  border-top: 1px solid #2a48756b;
  font-family: var(--mono);
  font-size: 10px;
  color: #7d98c0;
}
.cache-file-label {
  font-family: var(--font);
  margin-left: auto;
  font-size: 9px;
  color: #59739b;
}
.cache-visual[data-cache="hit"] .cache-origin {
  opacity: 0.3;
}
.cache-visual[data-cache="hit"] .cache-wire-origin {
  background: repeating-linear-gradient(
    90deg,
    #355584 0 4px,
    transparent 4px 8px
  );
}
.cache-visual[data-cache="hit"] .cache-wire-origin::after {
  display: none;
}
.cache-visual[data-cache="hit"] .cached-badge {
  opacity: 1;
}
.cache-visual[data-cache="hit"] .cache-wire-first::after {
  animation-direction: reverse;
}
.cache-visual[data-cache="hit"] .cache-node-edge {
  box-shadow: 0 0 28px #9abbed25;
}
.mode-switch button {
  padding-inline: 12px;
}
.lab-copy #mode-name {
  font-size: 12px;
  margin-top: 22px;
  color: #b5cdf2;
}
.lab-copy .mode-description {
  font-size: 11px;
  margin-top: 7px;
  min-height: 43px;
}
.browser-visual {
  align-self: center;
  border: 1px solid #2e4b77;
  border-radius: 8px;
  overflow: hidden;
  background: #e7edf7;
}
.browser-chrome {
  height: 39px;
  background: #2a4667;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
}
.browser-dots {
  display: flex;
  gap: 4px;
}
.browser-dots i {
  width: 5px;
  height: 5px;
  background: #5b759d;
  border-radius: 50%;
}
.browser-chrome > span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #1b3452;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 9px;
  color: #c0d7f1;
  flex: 1;
}
.browser-chrome .icon {
  width: 10px;
  height: 10px;
}
.browser-preview {
  margin: 16px;
  padding: 15px;
  background: #fff;
  border: 1px solid #d0dced;
  border-radius: 4px;
  position: relative;
  transition:
    margin 0.4s,
    border 0.4s,
    box-shadow 0.4s;
}
.preview-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
}
.preview-logo {
  width: 23px;
  height: 11px;
  background: #39619c;
  border-radius: 2px;
  margin-right: auto;
}
.preview-nav i {
  height: 4px;
  width: 26px;
  background: #d7e1ef;
  border-radius: 2px;
}
.preview-body {
  display: flex;
  gap: 19px;
  align-items: center;
}
.preview-picture {
  width: 40%;
  aspect-ratio: 1/1;
  background: radial-gradient(ellipse at 70% 25%, #c3d6f3, #e1e9f6);
  border: 1px solid #d2deef;
  border-radius: 4px;
  display: grid;
  place-items: center;
}
.preview-picture .icon {
  width: 51px;
  height: 51px;
  stroke-width: 0.6;
  color: #6786b5;
}
.preview-lines {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.preview-lines > span {
  font-size: 20px;
  line-height: 1.6;
  color: #2f4f7e;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.preview-lines i {
  width: 90%;
  height: 4px;
  background: #d7e1f1;
  border-radius: 2px;
}
.preview-lines i:nth-last-child(2) {
  width: 65%;
}
.preview-lines b {
  width: 50px;
  height: 17px;
  border-radius: 3px;
  background: #96b0d6;
  margin-top: 6px;
}
.preview-bottom {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 23px;
  color: #778ba9;
  font-size: 9px;
}
.preview-bottom .status-dot {
  width: 4px;
  height: 4px;
}
.preview-iframe-label {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 8px;
  color: #456799;
}
.browser-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 18px 15px;
  color: #5a7091;
  font-size: 9px;
}
.browser-route i {
  height: 1px;
  flex: 1;
  background: #9eb2d1;
  position: relative;
}
.browser-route i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #7a96c1;
  border-right: 1px solid #7a96c1;
  transform: rotate(45deg);
}
.browser-visual[data-mode="iframe"] .browser-preview {
  margin: 24px 24px 32px;
  border: 1px dashed #6485b6;
  box-shadow: 0 0 0 6px #d1dff4;
}
.browser-visual[data-mode="iframe"] .preview-iframe-label {
  display: block;
}
.browser-visual[data-mode="redirect"] .mode-middle {
  opacity: 0.35;
  text-decoration: line-through;
}
.browser-visual[data-mode="redirect"] .browser-chrome > span {
  background: #356dad;
  color: #edf7ff;
}
.advantages-section {
  background: #fff;
}
.advantages-layout {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 100px;
}
.advantages-intro > p {
  font-size: 13px;
  color: #4c668c;
  line-height: 2;
  margin-top: 22px;
}
.advantages-intro > .text-link {
  margin-top: 26px;
}
.one-console {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-top: 49px;
  width: max-content;
  max-width: 100%;
}
.one-console::before {
  position: absolute;
  content: "";
  height: 1px;
  background: #c2d1e8;
  left: 0;
  right: 0;
  top: 50%;
}
.console-chip {
  position: relative;
  background: #f5f8fc;
  border: 1px solid #d4dff0;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 9px;
  color: #7e94b6;
  padding: 6px 9px;
}
.console-logo {
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 15px;
  padding: 9px;
  background: #fff;
  box-shadow: 0 4px 15px #22427210;
  border: 1px solid #dde6f4;
}
.advantage-list {
  margin-top: 1px;
}
.advantage-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #d9e1ee;
}
.advantage-row:first-child {
  padding-top: 0;
}
.advantage-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.advantage-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: #e7eef8;
  border: 1px solid #d7e1f1;
  border-radius: 9px;
  flex-shrink: 0;
  color: #47699d;
}
.advantage-icon .icon {
  width: 19px;
  height: 19px;
}
.advantage-row h3 {
  font-size: 16px;
  font-weight: 550;
  margin: 2px 0 8px;
}
.advantage-row p {
  font-size: 12px;
  line-height: 1.95;
  color: #4c668c;
  max-width: 365px;
}
.row-number {
  font-family: var(--mono);
  font-size: 9px;
  color: #a3afc1;
  margin-left: auto;
  margin-top: 6px;
}
.getting-started-section {
  background: #f1f6fe;
  border-block: 1px solid #e0e9f5;
}
.getting-started-section h2 {
  font-size: 34px;
}
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0;
}
.onboarding-steps > div {
  position: relative;
  padding: 0 38px;
  border-right: 1px solid #cbd8ec;
}
.onboarding-steps > div:first-child {
  padding-left: 0;
}
.onboarding-steps > div:last-child {
  border: 0;
}
.onboarding-steps > div > span {
  font-family: var(--mono);
  color: #5275aa;
  font-size: 12px;
  display: block;
  margin-bottom: 15px;
}
.onboarding-steps h3 {
  font-size: 19px;
  margin-bottom: 7px;
}
.onboarding-steps p {
  font-size: 12px;
  color: #657894;
}
.plan-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #fff;
  border: 1px solid #d0dcee;
  border-radius: 8px;
  padding: 27px 30px;
}
.plan-panel > div {
  display: flex;
  align-items: center;
  gap: 19px;
}
.plan-mark {
  background: #e9eff8;
  display: grid;
  place-items: center;
  border-radius: 8px;
  width: 41px;
  height: 41px;
  flex-shrink: 0;
  color: #5272a1;
}
.plan-panel h3 {
  font-size: 15px;
  font-weight: 550;
  margin-bottom: 6px;
}
.plan-panel p {
  font-size: 11px;
  color: #77879e;
  max-width: 650px;
}
.plan-panel .button {
  font-size: 12px;
  min-height: 44px;
  padding: 10px 19px;
}
.faq-section {
  background: #fff;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}
.faq-layout h2 {
  font-size: 31px;
}
.faq-layout > div > p {
  font-size: 12px;
  line-height: 2;
  color: #76869e;
  margin-top: 23px;
}
.faq-layout > div > p .text-link {
  margin-top: 5px;
}
.faq-list details {
  border-bottom: 1px solid #d2ddee;
  padding: 21px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: #6e85a8;
  top: 7px;
  left: 2px;
}
.faq-list summary > span::after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
.faq-list details[open] summary > span::after {
  transform: rotate(0);
}
.faq-list details p {
  font-size: 12px;
  color: #425f8a;
  line-height: 2;
  margin-top: 16px;
  padding-right: 32px;
  max-width: 650px;
}
.final-cta {
  position: relative;
  background: linear-gradient(110deg, #142c4d, #173b69);
  color: #eef6ff;
  overflow: hidden;
}
.final-cta > .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 62px;
}
.final-cta > .container > div:first-child {
  position: relative;
  z-index: 1;
}
.final-cta .eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #91c4ff;
}
.final-cta .status-dot {
  background: #9abbed;
}
.final-cta h2 {
  font-size: 34px;
  margin-top: 16px;
  letter-spacing: -0.6px;
}
.final-cta p {
  font-size: 12px;
  margin-top: 14px;
  color: #aec7e5;
}
.final-cta .button {
  position: relative;
  z-index: 1;
}
.cta-orbit {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.32;
  pointer-events: none;
}
.cta-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid #486faa50;
  border-radius: 50%;
}
.cta-orbit span:nth-child(2) {
  inset: 65px;
}
.cta-orbit span:nth-child(3) {
  inset: 130px;
}
.cta-orbit::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #6694da;
  border-radius: 50%;
  left: 55px;
  top: 90px;
  box-shadow: 0 0 0 8px #5078b40e;
}
.site-footer {
  background: #f7faff;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  padding: 58px 0 44px;
}
.footer-main > div > p {
  font-size: 11px;
  color: #76869f;
  margin-top: 19px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: #627797;
}
.footer-links strong {
  color: #274167;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 5px;
}
.footer-links a:hover {
  color: #1a3256;
}
.footer-links .icon {
  width: 11px;
  height: 11px;
  margin-left: 3px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d0dcee;
  font-size: 9px;
  color: #7385a1;
  padding: 20px 0 25px;
}
.footer-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
}
.footer-bottom .status-dot {
  width: 4px;
  height: 4px;
}
@keyframes route-flow {
  to {
    stroke-dashoffset: -603;
  }
}
@keyframes scan {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }
  90%,
  100% {
    transform: translate(-50%, -50%) scale(1.28);
    opacity: 0;
  }
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes cache-travel {
  from {
    left: -20px;
  }
  to {
    left: 100%;
  }
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready .product-card:nth-child(2) {
  transition-delay: 0.08s;
}
.js-ready .product-card:nth-child(3) {
  transition-delay: 0.16s;
}
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}
.motion-paused .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
@media (min-width: 1440px) {
  .hero-layout {
    gap: 57px;
    padding-top: 95px;
    padding-bottom: 85px;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-description {
    font-size: 16px;
  }
  .network-demo {
    padding-inline: 27px;
  }
  .network-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
  }
  .network-bottom > div:first-child {
    max-width: 235px;
    font-size: 9px;
  }
  .simulate-button {
    font-size: 10px;
    padding-inline: 9px;
  }
  .network-graph {
    margin-top: 10px;
  }
  .hero-layout {
    min-height: 676px;
  }
}
@media (max-width: 1199px) {
  .container {
    width: calc(100% - 64px);
  }
  .site-nav {
    gap: 21px;
    font-size: 12px;
  }
  .nav-actions {
    gap: 17px;
    margin-left: 10px;
  }
  .hero-layout {
    gap: 25px;
    grid-template-columns: 1fr 1.08fr;
    padding-top: 68px;
    padding-bottom: 60px;
    min-height: 610px;
  }
  .hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding: 11px 17px;
    font-size: 12px;
    gap: 8px;
  }
  .hero-notes {
    gap: 15px;
    font-size: 10px;
  }
  .network-demo {
    padding: 20px 20px 0;
  }
  .domain-node {
    width: 143px;
    padding: 9px 10px;
  }
  .domain-node > strong {
    font-size: 11px;
  }
  .domain-node > div {
    font-size: 8px;
  }
  .node-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .network-node {
    transform: translate(-50%, -22px);
  }
  .network-heading > span:first-child {
    font-size: 15px;
  }
  .network-orchestrator {
    top: 50%;
  }
  .network-orchestrator img {
    width: 27px;
    height: 27px;
  }
  .capability-inner {
    gap: 10px;
    font-size: 11px;
  }
  .capability-inner > span:first-child {
    font-size: 10px;
  }
  .capability-inner > strong {
    font-size: 11px;
  }
  .section {
    padding-block: 80px;
  }
  h2 {
    font-size: 32px;
  }
  .section-heading > p {
    font-size: 12px;
  }
  .product-card {
    padding: 23px;
  }
  .product-card h3 {
    font-size: 18px;
  }
  .product-card > p {
    font-size: 11px;
    min-height: 43px;
  }
  .product-grid {
    gap: 16px;
  }
  .protection-mini {
    gap: 10px;
  }
  .protection-orbit {
    width: 83px;
    height: 83px;
  }
  .protection-channels {
    font-size: 9px;
  }
  .lab-panel {
    padding: 38px;
    gap: 35px;
  }
  .lab-tag {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .lab-copy h3 {
    font-size: 28px;
  }
  .advantages-layout {
    gap: 65px;
  }
  .footer-links {
    gap: 50px;
  }
  .plan-panel p {
    max-width: 530px;
  }
  .experience-section {
    padding-block: 80px;
  }
}
@media (max-width: 999px) {
  .site-nav {
    gap: 14px;
  }
  .site-nav > a {
    font-size: 11px;
  }
  .nav-actions {
    margin-left: 5px;
    gap: 15px;
  }
  .hero-layout {
    grid-template-columns: 1fr 1.04fr;
    gap: 18px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 10px;
  }
  .hero-notes {
    font-size: 9px;
    gap: 10px;
  }
  .network-demo {
    padding: 18px 16px 0;
  }
  .network-state-pill {
    font-size: 8px;
  }
  .network-graph {
    margin-top: 15px;
  }
  .domain-node {
    width: 125px;
    padding: 7px 9px;
  }
  .domain-node > strong {
    font-size: 10px;
  }
  .domain-node > div {
    font-size: 7px;
  }
  .domain-node b {
    font-size: 7px;
  }
  .node-icon {
    width: 37px;
    height: 37px;
    border-radius: 9px;
  }
  .node-icon .icon {
    width: 20px;
    height: 20px;
  }
  .network-node {
    transform: translate(-50%, -19px);
  }
  .network-node strong {
    font-size: 8px;
  }
  .network-orchestrator {
    font-size: 7px;
  }
  .network-orchestrator img {
    width: 23px;
    height: 23px;
  }
  .scan-ring {
    width: 53px;
    height: 53px;
    top: 12px;
  }
  .network-bottom {
    margin-top: 14px;
  }
  .capability-inner > span:first-child {
    display: none;
  }
  .product-card {
    padding: 21px;
  }
  .product-card h3 {
    font-size: 16px;
  }
  .product-top .mono {
    font-size: 8px;
    letter-spacing: 0.2px;
  }
  .domain-mini {
    padding-inline: 0;
  }
  .protection-orbit {
    width: 72px;
    height: 72px;
  }
  .protection-orbit > .icon {
    width: 30px;
    height: 30px;
  }
  .protection-mini {
    gap: 8px;
  }
  .protection-channels > span {
    padding: 4px 5px;
    font-size: 8px;
  }
  .lab-panel {
    gap: 28px;
    padding: 32px;
    min-height: 442px;
  }
  .lab-toolbar {
    padding: 13px 18px;
  }
  .lab-tag {
    display: none;
  }
  .lab-tabs {
    width: 100%;
    gap: 12px;
  }
  .lab-tabs button {
    flex: 1;
    justify-content: center;
  }
  .lab-copy h3 {
    font-size: 26px;
  }
  .failover-visual,
  .cache-visual {
    padding: 18px;
  }
  .workflow li {
    gap: 10px;
  }
  .workflow p {
    font-size: 9px;
  }
  .workflow-tag {
    font-size: 7px;
  }
  .workflow strong {
    font-size: 11px;
  }
  .workflow li > .icon {
    display: none;
  }
  .advantages-layout {
    gap: 50px;
  }
  .advantage-row {
    gap: 15px;
  }
  .advantage-row h3 {
    font-size: 15px;
  }
  .advantage-row p {
    font-size: 11px;
  }
  .one-console {
    gap: 8px;
  }
  .console-chip {
    padding: 5px 7px;
  }
  .getting-started-section h2 {
    font-size: 29px;
  }
  .faq-layout {
    gap: 45px;
  }
  .faq-layout h2 {
    font-size: 28px;
  }
}
@media (max-width: 899px) {
  .site-header {
    height: 73px;
  }
  .header-inner {
    justify-content: space-between;
  }
  .menu-toggle {
    border: 1px solid #c9d7eb;
    background: transparent;
    width: 37px;
    height: 37px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle > span {
    display: block;
    width: 15px;
    height: 1px;
    background: #2c5189;
    transition: transform 0.2s;
  }
  .menu-toggle.is-open > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle.is-open > span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #f3f6fb;
    border-bottom: 1px solid #c9d7eb;
    box-shadow: 0 18px 25px #162b4b0c;
    padding: 21px 32px;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .site-nav > a {
    font-size: 14px;
    padding: 11px 0;
  }
  .nav-actions {
    margin: 15px 0 0;
    border-top: 1px solid #d0dced;
    padding-top: 20px;
    justify-content: space-between;
  }
  .hero-layout {
    padding-top: 58px;
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: 37px;
  }
  .hero-actions {
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 43px;
  }
  .hero-notes {
    flex-direction: column;
    gap: 4px;
    margin-top: 20px;
  }
  .hero-layout {
    min-height: 540px;
  }
  .hero-caption {
    font-size: 10px;
  }
  .section-heading {
    gap: 25px;
  }
  .section-heading > p {
    max-width: 310px;
  }
  .product-grid {
    gap: 12px;
  }
  .product-card {
    padding: 18px;
  }
  .product-card h3 {
    font-size: 15px;
  }
  .product-card > p {
    min-height: 64px;
  }
  .product-top {
    margin-bottom: 22px;
  }
  .product-top .mono {
    font-size: 7px;
  }
  .product-icon {
    width: 34px;
    height: 34px;
  }
  .product-icon .icon {
    width: 19px;
    height: 19px;
  }
  .protection-mini {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  .protection-orbit {
    width: 66px;
    height: 66px;
  }
  .protection-channels {
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .protection-channels > span {
    font-size: 7px;
    padding: 2px 4px;
  }
  .protection-channels > span:last-child {
    display: none;
  }
  .delivery-source {
    width: 42px;
  }
  .delivery-connectors {
    width: 26px;
  }
  .delivery-connectors i:first-child,
  .delivery-connectors i:last-child {
    left: 13px;
  }
  .delivery-targets > span {
    font-size: 8px;
    padding-inline: 6px;
  }
  .mini-search > span:nth-child(2) {
    font-size: 9px;
  }
  .suffix-row {
    gap: 4px;
  }
  .suffix-row > span {
    font-size: 9px;
    padding-inline: 3px;
  }
  .mini-footer {
    font-size: 8px;
  }
  .lab-panel {
    padding: 29px;
    gap: 25px;
    grid-template-columns: 0.95fr 1.05fr;
  }
  .lab-copy h3 {
    font-size: 24px;
  }
  .lab-copy > p {
    font-size: 11px;
  }
  .lab-points {
    font-size: 9px;
  }
  .workflow-tag {
    display: none;
  }
  .cache-flow {
    margin-inline: 0;
  }
  .cache-node {
    width: 47px;
    height: 47px;
  }
  .cache-wire {
    margin-top: 23px;
  }
  .cache-file {
    font-size: 9px;
  }
  .cache-file-label {
    font-size: 8px;
  }
  .demo-switch button {
    padding-inline: 12px;
  }
  .mode-switch button {
    padding-inline: 8px;
    font-size: 10px;
  }
  .browser-preview {
    margin: 12px;
    padding: 12px;
  }
  .browser-chrome > span {
    font-size: 7px;
  }
  .preview-lines > span {
    font-size: 16px;
  }
  .preview-picture .icon {
    width: 39px;
    height: 39px;
  }
  .preview-body {
    gap: 13px;
  }
  .preview-bottom {
    margin-top: 17px;
  }
  .browser-route {
    font-size: 8px;
  }
  .advantages-layout {
    gap: 35px;
    grid-template-columns: 1fr 1.2fr;
  }
  .advantage-row h3 {
    font-size: 14px;
  }
  .advantages-intro > p {
    font-size: 12px;
  }
  .one-console {
    gap: 5px;
  }
  .console-chip {
    font-size: 8px;
    padding: 4px 5px;
  }
  .console-logo {
    padding: 7px;
  }
  .console-logo img {
    width: 36px;
    height: 36px;
  }
  .plan-panel {
    padding: 22px;
    gap: 18px;
  }
  .plan-panel > div {
    gap: 13px;
  }
  .plan-panel h3 {
    font-size: 13px;
  }
  .plan-panel p {
    font-size: 10px;
  }
  .plan-panel .button {
    font-size: 11px;
    padding-inline: 13px;
  }
  .footer-links {
    gap: 35px;
  }
  .final-cta h2 {
    font-size: 29px;
  }
}
@media (max-width: 699px) {
  .container {
    width: calc(100% - 40px);
  }
  html {
    scroll-padding-top: 92px;
  }
  .brand > span {
    font-size: 17px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand small {
    font-size: 8px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-top: 44px;
    padding-bottom: 30px;
  }
  .hero-copy {
    max-width: 480px;
  }
  .hero h1 {
    font-size: clamp(38px, 8.6vw, 53px);
    letter-spacing: -2px;
    line-height: 1.4;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.95;
    margin-top: 20px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 26px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    min-height: 45px;
    font-size: 12px;
    padding: 11px 16px;
    gap: 8px;
  }
  .hero-notes {
    flex-direction: row;
    gap: 17px;
    font-size: 9px;
    margin-top: 19px;
  }
  .hero-grid-bg {
    inset: 35% 0 0;
  }
  .network-demo {
    transform: rotate(0);
    width: 100%;
    max-width: 535px;
    margin-inline: auto;
    padding: 19px 18px 0;
  }
  .network-heading > span:first-child {
    font-size: 16px;
  }
  .network-state-pill {
    font-size: 9px;
  }
  .network-topline {
    font-size: 8px;
  }
  .network-graph {
    margin-top: 7px;
    margin-bottom: 0;
  }
  .domain-node {
    width: 145px;
    padding: 8px 11px;
  }
  .domain-node > strong {
    font-size: 11px;
  }
  .domain-node > div {
    font-size: 8px;
  }
  .domain-node b {
    font-size: 7px;
  }
  .node-icon {
    width: 42px;
    height: 42px;
  }
  .node-icon .icon {
    width: 21px;
    height: 21px;
  }
  .network-node {
    transform: translate(-50%, -21px);
  }
  .network-node strong {
    font-size: 9px;
  }
  .network-orchestrator img {
    width: 27px;
    height: 27px;
  }
  .network-orchestrator {
    font-size: 7px;
  }
  .scan-ring {
    width: 54px;
    height: 54px;
    top: 14px;
  }
  .network-bottom {
    margin-top: 17px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 9px;
    padding-top: 14px;
    padding-bottom: 16px;
  }
  .network-bottom > div:first-child {
    font-size: 9px;
    max-width: 190px;
    line-height: 1.7;
  }
  .simulate-button {
    font-size: 9px;
    padding: 6px 8px;
    white-space: nowrap;
    min-height: 31px;
  }
  .simulate-button .icon {
    width: 11px;
    height: 11px;
  }
  .reset-button {
    width: 30px;
  }
  .hero-caption {
    padding-block: 16px;
    gap: 12px;
  }
  .hero-caption > span {
    font-size: 8px;
    letter-spacing: 0.6px;
  }
  .hero-caption > p {
    display: none;
  }
  .motion-toggle {
    font-size: 9px;
  }
  .capability-inner {
    min-height: 98px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
    padding-block: 18px;
    font-size: 10px;
  }
  .capability-inner > div,
  .capability-inner > strong {
    gap: 7px;
    font-size: 10px;
  }
  .capability-inner > strong {
    font-weight: 500;
  }
  .capability-inner .icon {
    width: 16px;
    height: 16px;
  }
  .strip-plus {
    display: none;
  }
  .section {
    padding-block: 61px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
    letter-spacing: 1.1px;
  }
  h2 {
    font-size: 29px;
    line-height: 1.5;
    letter-spacing: -1px;
  }
  .section-heading > p {
    margin-top: 17px;
    font-size: 12px;
    max-width: 100%;
    padding: 0;
  }
  .section-heading > p br {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-card {
    padding: 25px;
    position: relative;
  }
  .product-top {
    margin-bottom: 22px;
  }
  .product-icon {
    width: 37px;
    height: 37px;
  }
  .product-top .mono {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .product-card h3 {
    font-size: 20px;
  }
  .product-card > p {
    min-height: 0;
    font-size: 12px;
    max-width: 470px;
  }
  .domain-mini,
  .protection-mini,
  .delivery-mini {
    margin-top: 20px;
    height: 150px;
    max-width: 330px;
    margin-inline: auto;
  }
  .domain-mini {
    padding: 15px 10px 0;
  }
  .mini-search > span:nth-child(2) {
    font-size: 12px;
  }
  .suffix-row {
    gap: 8px;
  }
  .suffix-row > span {
    font-size: 11px;
    padding-block: 5px;
  }
  .mini-footer {
    font-size: 9px;
  }
  .protection-mini {
    flex-direction: row;
    gap: 30px;
  }
  .protection-orbit {
    width: 101px;
    height: 101px;
  }
  .protection-orbit > .icon {
    width: 39px;
    height: 39px;
  }
  .protection-channels {
    flex-direction: column;
    gap: 8px;
  }
  .protection-channels > span,
  .protection-channels > span:last-child {
    display: flex;
    font-size: 10px;
    padding: 5px 9px;
  }
  .delivery-source {
    width: 56px;
    height: 64px;
    font-size: 10px;
  }
  .delivery-connectors {
    width: 60px;
    height: 117px;
  }
  .delivery-connectors i:first-child,
  .delivery-connectors i:last-child {
    left: 30px;
  }
  .delivery-targets {
    gap: 12px;
  }
  .delivery-targets > span {
    font-size: 10px;
    padding: 4px 12px;
  }
  .product-card > .text-link {
    font-size: 12px;
    margin-top: 21px;
    padding-top: 18px;
  }
  .experience-section {
    padding-block: 60px;
  }
  .experience-section .section-heading > p {
    font-size: 11px;
  }
  .lab-toolbar {
    padding: 12px 10px;
  }
  .lab-tabs {
    gap: 3px;
  }
  .lab-tabs button {
    padding: 8px 6px;
    font-size: 10px;
    gap: 4px;
  }
  .lab-tabs .icon {
    width: 13px;
    height: 13px;
  }
  .lab-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 27px 23px;
    min-height: 0;
  }
  .lab-copy h3 {
    font-size: 27px;
    margin-top: 10px;
  }
  .lab-kicker {
    font-size: 10px;
  }
  .lab-copy > p {
    font-size: 12px;
    max-width: none;
    margin-top: 15px;
  }
  .lab-points {
    font-size: 11px;
    gap: 9px;
  }
  .lab-link {
    font-size: 11px;
    margin-top: 20px;
  }
  .failover-visual,
  .cache-visual {
    padding: 17px 18px;
  }
  .visual-topline {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .workflow li {
    padding: 14px 0;
    gap: 13px;
  }
  .workflow strong {
    font-size: 12px;
  }
  .workflow p {
    font-size: 9px;
  }
  .workflow-tag {
    display: block;
    font-size: 7px;
  }
  .workflow li > .icon {
    display: block;
  }
  .workflow-footnote {
    font-size: 9px;
  }
  .cache-flow {
    margin: 39px 0 28px;
  }
  .cache-node {
    width: 52px;
    height: 52px;
  }
  .cache-wire {
    margin-top: 26px;
  }
  .cache-caption p {
    font-size: 10px;
  }
  .cache-file {
    font-size: 9px;
  }
  .demo-switch {
    margin-top: 21px;
  }
  .demo-switch button {
    padding: 8px 18px;
    font-size: 11px;
  }
  .mode-switch button {
    padding-inline: 12px;
  }
  .lab-copy > p.lab-note {
    font-size: 10px;
  }
  .browser-chrome > span {
    font-size: 9px;
  }
  .browser-preview {
    margin: 14px;
    padding: 15px;
  }
  .preview-lines > span {
    font-size: 22px;
  }
  .preview-picture .icon {
    width: 50px;
    height: 50px;
  }
  .browser-route {
    font-size: 9px;
    padding-inline: 15px;
  }
  .preview-bottom {
    margin-top: 21px;
  }
  .advantages-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .advantages-intro > p {
    font-size: 12px;
    line-height: 1.95;
  }
  .advantages-intro > p br {
    display: none;
  }
  .advantages-intro > .text-link {
    margin-top: 21px;
  }
  .one-console {
    margin-top: 31px;
    gap: 12px;
  }
  .console-chip {
    font-size: 10px;
    padding: 6px 9px;
  }
  .console-logo {
    padding: 8px;
  }
  .console-logo img {
    width: 39px;
    height: 39px;
  }
  .advantage-row {
    padding: 23px 0;
    gap: 17px;
  }
  .advantage-row h3 {
    font-size: 16px;
  }
  .advantage-row p {
    font-size: 12px;
    max-width: none;
  }
  .advantage-icon {
    width: 36px;
    height: 36px;
  }
  .row-number {
    font-size: 8px;
  }
  .getting-started-section h2 {
    font-size: 27px;
  }
  .onboarding-steps {
    grid-template-columns: 1fr;
    margin: 30px 0;
    gap: 0;
  }
  .onboarding-steps > div {
    border: 0;
    padding: 0 0 30px 46px;
  }
  .onboarding-steps > div:first-child {
    padding-left: 46px;
  }
  .onboarding-steps > div:last-child {
    padding-bottom: 0;
  }
  .onboarding-steps > div > span {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 11px;
  }
  .onboarding-steps > div:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 1px;
    background: #c3d2e9;
    left: 8px;
    top: 34px;
    bottom: 8px;
  }
  .onboarding-steps h3 {
    font-size: 17px;
  }
  .onboarding-steps p {
    font-size: 12px;
  }
  .plan-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }
  .plan-panel > div {
    align-items: flex-start;
    gap: 12px;
  }
  .plan-mark {
    width: 33px;
    height: 33px;
  }
  .plan-mark .icon {
    width: 18px;
    height: 18px;
  }
  .plan-panel h3 {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 2px;
  }
  .plan-panel p {
    font-size: 11px;
    line-height: 1.95;
  }
  .plan-panel .button {
    width: 100%;
    font-size: 12px;
    min-height: 44px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-layout h2 {
    font-size: 28px;
  }
  .faq-layout > div > p {
    margin-top: 15px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .faq-list details p {
    font-size: 11px;
    padding-right: 19px;
  }
  .faq-list details {
    padding-block: 20px;
  }
  .final-cta > .container {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 43px;
    gap: 26px;
  }
  .final-cta h2 {
    font-size: 29px;
    margin-top: 18px;
  }
  .final-cta .eyebrow {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .final-cta p {
    font-size: 11px;
    max-width: 290px;
    line-height: 1.9;
  }
  .mobile-break {
    display: initial;
  }
  .final-cta .button {
    font-size: 12px;
    min-height: 45px;
  }
  .cta-orbit {
    right: -200px;
    width: 480px;
    height: 480px;
  }
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0 33px;
  }
  .footer-main > div > p {
    font-size: 11px;
    margin-top: 13px;
  }
  .footer-links {
    gap: 20px;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-links > div {
    font-size: 10px;
    gap: 10px;
  }
  .footer-links strong {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 22px;
  }
  .footer-bottom > span:last-child {
    font-size: 8px;
    gap: 8px;
  }
}
@media (max-width: 374px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .hero-notes {
    gap: 9px;
    font-size: 8px;
  }
  .domain-node {
    width: 119px;
    padding: 7px 8px;
  }
  .domain-node > strong {
    font-size: 9px;
  }
  .domain-node > div {
    font-size: 7px;
  }
  .domain-node b {
    font-size: 6px;
  }
  .node-icon {
    width: 34px;
    height: 34px;
  }
  .network-node {
    transform: translate(-50%, -17px);
  }
  .node-icon .icon {
    width: 18px;
    height: 18px;
  }
  .network-node strong {
    font-size: 8px;
  }
  .network-orchestrator img {
    width: 23px;
    height: 23px;
  }
  .graph-note {
    font-size: 7px;
  }
  .network-heading > span:first-child {
    font-size: 14px;
  }
  .network-state-pill {
    font-size: 7px;
  }
  .network-bottom > div:first-child {
    max-width: 145px;
    font-size: 8px;
  }
  .simulate-button {
    font-size: 8px;
    padding-inline: 6px;
  }
  .reset-button {
    width: 27px;
  }
  .simulation-actions {
    gap: 4px;
  }
  .lab-panel {
    padding: 25px 18px;
  }
  .lab-tabs button {
    font-size: 9px;
    padding-inline: 4px;
  }
  .lab-tabs .icon {
    display: none;
  }
  .workflow-tag {
    display: none;
  }
  .cache-file-label {
    display: none;
  }
  .one-console {
    gap: 8px;
  }
  .console-chip {
    padding-inline: 7px;
  }
  .preview-lines > span {
    font-size: 19px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body:not(.motion-enabled),
  body:not(.motion-enabled) *,
  body:not(.motion-enabled) *::before,
  body:not(.motion-enabled) *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .hero-caption,
  .simulation-actions,
  .lab-toolbar,
  .final-cta,
  .menu-toggle {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  .section,
  .experience-section {
    padding-block: 30px;
  }
  .hero-layout {
    padding-block: 20px;
  }
  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
  .experience-shell,
  .lab-panel,
  .failover-visual {
    color: #152844;
    background: #fff;
  }
  .lab-panel {
    break-inside: avoid;
  }
  .site-footer {
    break-inside: avoid;
  }
}

/* Keep the workflow in sync with the interactive network demonstration. */
#simulate-workflow:disabled {
  opacity: 0.6;
}
#panel-failover .workflow-number {
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
#panel-failover[data-state="detected"]
  .workflow
  li:first-child
  .workflow-number {
  background: #c4a47b;
  border-color: #d5b58b;
  color: #1e2b3e;
  box-shadow: 0 0 0 5px #b89a6720;
}
#panel-failover[data-state="switching"]
  .workflow
  li:nth-child(2)
  .workflow-number,
#panel-failover[data-state="switching"]
  .workflow
  li:nth-child(3)
  .workflow-number {
  background: #83a9e2;
  border-color: #9abbed;
  color: #1e3455;
  box-shadow: 0 0 0 5px #83a9e214;
}
#panel-failover[data-state="recovered"] .workflow-number {
  border-color: #4a70aa;
  color: #a4c2ef;
}
#panel-failover[data-state="recovered"]
  .workflow
  li:last-child
  .workflow-number {
  background: #9cbced;
  color: #1e3455;
  box-shadow: 0 0 0 6px #83a9e218;
}
#panel-failover[data-state="detected"] .workflow li:last-child .workflow-number,
#panel-failover[data-state="switching"]
  .workflow
  li:last-child
  .workflow-number {
  background: #233755;
  border-color: #355079;
  color: #5c7cac;
}
@media (max-width: 699px) {
  .lab-panel {
    align-content: start;
  }
  .lab-copy {
    align-self: start;
  }
}

/* Technical architecture, control/data-plane annotations and SSL overview. */
.network-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}
.network-protocols span {
  font: 8px var(--mono);
  letter-spacing: 0.2px;
  padding: 3px 6px;
  background: #edf4ff;
  border: 1px solid #dce8f9;
  border-radius: 3px;
  color: #7595bf;
}
.control-route {
  stroke: #a9c3e6;
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.5;
}
.config-packet {
  stroke: #5294ed;
  stroke-width: 2;
  stroke-dasharray: 7 40;
  opacity: 0;
  animation: config-distribution 2s linear infinite;
}
.network-demo[data-state="switching"] .config-packet {
  opacity: 0.9;
}
.network-demo[data-state="switching"] .control-route {
  stroke: #72a6ed;
  opacity: 1;
}
@keyframes config-distribution {
  to {
    stroke-dashoffset: -47;
  }
}
.architecture-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #d9e5f6;
  background: #f6f9fe;
  border-radius: 8px;
  margin: 0 0 22px;
  padding: 21px 8px;
}
.architecture-stack > div {
  padding: 0 23px;
  border-right: 1px solid #dee7f4;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.architecture-stack > div:last-child {
  border: 0;
}
.architecture-stack > div > span {
  font: 8px var(--mono);
  letter-spacing: 1px;
  color: #7c98bc;
}
.architecture-stack strong {
  font: 12px var(--mono);
  color: #3b6597;
  letter-spacing: -0.4px;
}
.architecture-stack small {
  font-size: 10px;
  color: #718aa9;
}
#experience .lab-kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.8px;
  line-height: 1.7;
  display: inline-block;
}
.workflow li > div {
  min-width: 0;
}
.workflow p {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: -0.2px;
  overflow-wrap: anywhere;
}
#workflow-phase {
  font-family: var(--mono);
  font-size: 8px;
  color: #abcfff;
  padding: 4px 6px;
  border: 1px solid #55759e55;
  border-radius: 3px;
}
#panel-failover[data-state="detected"] #workflow-phase {
  color: #e2bb90;
  border-color: #96755277;
}
#panel-failover[data-state="switching"] #workflow-phase {
  color: #c0ddff;
  background: #30538255;
}
#workflow-trace {
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  min-height: 28px;
}
.cdn-setup-steps {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 21px 0 0;
  gap: 7px;
  counter-reset: cdn-setup;
}
.cdn-setup-steps li {
  counter-increment: cdn-setup;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 5px 7px;
  border: 1px solid #54759b55;
  border-radius: 4px;
  font-size: 9px;
  color: #a7c3e8;
}
.cdn-setup-steps li::before {
  content: counter(cdn-setup, decimal-leading-zero);
  font: 8px var(--mono);
  color: #719bd1;
}
.cache-path {
  font: 9px var(--mono);
  letter-spacing: 0.4px;
  color: #b4d4fc;
  background: #1b3558;
  border: 1px solid #4d709866;
  border-radius: 4px;
  margin: 12px 0;
  padding: 10px;
}
.cache-policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}
.cache-policy-meta span {
  font: 7px var(--mono);
  color: #86a7d1;
  padding: 3px 5px;
  border: 1px solid #4c6b9055;
  border-radius: 3px;
}
.mode-protocol {
  font: 8px var(--mono);
  color: #627fa6;
  padding: 0 18px 15px;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}
#products .product-card {
  display: flex;
  flex-direction: column;
}
#products .product-card > .text-link {
  margin-top: auto;
}
#products .protection-mini,
#products .delivery-mini {
  margin-bottom: 21px;
}
.certificate-mini {
  min-height: 165px;
  margin: 26px 0 21px;
  padding: 20px 10px 0;
  position: relative;
}
.certificate-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce6f4;
  color: #6b85a7;
  font-size: 9px;
}
.certificate-heading .icon {
  width: 15px;
  height: 15px;
  color: #6e9cd6;
}
.certificate-heading b {
  margin-left: auto;
  border: 1px solid #d7e5f7;
  background: #edf4fe;
  font: 8px var(--mono);
  padding: 2px 5px;
  border-radius: 3px;
  color: #6892c9;
}
.certificate-mini > strong {
  display: block;
  font: 13px var(--mono);
  letter-spacing: -0.4px;
  margin: 16px 0 15px;
  color: #4b709e;
}
.certificate-capabilities {
  display: flex;
  gap: 13px;
  color: #7591b2;
  font-size: 9px;
}
.certificate-capabilities > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.certificate-capabilities .icon {
  width: 12px;
  height: 12px;
}
.certificate-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #8ba1bd;
  margin-top: 16px;
}
.certificate-bottom > span:first-child {
  font-family: var(--mono);
}
@media (max-width: 1199px) {
  .architecture-stack > div {
    padding-inline: 18px;
  }
  .architecture-stack strong {
    font-size: 11px;
  }
  .lab-copy h3 {
    font-size: 26px;
  }
}
@media (max-width: 899px) {
  .architecture-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .architecture-stack > div {
    padding: 17px 20px;
  }
  .architecture-stack > div:nth-child(even) {
    border-right: 0;
  }
  .architecture-stack > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dee7f4;
  }
  .architecture-stack strong {
    font-size: 12px;
  }
  .lab-copy h3 {
    font-size: 24px;
  }
  #experience .lab-kicker {
    font-size: 8px;
    letter-spacing: 0.4px;
  }
  .workflow p {
    font-size: 7px;
  }
  .certificate-mini {
    padding-inline: 0;
  }
  .certificate-mini > strong {
    font-size: 10px;
  }
  .certificate-capabilities {
    gap: 7px;
    font-size: 8px;
  }
  .certificate-capabilities .icon {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 699px) {
  .network-protocols span {
    font-size: 7px;
    padding: 3px 5px;
  }
  .network-heading > span:first-child {
    font-size: 14px;
  }
  .network-state-pill {
    font-size: 8px;
  }
  .network-topline {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .network-graph .graph-note {
    font: 6px var(--mono);
    letter-spacing: 0.5px;
  }
  .architecture-stack {
    margin-bottom: 18px;
  }
  .architecture-stack > div {
    padding: 15px;
    gap: 6px;
  }
  .architecture-stack > div > span {
    font-size: 7px;
    letter-spacing: 0.6px;
  }
  .architecture-stack strong {
    font-size: 10px;
  }
  .architecture-stack small {
    font-size: 9px;
  }
  .lab-copy h3 {
    font-size: 26px;
  }
  .workflow p {
    font-size: 8px;
  }
  .cdn-setup-steps {
    gap: 5px;
    margin-top: 18px;
  }
  .cdn-setup-steps li {
    font-size: 9px;
    padding-inline: 6px;
  }
  .cache-path {
    font-size: 8px;
  }
  .certificate-mini {
    min-height: 155px;
    width: 100%;
    max-width: 330px;
    margin: 20px auto 21px;
    padding: 16px 10px 0;
  }
  .certificate-mini > strong {
    font-size: 14px;
  }
  .certificate-capabilities {
    font-size: 10px;
    gap: 20px;
  }
  .certificate-heading {
    font-size: 10px;
  }
  .certificate-bottom {
    font-size: 9px;
  }
}
@media (max-width: 374px) {
  .architecture-stack > div {
    padding: 13px 10px;
  }
  .architecture-stack strong {
    font-size: 9px;
  }
  .network-heading > span:first-child {
    font-size: 12px;
  }
  .network-state-pill {
    font-size: 7px;
  }
  .network-protocols span {
    font-size: 6px;
  }
  .lab-copy h3 {
    font-size: 23px;
  }
  #experience .lab-kicker {
    font-size: 7px;
  }
  .workflow p {
    font-size: 7px;
  }
  .cdn-setup-steps li {
    font-size: 8px;
    gap: 4px;
    padding-inline: 5px;
  }
}
