/* DV SYSTEMS ecosystem layer — v36 */

body.mega-open {
  overflow: hidden;
}

.dv-brand {
  position: relative;
  z-index: 3;
  display: inline-grid;
  flex: 0 0 auto;
  gap: 1px;
  min-width: 178px;
}

.dv-brand-main {
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: -.045em;
}

.dv-brand-main b {
  font-size: 25px;
  font-weight: 800;
}

.dv-brand-main i {
  margin: 0 5px;
  color: var(--accent);
  font-size: 19px;
  font-style: normal;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(115, 231, 244, .42);
}

.dv-brand-main strong {
  color: #dce3e0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .09em;
}

.dv-brand small {
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .025em;
  white-space: nowrap;
}

.ecosystem-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 26px;
}

.ecosystem-nav button {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 13px;
  color: #c2cac7;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.ecosystem-nav > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: #c2cac7;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.ecosystem-nav > a:hover,
.ecosystem-nav > a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}

.ecosystem-nav button span {
  color: var(--muted-2);
  font-size: 12px;
  transition: transform .25s ease;
}

.ecosystem-nav button:hover,
.ecosystem-nav button.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}

.ecosystem-nav button.is-active span {
  color: var(--accent);
  transform: rotate(180deg);
}

.site-header.has-mega-open {
  border-color: var(--line);
  background: rgba(7, 10, 11, .96);
  backdrop-filter: blur(22px);
}

.mega-menu {
  position: absolute;
  top: 88px;
  right: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid rgba(115, 231, 244, .1);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(7, 10, 11, .995), rgba(10, 16, 18, .985)),
    var(--bg);
  box-shadow: 0 48px 90px rgba(0, 0, 0, .55);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mega-menu::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .28;
  background:
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
}

.mega-menu-glow {
  position: absolute;
  top: -220px;
  left: 2%;
  width: 620px;
  height: 620px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 231, 244, .12), transparent 68%);
  filter: blur(10px);
}

.mega-menu-shell {
  position: relative;
  min-height: 560px;
}

.mega-panel {
  position: absolute;
  inset: 0;
  display: grid;
  visibility: hidden;
  grid-template-columns: .38fr .62fr;
  gap: 58px;
  align-items: center;
  padding: 54px 0 58px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .26s ease, visibility .26s ease, transform .26s ease;
}

.mega-panel.is-active {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.mega-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 52px;
  border-right: 1px solid var(--line);
}

.mega-intro > span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.mega-intro h2 {
  margin: 20px 0 17px;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.mega-intro h2 em {
  color: var(--muted);
  font-style: normal;
}

.mega-intro p {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mega-intro > a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.mega-intro > a b {
  color: var(--accent);
}

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

.mega-grid > a {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .023);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.mega-grid > a:hover {
  z-index: 1;
  border-color: rgba(115, 231, 244, .4);
  background: rgba(115, 231, 244, .055);
  transform: translateY(-3px);
}

.mega-grid > a > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(115, 231, 244, .2);
  border-radius: 13px;
  background: rgba(115, 231, 244, .055);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .04em;
}

.mega-grid > a > span {
  display: grid;
  gap: 5px;
}

.mega-grid strong {
  font-size: 14px;
}

.mega-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.mega-grid > a > b {
  color: var(--muted-2);
  font-size: 18px;
  transition: color .2s ease, transform .2s ease;
}

.mega-grid > a:hover > b {
  color: var(--accent);
  transform: translateX(3px);
}

.trust-strip-label {
  margin-top: 42px;
  margin-bottom: 15px;
  color: var(--muted-2);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip-label + .trust-strip {
  margin-top: 0;
}

#services {
  padding-top: 42px;
}

.tech-ecosystem {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 52px;
  align-items: center;
  min-height: 650px;
  padding: 44px;
  margin-bottom: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 28% 50%, rgba(115, 231, 244, .075), transparent 31rem),
    linear-gradient(145deg, rgba(12, 18, 20, .94), rgba(7, 10, 11, .88));
  box-shadow: var(--shadow);
}

#services .tech-ecosystem {
  margin-bottom: 0;
}

#services .trust-strip {
  margin-bottom: 96px;
}

.tech-orbit {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  margin: auto;
}

.tech-orbit::before {
  position: absolute;
  inset: 4%;
  pointer-events: none;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(115, 231, 244, .055), transparent 60%);
  filter: blur(12px);
}

.tech-orbit-ring {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(115, 231, 244, .16);
  border-radius: 50%;
}

.tech-orbit-ring::before,
.tech-orbit-ring::after {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 14px rgba(115, 231, 244, .75);
}

.tech-orbit-ring-outer {
  inset: 6%;
  animation: orbitSpin 26s linear infinite;
}

.tech-orbit-ring-outer::before {
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

.tech-orbit-ring-outer::after {
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
}

.tech-orbit-ring-inner {
  inset: 22%;
  border-color: rgba(92, 141, 255, .2);
  animation: orbitSpinReverse 19s linear infinite;
}

.tech-orbit-ring-inner::before {
  top: 50%;
  left: -3px;
  background: var(--cyan);
  transform: translateY(-50%);
}

.tech-orbit-ring-inner::after {
  bottom: -3px;
  left: 50%;
  background: var(--cyan);
  transform: translateX(-50%);
}

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

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

.tech-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border: 1px solid rgba(115, 231, 244, .38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 20%, rgba(115, 231, 244, .16), transparent 42%),
    rgba(5, 13, 16, .94);
  box-shadow:
    inset 0 0 34px rgba(115, 231, 244, .06),
    0 0 50px rgba(115, 231, 244, .08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.tech-core::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  content: "";
}

.tech-core span {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1;
}

.tech-core span i {
  margin-left: 4px;
  color: var(--accent);
  font-size: 21px;
  font-style: normal;
}

.tech-core strong {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .18em;
}

.tech-core small {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 7px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tech-node {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 80px;
  height: 80px;
  padding: 0;
  place-content: center;
  gap: 4px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(12, 18, 20, .96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .34);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.tech-node i {
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.tech-node span {
  color: var(--muted);
  font-size: 7px;
}

.tech-node:hover,
.tech-node.is-active {
  border-color: rgba(115, 231, 244, .65);
  box-shadow: 0 0 28px rgba(115, 231, 244, .14);
  transform: scale(1.08);
}

.node-app { top: 0; left: calc(50% - 40px); }
.node-web { top: 22%; left: 2%; }
.node-infra { top: 19%; right: 0; }
.node-ai { right: 9%; bottom: 5%; }
.node-business { bottom: 0; left: 26%; }
.node-security { bottom: 27%; left: 0; }

.orbit-signal {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent);
}

.signal-one {
  top: calc(16.3% - 5px);
  left: calc(21.7% - 5px);
  animation: signalPulse 3.2s ease-in-out infinite;
}

.signal-two {
  top: calc(79.4% - 5px);
  left: calc(82.7% - 5px);
  border-color: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: signalPulse 3.2s 1.2s ease-in-out infinite;
}

@keyframes signalPulse {
  0%, 100% { opacity: .3; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.tech-ecosystem-menu {
  display: grid;
  gap: 9px;
}

.tech-ecosystem-head {
  display: grid;
  gap: 9px;
  margin-bottom: 11px;
}

.tech-ecosystem-head span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tech-ecosystem-head strong,
.tech-ecosystem-head h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.18;
  letter-spacing: -.045em;
}

.tech-map-card {
  display: grid;
  grid-template-columns: 35px 1fr 22px;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .018);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tech-map-card:hover,
.tech-map-card.is-active {
  border-color: rgba(115, 231, 244, .38);
  background: rgba(115, 231, 244, .05);
  transform: translateX(5px);
}

.tech-map-card > i {
  color: var(--muted-2);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.tech-map-card.is-active > i {
  color: var(--accent);
}

.tech-map-card > span {
  display: grid;
  gap: 3px;
}

.tech-map-card strong {
  font-size: 13px;
}

.tech-map-card small {
  color: var(--muted);
  font-size: 9px;
}

.tech-map-card > b {
  color: var(--muted-2);
  transition: color .2s ease;
}

.tech-map-card:hover > b,
.tech-map-card.is-active > b {
  color: var(--accent);
}

.tech-map-all {
  display: flex;
  justify-content: space-between;
  padding: 15px 3px 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
}

.tech-map-all span {
  color: var(--accent);
}

.footer-brand-block {
  display: grid;
  align-content: start;
  gap: 25px;
}

.dv-brand-footer {
  width: fit-content;
}

/* Inner ecosystem pages */

.inner-page main {
  display: block;
}

.inner-page .site-header {
  background: rgba(7, 10, 11, .9);
  backdrop-filter: blur(18px);
}

.inner-hero {
  min-height: 650px;
  padding: 170px 0 90px;
  overflow: hidden;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
  align-items: end;
}

.inner-kicker,
.section-index {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 930px;
  margin: 22px 0 0;
  font-size: clamp(54px, 7vw, 98px);
  line-height: .95;
  letter-spacing: -.075em;
}

.inner-hero h1 em {
  color: var(--muted);
  font-style: normal;
}

.inner-hero-copy {
  align-self: end;
  max-width: 500px;
  padding-bottom: 7px;
}

.inner-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.inner-hero-copy .button {
  margin-top: 28px;
}

.inner-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.inner-section:nth-child(even) {
  background: rgba(8, 12, 13, .55);
}

.inner-heading {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  margin-bottom: 50px;
}

.inner-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.inner-heading h2 em {
  color: var(--muted);
  font-style: normal;
}

.inner-heading p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

.domain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0, rgba(115, 231, 244, .07), transparent 15rem),
    rgba(255, 255, 255, .022);
  transition: transform .22s ease, border-color .22s ease;
}

.domain-card:hover {
  border-color: rgba(115, 231, 244, .38);
  transform: translateY(-5px);
}

.domain-card > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.domain-card h3 {
  margin: 54px 0 15px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.domain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.domain-card ul {
  display: grid;
  gap: 8px;
  padding: 20px 0 0;
  margin: auto 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.domain-card li {
  color: #c6cecb;
  font-size: 11px;
}

.domain-card li::before {
  margin-right: 8px;
  color: var(--accent);
  content: "·";
}

.domain-card-featured {
  border-color: rgba(115, 231, 244, .28);
  background:
    radial-gradient(circle at 90% 0, rgba(115, 231, 244, .12), transparent 18rem),
    rgba(115, 231, 244, .035);
}

.stack-marquee {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stack-marquee span {
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  font-size: 10px;
}

.page-cta {
  padding: 70px 0;
}

.page-cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(115, 231, 244, .23);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 40%, rgba(115, 231, 244, .1), transparent 24rem),
    rgba(9, 15, 17, .92);
}

.page-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.page-cta p {
  max-width: 650px;
  margin: 13px 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .ecosystem-nav {
    display: none;
  }

  .header-inner .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    margin-left: 14px;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, .025);
  }

  .header-inner .menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: var(--text);
    transition: transform .25s ease;
  }

  .header-inner .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .header-inner .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mega-menu {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    height: 100dvh;
    padding: 112px 32px calc(28px + env(safe-area-inset-bottom, 0px));
    background:
      radial-gradient(circle at 90% 10%, rgba(92, 141, 255, .12), transparent 42%),
      rgba(7, 10, 11, .995);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-menu-stage {
    position: relative;
    flex: 1;
    overflow: hidden;
  }

  .mobile-menu-root,
  .mobile-menu-panel {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    transition: opacity .3s ease, transform .3s cubic-bezier(.2, .7, .2, 1);
  }

  .mobile-menu-root {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.is-drilled .mobile-menu-root {
    pointer-events: none;
    opacity: 0;
    transform: translateX(-24%);
  }

  .mobile-menu-root button,
  .mobile-menu-root a {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 15px;
    align-items: baseline;
    width: 100%;
    padding: 17px 0;
    color: var(--text);
    border: 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    background: transparent;
    font-size: clamp(26px, 6vw, 40px);
    font-weight: 600;
    letter-spacing: -.05em;
    text-align: left;
  }

  .mobile-menu-root span {
    color: var(--accent);
    font-size: 9px;
    letter-spacing: .12em;
  }

  .mobile-menu-root b {
    color: var(--muted-2);
    font-size: 20px;
  }

  .mobile-menu-panel {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateX(32%);
  }

  .mobile-menu-panel.is-active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .mobile-menu-panel > strong {
    margin: 25px 0 18px;
    font-size: clamp(36px, 8vw, 58px);
    letter-spacing: -.06em;
  }

  .mobile-menu-panel > a {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 600;
  }

  .mobile-menu-panel > a b {
    color: var(--accent);
  }

  .mobile-menu-back {
    display: flex;
    gap: 12px;
    width: fit-content;
    padding: 0;
    color: var(--accent);
    border: 0;
    cursor: pointer;
    background: transparent;
    font-size: 12px;
    font-weight: 700;
  }

  .tech-ecosystem {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .tech-orbit {
    max-width: 560px;
  }

  .inner-hero-grid,
  .inner-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .dv-brand {
    min-width: 0;
  }

  .dv-brand-main b {
    font-size: 22px;
  }

  .dv-brand-main strong {
    font-size: 12px;
  }

  .dv-brand small {
    display: none;
  }

  .header-inner .menu-toggle {
    margin-left: auto;
  }

  .mobile-menu {
    padding: 96px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .tech-ecosystem {
    min-height: 0;
    padding: 24px 16px 20px;
    border-radius: 24px;
  }

  #services {
    padding-top: 24px;
  }

  #services .tech-ecosystem {
    margin-bottom: 0;
  }

  #services .trust-strip {
    margin-bottom: 62px;
  }

  .tech-orbit {
    width: min(100%, 430px);
  }

  .tech-orbit-ring-outer {
    animation-duration: 18s;
  }

  .tech-orbit-ring-inner {
    animation-duration: 13s;
  }

  .orbit-signal {
    animation-duration: 2.8s;
  }

  .tech-core {
    width: 132px;
    height: 132px;
  }

  .tech-core::before {
    position: absolute;
    inset: -10px;
    pointer-events: none;
    border: 1px solid rgba(115, 231, 244, .18);
    border-radius: 50%;
    content: "";
    opacity: .25;
    animation: coreBeacon 3.8s ease-in-out infinite;
  }

  .tech-core span {
    font-size: 27px;
  }

  .tech-core strong {
    font-size: 10px;
  }

  .tech-node {
    width: 60px;
    height: 60px;
  }

  .tech-node span {
    display: none;
  }

  .node-app { left: calc(50% - 30px); }

  .tech-map-card {
    min-height: 64px;
    padding: 11px 13px;
  }

  .tech-map-card small {
    line-height: 1.35;
  }

  .inner-hero {
    min-height: 0;
    padding: 128px 0 70px;
  }

  .inner-hero h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  .inner-hero-copy p {
    font-size: 15px;
  }

  .inner-section {
    padding: 76px 0;
  }

  .inner-heading {
    margin-bottom: 35px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }

  .domain-card {
    min-height: 290px;
    padding: 24px;
  }

  .page-cta {
    padding: 45px 0;
  }

  .page-cta-panel {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 23px;
  }
}

@media (max-width: 390px) {
  .dv-brand-main i {
    margin-inline: 3px;
  }

  .tech-ecosystem {
    margin-inline: -4px;
  }

  .tech-node {
    width: 54px;
    height: 54px;
  }

  .node-app { left: calc(50% - 27px); }

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

  .tech-core small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-orbit-ring,
  .orbit-signal,
  .tech-core::before {
    animation: none !important;
  }
}

@media (max-width: 780px) and (prefers-reduced-motion: reduce) {
  .tech-orbit-ring-outer {
    animation: orbitSpin 24s linear infinite !important;
  }

  .tech-orbit-ring-inner {
    animation: orbitSpinReverse 18s linear infinite !important;
  }

  .orbit-signal {
    animation: signalPulse 4s ease-in-out infinite !important;
  }

  .signal-two {
    animation-delay: 1.4s !important;
  }

  .tech-core::before {
    animation: coreBeacon 5.2s ease-in-out infinite !important;
  }
}

@keyframes coreBeacon {
  0%, 100% {
    opacity: .18;
    transform: scale(.96);
    box-shadow: 0 0 0 rgba(115, 231, 244, 0);
  }

  50% {
    opacity: .72;
    transform: scale(1.04);
    box-shadow: 0 0 22px rgba(115, 231, 244, .1);
  }
}
