@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap");

:root {
  --ink: #0a0f1a;
  --ink-soft: #172131;
  --ivory: #f7f6f2;
  --warm: #f5f2e9;
  --mist: #f2f3f5;
  --teal: #00858e;
  --teal-deep: #0a9aa5;
  --cyan: #3bbbc5;
  --line: rgba(10, 15, 26, 0.12);
  --white-line: rgba(247, 246, 242, 0.16);
  --shadow: 0 24px 70px rgba(10, 15, 26, 0.16);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--mist);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header,
#brx-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 26, 0.96);
  border-bottom: 1px solid var(--white-line);
}

.site-header,
#brx-header > .brxe-container > .brxe-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
}

.brand img,
#brx-header .brxe-logo img,
#brx-footer .brxe-logo img {
  width: 154px;
  height: auto;
}

#brx-header .brxe-logo {
  max-width: 270px !important;
}

.main-nav,
#brx-header .bricks-nav-menu,
#brx-footer .bricks-nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--ivory);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a,
#brx-header .bricks-nav-menu a,
#brx-footer .bricks-nav-menu a {
  opacity: 0.84;
}

.main-nav a:hover,
.main-nav a:focus-visible,
#brx-header .bricks-nav-menu a:hover,
#brx-header .bricks-nav-menu a:focus-visible,
#brx-footer .bricks-nav-menu a:hover,
#brx-footer .bricks-nav-menu a:focus-visible {
  color: var(--cyan);
  opacity: 1;
}

.header-action,
#brx-header .brxe-button,
#brx-footer .brxe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--teal);
  color: var(--ivory);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.hero {
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(10, 15, 26, 0.9), rgba(10, 15, 26, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(59, 187, 197, 0.28), transparent 34%),
    var(--ink);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: center;
  width: 100%;
  min-height: min(72vh, 620px);
  margin: 0;
  padding: clamp(72px, 11vw, 138px) max(20px, calc((100vw - 1180px) / 2)) clamp(58px, 8vw, 104px);
  color: var(--ivory);
  background:
    linear-gradient(rgba(247, 246, 242, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 72% 42%, rgba(59, 187, 197, 0.2), transparent 34%),
    linear-gradient(180deg, #0a0f1a 0%, #070b13 100%);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.page-hero::before {
  position: absolute;
  top: 50%;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 0;
  width: min(48vw, 640px);
  height: min(44vw, 520px);
  content: "";
  border: 1px solid rgba(247, 246, 242, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59, 187, 197, 0.2), transparent 42%),
    rgba(247, 246, 242, 0.045);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.36);
  transform: translateY(-50%);
}

.page-hero::after {
  position: absolute;
  top: 50%;
  right: calc(max(20px, calc((100vw - 1180px) / 2)) + min(22vw, 260px));
  z-index: 1;
  width: min(24vw, 300px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(59, 187, 197, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(59, 187, 197, 0.22) 0 9%, transparent 10% 31%, rgba(59, 187, 197, 0.16) 32% 34%, transparent 35% 57%, rgba(247, 246, 242, 0.14) 58% 60%, transparent 61%),
    repeating-conic-gradient(from 0deg, rgba(59, 187, 197, 0.28) 0 7deg, transparent 7deg 18deg);
  box-shadow:
    0 0 48px rgba(59, 187, 197, 0.2),
    inset 0 0 42px rgba(59, 187, 197, 0.12);
  transform: translateY(-50%) rotate(18deg);
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(247, 246, 242, 0.15);
  background: rgba(10, 15, 26, 0.68);
}

.bd-eyebrow {
  display: block;
  width: fit-content;
  min-height: 0;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 246, 242, 0.15);
  border-radius: 0;
  background: rgba(10, 15, 26, 0.68);
  color: var(--cyan);
  font-size: 10.53px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 33.5px;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: min(560px, 48vw);
  font-size: clamp(2.3rem, 4.35vw, 4.4rem);
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.page-hero p:last-child {
  max-width: min(620px, 52vw);
  margin: 22px 0 0;
  color: rgba(247, 246, 242, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.dark-page-hero {
  width: 100%;
  max-width: none;
  color: var(--ivory);
}

.dark-page-hero::before {
  border-color: rgba(247, 246, 242, 0.12);
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 32%, rgba(59, 187, 197, 0.16), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
}

.dark-page-hero p:last-child {
  color: rgba(247, 246, 242, 0.72);
}

.topic-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr) !important;
  gap: clamp(32px, 5vw, 76px) !important;
  align-items: center;
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.topic-hero::before {
  right: max(20px, calc((100vw - 1180px) / 2));
  width: min(49vw, 660px);
  height: min(39vw, 510px);
  opacity: 0.82;
}

.topic-hero::after {
  display: none;
}

.topic-copy {
  position: relative;
  z-index: 2;
  max-width: 760px !important;
}

.topic-copy h1 {
  max-width: 760px !important;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.topic-copy p:last-child {
  max-width: 700px !important;
}

.topic-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(247, 246, 242, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.2), transparent 28%),
    linear-gradient(rgba(247, 246, 242, 0.043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.043) 1px, transparent 1px),
    radial-gradient(circle at 52% 48%, rgba(59, 187, 197, 0.16), transparent 42%),
    rgba(247, 246, 242, 0.045);
  background-size: auto, 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 42px 118px rgba(0, 0, 0, 0.36);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.topic-visual:hover {
  border-color: rgba(59, 187, 197, 0.36);
  box-shadow: 0 54px 140px rgba(0, 0, 0, 0.46);
}

.topic-visual::before,
.topic-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.topic-visual::before {
  inset: 28px;
  border: 1px solid rgba(247, 246, 242, 0.1);
  border-radius: 8px;
}

.topic-visual::after {
  inset: -28%;
  background: conic-gradient(from 120deg at 50% 50%, transparent, rgba(59, 187, 197, 0.18), transparent 36%);
  opacity: 0.7;
  animation: topic-field 18s linear infinite;
}

.topic-chip,
.service-core,
.fabric-domain,
.fabric-orb,
.fabric-vault,
.managed-core,
.managed-node,
.forge-browser,
.forge-component,
.portal-window,
.portal-id,
.portal-ticket,
.relay-message,
.relay-core {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(247, 246, 242, 0.14);
  background: rgba(10, 15, 26, 0.72);
  color: var(--ivory);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.topic-chip,
.managed-node,
.forge-component,
.fabric-domain,
.fabric-orb,
.fabric-vault,
.portal-id,
.portal-ticket,
.relay-message {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(247, 246, 242, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-core,
.managed-core,
.relay-core {
  display: grid;
  place-items: center;
  top: 50%;
  left: 50%;
  width: 156px;
  height: 156px;
  border-color: rgba(59, 187, 197, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(59, 187, 197, 0.22), rgba(10, 15, 26, 0.92) 64%);
  transform: translate(-50%, -50%);
  animation: topic-core-breathe 4.2s ease-in-out infinite;
}

.service-core small,
.service-core strong,
.managed-core strong,
.relay-core small,
.relay-core strong {
  grid-area: 1 / 1;
}

.service-core small,
.relay-core small {
  transform: translateY(-16px);
  color: rgba(247, 246, 242, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-core strong,
.relay-core strong {
  transform: translateY(14px);
  color: var(--cyan);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.28rem;
}

.topic-line,
.topic-spark,
.data-stream,
.managed-ring,
.managed-beam,
.portal-orbit,
.portal-pulse,
.relay-wire,
.relay-signal {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.topic-line,
.managed-beam,
.relay-wire {
  top: 50%;
  left: 50%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 187, 197, 0.9), transparent);
  transform-origin: left center;
  animation: router-sweep 6s ease-in-out infinite;
}

.line-a,
.beam-a,
.wire-a { --route-angle: 18deg; }
.line-b,
.wire-b { --route-angle: 146deg; animation-delay: 1.1s; }
.line-c,
.beam-b,
.wire-c { --route-angle: 278deg; animation-delay: 2.2s; }

.chip-a { top: 16%; left: 12%; }
.chip-b { top: 16%; right: 12%; }
.chip-c { right: 8%; top: 48%; }
.chip-d { bottom: 15%; right: 20%; }
.chip-e { bottom: 15%; left: 20%; }

.topic-spark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(59, 187, 197, 0.9);
  animation: spark-travel 5.4s ease-in-out infinite;
}

.spark-a { top: 26%; left: 30%; }
.spark-b { right: 22%; bottom: 26%; animation-delay: 1.5s; }

.fabric-rack {
  position: absolute;
  top: 18%;
  left: 10%;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: 58%;
  transform: perspective(800px) rotateX(58deg) rotateZ(-18deg);
}

.fabric-rack span {
  display: grid;
  grid-template-columns: 18px 18px 18px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(59, 187, 197, 0.3);
  border-radius: 7px;
  background: rgba(10, 15, 26, 0.88);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.fabric-rack i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(59, 187, 197, 0.8);
  animation: led-blink 2.3s ease-in-out infinite;
}

.fabric-rack em {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.12);
}

.fabric-rack em::after {
  display: block;
  width: 58%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: rack-scan 2.8s ease-in-out infinite;
}

.fabric-domain {
  right: 9%;
  bottom: 15%;
  min-width: 230px;
  color: var(--cyan);
}

.fabric-orb,
.fabric-vault {
  width: 86px;
  height: 86px;
  padding: 0;
  border-radius: 50%;
}

.fabric-orb { top: 17%; right: 13%; }
.fabric-vault { bottom: 31%; left: 16%; }

.data-stream {
  width: 190px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 187, 197, 0.92), transparent);
  filter: drop-shadow(0 0 12px rgba(59, 187, 197, 0.7));
  animation: stream-glide 3.8s ease-in-out infinite;
}

.stream-a { top: 42%; left: 38%; transform: rotate(-18deg); }
.stream-b { right: 17%; bottom: 28%; transform: rotate(24deg); animation-delay: 700ms; }
.stream-c { left: 20%; bottom: 24%; transform: rotate(10deg); animation-delay: 1.4s; }

.managed-core {
  width: 172px;
  height: 172px;
  border-radius: 8px;
}

.managed-core span {
  width: 92px;
  height: 12px;
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.18);
}

.managed-core span:first-child {
  transform: translateY(-24px);
}

.managed-core span:nth-child(2) {
  transform: translateY(24px);
}

.managed-core strong {
  color: var(--cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.managed-ring {
  inset: 50%;
  border: 1px solid rgba(59, 187, 197, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 320px;
  height: 320px;
  animation: map-pulse 5s ease-in-out infinite;
}

.ring-b {
  width: 460px;
  height: 460px;
  border-style: dashed;
  animation: orbit-rotate 34s linear infinite;
}

.node-monitor { top: 13%; left: 14%; }
.node-patch { top: 15%; right: 14%; }
.node-firewall { right: 8%; bottom: 21%; }
.node-backup { left: 10%; bottom: 18%; }

.website-forge {
  perspective: 1100px;
}

.forge-browser {
  top: 15%;
  left: 15%;
  width: 64%;
  min-height: 250px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(59, 187, 197, 0.22), transparent 46%),
    rgba(247, 246, 242, 0.08);
  transform: rotateX(54deg) rotateZ(-15deg);
  animation: layer-float 6.4s ease-in-out infinite;
}

.forge-browser span {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.forge-browser strong {
  position: absolute;
  top: 64px;
  left: 24px;
  right: 24px;
  height: 34px;
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.16);
  color: transparent;
}

.forge-browser em {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42%;
  height: 78px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(59, 187, 197, 0.58), rgba(247, 246, 242, 0.1));
}

.forge-component {
  width: 76px;
  height: 76px;
  padding: 0;
  border-radius: 8px;
}

.component-a { top: 17%; right: 13%; }
.component-b { left: 10%; bottom: 25%; }
.component-c { right: 20%; bottom: 13%; }

.forge-pipeline {
  position: absolute;
  right: 9%;
  bottom: 28%;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.forge-pipeline i {
  width: 12px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(59, 187, 197, 0.1));
  animation: wave-bar 2.4s ease-in-out infinite;
}

.forge-pipeline i:nth-child(2) { animation-delay: 140ms; }
.forge-pipeline i:nth-child(3) { animation-delay: 280ms; }
.forge-pipeline i:nth-child(4) { animation-delay: 420ms; }

.forge-cursor {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 18px solid var(--ivory);
  border-right: 12px solid transparent;
  filter: drop-shadow(0 0 18px rgba(59, 187, 197, 0.8));
  animation: cursor-draw 5.6s ease-in-out infinite;
}

.portal-window {
  top: 16%;
  left: 11%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 62%;
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(10, 15, 26, 0.78);
}

.portal-window span {
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 246, 242, 0.13);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.06);
  color: rgba(247, 246, 242, 0.76);
  font-weight: 800;
}

.portal-id {
  right: 10%;
  top: 18%;
  color: var(--cyan);
}

.portal-ticket {
  right: 12%;
  bottom: 18%;
}

.portal-orbit {
  inset: 18% 9% 14% 8%;
  border: 1px solid rgba(59, 187, 197, 0.18);
  border-radius: 48%;
  transform: rotate(-16deg);
  animation: map-pulse 4.8s ease-in-out infinite;
}

.orbit-b {
  inset: 25% 17%;
  border-style: dashed;
  transform: rotate(18deg);
  animation-delay: 900ms;
}

.portal-pulse,
.relay-signal {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(59, 187, 197, 0.9);
  animation: spark-travel 4.8s ease-in-out infinite;
}

.pulse-a { top: 36%; right: 27%; }
.pulse-b { left: 24%; bottom: 21%; animation-delay: 1.4s; }

.relay-message {
  min-width: 116px;
  min-height: 58px;
  border-radius: 8px;
}

.message-a { top: 15%; left: 12%; }
.message-b { top: 24%; right: 10%; }
.message-c { left: 15%; bottom: 16%; }

.relay-core {
  width: 150px;
  height: 150px;
}

.relay-signal {
  top: 44%;
  right: 22%;
}

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

@keyframes spark-travel {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  50% {
    opacity: 1;
    transform: translate3d(18px, -14px, 40px) scale(1.18);
  }
}

@keyframes stream-glide {
  0%,
  100% {
    opacity: 0.2;
    clip-path: inset(0 100% 0 0);
  }

  48%,
  70% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes cursor-draw {
  0%,
  100% {
    transform: translate3d(-24px, 20px, 0);
  }

  45% {
    transform: translate3d(62px, -38px, 0);
  }

  72% {
    transform: translate3d(24px, -10px, 0);
  }
}

@keyframes topic-core-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.045);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 5.05vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(247, 246, 242, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
}

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

.signal-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, auto));
  gap: 1px;
  width: min(100%, 680px);
  margin-top: 30px;
  border: 1px solid var(--white-line);
  background: rgba(247, 246, 242, 0.08);
}

.signal-rail span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  overflow: hidden;
  background: rgba(10, 15, 26, 0.5);
  color: rgba(247, 246, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-rail span::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0.2);
  transform-origin: left;
  animation: signal-route 3.2s ease-in-out infinite;
  animation-delay: calc(var(--signal-index, 0) * 160ms);
}

.signal-rail span:nth-child(1) { --signal-index: 1; }
.signal-rail span:nth-child(2) { --signal-index: 2; }
.signal-rail span:nth-child(3) { --signal-index: 3; }
.signal-rail span:nth-child(4) { --signal-index: 4; }
.signal-rail span:nth-child(5) { --signal-index: 5; }
.signal-rail span:nth-child(6) { --signal-index: 6; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--cyan);
  color: var(--ink);
}

.button.secondary,
.button.ghost {
  border-color: rgba(247, 246, 242, 0.28);
  color: var(--ivory);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
}

.system-visual {
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.visual-topbar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--white-line);
}

.visual-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.9;
}

.visual-topbar span:nth-child(2) {
  background: var(--warm);
}

.visual-topbar span:nth-child(3) {
  background: var(--teal);
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
  padding: 18px;
}

.panel {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(10, 15, 26, 0.58);
}

.panel-kicker {
  margin: 0 0 10px;
  color: rgba(247, 246, 242, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel strong {
  display: block;
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.32rem;
  line-height: 1.15;
}

.uptime-line {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px;
  height: 86px;
  margin-top: 24px;
}

.uptime-line span {
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
}

.metric-panel strong {
  color: var(--cyan);
  font-size: 3rem;
}

.metric-panel span,
.ticket-panel a {
  color: rgba(247, 246, 242, 0.7);
}

.task-panel,
.ticket-panel {
  grid-column: span 1;
}

.task-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.task-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 246, 242, 0.78);
}

.task-panel li span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-band div {
  padding: clamp(24px, 4vw, 42px);
  background: var(--warm);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.15rem;
}

.trust-band span {
  max-width: 38ch;
  margin-top: 6px;
  color: rgba(10, 15, 26, 0.68);
}

.command-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  min-height: 116px;
  border-top: 1px solid rgba(247, 246, 242, 0.12);
  border-bottom: 1px solid rgba(10, 15, 26, 0.12);
  background: var(--warm);
}

.command-label {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 26px clamp(22px, 4vw, 56px);
  background: var(--ink);
  color: var(--ivory);
}

.command-label span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.command-label strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.command-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.command-feed span {
  display: flex;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 133, 142, 0.08), transparent 55%),
    var(--warm);
  color: rgba(10, 15, 26, 0.72);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.hosting-copy p,
.portal-copy p {
  margin: 0;
  color: rgba(10, 15, 26, 0.66);
  font-size: 1.05rem;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

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

.route-grid {
  position: relative;
  grid-template-columns: 1.12fr 1fr 1fr 0.88fr;
  align-items: stretch;
}

.route-grid::before {
  position: absolute;
  top: 26px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(0, 133, 142, 0.42), transparent);
}

.route-card {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.route-card:nth-child(even) {
  transform: translateY(34px);
}

.route-card:hover:nth-child(even) {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(26px);
}

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

.service-card,
.price-card {
  min-height: 315px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 15, 26, 0.06);
}

.service-card.featured,
.price-card.emphasized {
  background: var(--ink);
  color: var(--ivory);
}

.card-number,
.plan-name {
  color: var(--teal);
  font-weight: 800;
}

.featured .card-number,
.emphasized .plan-name {
  color: var(--cyan);
}

.service-card h3 {
  margin-top: 72px;
}

.service-card p {
  margin: 16px 0 26px;
  color: rgba(10, 15, 26, 0.66);
}

.service-card.featured p,
.price-card.emphasized li {
  color: rgba(247, 246, 242, 0.72);
}

.service-card a {
  color: var(--teal);
  font-weight: 800;
}

.service-card.featured a {
  color: var(--cyan);
}

.hosting-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.stack-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.stack-intro p:last-child {
  max-width: 58ch;
  color: rgba(10, 15, 26, 0.66);
}

.stack-map {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px 0;
}

.stack-map::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
}

.stack-map div {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 22px 18px 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, rgba(0, 133, 142, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 34px rgba(10, 15, 26, 0.05);
}

.stack-map span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 133, 142, 0.35);
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-weight: 800;
}

.stack-map strong,
.stack-map small {
  grid-column: 2;
}

.stack-map strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.14rem;
}

.stack-map small {
  color: rgba(10, 15, 26, 0.58);
  font-size: 0.9rem;
}

.topology-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(10, 15, 26, 0.98), rgba(10, 15, 26, 0.94)),
    var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.topology-copy p:last-child {
  max-width: 58ch;
  color: rgba(247, 246, 242, 0.68);
}

.topology-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(247, 246, 242, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59, 187, 197, 0.14), transparent 42%),
    rgba(247, 246, 242, 0.04);
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
}

.topology-visual::before,
.topology-visual::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(59, 187, 197, 0.12);
  pointer-events: none;
}

.topology-visual::after {
  inset: 42px;
  border-color: rgba(247, 246, 242, 0.08);
}

.topology-visual svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 520px;
}

.topology-route {
  fill: none;
  stroke: rgba(247, 246, 242, 0.14);
  stroke-width: 1.4;
}

.route-a,
.route-b {
  stroke: url("#routeGlow");
  stroke-dasharray: 12 16;
  animation: route-flow 9s linear infinite;
}

.route-c,
.route-d,
.route-e {
  stroke-dasharray: 4 12;
  animation: route-flow 14s linear infinite reverse;
}

.node {
  fill: rgba(10, 15, 26, 0.86);
  stroke: rgba(59, 187, 197, 0.62);
  stroke-width: 1.5;
  filter: url("#softGlow");
  transform-origin: center;
  animation: node-breathe 4.8s ease-in-out infinite;
}

.node-core {
  fill: rgba(0, 133, 142, 0.16);
  stroke: rgba(59, 187, 197, 0.82);
  stroke-width: 2;
}

.packet circle {
  fill: var(--cyan);
  filter: url("#softGlow");
}

.packet-a {
  offset-path: path("M110 260 C210 86 346 86 410 260 C476 438 612 438 710 260");
  animation: packet-move 6.8s linear infinite;
}

.packet-b {
  offset-path: path("M110 260 C246 410 312 410 410 260 C512 110 580 110 710 260");
  animation: packet-move 8.2s 1.2s linear infinite;
}

.packet-c {
  offset-path: path("M410 72 L410 448");
  animation: packet-move 5.4s 0.6s linear infinite alternate;
}

.topology-visual text {
  fill: var(--ivory);
  font-family: Poppins, Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.topology-visual text + text {
  fill: rgba(247, 246, 242, 0.52);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.topology-legend {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topology-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 999px;
  background: rgba(10, 15, 26, 0.68);
  color: rgba(247, 246, 242, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.topology-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(59, 187, 197, 0.65);
}

.artifact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 133, 142, 0.06), transparent 34%),
    var(--warm);
}

.dark-artifact {
  border-color: rgba(247, 246, 242, 0.12);
  background:
    linear-gradient(135deg, rgba(59, 187, 197, 0.11), transparent 34%),
    var(--ink);
  color: var(--ivory);
}

.artifact-copy p:last-child {
  max-width: 58ch;
  color: rgba(10, 15, 26, 0.66);
}

.dark-artifact .artifact-copy p:last-child {
  color: rgba(247, 246, 242, 0.68);
}

.rack-visual,
.control-plane,
.build-lab,
.portal-console {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 15, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 26, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.6);
  background-size: 34px 34px;
  box-shadow: 0 28px 80px rgba(10, 15, 26, 0.12);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.rack-visual:hover,
.control-plane:hover,
.build-lab:hover,
.portal-console:hover,
.service-router:hover,
.intake-terminal:hover {
  border-color: rgba(59, 187, 197, 0.38);
  box-shadow: 0 38px 108px rgba(10, 15, 26, 0.18);
}

.dark-artifact .control-plane,
.dark-artifact .portal-console {
  border-color: rgba(247, 246, 242, 0.14);
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(59, 187, 197, 0.13), transparent 44%),
    rgba(247, 246, 242, 0.04);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.rack-frame {
  position: absolute;
  inset: 58px 9% 92px;
  display: grid;
  gap: 12px;
  perspective: 900px;
}

.rack-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 22px 22px 22px 36%;
  gap: 12px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(0, 133, 142, 0.22);
  border-radius: 6px;
  background: rgba(10, 15, 26, 0.88);
  box-shadow: inset 0 1px 0 rgba(247, 246, 242, 0.08), 0 18px 34px rgba(10, 15, 26, 0.12);
  transform: rotateX(6deg) skewX(-4deg);
}

.rack-row span,
.rack-row em {
  height: 8px;
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.16);
}

.rack-row i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(59, 187, 197, 0.35);
  animation: led-blink 2.4s ease-in-out infinite;
}

.rack-row.active i {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(59, 187, 197, 0.7);
}

.rack-row em {
  position: relative;
  overflow: hidden;
}

.rack-row em::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: translateX(-100%);
  animation: rack-scan 2.8s ease-in-out infinite;
}

.rack-telemetry {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  gap: 8px;
  min-width: 220px;
  padding: 18px;
  border: 1px solid rgba(10, 15, 26, 0.12);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.84);
  backdrop-filter: blur(12px);
}

.rack-telemetry strong,
.rack-telemetry span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rack-telemetry span {
  color: rgba(10, 15, 26, 0.58);
}

.control-plane svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.control-plane path {
  fill: none;
  stroke: rgba(59, 187, 197, 0.42);
  stroke-width: 1.5;
  stroke-dasharray: 8 12;
  animation: route-flow 11s linear infinite;
}

.control-core,
.control-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(59, 187, 197, 0.45);
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.82);
  color: var(--ivory);
  font-weight: 800;
  box-shadow: 0 0 42px rgba(59, 187, 197, 0.18);
}

.control-core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  animation: node-breathe 4s ease-in-out infinite;
}

.control-node {
  width: 62px;
  height: 62px;
  color: var(--cyan);
  font-size: 0.82rem;
}

.n1 { top: 13%; left: 48%; }
.n2 { top: 22%; left: 16%; }
.n3 { top: 22%; right: 16%; }
.n4 { bottom: 20%; left: 12%; }
.n5 { right: 12%; bottom: 20%; }
.n6 { bottom: 10%; left: 48%; }

.build-lab {
  perspective: 1100px;
}

.browser-layer {
  position: absolute;
  left: 14%;
  width: 62%;
  height: 190px;
  padding: 18px;
  border: 1px solid rgba(0, 133, 142, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(59, 187, 197, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(10, 15, 26, 0.14);
  transform: rotateX(58deg) rotateZ(-18deg);
  animation: layer-float 6s ease-in-out infinite;
}

.layer-one { top: 44px; }
.layer-two { top: 128px; left: 22%; animation-delay: 400ms; }
.layer-three { top: 212px; left: 30%; animation-delay: 800ms; }

.browser-layer span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.browser-layer strong {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(10, 15, 26, 0.62);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.build-beam {
  position: absolute;
  top: 36px;
  bottom: 40px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 22px rgba(59, 187, 197, 0.7);
  animation: beam-scan 3.8s ease-in-out infinite;
}

.portal-console {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 24px;
}

.console-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 8px;
  background: rgba(10, 15, 26, 0.58);
}

.console-sidebar span {
  height: 46px;
  border-radius: 6px;
  background: rgba(59, 187, 197, 0.14);
}

.console-main {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: center;
}

.console-line {
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(59, 187, 197, 0.28), rgba(247, 246, 242, 0.07));
}

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

.console-grid span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.06);
  color: rgba(247, 246, 242, 0.78);
  font-weight: 800;
}

.console-wave {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 86px;
}

.console-wave i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  animation: wave-bar 2.6s ease-in-out infinite;
}

.console-wave i:nth-child(1) { height: 34%; }
.console-wave i:nth-child(2) { height: 58%; animation-delay: 120ms; }
.console-wave i:nth-child(3) { height: 42%; animation-delay: 240ms; }
.console-wave i:nth-child(4) { height: 76%; animation-delay: 360ms; }
.console-wave i:nth-child(5) { height: 50%; animation-delay: 480ms; }

.service-router,
.intake-terminal {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(10, 15, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 15, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 26, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59, 187, 197, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.62);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 30px 86px rgba(10, 15, 26, 0.13);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-router::before,
.service-router::after {
  position: absolute;
  inset: 50%;
  content: "";
  border: 1px solid rgba(0, 133, 142, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-router::before {
  width: 280px;
  height: 280px;
}

.service-router::after {
  width: 430px;
  height: 430px;
  border-style: dashed;
}

.router-core,
.router-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 133, 142, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 18px 52px rgba(10, 15, 26, 0.1);
}

.router-core {
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  background: var(--ink);
  color: var(--cyan);
  transform: translate(-50%, -50%);
}

.router-node {
  width: 104px;
  height: 104px;
  font-size: 0.78rem;
  text-align: center;
}

.r-webhosting { top: 13%; left: 14%; }
.r-servers { top: 13%; right: 14%; }
.r-websites { right: 8%; top: 46%; }
.r-dev { right: 20%; bottom: 12%; }
.r-dns { left: 20%; bottom: 12%; }
.r-care { left: 8%; top: 46%; }

.router-path {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform-origin: left center;
  animation: router-sweep 5.8s ease-in-out infinite;
}

.path-two {
  animation-delay: 1.2s;
  transform: rotate(120deg);
}

.path-three {
  animation-delay: 2.4s;
  transform: rotate(240deg);
}

.intake-terminal {
  padding: 22px;
  border-color: rgba(247, 246, 242, 0.14);
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 54% 40%, rgba(59, 187, 197, 0.12), transparent 42%),
    rgba(247, 246, 242, 0.04);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 8px 8px 0 0;
  background: rgba(10, 15, 26, 0.72);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.terminal-top strong {
  margin-left: auto;
  color: rgba(247, 246, 242, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.terminal-body {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(10, 15, 26, 0.58);
}

.terminal-body p {
  margin: 0 0 18px;
  color: rgba(247, 246, 242, 0.78);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.96rem;
}

.terminal-body p span {
  color: var(--cyan);
}

.terminal-progress {
  position: relative;
  height: 12px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 246, 242, 0.1);
}

.terminal-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  animation: terminal-load 3.2s ease-in-out infinite;
}

.home-main {
  background: var(--mist);
}

.ops-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 73px);
  padding: clamp(28px, 5vw, 64px) max(20px, calc((100vw - 1240px) / 2)) 0;
  color: var(--ivory);
  background:
    linear-gradient(rgba(247, 246, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 68% 35%, rgba(59, 187, 197, 0.16), transparent 38%),
    linear-gradient(180deg, #0a0f1a 0%, #070b13 100%);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.ops-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    conic-gradient(from 90deg at 50% 50%, transparent, rgba(59, 187, 197, 0.12), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(0, 133, 142, 0.18), transparent 28%);
  mask-image: linear-gradient(180deg, black, transparent 82%);
  transform: rotate(12deg);
}

.ops-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 190px);
}

.ops-left {
  max-width: 760px;
}

.ops-tagline {
  display: none;
}

.ops-tagline span {
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(10, 15, 26, 0.72);
  color: rgba(247, 246, 242, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-tagline span:first-child {
  color: var(--cyan);
}

.ops-left h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 4.8vw, 4.95rem);
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.ops-left p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(247, 246, 242, 0.76);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
}

.ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ops-map {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(247, 246, 242, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59, 187, 197, 0.16), transparent 38%),
    rgba(247, 246, 242, 0.045);
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.38);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ops-map:hover {
  border-color: rgba(59, 187, 197, 0.32);
  box-shadow: 0 50px 130px rgba(0, 0, 0, 0.46);
}

.ops-map::before,
.ops-map::after {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgba(59, 187, 197, 0.13);
  pointer-events: none;
}

.ops-map::after {
  inset: 74px;
  border-radius: 50%;
  animation: map-pulse 5s ease-in-out infinite;
}

.ops-map-header,
.ops-map-footer {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  right: 24px;
  left: 24px;
}

.ops-map-header {
  top: 20px;
}

.ops-map-footer {
  bottom: 20px;
}

.ops-map-header span,
.ops-map-header strong,
.ops-map-footer span {
  color: rgba(247, 246, 242, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-map-header strong {
  color: var(--cyan);
}

.ops-map-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 999px;
  background: rgba(10, 15, 26, 0.68);
}

.ops-map-footer i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(59, 187, 197, 0.72);
}

.ops-orbit {
  position: absolute;
  inset: 70px 34px;
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(59, 187, 197, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%) rotate(18deg);
}

.ring-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.ring-three {
  width: 540px;
  height: 540px;
  transform: translate(-50%, -50%) rotate(32deg);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(59, 187, 197, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(59, 187, 197, 0.2), rgba(10, 15, 26, 0.92) 62%);
  box-shadow: 0 0 80px rgba(59, 187, 197, 0.24);
  transform: translate(-50%, -50%);
}

.orbit-core span,
.orbit-core strong {
  grid-area: 1 / 1;
  font-family: Poppins, Inter, sans-serif;
}

.orbit-core span {
  transform: translateY(-16px);
  color: rgba(247, 246, 242, 0.72);
  font-size: 0.9rem;
}

.orbit-core strong {
  transform: translateY(13px);
  color: var(--ivory);
  font-size: 1.28rem;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(59, 187, 197, 0.45);
  border-radius: 50%;
  background: rgba(10, 15, 26, 0.82);
  color: var(--ivory);
  font-weight: 800;
  box-shadow: 0 0 40px rgba(59, 187, 197, 0.13);
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.orbit-node:hover {
  transform: scale(1.08);
  border-color: rgba(59, 187, 197, 0.9);
  background: rgba(0, 133, 142, 0.32);
}

.dns { top: 45%; left: 4%; }
.host { top: 13%; left: 22%; }
.server { top: 12%; right: 18%; }
.build { right: 5%; top: 46%; }
.monitor { right: 24%; bottom: 12%; }
.portal { left: 22%; bottom: 12%; }

.data-packet {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(59, 187, 197, 0.78);
  transform-origin: 0 0;
  animation: orbit-packet 7s cubic-bezier(0.2, 0.8, 0.2, 1) 2 both;
}

.p2 {
  animation-duration: 10s;
  animation-delay: 1.8s;
  transform: rotate(118deg) translateX(205px);
}

.p3 {
  animation-duration: 7s;
  animation-delay: 3s;
  transform: rotate(242deg) translateX(205px);
}

.ops-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  background: rgba(247, 246, 242, 0.08);
  transform: translateY(1px);
}

.ops-dock div {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(59, 187, 197, 0.08), transparent 60%),
    rgba(10, 15, 26, 0.72);
  transition: transform 220ms ease, background-color 220ms ease;
}

.ops-dock div:hover {
  transform: perspective(800px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-3px);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(59, 187, 197, 0.08), transparent 60%),
    rgba(10, 15, 26, 0.82);
}

.ops-dock span,
.ops-dock small {
  color: rgba(247, 246, 242, 0.55);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-dock strong {
  color: var(--ivory);
  font-family: Poppins, Inter, sans-serif;
  line-height: 1.15;
}

.home-service-lanes,
.home-capability-matrix,
.home-system-slice,
.home-runbook,
.home-portal-callout {
  padding: clamp(76px, 10vw, 132px) max(20px, calc((100vw - 1180px) / 2));
}

.home-capability-matrix {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(460px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(0, 133, 142, 0.08), transparent 36%),
    var(--warm);
}

.matrix-copy p:last-child {
  max-width: 58ch;
  color: rgba(10, 15, 26, 0.66);
}

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

.capability-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 15, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 26, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: 28px 28px;
  box-shadow: 0 18px 54px rgba(10, 15, 26, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.capability-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.capability-grid article:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(0, 133, 142, 0.32);
  box-shadow: 0 28px 70px rgba(10, 15, 26, 0.13);
}

.capability-grid article:hover::before {
  opacity: 1;
}

.capability-grid span,
.capability-grid small {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capability-grid strong {
  display: block;
  margin-top: 52px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.capability-grid small {
  display: block;
  margin-top: 10px;
  color: rgba(10, 15, 26, 0.54);
}

.home-service-lanes {
  background: var(--mist);
}

.lane-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.lane-heading h2 {
  max-width: 820px;
}

.lane-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 520px;
}

.lane-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(10, 15, 26, 0.08);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.lane-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(59, 187, 197, 0.13)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(10, 15, 26, 0.05) 18px 19px);
  transform: translateY(45%);
  transition: transform 280ms ease;
}

.lane-card:hover::before {
  transform: translateY(0);
}

.lane-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px);
  border-color: rgba(0, 133, 142, 0.34);
  box-shadow: 0 30px 86px rgba(10, 15, 26, 0.15);
}

.lane-card:nth-child(even) {
  transform: translateY(52px);
}

.lane-card:nth-child(even):hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(42px);
}

.lane-card span,
.lane-card em {
  color: var(--teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.lane-card strong {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.lane-card em {
  position: relative;
  z-index: 1;
  color: rgba(10, 15, 26, 0.52);
}

.lane-servers {
  background: var(--ink);
  color: var(--ivory);
}

.lane-servers em {
  color: rgba(247, 246, 242, 0.58);
}

.home-system-slice {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 20%, rgba(59, 187, 197, 0.16), transparent 32%),
    var(--ink);
}

.slice-copy p {
  max-width: 60ch;
  color: rgba(247, 246, 242, 0.68);
}

.slice-diagram {
  display: grid;
  gap: 12px;
  perspective: 1000px;
}

.slice-diagram div {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  min-height: 72px;
  padding: 22px 26px;
  border: 1px solid rgba(247, 246, 242, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(59, 187, 197, 0.13), transparent 44%),
    rgba(247, 246, 242, 0.06);
  transform: rotateY(-12deg) translateX(calc(var(--slice-step, 0) * 12px));
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.slice-diagram div:hover {
  border-color: rgba(59, 187, 197, 0.36);
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(59, 187, 197, 0.13), transparent 44%),
    rgba(247, 246, 242, 0.08);
}

.slice-diagram div:nth-child(1) { --slice-step: 0; }
.slice-diagram div:nth-child(2) { --slice-step: 1; }
.slice-diagram div:nth-child(3) { --slice-step: 2; }
.slice-diagram div:nth-child(4) { --slice-step: 3; }
.slice-diagram div:nth-child(5) { --slice-step: 4; }
.slice-diagram div:nth-child(6) { --slice-step: 5; }

.slice-diagram span {
  color: rgba(247, 246, 242, 0.82);
  font-weight: 800;
  text-transform: uppercase;
}

.home-runbook {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

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

.runbook-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(10, 15, 26, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.runbook-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.runbook-grid article:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(0, 133, 142, 0.32);
  box-shadow: 0 28px 70px rgba(10, 15, 26, 0.12);
}

.runbook-grid article:hover::before {
  opacity: 1;
}

.runbook-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.runbook-grid strong {
  display: block;
  margin-top: 50px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1.15;
}

.runbook-grid p {
  margin: 14px 0 0;
  color: rgba(10, 15, 26, 0.62);
}

.home-portal-callout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.55fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  color: var(--ivory);
  background: var(--ink);
}

.home-portal-callout p {
  color: rgba(247, 246, 242, 0.68);
}

.mini-console {
  min-height: 360px;
}

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

.feature-list div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 15, 26, 0.05);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.14rem;
  line-height: 1.2;
}

.feature-list span {
  margin-top: 10px;
  color: rgba(10, 15, 26, 0.66);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.price-card h3 {
  min-height: 58px;
  margin-top: 20px;
}

.price {
  margin: 24px 0;
  color: var(--teal);
  font-family: Poppins, Inter, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.price span {
  font-size: 0.92rem;
}

.emphasized .price {
  color: var(--cyan);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: rgba(10, 15, 26, 0.66);
}

.emphasized li {
  border-color: var(--white-line);
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.process-list article {
  min-height: 250px;
  padding: 28px;
  background: var(--mist);
}

.process-list span {
  color: var(--teal);
  font-weight: 800;
}

.process-list h3 {
  margin-top: 56px;
}

.process-list p {
  margin: 12px 0 0;
  color: rgba(10, 15, 26, 0.66);
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding: clamp(72px, 10vw, 126px) max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--ivory);
}

.portal-section.standalone {
  margin-top: 0;
}

.portal-copy p {
  color: rgba(247, 246, 242, 0.72);
}

.portal-list {
  display: grid;
  gap: 12px;
}

.portal-list div {
  padding: 22px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.06);
}

.portal-list strong,
.portal-list span {
  display: block;
}

.portal-list span {
  margin-top: 5px;
  color: rgba(247, 246, 242, 0.66);
}

.bd-panel {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 8%, rgba(59, 187, 197, 0.14), transparent 34%),
    linear-gradient(180deg, #070b13 0%, #0a0f1a 46%, #07101a 100%);
  color: var(--ivory);
}

.bd-panel-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(32px, 5vw, 64px) clamp(32px, 6vw, 76px);
  align-items: center;
  align-content: center;
  min-height: min(72vh, 620px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) max(20px, calc((100vw - 1180px) / 2)) clamp(54px, 7vw, 86px);
  background:
    linear-gradient(rgba(247, 246, 242, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.038) 1px, transparent 1px),
    radial-gradient(circle at 72% 42%, rgba(59, 187, 197, 0.2), transparent 34%),
    linear-gradient(180deg, #0a0f1a 0%, #070b13 100%);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.bd-panel-hero::before {
  position: absolute;
  top: 50%;
  right: max(20px, calc((100vw - 1180px) / 2));
  z-index: 0;
  width: min(49vw, 660px);
  height: min(39vw, 510px);
  content: "";
  border: 1px solid rgba(247, 246, 242, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(59, 187, 197, 0.2), transparent 42%),
    rgba(247, 246, 242, 0.045);
  background-size: 30px 30px, 30px 30px, auto, auto;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.36);
  opacity: 0.82;
  transform: translateY(-50%);
}

.bd-panel-hero > * {
  position: relative;
  z-index: 2;
}

.bd-panel-hero-copy {
  max-width: 760px;
  min-height: 420px;
}

.bd-panel-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 4.35vw, 56px);
  line-height: 1.2;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.bd-panel-hero p:not(.eyebrow):not(.bd-eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(247, 246, 242, 0.74);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.75;
}

.bd-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.bd-panel-network {
  position: relative;
  min-height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(247, 246, 242, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 187, 197, 0.2), transparent 28%),
    linear-gradient(rgba(247, 246, 242, 0.043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 246, 242, 0.043) 1px, transparent 1px),
    radial-gradient(circle at 52% 48%, rgba(59, 187, 197, 0.16), transparent 42%),
    rgba(247, 246, 242, 0.045);
  background-size: auto, 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 42px 118px rgba(0, 0, 0, 0.36);
}

.bd-panel-network::before {
  position: absolute;
  inset: 8% -8% 0 0;
  content: "";
  border: 1px solid rgba(59, 187, 197, 0.18);
  border-radius: 50%;
  transform: rotate(-10deg) skewX(-18deg);
  animation: map-pulse 5.6s ease-in-out infinite;
}

.bd-panel-network::after {
  position: absolute;
  inset: 18% 0 9% 4%;
  content: "";
  background:
    linear-gradient(32deg, transparent 11%, rgba(59, 187, 197, 0.56) 11.5%, transparent 12.3%),
    linear-gradient(144deg, transparent 22%, rgba(59, 187, 197, 0.46) 22.5%, transparent 23.2%),
    linear-gradient(174deg, transparent 44%, rgba(59, 187, 197, 0.32) 44.5%, transparent 45.2%),
    linear-gradient(22deg, transparent 62%, rgba(59, 187, 197, 0.38) 62.5%, transparent 63.2%);
  opacity: 0.78;
  filter: drop-shadow(0 0 16px rgba(59, 187, 197, 0.26));
}

.bd-panel-network span,
.bd-panel-network i {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(59, 187, 197, 0.95);
  animation: led-blink 2.7s ease-in-out infinite;
}

.bd-panel-network span:nth-child(1) { left: 12%; top: 67%; }
.bd-panel-network span:nth-child(2) { left: 30%; top: 50%; animation-delay: 200ms; }
.bd-panel-network span:nth-child(3) { left: 48%; top: 72%; animation-delay: 400ms; }
.bd-panel-network span:nth-child(4) { right: 24%; top: 43%; animation-delay: 600ms; }
.bd-panel-network span:nth-child(5) { right: 8%; top: 60%; animation-delay: 800ms; }
.bd-panel-network i:nth-of-type(1) { left: 20%; top: 31%; }
.bd-panel-network i:nth-of-type(2) { right: 30%; top: 24%; animation-delay: 500ms; }
.bd-panel-network i:nth-of-type(3) { right: 14%; bottom: 18%; animation-delay: 900ms; }

.bd-panel-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) 0 clamp(70px, 9vw, 110px);
}

.bd-panel-toolbar,
.bd-panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.bd-panel-toolbar {
  margin-bottom: 18px;
}

.bd-panel-toolbar h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.bd-account-button,
.bd-panel-list button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(247, 246, 242, 0.16);
  border-radius: 8px;
  background: rgba(247, 246, 242, 0.04);
  color: var(--ivory);
  font: inherit;
  font-weight: 700;
}

.bd-panel-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.bd-panel-stat,
.bd-panel-card {
  border: 1px solid rgba(247, 246, 242, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(59, 187, 197, 0.08), transparent 46%),
    rgba(247, 246, 242, 0.045);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.bd-panel-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: center;
  min-height: 136px;
  padding: 24px;
}

.bd-panel-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(59, 187, 197, 0.13);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(59, 187, 197, 0.18);
}

.bd-panel-stat .bd-panel-icon {
  grid-row: span 3;
}

.bd-panel-stat strong {
  color: var(--ivory);
  font-family: Poppins, Inter, sans-serif;
  font-size: 2.55rem;
  line-height: 1;
}

.bd-panel-stat p,
.bd-panel-list p,
.bd-panel-table span,
.bd-panel-empty p {
  margin: 0;
  color: rgba(247, 246, 242, 0.74);
}

.bd-panel-stat a,
.bd-panel-card-head a {
  color: var(--cyan);
  font-weight: 800;
}

.bd-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.bd-panel-card {
  padding: 22px;
}

.bd-panel-card h3 {
  font-size: 1.38rem;
}

.bd-panel-card-large {
  min-height: 320px;
}

.bd-panel-stack {
  display: grid;
  gap: 18px;
}

.bd-panel-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bd-panel-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(247, 246, 242, 0.11);
  border-radius: 8px;
  background: rgba(10, 15, 26, 0.28);
}

.bd-panel-list strong,
.bd-panel-table strong {
  display: block;
  color: var(--ivory);
}

.bd-panel-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(38, 200, 120, 0.1);
  color: #3ee58d;
  font-style: normal;
  font-weight: 800;
}

.bd-panel-status::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
  background: currentColor;
}

.bd-panel-table,
.bd-panel-empty {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(247, 246, 242, 0.1);
  border-radius: 8px;
  background: rgba(10, 15, 26, 0.24);
}

.bd-panel-table {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
}

.bd-panel-table p,
.bd-panel-table time {
  margin: 0;
  color: rgba(247, 246, 242, 0.84);
}

.bd-panel-empty {
  grid-template-columns: auto 1fr;
}

.closing-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 106px) 0;
}

.closing-section h2 {
  max-width: 760px;
}

.site-footer,
#brx-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: rgba(247, 246, 242, 0.66);
}

.site-footer img {
  width: 164px;
}

#brx-footer > .brxe-container > .brxe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: rgba(247, 246, 242, 0.66);
}

#brx-footer .brxe-nav-menu {
  gap: clamp(14px, 2vw, 28px);
}

#brx-footer .brxe-nav-menu a {
  color: rgba(247, 246, 242, 0.84);
}

#brx-header .bricks-mobile-menu-toggle {
  color: var(--ivory);
}

#brx-header .bricks-mobile-menu-wrapper {
  background: var(--ink);
  color: var(--ivory);
}

#brx-header .bricks-mobile-menu a {
  color: var(--teal);
}

.site-footer p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.contact-card,
.contact-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10, 15, 26, 0.05);
}

.contact-panel {
  background: var(--ink);
  color: var(--ivory);
}

.contact-panel p {
  color: rgba(247, 246, 242, 0.72);
}

.mail-link {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--cyan);
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.small-note {
  margin-bottom: 0;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--ivory));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.site-header {
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.scrolled .site-header {
  background: rgba(10, 15, 26, 0.9);
  border-color: rgba(247, 246, 242, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.main-nav a,
.header-action,
.button {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button.primary:hover,
.button.primary:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  box-shadow: 0 14px 34px rgba(59, 187, 197, 0.22);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 7%;
  bottom: -24%;
  z-index: -1;
  width: min(42vw, 620px);
  min-width: 320px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 187, 197, 0.18), transparent 66%);
  filter: blur(18px);
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.infra-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy > * {
  animation: hero-rise 760ms ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 250ms;
}

.page-hero > * {
  animation: hero-rise 720ms ease both;
}

.page-hero > *:nth-child(2) {
  animation-delay: 90ms;
}

.page-hero > *:nth-child(3) {
  animation-delay: 160ms;
}

.system-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  animation: visual-enter 820ms 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.system-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.18), transparent 26%),
    linear-gradient(115deg, transparent 8%, rgba(247, 246, 242, 0.12) 32%, transparent 48%);
  transform: translateX(-110%);
  animation: surface-sheen 5.6s 1.3s ease-in-out infinite;
  pointer-events: none;
}

.system-visual:hover {
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.panel,
.service-card,
.price-card,
.feature-list div,
.portal-list div {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.service-card::before,
.price-card::before,
.feature-list div::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(59, 187, 197, 0.18), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-card:hover,
.price-card:hover,
.feature-list div:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(0, 133, 142, 0.28);
  box-shadow: 0 22px 52px rgba(10, 15, 26, 0.12);
}

.service-card:hover::before,
.price-card:hover::before,
.feature-list div:hover::before {
  opacity: 1;
}

.panel:hover,
.portal-list div:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 187, 197, 0.34);
}

.uptime-line span {
  transform-origin: bottom center;
  animation: bar-pulse 2.8s ease-in-out infinite;
}

.uptime-line span:nth-child(2n) {
  animation-delay: 240ms;
}

.uptime-line span:nth-child(3n) {
  animation-delay: 420ms;
}

.task-panel li span {
  box-shadow: 0 0 0 0 rgba(59, 187, 197, 0.42);
  animation: status-ping 2.4s ease-out infinite;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }

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

@keyframes visual-enter {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateX(5deg) rotateY(-8deg) translateY(26px);
  }

  to {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0);
  }
}

@keyframes surface-sheen {
  0%,
  46% {
    transform: translateX(-110%);
  }

  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-8%, -6%, 0) scale(1.12);
  }
}

@keyframes bar-pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scaleY(0.92);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes status-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 187, 197, 0.42);
  }

  70%,
  100% {
    box-shadow: 0 0 0 8px rgba(59, 187, 197, 0);
  }
}

@keyframes signal-route {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.18);
  }

  44%,
  66% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes node-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

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

@keyframes packet-move {
  from {
    offset-distance: 0%;
    opacity: 0;
  }

  8%,
  88% {
    opacity: 1;
  }

  to {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes led-blink {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

@keyframes rack-scan {
  0%,
  35% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes layer-float {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(-18deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(58deg) rotateZ(-18deg) translate3d(16px, -12px, 28px);
  }
}

@keyframes beam-scan {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-80px);
  }

  50% {
    opacity: 1;
    transform: translateX(90px);
  }
}

@keyframes wave-bar {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes router-sweep {
  0%,
  100% {
    opacity: 0;
    transform: rotate(var(--route-angle, 0deg)) scaleX(0.2);
  }

  45%,
  65% {
    opacity: 1;
    transform: rotate(var(--route-angle, 0deg)) scaleX(1);
  }
}

.path-one { --route-angle: 0deg; }
.path-two { --route-angle: 120deg; }
.path-three { --route-angle: 240deg; }

@keyframes terminal-load {
  0%,
  100% {
    transform: translateX(-22%);
  }

  50% {
    transform: translateX(48%);
  }
}

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

@keyframes map-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }

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

@keyframes orbit-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-packet {
  0% { opacity: 0; transform: rotate(0deg) translateX(205px) rotate(0deg); }
  8% { opacity: 1; }
  50% { transform: rotate(180deg) translateX(205px) rotate(-180deg); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: rotate(360deg) translateX(205px) rotate(-360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-inner,
  .topic-hero,
  .bd-panel-hero,
  .bd-panel-grid,
  .home-capability-matrix,
  .hosting-section,
  .portal-section,
  .split-section,
  .stack-section,
  .topology-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .topic-copy h1,
  .topic-copy p:last-child {
    max-width: 100%;
  }

  .topic-hero::before {
    width: calc(100% - 40px);
    height: 48%;
    opacity: 0.42;
  }

  .service-grid,
  .service-grid.expanded,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .feature-list,
  .command-feed,
  .bd-panel-stat-grid,
  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-list,
  .command-feed,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .command-strip {
    grid-template-columns: 1fr;
  }

  .route-card:nth-child(even),
  .route-card:hover:nth-child(even) {
    transform: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  #brx-header > .brxe-container > .brxe-container {
    position: static;
    grid-template-columns: 1fr auto;
  }

  .brand img,
  #brx-header .brxe-logo img,
  #brx-footer .brxe-logo img {
    width: 146px;
  }

  .main-nav,
  #brx-header .bricks-nav-menu,
  #brx-footer .bricks-nav-menu {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
    max-width: calc(100vw - 28px);
    overflow-x: hidden;
    padding-bottom: 4px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  #brx-header .brxe-button,
  #brx-footer .brxe-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 44px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .visual-grid,
  .service-grid,
  .service-grid.expanded,
  .capability-grid,
  .route-grid,
  .bd-panel-stat-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .signal-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .stack-map div {
    grid-template-columns: 52px 1fr;
  }

  .stack-map span {
    width: 52px;
    height: 52px;
  }

  .system-visual {
    border-radius: 8px;
  }

  .section,
  .closing-section {
    width: min(100% - 28px, 1180px);
  }

  .page-hero {
    min-height: auto;
    padding-right: 14px;
    padding-left: 14px;
  }

  .topic-hero {
    gap: 30px;
  }

  .page-hero h1,
  .page-hero p:last-child {
    max-width: 100%;
  }

  .page-hero::before {
    right: 14px;
    width: calc(100% - 28px);
    opacity: 0.45;
  }

  .topic-visual {
    min-height: 380px;
  }

  .service-core,
  .managed-core,
  .relay-core {
    width: 118px;
    height: 118px;
  }

  .topic-chip,
  .managed-node,
  .forge-component,
  .relay-message,
  .fabric-domain,
  .portal-id,
  .portal-ticket {
    font-size: 0.68rem;
  }

  .chip-a,
  .node-monitor,
  .message-a { left: 8%; }

  .chip-b,
  .node-patch,
  .message-b { right: 8%; }

  .fabric-rack {
    left: 8%;
    width: 68%;
  }

  .fabric-domain {
    right: 7%;
    min-width: 180px;
  }

  .forge-browser,
  .portal-window {
    left: 8%;
    width: 72%;
  }

  .page-hero::after {
    display: none;
  }

  .dark-page-hero {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .topology-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .artifact-section {
    grid-template-columns: 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .ops-shell,
  .home-system-slice,
  .home-runbook,
  .home-portal-callout {
    grid-template-columns: 1fr;
  }

  .ops-map {
    min-height: 540px;
  }

  .ops-dock,
  .lane-board,
  .runbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lane-card:nth-child(even) {
    transform: none;
  }

  .home-portal-callout {
    grid-template-columns: 1fr;
  }

  .topology-visual {
    min-height: 430px;
  }

  .topology-visual svg {
    min-height: 430px;
  }

  .rack-visual,
  .control-plane,
  .build-lab,
  .portal-console {
    min-height: 380px;
  }

  .portal-console {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    grid-template-columns: repeat(4, 1fr);
  }

  .ops-shell {
    min-height: auto;
  }

  .ops-left h1 {
    font-size: 3.4rem;
  }

  .ops-dock,
  .lane-board,
  .runbook-grid {
    grid-template-columns: 1fr;
  }

  .ops-map {
    min-height: 430px;
  }

  .ops-orbit {
    inset: 58px 16px;
  }

  .ring-one {
    width: 170px;
    height: 170px;
  }

  .ring-two {
    width: 270px;
    height: 270px;
  }

  .ring-three {
    width: 286px;
    height: 286px;
  }

  .data-packet {
    display: none;
  }

  .orbit-core {
    width: 116px;
    height: 116px;
  }

  .orbit-node {
    width: 74px;
    height: 74px;
    font-size: 0.78rem;
  }

  .lane-heading {
    grid-template-columns: 1fr;
  }

  .home-service-lanes,
  .home-system-slice,
  .home-runbook,
  .home-portal-callout {
    padding-right: 14px;
    padding-left: 14px;
  }

  .slice-diagram div {
    transform: none;
  }

  .service-card,
  .price-card {
    min-height: auto;
  }

  .service-card h3,
  .process-list h3 {
    margin-top: 34px;
  }

  .portal-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .closing-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  #brx-footer > .brxe-container > .brxe-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .bd-panel-hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .bd-panel-shell {
    width: min(1180px, calc(100% - 28px));
  }

  .bd-panel-network {
    min-height: 250px;
  }

  .bd-panel-toolbar,
  .bd-panel-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .bd-panel-list article,
  .bd-panel-table {
    grid-template-columns: 1fr;
  }

  .bd-panel-list article .bd-panel-icon {
    width: 52px;
    height: 52px;
  }
}
