/* Resilient Transport product-specific diagrams, evidence and route controls */
.resilient-transport-page {
  --rt-blue: var(--product-blue);
  --rt-cyan: var(--product-cyan);
  --rt-night: #061720;
  --rt-night-soft: #0b2632;
  --rt-rxt: #25d4e3;
  --rt-tcp: #4f7dff;
  --rt-danger: #d96655;
}

.rt-hero {
  background:
    radial-gradient(circle at 83% 24%, rgba(28, 194, 218, 0.18), transparent 25rem),
    radial-gradient(circle at 57% 71%, rgba(40, 96, 224, 0.15), transparent 32rem),
    linear-gradient(145deg, #031018 0%, #061822 58%, #071c27 100%);
}

.rt-hero-network {
  position: relative;
  min-height: 31rem;
  padding: 1.15rem;
}

.rt-hero-network > header {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: space-between;
}

.rt-hero-network > header div span,
.rt-hero-endpoint > span,
.rt-hero-edge > span,
.rt-hero-destination > span {
  display: block;
  margin-bottom: 0.2rem;
  color: #668595;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rt-hero-network > header div strong {
  color: #f8fdff;
  font-size: var(--product-font-title-sm);
}

.rt-route-health {
  display: inline-flex;
  color: #8ba5b1;
  font-size: var(--product-font-caption);
  gap: 0.45rem;
  align-items: center;
}

.rt-route-health i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #48d69c;
  box-shadow: 0 0 0 4px rgba(72, 214, 156, 0.1);
}

.rt-hero-switcher {
  margin-bottom: 1.3rem;
}

.rt-integration-nav button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.rt-hero-route {
  display: grid;
  min-height: 17.5rem;
  grid-template-columns: minmax(7.5rem, 0.85fr) minmax(7rem, 0.82fr) minmax(7.7rem, 0.9fr) minmax(4.5rem, 0.45fr) minmax(7.5rem, 0.9fr);
  gap: 0.55rem;
  align-items: center;
}

.rt-hero-endpoint,
.rt-hero-edge,
.rt-hero-destination {
  min-height: 8.6rem;
  padding: 1rem;
  border: 1px solid rgba(133, 181, 200, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.rt-hero-edge {
  border-color: rgba(56, 215, 229, 0.38);
  background:
    radial-gradient(circle at 50% 20%, rgba(52, 209, 228, 0.14), transparent 60%),
    rgba(12, 56, 70, 0.58);
  box-shadow: 0 0 0 5px rgba(22, 167, 190, 0.035);
}

.rt-hero-endpoint strong,
.rt-hero-edge strong,
.rt-hero-destination strong {
  display: block;
  min-height: 2.9rem;
  color: #eefaff;
  font-size: var(--product-font-card);
  line-height: 1.35;
}

.rt-hero-endpoint small,
.rt-hero-edge small,
.rt-hero-destination small {
  color: #718d99;
  font-size: var(--product-font-label-xs);
  line-height: 1.45;
}

.rt-hero-path {
  position: relative;
  display: flex;
  height: 7.2rem;
  align-items: center;
  justify-content: center;
}

.rt-hero-path::before,
.rt-hero-path::after,
.rt-hero-continuation::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(39, 211, 228, 0.28), var(--rt-rxt), rgba(39, 211, 228, 0.28));
  content: "";
}

.rt-hero-path::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-100%);
  animation: rt-route-scan 2.7s linear infinite;
}

.rt-hero-path.is-tcp::before,
.rt-hero-path.is-tcp::after {
  background: linear-gradient(90deg, rgba(65, 109, 255, 0.28), var(--rt-tcp), rgba(65, 109, 255, 0.28));
}

.rt-hero-path > span {
  z-index: 1;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(43, 214, 231, 0.28);
  border-radius: 999px;
  background: #082832;
  color: #91f4fb;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
}

.rt-hero-path > b {
  position: absolute;
  z-index: 1;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(43, 214, 231, 0.28);
  border-radius: 999px;
  background: #082832;
  color: #91f4fb;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
}

.rt-hero-path.is-dual::before {
  top: 35%;
  background: linear-gradient(90deg, rgba(65, 109, 255, 0.28), var(--rt-tcp), rgba(65, 109, 255, 0.28));
  box-shadow: 0 2.2rem 0 var(--rt-rxt);
}

.rt-hero-path.is-dual::after {
  top: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  box-shadow: 0 2.2rem 0 rgba(255, 255, 255, 0.75);
}

.rt-hero-path.is-dual > span {
  position: absolute;
  top: calc(35% - 0.9rem);
}

.rt-hero-path.is-dual > b {
  top: calc(35% + 1.3rem);
}

.rt-hero-route.is-reverse .rt-hero-path > i {
  animation-direction: reverse;
}

.rt-hero-path > small {
  position: absolute;
  top: calc(50% + 1.6rem);
  right: 0;
  left: 0;
  color: #577681;
  font-size: var(--product-font-label-xs);
  line-height: 1.35;
  text-align: center;
}

.rt-hero-path > i {
  position: absolute;
  top: 50%;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #d7fcff;
  box-shadow: 0 0 9px #45dce9;
  animation: rt-packet 2.7s linear infinite;
}

.rt-hero-path > i:nth-of-type(2) { animation-delay: -0.9s; }
.rt-hero-path > i:nth-of-type(3) { animation-delay: -1.8s; }

.rt-hero-continuation {
  position: relative;
  min-height: 6rem;
}

.rt-hero-continuation::before {
  background: rgba(113, 146, 159, 0.34);
}

.rt-hero-continuation span {
  position: absolute;
  top: calc(50% + 0.65rem);
  right: 0;
  left: 0;
  color: #57717d;
  font-size: var(--product-font-label-xs);
  line-height: 1.3;
  text-align: center;
}

.rt-hero-explanation {
  min-height: 3.4rem;
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-top: 1px solid rgba(123, 178, 196, 0.13);
  color: #8ba5b0;
  font-size: var(--product-font-caption);
  line-height: 1.55;
}

.rt-hero-network > footer {
  display: flex;
  padding: 0.8rem 0.2rem 0;
  color: #64818e;
  font-size: var(--product-font-label-xs);
  gap: 1rem;
  align-items: center;
}

.rt-hero-network > footer span {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.rt-hero-network > footer i,
.rt-coexistence-routes i {
  width: 1rem;
  height: 2px;
  background: var(--rt-rxt);
}

.rt-hero-network > footer i.is-tcp,
.rt-coexistence-routes i.is-tcp {
  background: var(--rt-tcp);
}

.rt-hero-network > footer small {
  margin-left: auto;
  color: #4e6a76;
}

@keyframes rt-route-scan {
  to { transform: translateX(100%); }
}

@keyframes rt-packet {
  from { left: 0; opacity: 0; }
  12%, 88% { opacity: 1; }
  to { left: calc(100% - 0.3rem); opacity: 0; }
}

.rt-platform-strip {
  border-bottom: 1px solid var(--product-line);
  background: #fff;
}

.rt-platform-layout {
  display: grid;
  min-height: 9.5rem;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  grid-template-columns: 0.85fr 1.35fr auto;
  gap: 2rem;
  align-items: center;
}

.rt-platform-layout > div span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rt-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rt-platform-layout > div strong {
  display: block;
  max-width: 22rem;
  font-size: var(--product-font-title);
  line-height: 1.3;
}

.rt-platform-layout > p {
  max-width: 49rem;
  margin: 0;
  color: var(--product-muted);
  font-size: var(--product-font-body-compact);
}

.rt-platform-layout > ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, auto);
  gap: 0.45rem 1rem;
  list-style: none;
}

.rt-platform-layout > ul li {
  color: #4b6571;
  font-size: var(--product-font-caption);
}

.rt-platform-layout > ul li::before {
  margin-right: 0.42rem;
  color: var(--rt-cyan);
  content: "·";
}

.rt-before-route > span,
.rt-after-route > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--rt-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rt-situation-visual {
  position: relative;
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  border: 1px solid var(--product-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 44, 61, 0.06);
}

.rt-before-route,
.rt-after-route {
  min-width: 0;
  padding: 1rem;
  border-radius: 8px;
  background: #f7f9fb;
}

.rt-after-route {
  background: linear-gradient(145deg, #eefcff, #f4f8ff);
}

.rt-before-route > span {
  color: #8b99a0;
}

.rt-before-route ol,
.rt-after-route ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.rt-before-route li,
.rt-after-route li {
  position: relative;
  min-height: 2.8rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #dfe6ea;
  border-radius: 7px;
  background: #fff;
  color: #344f5b;
  font-size: var(--product-font-caption);
  font-weight: 650;
}

.rt-before-route li + li::before,
.rt-after-route li + li::before {
  position: absolute;
  top: -0.52rem;
  left: 50%;
  width: 1px;
  height: 0.5rem;
  background: #c9d4da;
  content: "";
}

.rt-before-route li.is-difficult {
  border-color: #efc6be;
  background: #fff7f5;
  color: #9a4d41;
}

.rt-after-route li.is-rxt {
  border-color: #86dce7;
  background: #eafcff;
  color: #126877;
}

.rt-before-route small,
.rt-after-route small {
  display: block;
  min-height: 2.4rem;
  margin-top: 0.75rem;
  color: #7a8e98;
  font-size: var(--product-font-label-xs);
  line-height: 1.4;
}

.rt-playback-situation {
  display: block;
  padding: 1.4rem;
  background: linear-gradient(150deg, #061923, #0c2a36);
}

.rt-playback-origin {
  display: flex;
  max-width: 23rem;
  min-height: 5rem;
  margin: 0 auto 2rem;
  padding: 1rem;
  border: 1px solid rgba(106, 208, 224, 0.22);
  border-radius: 9px;
  color: #9eb3bd;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.rt-playback-origin strong {
  color: #ecfbff;
}

.rt-playback-branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rt-playback-branches::before {
  position: absolute;
  top: -2rem;
  left: 50%;
  width: 52%;
  height: 2rem;
  border-top: 1px solid rgba(85, 196, 216, 0.35);
  border-right: 1px solid rgba(85, 196, 216, 0.35);
  border-left: 1px solid rgba(85, 196, 216, 0.35);
  transform: translateX(-50%);
  content: "";
}

.rt-playback-branches section {
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid rgba(138, 184, 201, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.rt-playback-branches span,
.rt-playback-branches strong,
.rt-playback-branches small {
  display: block;
}

.rt-playback-branches span {
  color: #7894a0;
  font-size: var(--product-font-caption);
}

.rt-playback-branches strong {
  margin: 1rem 0 0.4rem;
  color: #63e7f0;
  font-size: var(--product-font-title);
}

.rt-playback-branches small {
  color: #78919c;
  font-size: var(--product-font-caption);
}

.rt-paths-section {
  background: var(--product-surface);
}

.rt-path-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rt-path {
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 12px;
  background: #fbfcfd;
}

.rt-path > header {
  min-height: 15rem;
  padding: 1.45rem;
  border-bottom: 1px solid var(--product-line);
}

.rt-path > header > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--rt-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rt-path > header h3 {
  margin-bottom: 0.7rem;
  font-size: var(--product-font-title-lg);
}

.rt-path > header p {
  margin: 0;
  color: var(--product-muted);
  font-size: var(--product-font-body-compact);
}

.rt-path > ol {
  display: grid;
  margin: 0;
  padding: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
}

.rt-path > ol li {
  position: relative;
  min-height: 7rem;
  padding: 0.9rem;
  border: 1px solid #dfe7eb;
  border-radius: 8px;
  background: #fff;
}

.rt-path > ol li + li::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.2rem);
  width: 1.1rem;
  height: 1px;
  background: #9db4bf;
  content: "";
}

.rt-path > ol small,
.rt-path > ol strong {
  display: block;
}

.rt-path > ol small {
  margin-bottom: 0.5rem;
  color: #8a9ca5;
  font-size: var(--product-font-label-xs);
  text-transform: uppercase;
}

.rt-path > ol strong {
  color: #284653;
  font-size: var(--product-font-caption);
  line-height: 1.4;
}

.rt-path > ol li.is-network {
  border-color: #8ddae4;
  background: #effcff;
}

.rt-rxt-path > ol li.is-network {
  border-color: #7c9eff;
  background: #f2f5ff;
}

.rt-path > ul {
  display: flex;
  min-height: 4.5rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--product-line);
  color: #55717d;
  font-size: var(--product-font-caption);
  gap: 0.7rem 1.4rem;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.rt-path > ul li::before {
  margin-right: 0.4rem;
  color: var(--rt-cyan);
  content: "✓";
}

.rt-coexistence {
  display: grid;
  margin-top: 1rem;
  padding: 1.4rem;
  grid-template-columns: minmax(22rem, 1fr) minmax(21rem, 0.8fr);
  gap: 2.5rem;
  border: 1px solid #d8e2e7;
  border-radius: 12px;
  background: linear-gradient(110deg, #f5f9fb, #eefcff);
  align-items: center;
}

.rt-coexistence > div:first-child > span {
  color: var(--rt-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rt-coexistence h3 {
  margin: 0.5rem 0 0.7rem;
  font-size: var(--product-font-title);
}

.rt-coexistence p {
  margin: 0.45rem 0 0;
  color: var(--product-muted);
  font-size: var(--product-font-body-compact);
}

.rt-coexistence-routes {
  display: grid;
  gap: 0.65rem;
}

.rt-coexistence-routes p {
  display: grid;
  min-height: 4.3rem;
  margin: 0;
  padding: 0.9rem;
  grid-template-columns: 1fr 2.5rem 1fr;
  border: 1px solid #d9e6eb;
  border-radius: 8px;
  background: #fff;
  gap: 0.6rem;
  align-items: center;
}

.rt-coexistence-routes span,
.rt-coexistence-routes strong {
  font-size: var(--product-font-caption);
}

.rt-coexistence-routes strong {
  color: #294754;
}

.rt-coexistence-routes i {
  width: 100%;
}

.rt-evidence-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(40, 104, 255, 0.18), transparent 28rem),
    linear-gradient(150deg, #04131c, #071e2a 62%, #082633);
  color: #f4fbff;
}

.rt-evidence-heading {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.rt-evidence-heading > div {
  max-width: 58rem;
}

.rt-evidence-heading h2 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: var(--product-font-section-title);
}

.rt-evidence-heading p:last-child {
  max-width: 70ch;
  margin: 0;
  color: #91aab5;
}

.rt-evidence-section .product-eyebrow {
  color: #6be9f3;
}

.rt-evidence-badge {
  flex: 0 0 auto;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(244, 196, 100, 0.3);
  border-radius: 999px;
  background: rgba(244, 196, 100, 0.08);
  color: #e8c77c;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rt-evidence-shell {
  overflow: hidden;
  border: 1px solid rgba(137, 190, 209, 0.2);
  border-radius: 13px;
  background: rgba(3, 17, 25, 0.68);
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.25);
}

.rt-evidence-context {
  display: grid;
  padding: 1rem 1.2rem;
  grid-template-columns: 1fr 1.2fr 1.15fr 0.8fr 1.25fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(133, 183, 201, 0.14);
}

.rt-evidence-context span,
.rt-evidence-context strong {
  display: block;
}

.rt-evidence-context span {
  margin-bottom: 0.25rem;
  color: #587986;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.rt-evidence-context strong {
  color: #c8d9e0;
  font-size: var(--product-font-caption);
  font-weight: 600;
  line-height: 1.4;
}

.rt-evidence-body {
  display: grid;
  grid-template-columns: minmax(30rem, 1.1fr) minmax(27rem, 0.9fr);
}

.rt-chart-wrap,
.rt-evidence-table-wrap {
  min-width: 0;
  padding: 1.35rem;
}

.rt-chart-wrap {
  border-right: 1px solid rgba(133, 183, 201, 0.14);
}

.rt-chart-scale {
  display: flex;
  margin-bottom: 0.85rem;
  color: #688693;
  font-size: var(--product-font-label-xs);
  justify-content: space-between;
}

.rt-chart {
  display: grid;
  min-height: 18rem;
  padding: 1rem 0.7rem 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  border-bottom: 1px solid rgba(141, 185, 202, 0.2);
  background-image: linear-gradient(rgba(129, 178, 195, 0.08) 1px, transparent 1px);
  background-size: 100% 25%;
  align-items: end;
}

.rt-chart-group {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: end;
}

.rt-chart-loss {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  left: 0;
  color: #718d98;
  font-size: var(--product-font-label-xs);
  text-align: center;
  white-space: nowrap;
}

.rt-chart-series {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
}

.rt-chart-series .rt-chart-bar {
  width: 100%;
}

.rt-chart-bar {
  position: relative;
  display: flex;
  min-height: 1px;
  height: var(--bar-height);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#647786, #374a57);
  justify-content: center;
  transition: height 450ms var(--site-ease);
}

.rt-chart-bar.is-boost {
  background: linear-gradient(#4d8bff, #245ee4 58%, #1b49b4);
  box-shadow: 0 0 20px rgba(45, 105, 245, 0.16);
}

.rt-chart-bar.is-rxt {
  background: linear-gradient(#4ee4ed, #169bb3 58%, #117287);
  box-shadow: 0 0 20px rgba(34, 199, 216, 0.17);
}

.rt-chart-bar > strong {
  position: absolute;
  top: -1.45rem;
  color: #cfe0e6;
  font-size: var(--product-font-label-xs);
  white-space: nowrap;
}

.rt-chart-bar > small {
  position: absolute;
  top: calc(100% + 0.5rem);
  color: #647f8b;
  font-size: var(--product-font-label-xs);
  white-space: nowrap;
}

.rt-chart-legend {
  display: flex;
  margin-top: 3.45rem;
  color: #78939f;
  font-size: var(--product-font-caption);
  gap: 1rem;
}

.rt-chart-legend span {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.rt-chart-legend i {
  width: 0.8rem;
  height: 0.45rem;
  border-radius: 2px;
  background: #4d6370;
}

.rt-chart-legend i.is-boost {
  background: var(--rt-tcp);
}

.rt-chart-legend b {
  font-weight: 500;
}

.rt-evidence-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.rt-evidence-table-wrap caption {
  margin-bottom: 0.7rem;
  color: #d7e8ee;
  font-size: var(--product-font-card);
  font-weight: 700;
  text-align: left;
}

.rt-evidence-table-wrap th,
.rt-evidence-table-wrap td {
  padding: 0.65rem 0.45rem;
  border-bottom: 1px solid rgba(133, 183, 201, 0.12);
  color: #91aab4;
  font-size: var(--product-font-label-xs);
  text-align: left;
}

.rt-evidence-table-wrap thead th {
  color: #587986;
  font-weight: 700;
  text-transform: uppercase;
}

.rt-evidence-table-wrap tbody td:nth-child(3) {
  color: #6fe4ed;
  font-weight: 700;
}

.rt-evidence-table-wrap > p {
  margin: 1.2rem 0 0;
  color: #7e99a4;
  font-size: var(--product-font-caption);
}

.rt-evidence-note {
  margin: 1rem 0 0;
  color: #698792;
  font-size: var(--product-font-label-xs);
}

.rt-integration-section {
  background: var(--product-canvas);
}

.rt-platform-band {
  display: flex;
  min-height: 3.6rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid #cbd9df;
  border-radius: 9px;
  background: #fff;
  color: #657d88;
  font-size: var(--product-font-caption);
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
}

.rt-platform-band strong {
  margin-right: auto;
  color: #204657;
}

.rt-integration-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.28fr) minmax(0, 0.72fr);
  border: 1px solid #d5e0e5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(19, 54, 69, 0.06);
}

.rt-integration-nav {
  padding: 0.65rem;
  border-right: 1px solid #dfe7eb;
  background: #f4f7f9;
}

.rt-integration-nav button {
  display: grid;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.8rem;
  grid-template-columns: 1.7rem 1fr;
  border-bottom: 1px solid #dfe7eb;
  background: transparent;
  color: #607783;
  gap: 0.55rem;
  text-align: left;
  touch-action: manipulation;
}

.rt-integration-nav button:last-child {
  border-bottom: 0;
}

.rt-integration-nav button > span {
  color: #93a6af;
  font-size: var(--product-font-label-xs);
}

.rt-integration-nav button strong,
.rt-integration-nav button small {
  grid-column: 2;
}

.rt-integration-nav button strong {
  color: #294653;
  font-size: var(--product-font-card);
}

.rt-integration-nav button small {
  color: #84969e;
  font-size: var(--product-font-label-xs);
  line-height: 1.35;
}

.rt-integration-nav button:hover,
.rt-integration-nav button:focus-visible,
.rt-integration-nav button.is-active {
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(23, 61, 76, 0.06);
}

.rt-integration-nav button.is-active {
  box-shadow: inset 3px 0 var(--rt-blue), 0 7px 22px rgba(23, 61, 76, 0.06);
}

.rt-integration-panels {
  min-width: 0;
}

.rt-integration-panels > article {
  padding: clamp(1.3rem, 3vw, 2.2rem);
}

.rt-integration-panels > article > header {
  max-width: 56rem;
  margin-bottom: 1.5rem;
}

.rt-integration-panels > article > header span,
.rt-proxy-flows > section > span {
  color: var(--rt-blue);
  font-size: var(--product-font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rt-integration-panels > article > header h3 {
  margin: 0.45rem 0 0.6rem;
  font-size: var(--product-font-title-lg);
}

.rt-integration-panels > article > header p {
  margin: 0;
  color: var(--product-muted);
  font-size: var(--product-font-body-compact);
}

.rt-proxy-flows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.rt-proxy-flows > section {
  min-width: 0;
  padding: 1rem;
  border: 1px solid #dde6ea;
  border-radius: 9px;
  background: #f8fafb;
}

.rt-proxy-flows h4 {
  margin: 0.45rem 0;
  font-size: var(--product-font-title-sm);
}

.rt-proxy-flows p {
  min-height: 6.5rem;
  margin: 0 0 1rem;
  color: var(--product-muted);
  font-size: var(--product-font-caption);
}

.rt-proxy-flows ol,
.rt-single-route {
  display: grid;
  margin: 0 0 1rem;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  list-style: none;
}

.rt-proxy-flows li,
.rt-single-route li {
  position: relative;
  min-height: 3.7rem;
  padding: 0.65rem;
  border: 1px solid #dde6ea;
  border-radius: 6px;
  background: #fff;
  color: #49636f;
  font-size: var(--product-font-label-xs);
  line-height: 1.35;
}

.rt-proxy-flows li + li::before,
.rt-single-route li + li::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 0.06rem);
  width: 0.34rem;
  height: 1px;
  background: #9eb2bb;
  content: "";
}

.rt-proxy-flows li.is-rxt,
.rt-single-route li.is-rxt {
  border-color: #8adce5;
  background: #edfcff;
  color: #116878;
}

.rt-single-route li.is-tcp {
  border-color: #9eb6ff;
  background: #f1f4ff;
  color: #2850b5;
}

.rt-proxy-flows dl,
.rt-change-list {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.rt-proxy-flows dl div,
.rt-change-list div {
  padding: 0.7rem;
  border-left: 2px solid #b8c8cf;
  background: #fff;
}

.rt-proxy-flows dt,
.rt-change-list dt {
  margin-bottom: 0.25rem;
  color: #6c838e;
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.rt-proxy-flows dd,
.rt-change-list dd {
  margin: 0;
  color: #405d69;
  font-size: var(--product-font-caption);
}

.rt-single-route {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rt-products-section {
  background: var(--product-surface);
}

.rt-product-map {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--product-line);
  border-radius: 12px;
  background: #f8fafc;
}

.rt-product-platform {
  display: flex;
  min-height: 3.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid #bed0d9;
  border-radius: 8px;
  background: #fff;
  color: var(--product-muted);
  font-size: var(--product-font-caption);
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.rt-product-platform strong {
  color: #244553;
  font-size: var(--product-font-card);
}

.rt-product-base {
  display: grid;
  min-height: 8.5rem;
  margin: 1rem 0;
  padding: 1rem;
  grid-template-columns: minmax(8rem, 1fr) minmax(3rem, 0.35fr) minmax(11rem, 0.9fr) minmax(3rem, 0.35fr) minmax(13rem, 1.2fr);
  gap: 0.7rem;
  align-items: center;
  border: 1px solid #d7e1e6;
  border-radius: 9px;
  background: #fff;
}

.rt-product-base > span,
.rt-product-base > strong {
  padding: 0.85rem;
  border: 1px solid #dce5e9;
  border-radius: 7px;
  color: #49636f;
  font-size: var(--product-font-caption);
  text-align: center;
}

.rt-product-base > strong {
  border-color: #7fd9e4;
  background: #eafdff;
  color: #116979;
  font-size: var(--product-font-card);
}

.rt-product-base > i {
  height: 2px;
  background: #8eabb7;
}

.rt-product-example {
  max-width: 63rem;
  margin: 0 auto 1rem;
  color: #5d7681;
  font-size: var(--product-font-caption);
  text-align: center;
}

.rt-optional-products {
  position: relative;
  display: grid;
  padding-top: 2.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.rt-optional-products::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 82%;
  height: 1.8rem;
  border-top: 1px dashed #9bb2bc;
  border-right: 1px dashed #9bb2bc;
  border-left: 1px dashed #9bb2bc;
  transform: translateX(-50%);
  content: "";
}

.rt-optional-products a {
  min-height: 7.7rem;
  padding: 0.9rem;
  border: 1px dashed #b8c8cf;
  border-radius: 7px;
  background: #fff;
  color: #2a4855;
  text-decoration: none;
  transition: border-color 180ms var(--site-ease), transform 180ms var(--site-ease);
}

.rt-optional-products a:hover,
.rt-optional-products a:focus-visible {
  border-color: var(--rt-blue);
  transform: translateY(-2px);
}

.rt-optional-products span,
.rt-optional-products strong,
.rt-optional-products small {
  display: block;
}

.rt-optional-products span {
  margin-bottom: 0.35rem;
  color: var(--rt-blue);
  font-size: var(--product-font-label-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rt-optional-products strong {
  margin-bottom: 0.4rem;
  font-size: var(--product-font-card);
}

.rt-optional-products small {
  color: #748891;
  font-size: var(--product-font-label-xs);
  line-height: 1.4;
}

.rt-optional-note {
  display: block;
  margin-top: 0.8rem;
  color: #81949c;
  font-size: var(--product-font-label-xs);
  text-align: center;
}

@media (max-width: 1199.98px) {
  .rt-hero-route {
    grid-template-columns: minmax(6.6rem, 0.9fr) minmax(5.3rem, 0.65fr) minmax(6.7rem, 0.85fr) minmax(3.7rem, 0.4fr) minmax(6.5rem, 0.85fr);
  }

  .rt-evidence-body {
    grid-template-columns: minmax(27rem, 1fr) minmax(23rem, 0.85fr);
  }
}

@media (max-width: 991.98px) {
  .rt-hero-network {
    min-height: auto;
  }

  .rt-hero-route {
    grid-template-columns: minmax(7rem, 1fr) minmax(6rem, 0.7fr) minmax(7rem, 1fr) minmax(4rem, 0.45fr) minmax(7rem, 1fr);
  }

  .rt-platform-layout {
    grid-template-columns: 1fr 1.35fr;
  }

  .rt-platform-layout > ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, auto);
    justify-content: start;
  }

  .rt-situation-copy {
    max-width: 46rem;
  }

  .rt-path-comparison,
  .rt-coexistence {
    grid-template-columns: 1fr;
  }

  .rt-path > header {
    min-height: auto;
  }

  .rt-evidence-context {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rt-evidence-body {
    grid-template-columns: 1fr;
  }

  .rt-chart-wrap {
    border-right: 0;
    border-bottom: 1px solid rgba(133, 183, 201, 0.14);
  }

  .rt-integration-layout {
    grid-template-columns: 1fr;
  }

  .rt-integration-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid #dfe7eb;
  }

  .rt-integration-nav button {
    min-height: 5rem;
    border-right: 1px solid #dfe7eb;
    border-bottom: 0;
  }

  .rt-integration-nav button:last-child {
    border-right: 0;
  }

  .rt-integration-nav button small {
    display: none;
  }

  .rt-proxy-flows {
    grid-template-columns: 1fr;
  }

  .rt-proxy-flows p {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .rt-hero-network {
    padding: 0.85rem;
  }

  .rt-hero-network > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .rt-hero-route {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .rt-hero-endpoint,
  .rt-hero-edge,
  .rt-hero-destination {
    min-height: auto;
  }

  .rt-hero-endpoint strong,
  .rt-hero-edge strong,
  .rt-hero-destination strong {
    min-height: auto;
  }

  .rt-hero-path,
  .rt-hero-continuation {
    min-height: 4rem;
    height: 4rem;
  }

  .rt-hero-path::before,
  .rt-hero-path::after,
  .rt-hero-continuation::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: auto;
    background: linear-gradient(rgba(39, 211, 228, 0.28), var(--rt-rxt), rgba(39, 211, 228, 0.28));
  }

  .rt-hero-path > i {
    display: none;
  }

  .rt-hero-path > small {
    top: 50%;
    right: 0;
    left: calc(50% + 1rem);
    text-align: left;
    transform: translateY(-50%);
  }

  .rt-hero-continuation span {
    top: 50%;
    left: calc(50% + 1rem);
    text-align: left;
    transform: translateY(-50%);
  }

  .rt-hero-network > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .rt-hero-network > footer small {
    margin-left: 0;
  }

  .rt-platform-layout {
    padding-top: 2rem;
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rt-platform-layout > ul {
    grid-column: auto;
    grid-template-columns: repeat(2, auto);
  }

  .rt-situation-visual {
    grid-template-columns: 1fr;
  }

  .rt-playback-branches {
    grid-template-columns: 1fr;
  }

  .rt-playback-branches::before {
    display: none;
  }

  .rt-path > ol,
  .rt-proxy-flows ol,
  .rt-single-route {
    grid-template-columns: 1fr;
  }

  .rt-path > ol li + li::before,
  .rt-proxy-flows li + li::before,
  .rt-single-route li + li::before {
    top: -0.55rem;
    right: auto;
    left: 50%;
    width: 1px;
    height: 0.55rem;
  }

  .rt-path > ol li {
    min-height: auto;
  }

  .rt-coexistence {
    padding: 1rem;
  }

  .rt-coexistence-routes p {
    grid-template-columns: 1fr;
  }

  .rt-coexistence-routes i {
    width: 2px;
    height: 1rem;
    margin-left: 0.4rem;
  }

  .rt-evidence-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .rt-evidence-context {
    grid-template-columns: 1fr;
  }

  .rt-chart {
    min-height: 14rem;
    gap: 0.55rem;
  }

  .rt-chart-bar > strong {
    transform: rotate(-38deg);
    transform-origin: left bottom;
  }

  .rt-chart-bar > small {
    display: none;
  }

  .rt-chart-loss {
    bottom: -1.45rem;
  }

  .rt-chart-legend {
    margin-top: 2.4rem;
  }

  .rt-evidence-table-wrap table {
    display: block;
  }

  .rt-evidence-table-wrap caption {
    display: block;
    width: 100%;
  }

  .rt-evidence-table-wrap thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .rt-evidence-table-wrap tbody,
  .rt-evidence-table-wrap tr {
    display: block;
  }

  .rt-evidence-table-wrap tr {
    margin-bottom: 0.7rem;
    padding: 0.7rem;
    border: 1px solid rgba(133, 183, 201, 0.14);
    border-radius: 7px;
  }

  .rt-evidence-table-wrap th,
  .rt-evidence-table-wrap td {
    display: grid;
    padding: 0.4rem 0;
    grid-template-columns: minmax(6rem, 0.85fr) minmax(0, 1.15fr);
    gap: 0.7rem;
    border: 0;
    text-align: right;
  }

  .rt-evidence-table-wrap th::before,
  .rt-evidence-table-wrap td::before {
    color: #587986;
    content: attr(data-label);
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
  }

  .rt-platform-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .rt-integration-nav {
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rt-integration-nav button {
    min-height: 4.5rem;
    border-right: 1px solid #dfe7eb;
    border-bottom: 1px solid #dfe7eb;
  }

  .rt-integration-nav button:nth-child(2n) {
    border-right: 0;
  }

  .rt-integration-nav button:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .rt-proxy-flows dl,
  .rt-change-list {
    grid-template-columns: 1fr;
  }

  .rt-product-platform {
    align-items: flex-start;
    flex-direction: column;
  }

  .rt-product-base {
    grid-template-columns: 1fr;
  }

  .rt-product-base > i {
    width: 2px;
    height: 1.3rem;
    margin: auto;
  }

  .rt-optional-products {
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .rt-optional-products::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rt-hero-path::after,
  .rt-hero-path > i {
    animation: none;
  }

  .rt-chart-bar,
  .rt-optional-products a {
    transition: none;
  }

  .rt-optional-products a:hover,
  .rt-optional-products a:focus-visible {
    transform: none;
  }
}

@media (forced-colors: active) {
  .rt-route-health i,
  .rt-hero-network > footer i,
  .rt-coexistence-routes i,
  .rt-chart-legend i,
  .rt-product-base > i {
    forced-color-adjust: none;
  }
}
