.vm-home-hero-graph {
  --vmh-green: #9ac93e;
  --vmh-cyan: #63e7f5;
  --vmh-text: #f4fbff;
  --vmh-text-soft: rgba(223, 239, 246, 0.72);
  --vmh-board-height: 940px;
  --vmh-core-x: 50%;
  --vmh-core-y: 49%;
  --vmh-core-size: min(29vw, 432px);
  --vmh-card-width: clamp(196px, 13vw, 224px);
  --vmh-card-min-height: 142px;
  --vmh-card-padding: 16px;
  --vmh-card-radius: 28px;
  --vmh-title-size: clamp(1rem, 1.02vw, 1.12rem);
  --vmh-meta-size: clamp(0.76rem, 0.8vw, 0.84rem);
  --vmh-tag-size: 0.63rem;
  --vmh-chip-height: 34px;
  --vmh-chip-padding: 14px;
  --vmh-chip-size: 0.74rem;
  position: relative;
  display: block;
  width: 100%;
  color: var(--vmh-text);
  font-family: "Inter", "Segoe UI", sans-serif;
}

.vm-home-hero-graph__board {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: var(--vmh-board-height);
  border: 1px solid rgba(223, 246, 255, 0.14);
  border-radius: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(154, 201, 62, 0.16), transparent 15%),
    radial-gradient(circle at 50% 44%, rgba(99, 231, 245, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(7, 27, 40, 0.38);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.vm-home-hero-graph__board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
}

.vm-home-hero-graph__board::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 251, 255, 0.04) 45%, rgba(154, 201, 62, 0.07) 50%, transparent 60%);
  opacity: 0.32;
  transform: translateX(-42%);
  animation: vmHomeHeroGraphBoardScan 21s ease-in-out infinite;
  pointer-events: none;
}

.vm-home-hero-graph__map,
.vm-home-hero-graph__field,
.vm-home-hero-graph__chip-layer {
  position: absolute;
  inset: 0;
}

.vm-home-hero-graph__map {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.vm-home-hero-graph__field {
  z-index: 4;
}

.vm-home-hero-graph__chip-layer {
  z-index: 8;
  pointer-events: none;
}

.vm-home-hero-graph__mesh-line {
  fill: none;
  stroke: rgba(223, 246, 255, 0.12);
  stroke-width: 1.4;
  stroke-dasharray: 8 18;
  opacity: 0.24;
}

.vm-home-hero-graph__stream {
  fill: none;
  stroke: rgba(154, 201, 62, 0);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 24;
  opacity: 0;
}

.vm-home-hero-graph__stream.is-active {
  animation: vmHomeHeroGraphStreamFlash 2.6s ease;
}

.vm-home-hero-graph__ambient-link {
  --ambient-duration: 7.2s;
  --ambient-phase: 0s;
  opacity: 0;
  transition: opacity 680ms ease;
  pointer-events: none;
}

.vm-home-hero-graph__ambient-link.is-linked {
  opacity: 1;
}

.vm-home-hero-graph__ambient-stream {
  fill: none;
  stroke: rgba(182, 241, 247, 0.26);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-dasharray: 6 18;
  filter: drop-shadow(0 0 7px rgba(99, 231, 245, 0.12));
  animation: vmHomeHeroGraphAmbientStream var(--ambient-duration) linear infinite;
}

.vm-home-hero-graph__ambient-pulse {
  filter: url(#vm-home-hero-graph-dot-glow-preview);
  opacity: 0;
  animation: vmHomeHeroGraphAmbientPulse var(--ambient-duration) ease-in-out infinite;
}

.vm-home-hero-graph__ambient-pulse--in {
  fill: rgba(154, 201, 62, 0.84);
  animation-delay: var(--ambient-phase);
}

.vm-home-hero-graph__ambient-pulse--out {
  fill: rgba(99, 231, 245, 0.82);
  animation-delay: calc((var(--ambient-duration) / 2) + var(--ambient-phase));
}

.vm-home-hero-graph__pulse {
  fill: var(--vmh-green);
  opacity: 0;
  filter: url(#vm-home-hero-graph-dot-glow-preview);
}

.vm-home-hero-graph__pulse.is-active {
  opacity: 1;
}

.vm-home-hero-graph__card {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  display: flex;
  flex-direction: column;
  width: var(--vmh-card-width);
  min-height: var(--vmh-card-min-height);
  padding: var(--vmh-card-padding);
  border: 1px solid rgba(223, 246, 255, 0.22);
  border-radius: var(--vmh-card-radius);
  background:
    radial-gradient(circle at 82% 14%, rgba(154, 201, 62, 0.17), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(7, 27, 40, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translate(-50%, calc(-50% + 10px)) scale(0.96);
  transform-origin: center;
  opacity: 0;
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms ease,
    box-shadow 520ms ease;
}

.vm-home-hero-graph__card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--vmh-green), transparent);
  box-shadow: 0 0 16px rgba(154, 201, 62, 0.42);
}

.vm-home-hero-graph__card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 201, 62, 0.52), transparent);
  opacity: 0.42;
}

.vm-home-hero-graph__card.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.vm-home-hero-graph__card.is-refreshing {
  opacity: 0.82;
  transform: translate(-50%, calc(-50% + 4px)) scale(0.985);
  border-color: rgba(154, 201, 62, 0.34);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vm-home-hero-graph__card.is-energized {
  border-color: rgba(154, 201, 62, 0.36);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32), 0 0 18px rgba(154, 201, 62, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vm-home-hero-graph__card.is-priority {
  border-color: rgba(183, 239, 244, 0.28);
  background:
    radial-gradient(circle at 82% 14%, rgba(99, 231, 245, 0.14), transparent 32%),
    radial-gradient(circle at 24% 22%, rgba(154, 201, 62, 0.13), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(7, 27, 40, 0.86);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(99, 231, 245, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vm-home-hero-graph__card.is-priority::before {
  width: 54px;
  background: linear-gradient(90deg, rgba(99, 231, 245, 0.95), rgba(154, 201, 62, 0.76), transparent);
  box-shadow: 0 0 18px rgba(99, 231, 245, 0.22);
}

.vm-home-hero-graph__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  margin: 11px 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: rgba(244, 251, 255, 0.92);
  font-size: var(--vmh-tag-size);
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-home-hero-graph__card--intern .vm-home-hero-graph__tag {
  background: rgba(154, 201, 62, 0.16);
  color: #daf5a9;
}

.vm-home-hero-graph__card--extern .vm-home-hero-graph__tag {
  background: rgba(99, 231, 245, 0.14);
  color: #d0f8ff;
}

.vm-home-hero-graph__card--governance .vm-home-hero-graph__tag {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f6f9;
}

.vm-home-hero-graph__card--wissen .vm-home-hero-graph__tag {
  background: rgba(215, 221, 160, 0.14);
  color: #f0f1ca;
}

.vm-home-hero-graph__card--ausfuehrung .vm-home-hero-graph__tag {
  background: rgba(154, 201, 62, 0.11);
  color: #e1f4b8;
}

.vm-home-hero-graph__card.is-priority .vm-home-hero-graph__tag {
  box-shadow: inset 0 0 0 1px rgba(99, 231, 245, 0.16);
}

.vm-home-hero-graph__title {
  display: block;
  margin-bottom: 6px;
  font-size: var(--vmh-title-size);
  font-weight: 860;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.vm-home-hero-graph__meta {
  margin: 0;
  color: var(--vmh-text-soft);
  font-size: var(--vmh-meta-size);
  line-height: 1.48;
  text-wrap: pretty;
}

.vm-home-hero-graph__mini-graph {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 94px;
  height: 60px;
  opacity: 0.9;
}

.vm-home-hero-graph__mini-graph line,
.vm-home-hero-graph__mini-graph path {
  fill: none;
  stroke: rgba(223, 246, 255, 0.42);
  stroke-width: 1.4;
}

.vm-home-hero-graph__mini-graph circle {
  fill: rgba(7, 27, 40, 0.95);
  stroke: var(--vmh-green);
  stroke-width: 1.5;
  animation: vmHomeHeroGraphNodeBlink 4.8s ease-in-out infinite;
}

.vm-home-hero-graph__card.is-priority .vm-home-hero-graph__mini-graph line,
.vm-home-hero-graph__card.is-priority .vm-home-hero-graph__mini-graph path {
  stroke: rgba(153, 236, 246, 0.58);
}

.vm-home-hero-graph__card.is-priority .vm-home-hero-graph__mini-graph circle {
  stroke: rgba(99, 231, 245, 0.82);
}

.vm-home-hero-graph__core-shell {
  position: absolute;
  left: var(--vmh-core-x);
  top: var(--vmh-core-y);
  z-index: 6;
  width: var(--vmh-core-size);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  perspective: 900px;
}

.vm-home-hero-graph__core-halo,
.vm-home-hero-graph__core-orbit,
.vm-home-hero-graph__core-orbit::before,
.vm-home-hero-graph__core-orbit::after {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.vm-home-hero-graph__core-halo {
  inset: 0;
  background: radial-gradient(circle, rgba(154, 201, 62, 0.28), rgba(99, 231, 245, 0.12) 40%, transparent 72%);
  filter: blur(16px);
  opacity: 0.28;
  transform: scale(0.78);
  animation: vmHomeHeroGraphHalo 8.2s ease-in-out infinite;
}

.vm-home-hero-graph__core-orbit {
  inset: 4%;
  border: 1px solid rgba(154, 201, 62, 0.34);
  transform: rotateX(68deg) rotateZ(-18deg);
}

.vm-home-hero-graph__core-orbit::before,
.vm-home-hero-graph__core-orbit::after {
  content: "";
  inset: 14%;
  border: 1px dashed rgba(223, 246, 255, 0.22);
  animation: vmHomeHeroGraphOrbit 44s linear infinite;
}

.vm-home-hero-graph__core-orbit::after {
  inset: -10%;
  border-color: rgba(99, 231, 245, 0.18);
  animation-duration: 60s;
  animation-direction: reverse;
}

.vm-home-hero-graph__core {
  position: relative;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.16) 10%, transparent 24%),
    radial-gradient(circle at 67% 76%, rgba(99, 231, 245, 0.18), transparent 38%),
    radial-gradient(circle at 42% 42%, rgba(154, 201, 62, 0.5), rgba(154, 201, 62, 0.16) 34%, rgba(7, 27, 40, 0.98) 72%),
    linear-gradient(135deg, rgba(244, 251, 255, 0.18), rgba(7, 27, 40, 0.98) 58%);
  border: 1px solid rgba(244, 251, 255, 0.36);
  box-shadow:
    inset -28px -38px 64px rgba(0, 0, 0, 0.54),
    inset 22px 18px 38px rgba(255, 255, 255, 0.07),
    0 0 46px rgba(154, 201, 62, 0.28),
    0 0 126px rgba(99, 231, 245, 0.12);
  animation: vmHomeHeroGraphCorePulse 9.6s ease-in-out infinite;
}

.vm-home-hero-graph__core::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 22px, rgba(223, 246, 255, 0.14) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(223, 246, 255, 0.1) 35px 36px);
  opacity: 0.4;
  mask-image: radial-gradient(circle, black 0 62%, transparent 68%);
  animation: vmHomeHeroGraphSphereGrid 44s linear infinite;
}

.vm-home-hero-graph__core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.42), transparent 16%),
    radial-gradient(circle at 78% 72%, rgba(0, 0, 0, 0.34), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 30%, rgba(0, 0, 0, 0.24) 84%);
  pointer-events: none;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-halo {
  opacity: 0.18;
  filter: blur(12px);
  transform: scale(0.66);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-orbit {
  inset: 6%;
  border-color: rgba(154, 201, 62, 0.26);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-orbit::before {
  border-color: rgba(223, 246, 255, 0.16);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-orbit::after {
  border-color: rgba(99, 231, 245, 0.14);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core {
  width: 64%;
  border-color: rgba(244, 251, 255, 0.28);
  box-shadow:
    inset -24px -30px 52px rgba(0, 0, 0, 0.5),
    inset 15px 14px 28px rgba(255, 255, 255, 0.05),
    0 0 30px rgba(154, 201, 62, 0.18),
    0 0 76px rgba(99, 231, 245, 0.08);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core::before {
  opacity: 0.28;
}

.vm-home-hero-graph__core-network {
  position: absolute;
  inset: 13%;
  z-index: 2;
  opacity: 0.9;
}

.vm-home-hero-graph__core-network line {
  stroke: rgba(244, 251, 255, 0.46);
  stroke-width: 1.5;
}

.vm-home-hero-graph__core-network circle {
  fill: var(--vmh-green);
  filter: drop-shadow(0 0 12px rgba(154, 201, 62, 0.78));
  animation: vmHomeHeroGraphNodeBlink 5.2s ease-in-out infinite;
}

.vm-home-hero-graph__core-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 0 20%;
  text-align: center;
}

.vm-home-hero-graph__core-copy small {
  color: rgba(244, 251, 255, 0.8);
  font-size: clamp(0.66rem, 0.72vw, 0.92rem);
  font-weight: 860;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vm-home-hero-graph__core-copy strong {
  font-size: clamp(1.42rem, 2.66vw, 2.92rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.vm-home-hero-graph__core-copy span {
  color: var(--vmh-green);
  font-size: clamp(0.74rem, 0.84vw, 0.96rem);
  font-weight: 820;
  line-height: 1.2;
  text-wrap: balance;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-copy {
  gap: 7px;
  padding: 0 18%;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-copy small {
  font-size: clamp(0.62rem, 0.66vw, 0.82rem);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-copy strong {
  font-size: clamp(1.18rem, 2.02vw, 2.18rem);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__core-copy span {
  font-size: clamp(0.68rem, 0.72vw, 0.82rem);
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__tag {
  margin: 9px 0 10px;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__title {
  max-width: calc(100% - 54px);
  overflow-wrap: normal;
  hyphens: none;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__meta {
  max-width: calc(100% - 52px);
  line-height: 1.5;
  overflow-wrap: normal;
  hyphens: none;
}

.vm-home-hero-graph--homepage .vm-home-hero-graph__mini-graph {
  right: 8px;
  bottom: 8px;
  width: 64px;
  height: 40px;
  opacity: 0.68;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__board::before {
  opacity: 0.08;
  background-size: 72px 72px;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__board::after {
  opacity: 0.18;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__mesh-line {
  opacity: 0.18;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__ambient-stream {
  stroke-width: 1.25;
  opacity: 0.84;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__card {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__tag {
  margin: 10px 0 10px;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__mini-graph {
  right: 8px;
  bottom: 8px;
  width: 86px;
  height: 54px;
  opacity: 0.82;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-halo {
  opacity: 0.18;
  filter: blur(14px);
  transform: scale(0.7);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-orbit {
  inset: 5%;
  border-color: rgba(154, 201, 62, 0.24);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-orbit::before {
  border-color: rgba(223, 246, 255, 0.16);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-orbit::after {
  border-color: rgba(99, 231, 245, 0.12);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core {
  width: 66%;
  box-shadow:
    inset -26px -30px 52px rgba(0, 0, 0, 0.5),
    inset 18px 14px 28px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(154, 201, 62, 0.18),
    0 0 78px rgba(99, 231, 245, 0.08);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core::before {
  opacity: 0.28;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-copy {
  gap: 7px;
  padding: 0 18%;
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-copy strong {
  font-size: clamp(1.26rem, 2.48vw, 2.52rem);
}

.vm-home-hero-graph.is-layout-desktop .vm-home-hero-graph__core-copy span {
  font-size: clamp(0.7rem, 0.82vw, 0.88rem);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__board::before {
  opacity: 0.08;
  background-size: 62px 62px;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__board::after {
  opacity: 0.2;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__card {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__tag {
  margin: 10px 0 10px;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__meta {
  max-width: 17ch;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__mini-graph {
  right: 8px;
  bottom: 8px;
  width: 82px;
  height: 52px;
  opacity: 0.84;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core-halo {
  opacity: 0.2;
  filter: blur(13px);
  transform: scale(0.68);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core-orbit {
  inset: 6%;
  border-color: rgba(154, 201, 62, 0.24);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core {
  width: 64%;
  box-shadow:
    inset -24px -28px 50px rgba(0, 0, 0, 0.5),
    inset 16px 14px 26px rgba(255, 255, 255, 0.06),
    0 0 26px rgba(154, 201, 62, 0.16),
    0 0 68px rgba(99, 231, 245, 0.08);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core-copy {
  gap: 6px;
  padding: 0 17%;
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core-copy strong {
  font-size: clamp(1.12rem, 3.2vw, 2rem);
}

.vm-home-hero-graph.is-layout-tablet .vm-home-hero-graph__core-copy span {
  font-size: clamp(0.64rem, 1.16vw, 0.78rem);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__board {
  border-radius: 24px;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__board::before {
  opacity: 0.06;
  background-size: 56px 56px;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__board::after {
  opacity: 0.14;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__mesh-line {
  opacity: 0.16;
  stroke-dasharray: 6 18;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__stream {
  stroke-width: 2.35;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__ambient-stream {
  stroke-width: 1.1;
  opacity: 0.82;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__ambient-pulse--in {
  fill: rgba(154, 201, 62, 0.72);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__ambient-pulse--out {
  fill: rgba(99, 231, 245, 0.68);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__card {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__tag {
  min-height: 16px;
  padding: 0 6px;
  margin: 6px 0 6px;
  letter-spacing: 0.04em;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__title {
  margin-bottom: 4px;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__meta {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 11ch;
  line-height: 1.32;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__mini-graph {
  display: none;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-halo {
  opacity: 0.14;
  filter: blur(10px);
  transform: scale(0.6);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-orbit {
  inset: 8%;
  border-color: rgba(154, 201, 62, 0.18);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-orbit::before {
  border-color: rgba(223, 246, 255, 0.12);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-orbit::after {
  opacity: 0;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core {
  width: 73%;
  box-shadow:
    inset -18px -24px 42px rgba(0, 0, 0, 0.48),
    inset 12px 10px 20px rgba(255, 255, 255, 0.05),
    0 0 22px rgba(154, 201, 62, 0.14),
    0 0 52px rgba(99, 231, 245, 0.07);
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core::before {
  opacity: 0.22;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-network {
  inset: 14%;
  opacity: 0.8;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-copy {
  gap: 4px;
  padding: 0 14%;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-copy small {
  font-size: clamp(0.46rem, 1.7vw, 0.56rem);
  letter-spacing: 0.1em;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-copy strong {
  font-size: clamp(1.04rem, 5.8vw, 1.42rem);
  line-height: 0.92;
}

.vm-home-hero-graph.is-layout-mobile .vm-home-hero-graph__core-copy span {
  margin: 0 auto;
  font-size: clamp(0.48rem, 1.95vw, 0.58rem);
  max-width: 11ch;
  line-height: 1.08;
}

.vm-home-hero-graph__chip {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  min-height: var(--vmh-chip-height);
  padding: 0 var(--vmh-chip-padding);
  border-radius: 999px;
  background: rgba(7, 27, 40, 0.76);
  border: 1px solid rgba(223, 246, 255, 0.16);
  color: rgba(244, 251, 255, 0.9);
  font-size: var(--vmh-chip-size);
  font-weight: 770;
  letter-spacing: 0.04em;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  animation: vmHomeHeroGraphChipFloat 8.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: opacity 420ms ease;
}

@keyframes vmHomeHeroGraphBoardScan {
  0%, 100% { transform: translateX(-42%); opacity: 0.22; }
  46% { transform: translateX(22%); opacity: 0.4; }
  52% { transform: translateX(28%); opacity: 0.1; }
}

@keyframes vmHomeHeroGraphStreamFlash {
  0% { opacity: 0; stroke: rgba(154, 201, 62, 0); }
  18% { opacity: 1; stroke: rgba(154, 201, 62, 0.98); }
  42% { opacity: 1; stroke: rgba(99, 231, 245, 0.92); }
  64% { opacity: 0.84; stroke: rgba(154, 201, 62, 0.82); }
  100% { opacity: 0; stroke: rgba(154, 201, 62, 0); }
}

@keyframes vmHomeHeroGraphAmbientStream {
  0% { stroke-dashoffset: 0; opacity: 0.18; }
  50% { stroke-dashoffset: -36; opacity: 0.42; }
  100% { stroke-dashoffset: -72; opacity: 0.18; }
}

@keyframes vmHomeHeroGraphAmbientPulse {
  0%, 8%, 100% { opacity: 0; }
  18%, 56% { opacity: 0.74; }
  70% { opacity: 0.18; }
}

@keyframes vmHomeHeroGraphNodeBlink {
  0%, 100% { transform: scale(1); opacity: 0.84; }
  50% { transform: scale(1.16); opacity: 1; }
}

@keyframes vmHomeHeroGraphHalo {
  0%, 100% { transform: scale(0.78); opacity: 0.22; }
  50% { transform: scale(1.02); opacity: 0.42; }
}

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

@keyframes vmHomeHeroGraphCorePulse {
  0%, 100% { transform: scale(0.985); }
  50% { transform: scale(1.03); }
}

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

@keyframes vmHomeHeroGraphChipFloat {
  0%, 100% { translate: 0 0; opacity: 0.76; }
  50% { translate: 0 -6px; opacity: 1; }
}

@media (max-width: 1180px) {
  .vm-home-hero-graph__board {
    border-radius: 30px;
  }
}

@media (max-width: 760px) {
  .vm-home-hero-graph__board {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vm-home-hero-graph *,
  .vm-home-hero-graph *::before,
  .vm-home-hero-graph *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
