:root {
  --ink: #101613;
  --ink-2: #19211d;
  --paper: #ffffff;
  --mist: #f3f6f4;
  --line: #d9e1dc;
  --muted: #5f6c65;
  --green: #12a866;
  --green-dark: #087e4a;
  --green-soft: #e7f7ef;
  --amber: #d99b21;
  --amber-soft: #fff5dc;
  --red: #d74b3f;
  --red-soft: #fcecea;
  --teal: #248c86;
  --shadow: 0 18px 50px rgba(16, 22, 19, 0.1);
}

/* Newcomer integration guide */
.docs-content section[id] {
  scroll-margin-top: 104px;
}

.docs-nav a.active,
.docs-nav a[aria-current="location"] {
  color: var(--green-dark);
  background: var(--green-soft);
  border-left-color: var(--green);
  font-weight: 750;
}

.docs-content .doc-lead {
  max-width: 820px;
  margin-bottom: 24px;
  color: #44534b;
  font-size: 16px;
}

.docs-content p code,
.docs-content li code,
.doc-prereq code {
  padding: 2px 5px;
  color: #155b40;
  background: #edf6f1;
  border-radius: 3px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.9em;
}

.doc-prereq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.doc-prereq {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: #f8faf9;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.doc-prereq .feature-icon {
  width: 44px;
  height: 44px;
}

.doc-prereq strong {
  display: block;
  margin-bottom: 4px;
}

.doc-prereq p {
  margin: 0;
  font-size: 14px;
}

.doc-example {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.doc-example > div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.doc-example > div:last-child {
  border-right: 0;
}

.doc-example span,
.doc-example strong {
  display: block;
}

.doc-example span {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
}

.doc-example strong {
  overflow-wrap: anywhere;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
}

.docs-steps em {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.doc-field-list {
  margin: 14px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.doc-field-head,
.doc-field-row {
  display: grid;
  grid-template-columns: 140px 210px minmax(0, 1fr);
  align-items: center;
}

.doc-field-head {
  color: white;
  background: var(--ink-2);
  font-size: 13px;
  font-weight: 750;
}

.doc-field-head span,
.doc-field-row > * {
  min-width: 0;
  padding: 12px 14px;
}

.doc-field-row {
  min-height: 62px;
  border-top: 1px solid var(--line);
}

.doc-field-head + .doc-field-row {
  border-top: 0;
}

.doc-field-row:nth-child(odd) {
  background: #f8faf9;
}

.doc-field-row > * + * {
  border-left: 1px solid var(--line);
}

.doc-field-row code {
  overflow-wrap: anywhere;
  color: #155b40;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
}

.doc-field-row p {
  margin: 0;
  font-size: 13px;
}

.doc-route {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 18px minmax(92px, 0.85fr) 18px minmax(120px, 1.1fr) 18px minmax(92px, 0.85fr) 18px minmax(110px, 1fr);
  align-items: stretch;
  gap: 7px;
  margin: 24px 0 30px;
}

.doc-route > svg {
  width: 18px;
  align-self: center;
  color: #7a8981;
}

.doc-route-node,
.doc-route-link {
  min-width: 0;
  padding: 15px 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.doc-route-node {
  background: #f7f9f8;
}

.doc-route-node.accent {
  background: var(--green-soft);
  border-color: #a9d9c1;
}

.doc-route-link {
  align-content: center;
  background: #fff8e8;
  border-color: #ead8ae;
}

.doc-route-node span,
.doc-route-node strong,
.doc-route-node small,
.doc-route-link strong,
.doc-route-link small {
  display: block;
}

.doc-route-node span {
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
}

.doc-route-node strong,
.doc-route-link strong {
  margin: 2px 0;
  font-size: 14px;
}

.doc-route-node small,
.doc-route-link small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.doc-success {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  margin: 18px 0;
  color: #175c42;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 5px 5px 0;
}

.doc-success svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
}

.doc-success p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

.compact-steps {
  margin: 16px 0 26px;
  padding: 0;
  list-style: none;
  counter-reset: compact-steps;
}

.compact-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: compact-steps;
}

.compact-steps li::before {
  display: grid;
  width: 28px;
  height: 28px;
  grid-row: 1 / span 2;
  place-items: center;
  color: white;
  background: var(--green-dark);
  border-radius: 50%;
  content: counter(compact-steps);
  font-size: 12px;
  font-weight: 800;
}

.compact-steps strong,
.compact-steps span {
  display: block;
}

.compact-steps span {
  color: var(--muted);
  font-size: 14px;
}

.doc-check-list {
  margin-bottom: 22px;
}

.doc-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 14px 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.doc-check-grid li {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.doc-check-grid svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--green);
}

.security-steps {
  margin-bottom: 4px;
}

.docs-faq .faq-answer {
  padding: 0 8px 20px;
}

.troubleshoot-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: #4f5c55;
  font-size: 14px;
}

.support-template code {
  white-space: normal;
}

.code-line {
  position: relative;
  margin: 10px 0;
}

.code-line code {
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

.copy-button[data-status]::after {
  position: absolute;
  top: 50%;
  right: 54px;
  z-index: 2;
  min-width: 64px;
  padding: 5px 8px;
  color: var(--ink);
  background: white;
  border: 1px solid #aab8b0;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  content: attr(data-status);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  transform: translateY(-50%);
}

@media (max-width: 920px) {
  .doc-example {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-example > div:nth-child(2) {
    border-right: 0;
  }

  .doc-example > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .doc-field-head,
  .doc-field-row {
    grid-template-columns: 124px 180px minmax(0, 1fr);
  }

  .doc-route {
    gap: 4px;
  }
}

@media (max-width: 700px) {
  .doc-prereq-grid {
    grid-template-columns: 1fr;
  }

  .doc-field-head {
    display: none;
  }

  .doc-field-row {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: stretch;
  }

  .doc-field-row > * {
    padding: 10px 12px;
  }

  .doc-field-row > p {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .doc-route {
    grid-template-columns: 1fr;
  }

  .doc-route > svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .doc-route-node,
  .doc-route-link {
    width: 100%;
    padding: 12px;
  }

  .doc-check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .docs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-nav strong {
    grid-column: 1 / -1;
  }

  .docs-nav a {
    min-width: 0;
    font-size: 13px;
  }

  .doc-example {
    grid-template-columns: 1fr;
  }

  .doc-example > div,
  .doc-example > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .doc-example > div:last-child {
    border-bottom: 0;
  }

  .doc-field-row {
    grid-template-columns: 1fr;
  }

  .doc-field-row > * + *,
  .doc-field-row > p {
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .code-line {
    gap: 10px;
  }

  .copy-button[data-status]::after {
    right: 48px;
  }
}

@media (max-width: 520px) {
  .docs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-nav strong {
    grid-column: 1 / -1;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(18, 168, 102, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 220, 0.88);
  backdrop-filter: blur(14px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 180px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 23px 0 21px;
  color: #3e4943;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--green-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 auto;
  display: none;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 20px 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 4px;
}

.mobile-panel nav a {
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.mobile-panel .mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.btn-primary {
  color: white;
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(8, 126, 74, 0.22);
}

.btn-primary:hover {
  background: #066b3f;
}

.btn-light {
  color: var(--ink);
  background: white;
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--green);
}

.btn-dark-outline {
  color: white;
  background: rgba(16, 22, 19, 0.28);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-block {
  width: 100%;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background-image: url("assets/server-room.jpg");
  background-image: image-set(
    url("assets/server-room-1800.avif") type("image/avif"),
    url("assets/server-room-1800.webp") type("image/webp"),
    url("assets/server-room.jpg") type("image/jpeg")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.72);
  content: "";
}

.home-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--green);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 72px 0 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-content h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e2dd;
  font-size: 18px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-metric {
  padding: 20px 22px 0 0;
}

.hero-metric strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
}

.hero-metric span {
  color: #b8c5be;
  font-size: 13px;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: white;
  background-image: url("assets/network-rack.jpg");
  background-image: image-set(
    url("assets/network-rack-1400.avif") type("image/avif"),
    url("assets/network-rack-1400.webp") type("image/webp"),
    url("assets/network-rack.jpg") type("image/jpeg")
  );
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero.compact {
  min-height: 320px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 58px;
}

.breadcrumbs {
  margin: 0 0 18px;
  color: #c8d3cd;
  font-size: 13px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  color: #7f9188;
  content: "/";
}

.breadcrumbs a {
  color: white;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.page-hero p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  color: #dbe4df;
  font-size: 17px;
}

.page-hero.products-hero {
  background-image: url("assets/server-detail.jpg");
  background-image: image-set(
    url("assets/server-detail-1400.avif") type("image/avif"),
    url("assets/server-detail-1400.webp") type("image/webp"),
    url("assets/server-detail.jpg") type("image/jpeg")
  );
}

.page-hero.solutions-hero {
  background-image: url("assets/server-room.jpg");
  background-image: image-set(
    url("assets/server-room-1800.avif") type("image/avif"),
    url("assets/server-room-1800.webp") type("image/webp"),
    url("assets/server-room.jpg") type("image/jpeg")
  );
}

.page-hero.contact-hero {
  background-image: url("assets/network-rack.jpg");
  background-image: image-set(
    url("assets/network-rack-1400.avif") type("image/avif"),
    url("assets/network-rack-1400.webp") type("image/webp"),
    url("assets/network-rack.jpg") type("image/jpeg")
  );
  background-position: center 58%;
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  color: white;
  background: var(--ink);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head > div {
  max-width: 720px;
}

.section-head h2,
.center-head h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.22;
}

.section-head p,
.center-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .center-head p {
  color: #aebbb4;
}

.center-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 750;
  white-space: nowrap;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

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

.feature-item {
  padding-top: 22px;
  border-top: 3px solid var(--line);
}

.feature-item:nth-child(1) {
  border-color: var(--green);
}

.feature-item:nth-child(2) {
  border-color: var(--teal);
}

.feature-item:nth-child(3) {
  border-color: var(--amber);
}

.feature-item:nth-child(4) {
  border-color: var(--red);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 6px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.media-frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-2);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  color: white;
  background: rgba(10, 16, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #88e8ba;
  font-size: 13px;
  font-weight: 750;
}

.status-live::before {
  width: 8px;
  height: 8px;
  background: #4dde98;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(77, 222, 152, 0.16);
  content: "";
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--green);
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
}

.check-list span {
  color: var(--muted);
  font-size: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
}

.flow-node {
  min-width: 132px;
  padding: 20px 14px;
  text-align: center;
  border: 1px solid #344039;
  border-radius: 6px;
}

.flow-node.accent {
  border-color: var(--green);
  background: rgba(18, 168, 102, 0.1);
}

.flow-node.alert {
  border-color: var(--amber);
  background: rgba(217, 155, 33, 0.08);
}

.flow-node svg {
  width: 25px;
  height: 25px;
  margin-bottom: 9px;
  color: #86dcb2;
}

.flow-node strong {
  display: block;
  font-size: 14px;
}

.flow-node span {
  color: #93a39a;
  font-size: 12px;
}

.flow-arrow {
  color: #6d7d74;
}

.flow-arrow svg {
  width: 20px;
  height: 20px;
}

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

.scenario-card,
.solution-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-radius: 6px;
}

.scenario-card img,
.solution-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.scenario-card:hover img,
.solution-card:hover img {
  transform: scale(1.04);
  opacity: 0.62;
}

.scenario-card > div,
.solution-card > div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: rgba(8, 14, 11, 0.84);
}

.scenario-card h3,
.solution-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.scenario-card p,
.solution-card p {
  margin: 0;
  color: #c9d4ce;
  font-size: 13px;
}

.notice-band {
  padding: 22px 0;
  color: #5e4512;
  background: var(--amber-soft);
  border-top: 1px solid #f0d99e;
  border-bottom: 1px solid #f0d99e;
}

.notice-band .container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.notice-band svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--amber);
}

.notice-band p {
  margin: 0;
  font-size: 14px;
}

.segmented {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #e8eeea;
  border-radius: 7px;
}

.segmented button {
  min-height: 42px;
  padding: 9px 18px;
  color: #56625b;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-weight: 750;
  cursor: pointer;
}

.segmented button.active {
  color: white;
  background: var(--ink);
}

.pricing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.pricing-switches {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-control {
  display: grid;
  gap: 6px;
}

.pricing-control > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pricing-notes {
  display: grid;
  gap: 3px;
  max-width: 420px;
  text-align: right;
}

.pricing-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pricing-notes .pricing-guide {
  color: var(--green-dark);
  font-weight: 650;
}

.segmented button small {
  margin-left: 3px;
  color: var(--green-dark);
  font-size: 11px;
}

.segmented button.active small {
  color: #a8e7c6;
}

.pricing-explainer {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 22px;
  padding: 13px 16px;
  color: #4d3a10;
  background: var(--amber-soft);
  border: 1px solid #f0d99e;
  border-radius: 5px;
  font-size: 13px;
}

.pricing-explainer strong {
  flex: 0 0 auto;
}

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

.pricing-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid-five .price-card {
  min-height: 448px;
  padding-inline: 18px;
}

.pricing-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid-six .price-card {
  min-height: 505px;
}

.price-panel[hidden] {
  display: none;
}

.network-panel[hidden] {
  display: none;
}

.network-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 4px 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.network-toolbar > div:first-child {
  display: grid;
  gap: 4px;
}

.network-toolbar strong {
  font-size: 15px;
}

.network-toolbar span {
  color: var(--muted);
  font-size: 12px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.price-card.featured {
  border: 2px solid var(--green-dark);
  box-shadow: var(--shadow);
}

.price-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  color: #704c07;
  background: var(--amber-soft);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
}

.price-card h3 {
  margin: 0 0 18px;
  font-size: 19px;
}

.price-card .plan-fit {
  min-height: 24px;
  margin: -10px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.price {
  display: flex;
  align-items: end;
  gap: 5px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.price strong {
  font-size: 38px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 13px;
}

.price-savings {
  min-height: 18px;
  margin: 8px 0 -4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.price-savings[hidden] {
  display: block;
  visibility: hidden;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding: 0;
  color: #3f4a44;
  font-size: 14px;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.price-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}

.price-card .btn {
  margin-top: auto;
}

.plan-rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-rules > div {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.plan-rules > div:last-child {
  border-right: 0;
}

.plan-rules strong {
  font-size: 14px;
}

.plan-rules span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
}

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

.compare-table th {
  color: #405048;
  background: var(--mist);
  font-size: 13px;
}

.compare-table td {
  font-size: 14px;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip > div {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.metric-strip > div:last-child {
  border-right: 0;
}

.metric-strip strong {
  display: block;
  font-size: 28px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 13px;
}

.solution-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.solution-detail:last-child {
  border-bottom: 0;
}

.solution-detail h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.solution-detail p {
  margin: 0;
  color: var(--muted);
}

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

.solution-point {
  padding-top: 14px;
  border-top: 2px solid var(--line);
}

.solution-point strong {
  display: block;
  margin-bottom: 4px;
}

.solution-point span {
  color: var(--muted);
  font-size: 13px;
}

.docs-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

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

.docs-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 3px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.docs-nav strong {
  padding: 0 12px 8px;
  font-size: 13px;
}

.docs-nav a {
  padding: 9px 12px;
  color: var(--muted);
  border-left: 2px solid transparent;
  font-size: 14px;
}

.docs-nav a:hover {
  color: var(--green-dark);
  border-left-color: var(--green);
}

.docs-content section {
  padding: 0 0 48px;
  margin: 0 0 48px;
  border-bottom: 1px solid var(--line);
}

.docs-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.docs-content h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.docs-content h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.docs-content p {
  color: #4f5c55;
}

.steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 0 0 26px 52px;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--green-dark);
  border-radius: 50%;
  content: counter(steps);
  font-size: 13px;
  font-weight: 800;
}

.steps li::after {
  position: absolute;
  top: 38px;
  bottom: 4px;
  left: 16px;
  width: 1px;
  background: var(--line);
  content: "";
}

.steps li:last-child::after {
  display: none;
}

.steps strong {
  display: block;
}

.steps span {
  color: var(--muted);
  font-size: 14px;
}

.code-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 14px;
  color: #d9eee3;
  background: var(--ink);
  border: 1px solid #2c3932;
  border-radius: 5px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
}

.code-line code {
  min-width: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.code-line.support-template code {
  overflow-wrap: anywhere;
  white-space: normal;
}

.copy-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: transparent;
  border: 1px solid #516158;
  border-radius: 4px;
  cursor: pointer;
}

.copy-button svg {
  width: 16px;
  height: 16px;
}

.callout {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 16px;
  color: #554217;
  background: var(--amber-soft);
  border-left: 3px solid var(--amber);
  border-radius: 0 5px 5px 0;
}

.callout.danger {
  color: #6e2b25;
  background: var(--red-soft);
  border-color: var(--red);
}

.callout svg {
  width: 21px;
  height: 21px;
  margin-top: 2px;
}

.callout p {
  margin: 0;
  color: inherit;
  font-size: 14px;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  text-align: left;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 750;
  cursor: pointer;
}

.faq-question svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 40px 22px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-channel {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-channel .feature-icon {
  margin: 0;
}

.contact-channel small {
  display: block;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  border: 1px solid #cbd5cf;
  border-radius: 5px;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(18, 168, 102, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
}

.support-sla {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.support-sla > div {
  padding: 24px;
  background: white;
}

.support-sla strong {
  display: block;
  font-size: 22px;
}

.support-sla span {
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  color: white;
  background: var(--green-dark);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.cta-band h2 {
  margin: 0;
  font-size: 28px;
}

.cta-band p {
  margin: 6px 0 0;
  color: #ccebdc;
}

.site-footer {
  padding: 58px 0 28px;
  color: #d8e1dc;
  background: var(--ink);
}

.site-footer .brand {
  padding: 6px 10px;
  background: white;
  border-radius: 4px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 52px;
}

.footer-about p {
  max-width: 330px;
  color: #93a29a;
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: white;
  font-size: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: #93a29a;
  font-size: 13px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  color: #78877f;
  border-top: 1px solid #2d3933;
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .brand-logo {
    width: 160px;
    height: auto;
  }

  .desktop-nav {
    gap: 16px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .feature-grid,
  .scenario-grid,
  .solution-grid,
  .pricing-grid,
  .plan-rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-rules > div:nth-child(2) {
    border-right: 0;
  }

  .plan-rules > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .flow {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .flow-node {
    width: 100%;
  }

  .flow-arrow {
    display: grid;
    place-items: center;
    transform: rotate(90deg);
  }

  .docs-shell {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 34px;
  }
}

@media (max-width: 780px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 66px;
  }

  .desktop-nav,
  .nav-actions .btn {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .mobile-panel {
    inset: 66px 0 auto;
    max-height: calc(100vh - 66px);
    max-height: calc(100dvh - 66px);
  }

  .home-hero {
    min-height: calc(100svh - 92px);
    background-image: url("assets/server-room-960.webp");
    background-image: image-set(
      url("assets/server-room-960.avif") type("image/avif"),
      url("assets/server-room-960.webp") type("image/webp")
    );
    background-position: 42% center;
  }

  .page-hero {
    background-image: url("assets/network-rack-720.webp");
    background-image: image-set(
      url("assets/network-rack-720.avif") type("image/avif"),
      url("assets/network-rack-720.webp") type("image/webp")
    );
  }

  .page-hero.products-hero {
    background-image: url("assets/server-detail-720.webp");
    background-image: image-set(
      url("assets/server-detail-720.avif") type("image/avif"),
      url("assets/server-detail-720.webp") type("image/webp")
    );
  }

  .page-hero.solutions-hero {
    background-image: url("assets/server-room-960.webp");
    background-image: image-set(
      url("assets/server-room-960.avif") type("image/avif"),
      url("assets/server-room-960.webp") type("image/webp")
    );
  }

  .page-hero.contact-hero {
    background-image: url("assets/network-rack-720.webp");
    background-image: image-set(
      url("assets/network-rack-720.avif") type("image/avif"),
      url("assets/network-rack-720.webp") type("image/webp")
    );
  }

  .hero-content {
    padding: 54px 0 46px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions .btn {
    flex: 1 1 210px;
  }

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

  .hero-metric {
    padding-right: 10px;
  }

  .hero-metric strong {
    font-size: 21px;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 300px;
  }

  .page-hero .container {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .section {
    padding: 66px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 32px;
  }

  .section-head h2,
  .center-head h2 {
    font-size: 29px;
  }

  .section-head .text-link {
    margin-top: 16px;
  }

  .feature-grid,
  .split-layout,
  .solution-detail,
  .contact-layout,
  .docs-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 24px;
  }

  .media-frame,
  .media-frame img {
    min-height: 310px;
  }

  .docs-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .docs-nav strong {
    grid-column: 1 / -1;
  }

  .docs-nav a {
    padding: 8px 10px;
  }

  .pricing-toolbar,
  .cta-band .container,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-toolbar {
    display: flex;
  }

  .pricing-switches {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .pricing-explainer {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .pricing-control {
    flex: 1 1 220px;
  }

  .pricing-notes {
    text-align: left;
  }

  .network-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .metric-strip,
  .support-sla {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metric-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-points {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

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

@media (max-width: 520px) {
  .brand-logo {
    width: 146px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metric {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .feature-grid,
  .scenario-grid,
  .solution-grid,
  .pricing-grid,
  .plan-rules,
  .metric-strip,
  .support-sla,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .plan-rules > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-rules > div:last-child {
    border-bottom: 0;
  }

  .metric-strip > div,
  .metric-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip > div:last-child {
    border-bottom: 0;
  }

  .media-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .segmented button {
    padding-inline: 10px;
    font-size: 13px;
  }

  .pricing-switches {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pricing-control,
  .pricing-control .segmented {
    width: 100%;
  }

  .price-card {
    min-height: 400px;
  }

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

  .docs-nav strong {
    grid-column: auto;
  }

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

@media (max-width: 520px) {
  .docs-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docs-nav strong {
    grid-column: 1 / -1;
  }
}
