.n963-page {
  --n963-primary-green: #27f06f;
  --n963-primary-green-dark: #0fb95a;
  --n963-deep-green: #0b4543;
  --n963-deep-green-dark: #073432;
  --n963-dark-text: #123c3b;
  --n963-muted-text: #637170;
  --n963-bg-light: #f4f4ef;
  --n963-metrics-bg: #0c3f3d;
  --n963-accent-pink: #f45ca8;
  --n963-accent-yellow: #d7ff3f;
  --n963-accent-mint: #b9ffd5;
  --n963-white: #ffffff;
  --n963-border-color: #e3e7ea;
  --n963-shadow-soft: 0 18px 45px rgba(28, 42, 34, 0.1);
  --n963-shadow-card: 0 16px 36px rgba(28, 42, 34, 0.12);
  --n963-container-width: 1440px;
  --n963-section-spacing: 96px;
  --n963-radius-small: 12px;
  --n963-radius-medium: 22px;
  --n963-radius-large: 34px;
  --n963-btn-radius: 24px;
  --n963-transition-fast: 220ms ease;
  --n963-transition-medium: 420ms ease;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--n963-white, #ffffff);
}

.n963-page,
.n963-page *,
.n963-page *::before,
.n963-page *::after {
  box-sizing: border-box;
}

.n963-page {
  --n963-font-body: "Inter", Arial, sans-serif;
  --n963-font-display: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--n963-font-body);
  color: var(--n963-dark-text);
  background: var(--n963-white);
  line-height: 1.6;
}

.n963-page img,
.n963-page svg {
  max-width: 100%;
  display: block;
}

.n963-page a {
  color: inherit;
  text-decoration: none;
}

.n963-page p,
.n963-page h1,
.n963-page h2,
.n963-page h3,
.n963-page h4 {
  margin-top: 0;
}

.n963-page h1,
.n963-page h2,
.n963-page h3,
.n963-hero-title,
.n963-metric-value,
.n963-why-number,
.n963-banner-title-line {
  font-family: var(--n963-font-display);
}



.n963-container {
  width: min(100% - 40px, var(--n963-container-width));
  margin: 0 auto;
}

.n963-section-padding {
  padding: var(--n963-section-spacing) 0;
}

.n963-section-heading {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.n963-section-heading h2, .n963-split-content h2, .n963-contact-form-card h2, .n963-network-cta-banner h2, .n963-green-banner h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--n963-dark-text);
}
.n963-eyebrow {
  margin-bottom: 12px;
  color: #d2000d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.n963-eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.n963-btn {
  --n963-btn-sweep: var(--n963-primary-green);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 30px;
  border: 0;
  border-radius: var(--n963-btn-radius) 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--n963-transition-fast), box-shadow var(--n963-transition-fast), color var(--n963-transition-fast), border-color var(--n963-transition-fast);
}

.n963-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--n963-btn-sweep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-btn:hover,
.n963-btn:focus-visible {
  transform: translateY(-2px);
}

.n963-btn:hover::before,
.n963-btn:focus-visible::before {
  transform: scaleX(1);
}

.n963-btn-primary {
  --n963-btn-sweep: var(--n963-primary-green);
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  box-shadow: 0 12px 26px rgba(141, 198, 63, 0.32);
}

.n963-btn-primary:hover,
.n963-btn-primary:focus-visible {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  box-shadow: 0 16px 30px rgba(110, 163, 41, 0.34);
}

.n963-btn-secondary {
  --n963-btn-sweep: rgba(255, 255, 255, 0.22);
  color: var(--n963-dark-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(51, 51, 51, 0.1);
}

.n963-btn-secondary:hover,
.n963-btn-secondary:focus-visible {
  color: var(--n963-dark-text);
  background: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .n963-btn::before {
    transition: none;
  }

  .n963-btn:hover::before,
  .n963-btn:focus-visible::before {
    transform: scaleX(1);
  }
}

/* SECTION: HEADER */
.n963-site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: background var(--n963-transition-fast), box-shadow var(--n963-transition-fast), padding var(--n963-transition-fast);
}

.n963-site-header .n963-container {
  width: min(100% - 72px, 1440px);
}

/* Scrolled header: keep the original light chrome */
.n963-site-header.n963-scrolled {
  background: var(--n963-white);
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0 0 30px 30px;
}

.n963-site-header.n963-scrolled .n963-header-menu {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  border-right-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.n963-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.n963-site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.n963-site-logo-image {
  width: 118px;
  height: auto;
}

.n963-page .n963-site-logo-image-dark {
  display: none;
}

.n963-page .n963-site-header.n963-scrolled .n963-site-logo-image-white {
  display: none;
}

.n963-page .n963-site-header.n963-scrolled .n963-site-logo-image-dark {
  display: block;
}

.n963-logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--n963-white);
  background: linear-gradient(135deg, var(--n963-primary-green), var(--n963-primary-green-dark));
  border-radius: 12px;
}

.n963-logo-text {
  font-size: 1.06rem;
  text-transform: lowercase;
}

.n963-logo-text span {
  color: var(--n963-primary-green);
}

.n963-site-header.n963-scrolled .n963-logo-text span {
  color: var(--n963-primary-green-dark);
}

.n963-header-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 2px 0 2px 20px;
  background: rgba(7, 52, 50, 0.28);
  border: 1px solid rgb(255 255 255 / 15%);
  border-right-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--n963-btn-radius) 0;
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.n963-mobile-menu-overlay {
  display: none;
}

.n963-mobile-menu-inner {
  display: contents;
}

.n963-nav-dropdown-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: 0.62em;
  line-height: 1;
  color: var(--n963-primary-green);
  transition: transform 0.28s ease;
}

.n963-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--n963-white);
  font: inherit;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: color var(--n963-transition-fast), background var(--n963-transition-fast);
}

.n963-nav-dropdown-trigger:hover {
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.1);
}

.n963-site-header.n963-scrolled .n963-nav-dropdown-trigger {
  color: var(--n963-deep-green);
}

.n963-site-header.n963-scrolled .n963-nav-dropdown-trigger:hover {
  color: rgba(18, 60, 59, 0.8);
  background: rgba(39, 240, 111, 0.12);
}

.n963-header-button {
  font-size: 1.01rem;
  font-weight: 600;
}

.n963-main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: calc(0.92rem + 2px);
  font-weight: 600;
  color: var(--n963-white);
}

.n963-main-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--n963-white);
  transition: color var(--n963-transition-fast), background var(--n963-transition-fast);
}

.n963-main-navigation a:hover {
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.1);
}

.n963-site-header.n963-scrolled .n963-main-navigation,
.n963-site-header.n963-scrolled .n963-main-navigation a {
  color: var(--n963-deep-green);
}

.n963-site-header.n963-scrolled .n963-main-navigation a:hover {
  color: rgba(18, 60, 59, 0.8);
  background: rgba(39, 240, 111, 0.12);
}

.n963-nav-dropdown {
  position: relative;
}

.n963-nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
}

.n963-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  width: min(580px, calc(100vw - 72px));
  min-width: 520px;
  padding: 28px;
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(7, 52, 50, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 10px);
  transition: opacity var(--n963-transition-fast), transform var(--n963-transition-fast);
}

.n963-nav-dropdown:hover .n963-nav-dropdown-menu,
.n963-nav-dropdown:focus-within .n963-nav-dropdown-menu,
.n963-nav-dropdown.is-expanded .n963-nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.n963-nav-dropdown:hover .n963-nav-dropdown-arrow,
.n963-nav-dropdown:focus-within .n963-nav-dropdown-arrow,
.n963-nav-dropdown.is-expanded .n963-nav-dropdown-arrow {
  transform: rotate(180deg);
}

.n963-nav-dropdown-menu a {
  padding: 9px 0;
  color: var(--n963-deep-green);
  border-radius: 10px;
}

.n963-nav-dropdown-menu a:hover {
  color: rgba(18, 60, 59, 0.8);
  background: transparent;
}

.n963-mega-feature,
.n963-mega-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.n963-mega-feature {
  padding-left: 28px;
}

.n963-mega-column {
  padding-right: 28px;
  border-right: 1px solid rgba(18, 60, 59, 0.1);
}

.n963-mega-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 176px;
  aspect-ratio: 960 / 720;
  margin-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 35%, rgba(39, 240, 111, 0.22), transparent 24%),
    linear-gradient(135deg, #d8ffe6, #effff4);
  border-radius: 12px;
}

.n963-mega-visual-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.n963-mega-visual-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(
    180deg,
    rgba(11, 69, 67, 0) 0%,
    rgba(11, 69, 67, 0.42) 42%,
    rgba(7, 52, 50, 0.88) 100%
  );
  pointer-events: none;
}

.n963-nav-dropdown-menu .n963-mega-overview-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 0;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
  transition: color var(--n963-transition-fast);
}

.n963-nav-dropdown-menu .n963-mega-overview-link:hover {
  color: var(--n963-accent-yellow);
  background: transparent;
}

.n963-mega-overview-link span {
  display: inline-block;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-nav-dropdown-menu .n963-mega-overview-link:hover span {
  transform: translateX(5px);
}

.n963-mega-node,
.n963-mega-line {
  position: absolute;
  display: block;
}

.n963-mega-node {
  width: 38px;
  height: 38px;
  background: var(--n963-deep-green);
  border: 8px solid var(--n963-primary-green);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(7, 52, 50, 0.16);
}

.n963-node-one {
  top: 38px;
  left: 54px;
}

.n963-node-two {
  top: 86px;
  left: 132px;
  background: var(--n963-primary-green-dark);
}

.n963-node-three {
  right: 54px;
  bottom: 42px;
}

.n963-mega-line {
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, var(--n963-primary-green), var(--n963-deep-green));
  border-radius: 999px;
  transform-origin: left center;
}

.n963-line-one {
  top: 72px;
  left: 84px;
  transform: rotate(26deg);
}

.n963-line-two {
  top: 122px;
  left: 156px;
  transform: rotate(-12deg);
}

.n963-mega-column p {
  margin-bottom: 14px;
  color: rgba(18, 60, 59, 0.6);
  font-size: 0.86rem;
  font-weight: 600;
}

.n963-mega-column a {
  width: 100%;
  white-space: normal;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.32;
}

.n963-mega-column a:hover {
  color: var(--n963-primary-green-dark);
}

.n963-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.n963-page .n963-header-link,
.n963-header-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 1.01rem;
  font-weight: 600;
  color: var(--n963-white);
  transition: color var(--n963-transition-fast), background var(--n963-transition-fast);
}

.n963-page .n963-header-link:hover,
.n963-header-link:hover {
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.1);
}

.n963-page .n963-site-header.n963-scrolled .n963-header-link,
.n963-site-header.n963-scrolled .n963-header-link {
  color: var(--n963-deep-green);
}

.n963-page .n963-site-header.n963-scrolled .n963-header-link:hover,
.n963-site-header.n963-scrolled .n963-header-link:hover {
  color: rgba(18, 60, 59, 0.76);
  background: rgba(39, 240, 111, 0.12);
}

.n963-menu-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(7, 52, 50, 0.28);
  box-shadow: none;
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.n963-menu-toggle span {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  background: var(--n963-white);
  border-radius: 999px;
  transition: transform var(--n963-transition-fast), opacity var(--n963-transition-fast), top var(--n963-transition-fast);
}

.n963-site-header.n963-scrolled .n963-menu-toggle {
  border-color: rgba(51, 51, 51, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.n963-site-header.n963-scrolled .n963-menu-toggle span {
  background: var(--n963-deep-green);
}

.n963-menu-toggle span:nth-child(1) {
  top: 18px;
}

.n963-menu-toggle span:nth-child(2) {
  top: 25px;
}

.n963-menu-toggle span:nth-child(3) {
  top: 32px;
}

.n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

/* SECTION: HERO */
.n963-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at 78% 24%, rgba(141, 198, 63, 0.24), transparent 32%),
    linear-gradient(135deg, #f8fbf3 0%, #ffffff 48%, #eef6e6 100%);
}

.n963-hero-section::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  content: "";
  background: rgba(141, 198, 63, 0.14);
  border-radius: 50%;
}

.n963-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 70px;
}

.n963-hero-content {
  max-width: 680px;
}

.n963-hero-title {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.n963-hero-subtitle {
  max-width: 590px;
  margin-bottom: 34px;
  font-size: 1.15rem;
}

.n963-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.n963-hero-animate {
  opacity: 0;
  transform: translateY(24px);
}

.n963-hero-animate.n963-is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.n963-hero-visual {
  position: relative;
  min-height: 420px;
}

.n963-device-card {
  position: absolute;
  inset: 42px 12px auto auto;
  width: min(100%, 420px);
  height: 300px;
  padding: 28px;
  background: linear-gradient(145deg, #253126, #101812);
  border-radius: var(--n963-radius-large);
  box-shadow: 0 36px 70px rgba(25, 38, 31, 0.22);
}

.n963-device-status {
  display: block;
  width: 74px;
  height: 10px;
  margin-bottom: 34px;
  background: var(--n963-primary-green);
  border-radius: 999px;
}

.n963-device-screen {
  height: 170px;
  background:
    linear-gradient(90deg, rgba(141, 198, 63, 0.38) 0 30%, transparent 30% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.n963-floating-badge {
  position: absolute;
  z-index: 2;
  padding: 14px 20px;
  color: var(--n963-dark-text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  box-shadow: var(--n963-shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.n963-badge-top {
  top: 0;
  left: 16px;
}

.n963-badge-bottom {
  right: 0;
  bottom: 32px;
}

/* SECTION: FEATURES GRID */
.n963-features-section {
  --n963-features-scroll: 0;
  --n963-slider-gutter: max(20px, calc((100vw - var(--n963-container-width)) / 2 + 20px));
  background: var(--n963-white);
}

.n963-features-slider-shell {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fbfcf8;
  border-top: 1px solid rgba(18, 60, 59, 0.12);
  border-bottom: 1px solid rgba(18, 60, 59, 0.12);
  overflow: hidden;
}

/* DataPacket-style dotted gutters on left/right */
.n963-bg-dotted {
  position: relative;
}

.n963-bg-dotted::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: rgba(18, 60, 59, 0.42);
  opacity: 0.14;
  -webkit-mask-image:
    radial-gradient(circle at 1px 1px, #000 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, #000 1px, transparent 1px);
  mask-image:
    radial-gradient(circle at 1px 1px, #000 1px, transparent 1px),
    radial-gradient(circle at 1px 1px, #000 1px, transparent 1px);
  -webkit-mask-position: 0 0, 4px 4px;
  mask-position: 0 0, 4px 4px;
  -webkit-mask-size: 8px 8px;
  mask-size: 8px 8px;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  z-index: 0;
}

.n963-bg-dotted > * {
  position: relative;
  z-index: 1;
}

.n963-features-slider-viewport {
  margin-left: var(--n963-slider-gutter);
  margin-right: 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  container-type: inline-size;
  container-name: n963-features-carousel;
}

.n963-features-slider-viewport.n963-is-dragging {
  cursor: grabbing;
}

.n963-features-grid {
  display: flex;
  width: max-content;
  max-width: none;
  margin: 0;
  gap: 0;
  padding-right: var(--n963-slider-gutter);
  background: transparent;
  border-radius: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.n963-card {
  background: var(--n963-white);
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-medium);
  box-shadow: 0 10px 28px rgba(28, 42, 34, 0.06);
  transition: transform var(--n963-transition-medium), box-shadow var(--n963-transition-medium), border-color var(--n963-transition-medium);
}

.n963-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(141, 198, 63, 0.46);
  box-shadow: var(--n963-shadow-card);
}

.n963-feature-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) / 5));
  width: var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) / 5));
  min-width: 0;
  min-height: 292px;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(39, 240, 111, 0.04), transparent 34%),
    #fbfcf8;
  border-right: 1px solid rgba(18, 60, 59, 0.1);
  border-radius: 0;
  box-shadow: none;
}

@supports (width: 1cqw) {
  .n963-feature-card {
    flex-basis: var(--n963-feature-card-width, 20cqw);
    width: var(--n963-feature-card-width, 20cqw);
  }
}

.n963-feature-card:last-child {
  border-right: 0;
}

.n963-card-icon {
  display: grid;
  width: max-content;
  min-width: 44px;
  height: 28px;
  margin-bottom: 26px;
  padding: 0 12px;
  place-items: center;
  color: var(--n963-primary-green-dark);
  background: rgba(39, 240, 111, 0.18);
  border: 1px solid rgba(39, 240, 111, 0.28);
  border-radius: 15px 0px 15px 0px;
  font-size: 0.72rem;
  font-weight: 800;
}

.n963-feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.05rem, 1.4vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.n963-feature-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.n963-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--n963-primary-green-dark);
  font-weight: 800;
}

.n963-feature-card .n963-text-link {
  margin-top: auto;
  font-size: 1rem;
}

.n963-feature-card .n963-text-link::after {
  content: "›";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 220ms ease;
}

.n963-feature-card:hover .n963-text-link::after {
  transform: translateX(4px);
}

/* SECTION: SPLIT CONTENT */
.n963-split-section {
  overflow: hidden;
  background: var(--n963-bg-light);
}

.n963-split-section.n963-network-section {
  overflow: hidden;
}

.n963-split-section-alt {
  background: var(--n963-white);
}

.n963-split-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  align-items: center;
  gap: 30px;
}

.n963-split-content {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms ease;
}

.n963-split-image {
  position: relative;
  min-height: 0;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms ease;
}

.n963-split-section-alt .n963-split-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.2fr);
  gap: 24px 20px;
  align-items: center;
}

.n963-split-image-portal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.n963-docs-illustration-stage {
  position: relative;
  width: 100%;
}

.n963-docs-illustration-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.n963-docs-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.n963-feature-bubble.n963-docs-bubble {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  padding: 12px;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-feature-bubble.n963-docs-bubble--api {
  top: 0%;
  left: 5%;
  width: 156px;
  height: 156px;
  background: rgba(215, 255, 63, 0.48);
  font-size: 1.2rem;
  transition-delay: 40ms;
}



.n963-feature-bubble.n963-docs-bubble--telemetry {
  top: 43%;
  left: 48%;
  width: 120px;
  height: 120px;
  background: rgba(255, 217, 242, 0.5);
  font-size: 1.05rem;
  transition-delay: 140ms;
}

.n963-feature-bubble.n963-docs-bubble--policy {
  top: 0%;
  left: 81%;
  width: 104px;
  height: 104px;
  background: rgba(192, 230, 255, 0.5);
  font-size: 0.86rem;
  transition-delay: 240ms;
}

#n963-docs.n963-docs-bubbles-on .n963-docs-bubble {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.n963-reveal-on-scroll.n963-in-view .n963-split-content,
.n963-reveal-on-scroll.n963-in-view .n963-split-image {
  opacity: 1;
  transform: translateY(0);
}

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

.n963-check-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-left: 0;
  color: var(--n963-dark-text);
  font-weight: 600;
}

.n963-check-list i,
.n963-product-check-grid i {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--n963-deep-green-dark);
  background: var(--n963-primary-green);
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1.1px currentColor;
  paint-order: stroke fill;
}

.n963-check-list i::before,
.n963-product-check-grid i::before {
  display: block;
  line-height: 1;
  transform: translateY(0.5px);
}

.n963-mock-browser,
.n963-portal-panel {
  position: absolute;
  inset: 30px 0 auto 0;
  min-height: 330px;
  padding: 30px;
  background: var(--n963-white);
  border-radius: var(--n963-radius-large);
  box-shadow: var(--n963-shadow-card);
}

.n963-mock-browser span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #d7dde0;
  border-radius: 50%;
}

.n963-mock-product-card {
  position: absolute;
  right: 34px;
  bottom: 12px;
  width: 250px;
  padding: 18px;
  background: var(--n963-white);
  border-radius: var(--n963-radius-medium);
  box-shadow: var(--n963-shadow-soft);
}

.n963-mock-product-image {
  height: 120px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ddebd0, #f7fbf2);
  border-radius: 16px;
}

.n963-mock-product-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.n963-portal-row {
  height: 44px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, rgba(141, 198, 63, 0.2), rgba(141, 198, 63, 0.06));
  border-radius: 12px;
}

.n963-portal-chart {
  height: 110px;
  margin-top: 30px;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(141, 198, 63, 0.25) 42% 100%),
    repeating-linear-gradient(90deg, rgba(51, 51, 51, 0.08) 0 1px, transparent 1px 42px);
  border-radius: 18px;
}

/* SECTION: BANNER */
.n963-network-cta-banner,
.n963-green-banner {
  padding: 78px 0;
  color: var(--n963-white);
  background:
    linear-gradient(135deg, rgba(38, 80, 18, 0.3), rgba(38, 80, 18, 0)),
    var(--n963-primary-green);
}

.n963-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.n963-network-cta-banner h2,
.n963-green-banner h2 {
  margin-bottom: 18px;
}

.n963-network-cta-banner p,
.n963-green-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

/* SECTION: CONTACT FORM */
.n963-contact-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: transparent;
  padding: 0;
}

.n963-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

.n963-contact-form-card,
.n963-contact-info-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.n963-contact-form-card {
  padding: 0;
}

.n963-contact-info-card {
  position: relative;
  top: auto;
  padding: 0;
}

.n963-contact-form {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.n963-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.n963-form-group {
  display: grid;
  gap: 8px;
}

.n963-form-group label {
  color: var(--n963-dark-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.n963-required {
  color: #c0392b;
  font-weight: 800;
  margin-left: 2px;
}

.n963-form-group input,
.n963-form-group select,
.n963-form-group textarea {
  width: 100%;
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-small);
  outline: 0;
  background: #fbfcfb;
  color: var(--n963-dark-text);
  font: inherit;
  transition: border-color var(--n963-transition-fast), box-shadow var(--n963-transition-fast), background var(--n963-transition-fast);
  appearance: none;
}

.n963-form-group input,
.n963-form-group select {
  height: 52px;
  padding: 0 16px;
}

.n963-form-group textarea {
  min-height: 136px;
  padding: 14px 16px;
  resize: vertical;
}

.n963-form-group input:focus,
.n963-form-group select:focus,
.n963-form-group textarea:focus {
  background: var(--n963-white);
  border-color: var(--n963-primary-green);
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.14);
}

.n963-form-group input.is-invalid,
.n963-form-group textarea.is-invalid,
.n963-select.is-invalid .n963-select-trigger {
  border-color: var(--n963-deep-green);
  box-shadow: 0 0 0 4px rgba(11, 69, 67, 0.16);
}

.n963-form-consent.is-invalid {
  outline: 2px solid rgba(11, 69, 67, 0.55);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Custom select (FA chevron + animated options) */
.n963-select {
  position: relative;
}

.n963-select > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.n963-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-small);
  outline: 0;
  background: #fbfcfb;
  color: var(--n963-dark-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--n963-transition-fast), box-shadow var(--n963-transition-fast), background var(--n963-transition-fast);
}

.n963-select-trigger:hover {
  background: var(--n963-white);
}

.n963-select-trigger:focus,
.n963-select.is-open .n963-select-trigger {
  background: var(--n963-white);
  border-color: var(--n963-primary-green);
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.14);
}

.n963-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.n963-select-value--placeholder {
  color: rgba(28, 42, 34, 0.48);
  font-weight: 500;
}

.n963-select-arrow {
  flex-shrink: 0;
  color: var(--n963-primary-green-dark);
  font-size: 0.82rem;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-select.is-open .n963-select-arrow {
  transform: rotate(180deg);
}

.n963-select-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-small);
  background: var(--n963-white);
  box-shadow: 0 18px 40px rgba(28, 42, 34, 0.12);
  max-height: 280px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1), visibility 220ms;
}

.n963-select.is-open .n963-select-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.n963-select-option {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--n963-dark-text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition:
    background var(--n963-transition-fast),
    color var(--n963-transition-fast),
    opacity 280ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms, 0ms, calc(var(--n963-select-i, 0) * 40ms), calc(var(--n963-select-i, 0) * 40ms);
}

.n963-select.is-open .n963-select-option {
  opacity: 1;
  transform: translateY(0);
}

.n963-select-option:hover,
.n963-select-option:focus,
.n963-select-option.is-active {
  background: rgba(141, 198, 63, 0.12);
  color: var(--n963-primary-green-dark);
  outline: 0;
}

.n963-select-option.is-selected {
  background: rgba(141, 198, 63, 0.18);
  color: var(--n963-primary-green-dark);
}

.n963-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(28, 42, 34, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.n963-form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--n963-primary-green);
  cursor: pointer;
}

.n963-contact-form > .n963-btn {
  min-height: 56px;
  padding: 16px 34px;
  font-size: 1.05rem;
}

.n963-form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.n963-form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--n963-radius-small);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.n963-form-status.is-visible {
  display: block;
}

.n963-form-status.is-success {
  background: rgba(141, 198, 63, 0.14);
  color: var(--n963-primary-green-dark);
}

.n963-form-status.is-error {
  background: rgba(192, 57, 43, 0.1);
  color: #962d22;
}

.n963-contact-form > .n963-btn:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .n963-select-arrow,
  .n963-select-panel,
  .n963-select-option {
    transition: none;
  }

  .n963-select-panel {
    transform: none;
  }

  .n963-select-option {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}

.n963-contact-info-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.n963-contact-detail {
  display: grid;
  gap: 4px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--n963-border-color);
}

.n963-contact-detail span {
  color: var(--n963-primary-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.n963-contact-detail a,
.n963-contact-detail address {
  color: var(--n963-dark-text);
  font-style: normal;
  font-weight: 700;
}

/* SECTION: FOOTER */
.n963-site-footer {
  position: relative;
  padding: 70px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #172017;
  padding-bottom: 25px;
}

.n963-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 45px;
}

.n963-footer-logo {
  margin-bottom: 18px;
  color: var(--n963-white);
}

.n963-footer-logo .n963-site-logo-image {
  width: 123px;
}

.n963-footer-column p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.62);
}

.n963-footer-contact {
  display: grid;
  gap: 12px;
  max-width: 320px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.n963-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--n963-white);
  font-size: 0.94rem;
  line-height: 1.45;
}

.n963-footer-contact i {
  flex: 0 0 auto;
  width: 1em;
  margin-top: 0.2em;
  color: inherit;
  font-size: 0.92rem;
  text-align: center;
}

.n963-footer-column .n963-footer-contact a,
.n963-footer-column .n963-footer-contact address {
  display: inline;
  margin: 0;
  color: var(--n963-white);
  font-style: normal;
  font-weight: 500;
  line-height: inherit;
}

.n963-footer-column .n963-footer-contact a:hover {
  color: var(--n963-primary-green);
}

.n963-footer-contact li:has(a:hover) {
  color: var(--n963-primary-green);
}

.n963-footer-column h4 {
  margin-bottom: 18px;
  color: var(--n963-white);
}

.n963-footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  transition: color var(--n963-transition-fast);
}

.n963-footer-column a:hover {
  color: var(--n963-primary-green);
}

.n963-footer-copyright {
  width: 100%;
  margin: 88px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  text-align: center;
}

.n963-page .n963-scroll-top {
  --n963-scroll-top-right: max(20px, calc((100vw - min(100vw - 40px, var(--n963-container-width))) / 2));
  position: fixed;
  right: var(--n963-scroll-top-right);
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px 12px 24px;
  background: #061435;
  color: var(--n963-white);
  border: 0;
  border-radius: var(--n963-btn-radius) 0;
  box-shadow:
    0 0 0 2px var(--n963-accent-yellow),
    0 12px 26px rgba(6, 20, 53, 0.28);
  font-family: var(--n963-font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--n963-transition-fast),
    visibility var(--n963-transition-fast),
    transform var(--n963-transition-fast);
}

.n963-page .n963-scroll-top span,
.n963-page .n963-scroll-top i {
  color: inherit;
}

.n963-page .n963-scroll-top i {
  font-size: 0.85rem;
}

.n963-page .n963-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.n963-page .n963-scroll-top.is-docked {
  position: absolute;
  top: 0;
  bottom: auto;
  transform: translateY(-50%);
}

.n963-page .n963-scroll-top.is-visible.is-docked {
  transform: translateY(-50%);
}

.n963-page .n963-scroll-top:hover,
.n963-page .n963-scroll-top:focus-visible {
  background: var(--n963-primary-green);
  color: var(--n963-deep-green-dark);
}

@media (prefers-reduced-motion: reduce) {
  .n963-page .n963-scroll-top {
    transition: none;
  }
}

/* Reference visual tone: deep green, neon accents and editorial spacing. */
.n963-site-header .n963-site-logo {
  color: rgba(255, 255, 255, 0.9);
}

.n963-site-header .n963-logo-text span {
  color: var(--n963-primary-green);
}

.n963-hero-section {
  min-height: 720px;
  padding: 124px 0 48px;
  z-index: 2;
  border-radius: 0px 0px 40px 40px;
  color: var(--n963-white);
  background:
    radial-gradient(circle at 28% 82%, rgba(39, 240, 111, 0.2), transparent 20%),
    radial-gradient(circle at 82% 45%, rgba(244, 92, 168, 0.2), transparent 18%),
    linear-gradient(180deg, var(--n963-deep-green) 0%, var(--n963-deep-green-dark) 48%, var(--n963-metrics-bg) 82%, var(--n963-metrics-bg) 100%);
}

.n963-hero-section::before {
  top: auto;
  right: auto;
  bottom: -260px;
  left: 50%;
  width: 720px;
  height: 720px;
  background: rgba(39, 240, 111, 0.06);
  transform: translateX(-50%);
}

.n963-block-hero__background {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}


.n963-hero-shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  mix-blend-mode: screen;
  pointer-events: none;
}

.n963-hero-shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.n963-hero-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  background-repeat: no-repeat;
}

.n963-hero-bg-left {
  display: none; /* <--- TEMPORARILY HIDDEN */
  z-index: 1;
  background-image: url('assets/hero/n963-hero-left-v3.png');
  background-position: left center;
  background-size: 70%; /* <--- LEFT IMAGE SIZE */
  transform: translate3d(-72px, 0, 0);
  mix-blend-mode: screen;
}

.n963-hero-bg-right {
  display: none; /* <--- TEMPORARILY HIDDEN */
  z-index: 2;
  background-image: url('assets/hero/n963-hero-right-v3.png');
  background-position: right center;
  background-size: 70%; /* <--- RIGHT IMAGE SIZE */
  transform: translate3d(72px, 0, 0);
  mix-blend-mode: screen;
}

.n963-hero-bg-bottom {
  display: none;
  z-index: 3;
  background-image: url(assets/hero/n963-hero-bottom-v3.png);
  background-position: center -83px;
  background-size: 100%;
  transform: translate3d(0, 90px, 0);
  width: 100%;
}

.n963-hero-section.n963-hero-loaded .n963-hero-bg-left {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: heroFloatLeft 8s ease-in-out 1.2s infinite;
}

.n963-hero-section.n963-hero-loaded .n963-hero-bg-right {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: heroFloatRight 9s ease-in-out 1.35s infinite;
}

.n963-hero-section.n963-hero-loaded .n963-hero-bg-bottom {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: heroFloatBottom 7.5s ease-in-out 1.5s infinite;
}

.n963-hero-layout {
  grid-template-columns: 1fr;
  gap: 34px;
}

.n963-hero-content {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.n963-hero-title {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  color: var(--n963-white);
  font-size: clamp(2.55rem, 6.8vw, 6rem);
}

.n963-rotating-text {
  display: inline-block;
  min-width: min(7.8em, 100%);
  color: var(--n963-accent-yellow);
  white-space: nowrap;
  vertical-align: bottom;
  text-shadow: 0 0 24px rgba(215, 255, 63, 0.2);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
  will-change: opacity, transform, filter;
}

.n963-rotating-text.n963-text-out {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-0.18em);
}

.n963-rotating-text.n963-text-in {
  animation: n963TextRotateIn 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes n963TextRotateIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(0.22em);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.n963-hero-subtitle {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: var(--n963-white);
}

.n963-hero-actions {
  justify-content: center;
  max-width: min(100%, 560px);
  margin-right: auto;
  margin-left: auto;
  gap: clamp(10px, 1.5vw, 16px);
}

.n963-hero-actions .n963-btn {
  flex: 0 0 auto;
  min-width: 220px;
  max-width: 270px;
  height: 60px;
  min-height: 45px;
  padding: 0 clamp(18px, 2.4vw, 35px);
  font-size: clamp(0.88rem, 1.08vw, 1rem);
  line-height: 1;
  white-space: nowrap;
}

.n963-scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
  animation: n963ScrollCueFloat 1.8s ease-in-out infinite;
}

.n963-scroll-cue:hover {
  color: var(--n963-accent-yellow);
  transform: translateY(2px);
}

.n963-scroll-cue-mouse {
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.08), 0 0 22px rgba(39, 240, 111, 0.12);
}

.n963-scroll-cue-dot {
  position: absolute;
  top: 8px;
  width: 4px;
  height: 8px;
  background: var(--n963-accent-yellow);
  border-radius: 999px;
  animation: n963ScrollCueDot 1.45s ease-in-out infinite;
}

@keyframes n963ScrollCueFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@keyframes n963ScrollCueDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  28% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.n963-btn {
  min-height: 38px;
  padding: 10px 30px;
  font-size: 16px;
}

.n963-btn-primary {
  --n963-btn-sweep: var(--n963-primary-green);
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  box-shadow: 0 10px 22px rgba(39, 240, 111, 0.24);
}

.n963-btn-primary:hover,
.n963-btn-primary:focus-visible {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-hero-actions .n963-btn-primary {
  --n963-btn-sweep: var(--n963-primary-green);
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-hero-actions .n963-btn-primary:hover,
.n963-hero-actions .n963-btn-primary:focus-visible {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-btn-secondary {
  --n963-btn-sweep: rgba(255, 255, 255, 0.2);
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.n963-btn-secondary:hover,
.n963-btn-secondary:focus-visible {
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.08);
}

/* SECTION: CORE INFRASTRUCTURE METRICS */
.n963-metrics-section {
  position: relative;
  z-index: 5;
  margin-top: clamp(32px, 4.8vw, 64px);
  padding: 0;
  background: transparent;
}

.n963-metrics-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.n963-metrics-grid .n963-animated-icon,
.n963-product-globe-metrics .n963-animated-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  max-width: none;
  height: auto;
  margin-bottom: 0;
}

.n963-metrics-grid .n963-uptime-icon,
.n963-product-globe-metrics .n963-uptime-icon {
  top: 5px;
  right: 5px;
}

/* SLA icon is scaled 1.3 — nudge into corner to match visual slot */
.n963-product-globe-metrics .n963-sla-icon {
  top: 2px;
  right: 1px;
}

.n963-metrics-grid .n963-metric-card strong,
.n963-metrics-grid .n963-metric-card .n963-metric-value,
.n963-product-globe-metrics .n963-metric-card strong,
.n963-product-globe-metrics .n963-metric-card .n963-metric-value {
  padding-right: 114px;
}

.n963-metric-card {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  color: var(--n963-white);
  background: linear-gradient(135deg, rgb(255 255 255 / 0%), rgb(0 55 34 / 11%)), rgb(0 115 77 / 2%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px 0px 30px 0px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.n963-metric-card::before {
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
}

.n963-metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(39, 240, 111, 0.45);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.26);
}

.n963-animated-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 75px;
  margin-bottom: 16px;
}

/* Shared metric icon primitives — multi-cloud private-path language */
.n963-mi-uptime,
.n963-mi-ping,
.n963-mi-pipe,
.n963-mi-scope {
  display: block;
  position: relative;
  box-sizing: border-box;
}

/* 1. Uptime — perfect SVG circle + traveling arc */
.n963-uptime-icon {
  width: 52px;
  height: 52px;
}

.n963-mi-uptime {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  overflow: visible;
}

.n963-mi-uptime__track {
  fill: none;
  stroke: rgba(103, 216, 255, 0.28);
  stroke-width: 1.5;
}

.n963-mi-uptime__arc {
  fill: none;
  stroke: #67d8ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 26 62;
  filter: drop-shadow(0 0 3.5px rgba(103, 216, 255, 0.75));
  transform-box: fill-box;
  transform-origin: center;
  animation: n963MiUptimeArc 1.8s linear infinite;
}

.n963-mi-uptime__core {
  fill: #27f06f;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.85));
  transform-box: fill-box;
  transform-origin: center;
  animation: n963MiUptimeCore 1.6s ease-in-out infinite;
}

.n963-mi-uptime__halo {
  fill: rgba(39, 240, 111, 0.18);
  transform-box: fill-box;
  transform-origin: center;
  animation: n963MiUptimeHalo 1.6s ease-in-out infinite;
}

@keyframes n963MiUptimeArc {
  to { transform: rotate(360deg); }
}

@keyframes n963MiUptimeCore {
  0%, 100% { transform: scale(0.92); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes n963MiUptimeHalo {
  0%, 100% { transform: scale(0.85); opacity: 0.35; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* 2. Latency — horizontal ping / RTT path */
.n963-latency-icon {
  width: 104px;
  height: 75px;
}

.n963-mi-ping {
  position: relative;
  width: 104px;
  height: 34px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(103, 216, 255, 0.1) 20%, rgba(39, 240, 111, 0.12) 80%, transparent);
  border-radius: 999px;
  border: 1px solid rgba(103, 216, 255, 0.28);
  box-shadow: inset 0 0 8px rgba(39, 240, 111, 0.08);
}

.n963-mi-ping::before {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(185, 255, 213, 0.45), transparent);
  transform: translateY(-50%);
}

.n963-mi-ping b {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  background: rgba(103, 216, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(103, 216, 255, 0.45);
}

.n963-mi-ping b:nth-child(1) { left: 12%; }
.n963-mi-ping b:nth-child(2) { left: 34%; }
.n963-mi-ping b:nth-child(3) { left: 56%; }
.n963-mi-ping b:nth-child(4) { left: 78%; }

.n963-mi-ping i {
  position: absolute;
  top: 50%;
  left: -12px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: #27f06f;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(39, 240, 111, 0.9), 0 0 16px rgba(39, 240, 111, 0.45);
  animation: n963MiPingDot 1.15s cubic-bezier(0.22, 0.7, 0.25, 1) infinite;
}

@keyframes n963MiPingDot {
  0% { left: -12px; opacity: 0; transform: scale(0.6); }
  12% { opacity: 1; }
  100% { left: calc(100% + 2px); opacity: 0; transform: scale(1); }
}

/* 3. Capacity — mini private-path pipe */
.n963-capacity-icon {
  width: 73px;
}

.n963-mi-pipe {
  position: relative;
  width: 73px;
  height: 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(103, 216, 255, 0.16) 18%, rgba(39, 240, 111, 0.18) 82%, transparent),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(103, 216, 255, 0.18) 10px 11px);
  border-top: 1px solid rgba(103, 216, 255, 0.42);
  border-bottom: 1px solid rgba(39, 240, 111, 0.36);
  border-radius: 2px;
}

.n963-mi-pipe b {
  position: absolute;
  left: -10px;
  width: 8px;
  height: 8px;
  background: #67d8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(103, 216, 255, 0.85);
  opacity: 0;
  animation: n963MiPipeDot 1.55s linear infinite;
}

.n963-mi-pipe b:nth-child(1) { top: 5px; animation-delay: 0s; }
.n963-mi-pipe b:nth-child(2) { top: 14px; animation-delay: -0.5s; background: #27f06f; box-shadow: 0 0 10px rgba(39, 240, 111, 0.8); }
.n963-mi-pipe b:nth-child(3) { top: 23px; animation-delay: -1s; }

.n963-mi-pipe i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.28), transparent 82%);
  transform: translateX(-100%);
  animation: n963MiPipeSweep 2.2s ease-in-out infinite;
}

@keyframes n963MiPipeDot {
  0% { left: -10px; opacity: 0; transform: scale(0.7); }
  14%, 82% { opacity: 1; }
  100% { left: calc(100% + 10px); opacity: 0; transform: scale(1); }
}

@keyframes n963MiPipeSweep {
  0%, 18% { transform: translateX(-100%); }
  82%, 100% { transform: translateX(100%); }
}

/* 4. NOC — dual-orbit scope */
.n963-noc-icon {
  width: 52px;
}

.n963-mi-scope {
  position: relative;
  width: 52px;
  height: 52px;
}

.n963-mi-scope__ring {
  position: absolute;
  inset: 1px;
  border: 1.5px dashed rgba(103, 216, 255, 0.5);
  border-radius: 50%;
  animation: n963MiScopeSpin 7s linear infinite;
}

.n963-mi-scope__ring--inner {
  inset: 12px;
  border-style: solid;
  border-color: rgba(39, 240, 111, 0.42);
  box-shadow: inset 0 0 8px rgba(103, 216, 255, 0.12);
  animation: n963MiScopeSpinReverse 4.5s linear infinite;
}

.n963-mi-scope > i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, #67d8ff, transparent);
  border-radius: 999px;
  transform-origin: left center;
  box-shadow: 0 0 8px rgba(103, 216, 255, 0.7);
  animation: n963MiScopeSweep 2.2s linear infinite;
}

@keyframes n963MiScopeSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.n963-mi-scope::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: radial-gradient(circle at 35% 35%, #b9ffd5, #27f06f);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(39, 240, 111, 0.7);
  transform: translate(-50%, -50%);
}

@keyframes n963MiScopeSpin {
  to { transform: rotate(360deg); }
}

@keyframes n963MiScopeSpinReverse {
  to { transform: rotate(-360deg); }
}

/* 5. Layers — stacked isometric planes (Anti-DDoS L3–L7) */
.n963-layers-icon {
  width: 52px;
  height: 52px;
}

.n963-mi-layers {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  overflow: visible;
}

.n963-mi-layers__plane {
  fill: rgba(39, 240, 111, 0.1);
  stroke: #27f06f;
  stroke-width: 1.6;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 3px rgba(39, 240, 111, 0.35));
  animation: n963MiLayerFloat 2.4s ease-in-out infinite;
}

.n963-mi-layers__plane--b {
  fill: rgba(103, 216, 255, 0.1);
  stroke: #67d8ff;
  filter: drop-shadow(0 0 3px rgba(103, 216, 255, 0.4));
  animation-delay: -0.35s;
}

.n963-mi-layers__plane--c {
  fill: rgba(39, 240, 111, 0.16);
  stroke: #27f06f;
  animation-delay: -0.7s;
}

@keyframes n963MiLayerFloat {
  0%, 100% { transform: translateY(0); opacity: 0.78; }
  50% { transform: translateY(-2px); opacity: 1; }
}

/* 6. Facility grade — certified building */
.n963-facility-icon {
  width: 52px;
  height: 52px;
  transform: scale(1.02);
  transform-origin: top right;
}

.n963-mi-facility {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  overflow: visible;
}

.n963-mi-facility__shell {
  fill: rgba(39, 240, 111, 0.08);
  stroke: #27f06f;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.n963-mi-facility__roof {
  fill: none;
  stroke: #67d8ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(103, 216, 255, 0.45));
}

.n963-mi-facility__line {
  fill: none;
  stroke: #67d8ff;
  stroke-width: 1.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(103, 216, 255, 0.45));
}

.n963-mi-facility__badge {
  fill: rgba(11, 69, 67, 0.92);
  stroke: #27f06f;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px rgba(39, 240, 111, 0.45));
  animation: n963MiFacilityBadge 2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.n963-mi-facility__check {
  fill: none;
  stroke: #27f06f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes n963MiFacilityBadge {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.06); }
}

/* 7. Redundancy — N+2 parallel paths */
.n963-redundancy-icon {
  width: 52px;
  height: 52px;
}

.n963-mi-redundancy {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  overflow: visible;
}

.n963-mi-redundancy__path {
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-mi-redundancy__path--a {
  stroke: rgba(103, 216, 255, 0.55);
}

.n963-mi-redundancy__path--b {
  stroke: #27f06f;
  filter: drop-shadow(0 0 3px rgba(39, 240, 111, 0.45));
}

.n963-mi-redundancy__path--c {
  stroke: rgba(103, 216, 255, 0.55);
}

.n963-mi-redundancy__node {
  fill: #67d8ff;
  filter: drop-shadow(0 0 4px rgba(103, 216, 255, 0.7));
}

.n963-mi-redundancy__node--end {
  fill: #27f06f;
  filter: drop-shadow(0 0 4px rgba(39, 240, 111, 0.7));
}

.n963-mi-redundancy__packet {
  fill: #27f06f;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.85));
}

/* 8. Smart Hands SLA — response ring + bolt */
.n963-sla-icon {
  width: 52px;
  height: 52px;
  transform: scale(1.3);
  transform-origin: top right;
}

.n963-mi-sla {
  display: block;
  width: 52px;
  height: 52px;
  max-width: none;
  overflow: visible;
}

.n963-mi-sla__track {
  fill: rgba(39, 240, 111, 0.06);
  stroke: rgba(103, 216, 255, 0.35);
  stroke-width: 1.5;
}

.n963-mi-sla__ticks {
  fill: none;
  stroke: rgba(39, 240, 111, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 1.5 10.5;
  stroke-linecap: round;
  transform-origin: 26px 26px;
  animation: n963MiSlaTicks 8s linear infinite;
}

.n963-mi-sla__bolt {
  fill: #27f06f;
  stroke: none;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.75));
  transform-origin: 26px 26px;
  animation: n963MiSlaBolt 1.2s ease-in-out infinite;
}

@keyframes n963MiSlaTicks {
  to { transform: rotate(-360deg); }
}

@keyframes n963MiSlaBolt {
  0%, 100% { transform: translateY(0) scale(0.8); }
  50% { transform: translateY(-3px) scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .n963-mi-uptime__arc,
  .n963-mi-uptime__core,
  .n963-mi-uptime__halo,
  .n963-mi-ping i,
  .n963-mi-pipe b,
  .n963-mi-pipe i,
  .n963-mi-scope__ring,
  .n963-mi-scope > i,
  .n963-mi-layers__plane,
  .n963-mi-facility__badge,
  .n963-mi-sla__bolt,
  .n963-mi-sla__ticks {
    animation: none;
  }

  .n963-mi-sla__bolt {
    opacity: 1;
    transform: scale(0.8);
  }

  .n963-mi-redundancy__packet {
    display: none;
  }

  .n963-mi-uptime__arc {
    stroke-dasharray: none;
    stroke: #67d8ff;
  }

  .n963-mi-ping i {
    left: 72%;
    opacity: 1;
  }

  .n963-mi-pipe b:nth-child(1) { left: 18%; opacity: 0.9; top: 4px; }
  .n963-mi-pipe b:nth-child(2) { left: 48%; opacity: 0.9; top: 11px; }
  .n963-mi-pipe b:nth-child(3) { left: 74%; opacity: 0.9; top: 18px; }
}

.n963-metric-card.n963-hero-animate {
  transition: opacity 650ms ease, transform 650ms ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.n963-metric-card.n963-hero-animate.n963-is-visible:hover {
  transform: translateY(-5px);
}

.n963-metric-card strong,
.n963-metric-card .n963-metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--n963-white);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(39, 240, 111, 0.14);
}

.n963-metric-card span {
  display: block;
  color: rgb(216 253 88);
  font-size: 1rem;
  font-weight: 700;
}

/* SECTION: WHY CHOOSE US */
.n963-why-section {
  --n963-why-heading-scroll: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--n963-bg-light);
}

.n963-why-section .n963-container {
  position: relative;
  z-index: 2;
}

.n963-section-heading.n963-why-heading {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.n963-why-heading h2 {
  /* dark gray #4a4f4e -> deep green #0b4543 */
  color: rgb(
    calc(74 - 63 * var(--n963-why-heading-scroll, 0)),
    calc(79 - 10 * var(--n963-why-heading-scroll, 0)),
    calc(78 - 11 * var(--n963-why-heading-scroll, 0))
  );
  opacity: calc(0.3 + 0.7 * var(--n963-why-heading-scroll, 0));
  will-change: color, opacity;
}

.n963-why-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -6px;
  user-select: none;
  -webkit-user-select: none;
}

.n963-why-carousel-stage {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: clamp(430px, 56vw, 640px);
  height: auto;
  padding-top: 41px;
  padding-bottom: 4px;
  overflow: visible;
  touch-action: none;
  cursor: grab;
}

.n963-why-carousel.is-dragging .n963-why-carousel-stage {
  cursor: grabbing;
}

.n963-why-carousel-drag {
  position: absolute;
  top: 0;
  right: -18vw;
  bottom: 0;
  left: -18vw;
  z-index: 50;
  cursor: inherit;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.n963-why-card {
  position: absolute;
  top: 41px;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(100%, 580px);
  margin: 0;
  padding: 64px 48px 48px;
  background: var(--n963-white);
  border-left: 9px solid var(--n963-primary-green);
  border-right: 9px solid var(--n963-primary-green);
  border-radius: calc(var(--n963-radius-medium) * 1.1);
  box-shadow: 0 24px 44px rgba(7, 52, 50, 0.1);
  transform: translate(-50%, 0);
  transform-origin: center top;
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  box-sizing: border-box;
}

.n963-why-number {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 75px;
  height: 75px;
  margin: 0;
  color: var(--n963-deep-green);
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 52, 50, 0.12);
  font-size: 1.33rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  transform: translate(-50%, -50%);
}

.n963-why-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  letter-spacing: -0.045em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.n963-why-card p {
  margin-bottom: 0;
  color: var(--n963-muted-text);
  font-size: 1.19rem;
  line-height: 1.65;
}

.n963-why-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
}

.n963-why-carousel-button {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  font-size: 1.1rem;
  color: var(--n963-deep-green);
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 52, 50, 0.1);
  cursor: pointer;
  transition: background var(--n963-transition-fast), color var(--n963-transition-fast), transform var(--n963-transition-fast);
}

.n963-why-carousel-button:hover {
  color: var(--n963-white);
  background: var(--n963-deep-green);
  transform: translateY(-1px);
}

.n963-why-carousel-button:focus-visible {
  outline: 2px solid var(--n963-primary-green);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .n963-why-carousel-stage {
    display: grid;
    height: auto;
    gap: 20px;
  }

  .n963-why-carousel-drag,
  .n963-why-carousel-controls {
    display: none;
  }

  .n963-why-card {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    z-index: 1 !important;
  }
}

@keyframes heroFloatLeft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-10px, 8px, 0);
  }
}

@keyframes heroFloatRight {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -8px, 0);
  }
}

@keyframes heroFloatBottom {
  0%,
  100% {
    transform: translate3d(0, 0, 0); /* 貼緊底部 */
  }

  50% {
    transform: translate3d(0, 12px, 0); /* 微微向下浮動，不離開底部 */
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-hero-bg-layer,
  .n963-hero-animate.n963-is-visible {
    animation: none;
    transition: none;
  }
}

.n963-hero-visual {
  min-height: 240px;
}

.n963-hero-art {
  position: absolute;
  inset: -275px 0 auto;
  z-index: 1;
  height: 510px;
  pointer-events: none;
}

.n963-art-building,
.n963-art-monitor,
.n963-art-hand,
.n963-art-bike,
.n963-art-orbit,
.n963-art-dot {
  position: absolute;
}

.n963-art-building {
  left: 0;
  bottom: 28px;
  width: 138px;
  height: 220px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 25px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.n963-art-monitor {
  right: 2%;
  top: 136px;
  width: 165px;
  height: 110px;
  background: #2f312d;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.n963-art-monitor span {
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(90deg, var(--n963-primary-green) 0 34%, transparent 34%),
    linear-gradient(#ffb0d6, #ffb0d6);
  border-radius: 8px;
}

.n963-art-hand {
  left: 45%;
  bottom: 8px;
  width: 260px;
  height: 130px;
  background: #ffbf73;
  border-radius: 100px 100px 30px 120px;
  transform: rotate(-14deg);
}

.n963-art-hand::after {
  position: absolute;
  right: -32px;
  bottom: 30px;
  width: 100px;
  height: 34px;
  content: "";
  background: #ffbf73;
  border-radius: 999px;
  transform: rotate(18deg);
}

.n963-art-bike {
  left: 7%;
  bottom: 16px;
  width: 210px;
  height: 110px;
}

.n963-wheel {
  position: absolute;
  bottom: 0;
  width: 74px;
  height: 74px;
  border: 8px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.n963-wheel-left {
  left: 0;
}

.n963-wheel-right {
  right: 0;
}

.n963-bike-frame {
  position: absolute;
  left: 48px;
  bottom: 36px;
  width: 112px;
  height: 52px;
  border: 7px solid var(--n963-primary-green);
  border-top: 0;
  transform: skewX(-18deg);
}

.n963-art-orbit {
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.n963-orbit-one {
  right: 17%;
  bottom: 42px;
}

.n963-orbit-two {
  right: 12%;
  bottom: 98px;
  width: 64px;
  height: 64px;
  border-color: rgba(39, 240, 111, 0.74);
}

.n963-art-dot {
  width: 18px;
  height: 18px;
  background: var(--n963-primary-green);
  border-radius: 50%;
}

.n963-dot-one {
  left: 23%;
  bottom: 86px;
  background: var(--n963-accent-yellow);
}

.n963-dot-two {
  right: 26%;
  bottom: 70px;
  background: var(--n963-accent-pink);
}

.n963-dot-three {
  right: 9%;
  bottom: 162px;
}

.n963-features-section {
  padding-top: var(--n963-section-spacing);
  padding-bottom: 0;
}

.n963-features-container {
  max-width: 1440px;
}

.n963-features-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px 28px;
  max-width: 1440px;
  margin-bottom: 44px;
  text-align: left;
}

.n963-features-heading h2 {
  max-width: 720px;
  /* dark gray #4a4f4e -> deep green #0b4543 */
  color: rgb(
    calc(74 - 63 * var(--n963-features-scroll, 0)),
    calc(79 - 10 * var(--n963-features-scroll, 0)),
    calc(78 - 11 * var(--n963-features-scroll, 0))
  );
  opacity: calc(0.3 + 0.7 * var(--n963-features-scroll, 0));
  will-change: color, opacity;
}

.n963-features-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 18px max(20px, calc((100vw - var(--n963-container-width)) / 2 + 20px));
  color: rgba(18, 60, 59, 0.56);
 
  border-top: 1px solid rgba(18, 60, 59, 0.1);
  
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.n963-features-slider-controls {
  display: inline-flex;
  gap: 8px;
}

.n963-features-slider-button {
  display: inline-grid;
  width: 41px;
  height: 41px;
  padding: 0;
  place-items: center;
  color: var(--n963-deep-green);
  background: transparent;
  border: 1px solid rgba(18, 60, 59, 0.14);
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.n963-features-slider-button i {
  display: block;
  line-height: 1;
  pointer-events: none;
}

.n963-features-slider-button:hover:not(:disabled) {
  color: var(--n963-deep-green-dark);
  background: rgba(39, 240, 111, 0.1);
  border-color: rgba(39, 240, 111, 0.42);
  transform: translateY(-1px);
}

.n963-features-slider-button:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
  background: transparent;
  border-color: rgba(18, 60, 59, 0.1);
}

.n963-features-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  width: 100%;
}

.n963-features-illustration-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin-left: auto;
  transform: translate3d(0, calc((1 - var(--n963-features-scroll, 0)) * 40px), 0);
  opacity: calc(0.28 + 0.72 * var(--n963-features-scroll, 0));
  will-change: transform, opacity;
}

.n963-features-illustration-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  object-fit: contain;
  border-radius: calc(var(--n963-features-scroll, 0) * 15px);
  overflow: hidden;
  mix-blend-mode: screen;
  user-select: none;
  pointer-events: none;
  will-change: border-radius;
}

.n963-feature-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.n963-feature-bubble {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 112px;
  height: 112px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  color: var(--n963-deep-green-dark);
  background: rgba(215, 255, 63, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(11, 69, 67, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -18px 32px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(175%);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
  text-align: center;
  line-height: 1.05;
  transform-origin: center center;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.55);
  will-change: transform, opacity;
}

.n963-feature-bubble strong {
  display: block;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.n963-feature-bubble span {
  display: block;
  margin-top: 2px;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.n963-feature-bubble--main {
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  font-size: 1.2rem;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 40ms;
}

.n963-features-section .n963-feature-bubble {
  color: #062f2d;
  background: rgba(215, 255, 63, 0.88);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(11, 69, 67, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.n963-feature-bubble--main strong {
  font-size: 1.05em;
}

.n963-feature-bubble--sm {
  width: 88px;
  height: 88px;
  font-size: 0.82rem;
}

.n963-features-section .n963-feature-bubble--latency {
  top: 5%;
  left: 72%;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 140ms;
  background: rgb(176 255 232 / 90%);
}

.n963-features-section .n963-feature-bubble--capacity {
  top: 16%;
  left: 49%;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 240ms;
  background: rgba(134, 211, 255, 0.9);
}

.n963-features-section.n963-features-bubbles-on .n963-feature-bubble {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .n963-feature-bubbles,
  .n963-docs-bubbles {
    display: none;
  }
}

/* VERTICAL TABS LAYOUT */
.n963-metrics-section .n963-vtabs-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin-top: 0;
  color: var(--n963-deep-green);
}

.n963-metrics-section .n963-vtabs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.n963-metrics-section .n963-vtab-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 16px 18px 16px 28px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: var(--n963-radius-medium);
  overflow: hidden;
}

.n963-metrics-section .n963-vtab-item .n963-animated-icon {
  grid-row: 1 / span 2;
  width: 48px;
  height: 42px;
  margin-bottom: 0;
}

.n963-metrics-section .n963-vtab-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(18, 60, 59, 0.12);
  border-radius: 4px;
}

.n963-metrics-section .n963-vtab-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--n963-primary-green);
  border-radius: 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 5s linear; /* Auto-play timing */
  z-index: 2;
}

.n963-metrics-section .n963-vtab-item:hover {
  background: transparent;
  transform: translateX(4px);
}

.n963-split-section {
  background: var(--n963-bg-light);
}

.n963-split-section.n963-split-section-alt,
#n963-docs.n963-split-section {
  background: var(--n963-white);
}

.n963-network-section {
  --n963-network-parallax: calc(var(--n963-network-scroll, 0.5) - 0.5);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  min-height: 0;
  color: var(--n963-white);
  /* Light blue base (#0049dd) — deep blue fades in via ::before on scroll */
  background:
    radial-gradient(circle at 78% 22%, rgba(120, 180, 255, 0.28), transparent 28%),
    radial-gradient(circle at 18% 74%, rgba(80, 150, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #1a5cf0 0%, #0049dd 48%, #003bb3 100%);
}

/* Deep blue (current look) — opacity rises with --n963-network-scroll */
.n963-network-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--n963-network-scroll, 0);
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 255, 63, 0.2), transparent 26%),
    radial-gradient(circle at 18% 74%, rgba(39, 240, 111, 0.22), transparent 24%),
    linear-gradient(180deg, var(--n963-deep-green) 0%, var(--n963-deep-green-dark) 100%);
  filter: hue-rotate(58deg);
  will-change: opacity;
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .n963-network-section::before {
    opacity: 1;
    will-change: auto;
  }
}

.n963-network-section > .n963-container {
  position: relative;
  z-index: 1;
}

.n963-network-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(20px, 3.5vw, 48px);
  align-items: start;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: clamp(40px, 6vw, 80px) 0;
  box-sizing: border-box;
}

.n963-network-bg-slot {
  position: relative;
  grid-column: 1;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 48px) 0 clamp(28px, 4vw, 48px) 0;
  pointer-events: none;
  transform: translate3d(0, calc(var(--n963-network-parallax) * -16%), 0);
  will-change: transform;
}

.n963-network-visual {
  position: absolute;
  inset: -8%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  height: auto;
  padding: 0;
  box-sizing: border-box;
  transform: none;
  will-change: auto;
}

.n963-network-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}

.n963-network-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: clamp(28px, 4vw, 34px) 0 0;
  padding: 0;
  transform: translate3d(0, calc(var(--n963-network-parallax) * 12%), 0);
  will-change: transform;
}

.n963-network-content-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(8px, 1.5vw, 16px) 0 clamp(8px, 1.5vw, 16px) clamp(8px, 2vw, 28px);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 750ms ease, transform 750ms ease;
}

.n963-network-section.n963-in-view .n963-network-content-panel,
.n963-reveal-on-scroll.n963-in-view .n963-network-content-panel {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .n963-network-bg-slot,
  .n963-network-content {
    transform: none;
    will-change: auto;
  }

  .n963-network-visual {
    inset: 0;
  }
}

.n963-network-content .n963-eyebrow {
  color: var(--n963-white);
}

.n963-network-content h2 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--n963-white);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  opacity: 1;
}

.n963-network-content-panel > p:not(.n963-eyebrow) {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.n963-network-content-panel > .n963-capability-list {
  width: 100%;
  margin-top: 42px;
}

.n963-capability-list {
  --n963-capability-gap: clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--n963-capability-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.n963-capability-item {
  position: relative;
  min-width: 0;
  padding: 70px 0 0;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.n963-capability-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--n963-accent-yellow);
  pointer-events: none;
  transform: scaleX(var(--n963-feature-line-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.n963-capability-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--n963-capability-gap) / -2);
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
}

.n963-capability-eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.n963-capability-title {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0.12em 0.18em;
  border-radius: 14px 0 14px 0;
  color: var(--n963-white);
  background: transparent;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  transition: color 420ms ease, background 420ms ease;
}

.n963-capability-item.is-active .n963-capability-title {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-capability-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .n963-capability-list {
    --n963-capability-gap: 28px;
    grid-template-columns: 1fr;
  }

  .n963-capability-item {
    padding-top: 20px;
  }

  /* Desktop uses ::before as vertical column dividers; on stack they become
     a second horizontal rule on top of border-top/::after — remove them. */
  .n963-capability-item:not(:first-child)::before {
    content: none;
  }

  .n963-capability-eyebrow {
    margin-bottom: 14px;
  }

  .n963-network-content-panel > .n963-capability-list {
    margin-top: 28px;
  }
}

.n963-metrics-section .n963-vtab-item.n963-active .n963-vtab-progress {
  transform: scaleY(1);
}

.n963-metrics-section .n963-vtab-item h3 {
  margin-bottom: 0;
  color: var(--n963-deep-green);
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
  transition: color 0.3s ease;
}

.n963-metrics-section .n963-vtab-item.n963-active h3 {
  color: var(--n963-primary-green-dark);
}

.n963-metrics-section .n963-vtab-item p {
  grid-column: 2;
  color: var(--n963-muted-text);
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.n963-metrics-section .n963-vtab-item.n963-active p {
  max-height: 96px;
  opacity: 1;
}

.n963-metrics-section .n963-vtab-item .n963-text-link {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.n963-metrics-section .n963-vtab-item.n963-active .n963-text-link {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.n963-metrics-section .n963-vtabs-visuals {
  position: relative;
  justify-self: end;
  width: min(100%, 390px);
  aspect-ratio: 4 / 3;
  border-radius: var(--n963-radius-large);
  overflow: hidden;
  background: transparent;
}

.n963-metrics-section .n963-vtab-img-container {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.n963-metrics-section .n963-vtab-img-container.n963-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.n963-metrics-section .n963-vtab-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen; /* Keep the glow effect from dark background */
}

.n963-feature-card {
  border: 0;
  border-right: 1px solid rgba(18, 60, 59, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.n963-feature-card:hover {
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(39, 240, 111, 0.22);
}

.n963-card-icon {
  color:var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  border: 0;
}

/* NETWORK MAP (homepage) */
.n963-network-map-section {
  background: var(--n963-bg-light);
}

.n963-network-map-section > .n963-container {
  display: grid;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--n963-border-color);
  border-radius: 10px;
  background: var(--n963-white);
}

.n963-network-map-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(32px, 3.2vw, 52px);
  border-right: 1px solid var(--n963-border-color);
  text-align: left;
}

.n963-network-map-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.n963-network-map-lead {
  margin: 0;
  color: var(--n963-muted-text);
  font-size: 1.02rem;
  line-height: 1.65;
}

.n963-network-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-width: 0;
}

.n963-network-city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--n963-border-color);
  list-style: none;
}

.n963-network-city-list li {
  display: flex;
  min-width: 0;
  border-right: 1px solid var(--n963-border-color);
}

.n963-network-city-list li:last-child {
  border-right: 0;
}

.n963-network-city {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  padding: 20px 12px;
  background: none;
  color: var(--n963-dark-text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color var(--n963-transition-fast),
    background-color var(--n963-transition-fast);
}

.n963-network-city::before {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--n963-pin, var(--n963-primary-green));
  content: "";
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--n963-pin, var(--n963-primary-green)) 28%, transparent);
}

.n963-network-city[data-n963-loc="la"] { --n963-pin: #ef4444; }
.n963-network-city[data-n963-loc="tokyo"] { --n963-pin: #38bdf8; }
.n963-network-city[data-n963-loc="hk"] { --n963-pin: #a855f7; }
.n963-network-city[data-n963-loc="frankfurt"] { --n963-pin: #10b981; }

.n963-network-city:hover, .n963-network-city.is-active {
  color: var(--n963-dark-text);
  background: #fdffa4;
}

.n963-network-city:focus-visible {
  outline: 2px solid var(--n963-primary-green);
  outline-offset: -2px;
}

.n963-network-map-stats {
  display: grid;
  gap: 10px;
}

.n963-network-stat {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-small);
  background: var(--n963-white);
  box-shadow: 0 10px 24px rgba(28, 42, 34, 0.06);
}

.n963-network-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--n963-stat-ratio, 0) * 72%);
  max-width: 72%;
  background: linear-gradient(90deg, rgba(39, 240, 111, 0.22), rgba(215, 255, 63, 0.12));
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-network-stat span,
.n963-network-stat strong {
  position: relative;
  z-index: 1;
}

.n963-network-stat span {
  color: var(--n963-muted-text);
  font-size: 0.82rem;
  font-weight: 700;
}

.n963-network-stat strong {
  color: var(--n963-dark-text);
  font-family: var(--n963-font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.n963-network-map-area {
  min-width: 0;
}

.n963-network-map-stage {
  --n963-tooltip-ms: 420ms;
  padding: clamp(18px, 2.4vw, 36px);
}

.n963-network-map-canvas {
  position: relative;
  width: 100%;
  line-height: 0;
  border-radius: var(--n963-radius-medium);
  overflow: hidden;
  /* background: #f7faf8; */
  /* border: 1px solid var(--n963-border-color); */
  /* box-shadow: 0 18px 40px rgba(28, 42, 34, 0.08); */
}

.n963-network-map-bg {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.n963-network-map-arcs {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.n963-network-map-loop {
  opacity: 0;
  transition: opacity 420ms ease;
}

.n963-network-map-loop.is-active {
  opacity: 1;
}

.n963-network-map-loop-path {
  fill: none;
  stroke: var(--n963-deep-green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 6 5;
  vector-effect: non-scaling-stroke;
  animation: n963-network-loop-march 0.45s linear infinite;
}

.n963-network-map-arc-wrap {
  animation: n963-network-arc-fade 0.9s ease-out forwards;
}

.n963-network-map-arc {
  fill: none;
  stroke: var(--n963-primary-green-dark);
  stroke-width: 1.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

@keyframes n963-network-loop-march {
  to { stroke-dashoffset: -22; }
}

@keyframes n963-network-arc-fade {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

.n963-network-pin {
  position: absolute;
  top: var(--n963-pin-top, 50%);
  left: var(--n963-pin-left, 50%);
  z-index: 3;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: currentColor;
  color: var(--n963-primary-green);
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 30%, transparent);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.n963-network-pin::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.n963-network-pin.is-active {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 40%, transparent);
}

.n963-network-pin.is-active::before {
  opacity: 1;
  animation: n963-network-pin-ring 2.4s ease-in-out infinite;
}

.n963-network-pin:focus-visible {
  outline: 2px solid var(--n963-primary-green);
  outline-offset: 4px;
}

.n963-network-pin--pos-la {
  --n963-pin-top: 44%;
  --n963-pin-left: 13.6%;
  color: #ef4444;
}

.n963-network-pin--pos-frankfurt {
  --n963-pin-top: 32.2%;
  --n963-pin-left: 49.4%;
  color: #10b981;
}

.n963-network-pin--pos-tokyo {
  --n963-pin-top: 44.26%;
  --n963-pin-left: 84.8%;
  color: #38bdf8;
}

.n963-network-pin--pos-hk {
  --n963-pin-top: 51.93%;
  --n963-pin-left: 77.71%;
  color: #a855f7;
}

@keyframes n963-network-pin-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.18); opacity: 1; }
}

.n963-network-map-tooltip {
  position: absolute;
  top: calc(var(--n963-pin-top, 50%) - 72px);
  left: var(--n963-pin-left, 50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 148px;
  max-width: min(240px, 48vw);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--n963-deep-green-dark);
  color: var(--n963-white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  box-shadow: 0 16px 34px rgba(7, 52, 50, 0.28);
  transition:
    opacity var(--n963-tooltip-ms) ease,
    transform var(--n963-tooltip-ms) ease,
    visibility 0s linear var(--n963-tooltip-ms);
}

.n963-network-map-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--n963-deep-green-dark);
  transform: translateX(-50%);
}

.n963-network-map-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.n963-network-map-tooltip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 500;
}

.n963-network-map-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 14px;
  color: var(--n963-muted-text);
  font-size: 0.88rem;
}

.n963-network-map-legend p {
  margin: 0;
}

.n963-network-map-legend strong {
  color: var(--n963-dark-text);
}

.n963-network-map-legend ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.n963-network-map-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.n963-network-map-swatch {
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

.n963-network-map-swatch--backbone {
  background: var(--n963-accent-yellow);
}

.n963-network-map-swatch--path {
  background: var(--n963-primary-green);
}

.n963-network-lg-banner {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid var(--n963-border-color);
  border-radius: 0 0 3px 3px;
  color: var(--n963-dark-text);
  background: var(--n963-white);
}

.n963-network-lg-label {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 24px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--n963-border-color);
}

.n963-network-lg-icon {
  flex-shrink: 0;
  color: var(--n963-deep-green);
  font-size: 1.15rem;
  line-height: 1;
}

.n963-network-lg-label .n963-eyebrow {
  margin: 0;
  color: var(--n963-dark-text);
  font-size: calc(0.78rem + 3px);
}

.n963-network-lg-banner .n963-network-lg-copy {
  max-width: none;
  margin: 0;
  padding: 28px clamp(26px, 3.5vw, 52px);
  color: var(--n963-muted-text);
  font-size: 1rem;
  line-height: 1.65;
}

.n963-network-lg-action {
  margin-right: clamp(24px, 3vw, 42px);
  color: #073432 !important;
  white-space: nowrap;
}

.n963-network-lg-action:hover,
.n963-network-lg-action:focus-visible {
  color: #073432 !important;
}

@media (prefers-reduced-motion: reduce) {
  .n963-network-map-loop-path,
  .n963-network-pin::before {
    animation: none;
  }

  .n963-network-map-packet,
  .n963-network-map-arc-packet {
    display: none;
  }

  .n963-network-map-arc-wrap {
    animation: none;
    opacity: 0.85;
  }
}

.n963-split-section-alt#n963-docs {
  --n963-docs-scroll: 0;
  background: var(--n963-white);
  color: var(--n963-dark-text);
}

/* Docs / API — Tenable-style mission layout */
.n963-mission-section {
  background: var(--n963-white);
  color: var(--n963-dark-text);
}

.n963-mission-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 24px 32px;
  width: 100%;
  max-width: none;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.n963-mission-copy {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.n963-mission-header h2 {
  margin-bottom: 18px;
  color: var(--n963-dark-text);
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.n963-mission-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: stretch;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.n963-mission-illustration-stage {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.n963-mission-illustration-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .n963-mission-header {
    grid-template-columns: 1fr;
  }

  .n963-mission-illustration-stage {
    max-width: 520px;
    margin-inline: auto;
  }
}

.n963-mission-lead {
  max-width: none;
  margin: 0;
  color: var(--n963-muted-text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.n963-highlight {
  position: relative;
  z-index: 0;
  display: inline;
  padding: 0.05em 0.14em 0.04em;
  margin-inline: 0.04em;
  border-radius: 12px 0 12px 0;
  color: inherit;
  background: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  vertical-align: baseline;
}

/* Paint highlight behind glyphs; slight top inset keeps previous-line descenders clear */
.n963-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.18em;
  right: -0.03em;
  bottom: 0.02em;
  left: -0.03em;
  border-radius: inherit;
  background: var(--n963-accent-yellow);
  pointer-events: none;
}

.n963-highlight.n963-highlight--motion::before {
  transform: scaleX(0);
  transform-origin: left center;
}

.n963-highlight.n963-highlight--motion.is-active::before {
  animation: n963-hl-swipe 0.7s ease-out forwards;
}

@keyframes n963-hl-swipe {
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-highlight.n963-highlight--motion::before {
    transform: scaleX(1);
    animation: none !important;
  }
}

.n963-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.n963-mission-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 42px) clamp(22px, 2.8vw, 36px);
  border: 1px solid var(--n963-border-color);
  background: var(--n963-white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.n963-mission-card + .n963-mission-card {
  margin-left: -1px;
}

.n963-mission-grid.is-staggered .n963-mission-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.n963-mission-grid.is-staggered .n963-mission-card:nth-child(1) {
  z-index: 3;
  transition-delay: 0s;
}

.n963-mission-grid.is-staggered .n963-mission-card:nth-child(2) {
  z-index: 2;
  transition-delay: 0.4s;
}

.n963-mission-grid.is-staggered .n963-mission-card:nth-child(3) {
  z-index: 1;
  transition-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {
  .n963-mission-card {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.n963-mission-icon {
  display: grid;
  width: 78px;
  height: 88px;
  margin-bottom: 36px;
  place-items: center;
  color: #111;
  background: var(--n963-accent-yellow);
  /* Protect / shield badge shape */
  clip-path: polygon(
    50% 0%,
    92% 10%,
    100% 28%,
    100% 58%,
    78% 82%,
    50% 100%,
    22% 82%,
    0% 58%,
    0% 28%,
    8% 10%
  );
}

.n963-mission-icon svg {
  display: block;
  width: 55px;
  height: 55px;
  margin-top: -8px;
  overflow: visible;
}

.n963-mi-provision__rack,
.n963-mi-provision__slot,
.n963-mi-telemetry__axis,
.n963-mi-telemetry__line,
.n963-mi-scrub__shield,
.n963-mi-scrub__check,
.n963-mi-scrub__scan {
  fill: none;
  stroke: #111;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-mi-provision__rack {
  fill: rgba(17, 17, 17, 0.05);
}

.n963-mi-provision__slot {
  fill: rgba(17, 17, 17, 0.08);
  stroke-width: 1.25;
  transform-box: fill-box;
  transform-origin: left center;
  animation: n963MiProvisionSlot 2.4s ease-in-out infinite;
}

.n963-mi-provision__slot--mid {
  animation-delay: -0.4s;
}

.n963-mi-provision__slot--low {
  animation-delay: -0.8s;
}

.n963-mi-provision__led {
  fill: #111;
  transform-box: fill-box;
  transform-origin: center;
  animation: n963MiProvisionLed 1.4s ease-in-out infinite;
}

.n963-mi-provision__led--b {
  animation-delay: -0.35s;
}

.n963-mi-provision__led--c {
  animation-delay: -0.7s;
}

.n963-mi-provision__pulse {
  fill: none;
  stroke: #111;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  animation: n963MiProvisionPulse 1.8s linear infinite;
}

.n963-mi-telemetry__axis {
  stroke-width: 1.45;
}

.n963-mi-telemetry__line {
  stroke-width: 1.75;
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
  animation: n963MiTelemetryLine 2.6s ease-in-out infinite;
}

.n963-mi-telemetry__dot {
  fill: #111;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: n963MiTelemetryDot 2.6s ease-in-out infinite;
}

.n963-mi-telemetry__dot--b {
  animation-delay: 0.12s;
}

.n963-mi-telemetry__dot--c {
  animation-delay: 0.24s;
}

.n963-mi-scrub__shield {
  fill: rgba(17, 17, 17, 0.05);
}

.n963-mi-scrub__scan {
  stroke-width: 1.4;
  animation: n963MiScrubScan 2.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.n963-mi-scrub__check {
  stroke-width: 1.85;
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  animation: n963MiScrubCheck 2.2s ease-in-out infinite;
}

@keyframes n963MiProvisionSlot {
  0%, 100% { transform: scaleX(0.78); opacity: 0.72; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes n963MiProvisionLed {
  0%, 100% { opacity: 0.32; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes n963MiProvisionPulse {
  to { stroke-dashoffset: -13; }
}

@keyframes n963MiTelemetryLine {
  0% { stroke-dashoffset: 52; opacity: 0.3; }
  35%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -52; opacity: 0.3; }
}

@keyframes n963MiTelemetryDot {
  0%, 20% { opacity: 0; transform: scale(0.45); }
  35%, 70% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.45); }
}

@keyframes n963MiScrubScan {
  0%, 100% { transform: translateY(-7px); opacity: 0.25; }
  50% { transform: translateY(7px); opacity: 1; }
}

@keyframes n963MiScrubCheck {
  0%, 18% { stroke-dashoffset: 22; opacity: 0.2; }
  40%, 68% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .n963-mi-provision__slot,
  .n963-mi-provision__led,
  .n963-mi-provision__pulse,
  .n963-mi-telemetry__line,
  .n963-mi-telemetry__dot,
  .n963-mi-scrub__scan,
  .n963-mi-scrub__check {
    animation: none !important;
  }

  .n963-mi-provision__slot {
    transform: none;
    opacity: 1;
  }

  .n963-mi-provision__led,
  .n963-mi-telemetry__dot {
    opacity: 1;
    transform: none;
  }

  .n963-mi-provision__pulse {
    stroke-dasharray: none;
  }

  .n963-mi-telemetry__line,
  .n963-mi-scrub__check {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  .n963-mi-scrub__scan {
    opacity: 0.7;
    transform: none;
  }
}

.n963-mission-card h3 {
  margin: 0 0 14px;
  color: var(--n963-dark-text);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.n963-mission-card p {
  margin: 0;
  color: var(--n963-muted-text);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .n963-mission-grid {
    grid-template-columns: 1fr;
  }

  .n963-mission-card + .n963-mission-card {
    margin-left: 0;
    margin-top: -1px;
  }
}

.n963-split-section-alt#n963-docs .n963-split-content,
.n963-split-section-alt#n963-docs .n963-split-image {
  opacity: 1;
  transform: none;
}

.n963-split-section-alt#n963-docs .n963-split-content h2,
.n963-split-section-alt#n963-docs .n963-check-list li {
  color: var(--n963-dark-text);
}

.n963-split-section-alt .n963-split-content h2,
.n963-split-section-alt .n963-check-list li {
  color: var(--n963-dark-text);
}

.n963-split-section-alt#n963-docs .n963-split-content h2 {
  /* dark gray #4a4f4e -> deep green #0b4543 */
  color: rgb(
    calc(74 - 63 * var(--n963-docs-scroll, 0)),
    calc(79 - 10 * var(--n963-docs-scroll, 0)),
    calc(78 - 11 * var(--n963-docs-scroll, 0))
  );
  opacity: calc(0.3 + 0.7 * var(--n963-docs-scroll, 0));
  will-change: color, opacity;
}

.n963-split-section-alt .n963-split-content p:not(.n963-eyebrow) {
  color: var(--n963-muted-text);
}

.n963-split-image-network {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  width: 100%;
}

.n963-split-illustration-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 460px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.n963-portal-panel {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  background: #effff4;
  border: 10px solid var(--n963-accent-mint);
  border-radius: 6px;
  box-shadow: 0 22px 40px rgba(7, 52, 50, 0.12);
}

.n963-portal-sidebar {
  min-height: 260px;
  background:
    repeating-linear-gradient(0deg, rgba(18, 60, 59, 0.14) 0 8px, transparent 8px 28px),
    rgba(18, 60, 59, 0.06);
  border-radius: 8px;
}

.n963-portal-table {
  padding-top: 12px;
}

.n963-portal-row {
  height: 26px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(18, 60, 59, 0.18), rgba(18, 60, 59, 0.04));
}

.n963-green-banner {
  --n963-banner-scroll: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(39, 240, 111, 0.22), transparent 28%),
    var(--n963-deep-green);
}

.n963-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.n963-banner-gradient-motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
  mix-blend-mode: screen;
}

.n963-network-cta-banner .n963-banner-inner,
.n963-green-banner .n963-banner-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  color: var(--n963-white);
}

.n963-network-cta-banner .n963-eyebrow,
.n963-green-banner .n963-eyebrow {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.n963-banner-main {
  min-width: 0;
  max-width: 920px;
}

.n963-network-cta-banner h2,
.n963-green-banner h2 {
  max-width: none;
  margin-bottom: 18px;
  color: #fff;
  opacity: calc(0.3 + 0.7 * var(--n963-banner-scroll, 0));
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  will-change: opacity;
}

.n963-banner-title-line {
  display: block;
}

@media (min-width: 1201px) {
  .n963-banner-title-line {
    white-space: nowrap;
  }
}

.n963-network-cta-banner p,
.n963-green-banner p,
.n963-banner-desc {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
}

.n963-banner-line-arrow {
  display: block;
  width: min(100%, 420px);
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(215, 255, 63, 0.95));
  position: relative;
  overflow: visible;
  transform: scaleX(var(--n963-banner-scroll, 0));
  transform-origin: left center;
  will-change: transform;
}

.n963-banner-line-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--n963-accent-yellow);
  border-right: 2px solid var(--n963-accent-yellow);
  opacity: var(--n963-banner-scroll, 0);
  transform: translateY(-50%) rotate(45deg);
  will-change: opacity;
}

.n963-banner-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(196px, 24vw, 294px);
}

.n963-banner-call-btn {
  position: relative;
  display: inline-grid;
  width: clamp(168px, 19.6vw, 252px);
  height: clamp(168px, 19.6vw, 252px);
  place-items: center;
  padding: clamp(20px, 2.1vw, 30px);
  color: var(--n963-deep-green-dark) !important;
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  box-shadow: 0 22px 48px rgba(39, 240, 111, 0.3);
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.02rem, 1.3vw, 1.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  animation: n963BannerCallBounce 3.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transform-origin: center;
  will-change: transform;
  z-index: 1;
}

.n963-banner-call-btn-label {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 8.8em;
}

.n963-banner-call-btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--n963-deep-green-dark);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(7, 52, 50, 0.14);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transform: rotate(-90deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.n963-banner-call-btn-ring {
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(39, 240, 111, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: n963BannerCallRing 1.8s ease-out infinite;
  pointer-events: none;
}

.n963-banner-call-btn-ring--delay {
  animation-delay: 0.55s;
}

.n963-banner-call-btn:hover {
  color: var(--n963-deep-green-dark);
  background: var(--n963-primary-green);
}

@keyframes n963BannerCallBounce {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  32% {
    transform: translate3d(0, -8px, 0) scale(1.018);
  }

  62% {
    transform: translate3d(0, 3px, 0) scale(0.994);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes n963BannerCallRing {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }

  70% {
    opacity: 0;
    transform: scale(1.28);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-banner-call-btn,
  .n963-banner-call-btn-ring {
    animation: none;
  }
}

.n963-banner-text {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.n963-banner-text p {
  max-width: 520px;
}

.n963-banner-photo {
  min-height: 132px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 42%, #ffc16f 0 8px, transparent 9px),
    radial-gradient(circle at 40% 34%, #f45ca8 0 8px, transparent 9px),
    radial-gradient(circle at 55% 48%, #27f06f 0 8px, transparent 9px),
    radial-gradient(circle at 72% 36%, #ffc16f 0 8px, transparent 9px),
    linear-gradient(135deg, #172017, #40635f);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(7, 52, 50, 0.16);
}

.n963-banner-photo span {
  display: block;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0 26%, transparent 26%);
}

.n963-contact-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: transparent;
  padding: 0;
}

.n963-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.n963-contact-form-card,
.n963-contact-info-card {
  display: flex;
  min-width: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.n963-contact-info-card {
  position: relative;
  top: auto;
  color: var(--n963-dark-text);
  background: var(--n963-bg-light);
}

.n963-contact-form-card {
  color: var(--n963-dark-text);
  background: var(--n963-white);
}

.n963-contact-info-inner,
.n963-contact-form-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(56px, 8vw, 110px) clamp(28px, 6vw, 96px);
}

.n963-contact-info-inner {
  margin-left: 0;
}

.n963-contact-form-inner {
  margin-right: 0;
}

.n963-contact-info-card h3 {
  max-width: 12ch;
  margin-bottom: 18px;
  color: var(--n963-dark-text);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.n963-contact-info-card h3 .n963-highlight {
  display: inline-block;
  color: var(--n963-deep-green-dark);
}

.n963-contact-info-card > .n963-contact-info-inner > p:not(.n963-eyebrow) {
  max-width: 42ch;
  margin: 0;
  color: var(--n963-muted-text);
  line-height: 1.65;
}

.n963-contact-info-card .n963-contact-detail {
  border-top-color: var(--n963-border-color);
}

.n963-contact-info-card .n963-contact-detail span {
  color: var(--n963-muted-text);
}

.n963-contact-info-card .n963-contact-detail a,
.n963-contact-info-card .n963-contact-detail address {
  color: var(--n963-dark-text);
}

.n963-contact-form-card .n963-contact-form {
  margin-top: 0;
}

.n963-site-footer {
    background: #061435;
}

/* SECTION: REUSABLE PRODUCT PAGE */
.n963-product-page {
  background: var(--n963-white);
}

/*
  Product typography scope:
  Default product type scale lives under .n963-product-page. Page-only overrides use that page id, e.g. #n963-anti-ddos.
*/

.n963-product-hero {
  --n963-product-hero-hue: 58;
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 760px;
  padding: 150px 0 92px;
  border-radius: 0 0 40px 40px;
  color: var(--n963-white);
  background: var(--n963-deep-green-dark);
}

/* Scroll-driven hue shift lives on the BG layer only (not text / CTAs). */
.n963-product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(215, 255, 63, 0.2), transparent 26%),
    radial-gradient(circle at 18% 74%, rgba(39, 240, 111, 0.22), transparent 24%),
    linear-gradient(180deg, var(--n963-deep-green) 0%, var(--n963-deep-green-dark) 100%);
  filter: hue-rotate(calc(var(--n963-product-hero-hue) * 1deg));
  will-change: filter;
  transform: translateZ(0);
}

.n963-product-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

@media (prefers-reduced-motion: reduce) {
  .n963-product-hero::before {
    will-change: auto;
    filter: none;
  }
}

.n963-product-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.n963-product-hero-layout--ddos {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.52fr);
  gap: clamp(8px, 1.4vw, 20px);
}

.n963-product-page .n963-product-hero-intro {
  max-width: 820px;
}

.n963-product-page .n963-product-hero-layout--ddos .n963-product-hero-intro {
  max-width: none;
}

.n963-product-page .n963-product-hero .n963-eyebrow,
.n963-product-page .n963-product-section-dark .n963-eyebrow,
.n963-product-page .n963-product-cta .n963-eyebrow {
  color: var(--n963-accent-yellow);
}

.n963-product-page .n963-product-hero-intro h1, 
.n963-product-page .n963-product-section-heading h2, 
.n963-product-page .n963-product-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.n963-product-page .n963-product-hero-intro h1 {
  color: var(--n963-white);
}

.n963-product-page .n963-product-hero-intro p:not(.n963-eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

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

.n963-product-page .n963-btn-primary {
  --n963-btn-sweep: var(--n963-primary-green);
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-product-page .n963-btn-primary:hover,
.n963-product-page .n963-btn-primary:focus-visible {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
}

.n963-product-hero-visual {
  position: relative;
  min-height: 480px;
  overflow: visible;
}

.n963-core-loader-card {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: 42px;
  place-items: center;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 34px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.n963-core-loader-card::before {
  display: none;
  content: none;
}

.n963-core-loader {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(378px, 42.6vw, 568px);
  aspect-ratio: 1;
  margin-bottom: 0;
  place-items: center;
}

.n963-core-loader-glow,
.n963-core-loader-ring,
.n963-core-loader-orbit,
.n963-core-loader-center {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.n963-core-loader-glow {
  inset: 0;
  background: rgba(39, 240, 111, 0.18);
  filter: blur(28px);
  animation: n963CorePulse 2.8s ease-in-out infinite;
}

.n963-core-loader-ring--outer {
  inset: 0;
  border: 1px dashed rgba(39, 240, 111, 0.48);
  animation: n963CoreSpin 10s linear infinite;
}

.n963-core-loader-ring--main {
  inset: 8%;
  border: 3px solid transparent;
  border-top-color: var(--n963-primary-green);
  box-shadow: 0 -4px 12px rgba(39, 240, 111, 0.38);
  animation: n963CoreSpin 2s linear infinite;
}

.n963-core-loader-ring--reverse {
  inset: 24%;
  border: 3px solid transparent;
  border-bottom-color: var(--n963-accent-yellow);
  box-shadow: 0 4px 12px rgba(215, 255, 63, 0.35);
  animation: n963CoreSpinReverse 3s linear infinite;
}

.n963-core-loader-ring--inner {
  inset: 40%;
  border: 1px solid transparent;
  border-left-color: rgba(255, 255, 255, 0.58);
  animation: n963CoreSpinEase 1.2s ease-in-out infinite;
}

.n963-core-loader-orbit {
  inset: 0;
  animation: n963CoreSpin 4s linear infinite;
}

.n963-core-loader-orbit i {
  position: absolute;
  top: -2px;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(215, 255, 63, 0.9);
  transform: translateX(-50%);
}

.n963-core-loader-center {
  width: 18px;
  height: 18px;
  background: var(--n963-primary-green);
  box-shadow: 0 0 18px rgba(39, 240, 111, 0.75);
  animation: n963CorePulse 1.6s ease-in-out infinite;
}

.n963-core-loader-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 320px;
}

.n963-core-loader-kicker,
.n963-core-loader-caption small {
  color: var(--n963-accent-yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.n963-core-loader-caption strong {
  color: var(--n963-white);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.n963-core-loader-caption small {
  min-height: 1em;
  color: rgba(185, 255, 213, 0.82);
  animation: n963CoreTextIn 500ms ease both;
}

@keyframes n963CoreSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes n963CoreSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes n963CoreSpinEase {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(210deg);
  }
}

@keyframes n963CorePulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes n963CoreLoaderAura {
  0% {
    transform: translate3d(-4%, 2%, 0) scale(1);
  }

  100% {
    transform: translate3d(5%, -4%, 0) scale(1.08);
  }
}

@keyframes n963CoreTextIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-core-loader-card::before,
  .n963-core-loader-glow,
  .n963-core-loader-ring,
  .n963-core-loader-orbit,
  .n963-core-loader-center,
  .n963-core-loader-caption small {
    animation: none;
  }
}

/* Global IP Transit hero: blend cyan into ring lines (VPN-style transmission blue) */
#n963-global-ip-transit .n963-core-loader-glow {
  background:
    radial-gradient(circle at 35% 40%, rgba(103, 216, 255, 0.22), transparent 58%),
    rgba(39, 240, 111, 0.16);
}

#n963-global-ip-transit .n963-core-loader-ring--outer {
  border-color: rgba(103, 216, 255, 0.52);
  box-shadow: 0 0 18px rgba(103, 216, 255, 0.12);
}

#n963-global-ip-transit .n963-core-loader-ring--main {
  border-top-color: var(--n963-primary-green);
  border-right-color: rgba(103, 216, 255, 0.88);
  box-shadow:
    0 -4px 12px rgba(39, 240, 111, 0.32),
    4px 0 14px rgba(103, 216, 255, 0.28);
}

#n963-global-ip-transit .n963-core-loader-ring--reverse {
  border-bottom-color: #67d8ff;
  box-shadow: 0 4px 14px rgba(103, 216, 255, 0.42);
}

#n963-global-ip-transit .n963-core-loader-ring--inner {
  border-left-color: rgba(103, 216, 255, 0.72);
  border-top-color: rgba(185, 255, 213, 0.28);
}

#n963-global-ip-transit .n963-core-loader-orbit i {
  background: #67d8ff;
  box-shadow: 0 0 14px rgba(103, 216, 255, 0.92);
}

/* -------------------------------------------------------------------------- */
/* Global IP Transit hero loader V2 — dual-deck + bidirectional flow         */
/* -------------------------------------------------------------------------- */
/* Force-hide V1: class display:grid otherwise overrides the [hidden] attribute */
#n963-global-ip-transit .n963-core-loader-card--v1-hidden,
#n963-global-ip-transit .n963-core-loader-card[hidden] {
  display: none !important;
}

/*
  Transit V2 dual-deck — Edge Handoff ↔ IX/Backbone with bidirectional transit.
*/
#n963-global-ip-transit .n963-product-hero-layout {
  align-items: center;
}

#n963-global-ip-transit .n963-product-hero-visual {
  position: relative;
  min-height: 520px;
  height: clamp(520px, 52vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#n963-global-ip-transit .n963-core-loader-card--v2 {
  position: relative;
  width: min(100%, 460px);
  min-height: 0;
  height: 100%;
  max-height: 600px;
  padding: 0;
  margin: 0;
  overflow: visible;
}

#n963-global-ip-transit .n963-core-loader-v2 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: visible;
  /* Folded former -75px nudge into a single offset */
  top: -50px;
  animation: n963CoreLoaderV2Float 6.4s ease-in-out infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__aura,
#n963-global-ip-transit .n963-core-loader-v2__floor {
  position: absolute;
  pointer-events: none;
}

#n963-global-ip-transit .n963-core-loader-v2__aura {
  inset: 4% 8% 10%;
  background:
    radial-gradient(circle at 42% 28%, rgba(103, 216, 255, 0.22), transparent 52%),
    radial-gradient(circle at 58% 72%, rgba(39, 240, 111, 0.16), transparent 58%);
  filter: blur(34px);
  animation: n963CoreLoaderV2Aura 3.8s ease-in-out infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__floor {
  left: 50%;
  bottom: 4%;
  width: 52%;
  height: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.42), transparent 72%);
  transform: translateX(-50%);
  filter: blur(6px);
  animation: n963CoreLoaderV2Floor 6.4s ease-in-out infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__stage {
  position: absolute;
  inset: 0;
  overflow: visible;
}

/* Semantic tags */
#n963-global-ip-transit .n963-core-loader-v2__tag {
  display: none;
}

/* Decks */
#n963-global-ip-transit .n963-core-loader-v2__deck {
  position: absolute;
  left: 50%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  perspective: 980px;
  perspective-origin: 50% 42%;
}

#n963-global-ip-transit .n963-core-loader-v2__deck--upper {
  top: 4%;
  width: 65%;
  z-index: 2;
  opacity: 1;
  filter: saturate(1.05);
}


#n963-global-ip-transit .n963-core-loader-v2__deck--base {
  bottom: -26%;
  width: 99%;
  z-index: 3;
}

#n963-global-ip-transit .n963-core-loader-v2__rig {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(62deg) rotateZ(-16deg);
}

#n963-global-ip-transit .n963-core-loader-v2__glow,
#n963-global-ip-transit .n963-core-loader-v2__ring,
#n963-global-ip-transit .n963-core-loader-v2__orbit,
#n963-global-ip-transit .n963-core-loader-v2__core {
  position: absolute;
  display: block;
  border-radius: 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

#n963-global-ip-transit .n963-core-loader-v2__glow {
  inset: 6%;
  background:
    radial-gradient(circle at 35% 40%, rgba(103, 216, 255, 0.2), transparent 58%),
    rgba(39, 240, 111, 0.12);
  filter: blur(22px);
  transform: translateZ(8px);
  animation: n963CoreLoaderV2Pulse 3.2s ease-in-out infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__glow--soft {
  inset: 10%;
  background:
    radial-gradient(circle at 40% 38%, rgba(103, 216, 255, 0.16), transparent 60%),
    rgba(39, 240, 111, 0.08);
  opacity: 0.85;
}

/* Quiet outer + bold main arc only */
#n963-global-ip-transit .n963-core-loader-v2__ring--outer {
  inset: 0;
  border: 2px dashed rgb(0 190 255 / 32%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  animation: n963CoreLoaderV2SpinOuter 18s linear infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__ring--main {
  inset: 12%;
  border: 8px solid transparent;
  border-top-color: var(--n963-primary-green);
  border-right-color: rgba(103, 216, 255, 0.75);
  box-shadow:
    0 -6px 18px rgba(39, 240, 111, 0.42),
    4px 0 14px rgba(103, 216, 255, 0.22);
  animation: n963CoreLoaderV2SpinMain 2.6s linear infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__deck--upper .n963-core-loader-v2__ring--outer {
  border-color: rgba(103, 216, 255, 0.28);
  animation-duration: 22s;
}

#n963-global-ip-transit .n963-core-loader-v2__deck--upper .n963-core-loader-v2__ring--main {
  inset: 16%;
  border-width: 7px;
  animation-duration: 3.6s;
  animation-direction: reverse;
}

#n963-global-ip-transit .n963-core-loader-v2__orbit {
  inset: 0;
}

#n963-global-ip-transit .n963-core-loader-v2__orbit--outer {
  animation: n963CoreLoaderV2SpinOuter 7.5s linear infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__deck--upper .n963-core-loader-v2__orbit--outer {
  animation-duration: 10s;
  animation-direction: reverse;
}

#n963-global-ip-transit .n963-core-loader-v2__orbit i {
  position: absolute;
  top: -2px;
  left: 50%;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d8ff;
  box-shadow: 0 0 12px rgba(103, 216, 255, 0.9);
  transform: translateX(-50%) translateZ(6px);
}

#n963-global-ip-transit .n963-core-loader-v2__core {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  background: radial-gradient(circle at 35% 30%, #b9ffd5, var(--n963-primary-green) 55%, #0a6b48);
  box-shadow:
    0 0 18px rgba(39, 240, 111, 0.75),
    0 8px 14px rgba(0, 0, 0, 0.22);
  animation: n963CoreLoaderV2Core 2.2s ease-in-out infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__core--soft {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: radial-gradient(circle at 35% 30%, #dff8ff, #67d8ff 55%, #1a7a8c);
  box-shadow: 0 0 16px rgba(103, 216, 255, 0.8);
  animation-name: n963CoreLoaderV2CoreSoft;
}

/* Transmission frustum */
#n963-global-ip-transit .n963-core-loader-v2__links {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 22%;
  bottom: 12%;
  z-index: 4;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: none;
}

#n963-global-ip-transit .n963-core-loader-v2__track {
  fill: none;
  stroke: rgba(103, 216, 255, 0.16);
  stroke-width: 1.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

#n963-global-ip-transit .n963-core-loader-v2__flow {
  fill: none;
  stroke: url("#n963-transit-v2-link-gradient");
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 8 16;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(103, 216, 255, 0.4));
  animation: n963VpnLinkFlow 1.5s linear infinite;
}

#n963-global-ip-transit .n963-core-loader-v2__packet {
  opacity: 0;
}

#n963-global-ip-transit .n963-core-loader-v2__packet--cyan {
  fill: #67d8ff;
  filter: drop-shadow(0 0 8px rgba(103, 216, 255, 0.9));
}

#n963-global-ip-transit .n963-core-loader-v2__packet--green {
  fill: var(--n963-primary-green);
  filter: drop-shadow(0 0 8px rgba(39, 240, 111, 0.85));
}

@keyframes n963CoreLoaderV2SpinOuter {
  from { transform: translateZ(42px) rotate(0deg); }
  to   { transform: translateZ(42px) rotate(360deg); }
}

@keyframes n963CoreLoaderV2SpinMain {
  from { transform: translateZ(28px) rotate(0deg); }
  to   { transform: translateZ(28px) rotate(360deg); }
}

@keyframes n963CoreLoaderV2SpinReverse {
  from { transform: translateZ(16px) rotate(0deg); }
  to   { transform: translateZ(16px) rotate(-360deg); }
}

@keyframes n963CoreLoaderV2SpinEase {
  0%,
  100% { transform: translateZ(6px) rotate(0deg); }
  50%  { transform: translateZ(6px) rotate(210deg); }
}

@keyframes n963CoreLoaderV2Pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateZ(8px) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateZ(8px) scale(1.08);
  }
}

@keyframes n963CoreLoaderV2Core {
  0%,
  100% {
    opacity: 0.85;
    transform: translateZ(52px) scale(0.94);
  }
  50% {
    opacity: 1;
    transform: translateZ(52px) scale(1.12);
  }
}

@keyframes n963CoreLoaderV2CoreSoft {
  0%,
  100% {
    opacity: 0.8;
    transform: translateZ(36px) scale(0.94);
  }
  50% {
    opacity: 1;
    transform: translateZ(36px) scale(1.14);
  }
}

@keyframes n963CoreLoaderV2Float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50%  { transform: translate3d(0, -5px, 0); }
}

@keyframes n963CoreLoaderV2Floor {
  0%,
  100% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.65;
    transform: translateX(-50%) scaleX(0.94);
  }
}

@keyframes n963CoreLoaderV2Aura {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  #n963-global-ip-transit .n963-core-loader-v2,
  #n963-global-ip-transit .n963-core-loader-v2__aura,
  #n963-global-ip-transit .n963-core-loader-v2__floor,
  #n963-global-ip-transit .n963-core-loader-v2__glow,
  #n963-global-ip-transit .n963-core-loader-v2__ring,
  #n963-global-ip-transit .n963-core-loader-v2__orbit,
  #n963-global-ip-transit .n963-core-loader-v2__core,
  #n963-global-ip-transit .n963-core-loader-v2__flow {
    animation: none;
  }

  #n963-global-ip-transit .n963-core-loader-v2__packet {
    display: none;
  }

  #n963-global-ip-transit .n963-core-loader-v2__ring--outer {
    transform: translateZ(42px);
  }

  #n963-global-ip-transit .n963-core-loader-v2__ring--main {
    transform: translateZ(28px);
  }

  #n963-global-ip-transit .n963-core-loader-v2__ring--reverse {
    transform: translateZ(16px);
  }

  #n963-global-ip-transit .n963-core-loader-v2__ring--inner {
    transform: translateZ(6px);
  }

  #n963-global-ip-transit .n963-core-loader-v2__core {
    transform: translateZ(52px);
  }

  #n963-global-ip-transit .n963-core-loader-v2__core--soft {
    transform: translateZ(36px);
  }
}

@media (max-width: 900px) {
  #n963-global-ip-transit .n963-product-hero-visual {
    height: clamp(440px, 62vw, 520px);
    min-height: 440px;
  }

  #n963-global-ip-transit .n963-core-loader-v2 {
    min-height: 440px;
    top: -24px;
  }

  #n963-global-ip-transit .n963-core-loader-v2__rig {
    transform: rotateX(56deg) rotateZ(-12deg);
  }

  #n963-global-ip-transit .n963-core-loader-v2__deck--upper {
    width: 48%;
  }

  #n963-global-ip-transit .n963-core-loader-v2__links {
    top: 20%;
    bottom: 11%;
  }
}

@media (max-width: 640px) {
  #n963-global-ip-transit .n963-product-hero-visual {
    height: 400px;
    min-height: 400px;
  }

  #n963-global-ip-transit .n963-core-loader-card--v2 {
    width: min(100%, 340px);
  }

  #n963-global-ip-transit .n963-core-loader-v2 {
    min-height: 400px;
    top: -12px;
  }

  #n963-global-ip-transit .n963-core-loader-v2__rig {
    transform: rotateX(52deg) rotateZ(-10deg);
  }

  #n963-global-ip-transit .n963-core-loader-v2__deck--upper {
    width: 50%;
    top: 2%;
  }

  #n963-global-ip-transit .n963-core-loader-v2__deck--base {
    bottom: -18%;
    width: 94%;
  }

  #n963-global-ip-transit .n963-core-loader-v2__links {
    top: 18%;
    bottom: 10%;
    left: 22%;
    right: 22%;
  }

  #n963-global-ip-transit .n963-core-loader-v2__floor {
    bottom: 3%;
  }
}


/* Anti-DDoS hero shield: blend cyan into scrub / track / bolts */
#n963-anti-ddos .n963-protect-loader-glow {
  background:
    radial-gradient(circle at 40% 42%, rgba(103, 216, 255, 0.24), transparent 56%),
    rgba(39, 240, 111, 0.14);
}

#n963-anti-ddos .n963-protect-shield-outer {
  stroke: rgba(103, 216, 255, 0.48);
}

#n963-anti-ddos .n963-protect-shield-track {
  stroke: rgba(103, 216, 255, 0.42);
}

#n963-anti-ddos .n963-protect-shield-scrub {
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.4)) drop-shadow(0 0 3px rgba(103, 216, 255, 0.35));
}

#n963-anti-ddos .n963-protect-shield-scrub--reverse {
  stroke: #67d8ff;
  filter: drop-shadow(0 0 5px rgba(103, 216, 255, 0.55));
}

#n963-anti-ddos .n963-protect-heartbeat--b {
  stroke: #67d8ff;
}

#n963-anti-ddos .n963-protect-bolt--warm {
  color: #67d8ff;
}

#n963-anti-ddos .n963-protect-bolt {
  animation: n963ProtectBoltFlyFast 2s cubic-bezier(0.33, 0.05, 0.2, 1) infinite;
  animation-delay: var(--d, 0s);
}

#n963-anti-ddos .n963-protect-bolt i {
  transform: scale(var(--bolt-scale, 1));
  transform-origin: center;
}

#n963-anti-ddos .n963-protect-shield-core {
  fill: #67d8ff;
  filter: drop-shadow(0 0 8px rgba(103, 216, 255, 0.75));
}

/* Managed Colocation 3D wireframe rack */
#n963-managed-colocation .n963-colo-rack-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(620px, 52vw, 760px);
  aspect-ratio: 760 / 640;
  transform: translate(-50%, -42%);
  isolation: isolate;
}

#n963-managed-colocation .n963-colo-rack-aura,
#n963-managed-colocation .n963-colo-rack-ring {
  position: absolute;
  z-index: -1;
  top: 49%;
  left: 54%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#n963-managed-colocation .n963-colo-rack-aura {
  width: 66%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 38% 42%, rgba(103, 216, 255, 0.22), transparent 58%),
    rgba(39, 240, 111, 0.13);
  filter: blur(38px);
  animation: n963ColoAura 3.6s ease-in-out infinite;
}

#n963-managed-colocation .n963-colo-rack-ring {
  aspect-ratio: 1;
  border: 1px solid rgba(103, 216, 255, 0.28);
}

#n963-managed-colocation .n963-colo-rack-ring--outer {
  width: 74%;
  border-style: dashed;
  animation: n963CoreSpin 18s linear infinite;
}

#n963-managed-colocation .n963-colo-rack-ring--inner {
  width: 51%;
  border-color: rgba(103, 216, 255, 0.3);
  box-shadow: inset 0 0 36px rgba(103, 216, 255, 0.08);
  animation: n963ColoRingPulse 3s ease-in-out infinite;
}

#n963-managed-colocation .n963-colo-rack {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.22));
  transform: scaleY(1.15);
  transform-origin: center;
  animation: n963ColoRackFloat 5s ease-in-out infinite;
}

#n963-managed-colocation .n963-colo-rack-unit--secondary {
  opacity: 1;
}

#n963-managed-colocation .n963-colo-rack-shadow ellipse {
  fill: rgba(0, 0, 0, 0.2);
  filter: blur(11px);
  transform-origin: center;
  animation: n963ColoShadow 5s ease-in-out infinite;
}

#n963-managed-colocation .n963-colo-rack-face {
  stroke: none;
}

#n963-managed-colocation .n963-colo-rack-face--front {
  fill: rgba(4, 60, 50, 0.42);
}

#n963-managed-colocation .n963-colo-rack-face--side {
  fill: url("#n963-colo-glass");
}

#n963-managed-colocation .n963-colo-rack-unit--primary .n963-colo-rack-face--front {
  fill: #083b37;
}

#n963-managed-colocation .n963-colo-rack-unit--primary .n963-colo-rack-face--side {
  fill: #0a433b;
}

#n963-managed-colocation .n963-colo-rack-unit--secondary .n963-colo-rack-face--front {
  fill: #07332f;
}

#n963-managed-colocation .n963-colo-rack-unit--secondary .n963-colo-rack-face--side {
  fill: #083a34;
}

#n963-managed-colocation .n963-colo-rack-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#n963-managed-colocation .n963-colo-rack-line--outer {
  stroke: url("#n963-colo-edge");
  stroke-width: 2.4;
  stroke-dasharray: 2300;
  stroke-dashoffset: 2300;
  filter: url("#n963-colo-glow");
  animation: n963ColoDraw 2.35s 0.1s ease-out forwards;
}

#n963-managed-colocation .n963-colo-rack-line--main {
  stroke: url("#n963-colo-edge");
  stroke-width: 2.5;
  stroke-dasharray: 1050;
  stroke-dashoffset: 1050;
  filter: url("#n963-colo-glow");
  animation: n963ColoDraw 1.8s 0.55s ease-out forwards;
}

#n963-managed-colocation .n963-colo-rack-line--detail {
  stroke: rgba(103, 216, 255, 0.58);
  stroke-width: 1.4;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: n963ColoDraw 1.7s 0.8s ease-out forwards;
}

#n963-managed-colocation .n963-colo-server {
  fill: rgba(39, 240, 111, 0.035);
  stroke: rgba(215, 255, 63, 0.82);
  stroke-width: 1.8;
  stroke-linejoin: round;
  opacity: 0;
  animation: n963ColoServerIn 650ms ease-out forwards;
}

#n963-managed-colocation .n963-colo-server--1 {
  animation-delay: 1s;
}

#n963-managed-colocation .n963-colo-server--2 {
  animation-delay: 1.18s;
}

#n963-managed-colocation .n963-colo-server--3 {
  animation-delay: 1.36s;
}

#n963-managed-colocation .n963-colo-server--4 {
  animation-delay: 1.54s;
}

#n963-managed-colocation .n963-colo-server--5 {
  animation-delay: 1.72s;
}

#n963-managed-colocation .n963-colo-server--6 {
  animation-delay: 1.9s;
}

#n963-managed-colocation .n963-colo-server--7 {
  animation-delay: 2.08s;
}

#n963-managed-colocation .n963-colo-server-slot {
  fill: none;
  stroke: rgba(185, 255, 213, 0.55);
  stroke-width: 1.2;
}

#n963-managed-colocation .n963-colo-server circle {
  fill: var(--n963-primary-green);
  stroke: none;
  filter: url("#n963-colo-glow");
  animation: n963ColoLed 1.9s ease-in-out infinite;
}

#n963-managed-colocation .n963-colo-server circle:nth-of-type(2) {
  fill: #67d8ff;
  animation-delay: 350ms;
}

#n963-managed-colocation .n963-colo-server circle:nth-of-type(3) {
  fill: var(--n963-accent-yellow);
  animation-delay: 700ms;
}

#n963-managed-colocation .n963-colo-rack-side-detail {
  fill: none;
  stroke: rgba(185, 255, 213, 0.32);
  stroke-width: 1.3;
  stroke-linecap: round;
}

#n963-managed-colocation .n963-colo-rack-side-detail circle {
  fill: var(--n963-primary-green);
  stroke: none;
  filter: url("#n963-colo-glow");
}

#n963-managed-colocation .n963-colo-rack-circuit {
  stroke: rgba(103, 216, 255, 0.78);
  stroke-width: 1.8;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  filter: url("#n963-colo-glow");
  animation: n963ColoCircuit 2.2s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

#n963-managed-colocation .n963-colo-rack-side-detail circle:nth-of-type(even) {
  fill: #67d8ff;
}

#n963-managed-colocation .n963-colo-rack-vent {
  stroke: rgba(103, 216, 255, 0.4);
}

#n963-managed-colocation .n963-colo-rack-scan {
  fill: none;
  stroke: #67d8ff;
  stroke-width: 3;
  opacity: 0;
  filter: url("#n963-colo-glow");
  animation: n963ColoScan 3.8s 2.1s ease-in-out infinite;
}

@keyframes n963ColoDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes n963ColoRackFloat {
  0%,
  100% {
    transform: translateY(0) scaleY(1.15);
  }

  50% {
    transform: translateY(-8px) scaleY(1.15);
  }
}

@keyframes n963ColoShadow {
  0%,
  100% {
    opacity: 0.74;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.46;
    transform: scaleX(0.92);
  }
}

@keyframes n963ColoAura {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes n963ColoRingPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes n963ColoServerIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes n963ColoLed {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes n963ColoCircuit {
  0% {
    opacity: 0.35;
    stroke-dashoffset: 320;
  }

  8% {
    opacity: 1;
  }

  72%,
  88% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes n963ColoScan {
  0%,
  15% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 0.8;
  }

  78% {
    opacity: 0.65;
  }

  100% {
    opacity: 0;
    transform: translateY(430px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #n963-managed-colocation .n963-colo-rack,
  #n963-managed-colocation .n963-colo-rack-aura,
  #n963-managed-colocation .n963-colo-rack-ring,
  #n963-managed-colocation .n963-colo-rack-shadow ellipse,
  #n963-managed-colocation .n963-colo-rack-line,
  #n963-managed-colocation .n963-colo-server,
  #n963-managed-colocation .n963-colo-server circle,
  #n963-managed-colocation .n963-colo-rack-circuit,
  #n963-managed-colocation .n963-colo-rack-scan {
    animation: none;
  }

  #n963-managed-colocation .n963-colo-rack-line,
  #n963-managed-colocation .n963-colo-rack-circuit {
    stroke-dashoffset: 0;
  }

  #n963-managed-colocation .n963-colo-server {
    opacity: 1;
  }
}

/* Anti-DDoS protect / scrubbing shield loader */
.n963-protect-loader {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(255px, 28.2vw, 376px);
  aspect-ratio: 132 / 168;
  margin-bottom: 0;
  place-items: center;
  overflow: visible;
}

.n963-protect-loader-glow {
  position: absolute;
  inset: 8% 14% 6%;
  border-radius: 48% 48% 46% 46% / 22% 22% 68% 68%;
  background: rgba(39, 240, 111, 0.16);
  filter: blur(28px);
  animation: n963ProtectGlow 2.8s ease-in-out infinite;
}

.n963-protect-attacks {
  position: absolute;
  inset: -4%;
  z-index: 2;
  pointer-events: none;
}

.n963-protect-bolt {
  position: absolute;
  top: var(--y1);
  left: var(--x1);
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  color: var(--n963-primary-green);
  opacity: 0;
  animation: n963ProtectBoltFly 3.6s cubic-bezier(0.33, 0.05, 0.2, 1) infinite;
  animation-delay: var(--d, 0s);
  will-change: top, left, transform, opacity;
}

.n963-protect-bolt--warm {
  color: var(--n963-accent-yellow);
}

.n963-protect-bolt i {
  position: absolute;
  inset: 0;
  display: block;
  background: transparent;
}

.n963-protect-bolt i::before,
.n963-protect-bolt i::after {
  position: absolute;
  display: block;
  content: "";
  background: currentColor;
  border-radius: 1px;
}

.n963-protect-bolt i::before {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 4px;
  transform: translateX(-50%);
  box-shadow:
    0 10px 0 currentColor,
    0 0 6px currentColor,
    0 10px 6px currentColor;
}

.n963-protect-bolt i::after {
  top: 50%;
  left: 0;
  width: 4px;
  height: 1.5px;
  transform: translateY(-50%);
  box-shadow:
    10px 0 0 currentColor,
    0 0 6px currentColor,
    10px 0 6px currentColor;
}

.n963-protect-loader-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
  color: var(--n963-primary-green);
}

.n963-protect-shield-beat {
  transform-box: fill-box;
  transform-origin: center;
  animation: n963ProtectShieldBeat 3.6s ease-in-out infinite;
}

.n963-protect-shield-fill {
  fill: rgba(39, 240, 111, 0.06);
}

.n963-protect-shield-outer {
  fill: none;
  stroke: rgba(39, 240, 111, 0.4);
  stroke-width: 0.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 0.35 0.55;
  animation: n963ProtectTrackDrift 14s linear infinite;
}

.n963-protect-shield-track {
  fill: none;
  stroke: rgba(39, 240, 111, 0.38);
  stroke-width: 0.75;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 0.7 1.1;
  animation: n963ProtectTrackDrift 12s linear infinite;
}

.n963-protect-shield-scrub {
  fill: none;
  stroke: var(--n963-primary-green);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 18 82;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.4));
  animation: n963ProtectScrub 2.4s linear infinite;
}

.n963-protect-shield-scrub--reverse {
  stroke: var(--n963-accent-yellow);
  stroke-width: 1.15;
  stroke-dasharray: 12 88;
  filter: drop-shadow(0 0 4px rgba(215, 255, 63, 0.35));
  animation: n963ProtectScrubReverse 3.2s linear infinite;
}

.n963-protect-heartbeat {
  fill: none;
  stroke: var(--n963-primary-green);
  stroke-width: 1.1;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}

.n963-protect-heartbeat--a {
  animation: n963ProtectRippleA 3.6s ease-out infinite;
}

.n963-protect-heartbeat--b {
  stroke: var(--n963-accent-yellow);
  stroke-width: 0.85;
  animation: n963ProtectRippleB 3.6s ease-out infinite;
}

.n963-protect-scan-beam {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.85;
  animation: n963ProtectScan 2.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.n963-protect-shield-core {
  fill: var(--n963-primary-green);
  filter: drop-shadow(0 0 8px rgba(39, 240, 111, 0.7));
  transform-box: fill-box;
  transform-origin: center;
  animation: n963ProtectCore 1.8s ease-in-out infinite;
}

@keyframes n963ProtectGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes n963ProtectTrackDrift {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes n963ProtectScrub {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes n963ProtectScrubReverse {
  to {
    stroke-dashoffset: 100;
  }
}

@keyframes n963ProtectScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    transform: translateY(168px);
    opacity: 0;
  }
}

@keyframes n963ProtectCore {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes n963ProtectBoltFly {
  0% {
    top: var(--y1);
    left: var(--x1);
    transform: scale(0.55) rotate(0deg);
    opacity: 0;
  }

  8% {
    opacity: 0.95;
  }

  62% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(1) rotate(45deg);
    opacity: 0.95;
  }

  70% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(0.4) rotate(70deg);
    opacity: 0;
  }

  100% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(0.2) rotate(90deg);
    opacity: 0;
  }
}

@keyframes n963ProtectBoltFlyFast {
  0% {
    top: var(--y1);
    left: var(--x1);
    transform: scale(0.7) rotate(0deg);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  72% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(1) rotate(40deg);
    opacity: 1;
  }

  78% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(0.35) rotate(55deg);
    opacity: 0;
  }

  100% {
    top: var(--y2);
    left: var(--x2);
    transform: scale(0.25) rotate(60deg);
    opacity: 0;
  }
}

@keyframes n963ProtectShieldBeat {
  0%,
  100% {
    transform: scale(1);
  }

  16%,
  44%,
  72% {
    transform: scale(1);
  }

  19% {
    transform: scale(1.045);
  }

  23%,
  51%,
  80% {
    transform: scale(1);
  }

  47% {
    transform: scale(1.04);
  }

  75% {
    transform: scale(1.05);
  }
}

@keyframes n963ProtectRippleA {
  0%,
  16%,
  44%,
  72%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  19%,
  47% {
    opacity: 0.7;
    transform: scale(1.02);
  }

  30%,
  58% {
    opacity: 0;
    transform: scale(1.22);
  }

  75% {
    opacity: 0.8;
    transform: scale(1.025);
  }

  88% {
    opacity: 0;
    transform: scale(1.26);
  }
}

@keyframes n963ProtectRippleB {
  0%,
  18%,
  46%,
  74%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  21%,
  49% {
    opacity: 0.55;
    transform: scale(1.04);
  }

  34%,
  62% {
    opacity: 0;
    transform: scale(1.28);
  }

  77% {
    opacity: 0.6;
    transform: scale(1.05);
  }

  92% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-protect-loader-glow,
  .n963-protect-shield-outer,
  .n963-protect-shield-track,
  .n963-protect-shield-scrub,
  .n963-protect-scan-beam,
  .n963-protect-shield-core,
  .n963-protect-bolt,
  .n963-protect-shield-beat,
  .n963-protect-heartbeat {
    animation: none;
  }

  .n963-protect-attacks {
    display: none;
  }

  .n963-protect-shield-scrub,
  .n963-protect-shield-scrub--reverse {
    stroke-dasharray: none;
  }

  .n963-protect-scan-beam {
    opacity: 0.35;
    transform: translateY(52px);
  }

  .n963-protect-heartbeat {
    opacity: 0;
  }
}

.n963-product-network-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 480px;
  padding: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.n963-product-globe {
  position: absolute;
  top: 40px;
  left: 50%;
  width: min(72%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(215, 255, 63, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
}

.n963-product-orbit,
.n963-product-node {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.n963-product-orbit {
  inset: 16%;
  border: 1px dashed rgba(255, 255, 255, 0.24);
}

.n963-product-orbit--two {
  inset: 32%;
  border-color: rgba(39, 240, 111, 0.5);
}

.n963-product-node {
  width: 24px;
  height: 24px;
  background: var(--n963-accent-yellow);
  box-shadow: 0 0 26px rgba(215, 255, 63, 0.55);
}

.n963-product-node--one {
  top: 22%;
  left: 18%;
}

.n963-product-node--two {
  top: 52%;
  right: 12%;
  background: var(--n963-primary-green);
}

.n963-product-node--three {
  right: 32%;
  bottom: 14%;
  background: #86d3ff;
}

.n963-product-route-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--n963-white);
  background: rgba(7, 52, 50, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.n963-product-route-stack span {
  width: max-content;
  padding: 7px 12px;
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.n963-product-route-stack strong {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.n963-product-route-stack small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.n963-product-signal-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.n963-product-signal-row i {
  display: block;
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.n963-product-signal-row i::before {
  display: block;
  width: 68%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--n963-primary-green), var(--n963-accent-yellow));
  border-radius: inherit;
}

.n963-product-section {
  padding: var(--n963-section-spacing) 0;
}

.n963-product-section-light {
  background: var(--n963-bg-light);
}

.n963-product-section-white {
  background: var(--n963-white);
}

.n963-product-section-dark {
  color: var(--n963-white);
  background:
    radial-gradient(circle at 84% 16%, rgba(39, 240, 111, 0.18), transparent 24%),
    var(--n963-deep-green);
}

#n963-product-sla {
  padding-bottom: 36px;
}

.n963-path-compare-section {
  color: var(--n963-white);
  background: var(--n963-deep-green);
  padding-top: 12px;
}

.n963-path-compare-section .n963-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.n963-product-section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.n963-product-section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  max-width: none;
  margin-bottom: 52px;
}

.n963-product-section-intro {
  max-width: 760px;
}

.n963-product-section-heading-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.n963-product-heading-illustration-stage {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.n963-product-section-heading-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* Managed Colocation facility illustration: 30% larger */
#n963-colo-facility .n963-product-section-heading-split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

#n963-colo-facility .n963-product-heading-illustration-stage,
#n963-colo-facility .n963-product-section-heading-image {
  max-width: 728px;
}

/* Multi-Cloud private fabric benefit illustration */
#n963-cloud-benefits .n963-product-section-heading-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#n963-cloud-benefits .n963-product-heading-illustration-stage,
#n963-cloud-benefits .n963-product-section-heading-image {
  max-width: 728px;
}

/* Anti-DDoS workflow illustration: ~30% larger than shared product heading art */
#n963-anti-ddos .n963-product-section-heading-split {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.35fr);
}

#n963-anti-ddos .n963-product-heading-illustration-stage,
#n963-anti-ddos .n963-product-section-heading-image {
  max-width: 874px;
}

#n963-anti-ddos .n963-product-ops-media {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.88fr);
  max-width: none;
  gap: 0;
}

#n963-anti-ddos .n963-product-ops-illustration-stage,
#n963-anti-ddos .n963-product-ops-image {
  max-width: 874px;
}

/* Managed Colocation Smart Hands illustration: 30% larger */
#n963-colo-smart-hands .n963-product-ops-media {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.88fr);
  max-width: none;
  gap: 0;
}

#n963-colo-smart-hands .n963-product-ops-illustration-stage,
#n963-colo-smart-hands .n963-product-ops-image {
  max-width: 728px;
}

.n963-product-te-bubble {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  padding: 12px;
  color: #062f2d;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(11, 69, 67, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global IP Transit — TE bubble layout (page-local only) */
.n963-transit-te-bubble--routing {
  top: 8%;
  left: 6%;
  width: 132px;
  height: 132px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-transit-te-bubble--handoffs {
  top: 35%;
  left: 70%;
  width: 104px;
  height: 104px;
  font-size: 0.86rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-transit-te-bubble--peering {
  top: 58%;
  left: 12%;
  width: 118px;
  height: 118px;
  font-size: 0.84rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

/* Anti-DDoS — TE bubble layout (page-local only) */
.n963-ddos-te-bubble--routing {
  top: 8%;
  left: 6%;
  width: 132px;
  height: 132px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-ddos-te-bubble--handoffs {
  top: -1%;
  left: 36%;
  width: 104px;
  height: 104px;
  font-size: 0.86rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-ddos-te-bubble--peering {
  top: 58%;
  left: 12%;
  width: 118px;
  height: 118px;
  font-size: 0.84rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

/* Managed Colocation — TE bubble layout (page-local only) */
.n963-colo-te-bubble--routing {
  top: 8%;
  left: 6%;
  width: 132px;
  height: 132px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-colo-te-bubble--handoffs {
  top: -3%;
  left: 65%;
  width: 104px;
  height: 104px;
  font-size: 0.86rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-colo-te-bubble--peering {
  top: 58%;
  left: 21%;
  width: 118px;
  height: 118px;
  font-size: 0.84rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

/* Multi-Cloud — private fabric bubble layout (page-local only) */
.n963-cloud-te-bubble--fabric {
  top: -4%;
  left: 18%;
  width: 126px;
  height: 126px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-cloud-te-bubble--routing {
  top: 2%;
  left: 60%;
  width: 108px;
  height: 108px;
  font-size: 0.84rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-cloud-te-bubble--paths {
  top: 29%;
  left: 8%;
  width: 116px;
  height: 116px;
  font-size: 0.82rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

#n963-product-features.n963-product-te-bubbles-on .n963-product-te-bubble,
#n963-ddos-workflow.n963-product-te-bubbles-on .n963-product-te-bubble,
#n963-colo-facility.n963-product-te-bubbles-on .n963-product-te-bubble,
#n963-cloud-benefits.n963-product-te-bubbles-on .n963-product-te-bubble,
#n963-cloud-onramps.n963-product-te-bubbles-on .n963-product-te-bubble,
#n963-vpn-deployment.n963-product-te-bubbles-on .n963-product-te-bubble {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .n963-transit-te-bubble--routing,
  .n963-ddos-te-bubble--routing,
  .n963-colo-te-bubble--routing,
  .n963-cloud-te-bubble--fabric {
    width: 96px;
    height: 96px;
    font-size: 0.72rem;
  }

  .n963-transit-te-bubble--handoffs,
  .n963-ddos-te-bubble--handoffs,
  .n963-colo-te-bubble--handoffs,
  .n963-cloud-te-bubble--routing {
    width: 78px;
    height: 78px;
    font-size: 0.66rem;
  }

  .n963-transit-te-bubble--peering,
  .n963-ddos-te-bubble--peering,
  .n963-colo-te-bubble--peering,
  .n963-cloud-te-bubble--paths {
    width: 88px;
    height: 88px;
    font-size: 0.68rem;
  }
}

.n963-product-page .n963-product-section-heading h2 {
  color: var(--n963-dark-text);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.22;
}

.n963-product-page .n963-product-section-heading p:not(.n963-eyebrow) {
  max-width: 700px;
  color: var(--n963-muted-text);
  font-size: 1.05rem;
}

.n963-product-page .n963-product-section-dark .n963-product-section-heading h2 {
  color: var(--n963-white);
}

.n963-product-page .n963-product-section-dark .n963-product-section-heading p:not(.n963-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.n963-product-feature-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.n963-product-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 32px 28px;
  background: transparent;
  border: 0;
  border-top: 2px solid rgba(18, 60, 59, 0.12);
  border-left: 1px solid rgba(18, 60, 59, 0.06);
  border-radius: 0;
  box-shadow: none;
  transition: border-top-color 420ms ease;
}

.n963-product-feature-grid .n963-product-feature-card::before {
  position: absolute;
  z-index: 1;
  top: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--n963-accent-yellow);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--n963-feature-line-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.n963-product-feature-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.n963-product-feature-card:last-child {
  padding-right: 0;
}

.n963-product-feature-card:hover {
  transform: none;
  box-shadow: none;
}

.n963-product-feature-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--n963-deep-green);
  background: transparent;
  border: 1px solid rgba(18, 60, 59, 0.14);
  border-radius: 15px 0px 15px 0px;
  font-weight: 900;
  transition: color 420ms ease, border-color 420ms ease, background 420ms ease;
}

.n963-product-feature-card.is-active span {
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  border-color: var(--n963-accent-yellow);
}

.n963-product-feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.n963-product-feature-card p {
  margin-bottom: 0;
  color: var(--n963-muted-text);
  font-size: 0.96rem;
}

.n963-partner-bar {
  --n963-partner-fade: var(--n963-white);
  --n963-partner-line: rgba(18, 60, 59, 0.12);
  margin-top: 52px;
  overflow: hidden;
}

.n963-partner-bar__label {
  width: 100%;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 60, 59, 0.12);
  color: rgba(18, 60, 59, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.n963-partner-bar__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.n963-partner-bar__viewport::before,
.n963-partner-bar__viewport::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(13vw, 180px);
  pointer-events: none;
  content: "";
}

.n963-partner-bar__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--n963-partner-fade) 0%, rgba(255, 255, 255, 0) 100%);
}

.n963-partner-bar__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--n963-partner-fade) 0%, rgba(255, 255, 255, 0) 100%);
}

.n963-partner-bar__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.n963-partner-bar__track--forward {
  animation: n963-partner-marquee 58s linear infinite;
}

.n963-partner-bar__viewport:hover .n963-partner-bar__track {
  animation-play-state: paused;
}

.n963-partner-bar__set {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
}

.n963-partner-bar__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 204px;
  height: 50px;
  padding: 0 34px;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.n963-partner-bar__item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(18, 60, 59, 0) 0%,
    var(--n963-partner-line) 28%,
    var(--n963-partner-line) 72%,
    rgba(18, 60, 59, 0) 100%
  );
}

.n963-partner-bar__item:hover {
  transform: translateY(-1px);
}

.n963-partner-bar__item img {
  display: block;
  max-width: 100%;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.n963-partner-bar__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes n963-partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-partner-bar__track,
  .n963-partner-bar__track--forward {
    animation: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .n963-partner-bar {
    margin-top: 36px;
  }

  .n963-partner-bar__viewport::before,
  .n963-partner-bar__viewport::after {
    width: 72px;
  }

  .n963-partner-bar__item {
    min-width: 168px;
    height: 65px;
    padding: 0 24px;
  }

  .n963-partner-bar__item img {
    max-width: 125px;
    max-height: 36px;
  }
}

.n963-product-sla-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  column-gap: 36px;
  row-gap: 0;
  align-items: center;
}

.n963-product-section-heading-left {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.n963-product-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.n963-product-metric {
  min-height: 190px;
  padding: 26px 20px;
  color: var(--n963-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.n963-product-metric strong {
  display: block;
  margin-bottom: 14px;
  color: var(--n963-accent-yellow);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.n963-product-metric span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.n963-product-globe-panel {
  position: absolute;
  right: max(-80px, -4vw);
  bottom: 56px;
  z-index: 1;
  display: grid;
  width: min(75.4vw, 845px);
  transform: translateY(20%);
  gap: 0;
  padding: 0;
  overflow: visible;
  color: var(--n963-white);
  pointer-events: auto;
}

/* Clip colo globe so it doesn't bleed above the dark section */
#n963-colo-metrics {
  overflow: hidden;
}

.n963-product-globe-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.n963-product-globe-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
}

.n963-product-globe-canvas:active {
  cursor: grabbing;
}

.n963-product-globe-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-column: 1 / -1;
  margin-top: 30px;
}

.n963-path-compare {
  z-index: 2;
  display: grid;
  gap: 0;
  margin-top: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 40px;
}

.n963-path-compare-panel {
  position: relative;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.n963-path-compare-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 18px 28px;
  margin: 0;
  margin-bottom: -45px;
}

.n963-path-compare-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.n963-path-compare-stat strong {
  display: block;
  color: var(--n963-white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.n963-path-compare-stat span:last-child,
.n963-path-compare-stat div > span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.n963-path-compare-stat--delta {
  background: transparent;
  border: 0;
}

.n963-path-compare-stat--delta strong {
  color: var(--n963-accent-yellow);
}

.n963-path-compare-swatch {
  flex: 0 0 auto;
  width: 6px;
  height: 18px;
  border-radius: 999px;
}

.n963-path-compare-swatch--effort {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.28));
}

.n963-path-compare-swatch--n963 {
  background: linear-gradient(180deg, #f0ff8a, var(--n963-accent-yellow) 45%, var(--n963-primary-green));
  box-shadow: 0 0 16px rgba(215, 255, 63, 0.35);
}

.n963-path-compare-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.n963-path-compare-grid line {
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.n963-path-compare-axis text {
  fill: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-family: inherit;
}

.n963-path-compare-area--effort,
.n963-path-compare-area--n963 {
  opacity: 0;
  transition: opacity 900ms ease 180ms;
}

.n963-path-compare.is-drawn .n963-path-compare-area--effort,
.n963-path-compare.is-drawn .n963-path-compare-area--n963 {
  opacity: 1;
}

.n963-path-compare-line--effort-glow {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-path-compare-line--effort {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-path-compare-line--n963-glow {
  stroke: rgba(215, 255, 63, 0.18);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-path-compare-line--n963 {
  stroke: var(--n963-accent-yellow);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.n963-path-compare-line--effort,
.n963-path-compare-line--effort-glow,
.n963-path-compare-line--n963,
.n963-path-compare-line--n963-glow {
  transition: stroke-dashoffset 1.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.n963-path-compare.is-drawn .n963-path-compare-line--effort,
.n963-path-compare.is-drawn .n963-path-compare-line--effort-glow,
.n963-path-compare.is-drawn .n963-path-compare-line--n963,
.n963-path-compare.is-drawn .n963-path-compare-line--n963-glow {
  stroke-dashoffset: 0 !important;
}

.n963-path-compare-clip {
  transition: width 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.n963-path-compare.is-drawn .n963-path-compare-clip {
  width: 796px;
}

.n963-path-compare-dot-ring {
  fill: rgba(215, 255, 63, 0.14);
  stroke: rgba(215, 255, 63, 0.45);
  stroke-width: 1;
  opacity: 0;
  transform-origin: center;
  transition: opacity 420ms ease;
}

.n963-path-compare-dot {
  fill: var(--n963-accent-yellow);
  stroke: rgba(7, 52, 50, 0.55);
  stroke-width: 1.25;
  opacity: 0;
  transition: opacity 420ms ease;
}

.n963-path-compare.is-drawn .n963-path-compare-dot-ring,
.n963-path-compare.is-drawn .n963-path-compare-dot {
  opacity: 1;
  transition-delay: 1.05s;
}

.n963-path-compare-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 980px) {
  .n963-path-compare-stats {
    margin-bottom: 0;
  }
}

@media (max-width: 560px) {
  .n963-path-compare-stats {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px 14px;
  }

  .n963-path-compare-stat strong {
    font-size: 0.95rem;
  }

  .n963-path-compare-stat span:last-child,
  .n963-path-compare-stat div > span {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .n963-path-compare-panel {
    padding: 0;
  }
}

.n963-product-globe-metrics .n963-metric-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 55, 34, 0.045)),
    rgba(0, 115, 77, 0.015);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
}

.n963-product-globe-metrics .n963-metric-card:hover {
  border-color: rgba(39, 240, 111, 0.26);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
}

.n963-product-globe-metric {
  padding: 16px 14px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.n963-product-globe-metric:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.n963-product-globe-metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--n963-accent-yellow);
  font-size: clamp(2.03rem, 3.78vw, 3.08rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.n963-product-globe-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.n963-routing-support-section {
  --n963-routing-signal-scroll: 0;
  position: relative;
  overflow: hidden;
}

.n963-routing-signal {
  position: absolute;
  z-index: 0;
  width: clamp(269px, 32.64vw, 499px);
  aspect-ratio: 1;
  pointer-events: none;
  will-change: transform;
}

.n963-routing-signal--left {
  top: 0;
  left: max(-220px, -16vw);
}

.n963-routing-signal--right {
  right: max(-220px, -16vw);
  bottom: 0;
}

.n963-routing-signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--n963-primary-green);
  box-shadow:
    0 0 0 4px rgba(39, 240, 111, 0.22),
    0 0 22px rgba(39, 240, 111, 0.7);
  transform: translate(-50%, -50%);
  animation: n963RoutingSignalCorePulse 1.9s ease-in-out infinite;
}

@keyframes n963RoutingSignalCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 4px rgba(39, 240, 111, 0.22),
      0 0 22px rgba(39, 240, 111, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow:
      0 0 0 7px rgba(39, 240, 111, 0.16),
      0 0 30px rgba(39, 240, 111, 0.85);
  }
}

.n963-routing-signal span {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(39, 240, 111, 0.78);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.42);
  box-shadow: 0 0 18px rgba(39, 240, 111, 0.28);
  animation: n963RoutingSignalPulse 1.9s ease-out infinite;
}

.n963-routing-signal span:nth-child(2) {
  animation-delay: 0.38s;
}

.n963-routing-signal span:nth-child(3) {
  animation-delay: 0.76s;
}

.n963-routing-signal span:nth-child(4) {
  animation-delay: 1.14s;
}

.n963-routing-signal span:nth-child(5) {
  animation-delay: 1.52s;
}

.n963-routing-signal--right span {
  animation-name: n963RoutingSignalPulseAlt;
}

@keyframes n963RoutingSignalPulse {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  12% {
    opacity: 0.95;
  }
  42% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes n963RoutingSignalPulseAlt {
  0% {
    opacity: 0;
    transform: scale(0.42);
  }
  14% {
    opacity: 0.88;
  }
  46% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.n963-routing-support-section .n963-container {
  position: relative;
  z-index: 2;
}

.n963-product-ops-layout,
.n963-product-ops-heading,
.n963-product-ops-media,
.n963-product-ops-visual,
.n963-product-check-grid {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .n963-routing-signal-core {
    animation: none;
  }

  .n963-routing-signal span {
    animation: none;
    opacity: 0.42;
    transform: scale(0.78);
  }

  .n963-routing-signal span:nth-child(2) {
    opacity: 0.28;
    transform: scale(0.92);
  }

  .n963-routing-signal span:nth-child(3) {
    opacity: 0.16;
    transform: scale(1.04);
  }
}

.n963-product-ops-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: start;
  justify-items: center;
}

.n963-product-ops-media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0;
}

.n963-product-ops-card,
.n963-product-check-grid {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.n963-product-ops-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  align-self: center;
}

.n963-product-ops-illustration-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.n963-product-check-grid {
  display: grid;
  width: 100%;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  gap: 14px;
  align-self: center;
  align-content: center;
  height: fit-content;
}

.n963-product-ops-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* Shared ops bubble reveal base — size/position live on page-local ops bubble classes */
.n963-transit-ops-bubble--asn {
  top: auto;
  bottom: 3%;
  left: -3%;
  width: 120px;
  height: 120px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-transit-ops-bubble--policy {
  top: 0%;
  left: 44%;
  width: 112px;
  height: 112px;
  font-size: 0.84rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-transit-ops-bubble--rpki {
  bottom: 39%;
  left: auto;
  right: 2%;
  width: 96px;
  height: 96px;
  font-size: 0.9rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

/* Anti-DDoS — ops bubble layout (page-local only) */
.n963-ddos-ops-bubble--asn {
  top: auto;
  bottom: 3%;
  left: -3%;
  width: 120px;
  height: 120px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-ddos-ops-bubble--policy {
  top: 0%;
  left: 44%;
  width: 112px;
  height: 112px;
  font-size: 0.84rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-ddos-ops-bubble--rpki {
  bottom: 39%;
  left: auto;
  right: 2%;
  width: 96px;
  height: 96px;
  font-size: 0.9rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

/* Managed Colocation — ops bubble layout (page-local only) */
.n963-colo-ops-bubble--asn {
  top: auto;
  bottom: 3%;
  left: -3%;
  width: 120px;
  height: 120px;
  background: rgba(215, 255, 63, 0.88);
  transition-delay: 40ms;
}

.n963-colo-ops-bubble--policy {
  top: 0%;
  left: 44%;
  width: 112px;
  height: 112px;
  font-size: 0.84rem;
  background: rgb(176 255 232 / 90%);
  transition-delay: 140ms;
}

.n963-colo-ops-bubble--rpki {
  bottom: 39%;
  left: auto;
  right: 2%;
  width: 96px;
  height: 96px;
  font-size: 0.9rem;
  background: rgba(134, 211, 255, 0.9);
  transition-delay: 240ms;
}

.n963-routing-support-section.n963-product-ops-bubbles-on .n963-product-ops-bubble {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 980px) {
  .n963-transit-ops-bubble--asn,
  .n963-ddos-ops-bubble--asn,
  .n963-colo-ops-bubble--asn {
    width: 90px;
    height: 90px;
    font-size: 0.7rem;
  }

  .n963-transit-ops-bubble--policy,
  .n963-ddos-ops-bubble--policy,
  .n963-colo-ops-bubble--policy {
    width: 84px;
    height: 84px;
    font-size: 0.64rem;
  }

  .n963-transit-ops-bubble--rpki,
  .n963-ddos-ops-bubble--rpki,
  .n963-colo-ops-bubble--rpki {
    width: 72px;
    height: 72px;
    font-size: 0.72rem;
  }
}

.n963-product-ops-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.n963-product-ops-heading p:not(.n963-eyebrow) {
  margin-right: auto;
  margin-left: auto;
  max-width: 980px;
}

.n963-product-check-grid div {
  --n963-check-fill: 0%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  overflow: hidden;
  color: var(--n963-dark-text);
  background:
    linear-gradient(
      90deg,
      #f3f9c8 0 var(--n963-check-fill),
      #ffffff var(--n963-check-fill) 100%
    );
  border-radius: 14px;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 22px);
  transition: background 80ms linear;
}

.n963-product-check-grid div > * {
  position: relative;
  z-index: 1;
}

.n963-product-cta {
  padding: 86px 0;
  color: var(--n963-white);
  background: var(--n963-deep-green-dark);
}

.n963-product-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.n963-product-cta h2 {
  max-width: 760px;
  color: var(--n963-white);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.n963-product-cta p:not(.n963-eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1200px) {
  .n963-feature-card:nth-child(2n) {
    border-right: 0;
  }

  .n963-feature-card:nth-child(2n + 1) {
    border-right: 1px solid rgba(18, 60, 59, 0.1);
  }

  .n963-feature-card:last-child {
    border-right: 0;
  }

  .n963-feature-card {
    flex: 0 0 var(--n963-feature-card-width, 33.333cqw);
    width: var(--n963-feature-card-width, 33.333cqw);
    min-width: 0;
  }

  @supports not (width: 1cqw) {
    .n963-feature-card {
      flex: 0 0 var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) / 3));
      width: var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) / 3));
    }
  }

  .n963-network-cta-banner .n963-banner-inner,
  .n963-green-banner .n963-banner-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    text-align: center;
  }

  .n963-banner-main {
    margin-right: auto;
    margin-left: auto;
  }

  .n963-network-cta-banner h2,
  .n963-green-banner h2 {
    font-size: clamp(2.1rem, 8vw, 3.6rem);
    text-wrap: balance;
  }

  .n963-banner-title-line {
    white-space: normal;
  }

  .n963-banner-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .n963-banner-action {
    justify-content: center;
    min-height: 0;
  }

  .n963-banner-call-btn {
    width: min(52vw, 196px);
    height: min(52vw, 196px);
  }

  .n963-banner-line-arrow {
    display: none;
  }

  .n963-banner-photo {
    display: none;
  }

  .n963-product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n963-product-feature-card {
    border-left: 1px solid rgba(18, 60, 59, 0.06);
    padding: 28px 20px;
  }

  .n963-product-feature-card:nth-child(2n + 1) {
    border-left: 0;
    padding-left: 0;
  }

  .n963-product-feature-card:nth-child(2n) {
    padding-right: 0;
  }

  .n963-product-hero-layout,
  .n963-product-sla-layout,
  .n963-product-ops-layout,
  .n963-product-cta-inner,
  .n963-product-section-heading-split,
  .n963-product-ops-media,
  #n963-colo-facility .n963-product-section-heading-split,
  #n963-cloud-benefits .n963-product-section-heading-split,
  #n963-anti-ddos .n963-product-section-heading-split,
  #n963-anti-ddos .n963-product-ops-media,
  #n963-colo-smart-hands .n963-product-ops-media {
    grid-template-columns: 1fr;
  }

  #n963-anti-ddos .n963-product-ops-media,
  #n963-colo-smart-hands .n963-product-ops-media {
    gap: clamp(24px, 3vw, 48px);
  }

  .n963-product-section-intro,
  .n963-product-check-grid {
    max-width: none;
    width: 100%;
  }

  .n963-product-section-heading-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  #n963-anti-ddos .n963-product-section-heading-visual {
    max-width: 655px;
  }

  #n963-anti-ddos .n963-product-ops-visual {
    max-width: 655px;
    margin: 0 auto;
  }

  .n963-product-globe-panel {
    display: none;
  }

  .n963-routing-signal {
    width: clamp(211px, 40.32vw, 326px);
    opacity: 0.7;
  }

  .n963-product-hero-visual,
  #n963-global-ip-transit .n963-product-hero-visual {
    display: none;
  }

  .n963-product-cta-inner {
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .n963-metrics-section .n963-vtabs-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .n963-product-hero {
    min-height: 0;
    padding: 126px 0 72px;
  }

  .n963-product-hero-visual {
    min-height: 380px;
  }

  .n963-product-network-card,
  .n963-core-loader-card {
    min-height: 380px;
  }

  .n963-product-metric-grid {
    grid-template-columns: 1fr;
  }

  .n963-product-globe-stage {
    min-height: 352px;
  }

  .n963-product-globe-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n963-product-feature-card {
    min-height: 0;
  }

  .n963-page {
    --n963-section-spacing: 76px;
  }

  .n963-network-cta-banner,
  .n963-green-banner {
    padding: 58px 0;
  }

  .n963-section-heading {
    margin-bottom: 32px;
  }

  .n963-header-inner {
    min-height: 78px;
    flex-wrap: wrap;
  }

  .n963-main-navigation {
    order: 3;
    width: 100%;
    gap: 18px;
  }

  .n963-header-actions {
    margin-left: auto;
  }

  .n963-hero-layout,
  .n963-split-layout,
  .n963-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .n963-split-section-alt .n963-split-layout {
    gap: 18px;
  }

  .n963-network-map-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .n963-network-map-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .n963-network-map-section > .n963-container {
    grid-template-columns: 1fr;
  }

  .n963-network-map-header {
    border-right: 0;
    border-bottom: 1px solid var(--n963-border-color);
  }

  .n963-network-map-stage {
    padding: 12px;
  }

  .n963-network-map-tooltip {
    box-sizing: border-box;
    min-width: 0;
    max-width: min(180px, calc(100% - 16px));
    padding: 8px 10px;
    font-size: 0.78rem;
    top: calc(var(--n963-pin-top, 50%) - 58px);
    /* Keep centered tooltip inside the canvas (accounts for ~half max-width). */
    left: clamp(90px, var(--n963-pin-left), calc(100% - 90px));
    word-break: break-word;
  }

  .n963-network-map-tooltip small {
    font-size: 0.68rem;
  }

  .n963-network-city-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 0;
  }

  .n963-network-city-list li:nth-child(2) {
    border-right: 0;
  }

  .n963-network-city-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--n963-border-color);
  }

  .n963-network-city-list li + li {
    margin-top: 0;
  }

  .n963-network-lg-banner {
    padding: 0;
  }

  .n963-network-bg-slot {
    display: none;
  }

  .n963-network-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: clamp(40px, 7vw, 64px) 0;
  }

  .n963-network-content {
    grid-column: 1;
    margin: 0;
    padding: 0;
    transform: none;
    will-change: auto;
  }

  .n963-network-content-panel {
    padding: clamp(8px, 2vw, 16px) 0;
  }

  .n963-hero-section {
    min-height: 660px;
    padding: 100px 0 40px;
  }

  .n963-hero-visual {
    min-height: 280px;
  }

  .n963-hero-art {
    inset: -250px -20px auto;
    transform: scale(0.9);
  }

  .n963-features-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }

  .n963-features-illustration {
    justify-content: flex-start;
  }

  .n963-features-illustration-stage {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .n963-feature-card,
  .n963-feature-card:nth-child(2n),
  .n963-feature-card:nth-child(2n + 1) {
    border-right: 0;
  }

  .n963-feature-card {
    flex: 0 0 var(--n963-feature-card-width, 78cqw);
    width: var(--n963-feature-card-width, 78cqw);
    min-width: 0;
  }

  @supports not (width: 1cqw) {
    .n963-feature-card {
      flex: 0 0 var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) * 0.78));
      width: var(--n963-feature-card-width, calc((100vw - var(--n963-slider-gutter)) * 0.78));
    }
  }

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

  .n963-why-carousel-stage {
    min-height: 520px;
    padding-top: 36px;
    padding-bottom: 2px;
  }

  .n963-why-card {
    top: 36px;
    width: min(100%, 520px);
    padding: 53px 36px 40px;
  }

  .n963-why-number {
    width: 66px;
    height: 66px;
    font-size: 1.19rem;
  }

  .n963-why-card h3 {
    font-size: clamp(1.2rem, 3.8vw, 1.55rem);
  }

  .n963-why-card p {
    font-size: 1.06rem;
  }

  .n963-why-carousel-controls {
    margin-top: 0;
  }

  .n963-why-heading {
    text-align: left;
  }

  .n963-split-section-alt .n963-split-content {
    order: 2;
  }

  .n963-split-section-alt .n963-split-image {
    order: 1;
  }

  .n963-contact-info-inner,
  .n963-contact-form-inner {
    max-width: none;
    margin: 0;
    padding: 48px 28px;
  }

  .n963-contact-info-card {
    position: static;
  }

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

  .n963-banner-action {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .n963-page {
    --n963-section-spacing: 56px;
  }

  .n963-network-lg-banner {
    grid-template-columns: 1fr;
  }

  .n963-network-lg-label {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--n963-border-color);
  }

  .n963-network-lg-banner .n963-network-lg-copy {
    padding-bottom: 18px;
  }

  .n963-network-lg-action {
    justify-self: start;
    margin: 0 26px 28px;
  }

  .n963-why-card {
    border-left: 3px solid var(--n963-primary-green);
    border-right: 3px solid var(--n963-primary-green);
  }

  .n963-network-cta-banner,
  .n963-green-banner {
    padding: 48px 0;
  }

  .n963-section-heading {
    margin-bottom: 28px;
  }

  .n963-product-hero {
    padding: 112px 0 60px;
  }

  .n963-product-page .n963-product-hero-intro h1,
  .n963-product-page .n963-product-section-heading h2,
  .n963-product-page .n963-product-cta h2 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .n963-product-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .n963-product-hero-actions .n963-btn,
  .n963-product-cta .n963-btn {
    width: 100%;
  }

  .n963-product-hero-visual,
  .n963-product-network-card,
  .n963-core-loader-card {
    min-height: 330px;
  }

  .n963-product-network-card,
  .n963-core-loader-card {
    padding: 24px;
    border-radius: 22px;
  }

  .n963-product-feature-grid {
    grid-template-columns: 1fr;
  }

  .n963-product-feature-card,
  .n963-product-feature-card:first-child,
  .n963-product-feature-card:last-child,
  .n963-product-feature-card:nth-child(2n),
  .n963-product-feature-card:nth-child(2n + 1) {
    border-left: 0;
    padding: 24px 0;
  }

  .n963-product-metric {
    min-height: 150px;
  }

  .n963-product-globe-stage {
    min-height: 272px;
  }

  .n963-product-globe-canvas {
    width: min(96%, 368px);
  }

  .n963-product-globe-metrics {
    grid-template-columns: 1fr;
  }

  .n963-container {
    width: min(100% - 48px, var(--n963-container-width));
  }

  .n963-site-header .n963-container {
    width: min(100% - 48px, 1480px);
  }

  .n963-features-section {
    --n963-slider-gutter: 24px;
  }

  .n963-features-slider-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .n963-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
    gap: 14px;
  }

  .n963-site-logo {
    width: 100%;
    justify-content: center;
  }

  .n963-main-navigation {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    gap: 20px;
  }

  .n963-header-button {
    min-height: 42px;
    padding: 0 18px;
  }

  .n963-header-actions {
    order: 2;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .n963-hero-section {
    min-height: 640px;
    padding: 92px 0 36px;
  }

  .n963-hero-bg-left {
    transform: translate3d(-46px, 0, 0);
  }

  .n963-hero-bg-right {
    transform: translate3d(46px, 0, 0);
  }

  .n963-hero-bg-bottom {
    transform: translate3d(0, 76px, 0);
  }

  .n963-hero-title {
    font-size: clamp(2.15rem, 11vw, 3.85rem);
  }

  .n963-rotating-text {
    display: block;
    min-width: 0;
    white-space: normal;
  }

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

  .n963-metric-card {
    padding: 22px;
  }

  .n963-hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .n963-hero-actions .n963-btn {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 55px;
    min-height: 55px;
    padding: 10px 20px;
    white-space: nowrap;
}

  .n963-hero-art {
    inset: -218px -92px auto;
    transform: scale(0.72);
  }

  .n963-device-card {
    inset: 46px 0 auto 0;
    width: 100%;
  }

  .n963-floating-badge {
    font-size: 0.8rem;
  }

  .n963-split-layout {
    gap: 0;
  }

  .n963-split-image {
    min-height: 0;
  }

  .n963-split-section-alt .n963-split-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .n963-contact-layout {
    gap: 0;
  }

  .n963-banner-inner {
    gap: 0;
  }

  .n963-features-heading {
    gap: 0;
  }

  .n963-split-image-portal {
    min-height: 0;
  }

  .n963-docs-illustration-image {
    width: 100%;
    max-width: none;
  }

  .n963-split-illustration-image {
    width: min(100%, 360px);
    max-height: 420px;
  }

  .n963-portal-panel {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .n963-mock-product-card {
    right: 16px;
    width: 220px;
  }

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

  .n963-contact-form-card,
  .n963-contact-info-card {
    padding: 0;
  }

  .n963-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .n963-section-heading {
    text-align: left;
  }

  .n963-network-map-tooltip {
    max-width: min(160px, calc(100% - 12px));
    left: clamp(80px, var(--n963-pin-left), calc(100% - 80px));
    top: calc(var(--n963-pin-top, 50%) - 52px);
  }

  .n963-network-city-list {
    grid-template-columns: 1fr;
  }

  .n963-network-city-list li,
  .n963-network-city-list li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--n963-border-color);
  }

  .n963-network-city-list li:last-child {
    border-bottom: 0;
  }

  .n963-main-navigation {
    font-size: calc(0.86rem + 2px);
  }

  .n963-hero-section {
    min-height: 600px;
    padding: 88px 0 32px;
  }

  .n963-hero-art {
    inset: -210px -145px auto;
    transform: scale(0.62);
  }

  .n963-features-illustration-stage {
    max-width: none;
    width: 100%;
  }

  .n963-feature-card {
    padding: 26px;
  }
}

/* Responsive premium header menu */
@media (max-width: 1180px) {
  html {
    scrollbar-gutter: stable;
  }

  body.n963-menu-lock {
    overflow: hidden;
    overflow-x: hidden;
    touch-action: none;
  }

  .n963-site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
    border-radius: 0;
  }

  .n963-site-header.n963-scrolled {
    background: var(--n963-white);
    border-radius: 0;
  }

  /* Single mobile-menu chrome (scrolled class is cleared while open) */
  .n963-site-header.n963-menu-open {
    background: var(--n963-deep-green-dark);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    filter: none;
  }

  /* Keep the same side inset open/closed so logo + toggle do not jump */
  .n963-site-header .n963-container,
  .n963-site-header.n963-menu-open .n963-container {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .n963-header-inner {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
    padding: 0;
  }

  .n963-site-logo {
    width: auto;
    justify-content: flex-start;
  }

  .n963-site-logo-image {
    width: 91px; /* 83px + 10% */
  }

  .n963-page .n963-site-header:not(.n963-scrolled) .n963-site-logo-image-white {
    display: block;
  }

  .n963-page .n963-site-header:not(.n963-scrolled) .n963-site-logo-image-dark {
    display: none;
  }

  .n963-page .n963-site-header.n963-scrolled .n963-site-logo-image-white {
    display: none;
  }

  .n963-page .n963-site-header.n963-scrolled .n963-site-logo-image-dark {
    display: block;
  }

  .n963-page .n963-site-header.n963-menu-open .n963-site-logo-image-white {
    display: block;
  }

  .n963-page .n963-site-header.n963-menu-open .n963-site-logo-image-dark {
    display: none;
  }

  .n963-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px; /* 52px * 0.7 */
    height: 36px;
    padding: 0;
    overflow: visible;
    transition: background var(--n963-transition-fast), border-color var(--n963-transition-fast);
  }

  .n963-menu-toggle span {
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    transition:
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 180ms ease;
  }

  .n963-menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, calc(-50% - 5px));
  }

  .n963-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .n963-menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, calc(-50% + 5px));
  }

  .n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .n963-site-header.n963-menu-open .n963-menu-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .n963-menu-toggle:hover {
    transform: none;
  }

  .n963-site-header.n963-menu-open .n963-menu-toggle {
    border-color: rgba(255, 255, 255, 0.32);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .n963-site-header.n963-menu-open .n963-menu-toggle span {
    background: var(--n963-white);
  }

  .n963-header-menu {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    color: var(--n963-white);
    background: var(--n963-deep-green-dark);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: visibility 0s linear 0.7s;
  }

  .n963-site-header.n963-menu-open .n963-header-menu {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s linear 0s;
  }

  .n963-mobile-menu-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .n963-site-header.n963-menu-open .n963-mobile-menu-overlay {
    opacity: 1;
  }

  .n963-mobile-menu-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    padding: 24px;
    overflow: hidden;
    overscroll-behavior: contain;
    color: var(--n963-white);
    background: var(--n963-deep-green-dark);
    border: 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
    will-change: transform;
  }

  .n963-site-header.n963-menu-open .n963-mobile-menu-inner {
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .n963-main-navigation {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    align-items: stretch;
    order: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    gap: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--n963-white);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }

  .n963-main-navigation::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .n963-main-navigation > a,
  .n963-main-navigation > .n963-nav-dropdown {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition:
      opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a,
  .n963-site-header.n963-menu-open .n963-main-navigation > .n963-nav-dropdown {
    opacity: 1;
    transform: none;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > .n963-nav-dropdown {
    transition-delay: 0.22s;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a:nth-of-type(1) {
    transition-delay: 0.22s;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a:nth-of-type(2) {
    transition-delay: 0.28s;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a:nth-of-type(3) {
    transition-delay: 0.34s;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a:nth-of-type(4) {
    transition-delay: 0.4s;
  }

  .n963-site-header.n963-menu-open .n963-main-navigation > a:nth-of-type(5) {
    transition-delay: 0.46s;
  }

  .n963-main-navigation > a,
  .n963-nav-dropdown-trigger,
  .n963-header-link {
    box-sizing: border-box;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 14px 0;
    border-radius: 0;
    color: var(--n963-white);
    font-size: clamp(1.45rem, 5.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: transparent;
  }

  .n963-nav-dropdown {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .n963-nav-dropdown-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-right: 0;
  }

  .n963-nav-dropdown-arrow {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1em;
    margin-left: 0;
    font-size: 0.72em;
    line-height: 1;
    color: var(--n963-primary-green);
    transition: transform 0.28s ease;
  }

  .n963-nav-dropdown.is-expanded .n963-nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .n963-main-navigation > a:hover,
  .n963-nav-dropdown-trigger:hover,
  .n963-header-link:hover {
    color: var(--n963-accent-yellow);
    background: transparent;
  }

  .n963-nav-dropdown-menu,
  .n963-nav-dropdown:hover .n963-nav-dropdown-menu,
  .n963-nav-dropdown:focus-within .n963-nav-dropdown-menu,
  .n963-nav-dropdown.is-expanded .n963-nav-dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: grid;
    grid-template-columns: 1fr;
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none !important;
  }

  .n963-nav-dropdown-menu {
    max-height: 0;
    padding: 0;
    pointer-events: none;
    transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1), padding 0.28s ease;
  }

  .n963-nav-dropdown.is-expanded .n963-nav-dropdown-menu {
    max-height: 480px;
    padding: 4px 0 14px;
    pointer-events: auto;
  }

  .n963-mega-feature {
    display: none;
  }

  .n963-mega-visual,
  .n963-mega-visual-image,
  .n963-mega-visual-fade {
    display: none !important;
    background: none !important;
    background-image: none !important;
  }

  .n963-nav-dropdown-menu .n963-mega-overview-link,
  .n963-nav-dropdown-menu .n963-mega-overview-link:hover {
    padding: 14px 0;
    color: var(--n963-white);
    font-size: clamp(1.45rem, 5.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .n963-mega-column {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px 14px;
    border: 0;
    border-radius: 3px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.06);
  }

  /* Same list format as main links — no separate section style */
  .n963-mega-column p {
    display: none;
  }

  .n963-mega-overview-link,
  .n963-mega-column a {
    font-size: calc(clamp(1.45rem, 5.4vw, 1.85rem) - 6px);
  }

  .n963-nav-dropdown:hover .n963-nav-dropdown-menu,
  .n963-nav-dropdown:focus-within .n963-nav-dropdown-menu {
    transform: none;
  }

  .n963-nav-dropdown-menu a,
  .n963-nav-dropdown-menu a:hover {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 0;
    padding: 12px 0;
    font-size: calc(clamp(1.45rem, 5.4vw, 1.85rem) - 6px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--n963-white);
    background: transparent;
  }

  .n963-mega-column a::before {
    content: "\f061";
    flex-shrink: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72em;
    line-height: 1;
    color: var(--n963-accent-yellow);
    speak: never;
  }

  .n963-nav-dropdown-menu a:hover {
    color: var(--n963-accent-yellow);
  }

  .n963-mega-column a:hover::before {
    color: var(--n963-accent-yellow);
  }

  .n963-header-actions {
    display: contents;  
  }

  .n963-header-actions .n963-header-link {
    order: 1;
    flex: 0 0 auto;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 0;
    font-size: clamp(1.45rem, 5.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--n963-white);
    background: transparent;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition:
      opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      color var(--n963-transition-fast),
      background var(--n963-transition-fast);
  }

  .n963-site-header.n963-menu-open .n963-header-actions .n963-header-link {
    opacity: 1;
    transform: none;
    transition-delay: 0.34s;
  }

  .n963-page .n963-header-menu .n963-header-button,
  .n963-header-menu .n963-header-button {
    order: 2;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    margin-top: auto;
    justify-content: center;
    border-radius: 0;
    font-size: calc(1.01rem + 2px);
    color: var(--n963-deep-green-dark) !important;
    background: var(--n963-accent-yellow);
    box-shadow: none;
    transform: none;
    opacity: 0;
    transition:
      opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.34s,
      color var(--n963-transition-fast),
      background var(--n963-transition-fast);
  }

  .n963-site-header.n963-menu-open .n963-header-menu .n963-header-button {
    opacity: 1;
  }

  .n963-page .n963-header-menu .n963-header-button::before,
  .n963-header-menu .n963-header-button::before {
    display: none;
  }

  .n963-page .n963-header-menu .n963-header-button:hover,
  .n963-page .n963-header-menu .n963-header-button:focus-visible,
  .n963-header-menu .n963-header-button:hover,
  .n963-header-menu .n963-header-button:focus-visible {
    color: var(--n963-deep-green-dark) !important;
    background: var(--n963-accent-yellow);
    transform: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .n963-mobile-menu-overlay,
    .n963-mobile-menu-inner,
    .n963-main-navigation > a,
    .n963-main-navigation > .n963-nav-dropdown,
    .n963-header-actions .n963-header-link,
    .n963-header-menu .n963-header-button,
    .n963-nav-dropdown-menu {
      transition: none !important;
    }

    .n963-mobile-menu-inner,
    .n963-main-navigation > a,
    .n963-main-navigation > .n963-nav-dropdown,
    .n963-header-actions .n963-header-link,
    .n963-header-menu .n963-header-button {
      opacity: 1;
      transform: none;
    }
  }
}

/* SECTION: BRAND GUIDELINES */
.n963-brand-page {
  --n963-brand-lime: #b6d333;
  --n963-brand-transit: #24983a;
  --n963-brand-ink: #231815;
  --n963-brand-white: #ffffff;
}

.n963-brand-hero {
  min-height: auto;
  padding: 150px 0 88px;
}

.n963-brand-hero-layout {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.n963-product-page.n963-brand-page .n963-brand-hero .n963-product-hero-intro {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.n963-product-page.n963-brand-page .n963-brand-hero .n963-product-hero-intro p:not(.n963-eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.n963-product-page.n963-brand-page .n963-product-section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.n963-product-page.n963-brand-page .n963-product-section-heading p:not(.n963-eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

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

.n963-brand-logo-card {
  margin: 0;
  overflow: hidden;
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(7, 52, 50, 0.08);
}

.n963-brand-logo-panel {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: clamp(28px, 4vw, 48px);
}

.n963-brand-logo-panel--dark {
  background:
    radial-gradient(circle at 30% 25%, rgba(215, 255, 63, 0.12), transparent 42%),
    #0a0a0a;
}

.n963-brand-logo-panel--light {
  background:
    radial-gradient(circle at 70% 30%, rgba(39, 240, 111, 0.08), transparent 40%),
    #ffffff;
}

.n963-brand-logo-image {
  width: min(100%, 320px);
  height: auto;
}

.n963-brand-logo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 20px 22px 24px;
}

.n963-brand-logo-card figcaption strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--n963-dark-text);
}

.n963-brand-logo-card figcaption span {
  color: var(--n963-muted-text);
  font-size: 0.92rem;
}

.n963-brand-meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.n963-brand-meaning-card {
  min-height: 280px;
  background: #fbfcf8;
}

.n963-brand-symbolism {
  margin-top: 72px;
}

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

.n963-brand-symbol-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 28px;
  background: var(--n963-bg-light);
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(7, 52, 50, 0.06);
}

.n963-brand-symbol-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.n963-brand-symbol-card p {
  margin-bottom: 0;
  color: var(--n963-muted-text);
}

.n963-brand-symbol-visual {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--n963-deep-green-dark);
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  font-size: 1.1rem;
}

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

.n963-brand-swatch-card {
  overflow: hidden;
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(7, 52, 50, 0.08);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.n963-brand-swatch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(7, 52, 50, 0.14);
}

.n963-brand-swatch {
  height: 140px;
}

.n963-brand-swatch--lime {
  background: linear-gradient(135deg, #d4e86a 0%, var(--n963-brand-lime) 55%, #8faa1f 100%);
}

.n963-brand-swatch--transit {
  background: linear-gradient(135deg, #4cbe62 0%, var(--n963-brand-transit) 55%, #1a6f2a 100%);
}

.n963-brand-swatch--ink {
  background: linear-gradient(135deg, #4a3f3c 0%, var(--n963-brand-ink) 60%, #120e0d 100%);
}

.n963-brand-swatch--white {
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f4f2 55%, #e8e8e4 100%);
  border-bottom: 1px solid rgba(18, 60, 59, 0.08);
}

.n963-brand-swatch-body {
  padding: 22px 22px 26px;
}

.n963-brand-swatch-label {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--n963-dark-text);
}

.n963-brand-swatch-body code {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--n963-deep-green-dark);
  background: rgba(215, 255, 63, 0.45);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.n963-brand-swatch-meta {
  margin-bottom: 10px;
  color: var(--n963-dark-text);
  font-size: 0.92rem;
}

.n963-brand-swatch-body p:last-child {
  margin-bottom: 0;
  color: var(--n963-muted-text);
  font-size: 0.92rem;
}

.n963-brand-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.n963-brand-flow-step {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: #fbfcf8;
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(7, 52, 50, 0.06);
}

.n963-brand-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -14px;
  z-index: 1;
  width: 28px;
  height: 2px;
  background: rgba(18, 60, 59, 0.16);
}

.n963-brand-flow-index {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--n963-white);
}

.n963-brand-flow-step--lime .n963-brand-flow-index {
  background: var(--n963-brand-lime);
  color: var(--n963-brand-ink);
}

.n963-brand-flow-step--transit .n963-brand-flow-index {
  background: var(--n963-brand-transit);
}

.n963-brand-flow-step--ink .n963-brand-flow-index {
  background: var(--n963-brand-ink);
}

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

.n963-brand-type-card {
  overflow: hidden;
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(7, 52, 50, 0.08);
}

.n963-brand-type-specimen {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 32px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--n963-brand-ink);
  background:
    radial-gradient(circle at 70% 30%, rgba(182, 211, 51, 0.18), transparent 42%),
    #fbfcf8;
}

.n963-brand-type-specimen--name {
  font-size: clamp(2.6rem, 6vw, 4rem);
  letter-spacing: 0.06em;
}

.n963-brand-type-body {
  padding: 22px 22px 26px;
}

.n963-brand-type-body .n963-brand-swatch-label {
  margin-bottom: 8px;
}

.n963-brand-type-body code {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--n963-deep-green-dark);
  background: rgba(215, 255, 63, 0.45);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.n963-brand-type-body .n963-brand-swatch-meta {
  margin-bottom: 10px;
}

.n963-brand-type-body p:last-child {
  margin-bottom: 0;
  color: var(--n963-muted-text);
  font-size: 0.92rem;
}

.n963-brand-flow-step h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.n963-brand-flow-step p {
  margin-bottom: 0;
  color: var(--n963-muted-text);
}

@media (max-width: 1100px) {
  .n963-brand-swatch-grid,
  .n963-brand-meaning-grid,
  .n963-brand-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n963-brand-flow-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .n963-brand-hero-layout,
  .n963-brand-meaning-grid,
  .n963-brand-symbolism-grid,
  .n963-brand-swatch-grid,
  .n963-brand-logo-grid,
  .n963-brand-type-grid,
  .n963-brand-flow {
    grid-template-columns: 1fr;
  }

  .n963-brand-hero {
    min-height: 0;
    padding: 132px 0 64px;
  }

  .n963-brand-logo-panel {
    min-height: 180px;
  }

  .n963-brand-flow-step:not(:last-child)::after {
    display: none;
  }
}

/* SECTION: CONTACT US PAGE */
#n963-contact-us .n963-contact-hero-banner {
  padding-top: clamp(132px, 18vw, 168px);
  padding-bottom: clamp(64px, 8vw, 96px);
  border-radius: 0 0 40px 40px;
}

#n963-contact-us .n963-contact-hero-banner h2 {
  opacity: 1;
}

/* SECTION: MULTI-CLOUD DIRECT CONNECT */
#n963-multi-cloud .n963-product-hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(12px, 2vw, 28px);
}

#n963-multi-cloud .n963-product-hero-visual {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 540px;
  margin-left: 0;
}

.n963-cloud-fabric {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1.22;
  margin: 0 auto;
  overflow: visible;
}

.n963-cloud-fabric__grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 76%);
}

.n963-cloud-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 166px;
  height: 166px;
  place-content: center;
  text-align: center;
  color: var(--n963-white);
  background: linear-gradient(145deg, rgba(8, 82, 61, 0.96), rgba(3, 40, 37, 0.98));
  border: 1px solid rgba(103, 216, 255, 0.55);
  border-radius: 50%;
  box-shadow:
    0 0 0 16px rgba(103, 216, 255, 0.05),
    0 0 36px rgba(103, 216, 255, 0.18),
    0 0 48px rgba(39, 240, 111, 0.22);
  transform: translate(-50%, -50%);
}

.n963-cloud-core strong {
  position: relative;
  z-index: 2;
  color: var(--n963-accent-yellow);
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.n963-cloud-core small {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.n963-cloud-core__pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(103, 216, 255, 0.62);
  border-radius: inherit;
  animation: n963CloudCorePulse 2.4s ease-out infinite;
}

.n963-cloud-fabric__links {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.n963-cloud-fabric__track {
  fill: none;
  stroke: rgba(103, 216, 255, 0.22);
  stroke-width: 2.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.n963-cloud-fabric__flow {
  fill: none;
  stroke: url("#n963-cloud-link-gradient");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(103, 216, 255, 0.45));
  animation: n963VpnLinkFlow 1.4s linear infinite;
}

.n963-cloud-fabric__packet {
  opacity: 0;
}

.n963-cloud-fabric__packet--cyan {
  fill: #67d8ff;
  filter: drop-shadow(0 0 8px rgba(103, 216, 255, 0.9));
}

.n963-cloud-fabric__packet--green {
  fill: var(--n963-primary-green);
  filter: drop-shadow(0 0 8px rgba(39, 240, 111, 0.85));
}

.n963-cloud-route {
  display: none;
}

.n963-cloud-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 40px auto;
  gap: 11px;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 132px;
  padding: 30px 22px 12px;
  isolation: isolate;
  color: var(--n963-white);
  background: transparent;
  border: 0;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.18));
}

.n963-cloud-node::before,
.n963-cloud-node::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M44 124C22 124 5 107 5 85C5 66 18 49 36 45C35 42 35 39 35 36C35 18 50 4 68 4C78 4 87 8 93 15C104 7 117 3 131 3C164 3 191 29 192 62C201 68 205 79 205 91C205 109 190 124 171 124H44Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M44 124C22 124 5 107 5 85C5 66 18 49 36 45C35 42 35 39 35 36C35 18 50 4 68 4C78 4 87 8 93 15C104 7 117 3 131 3C164 3 191 29 192 62C201 68 205 79 205 91C205 109 190 124 171 124H44Z' fill='black'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.n963-cloud-node--azure::before,
.n963-cloud-node--azure::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M40 124C18 124 3 107 3 87C3 69 15 54 32 49C32 46 31 43 31 40C31 23 45 10 62 10C69 10 76 12 82 17C92 7 106 1 121 1C151 1 175 22 179 50C194 55 204 69 204 86C204 107 187 124 166 124H40Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M40 124C18 124 3 107 3 87C3 69 15 54 32 49C32 46 31 43 31 40C31 23 45 10 62 10C69 10 76 12 82 17C92 7 106 1 121 1C151 1 175 22 179 50C194 55 204 69 204 86C204 107 187 124 166 124H40Z' fill='black'/%3E%3C/svg%3E");
}

.n963-cloud-node--gcp::before,
.n963-cloud-node--gcp::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M43 124C21 124 5 108 5 87C5 72 14 59 28 53C27 50 27 47 27 44C27 29 39 17 54 17C61 17 67 19 72 24C79 11 92 3 108 3C126 3 141 14 147 29C151 27 157 26 162 26C181 26 196 41 196 60C196 64 195 68 194 71C201 77 205 87 205 97C205 112 193 124 178 124H43Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M43 124C21 124 5 108 5 87C5 72 14 59 28 53C27 50 27 47 27 44C27 29 39 17 54 17C61 17 67 19 72 24C79 11 92 3 108 3C126 3 141 14 147 29C151 27 157 26 162 26C181 26 196 41 196 60C196 64 195 68 194 71C201 77 205 87 205 97C205 112 193 124 178 124H43Z' fill='black'/%3E%3C/svg%3E");
}

.n963-cloud-node--oracle::before,
.n963-cloud-node--oracle::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M34 124C16 124 3 110 3 92C3 77 13 64 27 59C27 57 26 53 26 49C26 33 39 20 55 20C64 20 72 24 78 31C86 17 102 8 119 8C143 8 163 24 169 46C189 47 205 64 205 85C205 107 188 124 166 124H34Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 132'%3E%3Cpath d='M34 124C16 124 3 110 3 92C3 77 13 64 27 59C27 57 26 53 26 49C26 33 39 20 55 20C64 20 72 24 78 31C86 17 102 8 119 8C143 8 163 24 169 46C189 47 205 64 205 85C205 107 188 124 166 124H34Z' fill='black'/%3E%3C/svg%3E");
}

.n963-cloud-node::before {
  z-index: -2;
  background: rgba(185, 255, 213, 0.42);
}

.n963-cloud-node::after {
  z-index: -1;
  background:
    radial-gradient(circle at 36% 25%, rgba(39, 240, 111, 0.13), transparent 38%),
    rgba(7, 52, 50, 0.94);
  transform: scale(0.976);
}

.n963-cloud-node__outline {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(0 0 5px rgba(215, 255, 63, 0.45));
}

.n963-cloud-node__outline path {
  fill: none;
  stroke: var(--n963-accent-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: n963CloudOutlineDraw 4.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.n963-cloud-node--azure .n963-cloud-node__outline path {
  animation-delay: -1.05s;
}

.n963-cloud-node--gcp .n963-cloud-node__outline path {
  animation-delay: -2.1s;
}

.n963-cloud-node--oracle .n963-cloud-node__outline path {
  animation-delay: -3.15s;
}

.n963-cloud-node i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--n963-accent-yellow);
  background: rgba(215, 255, 63, 0.1);
  border-radius: 9px;
  font-size: 1.2rem;
}

.n963-cloud-node span {
  position: relative;
  z-index: 1;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.n963-cloud-node--aws {
  top: -1%;
  left: -8%;
}

.n963-cloud-node--azure {
  top: -1%;
  right: -8%;
}

.n963-cloud-node--gcp {
  bottom: 1%;
  left: -8%;
}

.n963-cloud-node--oracle {
  right: -8%;
  bottom: 1%;
}

.n963-cloud-status {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(2, 30, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(50%);
}

.n963-cloud-status i {
  width: 7px;
  height: 7px;
  background: #67d8ff;
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(103, 216, 255, 0.9);
}

.n963-cloud-status strong {
  color: var(--n963-accent-yellow);
}

@keyframes n963CloudCorePulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

@keyframes n963CloudDataFlow {
  to {
    left: 100%;
  }
}

@keyframes n963CloudOutlineDraw {
  0% {
    opacity: 0.28;
    stroke-dashoffset: 1;
  }
  42%,
  68% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0.28;
    stroke-dashoffset: -1;
  }
}

.n963-cloud-performance {
  position: relative;
  overflow: hidden;
  background: #004e9e;
}

.n963-cloud-performance > .n963-container {
  width: min(100%, 1380px);
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(24px, 4vw, 48px);
  padding-left: clamp(24px, 4vw, 48px);
}

.n963-cloud-performance-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
}

.n963-cloud-performance .n963-product-section-heading {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.n963-cloud-performance .n963-product-section-heading h2 {
  max-width: none;
}

.n963-cloud-performance .n963-product-section-heading p:not(.n963-eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

#n963-multi-cloud .n963-cloud-performance .n963-eyebrow {
  color: #67d8ff;
}

#n963-multi-cloud .n963-cloud-performance .n963-product-section-heading h2 {
  color: #f2f7fb;
}

#n963-multi-cloud .n963-cloud-performance .n963-product-section-heading p:not(.n963-eyebrow) {
  color: #9eafc2;
}

.n963-cloud-performance-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.n963-cloud-mode-visuals {
  position: relative;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(103, 216, 255, 0.1), transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(39, 240, 111, 0.08), transparent 36%),
    rgba(4, 18, 36, 0.35);
  border: 1px solid rgba(103, 216, 255, 0.16);
  border-radius: 4px 28px 4px 28px;
}

.n963-cloud-mode-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.n963-cloud-mode-panel.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.n963-cloud-mode-kicker {
  position: absolute;
  top: 22px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9eafc2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.n963-cloud-mode-kicker i {
  width: 8px;
  height: 8px;
  background: #67d8ff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(103, 216, 255, 0.72);
}

/* Capacity mode */
.n963-capacity-flow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.n963-capacity-endpoint {
  position: relative;
  z-index: 2;
  display: grid;
  width: clamp(112px, 11vw, 142px);
  min-height: 108px;
  place-content: center;
  color: #f2f7fb;
  background: rgba(7, 28, 50, 0.94);
  border: 1px solid rgba(103, 216, 255, 0.34);
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 18px 44px rgba(0, 12, 32, 0.24);
  text-align: center;
}

.n963-capacity-endpoint--target {
  border-color: rgba(39, 240, 111, 0.48);
}

.n963-capacity-endpoint small {
  margin-bottom: 8px;
  color: #7891a8;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-capacity-endpoint strong {
  color: #67d8ff;
  font-size: 2.1rem;
  letter-spacing: -0.07em;
}

.n963-capacity-endpoint--target strong {
  color: var(--n963-primary-green);
}

.n963-capacity-pipe {
  position: relative;
  width: min(28vw, 280px);
  height: 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(103, 216, 255, 0.16) 16%, rgba(39, 240, 111, 0.18) 84%, transparent),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(103, 216, 255, 0.16) 14px 15px);
  border-top: 1px solid rgba(103, 216, 255, 0.36);
  border-bottom: 1px solid rgba(39, 240, 111, 0.3);
}

.n963-capacity-pipe span {
  position: absolute;
  top: calc(12px + var(--n963-pipe-lane, 0) * 14px);
  left: -18px;
  width: 10px;
  height: 10px;
  background: #67d8ff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(103, 216, 255, 0.82);
  opacity: 0;
}

.n963-capacity-pipe span:nth-child(1) { --n963-pipe-lane: 0; }
.n963-capacity-pipe span:nth-child(2) { --n963-pipe-lane: 1; }
.n963-capacity-pipe span:nth-child(3) { --n963-pipe-lane: 2; }
.n963-capacity-pipe span:nth-child(4) { --n963-pipe-lane: 3; }

.n963-cloud-mode-panel--capacity.is-active .n963-capacity-pipe span {
  animation: n963CapacityPacket 1.6s linear infinite;
}

.n963-cloud-mode-panel--capacity.is-active .n963-capacity-pipe span:nth-child(2) { animation-delay: -0.4s; }
.n963-cloud-mode-panel--capacity.is-active .n963-capacity-pipe span:nth-child(3) { animation-delay: -0.8s; }
.n963-cloud-mode-panel--capacity.is-active .n963-capacity-pipe span:nth-child(4) { animation-delay: -1.2s; }

.n963-capacity-pipe > i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 80%);
  transform: translateX(-100%);
}

.n963-cloud-mode-panel--capacity.is-active .n963-capacity-pipe > i {
  animation: n963CapacitySweep 2.4s ease-in-out infinite;
}

.n963-capacity-meter {
  width: min(88%, 480px);
  margin: 42px auto 0;
}

.n963-capacity-meter > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #7891a8;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-capacity-meter > div strong {
  color: var(--n963-primary-green);
}

.n963-capacity-meter > i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.n963-capacity-meter b {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #67d8ff, var(--n963-primary-green));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.n963-cloud-mode-panel--capacity.is-active .n963-capacity-meter b {
  animation: n963CapacityFill 1.25s 180ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes n963CapacityPacket {
  0% { left: -18px; opacity: 0; transform: scale(0.7); }
  12%, 85% { opacity: 1; }
  100% { left: calc(100% + 18px); opacity: 0; transform: scale(1); }
}

@keyframes n963CapacitySweep {
  0%, 20% { transform: translateX(-100%); }
  80%, 100% { transform: translateX(100%); }
}

@keyframes n963CapacityFill {
  to { transform: scaleX(1); }
}

/* L2 / L3 mode */
.n963-layer-stack {
  position: relative;
  display: grid;
  gap: 28px;
  width: min(94%, 520px);
  margin: 18px auto 0;
}

.n963-layer-plane {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  min-height: 108px;
  padding: 22px 28px;
  background: rgba(7, 28, 50, 0.92);
  border: 1px solid rgba(103, 216, 255, 0.28);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(0, 12, 32, 0.2);
  opacity: 0.4;
  transform: translateX(-26px);
}

.n963-layer-plane--l2 {
  border-color: rgba(39, 240, 111, 0.28);
  transform: translateX(26px);
}

.n963-layer-plane > strong {
  color: #67d8ff;
  font-size: 2rem;
  letter-spacing: -0.07em;
}

.n963-layer-plane--l2 > strong {
  color: var(--n963-primary-green);
}

.n963-layer-plane > span {
  color: #9eafc2;
  font-size: 0.78rem;
  font-weight: 700;
}

.n963-layer-plane > div {
  display: flex;
  gap: 7px;
}

.n963-layer-plane > div i {
  width: 9px;
  height: 9px;
  background: #67d8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(103, 216, 255, 0.52);
}

.n963-layer-plane--l2 > div i {
  background: var(--n963-primary-green);
}

.n963-layer-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 7px;
  transform: translate(-50%, -50%) rotate(90deg);
}

.n963-layer-connector i {
  width: 7px;
  height: 7px;
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  opacity: 0.2;
}

.n963-cloud-mode-panel--layers.is-active .n963-layer-plane {
  animation: n963LayerPlaneIn 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.n963-cloud-mode-panel--layers.is-active .n963-layer-plane--l2 {
  animation-delay: 260ms;
}

.n963-cloud-mode-panel--layers.is-active .n963-layer-connector i {
  animation: n963LayerConnector 1.2s ease-in-out infinite;
}

.n963-cloud-mode-panel--layers.is-active .n963-layer-connector i:nth-child(2) { animation-delay: 160ms; }
.n963-cloud-mode-panel--layers.is-active .n963-layer-connector i:nth-child(3) { animation-delay: 320ms; }

@keyframes n963LayerPlaneIn {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes n963LayerConnector {
  0%, 100% { opacity: 0.2; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Private path mode */
.n963-private-path {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(140px, 1fr) 88px 112px;
  align-items: center;
  width: min(96%, 620px);
  margin: 28px auto 0;
}

.n963-private-endpoint {
  display: grid;
  width: min(100%, 104px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: center;
  place-content: center;
  color: #f2f7fb;
  background: rgba(7, 28, 50, 0.94);
  border: 1px solid rgba(103, 216, 255, 0.28);
  border-radius: 50%;
  text-align: center;
}

.n963-private-endpoint > i {
  margin-bottom: 10px;
  color: #67d8ff;
  font-size: 1.3rem;
}

.n963-private-endpoint span {
  font-size: 0.7rem;
  font-weight: 800;
}

.n963-private-routes {
  position: relative;
  height: 112px;
}

.n963-private-route {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
}

.n963-private-route--public {
  top: 28px;
  border-top: 2px dashed rgba(255, 170, 92, 0.48);
}

.n963-private-route--secure {
  bottom: 28px;
  background: linear-gradient(90deg, #67d8ff, var(--n963-primary-green));
  box-shadow: 0 0 12px rgba(39, 240, 111, 0.28);
}

.n963-private-route i {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

.n963-private-route--public i {
  background: #ff9f62;
}

.n963-private-route--secure i {
  background: var(--n963-accent-yellow);
  box-shadow: 0 0 11px rgba(215, 255, 63, 0.82);
}

.n963-cloud-mode-panel--private.is-active .n963-private-route i {
  animation: n963PrivatePacket 1.6s linear infinite;
}

.n963-cloud-mode-panel--private.is-active .n963-private-route i:nth-child(2) { animation-delay: -0.53s; }
.n963-cloud-mode-panel--private.is-active .n963-private-route i:nth-child(3) { animation-delay: -1.06s; }

.n963-cloud-mode-panel--private.is-active .n963-private-route--public {
  animation: n963PublicPathFade 2.6s ease-in-out infinite;
}

.n963-private-shield {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 106px;
  filter: drop-shadow(0 0 10px rgba(39, 240, 111, 0.22));
}

.n963-private-shield svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n963-private-shield__halo {
  fill: none;
  stroke: rgba(103, 216, 255, 0.24);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 3 5;
  transform-box: fill-box;
  transform-origin: center;
}

.n963-private-shield__fill {
  fill: rgba(39, 240, 111, 0.09);
  stroke: none;
}

.n963-private-shield__track {
  fill: none;
  stroke: rgba(39, 240, 111, 0.44);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.n963-private-shield__scrub {
  fill: none;
  stroke: var(--n963-primary-green);
  stroke-width: 2.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 18 82;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.72));
}

.n963-private-shield__check {
  fill: none;
  stroke: var(--n963-accent-yellow);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  filter: drop-shadow(0 0 4px rgba(215, 255, 63, 0.45));
}

.n963-cloud-mode-panel--private.is-active .n963-private-shield {
  animation: n963PrivateShieldLock 700ms 380ms cubic-bezier(0.16, 1, 0.3, 1) both,
    n963PrivateShieldPulse 2.2s 1.1s ease-in-out infinite;
}

.n963-cloud-mode-panel--private.is-active .n963-private-shield__halo {
  animation: n963PrivateShieldHalo 2.8s 900ms ease-in-out infinite;
}

.n963-cloud-mode-panel--private.is-active .n963-private-shield__scrub {
  animation: n963PrivateShieldScrub 2.4s 700ms linear infinite;
}

.n963-cloud-mode-panel--private.is-active .n963-private-shield__check {
  animation: n963PrivateShieldCheck 620ms 850ms ease-out forwards;
}

.n963-private-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  color: #9eafc2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-private-status > i {
  width: 8px;
  height: 8px;
  background: var(--n963-primary-green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(39, 240, 111, 0.72);
}

.n963-private-status strong {
  color: var(--n963-primary-green);
  font-size: inherit;
}

@keyframes n963PrivatePacket {
  0% { left: -8px; opacity: 0; }
  12%, 86% { opacity: 1; }
  100% { left: calc(100% + 8px); opacity: 0; }
}

@keyframes n963PublicPathFade {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.12; }
}

@keyframes n963PrivateShieldLock {
  0% { opacity: 0; transform: scale(0.62) rotate(-8deg); }
  70% { transform: scale(1.1) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes n963PrivateShieldPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(39, 240, 111, 0.22)); }
  50% { filter: drop-shadow(0 0 16px rgba(39, 240, 111, 0.52)); }
}

@keyframes n963PrivateShieldHalo {
  0%, 100% { opacity: 0.38; transform: scale(0.96); }
  50% { opacity: 0.86; transform: scale(1.06); }
}

@keyframes n963PrivateShieldScrub {
  to { stroke-dashoffset: -100; }
}

@keyframes n963PrivateShieldCheck {
  to { stroke-dashoffset: 0; }
}

.n963-cloud-route-map--legacy {
  display: none;
}

.n963-cloud-route-map {
  --n963-cloud-map-primary: #67d8ff;
  --n963-cloud-map-secondary: #d7ff3f;
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  z-index: 0;
  width: 100%;
  margin-top: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
  transform: none;
}

.n963-cloud-route-map[data-active-mode="capacity"] {
  --n963-cloud-map-primary: #67d8ff;
  --n963-cloud-map-secondary: #d7ff3f;
}

.n963-cloud-route-map[data-active-mode="layers"] {
  --n963-cloud-map-primary: #27f06f;
  --n963-cloud-map-secondary: #67d8ff;
}

.n963-cloud-route-map[data-active-mode="private"] {
  --n963-cloud-map-primary: #d7ff3f;
  --n963-cloud-map-secondary: #27f06f;
}

.n963-cloud-route-map__toolbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 20px;
  color: #7891a8;
  background: transparent;
  border-bottom: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.n963-cloud-route-map__toolbar strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9eafc2;
  font-size: inherit;
}

.n963-cloud-route-map__toolbar i {
  width: 7px;
  height: 7px;
  background: var(--n963-cloud-map-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--n963-cloud-map-primary);
}

.n963-cloud-route-map__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 620;
  overflow: hidden;
  margin-top: 30px;
}

.n963-cloud-route-map__stage::before {
  position: absolute;
  inset: 3%;
  background-image:
    linear-gradient(rgba(103, 216, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 216, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, #000 18%, transparent 72%);
  pointer-events: none;
}

.n963-cloud-route-map__stage::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(39, 240, 111, 0.09), transparent 68%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.n963-cloud-route-map__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n963-cloud-route-map__arcs {
  z-index: 1;
  pointer-events: none;
}

.n963-cloud-route-map__arc {
  fill: none;
  stroke: var(--n963-cloud-map-primary);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(39, 240, 111, 0.54));
  opacity: 0;
  animation: n963CloudMapArc 1.45s ease-out forwards;
}

.n963-cloud-route-map__arc--ambient {
  stroke: var(--n963-cloud-map-secondary);
  stroke-width: 1.15;
  filter: drop-shadow(0 0 3px rgba(70, 207, 255, 0.38));
}

.n963-cloud-route-map[data-active-mode="capacity"] .n963-cloud-route-map__arc {
  animation-duration: 1s;
}

.n963-cloud-route-map[data-active-mode="layers"] .n963-cloud-route-map__arc {
  animation-duration: 1.35s;
}

.n963-cloud-route-map[data-active-mode="private"] .n963-cloud-route-map__arc {
  animation-duration: 1.6s;
}

.n963-cloud-route-map__packet {
  fill: var(--n963-cloud-map-secondary);
  filter: drop-shadow(0 0 3px rgba(215, 255, 63, 0.9));
  opacity: 0;
  animation: n963CloudMapPacket 1.2s ease-in-out forwards;
}

.n963-cloud-route-map__packet--ambient {
  fill: #67d8ff;
  filter: drop-shadow(0 0 2px rgba(103, 216, 255, 0.75));
}

@keyframes n963CloudMapArc {
  0% { stroke-dashoffset: var(--n963-map-arc-length); opacity: 0; }
  10% { opacity: 0.92; }
  64% { opacity: 0.56; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes n963CloudMapPacket {
  0%, 100% { opacity: 0; }
  14%, 82% { opacity: 1; }
}

.n963-cloud-route-map__hub {
  position: absolute;
  top: 60.2%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  padding: 0;
  color: var(--n963-white);
  background: rgba(5, 42, 52, 0.96);
  border: 1.5px solid var(--n963-cloud-map-primary);
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 28px rgba(39, 240, 111, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.n963-cloud-route-map__hub::before {
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(103, 216, 255, 0.42);
  border-radius: 50%;
  content: "";
  animation: n963CloudMapHubOrbit 10s linear infinite;
}

.n963-cloud-route-map__hub::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(103, 216, 255, 0.12);
  border-radius: 50%;
  content: "";
  animation: n963CloudMapHubInnerPulse 2.8s ease-in-out infinite;
}

.n963-cloud-route-map__hub i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  background: transparent;
  border: 1px solid rgba(39, 240, 111, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(39, 240, 111, 0.12);
  transform: translate(-50%, -50%);
  animation: n963CloudMapHubPulse 2.4s ease-out infinite;
}

.n963-cloud-route-map__hub strong {
  color: var(--n963-accent-yellow);
  font-size: 1.45rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.n963-cloud-route-map__hub span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes n963CloudMapHubPulse {
  0% { opacity: 0.58; transform: translate(-50%, -50%) scale(0.94); }
  72% { opacity: 0.08; transform: translate(-50%, -50%) scale(1.14); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.14); }
}

@keyframes n963CloudMapHubOrbit {
  to { transform: rotate(360deg); }
}

@keyframes n963CloudMapHubInnerPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.92); }
  50% { opacity: 0.75; transform: scale(1); }
}

.n963-cloud-route-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 230px;
  height: 124px;
  min-width: 0;
  min-height: 0;
  padding: 16px 24px 6px;
  color: #9eb4c8;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 320ms ease;
}

.n963-cloud-route-node::before {
  position: absolute;
  inset: 15% 9% 7%;
  width: auto;
  height: auto;
  border: 1px solid rgba(39, 240, 111, 0.7);
  border-radius: 48%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.n963-cloud-route-node > svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n963-cloud-route-node > svg path {
  fill: rgba(7, 50, 57, 0.94);
  stroke: rgba(103, 216, 255, 0.55);
  stroke-width: 1.6;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  animation: n963CloudMapCloudIdle 3.6s ease-in-out infinite;
  transition: fill 360ms ease, stroke 360ms ease, filter 360ms ease;
}

.n963-cloud-route-node:nth-of-type(2) > svg path {
  animation-delay: -0.8s;
}

.n963-cloud-route-node:nth-of-type(3) > svg path {
  animation-delay: -1.6s;
}

.n963-cloud-route-node:nth-of-type(4) > svg path {
  animation-delay: -2.4s;
}

.n963-cloud-route-node[data-provider="gcp"],
.n963-cloud-route-node[data-provider="gcp"].is-active {
  width: 230px;
  height: 124px;
  gap: 12px;
  padding: 16px 24px 6px;
}

.n963-cloud-route-node[data-provider="gcp"] > i {
  width: 43px;
  height: 43px;
  font-size: 1.2rem;
}

.n963-cloud-route-node[data-provider="gcp"] > span {
  min-width: 0;
  max-width: none;
}

.n963-cloud-route-node[data-provider="gcp"] strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.n963-cloud-route-node[data-provider="gcp"] small {
  font-size: 0.6rem;
  letter-spacing: 0.01em;
}

.n963-cloud-route-node > i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--n963-accent-yellow);
  background: rgba(215, 255, 63, 0.1);
  border-radius: 11px;
  font-size: 1.2rem;
}

.n963-cloud-route-node > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: auto;
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  opacity: 1;
}

.n963-cloud-route-node strong,
.n963-cloud-route-node small {
  display: block;
}

.n963-cloud-route-node strong {
  color: var(--n963-white);
  font-size: 0.89rem;
}

.n963-cloud-route-node small {
  margin-top: 2px;
  color: #76bcd5;
  font-size: 0.6rem;
}

.n963-cloud-route-node.is-active {
  width: 230px;
  min-width: 0;
  padding: 16px 24px 6px;
  color: var(--n963-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: n963CloudMapPinDrop 560ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.n963-cloud-route-node.is-active > svg path {
  fill: rgba(5, 54, 53, 0.98);
  stroke: var(--n963-cloud-map-primary);
  filter: drop-shadow(0 0 7px rgba(103, 216, 255, 0.55));
  animation:
    n963CloudMapCloudTrace 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards,
    n963CloudMapCloudGlow 2.4s 760ms ease-in-out infinite;
}

.n963-cloud-route-node.is-active::before {
  animation: n963CloudMapNodePulse 1.9s ease-out infinite;
}

.n963-cloud-route-node.is-active > span {
  width: auto;
  opacity: 1;
}

.n963-cloud-route-node.is-active strong {
  color: var(--n963-white);
}

.n963-cloud-route-node.is-active small {
  color: var(--n963-cloud-map-primary);
}

.n963-cloud-route-node.is-active > i {
  animation: n963CloudMapIconPulse 1.8s ease-in-out infinite;
}

@keyframes n963CloudMapCloudIdle {
  0%, 100% { stroke-opacity: 0.48; }
  50% { stroke-opacity: 0.82; }
}

@keyframes n963CloudMapCloudTrace {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes n963CloudMapCloudGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(103, 216, 255, 0.28)); }
  50% { filter: drop-shadow(0 0 11px rgba(103, 216, 255, 0.72)); }
}

@keyframes n963CloudMapIconPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(215, 255, 63, 0); transform: scale(1); }
  50% { box-shadow: 0 0 18px rgba(215, 255, 63, 0.18); transform: scale(1.06); }
}

@keyframes n963CloudMapPinDrop {
  0% { opacity: 0; transform: translate(-50%, calc(-50% - 15px)) scale(0.78); }
  65% { opacity: 1; transform: translate(-50%, calc(-50% + 2px)) scale(1.04); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@keyframes n963CloudMapNodePulse {
  0% { opacity: 0.54; transform: scale(0.88); }
  100% { opacity: 0; transform: scale(1.16); }
}

.n963-cloud-route-map__status {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #a9bbca;
  background: rgba(7, 22, 38, 0.88);
  border: 1px solid rgba(70, 207, 255, 0.2);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.n963-cloud-route-map__status i {
  width: 7px;
  height: 7px;
  background: var(--n963-cloud-map-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--n963-cloud-map-primary);
}

.n963-cloud-route-map__status strong {
  color: var(--n963-accent-yellow);
  font-size: inherit;
}

.n963-cloud-performance-accordion {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-top: 0;
}

.n963-cloud-performance-toggle {
  border-top: 1px solid rgba(151, 187, 218, 0.22);
}

.n963-cloud-performance-toggle:last-child {
  border-bottom: 1px solid rgba(151, 187, 218, 0.22);
}

.n963-cloud-performance-toggle > button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 20px 2px;
  color: #f2f7fb;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.n963-cloud-performance-toggle__index {
  color: #67d8ff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.n963-cloud-performance-toggle > button strong {
  color: #f2f7fb;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color 280ms ease;
}

.n963-cloud-performance-toggle.is-active > button strong {
  color: #67d8ff;
}

.n963-cloud-performance-toggle > button > i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.n963-cloud-performance-toggle > button > i::before,
.n963-cloud-performance-toggle > button > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: #9eafc2;
  border-radius: 2px;
  content: "";
  transition: transform 320ms ease, background 280ms ease;
}

.n963-cloud-performance-toggle > button > i::before {
  transform: translate(-78%, -50%) rotate(40deg);
}

.n963-cloud-performance-toggle > button > i::after {
  transform: translate(-18%, -50%) rotate(-40deg);
}

.n963-cloud-performance-toggle.is-active > button > i::before {
  background: #67d8ff;
  transform: translate(-78%, -50%) rotate(-40deg);
}

.n963-cloud-performance-toggle.is-active > button > i::after {
  background: #67d8ff;
  transform: translate(-18%, -50%) rotate(40deg);
}

.n963-cloud-performance-toggle__panel {
  max-height: 0;
  padding: 0 28px 0 46px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 480ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 360ms ease,
    opacity 300ms ease,
    transform 380ms ease;
}

.n963-cloud-performance-toggle__panel p {
  max-width: 420px;
  margin: 0;
  color: #9eafc2;
 
}

.n963-cloud-performance-toggle.is-active .n963-cloud-performance-toggle__panel {
  max-height: 140px;
  padding-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
}

.n963-cloud-metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1120px);
  gap: 16px;
}

.n963-cloud-metric {
  min-height: 280px;
  padding: clamp(26px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(14, 37, 59, 0.96), rgba(8, 23, 38, 0.92));
  border: 1px solid rgba(96, 163, 204, 0.24);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(157, 213, 241, 0.08);
}

.n963-cloud-metric > span {
  display: block;
  margin-bottom: 44px;
  color: #7891a8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.n963-cloud-metric strong {
  display: block;
  margin-bottom: 20px;
  color: #67d8ff;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.n963-cloud-metric p {
  max-width: 330px;
  margin: 0;
  color: #9eafc2;
  font-size: 0.93rem;
}

.n963-cloud-onramps-heading {
  position: relative;
  z-index: 2;
}

#n963-cloud-onramps .n963-cloud-onramps-heading {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(30px, 4vw, 20px);
  align-items: center;
  margin-bottom: 0;
}

#n963-cloud-onramps .n963-product-heading-illustration-stage,
#n963-cloud-onramps .n963-product-section-heading-image {
  max-width: 728px;
}

.n963-cloud-onramps-bubble--handoff {
  top: auto;
  bottom: 12%;
  left: 14%;
  width: 120px;
  height: 120px;
  background: rgba(215, 255, 63, 0.9);
  transition-delay: 40ms;
}

.n963-cloud-onramps-bubble--providers {
  top: -3%;
  right: 5%;
  width: 112px;
  height: 112px;
  font-size: 0.82rem;
  background: rgb(176 255 232 / 92%);
  transition-delay: 140ms;
}

.n963-cloud-onramps-bubble--routing {
  top: 68%;
  bottom: auto;
  left: 75%;
  width: 112px;
  height: 112px;
  font-size: 0.84rem;
  background: rgba(134, 211, 255, 0.92);
  transition-delay: 240ms;
}

.n963-cloud-onramps-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px 0 40px 0;
}

.n963-cloud-onramps-map {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 72% 30%, rgba(39, 240, 111, 0.12), transparent 28%),
    #0c335b;
}

.n963-cloud-onramps-map__stage {
  position: relative;
  flex: 1;
  min-height: 390px;
  overflow: hidden;
}

.n963-cloud-onramps-map__stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 216, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 216, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 8%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, #000 8%, transparent 76%);
}

.n963-cloud-onramps-route-map {
  width: 100%;
  margin: 0 auto;
}

.n963-cloud-onramps-route-map .n963-cloud-route-map__hub {
  z-index: 5;
  top: 50%;
}

.n963-cloud-onramps-route-map .n963-cloud-route-map__arcs {
  z-index: 1;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node {
  z-index: 4;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node::before {
  display: none;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node > svg {
  filter: drop-shadow(0 0 5px rgba(215, 255, 63, 0.35));
}

.n963-cloud-onramps-route-map .n963-cloud-route-node > svg path,
.n963-cloud-onramps-route-map .n963-cloud-route-node.is-active > svg path {
  fill: #0c335b;
  stroke: var(--n963-accent-yellow);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: none;
  animation: n963CloudOutlineDraw 4.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node[data-provider="azure"] > svg path {
  animation-delay: -1.05s;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node[data-provider="gcp"] > svg path {
  animation-delay: -2.1s;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node[data-provider="oracle"] > svg path {
  animation-delay: -3.15s;
}

.n963-cloud-onramps-route-map .n963-cloud-route-node.is-active > svg {
  filter: drop-shadow(0 0 9px rgba(215, 255, 63, 0.62));
}

.n963-cloud-onramps-route-map .n963-cloud-route-node.is-active > i {
  color: var(--n963-accent-yellow);
  background: rgba(215, 255, 63, 0.13);
}

.n963-cloud-onramps-topology {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.n963-cloud-onramps-topology path {
  fill: none;
  stroke: rgba(103, 216, 255, 0.46);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  vector-effect: non-scaling-stroke;
  animation: n963CloudOnrampRoute 9s linear infinite;
}

.n963-cloud-onramps-packet {
  fill: var(--n963-accent-yellow);
  filter: drop-shadow(0 0 5px rgba(215, 255, 63, 0.9));
}

.n963-cloud-onramp-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  background: rgba(5, 30, 52, 0.96);
  border: 1px solid rgba(39, 240, 111, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(39, 240, 111, 0.16), inset 0 0 26px rgba(103, 216, 255, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.n963-cloud-onramp-hub > i {
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(103, 216, 255, 0.38);
  border-radius: 50%;
  animation: n963CloudOnrampOrbit 12s linear infinite;
}

.n963-cloud-onramp-hub strong {
  color: var(--n963-accent-yellow);
  font-size: 1.35rem;
  letter-spacing: -0.06em;
}

.n963-cloud-onramp-hub span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.n963-cloud-onramp-node {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 148px;
  min-height: 70px;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  color: #fff;
  background: rgba(7, 28, 50, 0.94);
  border: 1px solid rgba(103, 216, 255, 0.3);
  border-radius: 18px 5px 18px 5px;
  box-shadow: 0 14px 28px rgba(0, 8, 24, 0.26);
  transform: translate(-50%, -50%);
}

.n963-cloud-onramp-node--aws { top: 25.1%; left: 20.8%; }
.n963-cloud-onramp-node--azure { top: 25.1%; left: 79.2%; }
.n963-cloud-onramp-node--gcp { top: 75.8%; left: 20.8%; }
.n963-cloud-onramp-node--oracle { top: 75.8%; left: 79.2%; }

.n963-cloud-onramp-node > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--n963-deep-green);
  background: var(--n963-primary-green);
  border-radius: 11px 2px 11px 2px;
  font-size: 0.9rem;
}

.n963-cloud-onramp-node > span {
  display: grid;
  min-width: 0;
}

.n963-cloud-onramp-node strong {
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.1;
}

.n963-cloud-onramp-node small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.49rem;
  line-height: 1.1;
}

.n963-cloud-onramps-map figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 28px 32px 32px;
  background: linear-gradient(transparent, rgb(0 40 77) 34%);
}

.n963-cloud-onramps-map figcaption strong {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.045em;
}

.n963-cloud-onramps-map figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

@keyframes n963CloudOnrampRoute {
  to { stroke-dashoffset: -64; }
}

@keyframes n963CloudOnrampOrbit {
  to { transform: rotate(360deg); }
}

.n963-cloud-provider-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.n963-cloud-provider {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.72);
  transition: background 300ms ease, box-shadow 300ms ease;
}

.n963-cloud-provider:nth-child(odd) {
  border-right: 1px solid rgba(18, 60, 59, 0.12);
}

.n963-cloud-provider:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(18, 60, 59, 0.12);
}

.n963-cloud-provider:hover {
  background: #fff;
  box-shadow: inset 4px 0 0 var(--n963-primary-green);
}

.n963-cloud-provider__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: #ffffff;
  background: #0083ff;
  border-radius: 14px 2px 14px 2px;
  font-size: 1.15rem;
}

.n963-cloud-provider > span {
  margin-bottom: 8px;
  color: var(--n963-muted-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-cloud-provider h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.n963-cloud-provider p {
  margin-bottom: 24px;
  color: var(--n963-muted-text);
  font-size: 0.91rem;
}

.n963-cloud-provider small {
  margin-top: auto;
  color: var(--n963-deep-green);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

@media (max-width: 1200px) {
  #n963-cloud-onramps .n963-cloud-onramps-heading {
    grid-template-columns: 1fr;
  }

  #n963-cloud-onramps .n963-product-section-heading-visual {
    display: none;
  }

  #n963-multi-cloud .n963-product-hero-layout {
    grid-template-columns: 1fr;
  }

  #n963-multi-cloud .n963-product-hero-visual {
    width: 100%;
    min-height: 500px;
    margin-left: 0;
  }

  .n963-cloud-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n963-cloud-onramps-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  }
}

@media (max-width: 980px) {
  .n963-cloud-onramps-layout {
    grid-template-columns: 1fr;
  }

  .n963-cloud-onramps-map {
    min-height: 430px;
  }

  .n963-cloud-onramps-map__stage {
    min-height: 310px;
  }

  .n963-cloud-performance-layout {
    gap: 24px;
  }

  .n963-cloud-performance .n963-product-section-heading {
    max-width: none;
  }

  .n963-cloud-performance .n963-product-section-heading h2 {
    max-width: none;
  }

  .n963-cloud-performance-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .n963-cloud-performance-stage.is-mobile-stacked .n963-cloud-mode-visuals {
    display: none;
  }

  .n963-cloud-performance-toggle__panel .n963-cloud-mode-panel {
    position: relative;
    inset: auto;
    z-index: 1;
    display: flex;
    min-height: 320px;
    margin-top: 16px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: hidden;
    background:
      radial-gradient(circle at 30% 40%, rgba(103, 216, 255, 0.1), transparent 42%),
      radial-gradient(circle at 78% 68%, rgba(39, 240, 111, 0.08), transparent 36%),
      rgba(4, 18, 36, 0.35);
    border: 1px solid rgba(103, 216, 255, 0.16);
    border-radius: 4px 28px 4px 28px;
  }

  .n963-cloud-performance-toggle.is-active .n963-cloud-performance-toggle__panel {
    max-height: 760px;
    padding-bottom: 24px;
  }

  .n963-cloud-mode-visuals {
    min-height: 420px;
  }

  .n963-private-path {
    grid-template-columns: 96px minmax(100px, 1fr) 72px 96px;
    width: min(100%, 560px);
  }

  .n963-cloud-route-map {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 720px);
    margin: 16px auto 10px;
    transform: none;
  }

  .n963-cloud-metric-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .n963-cloud-metric {
    min-height: 0;
  }

  .n963-cloud-metric > span {
    margin-bottom: 26px;
  }
}

@media (max-width: 680px) {
  #n963-multi-cloud .n963-product-hero-visual {
    display: none;
  }

  .n963-cloud-provider-grid {
    grid-template-columns: 1fr;
  }

  .n963-cloud-provider {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 60, 59, 0.12);
  }

  .n963-cloud-provider:nth-child(odd) {
    border-right: 0;
  }

  .n963-cloud-provider:last-child {
    border-bottom: 0;
  }

  .n963-cloud-onramps-map {
    min-height: 350px;
  }

  .n963-cloud-onramps-map__stage {
    min-height: 250px;
  }

  .n963-cloud-onramp-hub {
    width: 84px;
    height: 84px;
  }

  .n963-cloud-onramp-hub strong {
    font-size: 1.05rem;
  }

  .n963-cloud-onramp-node {
    width: 112px;
    min-height: 56px;
    gap: 7px;
    padding: 8px 9px;
    border-radius: 13px 4px 13px 4px;
  }

  .n963-cloud-onramp-node > i {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    font-size: 0.7rem;
  }

  .n963-cloud-onramp-node strong {
    font-size: 0.61rem;
  }

  .n963-cloud-onramp-node small {
    font-size: 0.42rem;
  }

  .n963-cloud-onramps-map figcaption {
    padding: 22px;
  }

  .n963-cloud-mode-visuals {
    min-height: 360px;
  }

  .n963-cloud-mode-panel {
    padding: 48px 14px 18px;
  }

  .n963-cloud-mode-kicker {
    top: 16px;
    left: 16px;
  }

  .n963-capacity-endpoint {
    width: 82px;
    min-height: 82px;
    border-radius: 17px 5px 17px 5px;
  }

  .n963-capacity-endpoint small {
    font-size: 0.47rem;
  }

  .n963-capacity-endpoint strong {
    font-size: 1.36rem;
  }

  .n963-capacity-pipe {
    width: min(27vw, 130px);
    height: 58px;
  }

  .n963-capacity-meter {
    margin-top: 28px;
  }

  .n963-layer-stack {
    gap: 22px;
    margin-top: 12px;
  }

  .n963-layer-plane {
    grid-template-columns: 54px 1fr auto;
    min-height: 86px;
    padding: 16px;
  }

  .n963-layer-plane > strong {
    font-size: 1.45rem;
  }

  .n963-layer-plane > span {
    font-size: 0.61rem;
  }

  .n963-layer-plane > div i {
    width: 6px;
    height: 6px;
  }

  .n963-private-path {
    grid-template-columns: 72px minmax(56px, 1fr) 56px 72px;
    margin-top: 14px;
  }

  .n963-private-endpoint {
    min-height: 0;
    border-radius: 50%;
  }

  .n963-private-endpoint > i {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .n963-private-endpoint span {
    font-size: 0.55rem;
  }

  .n963-private-routes {
    height: 86px;
  }

  .n963-private-shield {
    width: 50px;
    height: 60px;
  }

  .n963-private-status {
    margin-top: 28px;
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }

  .n963-cloud-route-map {
    width: 100%;
    margin-left: 0;
  }

  .n963-cloud-route-node,
  .n963-cloud-route-node.is-active,
  .n963-cloud-route-node[data-provider="gcp"],
  .n963-cloud-route-node[data-provider="gcp"].is-active {
    width: 132px;
    height: 76px;
    min-width: 0;
    padding: 10px 14px 3px;
  }

  .n963-cloud-route-node > i,
  .n963-cloud-route-node[data-provider="gcp"] > i {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .n963-cloud-route-node strong,
  .n963-cloud-route-node[data-provider="gcp"] strong {
    font-size: 0.6rem;
  }

  .n963-cloud-route-node small,
  .n963-cloud-route-node[data-provider="gcp"] small {
    display: none;
  }

  .n963-cloud-route-map__hub {
    width: 104px;
    height: 104px;
  }

  .n963-cloud-route-map__hub strong {
    font-size: 1.1rem;
  }

  .n963-cloud-route-map__status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-cloud-onramps-topology path,
  .n963-cloud-onramp-hub > i,
  .n963-cloud-mode-panel,
  .n963-capacity-pipe span,
  .n963-capacity-pipe > i,
  .n963-capacity-meter b,
  .n963-layer-plane,
  .n963-layer-connector i,
  .n963-private-route,
  .n963-private-route i,
  .n963-private-shield,
  .n963-private-shield__halo,
  .n963-private-shield__scrub,
  .n963-private-shield__check,
  .n963-cloud-core__pulse,
  .n963-cloud-fabric__flow,
  .n963-cloud-route::after,
  .n963-cloud-node__outline path,
  .n963-cloud-route-map__hub i,
  .n963-cloud-route-map__hub::before,
  .n963-cloud-route-map__hub::after,
  .n963-cloud-route-node,
  .n963-cloud-route-node::before,
  .n963-cloud-route-node > svg path,
  .n963-cloud-route-node.is-active > i,
  .n963-cloud-route-map__arc {
    animation: none;
  }

  .n963-cloud-fabric__packet,
  .n963-cloud-onramps-packet {
    display: none;
  }

  .n963-cloud-mode-panel.is-active,
  .n963-layer-plane {
    opacity: 1;
    transform: none;
  }

  .n963-capacity-meter b {
    transform: scaleX(1);
  }

  .n963-cloud-node__outline path {
    stroke-dashoffset: 0;
  }

  .n963-cloud-onramps-route-map .n963-cloud-route-node > svg path {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .n963-cloud-route-map__arc {
    opacity: 0.42;
    stroke-dashoffset: 0;
  }
}

/* SECTION: ENTERPRISE VPN & ZTNA */
#n963-enterprise-vpn .n963-product-hero-intro h1 {
  font-size: clamp(2.65rem, 5.35vw, 5.35rem);
}

#n963-vpn-deployment .n963-product-heading-illustration-stage,
#n963-vpn-deployment .n963-product-section-heading-image {
  max-width: 650px;
}

.n963-vpn-deployment-bubble--policy {
  top: -4%;
  left: 15%;
  width: 116px;
  height: 116px;
  background: rgba(215, 255, 63, 0.9);
  transition-delay: 40ms;
}

.n963-vpn-deployment-bubble--identity {
  top: 3%;
  right: 19%;
  width: 108px;
  height: 108px;
  font-size: 0.82rem;
  background: rgb(176 255 232 / 92%);
  transition-delay: 140ms;
}


.n963-vpn-deployment-bubble--tunnels {
  bottom: 5%;
  left: 57%;
  width: 112px;
  height: 112px;
  font-size: 0.82rem;
  background: rgba(134, 211, 255, 0.92);
  transition-delay: 240ms;
}


.n963-vpn-hero-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(540px, 43vw);
  aspect-ratio: 1;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.n963-vpn-hero-stage::before {
  position: absolute;
  inset: 12%;
  content: "";
  background: rgba(39, 240, 111, 0.13);
  border-radius: 50%;
  filter: blur(34px);
  animation: n963VpnPulse 3s ease-in-out infinite;
}

.n963-vpn-hero-orbit {
  position: absolute;
  border: 1px solid rgba(185, 255, 213, 0.2);
  border-radius: 50%;
}

.n963-vpn-hero-orbit--outer {
  inset: 3%;
  border-style: dashed;
  animation: n963CoreSpin 22s linear infinite;
}

.n963-vpn-hero-orbit--inner {
  inset: 20%;
  border-color: rgba(215, 255, 63, 0.22);
}

.n963-vpn-hero-endpoint {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: flex;
  width: 187px;
  min-height: 94px;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  color: var(--n963-white);
  background: linear-gradient(145deg, rgba(9, 66, 61, 0.9), rgba(2, 35, 34, 0.82));
  border: 1px solid rgba(103, 216, 255, 0.25);
  border-radius: 22px 6px 22px 6px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  offset-path: circle(44% at 50% 50%);
  offset-anchor: 50% 50%;
  offset-rotate: 0deg;
  animation:
    n963VpnTagOrbit 24s linear infinite,
    n963VpnEndpointAuthorize 8s ease-in-out infinite;
}

.n963-vpn-hero-endpoint::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(39, 240, 111, 0.54);
  border-radius: 26px 8px 26px 8px;
  content: "";
  opacity: 0;
  transform: scale(0.94);
  animation: n963VpnEndpointRing 8s ease-out infinite;
}

.n963-vpn-hero-endpoint > div {
  display: grid;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  place-items: center;
  background: rgba(215, 255, 63, 0.1);
  border-radius: 14px 4px 14px 4px;
}

.n963-vpn-hero-endpoint > div i {
  color: var(--n963-accent-yellow);
  font-size: 1.3rem;
}

.n963-vpn-hero-endpoint > span {
  display: grid;
  min-width: 0;
  text-align: left;
}

.n963-vpn-hero-endpoint strong {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-vpn-hero-endpoint small {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
  color: rgba(185, 255, 213, 0.58);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.n963-vpn-hero-endpoint small b {
  width: 6px;
  height: 6px;
  background: var(--n963-primary-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(39, 240, 111, 0.68);
}

.n963-vpn-hero-endpoint--branch {
  animation-delay: -18s, 0s;
}

.n963-vpn-hero-endpoint--remote {
  animation-delay: 0s, 2s;
}

.n963-vpn-hero-endpoint--cloud {
  animation-delay: -12s, 6s;
}

.n963-vpn-hero-endpoint--remote::after {
  animation-delay: 2s;
}

.n963-vpn-hero-endpoint--cloud::after {
  animation-delay: 6s;
}

.n963-vpn-shield {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 190px;
  place-items: center;
  color: var(--n963-white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.n963-vpn-shield svg {
  width: 126px;
  margin-bottom: 10px;
  overflow: visible;
  filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.32));
}

.n963-vpn-shield .n963-vpn-protect-shield {
  width: 168px;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 18px rgba(39, 240, 111, 0.24));
}

.n963-vpn-shield .n963-protect-shield-fill {
  fill: #053f34;
  stroke: none;
}

.n963-vpn-shield .n963-protect-shield-beat {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.n963-vpn-protect-check {
  fill: none;
  stroke: var(--n963-accent-yellow);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  filter: drop-shadow(0 0 4px rgba(215, 255, 63, 0.58));
  animation: n963VpnCheck 700ms 420ms ease-out forwards;
}

.n963-vpn-shield__body {
  fill: rgba(5, 63, 52, 0.94);
  stroke: none;
}

.n963-vpn-shield__edge {
  fill: none;
  stroke: var(--n963-primary-green);
  stroke-width: 2.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: n963VpnDraw 1.8s 0.2s ease-out forwards;
}

.n963-vpn-shield__check {
  fill: none;
  stroke: var(--n963-accent-yellow);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: n963VpnCheck 700ms 1.6s ease-out forwards;
}

.n963-vpn-shield__pulse {
  position: absolute;
  top: 10px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(39, 240, 111, 0.45);
  border-radius: 50%;
  animation: n963VpnRing 2.4s ease-out infinite;
}

.n963-vpn-shield strong {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.n963-vpn-shield small {
  margin-top: 5px;
  color: rgba(185, 255, 213, 0.72);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.n963-vpn-access-links {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  border-radius: 50%;
}

.n963-vpn-access-rotor {
  transform-box: view-box;
  transform-origin: 270px 270px;
  animation: n963VpnLinkOrbit 24s linear infinite;
}

.n963-vpn-access-link {
  fill: none;
  stroke: rgba(103, 216, 255, 0.22);
  stroke-width: 2.4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.n963-vpn-access-link--flow {
  fill: none;
  stroke: url("#n963-vpn-request-gradient");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(103, 216, 255, 0.45));
  animation: n963VpnLinkFlow 1.4s linear infinite;
}

.n963-vpn-access-packet {
  opacity: 0;
}

.n963-vpn-access-packet--request {
  fill: #67d8ff;
  filter: drop-shadow(0 0 8px rgba(103, 216, 255, 0.9));
}

.n963-vpn-access-packet--grant {
  fill: var(--n963-primary-green);
  filter: drop-shadow(0 0 8px rgba(39, 240, 111, 0.85));
}

.n963-vpn-policy-sync {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 6;
  display: grid;
  min-width: 226px;
  gap: 9px;
  padding: 17px 20px;
  color: #fff;
  background: linear-gradient(145deg, rgba(8, 59, 56, 0.88), rgba(2, 34, 33, 0.82));
  border: 1px solid rgba(103, 216, 255, 0.22);
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  offset-path: circle(44% at 50% 50%);
  offset-anchor: 50% 50%;
  offset-rotate: 0deg;
  animation: n963VpnTagOrbit 24s -6s linear infinite;
}

.n963-vpn-policy-sync > span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(185, 255, 213, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-vpn-policy-sync > span i {
  width: 9px;
  height: 9px;
  background: var(--n963-primary-green);
  border-radius: 50%;
  box-shadow: 0 0 11px rgba(39, 240, 111, 0.74);
  animation: n963VpnSyncDot 1.8s ease-in-out infinite;
}

.n963-vpn-policy-sync > strong {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.n963-vpn-policy-sync > div {
  display: flex;
  gap: 6px;
}

.n963-vpn-policy-sync > div b {
  display: block;
  width: 39px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.n963-vpn-policy-sync > div b::after {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #67d8ff, var(--n963-primary-green));
  border-radius: inherit;
  content: "";
  transform: translateX(-100%);
  animation: n963VpnSyncBar 2.4s ease-in-out infinite;
}

.n963-vpn-policy-sync > div b:nth-child(2)::after {
  animation-delay: 160ms;
}

.n963-vpn-policy-sync > div b:nth-child(3)::after {
  animation-delay: 320ms;
}

.n963-vpn-tunnel {
  position: absolute;
  z-index: 2;
  height: 2px;
  overflow: visible;
  background: rgba(39, 240, 111, 0.28);
  transform-origin: left center;
}

.n963-vpn-tunnel--one {
  top: 19%;
  left: 26%;
  width: 38%;
  transform: rotate(31deg);
}

.n963-vpn-tunnel--two {
  top: 49%;
  left: 56%;
  width: 27%;
  transform: rotate(-8deg);
}

.n963-vpn-tunnel--three {
  top: 70%;
  left: 27%;
  width: 37%;
  transform: rotate(-34deg);
}

.n963-vpn-tunnel i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--n963-accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(215, 255, 63, 0.9);
  animation: n963VpnPacket 2.2s linear infinite;
}

.n963-vpn-tunnel i:nth-child(2) {
  animation-delay: -0.75s;
}

.n963-vpn-tunnel i:nth-child(3) {
  animation-delay: -1.5s;
}

.n963-vpn-hero-status {
  position: absolute;
  z-index: 6;
  right: 5%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(3, 35, 31, 0.78);
  border: 1px solid rgba(185, 255, 213, 0.16);
  border-radius: 999px;
}

.n963-vpn-hero-status i,
.n963-vpn-policy-console__head > i,
.n963-vpn-policy-console__footer > i {
  width: 7px;
  height: 7px;
  background: var(--n963-primary-green);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(39, 240, 111, 0.9);
}

.n963-vpn-topology {
  position: relative;
  min-height: 390px;
}

.n963-vpn-topology::before {
  position: absolute;
  inset: 8% 3%;
  content: "";
  background: radial-gradient(circle, rgba(39, 240, 111, 0.1), transparent 65%);
}

.n963-vpn-topology__core,
.n963-vpn-topology__node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--n963-white);
  border: 1px solid rgba(18, 60, 59, 0.14);
  box-shadow: 0 18px 35px rgba(10, 61, 50, 0.1);
}

.n963-vpn-topology__core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  gap: 5px;
  color: var(--n963-white);
  background: var(--n963-deep-green);
  border-color: rgba(39, 240, 111, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.n963-vpn-topology__core i {
  margin-bottom: 3px;
  color: var(--n963-accent-yellow);
  font-size: 1.45rem;
}

.n963-vpn-topology__core strong {
  font-size: 1.05rem;
}

.n963-vpn-topology__core span,
.n963-vpn-topology__node span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-vpn-topology__node {
  width: 112px;
  height: 76px;
  gap: 8px;
  color: var(--n963-deep-green);
  border-radius: 16px 4px 16px 4px;
}

.n963-vpn-topology__node i {
  color: var(--n963-primary-green-dark);
  font-size: 1.05rem;
}

.n963-vpn-topology__node--site {
  top: 2%;
  left: 4%;
}

.n963-vpn-topology__node--user {
  top: 2%;
  right: 4%;
}

.n963-vpn-topology__node--dc {
  bottom: 2%;
  left: 4%;
}

.n963-vpn-topology__node--workload {
  right: 4%;
  bottom: 2%;
}

.n963-vpn-topology__line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 36%;
  height: 2px;
  overflow: hidden;
  background: rgba(18, 94, 75, 0.18);
  transform-origin: left center;
}

.n963-vpn-topology__line::after {
  position: absolute;
  top: 0;
  left: -35%;
  width: 32%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--n963-primary-green), transparent);
  animation: n963VpnLine 2s linear infinite;
}

.n963-vpn-topology__line--one {
  transform: rotate(-143deg);
}

.n963-vpn-topology__line--two {
  transform: rotate(-37deg);
}

.n963-vpn-topology__line--three {
  transform: rotate(143deg);
}

.n963-vpn-topology__line--four {
  transform: rotate(37deg);
}

.n963-vpn-policy-console {
  overflow: hidden;
  color: var(--n963-white);
  background: #082e2c;
  border: 1px solid rgba(39, 240, 111, 0.22);
  border-radius: 22px 6px 22px 6px;
  box-shadow: 0 28px 60px rgba(7, 55, 48, 0.18);
}

.n963-vpn-policy-console__head,
.n963-vpn-policy-console__row,
.n963-vpn-policy-console__footer {
  display: flex;
  align-items: center;
}

.n963-vpn-policy-console__head {
  gap: 10px;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.n963-vpn-policy-console__head span {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.n963-vpn-policy-console__head strong {
  color: var(--n963-accent-yellow);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.n963-vpn-policy-console__row {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 15px;
  padding: 19px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.n963-vpn-policy-console__row span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.n963-vpn-policy-console__row strong {
  font-size: 0.78rem;
}

.n963-vpn-policy-console__row > i {
  color: var(--n963-primary-green);
}

.n963-vpn-policy-console__footer {
  gap: 9px;
  padding: 15px 20px;
  color: rgba(185, 255, 213, 0.62);
  font-size: 0.6rem;
  font-weight: 700;
}

@keyframes n963VpnEndpointAuthorize {
  0%, 3%, 29%, 100% {
    border-color: rgba(103, 216, 255, 0.25);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: scale(1);
  }
  8%, 22% {
    border-color: rgba(39, 240, 111, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 24px rgba(39, 240, 111, 0.16), inset 0 0 20px rgba(39, 240, 111, 0.08);
    transform: scale(1.04);
  }
}

@keyframes n963VpnTagOrbit {
  from { offset-distance: 0%; }
  to { offset-distance: 100%; }
}

@keyframes n963VpnLinkOrbit {
  to { transform: rotate(360deg); }
}

@keyframes n963VpnEndpointRing {
  0%, 5%, 27%, 100% { opacity: 0; transform: scale(0.94); }
  10% { opacity: 0.72; transform: scale(1); }
  23% { opacity: 0; transform: scale(1.12); }
}

@keyframes n963VpnLinkFlow {
  to { stroke-dashoffset: -48; }
}

@keyframes n963VpnSyncDot {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.14); }
}

@keyframes n963VpnSyncBar {
  0%, 12% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(0); }
}

@keyframes n963VpnPacket {
  to { left: 100%; }
}

@keyframes n963VpnDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes n963VpnCheck {
  to { stroke-dashoffset: 0; }
}

@keyframes n963VpnRing {
  0% { opacity: 0.6; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.5); }
}

@keyframes n963VpnPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes n963VpnLine {
  to { left: 110%; }
}

@media (max-width: 1040px) {
  .n963-vpn-hero-stage {
    width: min(500px, 48vw);
  }

  .n963-vpn-policy-console {
    width: min(100%, 680px);
  }
}

@media (max-width: 820px) {
  #n963-enterprise-vpn .n963-product-hero-visual {
    min-height: 470px;
  }

  .n963-vpn-hero-stage {
    width: min(520px, 84vw);
  }

  .n963-vpn-topology {
    width: min(100%, 600px);
  }
}

@media (max-width: 680px) {
  #n963-enterprise-vpn .n963-product-hero-visual {
    display: none;
  }

  .n963-vpn-topology {
    min-height: 320px;
  }

  .n963-vpn-topology__core {
    width: 108px;
    height: 108px;
  }

  .n963-vpn-topology__node {
    width: 92px;
    height: 66px;
  }

  .n963-vpn-policy-console__row {
    grid-template-columns: 68px 1fr auto;
    gap: 9px;
    padding: 17px 14px;
  }

  .n963-vpn-policy-console__row strong {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .n963-vpn-hero-stage::before,
  .n963-vpn-hero-orbit,
  .n963-vpn-shield__edge,
  .n963-vpn-shield__check,
  .n963-vpn-protect-check,
  .n963-vpn-shield__pulse,
  .n963-vpn-hero-endpoint,
  .n963-vpn-hero-endpoint::after,
  .n963-vpn-access-rotor,
  .n963-vpn-access-link,
  .n963-vpn-access-link--flow,
  .n963-vpn-policy-sync,
  .n963-vpn-policy-sync > span i,
  .n963-vpn-policy-sync > div b::after,
  .n963-vpn-tunnel i,
  .n963-vpn-topology__line::after {
    animation: none;
  }

  .n963-vpn-access-packet {
    display: none;
  }

  .n963-vpn-hero-endpoint--branch {
    offset-distance: 75%;
  }

  .n963-vpn-hero-endpoint--remote {
    offset-distance: 0%;
  }

  .n963-vpn-policy-sync {
    offset-distance: 25%;
  }

  .n963-vpn-hero-endpoint--cloud {
    offset-distance: 50%;
  }

  .n963-vpn-shield__edge,
  .n963-vpn-shield__check,
  .n963-vpn-protect-check {
    stroke-dashoffset: 0;
  }
}


/* Hide decorative section illustrations sitewide; expand adjacent text */
.n963-features-illustration,
.n963-mission-illustration,
.n963-product-section-heading-visual,
.n963-product-ops-visual,
.n963-network-bg-slot {
  display: none !important;
}

.n963-features-heading,
.n963-mission-header,
.n963-product-section-heading-split,
.n963-product-ops-media,
.n963-network-layout,
#n963-colo-facility .n963-product-section-heading-split,
#n963-cloud-benefits .n963-product-section-heading-split,
#n963-anti-ddos .n963-product-section-heading-split,
#n963-anti-ddos .n963-product-ops-media,
#n963-colo-smart-hands .n963-product-ops-media,
#n963-cloud-onramps .n963-cloud-onramps-heading {
  grid-template-columns: 1fr;
}

.n963-network-layout {
  gap: 0;
}

.n963-network-content {
  grid-column: 1;
  margin: 0;
  transform: none;
  will-change: auto;
}

.n963-network-content-panel {
  padding-left: 0;
}

.n963-features-heading h2,
.n963-product-section-intro,
.n963-product-page .n963-product-section-heading p:not(.n963-eyebrow),
.n963-mission-lead {
  max-width: none;
}

.n963-product-ops-media,
#n963-anti-ddos .n963-product-ops-media,
#n963-colo-smart-hands .n963-product-ops-media {
  max-width: none;
  gap: 0;
}

/* Temporary three-service view; remove modifier class to restore the full slider. */
.n963-features-section--three-services .n963-features-slider-header,
.n963-features-section--three-services .n963-feature-card:nth-child(n + 4) {
  display: none;
}

@media (min-width: 801px) {
  .n963-features-section--three-services .n963-features-slider-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-right: var(--n963-slider-gutter);
    padding-left: var(--n963-slider-gutter);
  }

  .n963-features-section--three-services .n963-features-slider-viewport {
    margin-left: 0;
  }

  .n963-features-section--three-services .n963-features-grid {
    width: 100%;
    padding-right: 0;
  }

  .n963-features-section--three-services .n963-feature-card {
    --n963-feature-card-width: 33.333333cqw;
  }

  .n963-features-section--three-services .n963-feature-card:first-child {
    border-left: 1px solid rgba(18, 60, 59, 0.1);
  }
}

/* Policy pages */
.n963-policy-page {
  overflow-x: clip;
}

.n963-policy-hero {
  position: relative;
  overflow: hidden;
  padding: 138px 0 56px;
  background: #071936;
  color: var(--n963-white);
}

.n963-policy-hero .n963-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.n963-policy-hero .n963-eyebrow {
  color: var(--n963-white);
}

.n963-policy-hero h1 {
  max-width: 1120px;
  margin: 12px auto 18px;
  color: var(--n963-white);
  font-family: var(--n963-font-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

#n963-sla-policy .n963-policy-hero h1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
}

.n963-policy-hero p:not(.n963-eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.n963-policy-updated {
  display: inline-block;
  margin-top: 28px;
  color: var(--n963-accent-yellow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.n963-policy-section {
  padding: 88px 0 112px;
  background: var(--n963-bg-light);
}

.n963-policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 820px);
  justify-content: center;
  align-items: start;
  gap: clamp(44px, 7vw, 100px);
}

.n963-policy-nav {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-small);
  background: var(--n963-white);
  will-change: transform;
}

.n963-policy-nav strong {
  margin-bottom: 10px;
  color: var(--n963-dark-text);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.n963-policy-nav a {
  padding: 6px 0;
  color: var(--n963-muted-text);
  font-size: 0.86rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--n963-transition-fast);
}

.n963-policy-nav a:hover,
.n963-policy-nav a:focus-visible {
  color: var(--n963-primary-green-dark);
}

.n963-policy-content {
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--n963-border-color);
  border-radius: var(--n963-radius-medium);
  background: var(--n963-white);
  box-shadow: var(--n963-shadow-soft);
}

.n963-policy-intro {
  margin: 0 0 50px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--n963-border-color);
  color: var(--n963-dark-text);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.75;
}

.n963-policy-content section {
  scroll-margin-top: 120px;
}

.n963-policy-content section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--n963-border-color);
}

.n963-policy-content h2 {
  margin: 0 0 18px;
  color: var(--n963-dark-text);
  font-family: var(--n963-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.n963-policy-content h3 {
  margin: 28px 0 8px;
  color: var(--n963-dark-text);
  font-size: 1rem;
}

.n963-policy-content p,
.n963-policy-content li,
.n963-policy-content address {
  color: var(--n963-muted-text);
  font-size: 0.98rem;
  line-height: 1.8;
}

.n963-policy-content p {
  margin: 0 0 14px;
}

.n963-policy-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.n963-policy-content li + li {
  margin-top: 9px;
}

.n963-policy-content strong {
  color: var(--n963-dark-text);
}

.n963-policy-content a {
  color: var(--n963-primary-green-dark);
  font-weight: 700;
}

.n963-policy-content address {
  font-style: normal;
}

.n963-policy-formula {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--n963-primary-green);
  border-radius: 0 var(--n963-radius-small) var(--n963-radius-small) 0;
  background: var(--n963-bg-light);
  color: var(--n963-dark-text);
  font-weight: 800;
}

@media (max-width: 800px) {
  .n963-policy-hero {
    padding: 118px 0 48px;
  }

  .n963-policy-section {
    padding: 54px 0 72px;
  }

  .n963-policy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #n963-sla-policy .n963-policy-hero h1 {
    white-space: normal;
  }

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

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

@media (max-width: 480px) {
  .n963-policy-nav {
    grid-template-columns: 1fr;
  }

  .n963-policy-content {
    padding: 26px 20px;
  }
}
