/* Architecture Theme: Localized Structural and Decorative Styles for Diagram Stage */

.text-glow-orange {
  color: var(--orange2) !important;
  text-shadow: 0 0 26px rgba(255,102,0,0.35);
}

.panel--premium {
  border-color: rgba(255, 102, 0, 0.22) !important;
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.30), 0 0 68px rgba(255, 102, 0, 0.16) !important;
}

.wg-architecture-section.has-atmosphere {
  background: radial-gradient(circle at 50% 25%, rgba(var(--orange-rgb, 255,102,0), 0.07), transparent 45%);
}

.premium-icon.red {
  background: rgba(255, 107, 107, 0.12) !important;
  border-color: rgba(255, 107, 107, 0.35) !important;
  color: #ff6b6b !important;
  box-shadow: 0 0 34px rgba(255, 107, 107, 0.15) !important;
}

.wg-architecture-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}



.text-hero-premium {
  line-height: 1.12 !important;
  letter-spacing: -0.05em !important;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.strategic-conclusion--centered {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.wg-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.wg-proof-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.comparison-list {
  list-style: none !important;
  padding: 0 !important;
}

.wg-check {
  flex-shrink: 0;
}

.title-row--centered {
  justify-content: center;
  text-align: center;
}


/* Architecture Stage Grid (3-column) */
.wg-architecture-stage {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(420px, 1fr) 310px;
  gap: 34px;
  align-items: center;
  min-height: 620px;
}

.wg-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wg-node-card {
  position: relative;
  animation: wgFloat 7s ease-in-out infinite;
  overflow: visible !important;
}

.wg-node-card:nth-child(2) { animation-delay: -1.4s; }
.wg-node-card:nth-child(3) { animation-delay: -2.8s; }

.wg-shelf {
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 2px 14px rgba(var(--orange-rgb), 0.85);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}

.wg-node-card h4,
.wg-layer-card h4 {
  font-size: var(--text-base) !important;
  font-weight: 700;
  margin-bottom: 8px !important;
}

.wg-node-card p,
.wg-layer-card p,
.text-meta {
  font-size: var(--text-xs) !important;
  line-height: var(--leading-relaxed) !important;
  color: var(--muted);
}

.wg-node-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(var(--orange-rgb, 255,102,0), 0.13);
  border: 1px solid rgba(var(--orange-rgb, 255,102,0), 0.32);
  color: var(--orange2);
  box-shadow: 0 0 34px rgba(var(--orange-rgb, 255,102,0), 0.2);
}

.wg-core-shell {
  position: relative;
  padding: 30px;
  min-height: 560px;
  background:
    radial-gradient(circle at center, rgba(var(--orange-rgb, 255,102,0), 0.12), transparent 45%),
    linear-gradient(145deg, rgba(24,48,86,0.76), rgba(8,14,26,0.88));
  overflow: hidden;
}

.wg-core-shell::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(var(--orange-rgb, 255,102,0), 0.24);
  border-radius: 26px;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(var(--orange-rgb, 255,102,0), 0.05);
}

.wg-orbit {
  position: absolute;
  inset: 58px;
  border: 1px dashed rgba(var(--orange-rgb, 255,102,0), 0.32);
  border-radius: 50%;
  animation: wgRotate 26s linear infinite;
  opacity: 0.5;
}

.wg-orbit:nth-child(2) {
  inset: 108px;
  animation-direction: reverse;
  animation-duration: 18s;
  opacity: 0.34;
}

.wg-core-heading {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}

.wg-core-heading small {
  color: var(--orange2);
  font-size: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 800;
}

.wg-module-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  z-index: 2;
}

.wg-module {
  position: relative;
  min-height: 126px;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  background: rgba(8,14,26,0.70);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  animation: wgReveal 0.8s ease forwards;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.wg-module:nth-child(1) { animation-delay: 0.05s; }
.wg-module:nth-child(2) { animation-delay: 0.14s; }
.wg-module:nth-child(3) { animation-delay: 0.23s; }
.wg-module:nth-child(4) { animation-delay: 0.32s; }
.wg-module:nth-child(5) { animation-delay: 0.41s; }
.wg-module:nth-child(6) { animation-delay: 0.50s; }

.wg-module::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--orange-rgb, 255,102,0), 0.14), transparent 54%);
  opacity: 0;
  transition: opacity .28s ease;
}

.wg-module:hover {
  border-color: rgba(var(--orange-rgb, 255,102,0), 0.46);
  box-shadow: 0 0 30px rgba(var(--orange-rgb, 255,102,0), 0.12);
  transform: translateY(-4px);
}

.wg-module:hover::before { opacity: 1; }

.wg-module b {
  position: relative;
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-base);
}

.wg-module span {
  position: relative;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: 1.48;
  display: block;
}

.wg-ai-module {
  border-color: rgba(var(--orange-rgb, 255,102,0), 0.56);
  box-shadow: 0 0 34px rgba(var(--orange-rgb, 255,102,0), 0.14);
}

/* SVG Flow Lines */
.wg-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.wg-flow-path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 10 14;
  animation: wgDash 1.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(var(--orange-rgb, 255,102,0), 0.32));
}

.wg-right-layers {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wg-layer-card {
  position: relative;
  overflow: hidden;
}

.wg-layer-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(var(--orange-rgb, 255,102,0), 0.7);
}

/* Animations */
@keyframes wgDash { to { stroke-dashoffset: -24; } }
@keyframes wgRotate { to { transform: rotate(360deg); } }
@keyframes wgBlink { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes wgPulseGlow { 0%,100% { opacity: .65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes wgFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes wgReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes wgShine { 0%, 45% { transform: translateX(-100%); } 70%, 100% { transform: translateX(100%); } }

/* Responsiveness */
@media (max-width: 1180px) {
  .wg-architecture-stage {
    grid-template-columns: 1fr;
  }

  .wg-architecture-stage {
    min-height: auto;
  }

  .wg-side-stack,
  .wg-right-layers {
    grid-template-columns: repeat(2, 1fr);
  }

  .wg-flow-lines { display: none; }
}

@media (max-width: 760px) {
  .wg-architecture-section { padding: 72px 0; }
  .wg-module-grid,
  .wg-side-stack,
  .wg-right-layers {
    grid-template-columns: 1fr;
  }
  .wg-core-shell { padding: 22px; min-height: auto; }
  .wg-orbit { display: none; }
}

/* ── Integration Ecosystem Neural Styles (Centralized) ── */
.wg-ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: 108px 24px;
  background: transparent;
  isolation: isolate;
}

.wg-ecosystem-section::after {
  content: "";
  position: absolute;
  width: 860px;
  height: 860px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--orange-rgb, 255,102,0), 0.15), transparent 66%);
  filter: blur(20px);
  z-index: -2;
  animation: wgPulseGlow 6s ease-in-out infinite;
}

.wg-wrap {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}

.wg-header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 58px;
}

.wg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(var(--orange-rgb, 255,102,0), 0.38);
  border-radius: 999px;
  background: rgba(var(--orange-rgb, 255,102,0), 0.08);
  color: var(--orange2);
  font: 800 12px/1 "Montserrat", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(var(--orange-rgb, 255,102,0), 0.12);
}

.wg-eyebrow i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 15px var(--orange);
  animation: wgBlink 1.5s ease-in-out infinite;
}

.wg-title {
  max-width: 850px;
  margin: 22px 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -.06em;
}

.wg-title span {
  color: var(--orange2);
  text-shadow: 0 0 28px rgba(var(--orange-rgb, 255,102,0), 0.32);
}

.wg-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.wg-sales-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(25,47,86,0.62), rgba(8,14,26,0.82));
  box-shadow: 0 24px 80px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.1);
}

.wg-sales-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(var(--orange-rgb, 255,102,0),.13), transparent);
  transform: translateX(-100%);
  animation: wgShine 5.7s ease-in-out infinite;
}

.wg-sales-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  letter-spacing: -.025em;
  color: #fff;
}

.wg-sales-card p {
  position: relative;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.wg-proof {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.wg-proof li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 700;
  font-size: 14px;
  color: #EAF0FA;
}

.wg-check-bullet {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(var(--orange-rgb, 255,102,0), 0.15);
  border: 1px solid rgba(var(--orange-rgb, 255,102,0), 0.28);
  color: var(--orange2);
  box-shadow: 0 0 18px rgba(var(--orange-rgb, 255,102,0), 0.18);
}

.wg-stage {
  position: relative;
  min-height: 1100px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--orange-rgb, 255,102,0), 0.08), transparent 45%),
    linear-gradient(145deg, rgba(25,47,86,.18), rgba(5,9,20,.42));
  box-shadow: 0 40px 120px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.05);
  padding: 40px;
}

.wg-stage::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 34px;
  border: 1px solid rgba(var(--orange-rgb, 255,102,0), 0.15);
  pointer-events: none;
}

.wg-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .88;
  z-index: 1;
}

.wg-flow-line {
  fill: none;
  stroke: rgba(var(--orange-rgb, 255,102,0),.42);
  stroke-width: 2.5;
  stroke-dasharray: 8 12;
  animation: wgDash 1.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(var(--orange-rgb, 255,102,0),.25));
}

.wg-data-pulse {
  fill: var(--orange2);
  filter: drop-shadow(0 0 12px var(--orange));
  animation: wgIngest 3s infinite linear;
  opacity: 0;
}

.wg-orbit-ring {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 740px;
  height: 480px;
  margin-top: -240px;
  margin-left: -370px;
  max-width: 90%;
  border: 1px dashed rgba(var(--orange-rgb, 255,102,0),.30);
  border-radius: 50%;
  z-index: 0;
  animation: wgRotate 34s linear infinite;
  opacity: .62;
  pointer-events: none;
}

.wg-orbit-ring.orbit-2 {
  width: 580px;
  height: 380px;
  margin-top: -190px;
  margin-left: -290px;
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: .40;
}

.wg-core-brain {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 430px;
  min-height: 270px;
  transform: translate(-50%, -50%);
  z-index: 5;
  border: 1px solid rgba(var(--orange-rgb, 255,102,0),.52);
  border-radius: 34px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(var(--orange-rgb, 255,102,0),.16), transparent 42%),
    linear-gradient(145deg, rgba(25,47,86,.86), rgba(8,14,26,.92));
  box-shadow: 0 0 55px rgba(var(--orange-rgb, 255,102,0),.16), 0 30px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.11);
  animation: wgCorePulse 4.8s ease-in-out infinite;
}

.wg-core-brain small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange2);
  font: 900 11px/1 "Montserrat", sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.wg-core-brain h3 {
  margin: 0 0 13px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
}

.wg-core-brain p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 14px;
}

.wg-core-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.wg-core-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  color: #EAF0FA;
  font-weight: 800;
  font-size: 11px;
}

.wg-eco-node {
  position: absolute;
  z-index: 10;
  width: 300px;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  background: rgba(8,14,26,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  will-change: transform;
  transition: transform 0.1s ease-out, border-color .28s ease, box-shadow .28s ease;
}

.wg-eco-node::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: .76;
}

.wg-eco-node:hover {
  border-color: rgba(var(--orange-rgb, 255,102,0),.52);
  box-shadow: 0 0 34px rgba(var(--orange-rgb, 255,102,0),.13), 0 24px 70px rgba(0,0,0,.28);
}

.wg-eco-node.ai {
  left: calc(50% - 150px);
  top: 20px;
  border-color: rgba(var(--orange-rgb, 255,102,0),.48);
  background: linear-gradient(145deg, rgba(var(--orange-rgb, 255,102,0),.14), rgba(8,14,26,.82));
}

.wg-eco-node.network { left: 40px; top: 15%; }
.wg-eco-node.integrations { right: 40px; top: 15%; }
.wg-eco-node.business { left: 90px; bottom: 50px; }
.wg-eco-node.portal { right: 90px; bottom: 50px; }

.wg-node-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.wg-node-icon-box {
  width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center;
  border-radius: 16px; color: var(--orange2); background: rgba(var(--orange-rgb, 255,102,0),.13);
  border: 1px solid rgba(var(--orange-rgb, 255,102,0),.28); box-shadow: 0 0 36px rgba(var(--orange-rgb, 255,102,0),.34); font-size: 20px;
}

.wg-eco-node h4 { margin: 0; font-family: "Montserrat", sans-serif; font-size: 17px; line-height: 1.15; letter-spacing: -.015em; color: #fff; }
.wg-eco-node p { margin: 0 0 13px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

.wg-mini-list { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; }
.wg-mini-list li { position: relative; padding-left: 18px; color: #E7EDF8; font-size: 12.8px; line-height: 1.35; font-weight: 700; }
.wg-mini-list li::before {
  content: ""; position: absolute; left: 0; top: .58em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px rgba(var(--orange-rgb, 255,102,0),.65);
}

.wg-capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.wg-capability-box { border: 1px solid rgba(255,255,255,.10); border-radius: 22px; padding: 20px; background: rgba(255,255,255,.035); }
.wg-capability-box strong { display: block; margin-bottom: 8px; color: var(--orange2); font-family: "Montserrat", sans-serif; font-size: 18px; letter-spacing: -.015em; }
.wg-capability-box span { color: var(--muted); font-size: 13px; line-height: 1.48; }

.wg-cta-bar {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center;
  margin-top: 26px; padding: 25px; border: 1px solid rgba(var(--orange-rgb, 255,102,0),.24);
  border-radius: 28px; background: linear-gradient(90deg, rgba(var(--orange-rgb, 255,102,0),.11), rgba(25,47,86,.36));
}

.wg-cta-bar p { margin: 0; color: var(--muted); line-height: 1.58; }
.wg-cta-bar strong { color: var(--text); }

@keyframes wgIngest {
  0% { offset-distance: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes wgCorePulse {
  0%,100% { box-shadow: 0 0 55px rgba(var(--orange-rgb, 255,102,0),.16), 0 30px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.11); }
  50% { box-shadow: 0 0 78px rgba(var(--orange-rgb, 255,102,0),.28), 0 30px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.11); }
}

@media (max-width: 1180px) {
  .wg-stage { display: grid; gap: 18px; min-height: auto; }
  .wg-flow-svg, .wg-orbit-ring { display: none; }
  .wg-core-brain, .wg-eco-node {
    position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important;
    transform: none !important; width: 100%;
  }
  .wg-core-brain { order: 1; }
  .wg-eco-node.ai { order: 2; }
  .wg-eco-node.network { order: 3; }
  .wg-eco-node.integrations { order: 4; }
  .wg-eco-node.business { order: 5; }
  .wg-eco-node.portal { order: 6; }
  .wg-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wg-stage { padding: 18px; border-radius: 28px; }
  .wg-core-brain, .wg-eco-node { border-radius: 22px; padding: 20px; }
  .wg-capabilities-grid { grid-template-columns: 1fr; }
  .wg-cta-bar { grid-template-columns: 1fr; }
}

/* ── Integration Ecosystem Additional Utilities ── */
.stat strong { display: block; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.04em; }
.stat span { color: var(--muted); font-size: 14px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; justify-content: center; }
.chip {
  cursor: pointer; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
  color: var(--text); padding: 12px 14px; border-radius: 999px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.03em; transition: 220ms ease;
}
.chip.active, .chip:hover {
  background: linear-gradient(180deg, rgba(255,102,0,0.18), rgba(255,102,0,0.08));
  border-color: rgba(255,102,0,0.28); box-shadow: 0 0 0 1px rgba(255,102,0,0.08) inset;
}
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 30px; }
.category-card {
  padding: 24px; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)), rgba(13, 17, 27, 0.92);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45); position: relative; overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.category-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.7;
  background: radial-gradient(circle at top right, rgba(255,102,0,0.12), transparent 36%);
}
.category-card:hover {
  transform: translateY(-6px); border-color: rgba(255,102,0,0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,102,0,0.08);
}
.category-kicker {
  display: inline-flex; align-items: center; padding: 10px 12px; border-radius: 999px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: #ff8a33;
  border: 1px solid rgba(255,102,0,0.18); background: rgba(255,102,0,0.08);
}
.category-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag {
  padding: 8px 10px; border-radius: 999px; font-size: 12px;
  border: 1px solid rgba(255,255,255,0.08); color: var(--muted); background: rgba(255,255,255,0.03);
}
.integration-section {
  margin-top: 64px; padding: 28px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.integration-top { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 24px; }
.integration-count {
  padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted); background: rgba(255,255,255,0.03); white-space: nowrap; font-size: 14px;
}
.integration-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.integration-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 22px;
  padding-bottom: 90px !important;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)), rgba(11, 14, 22, 0.96);
}
.integration-card::before {
  content: ""; position: absolute; inset: auto -20% -40% auto; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,102,0,0.14), transparent 62%);
  filter: blur(12px); opacity: 0; transition: 260ms ease; z-index: 0;
}
.integration-card:hover {
  transform: translateY(-7px); border-color: rgba(255,102,0,0.26);
  box-shadow: 0 26px 52px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,102,0,0.08);
}
.integration-card:hover::before { opacity: 1; }
.integration-head { display: flex; gap: 14px; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.brand-block { display: flex; gap: 14px; align-items: center; min-width: 0; }
.logo-slot {
  width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; font-weight: 900;
  color: #fff; background: linear-gradient(160deg, rgba(255,102,0,0.22), #ff8a3314), rgba(255,255,255,0.03);
  border: 1px solid rgba(255,102,0,0.18); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); flex: 0 0 auto;
}
.brand-text h4 { margin: 0; font-size: 21px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-label { display: inline-flex; margin-top: 5px; font-size: 12px; color: #ff8a33; text-transform: uppercase; letter-spacing: 0.16em; }
.status-dot { width: 11px; height: 11px; border-radius: 999px; background: #76f0c7; box-shadow: 0 0 12px rgba(118,240,199,0.7); }
.integration-card p { margin: 18px 0 0; color: var(--muted); line-height: 1.72; font-size: 14px; position: relative; z-index: 1; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; padding: 8px 10px; border-radius: 999px;
  font-size: 12px; color: #dfe7f5; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.035);
}
.card-accent { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); color: #d8dfec; font-size: 14px; position: relative; z-index: 1; }
.orchestration {
  margin-top: 72px; padding: 32px; border-radius: 30px; border: 1px solid rgba(255,102,0,0.16);
  background: radial-gradient(circle at top right, rgba(255,102,0,0.14), transparent 30%), linear-gradient(180deg, rgba(255,102,0,0.08), rgba(255,255,255,0.015));
}
.orchestration-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 26px; align-items: stretch; }
.flow { padding: 24px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); background: rgba(8, 10, 17, 0.74); }
.flow-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 14px;
  border-radius: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); margin-bottom: 14px;
}
.flow-step strong {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px;
  color: #09090c; background: linear-gradient(135deg, var(--accent), #ff8a33);
}
.eco-cta {
  margin-top: 72px; padding: 34px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap;
}

.vendor-logo-corner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex !important;
  flex-direction: row !important;
  gap: 15px;
  z-index: 10;
  justify-content: flex-end !important;
  align-items: center !important;
  width: auto !important;
  height: 60px !important;
  max-width: calc(100% - 40px);
  pointer-events: none;
}

.vendor-logo-corner img {
  height: auto !important;
  max-height: 44px !important;
  width: auto !important;
  min-width: 100px;
  max-width: 140px !important;
  object-fit: contain !important;
  filter: saturate(1.5); 
  opacity: 0.7; 
  transition: all 0.2s ease;
}

.integration-card:hover .vendor-logo-corner img {
  opacity: 1;
  transform: translateY(-2px);
}

.logo-blend-screen {
  mix-blend-mode: screen !important;
}

@media (max-width: 1220px) {
  .hero-grid, .orchestration-grid, .category-grid, .integration-grid, .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .orchestration-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .stats, .category-grid, .integration-grid { grid-template-columns: 1fr; }
  .signal-row { grid-template-columns: 1fr; }
}

/* ── Mobile Animation Kill Switch (max-width: 900px) ───────────────────────
   Halts all continuous keyframe loops on mobile viewports to eliminate
   paint/compositor overhead, battery drain, and jank during scroll.
────────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* box-shadow repaint loop — forces main-thread repaint on every tick */
  .wg-core-brain {
    animation: none !important;
    box-shadow: 0 0 45px rgba(255, 102, 0, 0.22),
                0 20px 60px rgba(0, 0, 0, 0.34),
                inset 0 1px 0 rgba(255, 255, 255, 0.11) !important;
  }

  /* Large blurred radial gradient scale loop — heavy GPU rasterization */
  .wg-ecosystem-section::after {
    animation: none !important;
    opacity: 0.7 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  /* Floating card translateY loop */
  .wg-node-card {
    animation: none !important;
    transform: translateY(0) !important;
  }

  /* SVG dash-array and orbit rotation loops */
  .wg-flow-path,
  .wg-orbit,
  .wg-orbit-ring,
  .wg-data-pulse {
    animation: none !important;
  }

  /* Live indicator blink loop */
  .wg-eyebrow i {
    animation: none !important;
    opacity: 1 !important;
  }

  /* Sales card shine sweep loop */
  .wg-sales-card::before {
    animation: none !important;
    transform: translateX(-100%) !important;
  }

  /* ── Integration Card Tap-Hover Suppression ──────────────────────────────
     .integration-card::before is a 240×240px radial gradient with filter:
     blur(12px) that activates on :hover. On touch screens, :hover fires on
     every tap and persists, creating a blur rasterization burst across all
     visible cards simultaneously. Removing it from mobile eliminates that
     per-tap GPU cost.
  ────────────────────────────────────────────────────────────────────────── */
  .integration-card::before {
    display: none !important;
  }

  /* Remove lift transform + repaint shadow on touch tap */
  .integration-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* ── Ecosystem Node Backdrop-Filter Reduction ────────────────────────────
     .wg-eco-node carries backdrop-filter: blur(18px). At ≤1180px these nodes
     reflow to in-document position; during mobile scroll each blurred node
     creates an independent composited stacking context.
     Fallback: the node's background is rgba(8,14,26,0.72) — visually opaque.
  ────────────────────────────────────────────────────────────────────────── */
  .wg-eco-node {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 14, 26, 0.92) !important;
  }
}

/* ── Phone-Level Card Layout (max-width: 768px) ─────────────────────────────
   Clears forced height reservations and reflows the absolute vendor logo
   corner to in-document flow so card content is not obscured on narrow
   viewports. The padding-bottom: 90px that reserved space for the absolute
   logo is simultaneously restored to natural padding.
────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Remove forced 340px paint reservation on all 52 integration cards */
  .integration-card {
    min-height: 0 !important;
  }

  /* Zero min-width to prevent logo overflow in 1-column phone layout */
  .vendor-logo-corner img {
    min-width: 0 !important;
    max-height: 32px !important;
  }

  /* Collapse orchestration two-column grid to single column */
  .orchestration-grid {
    grid-template-columns: 1fr !important;
  }
}