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

:root {
  color-scheme: dark;
  --mouse-x: 50%;
  --mouse-y: 18%;
  --bg: #050814;
  --bg-deep: #03050d;
  --bg-soft: #0a1020;
  --ink: #f8fbff;
  --muted: #a8b3c6;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --cyan: #5ef1ff;
  --electric: #2f7cff;
  --blue: #6a7dff;
  --violet: #9b5cff;
  --green: #7cffb2;
  --lime: #d9ff65;
  --light: #f8fbff;
  --dark-text: #0b1020;
  --light-muted: #596476;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --shadow-glow: 0 0 80px rgba(94, 241, 255, 0.16);
  --section-pad: clamp(78px, 9vw, 118px);
  --font-heading: "Space Grotesk", "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(94, 241, 255, 0.14), transparent 22%),
    radial-gradient(circle at 8% 6%, rgba(94, 241, 255, 0.2), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(155, 92, 255, 0.22), transparent 30%),
    radial-gradient(circle at 84% 84%, rgba(124, 255, 178, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg-deep) 0%, #08111f 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), black, transparent 48%);
  pointer-events: none;
}

.cursor-aura,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-aura {
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle, rgba(94, 241, 255, 0.18), rgba(106, 125, 255, 0.07) 36%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease, width 180ms ease, height 180ms ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.9);
  opacity: 0;
  transition: opacity 180ms ease, transform 120ms ease;
}

body.has-pointer .cursor-aura,
body.has-pointer .cursor-dot {
  opacity: 1;
}

body.is-hovering .cursor-aura {
  width: 430px;
  height: 430px;
  opacity: 0.86;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(94, 241, 255, 0.2), transparent 28%),
    radial-gradient(circle at 68% 58%, rgba(155, 92, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(3, 5, 13, 0.98), rgba(6, 9, 20, 0.98));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-transition::before {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-color: rgba(94, 241, 255, 0.95);
  border-right-color: rgba(217, 255, 101, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94, 241, 255, 0.28), transparent 50%),
    conic-gradient(from 0deg, rgba(94, 241, 255, 0.05), rgba(94, 241, 255, 0.72), rgba(155, 92, 255, 0.5), rgba(217, 255, 101, 0.68), rgba(94, 241, 255, 0.05));
  box-shadow:
    0 0 44px rgba(94, 241, 255, 0.3),
    inset 0 0 34px rgba(255, 255, 255, 0.08);
  content: "";
  animation: loader-spin 1s linear infinite;
}

.page-transition::after {
  position: absolute;
  top: calc(50% + 74px);
  left: 50%;
  width: min(320px, calc(100% - 48px));
  color: #eef6ff;
  content: "Pixlence Labs\A Loading growth system";
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
  white-space: pre;
  transform: translateX(-50%);
}

body.is-loading .page-transition,
body.is-leaving .page-transition {
  visibility: visible;
}

body.is-loading .page-transition {
  animation: loader-in 220ms ease forwards, loader-out 420ms ease 520ms forwards;
}

body.is-leaving .page-transition {
  animation: loader-in 260ms ease forwards;
}

.abstract-shape {
  position: fixed;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(94, 241, 255, 0.14);
  border-radius: 34% 66% 48% 52%;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.08), rgba(155, 92, 255, 0.08), rgba(217, 255, 101, 0.04));
  filter: blur(0.2px);
  pointer-events: none;
  animation: shape-drift 18s ease-in-out infinite;
}

.shape-one {
  top: 18%;
  left: 3%;
}

.shape-two {
  right: 4%;
  bottom: 12%;
  animation-delay: -7s;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #06101d;
  background: var(--cyan);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1760px, calc(100% - 28px));
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 10, 22, 0.18);
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, top 260ms ease, width 260ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 9, 20, 0.86);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.site-header::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.12), transparent 34%, rgba(217, 255, 101, 0.08));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.brand,
.desktop-nav,
.hero-actions,
.signal-strip,
.capability-band,
.console-header,
.console-metrics,
.systems-stats,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  min-width: max-content;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.4);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 48%, var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.28), 0 0 38px rgba(155, 92, 255, 0.12);
}

.brand-mark span {
  width: 12px;
  height: 12px;
  border: 3px solid #06101d;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.desktop-nav {
  justify-content: center;
  gap: 2px;
  min-width: 0;
  color: #d9e3f3;
  font-size: 0.76rem;
  font-weight: 760;
}

.desktop-nav a,
.nav-link {
  border: 0;
  border-radius: 999px;
  color: #d9e3f3;
  background: transparent;
  cursor: pointer;
  padding: 9px 8px;
  opacity: 0.82;
  white-space: nowrap;
  transition: opacity 180ms ease, color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.nav-link:hover,
.nav-dropdown:hover .dropdown-trigger,
.nav-dropdown.is-open .dropdown-trigger {
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dropdown-trigger span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .dropdown-trigger span,
.nav-dropdown.is-open .dropdown-trigger span {
  transform: rotate(225deg) translateY(-1px);
}

.solutions-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: grid;
  width: min(680px, calc(100vw - 40px));
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 12%, rgba(94, 241, 255, 0.14), transparent 32%),
    rgba(6, 10, 22, 0.94);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(24px);
}

.nav-dropdown:hover .solutions-menu,
.nav-dropdown.is-open .solutions-menu,
.nav-dropdown:focus-within .solutions-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.solutions-menu a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  opacity: 1;
}

.solutions-menu a:hover {
  border-color: rgba(94, 241, 255, 0.34);
  background: rgba(94, 241, 255, 0.08);
}

.menu-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 52%, var(--lime));
  font-size: 0.72rem;
  font-weight: 950;
}

.solutions-menu strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
}

.solutions-menu small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

#solutions,
#engine,
#industries,
#advantage,
#cases,
#resources,
#cta {
  scroll-margin-top: 120px;
}

.nav-cta {
  justify-self: end;
  padding: 10px 15px;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, #eafaff);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.enterprise-header {
  width: min(1420px, calc(100% - 28px));
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 10, 22, 0.2);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.16);
}

.enterprise-header.is-scrolled {
  width: min(1360px, calc(100% - 24px));
}

.enterprise-nav {
  gap: 4px;
  font-size: 0.78rem;
}

.enterprise-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  opacity: 0.9;
}

.enterprise-nav .nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.enterprise-nav .nav-link:hover::after,
.enterprise-nav .nav-link.is-active::after,
.has-menu.is-open > .menu-trigger::after,
.has-menu:focus-within > .menu-trigger::after,
.has-menu:hover > .menu-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.enterprise-nav .nav-link.is-active {
  color: #ffffff;
  background: rgba(94, 241, 255, 0.095);
  box-shadow: inset 0 0 0 1px rgba(94, 241, 255, 0.14), 0 0 24px rgba(94, 241, 255, 0.1);
  opacity: 1;
}

.nav-item {
  position: relative;
}

.menu-trigger {
  border: 0;
}

.menu-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.has-menu:hover .menu-caret,
.has-menu.is-open .menu-caret,
.has-menu:focus-within .menu-caret {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu,
.compact-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 70;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 12%, rgba(94, 241, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(155, 92, 255, 0.13), transparent 30%),
    rgba(5, 9, 20, 0.94);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 70px rgba(94, 241, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(28px);
}

.mega-menu::before,
.compact-menu::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.14), transparent 35%, rgba(217, 255, 101, 0.08));
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.has-menu:hover > .mega-menu,
.has-menu.is-open > .mega-menu,
.has-menu:focus-within > .mega-menu,
.has-menu:hover > .compact-menu,
.has-menu.is-open > .compact-menu,
.has-menu:focus-within > .compact-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.growth-mega {
  width: min(1180px, calc(100vw - 48px));
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.88fr) repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.mega-menu-intro,
.mega-column,
.compact-menu {
  overflow: hidden;
}

.mega-menu-intro {
  display: grid;
  align-content: space-between;
  min-height: 410px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 241, 255, 0.18), transparent 38%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.mega-menu-intro span,
.mega-column > p {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu-intro strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.08;
}

.mega-menu-intro p {
  color: var(--muted);
  line-height: 1.55;
}

.mega-menu-intro a {
  display: inline-flex;
  width: fit-content;
  padding: 11px 13px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #07101f;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-size: 0.78rem;
  font-weight: 950;
  opacity: 1;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-column a,
.compact-menu a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  opacity: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mega-column a:hover,
.compact-menu a:hover,
.mega-column a.is-active,
.compact-menu a.is-active {
  border-color: rgba(94, 241, 255, 0.34);
  background: rgba(94, 241, 255, 0.085);
  box-shadow: 0 20px 60px rgba(94, 241, 255, 0.11);
  transform: translateY(-2px);
}

.mega-column strong,
.compact-menu strong {
  display: block;
  color: #ffffff;
  font-size: 0.86rem;
  line-height: 1.2;
}

.mega-column small,
.compact-menu small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
  white-space: normal;
}

.compact-menu {
  display: grid;
  width: min(390px, calc(100vw - 44px));
  gap: 8px;
  padding: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 74px;
  right: 14px;
  left: 14px;
  z-index: 80;
  max-height: calc(100svh - 92px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 8%, rgba(94, 241, 255, 0.17), transparent 34%),
    rgba(5, 9, 20, 0.96);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 200ms ease, transform 200ms ease;
  backdrop-filter: blur(26px);
}

body.mobile-nav-open .mobile-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-drawer-inner {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.mobile-link,
.mobile-drawer summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  list-style: none;
}

.mobile-drawer summary::-webkit-details-marker {
  display: none;
}

.mobile-drawer summary::after {
  content: "+";
  color: var(--cyan);
  font-weight: 950;
}

.mobile-drawer details[open] summary::after {
  content: "-";
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px 0 2px;
}

.mobile-menu-grid a {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: #dfeaff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 850;
}

.mobile-drawer-cta {
  position: sticky;
  bottom: 0;
  display: grid;
  min-height: 52px;
  place-items: center;
  margin-top: 6px;
  border-radius: 999px;
  color: #06101d;
  background: linear-gradient(135deg, #ffffff, var(--cyan), var(--lime));
  font-weight: 950;
  box-shadow: 0 0 34px rgba(94, 241, 255, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  width: min(1220px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 540px);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 88px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.mesh {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.5;
  animation: ambient-float 9s ease-in-out infinite;
}

.mesh-one {
  top: 14%;
  right: 24%;
  background: var(--cyan);
}

.mesh-two {
  right: -6%;
  bottom: 16%;
  background: var(--violet);
  animation-delay: -3s;
}

.data-plane {
  position: absolute;
  right: -18%;
  bottom: 13%;
  width: 860px;
  height: 540px;
  background-image:
    linear-gradient(rgba(94, 241, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 241, 255, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  transform: perspective(760px) rotateX(64deg) rotateZ(-10deg);
  animation: grid-drift 13s linear infinite;
}

.particle {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(94, 241, 255, 0.9);
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.9);
  animation: particle-float 9s ease-in-out infinite;
}

.particle-a { top: 22%; left: 4%; }
.particle-b { top: 64%; left: 44%; animation-delay: -2s; }
.particle-c { right: 10%; bottom: 24%; animation-delay: -4s; }
.particle-d { top: 36%; right: 34%; animation-delay: -6s; }

.hero-content,
.hero-console {
  will-change: transform;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-line {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(94, 241, 255, 0.2);
  border-radius: 999px;
  color: #dffaff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 38px rgba(94, 241, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  backdrop-filter: blur(18px);
}

.brand-line::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(124, 255, 178, 0.9);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

h1,
h2,
h3,
.brand,
.nav-cta,
.button,
.card-link {
  font-family: var(--font-heading);
}

.hero-copy,
.section-copy p,
.contact-copy p,
.systems-panel p {
  max-width: 660px;
  color: #c2ccdc;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 850;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.button:focus-visible,
.nav-cta:focus-visible,
.nav-link:focus-visible,
.card-link:focus-visible,
.case-library-card a:focus-visible,
.industry-reveal a:focus-visible {
  outline: 3px solid rgba(94, 241, 255, 0.72);
  outline-offset: 3px;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.55), transparent 62%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), #9fffd8 42%, var(--lime));
  box-shadow: 0 18px 48px rgba(94, 241, 255, 0.22), 0 0 34px rgba(217, 255, 101, 0.1);
}

.button-secondary {
  border-color: var(--line);
  color: #edf5ff;
  background: rgba(255, 255, 255, 0.07);
}

.button-tertiary {
  border-color: rgba(155, 92, 255, 0.34);
  color: #f4edff;
  background: rgba(155, 92, 255, 0.1);
}

.signal-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.signal-strip span,
.capability-band span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d5e6;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 750;
}

.signal-strip span {
  padding: 9px 12px;
}

.console-shell,
.service-card,
.systems-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 80% 0%, rgba(155, 92, 255, 0.08), transparent 32%);
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.console-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 18px;
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 120ms ease;
}

.console-shell::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(94, 241, 255, 0.16) 45%, transparent 62%),
    radial-gradient(circle at 70% 22%, rgba(124, 255, 178, 0.18), transparent 34%);
  pointer-events: none;
}

.console-shell::after,
.service-card::after,
.engine-card::after,
.timeline article::after,
.audience-grid article::after,
.systems-panel::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.console-shell:hover,
.service-card:hover,
.engine-card:hover,
.timeline article:hover,
.audience-grid article:hover,
.systems-panel:hover {
  border-color: rgba(94, 241, 255, 0.38);
}

.console-shell:hover::after,
.service-card:hover::after,
.engine-card:hover::after,
.timeline article:hover::after,
.audience-grid article:hover::after,
.systems-panel:hover::after {
  opacity: 1;
}

.console-header {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  color: #dceaff;
  font-size: 0.82rem;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.console-header strong {
  color: var(--green);
}

.network-map,
.command-orbit {
  position: relative;
  height: 330px;
  margin: 44px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.14), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.command-orbit {
  height: 430px;
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ecf7ff;
  background: rgba(8, 15, 30, 0.72);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26), 0 0 28px rgba(94, 241, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  animation: card-float 5.8s ease-in-out infinite;
}

.float-one { top: 14%; left: 5%; }
.float-two { top: 19%; right: 8%; animation-delay: -1s; }
.float-three { top: 47%; left: 4%; animation-delay: -2s; }
.float-four { right: 4%; bottom: 34%; animation-delay: -3s; }
.float-five { bottom: 12%; left: 16%; animation-delay: -4s; }
.float-six { right: 12%; bottom: 9%; animation-delay: -5s; }

.orbit,
.radar-core {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  border: 1px solid rgba(94, 241, 255, 0.18);
  box-shadow: inset 0 0 36px rgba(94, 241, 255, 0.06);
}

.orbit-one {
  width: 210px;
  height: 210px;
  animation: orbit-spin 18s linear infinite;
}

.orbit-two {
  width: 310px;
  height: 310px;
  border-color: rgba(217, 255, 101, 0.14);
  animation: orbit-spin 26s linear reverse infinite;
}

.orbit::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(217, 255, 101, 0.8);
  content: "";
}

.radar-core {
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.28), rgba(94, 241, 255, 0.04) 58%, transparent 60%);
  animation: core-breathe 3.8s ease-in-out infinite;
}

.node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.9);
  animation: pulse 2.8s ease-in-out infinite;
}

.node-a { top: 15%; left: 20%; }
.node-b { top: 32%; right: 18%; animation-delay: 300ms; }
.node-c { right: 38%; bottom: 16%; animation-delay: 600ms; }
.node-d { bottom: 28%; left: 16%; animation-delay: 900ms; }
.node-e { top: 48%; left: 47%; animation-delay: 1200ms; }

.beam {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.78), transparent);
  transform-origin: left center;
}

.beam-a { top: 25%; left: 23%; width: 255px; transform: rotate(10deg); }
.beam-b { top: 52%; left: 21%; width: 245px; transform: rotate(-8deg); }
.beam-c { right: 18%; bottom: 35%; width: 200px; transform: rotate(-38deg); }

.scan-line {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(94, 241, 255, 0.22), transparent);
  animation: scan 5s ease-in-out infinite;
}

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

.console-metrics article,
.activity-feed,
.engine-card,
.timeline article,
.audience-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.console-metrics article {
  padding: 14px;
}

.console-metrics span,
.activity-feed,
.systems-stats span,
.form-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.console-metrics strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.5rem;
}

.activity-feed {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  padding: 12px 14px;
}

.activity-feed p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
}

.activity-feed span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.capability-band {
  width: min(1180px, calc(100% - 40px));
  justify-content: space-between;
  gap: 12px;
  margin: 0 auto;
  padding: 24px 0 82px;
}

.capability-band span {
  flex: 1;
  min-width: max-content;
  padding: 14px 18px;
  text-align: center;
}

.trust-metrics {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0 auto;
  padding: 24px 0 82px;
}

.trust-metrics article,
.industry-grid article,
.advantage-grid article,
.case-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-metrics article::after,
.industry-grid article::after,
.advantage-grid article::after,
.case-grid article::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 36%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.trust-metrics article:hover,
.industry-grid article:hover,
.advantage-grid article:hover,
.case-grid article:hover {
  border-color: rgba(94, 241, 255, 0.38);
  box-shadow: 0 28px 80px rgba(94, 241, 255, 0.11);
  transform: translateY(-4px);
}

.trust-metrics article:hover::after,
.industry-grid article:hover::after,
.advantage-grid article:hover::after,
.case-grid article:hover::after {
  opacity: 1;
}

.trust-metrics article {
  min-height: 132px;
  padding: 22px;
}

.trust-metrics strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1;
}

.trust-metrics p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section,
.process-section,
.audience-section,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.platform-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.engine-grid {
  display: grid;
  gap: 12px;
}

.engine-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  overflow: hidden;
  padding: 22px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 160ms ease;
}

.engine-card:hover {
  box-shadow: 0 24px 70px rgba(94, 241, 255, 0.12);
}

.engine-card.is-active {
  border-color: rgba(94, 241, 255, 0.34);
  background: rgba(94, 241, 255, 0.09);
}

.engine-card span,
.timeline span,
.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.75rem;
  font-weight: 900;
}

.engine-card p,
.service-card p,
.timeline p,
.audience-grid p {
  margin-bottom: 0;
  color: #aeb9ca;
  line-height: 1.6;
}

.services-section {
  width: 100%;
  padding: var(--section-pad) max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 8%, rgba(124, 255, 178, 0.14), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(155, 92, 255, 0.16), transparent 34%),
    #060a12;
}

.enterprise-trust-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 var(--section-pad);
}

.trust-architecture-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  overflow: hidden;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(94, 241, 255, 0.09), transparent 44%),
    radial-gradient(circle at 88% 16%, rgba(217, 255, 101, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.trust-architecture-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 40%, black 100%);
  opacity: 0.72;
  pointer-events: none;
}

.trust-architecture-card > * {
  position: relative;
  z-index: 1;
}

.trust-architecture-card h2 {
  font-size: clamp(2.1rem, 4vw, 4.25rem);
}

.trust-architecture-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

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

.trust-pill-grid article {
  min-height: 166px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(5, 8, 20, 0.52);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trust-pill-grid article:hover {
  border-color: rgba(94, 241, 255, 0.38);
  background: rgba(94, 241, 255, 0.075);
  transform: translateY(-4px);
}

.trust-pill-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.7rem;
  font-weight: 950;
}

.trust-pill-grid strong,
.trust-pill-grid small {
  display: block;
}

.trust-pill-grid strong {
  margin-bottom: 8px;
  color: #ffffff;
}

.trust-pill-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.card-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 850;
}

.card-link::after {
  margin-left: 8px;
  content: "->";
  transition: transform 180ms ease;
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

.component-hero,
.component-trust-metrics,
.component-feature-card,
.component-service-card,
.component-industry-card,
.component-cta,
.component-case-card,
.component-process-timeline,
.component-floating-ai-visual,
.component-contact-form,
.component-footer {
  border-radius: var(--radius);
}

.component-card-surface,
.service-card,
.premium-industry-card,
.case-library-card,
.growth-request-form,
.strategy-panel,
.trust-architecture-card,
.console-shell,
.data-intel-panel,
.deliverability-dashboard,
.workflow-builder {
  isolation: isolate;
}

.component-card-surface::before,
.service-card::before,
.premium-industry-card::after,
.case-library-card::before,
.growth-request-form::before,
.strategy-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.11), transparent 44%, rgba(155, 92, 255, 0.12));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.component-card-surface:hover::before,
.service-card:hover::before,
.premium-industry-card:hover::after,
.case-library-card:hover::before,
.growth-request-form:hover::before,
.strategy-panel:hover::before {
  opacity: 1;
}

.section-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-intro {
  max-width: 860px;
  margin: -24px 0 36px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 392px;
  overflow: hidden;
  padding: 24px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-6px);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: #dce7f6;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
}

.process-section,
.audience-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
}

.growth-engine-section,
.case-section,
.resources-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: var(--section-pad) max(20px, calc((100% - 1180px) / 2));
}

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

.resource-grid a {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-grid a:hover {
  border-color: rgba(36, 93, 216, 0.28);
  box-shadow: 0 28px 80px rgba(36, 93, 216, 0.13);
  transform: translateY(-4px);
}

.resource-grid span {
  color: #245dd8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-grid strong {
  display: block;
  margin-top: 42px;
  font-size: 1.24rem;
  line-height: 1.22;
}

.dark-text .eyebrow,
.process-section .eyebrow,
.audience-section .eyebrow {
  color: #245dd8;
}

.timeline,
.audience-grid {
  display: grid;
  gap: 14px;
}

.pipeline-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.pipeline-flow::before {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 92%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(36, 93, 216, 0.28), rgba(94, 241, 255, 0.9), rgba(36, 93, 216, 0.28), transparent);
  content: "";
  transform: translateY(-50%);
  animation: flow-line 3.8s linear infinite;
}

.pipeline-flow::after,
.workflow-chain::after,
.journey-map::after {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  content: "";
  opacity: 0.76;
  animation: progress-sweep 3.6s ease-in-out infinite;
}

.pipeline-flow::after,
.workflow-chain::after {
  top: 50%;
  left: 4%;
  width: 120px;
  height: 3px;
  transform: translateY(-50%);
}

.pipeline-flow article {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 142px;
  place-items: center;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  text-align: center;
}

.pipeline-flow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.72rem;
  font-weight: 900;
}

.pipeline-flow strong {
  font-size: 0.98rem;
}

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

.timeline article,
.audience-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline article:hover,
.audience-grid article:hover {
  box-shadow: 0 24px 70px rgba(11, 16, 32, 0.14);
  transform: translateY(-4px);
}

.timeline article {
  min-height: 250px;
}

.timeline p,
.audience-grid p {
  color: var(--light-muted);
}

.systems-section {
  padding: 90px 20px;
  background: #f8fbff;
}

.systems-panel {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  margin: 0 auto;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(6, 10, 18, 0.98), rgba(12, 24, 42, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(94, 241, 255, 0.28), transparent 30%);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 160ms ease;
}

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

.systems-stats article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.systems-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
}

.audience-section {
  padding-top: 94px;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.industries-section,
.ai-advantage-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.industry-grid,
.advantage-grid,
.case-grid {
  display: grid;
  gap: 14px;
}

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

.industry-grid article {
  display: grid;
  min-height: 126px;
  place-items: center;
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 850;
}

.ai-advantage-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

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

.advantage-grid article {
  display: flex;
  min-height: 104px;
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: #eef8ff;
  font-weight: 850;
}

.advantage-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.72rem;
}

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

.case-grid article {
  min-height: 280px;
  padding: 24px;
  color: var(--dark-text);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
}

.case-grid span {
  color: #245dd8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-grid h3 {
  margin-top: 22px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.case-grid p {
  color: var(--light-muted);
  line-height: 1.65;
}

.case-carousel-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 112px;
}

.case-carousel-track {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 20%, rgba(94, 241, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.carousel-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 42px;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.carousel-card.is-active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-card span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-card h3 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.carousel-card p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transition: width 260ms ease, background 260ms ease;
}

.carousel-dots span.is-active {
  width: 28px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.7);
}

.final-cta {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 112px auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(94, 241, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 14px;
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.engine-page-hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 72px;
}

.solutions-hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 540px);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 76px;
}

.solutions-hero-copy h1 {
  max-width: 900px;
}

.solutions-ecosystem-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.solutions-ecosystem-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.72;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.ecosystem-core {
  position: absolute;
  inset: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 48%, rgba(94, 241, 255, 0.18), transparent 42%);
}

.ecosystem-orbit,
.ecosystem-pulse {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ecosystem-orbit {
  border: 1px solid rgba(94, 241, 255, 0.18);
  box-shadow: inset 0 0 44px rgba(94, 241, 255, 0.06);
}

.orbit-alpha {
  width: 250px;
  height: 250px;
  animation: orbit-spin 22s linear infinite;
}

.orbit-beta {
  width: 380px;
  height: 380px;
  border-color: rgba(155, 92, 255, 0.22);
  animation: orbit-spin 34s linear reverse infinite;
}

.ecosystem-pulse {
  width: 112px;
  height: 112px;
  background:
    radial-gradient(circle, rgba(94, 241, 255, 0.3), rgba(155, 92, 255, 0.16) 52%, transparent 66%);
  animation: core-breathe 4s ease-in-out infinite;
}

.ecosystem-flow {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.86), rgba(217, 255, 101, 0.64), transparent);
  transform-origin: left center;
  animation: scan-line-glow 3.8s ease-in-out infinite;
}

.flow-a { top: 30%; left: 18%; width: 330px; transform: rotate(12deg); }
.flow-b { top: 56%; left: 16%; width: 360px; transform: rotate(-10deg); animation-delay: -1.2s; }
.flow-c { right: 14%; bottom: 28%; width: 260px; transform: rotate(-36deg); animation-delay: -2.4s; }

.ecosystem-node {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  min-height: 46px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(94, 241, 255, 0.26);
  border-radius: 999px;
  color: #effbff;
  background: rgba(6, 10, 22, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(94, 241, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  animation: card-float 6.2s ease-in-out infinite;
}

.node-data { top: 12%; left: 8%; }
.node-outreach { top: 16%; right: 8%; animation-delay: -1s; }
.node-email { top: 46%; left: 5%; animation-delay: -2s; }
.node-auto { top: 48%; right: 4%; animation-delay: -3s; }
.node-market { bottom: 11%; left: 13%; animation-delay: -4s; }
.node-analytics { right: 13%; bottom: 10%; animation-delay: -5s; }

.solution-ecosystem-section,
.solutions-process-section,
.solutions-industry-section,
.why-pixlence-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.solution-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.solution-module {
  position: relative;
  grid-column: span 3;
  min-height: 590px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24), var(--shadow-glow);
  backdrop-filter: blur(22px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.module-marketing {
  grid-column: 2 / span 4;
}

.solution-module:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 34px 108px rgba(94, 241, 255, 0.13);
  transform: translateY(-6px);
}

.solution-module h3 {
  margin-top: 22px;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1;
}

.solution-module p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.solution-module ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.solution-module li {
  position: relative;
  padding-left: 22px;
  color: #e8f3ff;
  font-weight: 750;
}

.solution-module li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 950;
}

.module-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.15), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.module-visual span {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.45);
  animation: pulse 3s ease-in-out infinite;
}

.network-mini span { width: 15px; height: 15px; }
.network-mini span:nth-child(1) { top: 22%; left: 18%; }
.network-mini span:nth-child(2) { top: 34%; right: 22%; animation-delay: -1s; }
.network-mini span:nth-child(3) { bottom: 22%; left: 38%; animation-delay: -2s; }
.network-mini span:nth-child(4) { right: 34%; bottom: 28%; animation-delay: -3s; }

.workflow-mini span,
.automation-mini span {
  width: 82px;
  height: 34px;
}

.workflow-mini span:nth-child(1),
.automation-mini span:nth-child(1) { top: 20%; left: 9%; }
.workflow-mini span:nth-child(2),
.automation-mini span:nth-child(2) { top: 35%; left: 38%; animation-delay: -1s; }
.workflow-mini span:nth-child(3),
.automation-mini span:nth-child(3) { right: 10%; bottom: 24%; animation-delay: -2s; }
.workflow-mini span:nth-child(4),
.automation-mini span:nth-child(4) { bottom: 15%; left: 18%; animation-delay: -3s; }

.server-mini span {
  left: 18%;
  width: 64%;
  height: 32px;
  border-radius: 8px;
}

.server-mini span:nth-child(1) { top: 22%; }
.server-mini span:nth-child(2) { top: 44%; animation-delay: -1s; }
.server-mini span:nth-child(3) { top: 66%; animation-delay: -2s; }

.dashboard-mini span {
  bottom: 24px;
  width: 18%;
  border-radius: 8px 8px 0 0;
}

.dashboard-mini span:nth-child(1) { left: 20%; height: 70px; }
.dashboard-mini span:nth-child(2) { left: 43%; height: 110px; animation-delay: -1s; }
.dashboard-mini span:nth-child(3) { left: 66%; height: 142px; animation-delay: -2s; }

.solutions-process-section {
  position: relative;
}

.solutions-process-section::before,
.why-pixlence-section::before {
  position: absolute;
  inset: 8% -8%;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, rgba(155, 92, 255, 0.14), transparent 34%),
    radial-gradient(circle at 74% 62%, rgba(94, 241, 255, 0.12), transparent 32%);
  content: "";
  pointer-events: none;
}

.solutions-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(180px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding: 44px 4px 26px;
}

.solutions-timeline::before {
  position: absolute;
  top: 78px;
  left: 40px;
  width: calc(100% - 80px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.12), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.8), rgba(155, 92, 255, 0.3));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.solutions-timeline article {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-timeline article:nth-child(even) {
  margin-top: 58px;
}

.solutions-timeline article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.14);
  transform: translateY(-6px);
}

.solutions-timeline span,
.solutions-industry-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 950;
}

.solutions-timeline h3 {
  margin-top: 42px;
  font-size: 1.34rem;
}

.solutions-timeline p,
.solutions-industry-grid p,
.solutions-industry-grid small {
  color: var(--muted);
  line-height: 1.6;
}

.step-popover {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 4;
  padding: 14px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: var(--radius);
  color: #eaf8ff;
  background: rgba(5, 9, 20, 0.92);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3), 0 0 28px rgba(94, 241, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.solutions-timeline article:hover .step-popover,
.solutions-timeline article:focus-within .step-popover {
  opacity: 1;
  transform: translateY(0);
}

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

.solutions-industry-grid article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.052));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-industry-grid article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 30px 92px rgba(94, 241, 255, 0.12);
  transform: translateY(-5px);
}

.solutions-industry-grid h3 {
  margin-top: 34px;
  font-size: 1.4rem;
}

.solutions-industry-grid small {
  display: block;
  margin-top: 12px;
}

.solutions-industry-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan);
  font-weight: 900;
}

.solutions-industry-grid a::after {
  margin-left: 8px;
  content: "->";
}

.benefit-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  min-height: 430px;
  align-items: center;
}

.benefit-cloud::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(94, 241, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(94, 241, 255, 0.07), 0 0 70px rgba(155, 92, 255, 0.1);
  content: "";
  animation: orbit-spin 30s linear infinite;
}

.benefit-cloud article {
  position: relative;
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  font-size: 1.02rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-cloud article:nth-child(2n) {
  transform: translateY(34px);
}

.benefit-cloud article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 30px 92px rgba(94, 241, 255, 0.12);
  transform: translateY(-5px);
}

.solutions-case-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: var(--section-pad) max(20px, calc((100% - 1180px) / 2));
}

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

.solutions-case-grid article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 20px 70px rgba(11, 16, 32, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-case-grid article:hover {
  border-color: rgba(36, 93, 216, 0.28);
  box-shadow: 0 30px 92px rgba(36, 93, 216, 0.13);
  transform: translateY(-5px);
}

.solutions-case-grid h3 {
  margin-top: 28px;
  color: var(--dark-text);
  font-size: 1.55rem;
  line-height: 1.14;
}

.solutions-case-grid strong {
  display: inline-flex;
  margin-top: 18px;
  color: #245dd8;
}

.case-chart {
  display: flex;
  height: 118px;
  gap: 12px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(11, 16, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.case-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--electric));
  box-shadow: 0 0 24px rgba(47, 124, 255, 0.22);
  animation: chart-rise 3.8s ease-in-out infinite;
}

.case-chart span:nth-child(1) { height: 44%; }
.case-chart span:nth-child(2) { height: 68%; animation-delay: -1s; }
.case-chart span:nth-child(3) { height: 92%; animation-delay: -2s; }

.solutions-final-cta {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 112px auto;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(94, 241, 255, 0.22), transparent 32%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.solutions-final-cta h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.solutions-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.solution-detail-hero {
  position: relative;
  display: grid;
  min-height: 90svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 520px);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 76px;
}

.solution-detail-copy h1 {
  max-width: 920px;
}

.detail-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.detail-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.15), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  content: "";
}

.detail-visual article,
.detail-visual span:not(.particle),
.detail-visual strong {
  position: absolute;
  z-index: 2;
}

.detail-visual article {
  padding: 12px 14px;
  border: 1px solid rgba(94, 241, 255, 0.25);
  border-radius: 999px;
  color: #effbff;
  background: rgba(6, 10, 22, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(94, 241, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
  animation: card-float 6s ease-in-out infinite;
}

.detail-visual span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.55);
  animation: pulse 3s ease-in-out infinite;
}

.data-graph-visual article:nth-of-type(1),
.outreach-sequence-visual article:nth-of-type(1),
.automation-node-visual article:nth-of-type(1) { top: 17%; left: 8%; }
.data-graph-visual article:nth-of-type(2),
.outreach-sequence-visual article:nth-of-type(2),
.automation-node-visual article:nth-of-type(2) { top: 36%; right: 8%; animation-delay: -1s; }
.data-graph-visual article:nth-of-type(3),
.outreach-sequence-visual article:nth-of-type(3),
.automation-node-visual article:nth-of-type(3) { bottom: 18%; left: 13%; animation-delay: -2s; }

.outreach-sequence-visual article:nth-of-type(4),
.automation-node-visual article:nth-of-type(4) { right: 10%; bottom: 18%; animation-delay: -3s; }
.automation-node-visual article:nth-of-type(5) { top: 18%; right: 14%; animation-delay: -4s; }
.automation-node-visual article:nth-of-type(6) { bottom: 38%; left: 26%; animation-delay: -5s; }

.data-graph-visual span:nth-of-type(1),
.outreach-sequence-visual span:nth-of-type(1),
.automation-node-visual span:nth-of-type(1) { top: 28%; left: 38%; }
.data-graph-visual span:nth-of-type(2),
.outreach-sequence-visual span:nth-of-type(2),
.automation-node-visual span:nth-of-type(2) { top: 54%; right: 36%; animation-delay: -1s; }
.data-graph-visual span:nth-of-type(3),
.outreach-sequence-visual span:nth-of-type(3),
.automation-node-visual span:nth-of-type(3) { bottom: 28%; right: 22%; animation-delay: -2s; }
.data-graph-visual span:nth-of-type(4) { top: 42%; left: 18%; animation-delay: -3s; }

.infra-map-visual article:nth-of-type(1) { top: 15%; left: 10%; }
.infra-map-visual article:nth-of-type(2) { top: 32%; right: 12%; animation-delay: -1s; }
.infra-map-visual article:nth-of-type(3) { bottom: 28%; left: 12%; animation-delay: -2s; }
.infra-map-visual article:nth-of-type(4) { right: 14%; bottom: 16%; animation-delay: -3s; }

.infra-map-visual strong {
  inset: 50% auto auto 50%;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(6, 10, 22, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 74%, var(--cyan) 74% 94%, rgba(255, 255, 255, 0.1) 94% 100%);
  box-shadow: inset 0 0 44px rgba(94, 241, 255, 0.12), 0 0 48px rgba(94, 241, 255, 0.18);
  font-size: 3rem;
  transform: translate(-50%, -50%);
  animation: score-breathe 4.2s ease-in-out infinite;
}

.infra-map-visual > span {
  inset: calc(50% + 70px) auto auto 50%;
  width: auto;
  height: auto;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
  font-weight: 850;
  transform: translateX(-50%);
  animation: none;
}

.growth-dashboard-visual article:nth-of-type(1) { top: 14%; left: 10%; }
.growth-dashboard-visual article:nth-of-type(2) { top: 34%; right: 10%; animation-delay: -1s; }
.growth-dashboard-visual article:nth-of-type(3) { bottom: 18%; left: 13%; animation-delay: -2s; }

.growth-dashboard-visual span {
  bottom: 60px;
  width: 20%;
  border-radius: 8px 8px 0 0;
}

.growth-dashboard-visual span:nth-of-type(1) { left: 21%; height: 72px; }
.growth-dashboard-visual span:nth-of-type(2) { left: 44%; height: 126px; animation-delay: -1s; }
.growth-dashboard-visual span:nth-of-type(3) { left: 67%; height: 172px; animation-delay: -2s; }

.detail-problem-section,
.detail-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.detail-problem-section > p,
.detail-ai-section > p,
.detail-solution-panel p,
.detail-final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.detail-solution-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 var(--section-pad);
}

.detail-solution-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(155, 92, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.detail-feature-section,
.detail-use-section,
.detail-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

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

.detail-feature-grid article,
.detail-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-feature-grid article {
  min-height: 150px;
  padding: 22px;
  color: #eef8ff;
  font-weight: 900;
}

.detail-feature-grid article:hover,
.detail-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 28px 84px rgba(94, 241, 255, 0.12);
  transform: translateY(-5px);
}

.detail-process-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: var(--section-pad) max(20px, calc((100% - 1180px) / 2));
}

.detail-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 12px;
}

.detail-process-flow::before {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 92%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 93, 216, 0.2), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.7), rgba(36, 93, 216, 0.2));
  content: "";
  animation: journey-flow 4s linear infinite;
}

.detail-process-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 122px;
  place-items: center;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  color: var(--dark-text);
  font-weight: 950;
  text-align: center;
}

.detail-metrics-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
  padding: var(--section-pad) 0 0;
}

.detail-metrics-section article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.detail-metrics-section strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}

.detail-metrics-section span {
  color: var(--muted);
  font-weight: 850;
}

.detail-faq-section {
  display: grid;
  gap: 14px;
}

.detail-faq-section .section-head {
  margin-bottom: 26px;
}

.detail-faq-section details {
  padding: 22px;
}

.detail-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.detail-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 241, 255, 0.22), transparent 32%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.detail-final-cta h2 {
  max-width: 840px;
}

@keyframes chart-rise {
  0%,
  100% {
    transform: scaleY(0.72);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.industries-page-hero {
  position: relative;
  display: grid;
  min-height: 72svh;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 60px;
}

.industry-card-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 120px;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.premium-industry-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.premium-industry-card::before {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.15), transparent 62%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.premium-industry-card > span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 950;
}

.premium-industry-card h3 {
  margin-top: 34px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.05;
}

.industry-reveal {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  transform: translateY(18px);
  transition: transform 220ms ease;
}

.industry-reveal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.industry-reveal strong {
  color: #ffffff;
}

.industry-reveal a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
}

.industry-reveal a::after {
  margin-left: 8px;
  content: "->";
  transition: transform 180ms ease;
}

.premium-industry-card:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 34px 100px rgba(94, 241, 255, 0.13);
  transform: translateY(-6px);
}

.premium-industry-card:hover::before {
  opacity: 1;
  transform: translateY(-18px);
}

.premium-industry-card:hover .industry-reveal {
  transform: translateY(0);
}

.premium-industry-card:hover .industry-reveal a::after {
  transform: translateX(4px);
}

.data-page-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 70px;
}

.data-hero-copy h1 {
  max-width: 900px;
}

.data-intel-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.data-graph {
  position: relative;
  height: 340px;
  margin: 28px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 48%, rgba(94, 241, 255, 0.14), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.data-ring {
  position: absolute;
  inset: 50%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(94, 241, 255, 0.07);
  transform: translate(-50%, -50%);
  animation: orbit-spin 20s linear infinite;
}

.data-ring-two {
  width: 300px;
  height: 300px;
  border-color: rgba(217, 255, 101, 0.13);
  animation-direction: reverse;
  animation-duration: 28s;
}

.data-point {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.85);
  animation: pulse 3s ease-in-out infinite;
}

.dp-one { top: 18%; left: 22%; }
.dp-two { top: 32%; right: 20%; animation-delay: -1s; }
.dp-three { bottom: 20%; left: 32%; animation-delay: -2s; }
.dp-four { right: 28%; bottom: 28%; animation-delay: -3s; }

.data-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.75), transparent);
  transform-origin: left center;
}

.dl-one { top: 28%; left: 24%; width: 230px; transform: rotate(9deg); }
.dl-two { top: 54%; left: 32%; width: 190px; transform: rotate(-18deg); }
.dl-three { bottom: 31%; left: 34%; width: 210px; transform: rotate(13deg); }

.data-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.data-panel-stats article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.data-panel-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.data-panel-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.data-coverage-section,
.segmentation-section,
.data-sample-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.coverage-grid,
.use-case-grid {
  display: grid;
  gap: 12px;
}

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

.coverage-grid article,
.use-case-grid article {
  position: relative;
  overflow: hidden;
  min-height: 100px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  color: #eef8ff;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.coverage-grid article:hover,
.use-case-grid article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  box-shadow: 0 24px 70px rgba(94, 241, 255, 0.12);
  transform: translateY(-4px);
}

.segmentation-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.filter-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-cloud span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef8ff;
  font-weight: 850;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.14);
}

.data-use-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: 108px max(20px, calc((100% - 1180px) / 2));
}

.use-case-grid {
  grid-template-columns: repeat(7, 1fr);
}

.use-case-grid article {
  min-height: 120px;
  color: var(--dark-text);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
}

.accuracy-section,
.data-sample-cta {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(94, 241, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.accuracy-section {
  margin-top: 108px;
  margin-bottom: 28px;
}

.accuracy-section h2,
.data-sample-cta h2 {
  margin-bottom: 12px;
}

.accuracy-section p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.data-sample-cta {
  margin-bottom: 112px;
}

.email-page-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 70px;
}

.email-hero-copy h1 {
  max-width: 920px;
}

.deliverability-dashboard {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.score-meter {
  display: grid;
  min-height: 330px;
  place-items: center;
  margin: 28px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.12), transparent 46%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.score-ring {
  position: relative;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(6, 10, 22, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 74%, var(--cyan) 74% 94%, rgba(255, 255, 255, 0.1) 94% 100%);
  box-shadow: inset 0 0 44px rgba(94, 241, 255, 0.12), 0 0 48px rgba(94, 241, 255, 0.18);
  animation: score-breathe 4.2s ease-in-out infinite;
}

.score-ring strong {
  align-self: end;
  font-size: 3.2rem;
  line-height: 1;
}

.score-ring span {
  align-self: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.domain-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.domain-status-grid article {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf5ff;
  font-size: 0.88rem;
  font-weight: 850;
}

.domain-status-grid span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(124, 255, 178, 0.8);
}

.infra-section,
.auth-section,
.email-audience-section,
.email-audit-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

.server-node-grid,
.domain-card-grid,
.reputation-grid,
.email-audience-grid {
  display: grid;
  gap: 14px;
}

.server-node-grid {
  grid-template-columns: repeat(5, 1fr);
}

.server-node-grid article,
.domain-card-grid article,
.email-audience-grid article {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  color: #eef8ff;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.server-node-grid article::before {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border: 1px solid rgba(94, 241, 255, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.24), rgba(217, 255, 101, 0.16));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.18);
  content: "";
}

.server-node-grid article:hover,
.domain-card-grid article:hover,
.email-audience-grid article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  box-shadow: 0 24px 70px rgba(94, 241, 255, 0.12);
  transform: translateY(-4px);
}

.auth-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

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

.domain-card-grid article strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.2rem;
}

.domain-card-grid article span {
  color: var(--muted);
  line-height: 1.5;
}

.deliverability-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: 108px max(20px, calc((100% - 1180px) / 2));
}

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

.reputation-grid article {
  display: flex;
  min-height: 120px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  color: var(--dark-text);
  font-weight: 850;
}

.meter {
  width: 48px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.1);
}

.meter::before {
  display: block;
  height: 100%;
  border-radius: inherit;
  content: "";
}

.meter.good::before {
  width: 88%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.meter.warn::before {
  width: 64%;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.email-audience-grid {
  grid-template-columns: repeat(5, 1fr);
}

.email-audit-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(94, 241, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  margin-bottom: 112px;
}

.email-audit-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.automation-page-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 70px;
}

.automation-hero-copy h1 {
  max-width: 920px;
}

.workflow-builder {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.builder-canvas {
  position: relative;
  height: 430px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 48% 45%, rgba(94, 241, 255, 0.14), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.builder-node {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  min-width: 116px;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 999px;
  background: rgba(6, 10, 22, 0.78);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24), 0 0 26px rgba(94, 241, 255, 0.14);
  color: #eef8ff;
  font-size: 0.84rem;
  font-weight: 900;
  animation: card-float 5.8s ease-in-out infinite;
}

.trigger-node { top: 12%; left: 8%; }
.research-node { top: 26%; left: 36%; animation-delay: -1s; }
.personalize-node { top: 12%; right: 8%; animation-delay: -2s; }
.send-node { top: 48%; left: 11%; animation-delay: -3s; }
.track-node { top: 58%; left: 39%; animation-delay: -4s; }
.crm-node { right: 9%; bottom: 28%; animation-delay: -5s; }
.report-node { bottom: 9%; left: 34%; animation-delay: -6s; }

.builder-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.86), transparent);
  transform-origin: left center;
  animation: scan-line-glow 3.8s ease-in-out infinite;
}

.line-one { top: 23%; left: 19%; width: 300px; transform: rotate(9deg); }
.line-two { top: 48%; left: 22%; width: 320px; transform: rotate(-14deg); animation-delay: -1.4s; }
.line-three { bottom: 25%; left: 45%; width: 230px; transform: rotate(-10deg); animation-delay: -2.6s; }

.automation-services-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0;
}

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

.automation-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.automation-grid article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.automation-grid article h3 {
  margin-top: 34px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.automation-grid article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  box-shadow: 0 28px 84px rgba(94, 241, 255, 0.12);
  transform: translateY(-5px);
}

.workflow-chain-section {
  width: 100%;
  color: var(--dark-text);
  background: #f8fbff;
  padding: 108px max(20px, calc((100% - 1180px) / 2));
}

.workflow-chain {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.workflow-chain::before {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 92%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 93, 216, 0.22), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.8), rgba(36, 93, 216, 0.22));
  content: "";
  animation: journey-flow 4s linear infinite;
}

.workflow-chain::after {
  left: 4%;
}

.workflow-chain article {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid rgba(11, 16, 32, 0.09);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  color: var(--dark-text);
  font-weight: 900;
  text-align: center;
}

.automation-cta {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 108px auto 112px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 20%, rgba(94, 241, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.automation-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.case-page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 54px;
}

.case-library-section,
.case-detail-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.case-library-section {
  padding: 48px 0 120px;
}

.case-library-grid,
.case-detail-grid {
  display: grid;
  gap: 16px;
}

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

.case-library-card,
.case-detail-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-library-card {
  min-height: 300px;
  padding: 24px;
}

.case-library-card > span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-library-card h3 {
  margin-top: 54px;
  font-size: 1.45rem;
  line-height: 1.14;
}

.case-library-card p,
.case-detail-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.case-library-card a,
.case-detail-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-weight: 900;
}

.case-library-card a::after,
.case-detail-grid a::after {
  margin-left: 8px;
  content: "->";
  transition: transform 180ms ease;
}

.case-library-card:hover,
.case-detail-grid article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 30px 92px rgba(94, 241, 255, 0.12);
  transform: translateY(-5px);
}

.case-library-card:hover a::after,
.case-detail-grid article:hover a::after {
  transform: translateX(4px);
}

.case-detail-main {
  padding: 150px 0 110px;
}

.case-detail-hero {
  max-width: 920px;
  margin-bottom: 48px;
}

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

.case-detail-grid article {
  min-height: 280px;
  padding: 24px;
}

.case-detail-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.case-detail-grid h3 {
  margin-top: 28px;
}

.contact-page-hero {
  position: relative;
  display: grid;
  min-height: 64svh;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 48px;
}

.contact-page-copy {
  max-width: 980px;
}

.contact-builder-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
  margin: 0 auto;
  padding: 48px 0 120px;
}

.growth-request-form,
.strategy-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.growth-request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
}

.growth-request-form label {
  display: grid;
  gap: 8px;
}

.growth-request-form span {
  color: #dce6f8;
  font-size: 0.82rem;
  font-weight: 850;
}

.growth-request-form input,
.growth-request-form select,
.growth-request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.growth-request-form option {
  color: var(--dark-text);
}

.growth-request-form textarea {
  resize: vertical;
}

.growth-request-form input:focus,
.growth-request-form select:focus,
.growth-request-form textarea:focus {
  border-color: rgba(94, 241, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(94, 241, 255, 0.1);
  background: rgba(255, 255, 255, 0.105);
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(124, 255, 178, 0.28);
  border-radius: var(--radius);
  color: #dfffea;
  background: rgba(124, 255, 178, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.quick-form-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 110px;
}

.quick-form-section::before {
  content: "";
  position: absolute;
  inset: 12% 5% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.16), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.quick-form-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--spot-x, 12%) var(--spot-y, 18%), rgba(94, 241, 255, 0.18), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(124, 255, 178, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
  padding: clamp(22px, 4vw, 38px);
}

.quick-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(94, 241, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 260ms ease, transform 700ms ease;
  pointer-events: none;
}

.quick-form-card:hover::after {
  opacity: 1;
  transform: translateX(35%);
}

.quick-form-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.quick-form-copy h2,
.quick-form-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0;
}

.quick-form-copy p:not(.eyebrow),
.quick-form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-lead-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-form-field {
  display: grid;
  gap: 7px;
}

.quick-form-field.full-width,
.quick-lead-form .full-width,
.quick-lead-form button,
.quick-lead-form .form-status,
.quick-lead-form .quick-form-note {
  grid-column: 1 / -1;
}

.quick-form-field span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7f0ff;
  font-size: 0.78rem;
  font-weight: 850;
}

.quick-form-field span::before {
  content: attr(data-icon);
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(94, 241, 255, 0.08);
  font-size: 0.58rem;
  font-weight: 950;
}

.quick-lead-form input,
.quick-lead-form select,
.quick-lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(1, 9, 20, 0.5);
  outline: none;
  padding: 13px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.quick-lead-form textarea {
  min-height: 92px;
  resize: vertical;
}

.quick-lead-form option {
  color: var(--dark-text);
}

.quick-lead-form input:focus,
.quick-lead-form select:focus,
.quick-lead-form textarea:focus {
  border-color: rgba(94, 241, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(94, 241, 255, 0.1), 0 0 34px rgba(94, 241, 255, 0.08);
  background: rgba(255, 255, 255, 0.095);
  transform: translateY(-1px);
}

.quick-lead-form button {
  justify-content: center;
  min-height: 50px;
}

.quick-form-note {
  font-size: 0.82rem;
}

.blog-main,
.blog-article-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-hero-section {
  display: grid;
  min-height: 76svh;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: 34px;
  align-items: center;
  padding: 160px 0 72px;
}

.blog-hero-copy h1,
.article-header h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.blog-hero-copy p:not(.eyebrow),
.article-dek {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.8;
}

.blog-hero-visual,
.article-visual,
.article-thumb,
.article-featured-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 20% 20%, rgba(94, 241, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(124, 255, 178, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(47, 124, 255, 0.28), rgba(155, 92, 255, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

img.article-thumb,
img.article-featured-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.blog-hero-visual {
  display: grid;
  min-height: 420px;
  align-content: center;
  gap: 14px;
  border-radius: 28px;
  padding: 26px;
}

.blog-hero-visual::before,
.article-featured-image::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(94, 241, 255, 0.2);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(700px) rotateX(58deg) rotateZ(-14deg);
}

.blog-hero-visual span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(2, 8, 20, 0.56);
  color: #eaf7ff;
  font-weight: 900;
  padding: 12px 15px;
  animation: floatCard 7s ease-in-out infinite;
}

.blog-hero-visual span:nth-child(2) { justify-self: end; animation-delay: -1s; }
.blog-hero-visual span:nth-child(3) { animation-delay: -2s; }
.blog-hero-visual span:nth-child(4) { justify-self: center; animation-delay: -3s; }

.blog-featured-section,
.blog-category-section,
.blog-list-section,
.blog-split-section,
.topic-cluster-section,
.newsletter-section,
.lead-magnet-section,
.related-articles-section {
  padding: 42px 0;
}

.featured-article-card,
.blog-tools-section,
.newsletter-section,
.lead-magnet-section,
.panel-list-block,
.toc-card,
.mid-article-cta,
.author-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 18%), rgba(94, 241, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.featured-article-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 24px;
}

.article-visual {
  min-height: 360px;
  border-radius: 20px;
}

.featured-article-card h2,
.newsletter-section h2,
.lead-magnet-section h2,
.blog-final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
}

.article-meta span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d7e9f7;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 8px 10px;
}

.blog-tools-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) 1fr;
  gap: 18px;
  padding: 20px;
}

.blog-search-card {
  display: grid;
  gap: 8px;
}

.blog-search-card label {
  color: #dce9f7;
  font-weight: 900;
}

.blog-search-card input,
.blog-newsletter-form input,
.blog-newsletter-form select {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #fff;
  background: rgba(1, 9, 20, 0.58);
  outline: none;
  padding: 14px;
}

.trending-tags,
.blog-category-grid,
.topic-cluster-grid,
.article-card-grid {
  display: grid;
  gap: 14px;
}

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

.trending-tags span,
.blog-category-grid a {
  border: 1px solid rgba(94, 241, 255, 0.16);
  border-radius: 999px;
  color: #dfefff;
  background: rgba(94, 241, 255, 0.07);
  text-decoration: none;
  font-weight: 850;
  padding: 12px 14px;
}

.blog-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.blog-article-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  text-decoration: none;
  padding: 14px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 241, 255, 0.34);
  box-shadow: var(--shadow-glow);
}

.article-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  margin-bottom: 16px;
}

.seo-thumb { background: linear-gradient(135deg, rgba(94, 241, 255, 0.22), rgba(124, 255, 178, 0.14)), rgba(255, 255, 255, 0.07); }
.email-thumb { background: linear-gradient(135deg, rgba(47, 124, 255, 0.25), rgba(94, 241, 255, 0.12)), rgba(255, 255, 255, 0.07); }
.social-thumb { background: linear-gradient(135deg, rgba(155, 92, 255, 0.24), rgba(94, 241, 255, 0.12)), rgba(255, 255, 255, 0.07); }
.automation-thumb { background: linear-gradient(135deg, rgba(124, 255, 178, 0.2), rgba(47, 124, 255, 0.13)), rgba(255, 255, 255, 0.07); }
.trends-thumb { background: linear-gradient(135deg, rgba(217, 255, 101, 0.18), rgba(155, 92, 255, 0.13)), rgba(255, 255, 255, 0.07); }

.blog-article-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-article-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.blog-article-card a {
  color: inherit;
  text-decoration: none;
}

.blog-article-card p,
.blog-article-card small,
.panel-list-block a,
.topic-cluster-grid a {
  color: var(--muted);
}

.blog-split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel-list-block {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.panel-list-block a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 850;
  padding-top: 12px;
}

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

.topic-cluster-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  padding: 18px;
}

.topic-cluster-grid a {
  display: block;
  margin-top: 9px;
  text-decoration: none;
}

.newsletter-section,
.lead-magnet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
}

.lead-magnet-section {
  grid-template-columns: 1fr auto;
}

.blog-newsletter-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-final-cta {
  margin: 42px 0 96px;
}

.article-header {
  padding: 150px 0 42px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
}

.breadcrumb a {
  color: #dcecff;
  text-decoration: none;
}

.article-featured-image {
  min-height: 440px;
  border-radius: 28px;
  margin-top: 28px;
}

.article-body-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.toc-card {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.toc-card a {
  color: var(--muted);
  text-decoration: none;
}

.article-content {
  color: #dbe7f8;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-content h2 {
  margin-top: 38px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.article-content li {
  margin: 9px 0;
}

.mid-article-cta,
.author-box {
  margin: 30px 0;
  padding: 22px;
}

.internal-link-section div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.internal-link-section a {
  border: 1px solid rgba(94, 241, 255, 0.16);
  border-radius: 14px;
  color: #eaf6ff;
  background: rgba(94, 241, 255, 0.07);
  text-decoration: none;
  font-weight: 850;
  padding: 12px;
}

.article-faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  margin: 10px 0;
  padding: 14px;
}

.article-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.article-newsletter {
  margin-top: 56px;
}

.strategy-panel {
  padding: 28px;
}

.strategy-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

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

.strategy-panel li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf5ff;
  font-weight: 800;
}

.strategy-panel li::before {
  position: absolute;
  left: 15px;
  color: var(--green);
  content: "+";
  font-weight: 950;
}

.contact-strategy-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.contact-strategy-copy h1 {
  max-width: 970px;
}

.contact-strategy-copy .hero-copy {
  max-width: 760px;
}

.consultation-command-center {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 48%, rgba(94, 241, 255, 0.2), transparent 24%),
    radial-gradient(circle at 72% 25%, rgba(155, 92, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.consultation-command-center::before,
.consultation-command-center::after {
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.consultation-command-center::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, #000 38%, transparent 72%);
  animation: grid-drift 12s linear infinite;
}

.consultation-command-center::after {
  border: 1px solid rgba(94, 241, 255, 0.16);
  background:
    conic-gradient(from 90deg, transparent, rgba(94, 241, 255, 0.18), transparent 22%, rgba(217, 255, 101, 0.12), transparent 48%, rgba(155, 92, 255, 0.16), transparent 72%);
  opacity: 0.7;
  filter: blur(0.2px);
  animation: slow-spin 20s linear infinite;
}

.consultation-topline,
.consult-panel,
.consult-core,
.consult-path,
.strategy-chip {
  position: absolute;
  z-index: 2;
}

.consultation-topline {
  top: 22px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.consultation-topline span,
.strategy-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(5, 9, 22, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.consultation-topline span {
  padding: 10px 9px;
}

.strategy-chip {
  padding: 9px 13px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--lime));
  animation: float-card 6s ease-in-out infinite;
}

.consult-panel {
  display: grid;
  width: min(235px, 42%);
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 42%),
    rgba(7, 11, 26, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: float-card 7s ease-in-out infinite;
}

.consult-panel strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.consult-panel small {
  color: var(--muted);
  line-height: 1.48;
}

.assessment-panel {
  top: 18%;
  left: 7%;
}

.recommendation-panel {
  top: 31%;
  right: 7%;
  animation-delay: -1.5s;
}

.workflow-panel-contact {
  bottom: 20%;
  left: 8%;
  animation-delay: -2.8s;
}

.infrastructure-panel-contact {
  right: 8%;
  bottom: 9%;
  animation-delay: -4s;
}

.consult-core {
  top: 47%;
  left: 50%;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.36);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(217, 255, 101, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(94, 241, 255, 0.23), rgba(155, 92, 255, 0.19));
  box-shadow: 0 0 54px rgba(94, 241, 255, 0.24);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: ai-pulse 4s ease-in-out infinite;
}

.consult-path {
  top: 47%;
  left: 50%;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.86), rgba(217, 255, 101, 0.76), transparent);
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.5);
  transform-origin: left center;
  animation: connector-flow 3.8s linear infinite;
}

.consult-path-a {
  transform: rotate(25deg) translateX(-50%);
}

.consult-path-b {
  transform: rotate(-32deg) translateX(-50%);
  animation-delay: -1.4s;
}

.strategy-chip-one {
  top: 16%;
  right: 32%;
}

.strategy-chip-two {
  top: 60%;
  right: 38%;
  animation-delay: -1.8s;
}

.strategy-chip-three {
  bottom: 22%;
  left: 42%;
  animation-delay: -3s;
}

.consultation-experience-section,
.strategy-intake-section,
.consultation-next-section,
.assessment-area-section,
.consultation-benefits-section,
.contact-trust-section,
.contact-channel-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.consultation-area-grid,
.assessment-area-grid,
.consultation-benefit-grid,
.contact-trust-grid,
.contact-channel-grid {
  display: grid;
  gap: 14px;
}

.consultation-area-grid,
.assessment-area-grid,
.contact-trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.consultation-benefit-grid {
  grid-template-columns: repeat(7, minmax(154px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}

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

.consultation-area-grid article,
.assessment-area-grid article,
.consultation-benefit-grid article,
.contact-trust-grid article,
.contact-channel-grid a {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: #f5f8ff;
  background:
    radial-gradient(circle at 20% 0%, rgba(94, 241, 255, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.consultation-area-grid article::before,
.assessment-area-grid article::before,
.consultation-benefit-grid article::before,
.contact-trust-grid article::before,
.contact-channel-grid a::before {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 56%, var(--lime));
  content: "";
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.3);
}

.consultation-area-grid article:hover,
.assessment-area-grid article:hover,
.consultation-benefit-grid article:hover,
.contact-trust-grid article:hover,
.contact-channel-grid a:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(94, 241, 255, 0.085);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.strategy-intake-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 26px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.form-progress span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dce7f6;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.form-progress .is-active {
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--lime));
  box-shadow: 0 0 34px rgba(94, 241, 255, 0.22);
}

.strategy-intake-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 0%, rgba(155, 92, 255, 0.1), transparent 34%),
    rgba(5, 8, 20, 0.38);
}

.strategy-intake-form legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 10px 0 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 950;
}

.strategy-intake-form legend span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-size: 0.74rem;
}

.strategy-intake-form label.full-width,
.strategy-intake-form .full-width {
  grid-column: 1 / -1;
}

.choice-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.choice-grid label:hover {
  border-color: rgba(94, 241, 255, 0.38);
  background: rgba(94, 241, 255, 0.08);
  transform: translateY(-2px);
}

.choice-grid input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: #5ef1ff;
}

.choice-grid span {
  color: #eef5ff;
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.consultation-next-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(188px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 42px 4px 18px;
  scrollbar-color: rgba(94, 241, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.consultation-next-flow::before {
  position: absolute;
  top: 73px;
  left: 38px;
  width: calc(100% - 76px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.85), rgba(94, 241, 255, 0.08));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.4);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.consultation-next-flow article {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.consultation-next-flow article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(94, 241, 255, 0.08);
  transform: translateY(-5px);
}

.consultation-next-flow span,
.contact-channel-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.consultation-next-flow h3 {
  margin: 0 0 10px;
}

.consultation-next-flow p,
.contact-channel-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.contact-channel-grid a {
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 8px;
}

.contact-channel-grid a::before {
  display: none;
}

.contact-channel-grid strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.contact-final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 72px auto 120px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 241, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(155, 92, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.contact-final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  pointer-events: none;
}

.contact-final-cta > * {
  position: relative;
  z-index: 1;
}

.contact-final-cta h2 {
  max-width: 820px;
}

.contact-final-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.pricing-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.pricing-hero h1 {
  max-width: 930px;
}

.pricing-hero .hero-copy {
  max-width: 760px;
}

.pricing-ecosystem-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 48% 48%, rgba(94, 241, 255, 0.19), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(217, 255, 101, 0.13), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(155, 92, 255, 0.17), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.pricing-ecosystem-visual::before,
.pricing-ecosystem-visual::after {
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.pricing-ecosystem-visual::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 38%, transparent 72%);
  animation: grid-drift 12s linear infinite;
}

.pricing-ecosystem-visual::after {
  border: 1px solid rgba(94, 241, 255, 0.16);
  background:
    conic-gradient(from 180deg, transparent, rgba(94, 241, 255, 0.17), transparent 22%, rgba(217, 255, 101, 0.13), transparent 50%, rgba(155, 92, 255, 0.17), transparent 74%);
  opacity: 0.72;
  animation: slow-spin 22s linear infinite;
}

.pricing-topline,
.pricing-panel,
.pricing-core,
.pricing-path,
.pricing-chip {
  position: absolute;
  z-index: 2;
}

.pricing-topline {
  top: 22px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pricing-topline span,
.pricing-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(5, 9, 22, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.pricing-topline span {
  padding: 10px 9px;
}

.pricing-chip {
  padding: 9px 13px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--lime));
  animation: float-card 6s ease-in-out infinite;
}

.pricing-panel {
  display: grid;
  width: min(238px, 42%);
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(217, 255, 101, 0.14), transparent 42%),
    rgba(7, 11, 26, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: float-card 7s ease-in-out infinite;
}

.pricing-panel strong {
  color: #ffffff;
}

.pricing-panel small {
  color: var(--muted);
  line-height: 1.48;
}

.pricing-panel-growth {
  top: 18%;
  left: 7%;
}

.pricing-panel-infra {
  top: 31%;
  right: 7%;
  animation-delay: -1.5s;
}

.pricing-panel-workflow {
  bottom: 20%;
  left: 8%;
  animation-delay: -2.8s;
}

.pricing-panel-partner {
  right: 8%;
  bottom: 9%;
  animation-delay: -4s;
}

.pricing-core {
  top: 48%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(217, 255, 101, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(217, 255, 101, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(94, 241, 255, 0.22), rgba(155, 92, 255, 0.18));
  box-shadow: 0 0 58px rgba(217, 255, 101, 0.18);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: ai-pulse 4s ease-in-out infinite;
}

.pricing-path {
  top: 48%;
  left: 50%;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.86), rgba(217, 255, 101, 0.76), transparent);
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.46);
  transform-origin: left center;
  animation: connector-flow 3.8s linear infinite;
}

.pricing-path-a {
  transform: rotate(28deg) translateX(-50%);
}

.pricing-path-b {
  transform: rotate(-33deg) translateX(-50%);
  animation-delay: -1.4s;
}

.pricing-chip-one {
  top: 16%;
  right: 32%;
}

.pricing-chip-two {
  top: 60%;
  right: 38%;
  animation-delay: -1.8s;
}

.pricing-chip-three {
  bottom: 22%;
  left: 42%;
  animation-delay: -3s;
}

.pricing-explain-section,
.engagement-model-section,
.pricing-process-section,
.pricing-layer-section,
.pricing-segment-section,
.pricing-trust-section,
.pricing-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.pricing-explain-grid,
.pricing-segment-grid,
.pricing-trust-grid {
  display: grid;
  gap: 14px;
}

.pricing-explain-grid,
.pricing-trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.pricing-explain-grid article,
.pricing-trust-grid article,
.pricing-segment-grid article {
  position: relative;
  overflow: hidden;
  min-height: 198px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.pricing-segment-grid article {
  min-height: 136px;
  color: #f5f8ff;
  font-weight: 950;
}

.pricing-explain-grid article:hover,
.pricing-trust-grid article:hover,
.pricing-segment-grid article:hover,
.engagement-model-card:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background-color: rgba(94, 241, 255, 0.075);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.pricing-explain-grid span,
.pricing-trust-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.pricing-explain-grid p,
.pricing-trust-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.engagement-model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.engagement-model-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 0%), rgba(94, 241, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.engagement-model-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.model-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(94, 241, 255, 0.2), transparent 42%),
    rgba(5, 8, 20, 0.62);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.model-visual span {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.24), rgba(155, 92, 255, 0.18), rgba(217, 255, 101, 0.18));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.18);
  animation: float-card 6s ease-in-out infinite;
}

.model-visual span:nth-child(1) {
  top: 24px;
  left: 24px;
  width: 44%;
  height: 56px;
}

.model-visual span:nth-child(2) {
  right: 24px;
  bottom: 28px;
  width: 38%;
  height: 84px;
  animation-delay: -1.8s;
}

.model-visual span:nth-child(3) {
  top: 94px;
  left: 35%;
  width: 30%;
  height: 44px;
  border-radius: 999px;
  animation-delay: -3s;
}

.infra-model-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 46%, rgba(217, 255, 101, 0.18), transparent 40%),
    rgba(5, 8, 20, 0.62);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.automation-model-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 42% 45%, rgba(155, 92, 255, 0.2), transparent 44%),
    rgba(5, 8, 20, 0.62);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.experience-model-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 52% 52%, rgba(47, 124, 255, 0.2), transparent 44%),
    rgba(5, 8, 20, 0.62);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

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

.model-columns div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.model-columns strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.model-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.model-columns li::before {
  color: var(--green);
  content: "+ ";
  font-weight: 950;
}

.pricing-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(188px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 42px 4px 18px;
  scrollbar-color: rgba(94, 241, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.pricing-process-flow::before {
  position: absolute;
  top: 73px;
  left: 38px;
  width: calc(100% - 76px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.85), rgba(94, 241, 255, 0.08));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.4);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.pricing-process-flow article {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.pricing-process-flow article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(94, 241, 255, 0.08);
  transform: translateY(-5px);
}

.pricing-process-flow span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.pricing-process-flow p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-layer-architecture {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.15), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.pricing-layer-architecture::before {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: 50%;
  content: "";
  animation: slow-spin 22s linear infinite;
}

.pricing-layer-architecture strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.19), rgba(155, 92, 255, 0.18));
  box-shadow: 0 0 48px rgba(94, 241, 255, 0.18);
  text-align: center;
  transform: translate(-50%, -50%);
}

.pricing-layer-architecture article {
  position: relative;
  z-index: 1;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(5, 8, 20, 0.62);
  color: #eef6ff;
  font-weight: 900;
}

.pricing-final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 72px auto 120px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 241, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(217, 255, 101, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.pricing-final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  pointer-events: none;
}

.pricing-final-cta > * {
  position: relative;
  z-index: 1;
}

.pricing-final-cta h2 {
  max-width: 820px;
}

.pricing-final-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.lab-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.lab-hero h1 {
  max-width: 980px;
}

.lab-hero .hero-copy {
  max-width: 780px;
}

.lab-ecosystem-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 48%, rgba(94, 241, 255, 0.2), transparent 25%),
    radial-gradient(circle at 76% 20%, rgba(155, 92, 255, 0.2), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(217, 255, 101, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.lab-ecosystem-visual::before,
.lab-ecosystem-visual::after {
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.lab-ecosystem-visual::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 38%, transparent 72%);
  animation: grid-drift 11s linear infinite;
}

.lab-ecosystem-visual::after {
  border: 1px solid rgba(94, 241, 255, 0.16);
  background:
    conic-gradient(from 40deg, transparent, rgba(94, 241, 255, 0.2), transparent 22%, rgba(155, 92, 255, 0.18), transparent 48%, rgba(217, 255, 101, 0.13), transparent 74%);
  opacity: 0.74;
  animation: slow-spin 18s linear infinite;
}

.lab-topline,
.lab-panel,
.lab-core,
.lab-path,
.lab-chip {
  position: absolute;
  z-index: 2;
}

.lab-topline {
  top: 22px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lab-topline span,
.lab-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(5, 9, 22, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.lab-topline span {
  padding: 10px 9px;
}

.lab-chip {
  padding: 9px 13px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--lime));
  animation: float-card 6s ease-in-out infinite;
}

.lab-panel {
  display: grid;
  width: min(245px, 43%);
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 42%),
    rgba(7, 11, 26, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: float-card 7s ease-in-out infinite;
}

.lab-panel strong {
  color: #ffffff;
}

.lab-panel small {
  color: var(--muted);
  line-height: 1.48;
}

.lab-panel-neural {
  top: 18%;
  left: 7%;
}

.lab-panel-orchestration {
  top: 31%;
  right: 7%;
  animation-delay: -1.5s;
}

.lab-panel-predictive {
  bottom: 20%;
  left: 8%;
  animation-delay: -2.8s;
}

.lab-panel-simulation {
  right: 8%;
  bottom: 9%;
  animation-delay: -4s;
}

.lab-core {
  top: 48%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.38);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(94, 241, 255, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(94, 241, 255, 0.23), rgba(155, 92, 255, 0.2));
  box-shadow: 0 0 60px rgba(94, 241, 255, 0.24);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: ai-pulse 4s ease-in-out infinite;
}

.lab-path {
  top: 48%;
  left: 50%;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.75), rgba(217, 255, 101, 0.76), transparent);
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.5);
  transform-origin: left center;
  animation: connector-flow 3.4s linear infinite;
}

.lab-path-a {
  transform: rotate(28deg) translateX(-50%);
}

.lab-path-b {
  transform: rotate(-34deg) translateX(-50%);
  animation-delay: -1.4s;
}

.lab-chip-one {
  top: 16%;
  right: 32%;
}

.lab-chip-two {
  top: 60%;
  right: 38%;
  animation-delay: -1.8s;
}

.lab-chip-three {
  bottom: 22%;
  left: 42%;
  animation-delay: -3s;
}

.lab-future-section,
.lab-innovation-section,
.lab-research-section,
.lab-orchestration-section,
.lab-future-systems-section,
.lab-tech-section,
.lab-impact-section,
.lab-resource-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.lab-future-grid,
.lab-tech-grid,
.lab-impact-grid,
.lab-system-grid,
.lab-resource-grid {
  display: grid;
  gap: 14px;
}

.lab-future-grid,
.lab-tech-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lab-impact-grid,
.lab-system-grid,
.lab-resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lab-future-grid article,
.lab-tech-grid article,
.lab-impact-grid article,
.lab-system-grid article,
.lab-resource-grid a {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  color: #f5f8ff;
  text-decoration: none;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.lab-impact-grid article,
.lab-system-grid article,
.lab-resource-grid a {
  min-height: 140px;
  font-weight: 950;
}

.lab-future-grid article:hover,
.lab-tech-grid article:hover,
.lab-impact-grid article:hover,
.lab-system-grid article:hover,
.lab-resource-grid a:hover,
.lab-innovation-grid article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  background-color: rgba(94, 241, 255, 0.075);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.lab-future-grid span,
.lab-tech-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.lab-future-grid p,
.lab-tech-grid p,
.lab-innovation-grid p,
.lab-research-flow p {
  color: var(--muted);
  line-height: 1.6;
}

.lab-innovation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lab-innovation-grid article {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 0%), rgba(94, 241, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.lab-card-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(94, 241, 255, 0.21), transparent 44%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.lab-card-visual span {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.25), rgba(155, 92, 255, 0.2), rgba(217, 255, 101, 0.18));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.18);
  animation: float-card 6s ease-in-out infinite;
}

.lab-card-visual span:nth-child(1) {
  top: 22px;
  left: 22px;
  width: 46%;
  height: 52px;
}

.lab-card-visual span:nth-child(2) {
  right: 22px;
  bottom: 26px;
  width: 38%;
  height: 74px;
  animation-delay: -1.8s;
}

.lab-card-visual span:nth-child(3) {
  top: 90px;
  left: 34%;
  width: 32%;
  height: 42px;
  border-radius: 999px;
  animation-delay: -3s;
}

.outreach-visual-lab,
.voice-visual-lab {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 46%, rgba(155, 92, 255, 0.2), transparent 42%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.deliverability-visual-lab,
.growth-visual-lab {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 42% 45%, rgba(217, 255, 101, 0.17), transparent 42%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.lab-research-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(188px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 42px 4px 18px;
  scrollbar-color: rgba(94, 241, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.lab-research-flow::before {
  position: absolute;
  top: 73px;
  left: 38px;
  width: calc(100% - 76px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.85), rgba(217, 255, 101, 0.78), rgba(94, 241, 255, 0.08));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.4);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.lab-research-flow article {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.lab-research-flow article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(94, 241, 255, 0.08);
  transform: translateY(-5px);
}

.lab-research-flow span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.lab-layer-architecture {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.lab-layer-architecture::before {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: 50%;
  content: "";
  animation: slow-spin 20s linear infinite;
}

.lab-layer-architecture strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.2), rgba(155, 92, 255, 0.18));
  box-shadow: 0 0 48px rgba(94, 241, 255, 0.2);
  text-align: center;
  transform: translate(-50%, -50%);
}

.lab-layer-architecture article {
  position: relative;
  z-index: 1;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(5, 8, 20, 0.62);
  color: #eef6ff;
  font-weight: 900;
}

.lab-final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 72px auto 120px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(155, 92, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.lab-final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  pointer-events: none;
}

.lab-final-cta > * {
  position: relative;
  z-index: 1;
}

.lab-final-cta h2 {
  max-width: 820px;
}

.lab-final-cta p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.gtm-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.93fr) minmax(430px, 1.07fr);
  gap: 38px;
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.gtm-hero h1 {
  max-width: 980px;
}

.gtm-hero .hero-copy {
  max-width: 790px;
}

.gtm-command-center {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 48%, rgba(94, 241, 255, 0.2), transparent 25%),
    radial-gradient(circle at 74% 18%, rgba(217, 255, 101, 0.13), transparent 27%),
    radial-gradient(circle at 18% 78%, rgba(155, 92, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.gtm-command-center::before,
.gtm-command-center::after {
  position: absolute;
  inset: 22px;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.gtm-command-center::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 38%, transparent 72%);
  animation: grid-drift 10s linear infinite;
}

.gtm-command-center::after {
  border: 1px solid rgba(94, 241, 255, 0.16);
  background:
    conic-gradient(from 90deg, transparent, rgba(94, 241, 255, 0.2), transparent 22%, rgba(217, 255, 101, 0.16), transparent 48%, rgba(155, 92, 255, 0.17), transparent 74%);
  opacity: 0.74;
  animation: slow-spin 18s linear infinite;
}

.gtm-topline,
.gtm-panel,
.gtm-core,
.gtm-path,
.gtm-chip {
  position: absolute;
  z-index: 2;
}

.gtm-topline {
  top: 22px;
  right: 22px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gtm-topline span,
.gtm-chip {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(5, 9, 22, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.gtm-topline span {
  padding: 10px 9px;
}

.gtm-chip {
  padding: 9px 13px;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--lime));
  animation: float-card 6s ease-in-out infinite;
}

.gtm-panel {
  display: grid;
  width: min(245px, 43%);
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(217, 255, 101, 0.14), transparent 42%),
    rgba(7, 11, 26, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: float-card 7s ease-in-out infinite;
}

.gtm-panel strong {
  color: #ffffff;
}

.gtm-panel small {
  color: var(--muted);
  line-height: 1.48;
}

.gtm-panel-intent {
  top: 18%;
  left: 7%;
}

.gtm-panel-account {
  top: 31%;
  right: 7%;
  animation-delay: -1.5s;
}

.gtm-panel-ai {
  bottom: 20%;
  left: 8%;
  animation-delay: -2.8s;
}

.gtm-panel-pipeline {
  right: 8%;
  bottom: 9%;
  animation-delay: -4s;
}

.gtm-core {
  top: 48%;
  left: 50%;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(217, 255, 101, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(217, 255, 101, 0.17), transparent 60%),
    linear-gradient(135deg, rgba(94, 241, 255, 0.23), rgba(155, 92, 255, 0.2));
  box-shadow: 0 0 60px rgba(94, 241, 255, 0.22);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: ai-pulse 4s ease-in-out infinite;
}

.gtm-path {
  top: 48%;
  left: 50%;
  width: 64%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.76), rgba(155, 92, 255, 0.7), transparent);
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.5);
  transform-origin: left center;
  animation: connector-flow 3.4s linear infinite;
}

.gtm-path-a {
  transform: rotate(28deg) translateX(-50%);
}

.gtm-path-b {
  transform: rotate(-34deg) translateX(-50%);
  animation-delay: -1.4s;
}

.gtm-chip-one {
  top: 16%;
  right: 32%;
}

.gtm-chip-two {
  top: 60%;
  right: 38%;
  animation-delay: -1.8s;
}

.gtm-chip-three {
  bottom: 22%;
  left: 42%;
  animation-delay: -3s;
}

.gtm-challenge-section,
.gtm-engine-section,
.gtm-workflow-section,
.gtm-signal-section,
.gtm-ai-section,
.gtm-usecase-section,
.gtm-results-section,
.gtm-service-section,
.gtm-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.gtm-challenge-grid,
.gtm-ai-grid,
.gtm-usecase-grid,
.gtm-results-grid,
.gtm-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gtm-challenge-grid article,
.gtm-ai-grid article,
.gtm-usecase-grid article,
.gtm-results-grid article,
.gtm-service-grid a {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  color: #f5f8ff;
  font-weight: 950;
  text-decoration: none;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.gtm-challenge-grid article::before,
.gtm-ai-grid article::before,
.gtm-usecase-grid article::before,
.gtm-results-grid article::before,
.gtm-service-grid a::before {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  content: "";
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.3);
}

.gtm-challenge-grid article:hover,
.gtm-ai-grid article:hover,
.gtm-usecase-grid article:hover,
.gtm-results-grid article:hover,
.gtm-service-grid a:hover,
.gtm-feature-grid article:hover {
  border-color: rgba(94, 241, 255, 0.42);
  background-color: rgba(94, 241, 255, 0.075);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.gtm-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gtm-feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at var(--spot-x, 80%) var(--spot-y, 0%), rgba(94, 241, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.gtm-feature-grid p,
.gtm-workflow p {
  color: var(--muted);
  line-height: 1.6;
}

.gtm-card-visual {
  position: relative;
  height: 190px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(217, 255, 101, 0.18), transparent 44%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.gtm-card-visual span {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.25), rgba(155, 92, 255, 0.2), rgba(217, 255, 101, 0.18));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.18);
  animation: float-card 6s ease-in-out infinite;
}

.gtm-card-visual span:nth-child(1) {
  top: 22px;
  left: 22px;
  width: 46%;
  height: 52px;
}

.gtm-card-visual span:nth-child(2) {
  right: 22px;
  bottom: 26px;
  width: 38%;
  height: 74px;
  animation-delay: -1.8s;
}

.gtm-card-visual span:nth-child(3) {
  top: 90px;
  left: 34%;
  width: 32%;
  height: 42px;
  border-radius: 999px;
  animation-delay: -3s;
}

.account-visual,
.linkedin-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 46%, rgba(155, 92, 255, 0.2), transparent 42%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.market-visual,
.pipeline-visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 42% 45%, rgba(94, 241, 255, 0.2), transparent 42%),
    rgba(5, 8, 20, 0.62);
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.gtm-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(178px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 42px 4px 18px;
  scrollbar-color: rgba(94, 241, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.gtm-workflow::before {
  position: absolute;
  top: 73px;
  left: 38px;
  width: calc(100% - 76px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.85), rgba(155, 92, 255, 0.75), rgba(94, 241, 255, 0.08));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.4);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.gtm-workflow article {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 241, 255, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.gtm-workflow article:hover {
  border-color: rgba(94, 241, 255, 0.4);
  background: rgba(94, 241, 255, 0.08);
  transform: translateY(-5px);
}

.gtm-workflow span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--lime));
  font-size: 0.76rem;
  font-weight: 950;
}

.gtm-signal-map {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 255, 101, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.055);
}

.gtm-signal-map::before {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: 50%;
  content: "";
  animation: slow-spin 20s linear infinite;
}

.gtm-signal-map strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border: 1px solid rgba(217, 255, 101, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.19), rgba(217, 255, 101, 0.13), rgba(155, 92, 255, 0.18));
  box-shadow: 0 0 48px rgba(94, 241, 255, 0.18);
  text-align: center;
  transform: translate(-50%, -50%);
}

.gtm-signal-map article {
  position: relative;
  z-index: 1;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(5, 8, 20, 0.62);
  color: #eef6ff;
  font-weight: 900;
}

.gtm-final-cta {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  overflow: hidden;
  margin: 72px auto 120px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 12px);
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 255, 101, 0.17), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(94, 241, 255, 0.23), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.gtm-final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 70%);
  pointer-events: none;
}

.gtm-final-cta > * {
  position: relative;
  z-index: 1;
}

.gtm-final-cta h2 {
  max-width: 860px;
}

.gtm-final-cta p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.engine-hero-copy {
  max-width: 980px;
}

.engine-page-hero h1 {
  max-width: 980px;
}

.engine-journey-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 120px;
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(190px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding: 52px 4px 34px;
  scrollbar-color: rgba(94, 241, 255, 0.5) rgba(255, 255, 255, 0.08);
}

.journey-map::before {
  position: absolute;
  top: 116px;
  left: 42px;
  width: calc(100% - 84px);
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.9), rgba(94, 241, 255, 0.08));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.5);
  content: "";
  animation: journey-flow 4s linear infinite;
}

.journey-map::after {
  top: 116px;
  left: 42px;
  width: 130px;
  height: 3px;
}

.journey-step {
  position: relative;
  z-index: 2;
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-step:nth-child(even) {
  margin-top: 78px;
}

.journey-step::before {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 2px;
  height: 64px;
  background: linear-gradient(180deg, rgba(94, 241, 255, 0.95), transparent);
  content: "";
  transform: translateX(-50%);
}

.journey-step span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 58px;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 54%, var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 950;
}

.journey-step h3 {
  font-size: 1.35rem;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.journey-step:hover {
  border-color: rgba(94, 241, 255, 0.42);
  box-shadow: 0 30px 90px rgba(94, 241, 255, 0.14);
  transform: translateY(-6px);
}

.engine-cta {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto 112px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(94, 241, 255, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
}

.engine-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.growth-engine-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.8fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.growth-engine-copy h1 {
  max-width: 940px;
}

.growth-ecosystem-map {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(155, 92, 255, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.growth-ecosystem-map::before,
.growth-ecosystem-map::after {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.growth-ecosystem-map::before {
  border: 1px solid rgba(94, 241, 255, 0.14);
  box-shadow: inset 0 0 80px rgba(94, 241, 255, 0.08);
}

.growth-ecosystem-map::after {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  transform: scale(0.72);
  animation: orbit-spin 18s linear infinite;
}

.ecosystem-radar {
  position: absolute;
  inset: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.13), transparent 46%);
  background-size: 34px 34px, 34px 34px, auto;
  mask-image: radial-gradient(circle at center, black 0 68%, transparent 92%);
}

.ecosystem-hub,
.growth-node,
.data-stream {
  position: absolute;
  z-index: 2;
}

.ecosystem-hub {
  top: 50%;
  left: 50%;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 30%, rgba(217, 255, 101, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(36, 93, 216, 0.75), rgba(6, 10, 22, 0.94));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28), inset 0 0 34px rgba(94, 241, 255, 0.14);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.growth-node {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 185px;
  padding: 13px 15px;
  border: 1px solid rgba(94, 241, 255, 0.25);
  border-radius: 999px;
  color: #effbff;
  background: rgba(6, 10, 22, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 30px rgba(94, 241, 255, 0.13);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  animation: card-float 6s ease-in-out infinite;
}

.growth-node span {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.74);
}

.node-one { top: 10%; left: 12%; }
.node-two { top: 18%; right: 10%; animation-delay: -0.8s; }
.node-three { top: 42%; right: 4%; animation-delay: -1.6s; }
.node-four { bottom: 14%; right: 12%; animation-delay: -2.4s; }
.node-five { bottom: 10%; left: 13%; animation-delay: -3.2s; }
.node-six { top: 42%; left: 4%; animation-delay: -4s; }
.node-seven { top: 7%; left: 34%; animation-delay: -4.8s; }

.data-stream {
  width: 140px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.58);
  animation: journey-flow 3.8s linear infinite;
}

.stream-one { top: 31%; left: 25%; transform: rotate(22deg); }
.stream-two { top: 33%; right: 24%; transform: rotate(-28deg); animation-delay: -1s; }
.stream-three { bottom: 30%; right: 25%; transform: rotate(24deg); animation-delay: -2s; }
.stream-four { bottom: 31%; left: 25%; transform: rotate(-24deg); animation-delay: -3s; }

.growth-problem-section,
.revenue-system-section,
.channel-section,
.automation-layer-section,
.results-engine-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.fragment-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.fragment-grid::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.05), rgba(94, 241, 255, 0.72), rgba(155, 92, 255, 0.64), rgba(217, 255, 101, 0.62));
  content: "";
  animation: journey-flow 5s linear infinite;
}

.fragment-grid article,
.revenue-pipeline article,
.ai-capability-grid article,
.channel-ecosystem article,
.infra-feature-list span,
.automation-builder article,
.engine-results-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 10%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fragment-grid article {
  z-index: 1;
  min-height: 178px;
  padding: 20px;
}

.fragment-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.fragment-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.fragment-grid article:hover,
.revenue-pipeline article:hover,
.ai-capability-grid article:hover,
.channel-ecosystem article:hover,
.automation-builder article:hover,
.engine-results-grid article:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.revenue-system-section {
  width: 100%;
  color: var(--dark-text);
  background:
    radial-gradient(circle at 12% 18%, rgba(94, 241, 255, 0.16), transparent 32%),
    radial-gradient(circle at 88% 70%, rgba(155, 92, 255, 0.12), transparent 36%),
    #f8fbff;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
}

.revenue-pipeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.revenue-pipeline::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(36, 93, 216, 0.12), rgba(36, 93, 216, 0.7), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.74));
  content: "";
  animation: journey-flow 5s linear infinite;
}

.revenue-pipeline article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 350px);
  gap: 22px;
  align-items: center;
  min-height: 190px;
  padding: 24px;
  border-color: rgba(11, 16, 32, 0.08);
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 72px rgba(11, 16, 32, 0.13);
}

.revenue-pipeline article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 56%, var(--lime));
  box-shadow: 0 0 34px rgba(36, 93, 216, 0.26);
  font-weight: 950;
}

.revenue-pipeline h3 {
  color: var(--dark-text);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
}

.revenue-pipeline p:not(.eyebrow) {
  color: rgba(15, 23, 42, 0.76);
  line-height: 1.66;
}

.revenue-system-section .section-intro {
  color: rgba(15, 23, 42, 0.68);
}

.revenue-system-section .eyebrow {
  color: #245dd8;
}

.mini-dashboard {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(11, 16, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.94), rgba(13, 29, 57, 0.9));
  background-size: 22px 22px, 22px 22px, auto;
}

.mini-dashboard i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.38);
  animation: card-float 4.6s ease-in-out infinite;
}

.mini-dashboard i:nth-child(1) { top: 24px; left: 22px; width: 42%; height: 10px; }
.mini-dashboard i:nth-child(2) { top: 58px; left: 22px; width: 70%; height: 10px; animation-delay: -1s; }
.mini-dashboard i:nth-child(3) { right: 24px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%; animation-delay: -2s; }

.ai-layer-section,
.infrastructure-layer-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.ai-layer-section > div:last-child > p,
.infrastructure-layer-section .section-intro {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.ai-brain-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.ai-brain-visual strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.72));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 2.7rem;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.ai-brain-visual span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.64);
  animation: pulse 3.6s ease-in-out infinite;
}

.ai-brain-visual span:nth-child(1) { top: 18%; left: 24%; }
.ai-brain-visual span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.ai-brain-visual span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.ai-brain-visual span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.ai-brain-visual span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.ai-brain-visual span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.ai-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.ai-capability-grid article,
.infra-feature-list span {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.channel-ecosystem {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.channel-ecosystem::before,
.channel-ecosystem::after {
  position: absolute;
  width: 70%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.8), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.channel-ecosystem::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.channel-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.channel-ecosystem article {
  position: absolute;
  z-index: 2;
  min-width: 148px;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

.channel-ecosystem article:nth-of-type(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.channel-ecosystem article:nth-of-type(2) { top: 34%; right: 10%; }
.channel-ecosystem article:nth-of-type(3) { bottom: 12%; right: 20%; }
.channel-ecosystem article:nth-of-type(4) { bottom: 12%; left: 20%; }
.channel-ecosystem article:nth-of-type(5) { top: 34%; left: 10%; }

.infrastructure-layer-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.88fr);
}

.infra-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.infra-layer-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(217, 255, 101, 0.12), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.infra-layer-visual article,
.infra-layer-visual strong,
.infra-layer-visual span {
  position: absolute;
  z-index: 2;
}

.infra-layer-visual article {
  padding: 13px 15px;
  border: 1px solid rgba(94, 241, 255, 0.25);
  border-radius: 999px;
  color: #effbff;
  background: rgba(6, 10, 22, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(94, 241, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
  animation: card-float 6s ease-in-out infinite;
}

.infra-layer-visual article:nth-of-type(1) { top: 14%; left: 9%; }
.infra-layer-visual article:nth-of-type(2) { top: 31%; right: 10%; animation-delay: -1s; }
.infra-layer-visual article:nth-of-type(3) { bottom: 24%; left: 11%; animation-delay: -2s; }
.infra-layer-visual article:nth-of-type(4) { right: 12%; bottom: 14%; animation-delay: -3s; }

.infra-layer-visual strong {
  inset: 50% auto auto 50%;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(6, 10, 22, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 78%, var(--cyan) 78% 96%, rgba(255, 255, 255, 0.1) 96% 100%);
  box-shadow: inset 0 0 44px rgba(94, 241, 255, 0.12), 0 0 48px rgba(94, 241, 255, 0.18);
  font-size: 3rem;
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.2s ease-in-out infinite;
}

.infra-layer-visual span {
  inset: calc(50% + 72px) auto auto 50%;
  color: var(--muted);
  font-weight: 850;
  transform: translateX(-50%);
}

.automation-builder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.automation-builder::before {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 92%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.8), rgba(217, 255, 101, 0.72));
  content: "";
  animation: journey-flow 4s linear infinite;
}

.automation-builder article {
  z-index: 1;
  display: grid;
  min-height: 142px;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

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

.engine-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.engine-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.engine-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.growth-engine-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.growth-engine-final-cta h2 {
  max-width: 860px;
}

.growth-engine-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.b2b-data-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.b2b-data-copy h1 {
  max-width: 960px;
}

.b2b-intel-dashboard {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.dashboard-topline {
  display: flex;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-topline span,
.filter-console span {
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.dashboard-topline span {
  padding: 9px 11px;
}

.intel-card,
.intel-node,
.intel-line {
  position: absolute;
  z-index: 2;
}

.intel-card {
  max-width: 255px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.intel-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.intel-card small {
  color: var(--muted);
  line-height: 1.45;
}

.company-card { top: 18%; left: 8%; }
.profile-card { top: 31%; right: 8%; animation-delay: -1s; }
.tech-card { bottom: 22%; left: 10%; animation-delay: -2s; }
.insight-card { right: 9%; bottom: 10%; animation-delay: -3s; }

.filter-console {
  position: absolute;
  right: 34px;
  bottom: 178px;
  left: 34px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-console span {
  padding: 10px 12px;
}

.intel-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.7);
  animation: pulse 3.4s ease-in-out infinite;
}

.node-a { top: 46%; left: 46%; }
.node-b { top: 24%; right: 32%; animation-delay: -1.2s; }
.node-c { bottom: 33%; left: 36%; animation-delay: -2.2s; }

.intel-line {
  width: 220px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.line-a { top: 42%; left: 30%; transform: rotate(24deg); }
.line-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.data-challenge-section,
.data-intelligence-section,
.data-category-section,
.data-workflow-section,
.data-usecase-section,
.data-results-section,
.data-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.data-challenge-grid,
.data-category-grid,
.data-results-grid,
.data-ai-grid {
  display: grid;
  gap: 14px;
}

.data-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.data-challenge-grid::before,
.data-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.data-challenge-grid article,
.data-feature-stack article,
.data-category-grid a,
.segment-filters span,
.data-workflow article,
.data-usecase-ecosystem article,
.data-ai-grid article,
.data-results-grid article,
.data-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.data-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.data-challenge-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.data-challenge-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.data-feature-stack {
  display: grid;
  gap: 18px;
}

.data-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.data-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.data-feature-stack p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.feature-visual span,
.segment-results i,
.data-ai-map span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }
.filters-visual span:nth-child(4),
.tech-visual span:nth-child(4) { right: 104px; bottom: 48px; width: 42px; height: 42px; border-radius: 50%; animation-delay: -3s; }

.data-category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.data-category-grid a {
  display: grid;
  min-height: 210px;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.data-category-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet), var(--lime));
  font-weight: 950;
}

.data-category-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.data-category-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.segmentation-engine-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.segmentation-ui {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 24%, rgba(94, 241, 255, 0.19), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.segment-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.segment-filters span {
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  animation: filter-glow 5s ease-in-out infinite;
}

.segment-filters span:nth-child(2n) { animation-delay: -1.5s; }
.segment-filters span:nth-child(3n) { animation-delay: -3s; }

.segment-results {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(6, 10, 22, 0.72);
}

.segment-results strong {
  display: block;
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
}

.segment-results small {
  color: var(--muted);
  font-weight: 850;
}

.segment-results i:nth-of-type(1) { right: 34px; top: 36px; width: 34%; height: 10px; }
.segment-results i:nth-of-type(2) { right: 34px; top: 76px; width: 52%; height: 10px; animation-delay: -1s; }
.segment-results i:nth-of-type(3) { right: 44px; bottom: 32px; width: 82px; height: 82px; border-radius: 50%; animation-delay: -2s; }

.data-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.data-workflow article {
  z-index: 1;
  display: grid;
  min-height: 140px;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

.data-usecase-ecosystem {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.15), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.data-usecase-ecosystem::before,
.data-usecase-ecosystem::after {
  position: absolute;
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.data-usecase-ecosystem::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.data-usecase-ecosystem > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.data-usecase-ecosystem article {
  position: absolute;
  z-index: 2;
  min-width: 170px;
  padding: 15px 18px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  text-align: center;
}

.data-usecase-ecosystem article:nth-of-type(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.data-usecase-ecosystem article:nth-of-type(2) { top: 22%; right: 12%; }
.data-usecase-ecosystem article:nth-of-type(3) { top: 46%; right: 5%; }
.data-usecase-ecosystem article:nth-of-type(4) { bottom: 14%; right: 15%; }
.data-usecase-ecosystem article:nth-of-type(5) { bottom: 7%; left: 50%; transform: translateX(-50%); }
.data-usecase-ecosystem article:nth-of-type(6) { bottom: 14%; left: 15%; }
.data-usecase-ecosystem article:nth-of-type(7) { top: 46%; left: 5%; }
.data-usecase-ecosystem article:nth-of-type(8) { top: 22%; left: 12%; }
.data-usecase-ecosystem article:nth-of-type(9) { top: 50%; left: 50%; transform: translate(-50%, 116px); }

.data-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.data-ai-section > div:last-child > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.data-ai-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.data-ai-map strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.72));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.6rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.data-ai-map span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.data-ai-map span:nth-child(1) { top: 18%; left: 24%; }
.data-ai-map span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.data-ai-map span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.data-ai-map span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.data-ai-map span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.data-ai-map span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.data-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.data-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

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

.data-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.data-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.data-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.data-faq-section {
  display: grid;
  gap: 14px;
}

.data-faq-section details {
  padding: 22px;
}

.data-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.data-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.data-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.data-final-cta h2 {
  max-width: 840px;
}

.data-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.data-challenge-grid article:hover,
.data-feature-stack article:hover,
.data-category-grid a:hover,
.segment-filters span:hover,
.data-workflow article:hover,
.data-usecase-ecosystem article:hover,
.data-ai-grid article:hover,
.data-results-grid article:hover,
.data-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.outreach-page-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.outreach-page-copy h1 {
  max-width: 940px;
}

.outreach-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.19), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.22), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.command-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.command-topline span,
.sequence-rail span {
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.command-topline span {
  padding: 9px 11px;
}

.message-preview,
.message-trail,
.reply-dot {
  position: absolute;
  z-index: 2;
}

.message-preview {
  max-width: 260px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.message-preview strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.message-preview small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.message-preview i {
  display: block;
  width: 82%;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.36);
  animation: typing-line 3.8s ease-in-out infinite;
}

.message-preview i:nth-of-type(2) { width: 58%; animation-delay: -1.2s; }
.message-preview i:nth-of-type(3) { width: 72%; animation-delay: -2.4s; }

.email-preview { top: 18%; left: 8%; }
.linkedin-preview { top: 30%; right: 8%; animation-delay: -1s; }
.analytics-preview { bottom: 19%; left: 10%; animation-delay: -2s; }
.meeting-preview { right: 9%; bottom: 9%; animation-delay: -3s; }

.sequence-rail {
  position: absolute;
  right: 34px;
  bottom: 178px;
  left: 34px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sequence-rail span {
  padding: 10px 12px;
}

.message-trail {
  width: 230px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.trail-a { top: 42%; left: 30%; transform: rotate(24deg); }
.trail-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.reply-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.7);
  animation: pulse 3.4s ease-in-out infinite;
}

.reply-a { top: 45%; left: 47%; }
.reply-b { bottom: 33%; right: 35%; animation-delay: -1.6s; }

.outreach-challenge-section,
.outreach-engine-section,
.outreach-workflow-section,
.outreach-channel-section,
.outreach-analytics-section,
.outreach-usecase-section,
.outreach-automation-section,
.outreach-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.outreach-challenge-grid,
.outreach-analytics-grid,
.outreach-usecase-grid,
.personalization-grid {
  display: grid;
  gap: 14px;
}

.outreach-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.outreach-challenge-grid::before,
.outreach-workflow::before,
.outreach-automation-builder::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.outreach-challenge-grid article,
.outreach-feature-stack article,
.outreach-workflow article,
.outreach-channel-map article,
.personalization-grid article,
.outreach-analytics-grid article,
.outreach-usecase-grid article,
.outreach-automation-builder article,
.outreach-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.outreach-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.outreach-challenge-grid span,
.outreach-workflow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.outreach-challenge-grid span {
  margin-bottom: 34px;
}

.outreach-challenge-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.outreach-feature-stack {
  display: grid;
  gap: 18px;
}

.outreach-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.outreach-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.outreach-feature-stack p:not(.eyebrow),
.personalization-layer-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.outreach-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.outreach-visual span,
.personalization-preview span,
.personalization-preview i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.outreach-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.outreach-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.outreach-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }
.sequence-visual span:nth-child(4) { right: 108px; bottom: 48px; width: 42px; height: 42px; border-radius: 50%; animation-delay: -3s; }

.outreach-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(185px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.outreach-workflow article {
  z-index: 1;
  min-height: 250px;
  padding: 20px;
}

.outreach-workflow span {
  margin-bottom: 28px;
}

.outreach-workflow h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.outreach-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.outreach-channel-map {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.outreach-channel-map::before,
.outreach-channel-map::after {
  position: absolute;
  width: 74%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.outreach-channel-map::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.outreach-channel-map > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.outreach-channel-map article {
  position: absolute;
  z-index: 2;
  min-width: 160px;
  padding: 17px 19px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.outreach-channel-map article:nth-of-type(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.outreach-channel-map article:nth-of-type(2) { top: 34%; right: 10%; }
.outreach-channel-map article:nth-of-type(3) { bottom: 12%; right: 20%; }
.outreach-channel-map article:nth-of-type(4) { bottom: 12%; left: 20%; }
.outreach-channel-map article:nth-of-type(5) { top: 34%; left: 10%; }

.personalization-layer-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.personalization-preview {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.personalization-preview strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.personalization-preview p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.7;
}

.personalization-preview span:nth-of-type(1) { right: 44px; top: 142px; width: 48%; height: 10px; }
.personalization-preview span:nth-of-type(2) { right: 44px; top: 182px; width: 64%; height: 10px; animation-delay: -1s; }
.personalization-preview span:nth-of-type(3) { right: 44px; top: 222px; width: 38%; height: 10px; animation-delay: -2s; }
.personalization-preview i { right: 58px; bottom: 58px; width: 106px; height: 106px; border-radius: 50%; animation-delay: -3s; }

.personalization-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.personalization-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

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

.outreach-analytics-grid article {
  min-height: 210px;
  padding: 24px;
}

.outreach-analytics-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.outreach-analytics-grid span {
  color: var(--muted);
  line-height: 1.65;
}

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

.outreach-usecase-grid article {
  display: grid;
  min-height: 160px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

.outreach-automation-builder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.outreach-automation-builder article {
  z-index: 1;
  display: grid;
  min-height: 142px;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  font-weight: 950;
  text-align: center;
}

.outreach-faq-section {
  display: grid;
  gap: 14px;
}

.outreach-faq-section details {
  padding: 22px;
}

.outreach-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.outreach-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.outreach-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.outreach-final-cta h2 {
  max-width: 840px;
}

.outreach-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.outreach-challenge-grid article:hover,
.outreach-feature-stack article:hover,
.outreach-workflow article:hover,
.outreach-channel-map article:hover,
.personalization-grid article:hover,
.outreach-analytics-grid article:hover,
.outreach-usecase-grid article:hover,
.outreach-automation-builder article:hover,
.outreach-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.email-infra-page-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.email-infra-copy h1 {
  max-width: 940px;
}

.infra-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 255, 101, 0.14), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.infra-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.infra-topline span {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.infra-panel,
.server-node,
.route-line,
.deliverability-meter {
  position: absolute;
  z-index: 2;
}

.infra-panel {
  max-width: 245px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.infra-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.infra-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.smtp-panel { top: 17%; left: 8%; }
.domain-panel { top: 30%; right: 8%; animation-delay: -1s; }
.reputation-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.inbox-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.deliverability-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at center, rgba(6, 10, 22, 0.92) 0 58%, transparent 59%),
    conic-gradient(var(--green) 0 78%, var(--cyan) 78% 96%, rgba(255, 255, 255, 0.1) 96% 100%);
  box-shadow: inset 0 0 44px rgba(94, 241, 255, 0.12), 0 0 58px rgba(94, 241, 255, 0.24);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.2s ease-in-out infinite;
}

.deliverability-meter strong {
  font-size: 3rem;
  line-height: 0.9;
}

.deliverability-meter span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.server-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.7);
  animation: pulse 3.4s ease-in-out infinite;
}

.server-a { top: 43%; left: 28%; }
.server-b { top: 24%; right: 31%; animation-delay: -1.2s; }
.server-c { bottom: 33%; right: 33%; animation-delay: -2.2s; }

.route-line {
  width: 230px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.route-a { top: 42%; left: 30%; transform: rotate(24deg); }
.route-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.infra-problem-section,
.infra-system-section,
.infra-workflow-section,
.deliverability-intel-section,
.scale-systems-section,
.infra-results-section,
.infra-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.infra-problem-grid,
.deliverability-intel-grid,
.auth-feature-grid,
.infra-ai-grid,
.infra-results-grid {
  display: grid;
  gap: 14px;
}

.infra-problem-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.infra-problem-grid::before,
.infra-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.infra-problem-grid article,
.infra-feature-stack article,
.infra-workflow article,
.auth-feature-grid article,
.deliverability-intel-grid article,
.scale-system-map article,
.infra-ai-grid article,
.infra-results-grid article,
.infra-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.infra-problem-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.infra-problem-grid span,
.infra-workflow span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.infra-problem-grid span {
  margin-bottom: 34px;
}

.infra-problem-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.infra-feature-stack {
  display: grid;
  gap: 18px;
}

.infra-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.infra-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.infra-feature-stack p:not(.eyebrow),
.infra-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.infra-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.infra-feature-visual span,
.infra-ai-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.infra-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.infra-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.infra-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }
.auth-visual span:nth-child(4) { right: 108px; bottom: 48px; width: 42px; height: 42px; border-radius: 50%; animation-delay: -3s; }

.infra-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(185px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.infra-workflow article {
  z-index: 1;
  min-height: 250px;
  padding: 20px;
}

.infra-workflow span {
  margin-bottom: 28px;
}

.infra-workflow h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.infra-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.auth-layer-section,
.infra-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.auth-feature-grid,
.infra-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.auth-feature-grid article,
.infra-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.auth-node-map,
.infra-ai-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.auth-node-map strong,
.infra-ai-visual strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.72));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.35rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: score-center-breathe 5s ease-in-out infinite;
}

.auth-node-map span {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(94, 241, 255, 0.25);
  border-radius: 999px;
  color: #effbff;
  background: rgba(6, 10, 22, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 28px rgba(94, 241, 255, 0.13);
  font-weight: 900;
  animation: card-float 6s ease-in-out infinite;
}

.auth-node-map span:nth-of-type(1) { top: 16%; left: 18%; }
.auth-node-map span:nth-of-type(2) { top: 18%; right: 18%; animation-delay: -1s; }
.auth-node-map span:nth-of-type(3) { top: 50%; right: 8%; animation-delay: -2s; }
.auth-node-map span:nth-of-type(4) { bottom: 16%; right: 22%; animation-delay: -3s; }
.auth-node-map span:nth-of-type(5) { bottom: 18%; left: 18%; animation-delay: -4s; }
.auth-node-map span:nth-of-type(6) { top: 50%; left: 9%; animation-delay: -5s; }

.deliverability-intel-grid,
.infra-results-grid {
  grid-template-columns: repeat(3, 1fr);
}

.deliverability-intel-grid article,
.infra-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.deliverability-intel-grid strong,
.infra-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.deliverability-intel-grid span,
.infra-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.scale-system-map {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.scale-system-map::before,
.scale-system-map::after {
  position: absolute;
  width: 76%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.scale-system-map::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.scale-system-map > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 166px;
  height: 166px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.scale-system-map article {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  padding: 17px 19px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.scale-system-map article:nth-of-type(1) { top: 9%; left: 50%; transform: translateX(-50%); }
.scale-system-map article:nth-of-type(2) { top: 28%; right: 8%; }
.scale-system-map article:nth-of-type(3) { bottom: 16%; right: 12%; }
.scale-system-map article:nth-of-type(4) { bottom: 16%; left: 12%; }
.scale-system-map article:nth-of-type(5) { top: 28%; left: 8%; }
.scale-system-map article:nth-of-type(6) { bottom: 7%; left: 50%; transform: translateX(-50%); }

.infra-ai-section {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.infra-ai-visual span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.infra-ai-visual span:nth-child(1) { top: 18%; left: 24%; }
.infra-ai-visual span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.infra-ai-visual span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.infra-ai-visual span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.infra-ai-visual span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }

.infra-faq-section {
  display: grid;
  gap: 14px;
}

.infra-faq-section details {
  padding: 22px;
}

.infra-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.infra-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.infra-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(217, 255, 101, 0.14), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.infra-final-cta h2 {
  max-width: 840px;
}

.infra-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.infra-problem-grid article:hover,
.infra-feature-stack article:hover,
.infra-workflow article:hover,
.auth-feature-grid article:hover,
.deliverability-intel-grid article:hover,
.scale-system-map article:hover,
.infra-ai-grid article:hover,
.infra-results-grid article:hover,
.infra-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.automation-page-premium-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.automation-premium-copy h1 {
  max-width: 940px;
}

.automation-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.automation-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.automation-topline span {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.automation-panel,
.automation-node,
.automation-path,
.orchestration-core {
  position: absolute;
  z-index: 2;
}

.automation-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.automation-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.automation-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.trigger-panel { top: 17%; left: 8%; }
.crm-panel { top: 30%; right: 8%; animation-delay: -1s; }
.routing-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.report-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.orchestration-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 44% 56% 52% 48%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(155, 92, 255, 0.72));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.automation-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.7);
  animation: pulse 3.4s ease-in-out infinite;
}

.auto-a { top: 43%; left: 28%; }
.auto-b { top: 24%; right: 31%; animation-delay: -1.2s; }
.auto-c { bottom: 33%; right: 33%; animation-delay: -2.2s; }

.automation-path {
  width: 230px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.automation-problem-section,
.automation-engine-section,
.automation-lifecycle-section,
.workflow-ecosystem-section,
.automation-usecase-section,
.automation-reporting-section,
.automation-scale-section,
.automation-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.automation-problem-grid,
.automation-usecase-grid,
.automation-reporting-grid,
.orchestration-grid {
  display: grid;
  gap: 14px;
}

.automation-problem-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.automation-problem-grid::before,
.automation-lifecycle::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.automation-problem-grid article,
.automation-feature-stack article,
.automation-lifecycle article,
.workflow-ecosystem-map article,
.orchestration-grid article,
.automation-usecase-grid article,
.automation-reporting-grid article,
.automation-scale-map article,
.automation-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.automation-problem-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.automation-problem-grid span,
.automation-lifecycle span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.automation-problem-grid span {
  margin-bottom: 34px;
}

.automation-problem-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.automation-feature-stack {
  display: grid;
  gap: 18px;
}

.automation-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.automation-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.automation-feature-stack p:not(.eyebrow),
.orchestration-layer-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.automation-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.automation-feature-visual span,
.orchestration-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.automation-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.automation-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.automation-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }
.lead-route-visual span:nth-child(4) { right: 108px; bottom: 48px; width: 42px; height: 42px; border-radius: 50%; animation-delay: -3s; }

.automation-lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.automation-lifecycle article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

.automation-lifecycle span {
  margin-bottom: 28px;
}

.automation-lifecycle h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.automation-lifecycle p {
  color: var(--muted);
  line-height: 1.55;
}

.workflow-ecosystem-map,
.automation-scale-map {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.workflow-ecosystem-map::before,
.workflow-ecosystem-map::after,
.automation-scale-map::before,
.automation-scale-map::after {
  position: absolute;
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.workflow-ecosystem-map::after,
.automation-scale-map::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.workflow-ecosystem-map > div,
.automation-scale-map > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 166px;
  height: 166px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.workflow-ecosystem-map article,
.automation-scale-map article {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  padding: 17px 19px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.workflow-ecosystem-map article:nth-of-type(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.workflow-ecosystem-map article:nth-of-type(2) { top: 22%; right: 12%; }
.workflow-ecosystem-map article:nth-of-type(3) { top: 46%; right: 5%; }
.workflow-ecosystem-map article:nth-of-type(4) { bottom: 14%; right: 15%; }
.workflow-ecosystem-map article:nth-of-type(5) { bottom: 7%; left: 50%; transform: translateX(-50%); }
.workflow-ecosystem-map article:nth-of-type(6) { bottom: 14%; left: 15%; }
.workflow-ecosystem-map article:nth-of-type(7) { top: 46%; left: 5%; }
.workflow-ecosystem-map article:nth-of-type(8) { top: 22%; left: 12%; }

.orchestration-layer-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.orchestration-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.orchestration-visual strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.72));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.25rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.orchestration-visual span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.orchestration-visual span:nth-child(1) { top: 18%; left: 24%; }
.orchestration-visual span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.orchestration-visual span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.orchestration-visual span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.orchestration-visual span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.orchestration-visual span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.orchestration-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.orchestration-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

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

.automation-usecase-grid article {
  display: grid;
  min-height: 160px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

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

.automation-reporting-grid article {
  min-height: 210px;
  padding: 24px;
}

.automation-reporting-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.automation-reporting-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.automation-scale-map article:nth-of-type(1) { top: 9%; left: 50%; transform: translateX(-50%); }
.automation-scale-map article:nth-of-type(2) { top: 28%; right: 8%; }
.automation-scale-map article:nth-of-type(3) { bottom: 16%; right: 12%; }
.automation-scale-map article:nth-of-type(4) { bottom: 16%; left: 12%; }
.automation-scale-map article:nth-of-type(5) { top: 28%; left: 8%; }
.automation-scale-map article:nth-of-type(6) { bottom: 7%; left: 50%; transform: translateX(-50%); }

.automation-faq-section {
  display: grid;
  gap: 14px;
}

.automation-faq-section details {
  padding: 22px;
}

.automation-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.automation-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.automation-final-cta-premium {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.automation-final-cta-premium h2 {
  max-width: 840px;
}

.automation-final-cta-premium p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.automation-problem-grid article:hover,
.automation-feature-stack article:hover,
.automation-lifecycle article:hover,
.workflow-ecosystem-map article:hover,
.orchestration-grid article:hover,
.automation-usecase-grid article:hover,
.automation-reporting-grid article:hover,
.automation-scale-map article:hover,
.automation-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.marketing-page-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.marketing-page-copy h1 {
  max-width: 980px;
}

.marketing-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 255, 101, 0.16), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.marketing-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marketing-topline span {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.marketing-panel,
.growth-line,
.traffic-dot,
.growth-meter {
  position: absolute;
  z-index: 2;
}

.marketing-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.marketing-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.marketing-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.seo-panel { top: 17%; left: 8%; }
.ads-panel { top: 30%; right: 8%; animation-delay: -1s; }
.social-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.funnel-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.growth-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(18, 189, 142, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.growth-meter strong {
  font-size: 2.6rem;
  line-height: 0.95;
}

.growth-meter span {
  color: #d5e3f7;
  font-size: 0.75rem;
  font-weight: 900;
}

.growth-line {
  width: 230px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 101, 0.9), rgba(94, 241, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.growth-a { top: 42%; left: 30%; transform: rotate(24deg); }
.growth-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.traffic-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 0 30px rgba(217, 255, 101, 0.6);
  animation: pulse 3.4s ease-in-out infinite;
}

.traffic-a { top: 43%; left: 28%; }
.traffic-b { bottom: 33%; right: 33%; animation-delay: -1.6s; }

.marketing-problem-section,
.marketing-system-section,
.marketing-lifecycle-section,
.marketing-channel-section,
.marketing-industry-section,
.marketing-results-section,
.marketing-service-section,
.marketing-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.marketing-problem-grid,
.marketing-industry-grid,
.marketing-results-grid,
.marketing-service-grid,
.marketing-ai-grid {
  display: grid;
  gap: 14px;
}

.marketing-problem-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.marketing-problem-grid::before,
.marketing-lifecycle::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.74), rgba(155, 92, 255, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.marketing-problem-grid article,
.marketing-feature-stack article,
.marketing-lifecycle article,
.marketing-channel-map article,
.marketing-ai-grid article,
.marketing-industry-grid article,
.marketing-results-grid article,
.marketing-service-grid a,
.marketing-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.marketing-problem-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.marketing-problem-grid span,
.marketing-lifecycle span,
.marketing-service-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.marketing-problem-grid span {
  margin-bottom: 34px;
}

.marketing-problem-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.marketing-feature-stack {
  display: grid;
  gap: 18px;
}

.marketing-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.marketing-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.marketing-feature-stack p:not(.eyebrow),
.marketing-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.marketing-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.marketing-feature-visual span,
.marketing-ai-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.marketing-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.marketing-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.marketing-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }
.funnel-visual span:nth-child(4) { right: 108px; bottom: 48px; width: 42px; height: 42px; border-radius: 50%; animation-delay: -3s; }

.marketing-lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(185px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.marketing-lifecycle article {
  z-index: 1;
  min-height: 250px;
  padding: 20px;
}

.marketing-lifecycle span {
  margin-bottom: 28px;
}

.marketing-lifecycle h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.marketing-lifecycle p {
  color: var(--muted);
  line-height: 1.55;
}

.marketing-channel-map {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.marketing-channel-map::before,
.marketing-channel-map::after {
  position: absolute;
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 101, 0.74), rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.marketing-channel-map::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.marketing-channel-map > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 166px;
  height: 166px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(18, 189, 142, 0.68));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.marketing-channel-map article {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  padding: 17px 19px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.marketing-channel-map article:nth-of-type(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.marketing-channel-map article:nth-of-type(2) { top: 22%; right: 12%; }
.marketing-channel-map article:nth-of-type(3) { top: 46%; right: 5%; }
.marketing-channel-map article:nth-of-type(4) { bottom: 14%; right: 15%; }
.marketing-channel-map article:nth-of-type(5) { bottom: 7%; left: 50%; transform: translateX(-50%); }
.marketing-channel-map article:nth-of-type(6) { bottom: 14%; left: 15%; }
.marketing-channel-map article:nth-of-type(7) { top: 46%; left: 5%; }
.marketing-channel-map article:nth-of-type(8) { top: 22%; left: 12%; }

.marketing-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.marketing-ai-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.marketing-ai-visual strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(18, 189, 142, 0.68));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.marketing-ai-visual span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.marketing-ai-visual span:nth-child(1) { top: 18%; left: 24%; }
.marketing-ai-visual span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.marketing-ai-visual span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.marketing-ai-visual span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.marketing-ai-visual span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.marketing-ai-visual span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.marketing-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.marketing-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.marketing-industry-grid,
.marketing-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.marketing-industry-grid article,
.marketing-service-grid a {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

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

.marketing-service-grid a {
  min-height: 210px;
  place-items: stretch start;
}

.marketing-service-grid span {
  margin-bottom: 32px;
}

.marketing-service-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.marketing-service-grid small {
  color: var(--muted);
  line-height: 1.45;
}

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

.marketing-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.marketing-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.marketing-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.marketing-faq-section {
  display: grid;
  gap: 14px;
}

.marketing-faq-section details {
  padding: 22px;
}

.marketing-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.marketing-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.marketing-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(217, 255, 101, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.marketing-final-cta h2 {
  max-width: 840px;
}

.marketing-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.marketing-problem-grid article:hover,
.marketing-feature-stack article:hover,
.marketing-lifecycle article:hover,
.marketing-channel-map article:hover,
.marketing-ai-grid article:hover,
.marketing-industry-grid article:hover,
.marketing-results-grid article:hover,
.marketing-service-grid a:hover,
.marketing-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.search-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.search-hero-copy h1 {
  max-width: 980px;
}

.search-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.2), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.search-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-topline span,
.keyword-particle {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.search-panel,
.search-path,
.keyword-particle,
.search-visibility-meter {
  position: absolute;
  z-index: 2;
}

.search-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 92, 255, 0.14), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.search-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.search-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.rank-panel { top: 17%; left: 8%; }
.keyword-panel { top: 30%; right: 8%; animation-delay: -1s; }
.content-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.traffic-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.search-visibility-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(155, 92, 255, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.search-visibility-meter strong {
  font-size: 3rem;
  line-height: 0.9;
}

.search-visibility-meter span {
  color: #d5e3f7;
  font-size: 0.75rem;
  font-weight: 900;
}

.search-path {
  width: 235px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.keyword-particle {
  animation: particle-float 5s ease-in-out infinite;
}

.particle-one { top: 44%; left: 24%; }
.particle-two { top: 52%; right: 22%; animation-delay: -1.7s; }
.particle-three { bottom: 28%; left: 46%; animation-delay: -3.4s; }

.search-challenge-section,
.search-system-section,
.search-workflow-section,
.search-growth-layer-section,
.search-industry-section,
.search-results-section,
.search-service-section,
.search-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.search-challenge-grid,
.search-feature-stack,
.search-industry-grid,
.search-results-grid,
.search-service-grid,
.search-ai-grid {
  display: grid;
  gap: 14px;
}

.search-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.search-challenge-grid::before,
.search-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.search-challenge-grid article,
.search-feature-stack article,
.search-workflow article,
.search-layer-architecture article,
.search-ai-grid article,
.search-industry-grid article,
.search-results-grid article,
.search-service-grid a,
.search-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.search-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.search-challenge-grid span,
.search-workflow span,
.search-service-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.search-challenge-grid span,
.search-workflow span {
  margin-bottom: 28px;
}

.search-challenge-grid h3,
.search-workflow h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.search-feature-stack {
  gap: 18px;
}

.search-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.search-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.search-feature-stack p:not(.eyebrow),
.search-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.search-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.search-feature-visual span,
.search-ai-engine span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.search-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.search-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.search-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }

.search-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.search-workflow article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

.search-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.search-layer-architecture {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(94, 241, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.search-layer-architecture article {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

.search-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.search-ai-engine {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.search-ai-engine strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.68));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.search-ai-engine span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.search-ai-engine span:nth-child(1) { top: 18%; left: 24%; }
.search-ai-engine span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.search-ai-engine span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.search-ai-engine span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.search-ai-engine span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.search-ai-engine span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.search-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.search-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

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

.search-industry-grid article {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

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

.search-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.search-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.search-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

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

.search-service-grid a {
  display: grid;
  min-height: 230px;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.search-service-grid span {
  margin-bottom: 32px;
}

.search-service-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.search-service-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.search-faq-section {
  display: grid;
  gap: 14px;
}

.search-faq-section details {
  padding: 22px;
}

.search-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.search-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.search-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.search-final-cta h2 {
  max-width: 840px;
}

.search-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.search-challenge-grid article:hover,
.search-feature-stack article:hover,
.search-workflow article:hover,
.search-layer-architecture article:hover,
.search-ai-grid article:hover,
.search-industry-grid article:hover,
.search-results-grid article:hover,
.search-service-grid a:hover,
.search-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.social-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.social-hero-copy h1 {
  max-width: 980px;
}

.social-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.19), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 255, 101, 0.14), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.social-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-topline span,
.social-notification {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.social-panel,
.social-path,
.social-notification,
.social-growth-meter {
  position: absolute;
  z-index: 2;
}

.social-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.social-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.social-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.linkedin-panel { top: 17%; left: 8%; }
.instagram-panel { top: 30%; right: 8%; animation-delay: -1s; }
.youtube-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.platform-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.social-growth-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(18, 189, 142, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.social-growth-meter strong {
  font-size: 2.7rem;
  line-height: 0.9;
}

.social-growth-meter span {
  color: #d5e3f7;
  font-size: 0.75rem;
  font-weight: 900;
}

.social-path {
  width: 235px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 101, 0.86), rgba(94, 241, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.social-path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.social-path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.social-notification {
  animation: particle-float 5s ease-in-out infinite;
}

.notification-one { top: 44%; left: 24%; }
.notification-two { top: 52%; right: 22%; animation-delay: -1.7s; }
.notification-three { bottom: 28%; left: 43%; animation-delay: -3.4s; }

.social-challenge-section,
.social-system-section,
.social-workflow-section,
.social-platform-section,
.social-usecase-section,
.social-results-section,
.social-service-section,
.social-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.social-challenge-grid,
.social-feature-stack,
.social-usecase-grid,
.social-results-grid,
.social-service-grid,
.social-ai-grid {
  display: grid;
  gap: 14px;
}

.social-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.social-challenge-grid::before,
.social-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.74), rgba(155, 92, 255, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.social-challenge-grid article,
.social-feature-stack article,
.social-workflow article,
.social-platform-map article,
.social-ai-grid article,
.social-usecase-grid article,
.social-results-grid article,
.social-service-grid a,
.social-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.social-challenge-grid span,
.social-workflow span,
.social-service-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.social-challenge-grid span,
.social-workflow span {
  margin-bottom: 28px;
}

.social-challenge-grid h3,
.social-workflow h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.social-feature-stack {
  gap: 18px;
}

.social-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.social-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.social-feature-stack p:not(.eyebrow),
.social-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.social-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.social-feature-visual span,
.social-ai-engine span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.social-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.social-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.social-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }

.social-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.social-workflow article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

.social-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.social-platform-map {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(94, 241, 255, 0.16), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: auto, 38px 38px, 38px 38px, auto;
  box-shadow: var(--shadow);
}

.social-platform-map::before,
.social-platform-map::after {
  position: absolute;
  width: 78%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 101, 0.74), rgba(94, 241, 255, 0.82), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.social-platform-map::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.social-platform-map > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 166px;
  height: 166px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(18, 189, 142, 0.68));
  box-shadow: 0 0 70px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.social-platform-map article {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  padding: 17px 19px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.social-platform-map article:nth-of-type(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.social-platform-map article:nth-of-type(2) { top: 31%; right: 10%; }
.social-platform-map article:nth-of-type(3) { bottom: 13%; right: 20%; }
.social-platform-map article:nth-of-type(4) { bottom: 13%; left: 20%; }
.social-platform-map article:nth-of-type(5) { top: 31%; left: 10%; }

.social-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.social-ai-engine {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.social-ai-engine strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(18, 189, 142, 0.68));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.social-ai-engine span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.social-ai-engine span:nth-child(1) { top: 18%; left: 24%; }
.social-ai-engine span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.social-ai-engine span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.social-ai-engine span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.social-ai-engine span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.social-ai-engine span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.social-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.social-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.social-usecase-grid,
.social-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.social-usecase-grid article {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

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

.social-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.social-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.social-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.social-service-grid a {
  display: grid;
  min-height: 230px;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.social-service-grid span {
  margin-bottom: 32px;
}

.social-service-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.social-service-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.social-faq-section {
  display: grid;
  gap: 14px;
}

.social-faq-section details {
  padding: 22px;
}

.social-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.social-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.social-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(217, 255, 101, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.social-final-cta h2 {
  max-width: 840px;
}

.social-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.social-challenge-grid article:hover,
.social-feature-stack article:hover,
.social-workflow article:hover,
.social-platform-map article:hover,
.social-ai-grid article:hover,
.social-usecase-grid article:hover,
.social-results-grid article:hover,
.social-service-grid a:hover,
.social-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.digital-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.digital-hero-copy h1 {
  max-width: 980px;
}

.digital-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.digital-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.digital-topline span,
.device-card {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.digital-panel,
.digital-path,
.device-card,
.digital-growth-meter {
  position: absolute;
  z-index: 2;
}

.digital-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 92, 255, 0.14), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.digital-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.digital-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.mockup-panel { top: 17%; left: 8%; }
.funnel-panel-digital { top: 30%; right: 8%; animation-delay: -1s; }
.ux-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.analytics-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.digital-growth-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(155, 92, 255, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.digital-growth-meter strong {
  font-size: 2.5rem;
  line-height: 0.9;
}

.digital-growth-meter span {
  color: #d5e3f7;
  font-size: 0.75rem;
  font-weight: 900;
}

.digital-path {
  width: 235px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.digital-path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.digital-path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.device-card {
  animation: particle-float 5s ease-in-out infinite;
}

.device-one { top: 44%; left: 24%; }
.device-two { top: 52%; right: 22%; animation-delay: -1.7s; }
.device-three { bottom: 28%; left: 43%; animation-delay: -3.4s; }

.digital-challenge-section,
.digital-system-section,
.digital-workflow-section,
.digital-conversion-section,
.digital-usecase-section,
.digital-results-section,
.digital-service-section,
.digital-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.digital-challenge-grid,
.digital-feature-stack,
.digital-usecase-grid,
.digital-results-grid,
.digital-service-grid,
.digital-ai-grid {
  display: grid;
  gap: 14px;
}

.digital-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.digital-challenge-grid::before,
.digital-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.digital-challenge-grid article,
.digital-feature-stack article,
.digital-workflow article,
.digital-conversion-map article,
.digital-ai-grid article,
.digital-usecase-grid article,
.digital-results-grid article,
.digital-service-grid a,
.digital-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.digital-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.digital-challenge-grid span,
.digital-workflow span,
.digital-service-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.digital-challenge-grid span,
.digital-workflow span {
  margin-bottom: 28px;
}

.digital-challenge-grid h3,
.digital-workflow h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.digital-feature-stack {
  gap: 18px;
}

.digital-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.digital-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.digital-feature-stack p:not(.eyebrow),
.digital-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.digital-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.digital-feature-visual span,
.digital-ai-engine span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.digital-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.digital-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.digital-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }

.digital-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.digital-workflow article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

.digital-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.digital-conversion-map {
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(94, 241, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.digital-conversion-map article {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

.digital-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.digital-ai-engine {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.digital-ai-engine strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(155, 92, 255, 0.68));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.digital-ai-engine span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.digital-ai-engine span:nth-child(1) { top: 18%; left: 24%; }
.digital-ai-engine span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.digital-ai-engine span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.digital-ai-engine span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.digital-ai-engine span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.digital-ai-engine span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.digital-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.digital-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.digital-usecase-grid,
.digital-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.digital-usecase-grid article {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

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

.digital-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.digital-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.digital-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.digital-service-grid a {
  display: grid;
  min-height: 230px;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.digital-service-grid span {
  margin-bottom: 32px;
}

.digital-service-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.digital-service-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.digital-faq-section {
  display: grid;
  gap: 14px;
}

.digital-faq-section details {
  padding: 22px;
}

.digital-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.digital-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.digital-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.digital-final-cta h2 {
  max-width: 840px;
}

.digital-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.digital-challenge-grid article:hover,
.digital-feature-stack article:hover,
.digital-workflow article:hover,
.digital-conversion-map article:hover,
.digital-ai-grid article:hover,
.digital-usecase-grid article:hover,
.digital-results-grid article:hover,
.digital-service-grid a:hover,
.digital-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.app-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.app-hero-copy h1 {
  max-width: 980px;
}

.app-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 255, 101, 0.15), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.app-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-topline span,
.app-node {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.app-panel,
.app-path,
.app-node,
.app-growth-meter {
  position: absolute;
  z-index: 2;
}

.app-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 255, 101, 0.12), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.app-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.app-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.saas-panel { top: 17%; left: 8%; }
.mobile-panel { top: 30%; right: 8%; animation-delay: -1s; }
.workflow-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.cloud-panel { right: 9%; bottom: 9%; animation-delay: -3s; }

.app-growth-meter {
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(18, 189, 142, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.app-growth-meter strong {
  font-size: 2.7rem;
  line-height: 0.9;
}

.app-growth-meter span {
  color: #d5e3f7;
  font-size: 0.75rem;
  font-weight: 900;
}

.app-path {
  width: 235px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 101, 0.86), rgba(94, 241, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.app-path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.app-path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.app-node {
  animation: particle-float 5s ease-in-out infinite;
}

.app-node-one { top: 44%; left: 24%; }
.app-node-two { top: 52%; right: 22%; animation-delay: -1.7s; }
.app-node-three { bottom: 28%; left: 43%; animation-delay: -3.4s; }

.app-challenge-section,
.app-system-section,
.app-workflow-section,
.app-ecosystem-section,
.app-usecase-section,
.app-results-section,
.app-service-section,
.app-faq-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.app-challenge-grid,
.app-feature-stack,
.app-usecase-grid,
.app-results-grid,
.app-service-grid,
.app-ai-grid {
  display: grid;
  gap: 14px;
}

.app-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.app-challenge-grid::before,
.app-workflow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.74), rgba(155, 92, 255, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.app-challenge-grid article,
.app-feature-stack article,
.app-workflow article,
.app-layer-map article,
.app-ai-grid article,
.app-usecase-grid article,
.app-results-grid article,
.app-service-grid a,
.app-faq-section details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.app-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.app-challenge-grid span,
.app-workflow span,
.app-service-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.app-challenge-grid span,
.app-workflow span {
  margin-bottom: 28px;
}

.app-challenge-grid h3,
.app-workflow h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}

.app-feature-stack {
  gap: 18px;
}

.app-feature-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
}

.app-feature-stack h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
}

.app-feature-stack p:not(.eyebrow),
.app-ai-section > div:last-child > p {
  color: var(--muted);
  line-height: 1.7;
}

.app-feature-visual {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.15);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 10, 22, 0.95), rgba(13, 29, 57, 0.88));
  background-size: 24px 24px, 24px 24px, auto;
}

.app-feature-visual span,
.app-ai-engine span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 26px rgba(94, 241, 255, 0.42);
  animation: card-float 4.6s ease-in-out infinite;
}

.app-feature-visual span:nth-child(1) { top: 28px; left: 24px; width: 48%; height: 10px; }
.app-feature-visual span:nth-child(2) { top: 66px; left: 24px; width: 74%; height: 10px; animation-delay: -1s; }
.app-feature-visual span:nth-child(3) { right: 30px; bottom: 28px; width: 62px; height: 62px; border-radius: 50%; animation-delay: -2s; }

.app-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.app-workflow article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

.app-workflow p {
  color: var(--muted);
  line-height: 1.55;
}

.app-layer-map {
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(94, 241, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.app-layer-map article {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

.app-ai-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.app-ai-engine {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.18), transparent 44%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.065);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
}

.app-ai-engine strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.28);
  border-radius: 42% 58% 55% 45%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(18, 189, 142, 0.68));
  box-shadow: 0 0 80px rgba(94, 241, 255, 0.25);
  font-size: 1.5rem;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: brain-morph 7s ease-in-out infinite;
}

.app-ai-engine span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.app-ai-engine span:nth-child(1) { top: 18%; left: 24%; }
.app-ai-engine span:nth-child(2) { top: 21%; right: 22%; animation-delay: -0.8s; }
.app-ai-engine span:nth-child(3) { top: 51%; right: 12%; animation-delay: -1.6s; }
.app-ai-engine span:nth-child(4) { bottom: 16%; right: 28%; animation-delay: -2.4s; }
.app-ai-engine span:nth-child(5) { bottom: 19%; left: 20%; animation-delay: -3.2s; }
.app-ai-engine span:nth-child(6) { top: 48%; left: 12%; animation-delay: -4s; }

.app-ai-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.app-ai-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.app-usecase-grid,
.app-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.app-usecase-grid article {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

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

.app-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.app-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.app-results-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.app-service-grid a {
  display: grid;
  min-height: 230px;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.app-service-grid span {
  margin-bottom: 32px;
}

.app-service-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.app-service-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.app-faq-section {
  display: grid;
  gap: 14px;
}

.app-faq-section details {
  padding: 22px;
}

.app-faq-section summary {
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 850;
}

.app-faq-section p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.app-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(217, 255, 101, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.app-final-cta h2 {
  max-width: 840px;
}

.app-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.app-challenge-grid article:hover,
.app-feature-stack article:hover,
.app-workflow article:hover,
.app-layer-map article:hover,
.app-ai-grid article:hover,
.app-usecase-grid article:hover,
.app-results-grid article:hover,
.app-service-grid a:hover,
.app-faq-section details:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.resources-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.resources-hero-copy h1 {
  max-width: 980px;
}

.resources-command-center {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.2), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.18), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.resources-topline {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resources-topline span,
.insight-chip {
  padding: 9px 11px;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 999px;
  color: #eaf9ff;
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 0 28px rgba(94, 241, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 900;
}

.resources-panel,
.resources-path,
.insight-chip,
.resources-core {
  position: absolute;
  z-index: 2;
}

.resources-panel {
  max-width: 250px;
  padding: 18px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 90% 10%, rgba(155, 92, 255, 0.14), transparent 34%),
    rgba(6, 10, 22, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), 0 0 30px rgba(94, 241, 255, 0.11);
  animation: card-float 6s ease-in-out infinite;
}

.resources-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.resources-panel small {
  color: var(--muted);
  line-height: 1.45;
}

.insight-panel { top: 17%; left: 8%; }
.trend-panel { top: 30%; right: 8%; animation-delay: -1s; }
.strategy-panel { bottom: 19%; left: 10%; animation-delay: -2s; }
.analytics-panel-resource { right: 9%; bottom: 9%; animation-delay: -3s; }

.resources-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  border: 1px solid rgba(94, 241, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.88), rgba(155, 92, 255, 0.64));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  font-family: var(--font-heading);
  font-weight: 950;
  line-height: 1.02;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: score-center-breathe 4.5s ease-in-out infinite;
}

.resources-path {
  width: 235px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.9), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.resources-path-a { top: 42%; left: 30%; transform: rotate(24deg); }
.resources-path-b { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.insight-chip {
  animation: particle-float 5s ease-in-out infinite;
}

.chip-one { top: 44%; left: 24%; }
.chip-two { top: 52%; right: 22%; animation-delay: -1.7s; }
.chip-three { bottom: 28%; left: 43%; animation-delay: -3.4s; }

.featured-insights-section,
.knowledge-category-section,
.trending-insights-section,
.research-system-section,
.content-experience-section,
.resource-tools-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.featured-insights-grid,
.knowledge-category-grid,
.trending-insights-grid,
.audience-insight-grid,
.newsletter-feature-grid,
.resource-tools-grid {
  display: grid;
  gap: 14px;
}

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

.featured-insights-grid article,
.knowledge-category-grid a,
.trending-insights-grid article,
.research-layer-map article,
.audience-insight-grid article,
.newsletter-feature-grid article,
.resource-tools-grid a {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.featured-insights-grid article {
  display: grid;
  min-height: 420px;
  padding: 20px;
}

.insight-cover {
  min-height: 124px;
  margin-bottom: 20px;
  border: 1px solid rgba(94, 241, 255, 0.2);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(94, 241, 255, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.045);
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.featured-insights-grid span,
.trending-insights-grid span,
.resource-tools-grid span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-insights-grid h3 {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.18;
}

.featured-insights-grid p,
.trending-insights-grid p,
.resource-tools-grid small {
  color: var(--muted);
  line-height: 1.58;
}

.featured-insights-grid small {
  color: #d7e6ff;
  font-weight: 850;
}

.featured-insights-grid a,
.knowledge-category-grid a,
.resource-tools-grid a {
  color: #ffffff;
  font-weight: 950;
  text-decoration: none;
}

.featured-insights-grid a {
  align-self: end;
}

.knowledge-category-grid {
  grid-template-columns: repeat(5, 1fr);
}

.knowledge-category-grid a {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  text-align: center;
}

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

.trending-insights-grid article {
  min-height: 250px;
  padding: 22px;
}

.trending-insights-grid h3 {
  color: #ffffff;
  font-size: 1.15rem;
}

.trending-insights-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--lime);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.research-layer-map {
  display: grid;
  grid-template-columns: repeat(7, minmax(155px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(94, 241, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.research-layer-map article {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  text-align: center;
}

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

.audience-insight-grid article {
  display: grid;
  min-height: 170px;
  place-items: end start;
  padding: 22px;
  color: #ffffff;
  font-weight: 950;
}

.newsletter-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.newsletter-section p {
  color: var(--muted);
  line-height: 1.7;
}

.newsletter-feature-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.newsletter-feature-grid article {
  min-height: 86px;
  padding: 18px;
  color: #f7fbff;
  font-weight: 900;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 20%, rgba(94, 241, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.newsletter-form label {
  display: grid;
  gap: 8px;
}

.newsletter-form span {
  color: #dce6f8;
  font-size: 0.82rem;
  font-weight: 850;
}

.newsletter-form input,
.newsletter-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
  padding: 14px 15px;
}

.newsletter-form option {
  color: var(--dark-text);
}

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

.resource-tools-grid a {
  display: grid;
  min-height: 240px;
  padding: 22px;
}

.resource-tools-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.18rem;
}

.resources-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.resources-final-cta h2 {
  max-width: 840px;
}

.resources-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.featured-insights-grid article:hover,
.knowledge-category-grid a:hover,
.trending-insights-grid article:hover,
.research-layer-map article:hover,
.audience-insight-grid article:hover,
.newsletter-feature-grid article:hover,
.resource-tools-grid a:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.industries-premium-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.82fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.industries-premium-copy h1 {
  max-width: 980px;
}

.industry-ecosystem-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155, 92, 255, 0.18), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.industry-ecosystem-visual::before,
.industry-ecosystem-visual::after {
  position: absolute;
  width: 76%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.82), rgba(217, 255, 101, 0.72), transparent);
  content: "";
  animation: journey-flow 4.5s linear infinite;
}

.industry-ecosystem-visual::after {
  transform: rotate(90deg);
  animation-delay: -2s;
}

.industry-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 166px;
  height: 166px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 72px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.industry-ecosystem-visual article {
  position: absolute;
  z-index: 2;
  min-width: 132px;
  padding: 15px 17px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(6, 10, 22, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24), 0 0 26px rgba(94, 241, 255, 0.1);
  font-weight: 950;
  text-align: center;
  animation: card-float 6s ease-in-out infinite;
}

.industry-ecosystem-visual article:nth-of-type(1) { top: 8%; left: 50%; transform: translateX(-50%); }
.industry-ecosystem-visual article:nth-of-type(2) { top: 22%; right: 12%; animation-delay: -1s; }
.industry-ecosystem-visual article:nth-of-type(3) { top: 46%; right: 5%; animation-delay: -2s; }
.industry-ecosystem-visual article:nth-of-type(4) { bottom: 14%; right: 15%; animation-delay: -3s; }
.industry-ecosystem-visual article:nth-of-type(5) { bottom: 7%; left: 50%; transform: translateX(-50%); animation-delay: -4s; }
.industry-ecosystem-visual article:nth-of-type(6) { bottom: 14%; left: 15%; animation-delay: -5s; }
.industry-ecosystem-visual article:nth-of-type(7) { top: 46%; left: 5%; animation-delay: -6s; }
.industry-ecosystem-visual article:nth-of-type(8) { top: 22%; left: 12%; animation-delay: -7s; }

.industry-flow {
  position: absolute;
  z-index: 1;
  width: 230px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.95), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4s linear infinite;
}

.flow-one { top: 42%; left: 30%; transform: rotate(24deg); }
.flow-two { bottom: 32%; right: 26%; transform: rotate(-20deg); animation-delay: -2s; }

.industry-challenge-section,
.industry-solutions-section,
.industry-engine-section,
.industry-results-section,
.industry-case-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.industry-challenge-grid,
.industry-solution-grid,
.industry-results-grid,
.industry-case-grid {
  display: grid;
  gap: 14px;
}

.industry-challenge-grid {
  position: relative;
  grid-template-columns: repeat(8, minmax(150px, 1fr));
  overflow-x: auto;
  padding: 28px 4px 20px;
}

.industry-challenge-grid::before,
.industry-engine-flow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.industry-challenge-grid article,
.industry-solution-grid article,
.industry-engine-flow article,
.industry-stack-visual article,
.industry-results-grid article,
.industry-case-grid a {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.industry-challenge-grid article {
  z-index: 1;
  min-height: 176px;
  padding: 20px;
}

.industry-challenge-grid span,
.industry-engine-flow span,
.industry-solution-grid > article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.industry-challenge-grid span {
  margin-bottom: 34px;
}

.industry-challenge-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

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

.industry-solution-grid article {
  min-height: 390px;
  padding: 24px;
}

.industry-solution-grid > article > span {
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
}

.industry-solution-grid h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.industry-solution-grid p,
.industry-solution-grid small {
  color: var(--muted);
  line-height: 1.6;
}

.industry-solution-grid strong {
  color: #ffffff;
}

.industry-solution-grid a,
.industry-case-grid a {
  color: #ffffff;
  text-decoration: none;
}

.industry-solution-grid a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 950;
}

.industry-engine-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(185px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.industry-engine-flow article {
  z-index: 1;
  min-height: 250px;
  padding: 20px;
}

.industry-engine-flow span {
  margin-bottom: 28px;
}

.industry-engine-flow h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.industry-engine-flow p {
  color: var(--muted);
  line-height: 1.55;
}

.industry-stack-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.industry-stack-visual {
  display: grid;
  gap: 12px;
}

.industry-stack-visual article {
  min-height: 74px;
  padding: 20px;
  color: #ffffff;
  font-weight: 950;
}

.industry-stack-visual article:nth-child(2n) {
  transform: translateX(24px);
}

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

.industry-results-grid article {
  min-height: 210px;
  padding: 24px;
}

.industry-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

.industry-results-grid span,
.industry-case-grid span {
  color: var(--muted);
  line-height: 1.65;
}

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

.industry-case-grid a {
  display: grid;
  min-height: 260px;
  padding: 24px;
}

.industry-case-grid strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.18;
}

.industry-case-grid span {
  align-self: end;
}

.industry-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.industry-final-cta h2 {
  max-width: 840px;
}

.industry-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.industry-challenge-grid article:hover,
.industry-solution-grid article:hover,
.industry-engine-flow article:hover,
.industry-stack-visual article:hover,
.industry-results-grid article:hover,
.industry-case-grid a:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.case-premium-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.86fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.case-premium-copy h1 {
  max-width: 980px;
}

.case-analytics-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 46%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 22%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.case-analytics-visual::before,
.case-analytics-visual::after {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 50%;
  content: "";
  animation: node-pulse 5.4s ease-in-out infinite;
}

.case-analytics-visual::after {
  inset: 30%;
  border-color: rgba(217, 255, 101, 0.22);
  animation-delay: -2.4s;
}

.case-dashboard-main {
  position: relative;
  z-index: 2;
  width: min(310px, 78%);
  padding: 24px;
  border: 1px solid rgba(94, 241, 255, 0.32);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(6, 10, 22, 0.78);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.28), 0 0 46px rgba(94, 241, 255, 0.2);
}

.case-dashboard-main span,
.case-kpi-card span,
.case-visual span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-dashboard-main strong,
.case-kpi-card strong,
.case-visual strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
}

.case-chart-bars {
  display: flex;
  height: 150px;
  align-items: end;
  gap: 10px;
  margin-top: 24px;
}

.case-chart-bars i {
  flex: 1;
  min-width: 28px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  box-shadow: 0 0 24px rgba(94, 241, 255, 0.36);
  animation: chart-rise 4.2s ease-in-out infinite;
}

.case-chart-bars i:nth-child(1) { height: 42%; }
.case-chart-bars i:nth-child(2) { height: 58%; animation-delay: -0.8s; }
.case-chart-bars i:nth-child(3) { height: 76%; animation-delay: -1.6s; }
.case-chart-bars i:nth-child(4) { height: 64%; animation-delay: -2.4s; }
.case-chart-bars i:nth-child(5) { height: 92%; animation-delay: -3.2s; }

.case-kpi-card {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 16px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 10, 22, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  animation: card-float 6s ease-in-out infinite;
}

.case-kpi-card:nth-of-type(1) { top: 9%; left: 7%; }
.case-kpi-card:nth-of-type(2) { top: 15%; right: 6%; animation-delay: -1.4s; }
.case-kpi-card:nth-of-type(3) { bottom: 13%; left: 8%; animation-delay: -2.8s; }
.case-kpi-card:nth-of-type(4) { right: 8%; bottom: 10%; animation-delay: -4.2s; }

.case-growth-line {
  position: absolute;
  z-index: 1;
  width: 70%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.9), rgba(217, 255, 101, 0.65), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4.2s linear infinite;
}

.case-growth-line.line-a {
  top: 36%;
  transform: rotate(22deg);
}

.case-growth-line.line-b {
  bottom: 32%;
  transform: rotate(-24deg);
  animation-delay: -2s;
}

.case-results-section,
.featured-case-section,
.case-framework-section,
.case-industry-results-section,
.case-experience-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.case-results-grid,
.featured-case-grid,
.case-industry-grid,
.case-experience-grid {
  display: grid;
  gap: 14px;
}

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

.case-results-grid article,
.featured-case-card,
.case-framework-flow article,
.case-industry-grid article,
.case-tech-architecture article,
.case-experience-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-results-grid article {
  min-height: 220px;
  padding: 24px;
}

.case-results-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.case-results-grid span,
.case-industry-grid span,
.case-experience-grid p {
  color: var(--muted);
  line-height: 1.65;
}

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

.featured-case-card {
  min-height: 330px;
  color: #ffffff;
}

.featured-case-card summary {
  cursor: pointer;
  display: grid;
  gap: 10px;
  padding: 26px;
  list-style: none;
}

.featured-case-card summary::-webkit-details-marker {
  display: none;
}

.featured-case-card summary::after {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "+";
  font-weight: 900;
}

.featured-case-card[open] summary::after {
  content: "-";
}

.featured-case-card summary span,
.case-industry-grid a,
.case-experience-grid span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-case-card summary strong {
  max-width: 85%;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.featured-case-card summary small {
  color: var(--muted);
  font-weight: 850;
}

.case-card-body {
  display: grid;
  gap: 16px;
  padding: 0 26px 26px;
}

.case-card-body p,
.case-card-body li {
  color: var(--muted);
  line-height: 1.6;
}

.case-card-body h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.case-card-body ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.case-visual {
  min-height: 130px;
  padding: 20px;
  border: 1px solid rgba(94, 241, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 76% 24%, rgba(94, 241, 255, 0.24), transparent 32%),
    rgba(255, 255, 255, 0.055);
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.case-framework-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(185px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.case-framework-flow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.case-framework-flow article {
  z-index: 1;
  min-height: 250px;
  padding: 20px;
}

.case-framework-flow span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.case-framework-flow h3,
.case-industry-grid h3 {
  color: #ffffff;
}

.case-framework-flow p,
.case-industry-grid p {
  color: var(--muted);
  line-height: 1.58;
}

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

.case-industry-grid article {
  display: grid;
  min-height: 330px;
  padding: 24px;
}

.case-industry-grid h3 {
  font-size: 1.25rem;
}

.case-industry-grid a {
  align-self: end;
  text-decoration: none;
}

.case-tech-section {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: center;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.case-tech-architecture {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.case-tech-architecture::before {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(94, 241, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: node-pulse 5s ease-in-out infinite;
}

.case-tech-architecture article {
  z-index: 1;
  min-height: 144px;
  padding: 22px;
}

.case-tech-architecture article:nth-child(2n) {
  transform: translateY(22px);
}

.case-tech-architecture span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-weight: 950;
}

.case-tech-architecture strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

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

.case-experience-grid article {
  min-height: 220px;
  padding: 24px;
}

.case-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.case-final-cta h2 {
  max-width: 840px;
}

.case-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.case-results-grid article:hover,
.featured-case-card:hover,
.case-framework-flow article:hover,
.case-industry-grid article:hover,
.case-tech-architecture article:hover,
.case-experience-grid article:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.about-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: 96svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.86fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 160px 0 86px;
}

.about-hero-copy h1 {
  max-width: 980px;
}

.about-global-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(94, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(155, 92, 255, 0.2), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow), var(--shadow-glow);
  backdrop-filter: blur(22px);
}

.about-global-visual::before,
.about-global-visual::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(94, 241, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: orbit-spin 22s linear infinite;
}

.about-global-visual::after {
  inset: 26%;
  border-color: rgba(217, 255, 101, 0.2);
  animation-duration: 16s;
  animation-direction: reverse;
}

.about-global-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 176px;
  height: 176px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 78px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.about-global-visual article {
  position: absolute;
  z-index: 2;
  max-width: 175px;
  padding: 15px 17px;
  border: 1px solid rgba(94, 241, 255, 0.24);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(6, 10, 22, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24), 0 0 26px rgba(94, 241, 255, 0.1);
  font-weight: 950;
  text-align: center;
  animation: card-float 6s ease-in-out infinite;
}

.about-global-visual article:nth-of-type(1) { top: 9%; left: 50%; transform: translateX(-50%); }
.about-global-visual article:nth-of-type(2) { top: 24%; right: 8%; animation-delay: -1s; }
.about-global-visual article:nth-of-type(3) { bottom: 18%; right: 10%; animation-delay: -2s; }
.about-global-visual article:nth-of-type(4) { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
.about-global-visual article:nth-of-type(5) { bottom: 18%; left: 10%; animation-delay: -4s; }
.about-global-visual article:nth-of-type(6) { top: 24%; left: 8%; animation-delay: -5s; }

.about-flow {
  position: absolute;
  z-index: 1;
  width: 74%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.88), rgba(217, 255, 101, 0.66), transparent);
  box-shadow: 0 0 22px rgba(94, 241, 255, 0.55);
  animation: journey-flow 4.5s linear infinite;
}

.flow-alpha {
  top: 38%;
  transform: rotate(22deg);
}

.flow-beta {
  bottom: 32%;
  transform: rotate(-22deg);
  animation-delay: -2s;
}

.about-problem-section,
.about-vision-section,
.about-ecosystem-section,
.about-process-section,
.about-approach-section,
.about-tech-section,
.about-global-section,
.about-why-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: var(--section-pad) 0;
}

.about-challenge-grid,
.about-vision-grid,
.about-approach-grid,
.about-global-grid,
.about-benefit-ecosystem {
  display: grid;
  gap: 14px;
}

.about-challenge-grid {
  position: relative;
  grid-template-columns: repeat(7, minmax(165px, 1fr));
  overflow-x: auto;
  padding: 30px 4px 20px;
}

.about-challenge-grid::before,
.about-process-flow::before {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.08), rgba(94, 241, 255, 0.9), rgba(155, 92, 255, 0.74), rgba(217, 255, 101, 0.7));
  content: "";
  animation: journey-flow 4.8s linear infinite;
}

.about-challenge-grid article,
.about-vision-grid article,
.about-layer-map article,
.about-process-flow article,
.about-approach-grid article,
.about-tech-architecture article,
.about-global-grid article,
.about-benefit-ecosystem article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 14%), rgba(94, 241, 255, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-challenge-grid article {
  z-index: 1;
  min-height: 178px;
  padding: 20px;
}

.about-challenge-grid span,
.about-process-flow span,
.about-layer-map span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 30px rgba(94, 241, 255, 0.48);
  font-weight: 950;
}

.about-challenge-grid h3,
.about-vision-grid h3,
.about-process-flow h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
}

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

.about-vision-grid article {
  min-height: 380px;
  padding: 24px;
}

.about-vision-grid p,
.about-process-flow p,
.about-global-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.about-mini-visual {
  position: relative;
  min-height: 150px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(94, 241, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(94, 241, 255, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.045);
  background-size: 24px 24px, 24px 24px, auto, auto;
}

.about-mini-visual span {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 34px rgba(94, 241, 255, 0.42);
  animation: node-pulse 4s ease-in-out infinite;
}

.about-mini-visual span:nth-child(1) { top: 24px; left: 28px; }
.about-mini-visual span:nth-child(2) { top: 56px; right: 32px; animation-delay: -1.4s; }
.about-mini-visual span:nth-child(3) { bottom: 24px; left: 45%; animation-delay: -2.8s; }

.about-layer-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 45%, rgba(94, 241, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.about-layer-map::before {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(94, 241, 255, 0.22);
  border-radius: 50%;
  content: "";
  animation: node-pulse 5.5s ease-in-out infinite;
}

.about-layer-map article {
  z-index: 1;
  min-height: 155px;
  padding: 22px;
}

.about-layer-map strong,
.about-tech-architecture article,
.about-approach-grid article,
.about-benefit-ecosystem article {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
}

.about-process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding: 34px 4px 18px;
}

.about-process-flow article {
  z-index: 1;
  min-height: 260px;
  padding: 20px;
}

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

.about-approach-grid article,
.about-benefit-ecosystem article {
  display: grid;
  min-height: 145px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.about-tech-architecture {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(94, 241, 255, 0.2), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow);
}

.about-tech-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(36, 93, 216, 0.9), rgba(6, 10, 22, 0.96));
  box-shadow: 0 0 74px rgba(94, 241, 255, 0.28);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.about-tech-architecture article {
  position: absolute;
  z-index: 2;
  width: 190px;
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  animation: card-float 6s ease-in-out infinite;
}

.about-tech-architecture article:nth-of-type(1) { top: 10%; left: 50%; transform: translateX(-50%); }
.about-tech-architecture article:nth-of-type(2) { top: 28%; right: 8%; animation-delay: -1s; }
.about-tech-architecture article:nth-of-type(3) { bottom: 18%; right: 12%; animation-delay: -2s; }
.about-tech-architecture article:nth-of-type(4) { bottom: 10%; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
.about-tech-architecture article:nth-of-type(5) { bottom: 18%; left: 12%; animation-delay: -4s; }
.about-tech-architecture article:nth-of-type(6) { top: 28%; left: 8%; animation-delay: -5s; }

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

.about-global-grid article {
  min-height: 220px;
  padding: 24px;
}

.about-global-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.24rem;
}

.about-benefit-ecosystem {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}

.about-benefit-ecosystem::before {
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(94, 241, 255, 0.18);
  border-radius: 50%;
  content: "";
  animation: node-pulse 5s ease-in-out infinite;
}

.about-benefit-ecosystem article {
  z-index: 1;
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 112px;
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 18%, rgba(94, 241, 255, 0.24), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(155, 92, 255, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow), var(--shadow-glow);
}

.about-final-cta h2 {
  max-width: 840px;
}

.about-final-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.about-challenge-grid article:hover,
.about-vision-grid article:hover,
.about-layer-map article:hover,
.about-process-flow article:hover,
.about-approach-grid article:hover,
.about-tech-architecture article:hover,
.about-global-grid article:hover,
.about-benefit-ecosystem article:hover {
  border-color: rgba(94, 241, 255, 0.44);
  box-shadow: 0 28px 90px rgba(94, 241, 255, 0.13);
  transform: translateY(-5px);
}

.contact-section {
  color: var(--ink);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: #dce6f8;
  font-size: 0.82rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
  padding: 14px 15px;
}

.lead-form option {
  color: var(--dark-text);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(94, 241, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(94, 241, 255, 0.1);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 38px 0 50px;
  border-top: 1px solid var(--line);
  color: #c5d1e2;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.professional-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 72px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(90deg, rgba(94, 241, 255, 0.08), transparent 26%, rgba(124, 255, 178, 0.05) 72%, transparent),
    linear-gradient(180deg, #06101c 0%, #030712 100%);
  color: #dce8f7;
  padding: 0;
}

.footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(140px, 0.72fr));
  gap: clamp(28px, 4vw, 48px);
  margin: 0 auto;
  padding: 42px 0 34px;
}

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

.footer-brand {
  justify-content: flex-start;
  color: #ffffff;
  text-decoration: none;
}

.footer-brand-block p {
  max-width: 330px;
  margin: 0;
  color: #a9b7c9;
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-email {
  width: fit-content;
  color: #dce8f7;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-socials,
.footer-link-column {
  display: grid;
  gap: 9px;
}

.footer-link-column a {
  position: relative;
  width: fit-content;
  color: #b8c6d9;
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-link-column a:hover {
  color: #ffffff;
}

.footer-link-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-link-column a:hover::after {
  transform: scaleX(1);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
}

.footer-social-link {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(184, 198, 217, 0.22);
  border-radius: 999px;
  color: #dce8f7;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
  border-color: rgba(94, 241, 255, 0.45);
  color: #ffffff;
  background: rgba(94, 241, 255, 0.09);
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.12);
  transform: translateY(-1px);
}

.footer-link-column h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 16px 0 18px;
}

.footer-bottom-inner p {
  max-width: none;
  margin: 0;
  color: #8d9bb0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.legal-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 9, 20, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 10px 12px;
}

.legal-page-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero {
  padding: 116px 0 44px;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.legal-hero span {
  display: inline-flex;
  border: 1px solid rgba(94, 241, 255, 0.18);
  border-radius: 999px;
  color: #dff5ff;
  background: rgba(94, 241, 255, 0.08);
  font-weight: 850;
  padding: 9px 12px;
}

.legal-document-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 90px;
}

.legal-toc,
.legal-document,
.help-grid article,
.career-section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #f7f9fc;
  color: #142033;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 9px;
  padding: 18px;
}

.legal-toc strong {
  margin-bottom: 6px;
}

.legal-toc a {
  color: #425069;
  text-decoration: none;
  font-size: 0.92rem;
}

.legal-document {
  padding: clamp(24px, 4vw, 48px);
}

.legal-document section + section {
  margin-top: 30px;
}

.legal-document h2,
.help-grid h2,
.career-section h2 {
  margin: 0 0 10px;
  color: #0e1828;
  font-family: var(--font-heading);
}

.legal-document p,
.help-grid p,
.career-section p {
  color: #45536a;
  line-height: 1.8;
}

.help-search input {
  width: min(680px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  padding: 14px 16px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 90px;
}

.help-grid article,
.career-section {
  padding: 22px;
}

.help-grid a,
.career-section a {
  color: #0d5bd7;
  font-weight: 850;
}

.career-section {
  margin-bottom: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.services-section,
.growth-engine-section,
.industries-section,
.ai-advantage-section,
.case-section,
.resources-section,
.enterprise-trust-section,
.data-coverage-section,
.segmentation-section,
.data-use-section,
.infra-section,
.auth-section,
.deliverability-section,
.automation-services-section,
.workflow-chain-section,
.case-library-section,
.contact-builder-section,
.detail-feature-section,
.detail-use-section,
.detail-faq-section,
.detail-solution-section,
.detail-process-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 780px;
}

.solution-ecosystem-section,
.solutions-process-section,
.solutions-industry-section,
.why-pixlence-section,
.solutions-case-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 84px 84px;
  }
}

@keyframes loader-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loader-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes shape-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(28px, -34px, 0) rotate(18deg);
  }
}

@keyframes ambient-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes particle-float {
  0%,
  100% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translate3d(34px, -46px, 0);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes flow-line {
  from {
    filter: hue-rotate(0deg);
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
  to {
    filter: hue-rotate(90deg);
    opacity: 0.55;
  }
}

@keyframes progress-sweep {
  0% {
    transform: translate3d(0, -50%, 0);
    opacity: 0;
  }
  16%,
  72% {
    opacity: 0.75;
  }
  100% {
    transform: translate3d(calc(100vw - 240px), -50%, 0);
    opacity: 0;
  }
}

@keyframes journey-flow {
  from {
    filter: hue-rotate(0deg);
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
  to {
    filter: hue-rotate(120deg);
    opacity: 0.55;
  }
}

@keyframes scan-line-glow {
  0%,
  100% {
    opacity: 0.35;
    filter: blur(0);
  }
  50% {
    opacity: 1;
    filter: blur(0.6px);
  }
}

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

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

@keyframes score-breathe {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes score-center-breathe {
  0%,
  100% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes brain-morph {
  0%,
  100% {
    border-radius: 42% 58% 55% 45%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    border-radius: 58% 42% 44% 56%;
    transform: translate(-50%, -50%) rotate(4deg) scale(1.05);
  }
}

@keyframes filter-glow {
  0%,
  100% {
    border-color: rgba(94, 241, 255, 0.18);
    box-shadow: 0 0 0 rgba(94, 241, 255, 0);
  }
  50% {
    border-color: rgba(217, 255, 101, 0.42);
    box-shadow: 0 0 32px rgba(94, 241, 255, 0.14);
  }
}

@keyframes typing-line {
  0%,
  100% {
    opacity: 0.46;
    transform: scaleX(0.45);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.42);
  }
}

@keyframes scan {
  0% {
    top: -30%;
  }
  55%,
  100% {
    top: 110%;
  }
}

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

  .cursor-aura,
  .cursor-dot,
  .abstract-shape {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-aura,
  .cursor-dot {
    display: none;
  }
}

@media (max-width: 1240px) {
  .enterprise-header {
    width: min(1120px, calc(100% - 24px));
  }

  .enterprise-nav {
    font-size: 0.72rem;
  }

  .enterprise-nav .nav-link {
    padding-right: 8px;
    padding-left: 8px;
  }

  .growth-mega {
    width: min(1040px, calc(100vw - 36px));
  }

  .mega-menu-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mega-menu-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 1020px) {
  .enterprise-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .enterprise-header .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }

  .footer-brand-block p {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .blog-main,
  .blog-article-main {
    width: min(100% - 28px, 1180px);
  }

  .blog-category-grid,
  .trending-tags,
  .internal-link-section div,
  .blog-newsletter-form {
    grid-template-columns: 1fr;
  }

  .blog-hero-section {
    min-height: auto;
    padding-top: 132px;
  }

  .blog-hero-visual,
  .article-featured-image {
    min-height: 280px;
  }

  .toc-card {
    position: relative;
    top: auto;
  }

  .footer-inner,
  .footer-bottom-bar p,
  .legal-header,
  .legal-page-main {
    width: min(100% - 28px, 1180px);
  }

  .legal-toc {
    position: relative;
    top: auto;
  }

  .enterprise-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr auto;
    padding: 10px;
  }

  .enterprise-header .nav-cta {
    display: none;
  }

  .mobile-drawer {
    top: 66px;
    right: 10px;
    left: 10px;
    max-height: calc(100svh - 78px);
    border-radius: 20px;
  }

  .mobile-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero,
  .platform-section,
  .contact-section,
  .systems-panel,
  .ai-advantage-section,
  .final-cta,
  .engine-cta,
  .trust-architecture-card,
  .solutions-hero,
  .solution-detail-hero,
  .growth-engine-hero,
  .b2b-data-hero,
  .outreach-page-hero,
  .email-infra-page-hero,
  .automation-page-premium-hero,
  .marketing-page-hero,
  .search-hero,
  .search-ai-section,
  .social-hero,
  .social-ai-section,
  .digital-hero,
  .digital-ai-section,
  .app-hero,
  .app-ai-section,
  .resources-hero,
  .newsletter-section,
  .industries-premium-hero,
  .case-premium-hero,
  .about-hero,
  .contact-strategy-hero,
  .pricing-hero,
  .lab-hero,
  .gtm-hero,
  .case-tech-section,
  .segmentation-engine-section,
  .data-ai-section,
  .personalization-layer-section,
  .auth-layer-section,
  .infra-ai-section,
  .orchestration-layer-section,
  .ai-layer-section,
  .infrastructure-layer-section,
  .detail-problem-section,
  .detail-ai-section,
  .data-page-hero,
  .segmentation-section,
  .accuracy-section,
  .data-sample-cta,
  .email-page-hero,
  .auth-section,
  .email-audit-cta,
  .automation-page-hero,
  .automation-cta,
  .case-library-grid,
  .case-detail-grid,
  .contact-builder-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 132px;
  }

  .console-shell {
    min-height: 540px;
  }

  .service-grid,
  .timeline,
  .trust-metrics,
  .trust-pill-grid,
  .pipeline-flow,
  .industry-grid,
  .case-grid,
  .resource-grid,
  .coverage-grid,
  .use-case-grid,
  .server-node-grid,
  .domain-card-grid,
  .reputation-grid,
  .email-audience-grid,
  .automation-grid,
  .workflow-chain {
    grid-template-columns: repeat(2, 1fr);
  }

  .revenue-pipeline article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .revenue-pipeline .mini-dashboard {
    grid-column: 2;
  }

  .fragment-grid,
  .automation-builder {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
  }

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

  .data-feature-stack article,
  .data-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outreach-feature-stack article,
  .outreach-analytics-grid,
  .outreach-usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .infra-feature-stack article,
  .deliverability-intel-grid,
  .infra-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-feature-stack article,
  .automation-usecase-grid,
  .automation-reporting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .marketing-feature-stack article,
  .marketing-industry-grid,
  .marketing-results-grid,
  .marketing-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-feature-stack article,
  .search-ai-grid,
  .search-industry-grid,
  .search-results-grid,
  .search-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-feature-stack article,
  .social-ai-grid,
  .social-usecase-grid,
  .social-results-grid,
  .social-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .digital-feature-stack article,
  .digital-ai-grid,
  .digital-usecase-grid,
  .digital-results-grid,
  .digital-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-feature-stack article,
  .app-ai-grid,
  .app-usecase-grid,
  .app-results-grid,
  .app-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-insights-grid,
  .knowledge-category-grid,
  .trending-insights-grid,
  .audience-insight-grid,
  .resource-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultation-area-grid,
  .assessment-area-grid,
  .contact-trust-grid,
  .contact-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-explain-grid,
  .pricing-trust-grid,
  .pricing-segment-grid,
  .engagement-model-grid,
  .pricing-layer-architecture {
    grid-template-columns: repeat(2, 1fr);
  }

  .lab-future-grid,
  .lab-tech-grid,
  .lab-impact-grid,
  .lab-system-grid,
  .lab-resource-grid,
  .lab-innovation-grid,
  .lab-layer-architecture {
    grid-template-columns: repeat(2, 1fr);
  }

  .gtm-feature-grid,
  .gtm-challenge-grid,
  .gtm-ai-grid,
  .gtm-usecase-grid,
  .gtm-results-grid,
  .gtm-service-grid,
  .gtm-signal-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-intake-form fieldset,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .industry-solution-grid,
  .industry-results-grid,
  .industry-case-grid,
  .industry-stack-section,
  .featured-case-grid,
  .case-results-grid,
  .case-experience-grid,
  .case-tech-architecture,
  .about-vision-grid,
  .about-layer-map,
  .about-approach-grid,
  .about-global-grid,
  .about-benefit-ecosystem {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .solution-ecosystem-grid,
  .solutions-industry-grid,
  .benefit-cloud,
  .solutions-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .solution-module,
  .module-marketing {
    grid-column: auto;
  }

  .solutions-timeline {
    grid-template-columns: repeat(7, minmax(210px, 1fr));
  }

  .pipeline-flow::before {
    display: none;
  }

  .pipeline-flow::after,
  .workflow-chain::after,
  .journey-map::after {
    display: none;
  }

  .capability-band {
    flex-wrap: wrap;
    justify-content: center;
  }

  .capability-band span {
    flex: 0 1 auto;
  }
}

@media (max-width: 1420px) {
  .site-header {
    width: min(1160px, calc(100% - 24px));
  }

  .optional-nav {
    display: none;
  }

  .desktop-nav {
    gap: 4px;
    font-size: 0.8rem;
  }

  .desktop-nav a,
  .nav-link {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    max-width: 132px;
    padding: 10px 11px;
    font-size: 0.72rem;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
  }

  .abstract-shape {
    display: none;
  }

  .hero,
  .section,
  .process-section,
  .audience-section,
  .contact-section,
  .industries-section,
  .ai-advantage-section,
  .enterprise-trust-section,
  .solutions-hero,
  .solution-detail-hero,
  .growth-engine-hero,
  .b2b-data-hero,
  .outreach-page-hero,
  .email-infra-page-hero,
  .automation-page-premium-hero,
  .marketing-page-hero,
  .industries-premium-hero,
  .industry-challenge-section,
  .industry-solutions-section,
  .industry-engine-section,
  .industry-stack-section,
  .industry-results-section,
  .industry-case-section,
  .industry-final-cta,
  .automation-problem-section,
  .automation-engine-section,
  .automation-lifecycle-section,
  .workflow-ecosystem-section,
  .orchestration-layer-section,
  .automation-usecase-section,
  .automation-reporting-section,
  .automation-scale-section,
  .automation-faq-section,
  .automation-final-cta-premium,
  .marketing-problem-section,
  .marketing-system-section,
  .marketing-lifecycle-section,
  .marketing-channel-section,
  .marketing-ai-section,
  .marketing-industry-section,
  .marketing-results-section,
  .marketing-service-section,
  .marketing-faq-section,
  .marketing-final-cta,
  .search-hero,
  .search-challenge-section,
  .search-system-section,
  .search-workflow-section,
  .search-growth-layer-section,
  .search-ai-section,
  .search-industry-section,
  .search-results-section,
  .search-service-section,
  .search-faq-section,
  .search-final-cta,
  .social-hero,
  .social-challenge-section,
  .social-system-section,
  .social-workflow-section,
  .social-platform-section,
  .social-ai-section,
  .social-usecase-section,
  .social-results-section,
  .social-service-section,
  .social-faq-section,
  .social-final-cta,
  .digital-hero,
  .digital-challenge-section,
  .digital-system-section,
  .digital-workflow-section,
  .digital-conversion-section,
  .digital-ai-section,
  .digital-usecase-section,
  .digital-results-section,
  .digital-service-section,
  .digital-faq-section,
  .digital-final-cta,
  .app-hero,
  .app-challenge-section,
  .app-system-section,
  .app-workflow-section,
  .app-ecosystem-section,
  .app-ai-section,
  .app-usecase-section,
  .app-results-section,
  .app-service-section,
  .app-faq-section,
  .app-final-cta,
  .resources-hero,
  .featured-insights-section,
  .knowledge-category-section,
  .trending-insights-section,
  .research-system-section,
  .content-experience-section,
  .newsletter-section,
  .resource-tools-section,
  .resources-final-cta,
  .case-premium-hero,
  .case-results-section,
  .featured-case-section,
  .case-framework-section,
  .case-industry-results-section,
  .case-tech-section,
  .case-experience-section,
  .case-final-cta,
  .about-hero,
  .about-problem-section,
  .about-vision-section,
  .about-ecosystem-section,
  .about-process-section,
  .about-approach-section,
  .about-tech-section,
  .about-global-section,
  .about-why-section,
  .about-final-cta,
  .contact-strategy-hero,
  .consultation-experience-section,
  .strategy-intake-section,
  .consultation-next-section,
  .assessment-area-section,
  .consultation-benefits-section,
  .contact-trust-section,
  .contact-channel-section,
  .contact-final-cta,
  .pricing-hero,
  .pricing-explain-section,
  .engagement-model-section,
  .pricing-process-section,
  .pricing-layer-section,
  .pricing-segment-section,
  .pricing-trust-section,
  .pricing-faq-section,
  .pricing-final-cta,
  .lab-hero,
  .lab-future-section,
  .lab-innovation-section,
  .lab-research-section,
  .lab-orchestration-section,
  .lab-future-systems-section,
  .lab-tech-section,
  .lab-impact-section,
  .lab-resource-section,
  .lab-final-cta,
  .gtm-hero,
  .gtm-challenge-section,
  .gtm-engine-section,
  .gtm-workflow-section,
  .gtm-signal-section,
  .gtm-ai-section,
  .gtm-usecase-section,
  .gtm-results-section,
  .gtm-service-section,
  .gtm-faq-section,
  .gtm-final-cta,
  .infra-problem-section,
  .infra-system-section,
  .infra-workflow-section,
  .auth-layer-section,
  .deliverability-intel-section,
  .scale-systems-section,
  .infra-ai-section,
  .infra-results-section,
  .infra-faq-section,
  .infra-final-cta,
  .outreach-challenge-section,
  .outreach-engine-section,
  .outreach-workflow-section,
  .outreach-channel-section,
  .personalization-layer-section,
  .outreach-analytics-section,
  .outreach-usecase-section,
  .outreach-automation-section,
  .outreach-faq-section,
  .outreach-final-cta,
  .data-challenge-section,
  .data-intelligence-section,
  .data-category-section,
  .segmentation-engine-section,
  .data-workflow-section,
  .data-usecase-section,
  .data-ai-section,
  .data-results-section,
  .data-faq-section,
  .data-final-cta,
  .growth-problem-section,
  .revenue-system-section,
  .ai-layer-section,
  .channel-section,
  .infrastructure-layer-section,
  .automation-layer-section,
  .results-engine-section,
  .growth-engine-final-cta,
  .detail-problem-section,
  .detail-ai-section,
  .detail-solution-section,
  .detail-feature-section,
  .detail-use-section,
  .detail-faq-section,
  .detail-metrics-section,
  .detail-final-cta,
  .solution-ecosystem-section,
  .solutions-process-section,
  .solutions-industry-section,
  .why-pixlence-section,
  .solutions-final-cta,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
    line-height: 0.96;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .console-metrics,
  .service-grid,
  .timeline,
  .audience-grid,
  .systems-stats,
  .trust-metrics,
  .trust-pill-grid,
  .pipeline-flow,
  .industry-grid,
  .advantage-grid,
  .case-grid,
  .case-carousel-section,
  .resource-grid,
  .solution-ecosystem-grid,
  .solutions-industry-grid,
  .benefit-cloud,
  .solutions-case-grid,
  .detail-feature-grid,
  .detail-metrics-section,
  .revenue-pipeline article,
  .ai-capability-grid,
  .infra-feature-list,
  .engine-results-grid,
  .data-feature-stack article,
  .data-category-grid,
  .data-results-grid,
  .data-ai-grid,
  .outreach-feature-stack article,
  .outreach-analytics-grid,
  .outreach-usecase-grid,
  .personalization-grid,
  .infra-feature-stack article,
  .deliverability-intel-grid,
  .infra-results-grid,
  .auth-feature-grid,
  .infra-ai-grid,
  .automation-feature-stack article,
  .orchestration-grid,
  .automation-usecase-grid,
  .automation-reporting-grid,
  .marketing-feature-stack article,
  .marketing-ai-grid,
  .marketing-industry-grid,
  .marketing-results-grid,
  .marketing-service-grid,
  .search-feature-stack article,
  .search-ai-grid,
  .search-industry-grid,
  .search-results-grid,
  .search-service-grid,
  .search-layer-architecture,
  .social-feature-stack article,
  .social-ai-grid,
  .social-usecase-grid,
  .social-results-grid,
  .social-service-grid,
  .digital-feature-stack article,
  .digital-ai-grid,
  .digital-usecase-grid,
  .digital-results-grid,
  .digital-service-grid,
  .digital-conversion-map,
  .app-feature-stack article,
  .app-ai-grid,
  .app-usecase-grid,
  .app-results-grid,
  .app-service-grid,
  .app-layer-map,
  .featured-insights-grid,
  .knowledge-category-grid,
  .trending-insights-grid,
  .audience-insight-grid,
  .newsletter-section,
  .newsletter-feature-grid,
  .resource-tools-grid,
  .research-layer-map,
  .industry-solution-grid,
  .industry-stack-section,
  .industry-results-grid,
  .industry-case-grid,
  .case-results-grid,
  .featured-case-grid,
  .case-industry-grid,
  .case-tech-section,
  .case-tech-architecture,
  .case-experience-grid,
  .about-vision-grid,
  .about-layer-map,
  .about-approach-grid,
  .about-global-grid,
  .about-benefit-ecosystem,
  .consultation-area-grid,
  .assessment-area-grid,
  .contact-trust-grid,
  .contact-channel-grid,
  .pricing-explain-grid,
  .pricing-trust-grid,
  .pricing-segment-grid,
  .engagement-model-grid,
  .pricing-layer-architecture,
  .lab-future-grid,
  .lab-tech-grid,
  .lab-impact-grid,
  .lab-system-grid,
  .lab-resource-grid,
  .lab-innovation-grid,
  .lab-layer-architecture,
  .gtm-feature-grid,
  .gtm-challenge-grid,
  .gtm-ai-grid,
  .gtm-usecase-grid,
  .gtm-results-grid,
  .gtm-service-grid,
  .gtm-signal-map,
  .model-columns,
  .strategy-intake-form fieldset,
  .choice-grid,
  .quick-form-card,
  .quick-lead-form,
  .blog-hero-section,
  .featured-article-card,
  .blog-tools-section,
  .article-card-grid,
  .blog-split-section,
  .topic-cluster-grid,
  .newsletter-section,
  .lead-magnet-section,
  .article-body-grid,
  .footer-inner,
  .legal-document-layout,
  .help-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .console-shell {
    min-height: auto;
    padding: 14px;
  }

  .network-map,
  .command-orbit {
    height: 250px;
    margin-top: 28px;
  }

  .float-card {
    position: relative;
    inset: auto;
    display: inline-flex;
    margin: 4px;
    animation: none;
  }

  .professional-footer {
    margin-top: 56px;
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
    gap: 26px;
    padding: 34px 0 28px;
  }

  .footer-brand-block {
    gap: 12px;
  }

  .footer-link-column {
    gap: 8px;
  }

  .footer-bottom-inner {
    width: min(100% - 32px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 0 18px;
  }

  .section,
  .process-section,
  .audience-section,
  .contact-section {
    padding: 78px 0;
  }

  .services-section {
    padding: 78px 14px;
  }

  .trust-architecture-card {
    padding: 24px;
  }

  .trust-pill-grid article {
    min-height: auto;
  }

  .systems-section {
    padding: 68px 14px;
  }

  .growth-engine-section,
  .case-section {
    padding: 78px 14px;
  }

  .case-carousel-section {
    width: min(100% - 28px, 1180px);
    padding-bottom: 78px;
  }

  .carousel-card {
    padding: 24px;
  }

  .industries-section,
  .ai-advantage-section {
    padding: 78px 0;
  }

  .systems-panel {
    padding: 24px;
  }

  .final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .engine-page-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 136px 0 54px;
  }

  .industries-page-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 136px 0 46px;
  }

  .data-page-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 136px 0 46px;
  }

  .email-page-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 136px 0 46px;
  }

  .automation-page-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 136px 0 46px;
  }

  .solutions-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .growth-engine-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .b2b-data-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .outreach-page-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .email-infra-page-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .automation-page-premium-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .marketing-page-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .search-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .social-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .digital-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .app-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .resources-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .industries-premium-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .case-premium-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .about-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .contact-strategy-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .pricing-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .lab-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .gtm-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .b2b-intel-dashboard,
  .outreach-command-center,
  .infra-command-center,
  .automation-command-center,
  .marketing-command-center,
  .search-command-center,
  .search-ai-engine,
  .social-command-center,
  .social-ai-engine,
  .social-platform-map,
  .digital-command-center,
  .digital-ai-engine,
  .app-command-center,
  .app-ai-engine,
  .resources-command-center,
  .consultation-command-center,
  .pricing-ecosystem-visual,
  .lab-ecosystem-visual,
  .gtm-command-center,
  .industry-ecosystem-visual,
  .case-analytics-visual,
  .about-global-visual,
  .about-tech-architecture,
  .segmentation-ui,
  .data-ai-map,
  .data-usecase-ecosystem,
  .outreach-channel-map,
  .personalization-preview,
  .auth-node-map,
  .scale-system-map,
  .infra-ai-visual,
  .workflow-ecosystem-map,
  .automation-scale-map,
  .orchestration-visual,
  .marketing-channel-map,
  .marketing-ai-visual {
    min-height: 390px;
  }

  .b2b-intel-dashboard,
  .outreach-command-center,
  .infra-command-center,
  .automation-command-center,
  .marketing-command-center,
  .search-command-center,
  .social-command-center,
  .social-platform-map,
  .digital-command-center,
  .app-command-center,
  .resources-command-center,
  .consultation-command-center,
  .pricing-ecosystem-visual,
  .lab-ecosystem-visual,
  .gtm-command-center,
  .industry-ecosystem-visual,
  .case-analytics-visual,
  .about-global-visual,
  .about-tech-architecture,
  .data-usecase-ecosystem,
  .outreach-channel-map,
  .scale-system-map,
  .workflow-ecosystem-map,
  .automation-scale-map,
  .marketing-channel-map {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 8px;
    padding: 22px;
  }

  .auth-node-map,
  .infra-ai-visual,
  .orchestration-visual,
  .marketing-ai-visual,
  .search-ai-engine,
  .social-ai-engine,
  .digital-ai-engine,
  .app-ai-engine {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 8px;
    padding: 22px;
  }

  .intel-card,
  .message-preview,
  .infra-panel,
  .automation-panel,
  .marketing-panel,
  .search-panel,
  .keyword-particle,
  .social-panel,
  .social-notification,
  .social-platform-map article,
  .digital-panel,
  .device-card,
  .app-panel,
  .app-node,
  .resources-panel,
  .consult-panel,
  .pricing-panel,
  .pricing-chip,
  .lab-panel,
  .lab-chip,
  .gtm-panel,
  .gtm-chip,
  .strategy-chip,
  .insight-chip,
  .industry-ecosystem-visual article,
  .case-kpi-card,
  .about-global-visual article,
  .about-tech-architecture article,
  .data-usecase-ecosystem article,
  .outreach-channel-map article,
  .scale-system-map article,
  .workflow-ecosystem-map article,
  .automation-scale-map article,
  .marketing-channel-map article,
  .auth-node-map span {
    position: relative;
    inset: auto !important;
    display: grid;
    margin: 4px;
    animation: none;
    transform: none !important;
  }

  .dashboard-topline,
  .command-topline,
  .infra-topline,
  .automation-topline,
  .marketing-topline,
  .search-topline,
  .social-topline,
  .digital-topline,
  .app-topline,
  .resources-topline,
  .consultation-topline,
  .pricing-topline,
  .lab-topline,
  .gtm-topline,
  .filter-console,
  .sequence-rail {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .intel-node,
  .intel-line,
  .message-trail,
  .reply-dot,
  .server-node,
  .route-line,
  .automation-node,
  .automation-path,
  .growth-line,
  .traffic-dot,
  .search-path,
  .social-path,
  .digital-path,
  .app-path,
  .resources-path,
  .consult-path,
  .pricing-path,
  .lab-path,
  .gtm-path,
  .industry-flow,
  .case-growth-line,
  .case-analytics-visual::before,
  .case-analytics-visual::after,
  .about-flow,
  .about-global-visual::before,
  .about-global-visual::after,
  .about-challenge-grid::before,
  .about-process-flow::before,
  .about-layer-map::before,
  .about-benefit-ecosystem::before,
  .industry-ecosystem-visual::before,
  .industry-ecosystem-visual::after,
  .outreach-channel-map::before,
  .outreach-channel-map::after,
  .scale-system-map::before,
  .scale-system-map::after,
  .workflow-ecosystem-map::before,
  .workflow-ecosystem-map::after,
  .automation-scale-map::before,
  .automation-scale-map::after,
  .marketing-channel-map::before,
  .marketing-channel-map::after,
  .data-usecase-ecosystem::before,
  .data-usecase-ecosystem::after,
  .data-challenge-grid::before,
  .data-workflow::before,
  .outreach-challenge-grid::before,
  .outreach-workflow::before,
  .outreach-automation-builder::before,
  .infra-problem-grid::before,
  .infra-workflow::before,
  .automation-problem-grid::before,
  .automation-lifecycle::before,
  .marketing-problem-grid::before,
  .marketing-lifecycle::before,
  .search-challenge-grid::before,
  .search-workflow::before,
  .social-challenge-grid::before,
  .social-workflow::before,
  .social-platform-map::before,
  .social-platform-map::after,
  .digital-challenge-grid::before,
  .digital-workflow::before,
  .app-challenge-grid::before,
  .app-workflow::before,
  .industry-challenge-grid::before,
  .industry-engine-flow::before,
  .case-framework-flow::before,
  .case-tech-architecture::before {
    display: none;
  }

  .data-usecase-ecosystem > div,
  .outreach-channel-map > div,
  .scale-system-map > div,
  .workflow-ecosystem-map > div,
  .automation-scale-map > div,
  .marketing-channel-map > div {
    width: 124px;
    height: 124px;
  }

  .deliverability-meter,
  .orchestration-core,
  .growth-meter,
  .industry-core,
  .auth-node-map strong,
  .infra-ai-visual strong,
  .orchestration-visual strong,
  .marketing-ai-visual strong {
    position: relative;
    inset: auto;
    width: 124px;
    height: 124px;
    margin: 6px;
    transform: none;
    animation: none;
  }

  .data-challenge-grid,
  .data-workflow,
  .outreach-challenge-grid,
  .outreach-workflow,
  .outreach-automation-builder,
  .infra-problem-grid,
  .infra-workflow,
  .automation-problem-grid,
  .automation-lifecycle,
  .marketing-problem-grid,
  .marketing-lifecycle,
  .search-challenge-grid,
  .search-workflow,
  .social-challenge-grid,
  .social-workflow,
  .digital-challenge-grid,
  .digital-workflow,
  .app-challenge-grid,
  .app-workflow,
  .industry-challenge-grid,
  .industry-engine-flow,
  .case-framework-flow,
  .about-challenge-grid,
  .about-process-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .case-framework-flow article,
  .case-tech-architecture article,
  .case-tech-architecture article:nth-child(2n),
  .about-process-flow article,
  .about-tech-architecture article {
    min-height: auto;
    transform: none;
  }

  .about-global-core,
  .about-tech-core,
  .search-visibility-meter,
  .search-ai-engine strong,
  .social-growth-meter,
  .social-ai-engine strong,
  .digital-growth-meter,
  .social-platform-map > div,
  .digital-ai-engine strong,
  .app-growth-meter,
  .app-ai-engine strong,
  .resources-core,
  .consult-core,
  .pricing-core,
  .lab-core,
  .gtm-core {
    position: relative;
    inset: auto;
    width: 132px;
    height: 132px;
    margin: 6px;
    transform: none;
    animation: none;
  }

  .feature-visual,
  .outreach-visual,
  .infra-feature-visual,
  .automation-feature-visual,
  .marketing-feature-visual,
  .search-feature-visual,
  .social-feature-visual,
  .digital-feature-visual,
  .app-feature-visual {
    min-height: 160px;
  }

  .segment-results {
    position: relative;
    inset: auto;
    margin-top: 20px;
  }

  .growth-ecosystem-map,
  .ai-brain-visual,
  .infra-layer-visual,
  .channel-ecosystem {
    min-height: 390px;
  }

  .growth-node,
  .infra-layer-visual article,
  .channel-ecosystem article {
    position: relative;
    inset: auto !important;
    display: inline-flex;
    margin: 6px;
    animation: none;
    transform: none !important;
  }

  .growth-ecosystem-map {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 6px;
    padding: 22px;
  }

  .growth-ecosystem-map::before,
  .growth-ecosystem-map::after,
  .ecosystem-radar,
  .data-stream,
  .channel-ecosystem::before,
  .channel-ecosystem::after,
  .automation-builder::before,
  .fragment-grid::before,
  .revenue-pipeline::before {
    display: none;
  }

  .ecosystem-hub,
  .channel-core {
    position: relative;
    inset: auto;
    width: 124px;
    height: 124px;
    margin: 6px;
    transform: none;
    animation: none;
  }

  .channel-ecosystem {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 8px;
    padding: 22px;
  }

  .infra-layer-visual {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: 6px;
    padding: 22px;
  }

  .infra-layer-visual strong,
  .infra-layer-visual span {
    position: relative;
    inset: auto;
    transform: none;
    animation: none;
  }

  .infra-layer-visual strong {
    width: 124px;
    height: 124px;
    font-size: 2.35rem;
  }

  .infra-layer-visual span {
    width: 100%;
    text-align: center;
  }

  .fragment-grid,
  .automation-builder {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .revenue-pipeline article {
    padding: 22px;
  }

  .revenue-pipeline .mini-dashboard {
    grid-column: auto;
  }

  .solution-detail-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .detail-visual {
    min-height: 390px;
  }

  .detail-visual article {
    position: relative;
    inset: auto !important;
    display: inline-grid;
    margin: 6px;
    animation: none;
  }

  .detail-visual span:not(.particle),
  .infra-map-visual strong,
  .infra-map-visual > span {
    display: none;
  }

  .solutions-ecosystem-visual {
    min-height: 430px;
  }

  .ecosystem-core {
    inset: 14px;
  }

  .ecosystem-node {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin: 6px;
    animation: none;
  }

  .ecosystem-orbit,
  .ecosystem-flow,
  .ecosystem-pulse {
    display: none;
  }

  .engine-journey-section,
  .engine-cta,
  .industry-card-section,
  .data-coverage-section,
  .segmentation-section,
  .accuracy-section,
  .data-sample-cta,
  .infra-section,
  .auth-section,
  .email-audience-section,
  .email-audit-cta,
  .automation-services-section,
  .automation-cta,
  .solutions-final-cta,
  .detail-final-cta,
  .case-page-hero,
  .case-library-section,
  .case-detail-main,
  .contact-page-hero,
  .contact-builder-section {
    width: min(100% - 28px, 1180px);
  }

  .industry-card-grid {
    grid-template-columns: 1fr;
  }

  .coverage-grid,
  .use-case-grid,
  .server-node-grid,
  .domain-card-grid,
  .reputation-grid,
  .email-audience-grid,
  .domain-status-grid,
  .automation-grid,
  .workflow-chain {
    grid-template-columns: 1fr;
  }

  .solution-module {
    min-height: auto;
    padding: 22px;
  }

  .module-visual {
    height: 160px;
  }

  .solutions-timeline {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .solutions-timeline::before {
    top: 24px;
    left: 18px;
    width: 3px;
    height: calc(100% - 24px);
  }

  .solutions-timeline article,
  .solutions-timeline article:nth-child(even) {
    min-height: auto;
    margin-top: 0;
  }

  .step-popover {
    position: static;
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }

  .benefit-cloud {
    min-height: auto;
  }

  .benefit-cloud::before {
    display: none;
  }

  .benefit-cloud article,
  .benefit-cloud article:nth-child(2n) {
    min-height: auto;
    transform: none;
  }

  .solutions-final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .detail-solution-panel,
  .detail-final-cta {
    padding: 24px;
  }

  .detail-process-flow {
    grid-template-columns: 1fr;
  }

  .detail-process-flow::before {
    display: none;
  }

  .detail-metrics-section {
    padding-top: 78px;
  }

  .workflow-chain::before {
    display: none;
  }

  .data-panel-stats {
    grid-template-columns: 1fr;
  }

  .premium-industry-card {
    min-height: auto;
    padding: 22px;
  }

  .premium-industry-card h3 {
    margin-top: 26px;
  }

  .industry-reveal {
    transform: none;
  }

  .journey-map {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .journey-map::before {
    top: 24px;
    left: 18px;
    width: 3px;
    height: calc(100% - 24px);
  }

  .journey-step,
  .journey-step:nth-child(even) {
    min-height: auto;
    margin-top: 0;
  }

  .journey-step::before {
    top: 28px;
    left: -17px;
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(94, 241, 255, 0.95), transparent);
    transform: none;
  }

  .journey-step span {
    margin-bottom: 22px;
  }

  .engine-cta {
    margin-bottom: 78px;
    padding: 24px;
  }

  .data-coverage-section,
  .segmentation-section {
    padding: 78px 0;
  }

  .data-use-section {
    padding: 78px 14px;
  }

  .deliverability-section {
    padding: 78px 14px;
  }

  .accuracy-section,
  .data-sample-cta {
    margin-top: 78px;
    padding: 24px;
  }

  .data-sample-cta {
    margin-bottom: 78px;
  }

  .infra-section,
  .auth-section,
  .email-audience-section {
    padding: 78px 0;
  }

  .email-audit-cta {
    margin-bottom: 78px;
    padding: 24px;
  }

  .automation-services-section {
    padding: 78px 0;
  }

  .workflow-chain-section {
    padding: 78px 14px;
  }

  .builder-canvas {
    height: auto;
    padding: 16px;
  }

  .builder-node {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin: 6px;
    animation: none;
  }

  .builder-line {
    display: none;
  }

  .automation-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .case-page-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .case-library-section,
  .case-detail-main {
    padding-bottom: 78px;
  }

  .case-detail-main {
    padding-top: 136px;
  }

  .contact-page-hero {
    min-height: auto;
    padding: 136px 0 46px;
  }

  .contact-builder-section {
    padding-bottom: 78px;
  }

  .consultation-experience-section,
  .strategy-intake-section,
  .consultation-next-section,
  .assessment-area-section,
  .consultation-benefits-section,
  .contact-trust-section,
  .contact-channel-section,
  .pricing-explain-section,
  .engagement-model-section,
  .pricing-process-section,
  .pricing-layer-section,
  .pricing-segment-section,
  .pricing-trust-section,
  .pricing-faq-section,
  .lab-future-section,
  .lab-innovation-section,
  .lab-research-section,
  .lab-orchestration-section,
  .lab-future-systems-section,
  .lab-tech-section,
  .lab-impact-section,
  .lab-resource-section,
  .gtm-challenge-section,
  .gtm-engine-section,
  .gtm-workflow-section,
  .gtm-signal-section,
  .gtm-ai-section,
  .gtm-usecase-section,
  .gtm-results-section,
  .gtm-service-section,
  .gtm-faq-section {
    padding: 78px 0;
  }

  .consultation-command-center,
  .pricing-ecosystem-visual,
  .lab-ecosystem-visual,
  .gtm-command-center {
    min-height: auto;
  }

  .consultation-topline,
  .pricing-topline,
  .lab-topline,
  .gtm-topline {
    grid-template-columns: 1fr;
  }

  .consult-panel,
  .pricing-panel,
  .lab-panel,
  .gtm-panel {
    width: min(100%, 250px);
  }

  .consultation-command-center::before,
  .consultation-command-center::after,
  .pricing-ecosystem-visual::before,
  .pricing-ecosystem-visual::after,
  .pricing-layer-architecture::before,
  .lab-ecosystem-visual::before,
  .lab-ecosystem-visual::after,
  .lab-layer-architecture::before,
  .gtm-command-center::before,
  .gtm-command-center::after,
  .gtm-signal-map::before {
    display: none;
  }

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

  .strategy-intake-form {
    padding: 20px;
  }

  .strategy-intake-form fieldset {
    padding: 18px;
  }

  .choice-grid label {
    min-height: 50px;
  }

  .consultation-benefit-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .consultation-next-flow {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .consultation-next-flow::before {
    top: 24px;
    left: 18px;
    width: 3px;
    height: calc(100% - 24px);
  }

  .consultation-next-flow article {
    min-height: auto;
  }

  .contact-final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .pricing-process-flow {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .lab-research-flow {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .gtm-workflow {
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 24px 0 0 34px;
  }

  .pricing-process-flow::before,
  .lab-research-flow::before,
  .gtm-workflow::before {
    top: 24px;
    left: 18px;
    width: 3px;
    height: calc(100% - 24px);
  }

  .pricing-process-flow article,
  .lab-research-flow article,
  .gtm-workflow article,
  .gtm-feature-grid article,
  .gtm-challenge-grid article,
  .gtm-ai-grid article,
  .gtm-usecase-grid article,
  .gtm-results-grid article,
  .gtm-service-grid a,
  .lab-innovation-grid article,
  .lab-future-grid article,
  .lab-tech-grid article,
  .lab-impact-grid article,
  .lab-system-grid article,
  .lab-resource-grid a,
  .engagement-model-card,
  .pricing-explain-grid article,
  .pricing-trust-grid article,
  .pricing-segment-grid article {
    min-height: auto;
  }

  .pricing-layer-architecture {
    min-height: auto;
    padding: 22px;
  }

  .lab-layer-architecture {
    min-height: auto;
    padding: 22px;
  }

  .gtm-signal-map {
    min-height: auto;
    padding: 22px;
  }

  .pricing-layer-architecture strong,
  .lab-layer-architecture strong,
  .gtm-signal-map strong {
    position: relative;
    inset: auto;
    width: 132px;
    height: 132px;
    margin: 0 auto 8px;
    transform: none;
  }

  .pricing-final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .lab-final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .gtm-final-cta {
    margin: 78px auto;
    padding: 24px;
  }

  .growth-request-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .strategy-panel {
    padding: 22px;
  }

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

@media (max-width: 1020px) {
  .enterprise-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .enterprise-header .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
  }
}

@media (max-width: 700px) {
  .enterprise-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr auto;
    padding: 10px;
  }

  .enterprise-header .nav-cta {
    display: none;
  }

  .mobile-drawer {
    top: 66px;
    right: 10px;
    left: 10px;
    max-height: calc(100svh - 78px);
    border-radius: 20px;
  }

  .mobile-menu-grid {
    grid-template-columns: 1fr;
  }
}

body .professional-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 72px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(90deg, rgba(94, 241, 255, 0.08), transparent 26%, rgba(124, 255, 178, 0.05) 72%, transparent),
    linear-gradient(180deg, #06101c 0%, #030712 100%);
  color: #dce8f7;
  padding: 0;
}

body .professional-footer .footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(140px, 0.72fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin: 0 auto;
  padding: 42px 0 34px;
}

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

body .professional-footer .footer-brand {
  display: inline-flex;
  width: fit-content;
  justify-content: flex-start;
  color: #ffffff;
  text-decoration: none;
}

body .professional-footer .footer-brand-block p {
  max-width: 330px;
  margin: 0;
  color: #a9b7c9;
  font-size: 0.94rem;
  line-height: 1.65;
}

body .professional-footer .footer-email {
  width: fit-content;
  color: #dce8f7;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

body .professional-footer .footer-email:hover {
  color: #ffffff;
}

body .professional-footer .footer-link-column {
  display: grid;
  gap: 9px;
}

body .professional-footer .footer-link-column h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

body .professional-footer .footer-link-column a {
  position: relative;
  width: fit-content;
  color: #b8c6d9;
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease;
}

body .professional-footer .footer-link-column a:hover {
  color: #ffffff;
}

body .professional-footer .footer-link-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

body .professional-footer .footer-link-column a:hover::after {
  transform: scaleX(1);
}

body .professional-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
}

body .professional-footer .footer-social-link {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(184, 198, 217, 0.22);
  border-radius: 999px;
  color: #dce8f7;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

body .professional-footer .footer-social-link:hover {
  border-color: rgba(94, 241, 255, 0.45);
  color: #ffffff;
  background: rgba(94, 241, 255, 0.09);
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.12);
  transform: translateY(-1px);
}

body .professional-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

body .professional-footer .footer-bottom-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 16px 0 18px;
}

body .professional-footer .footer-bottom-inner p {
  max-width: none;
  margin: 0;
  color: #8d9bb0;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  body .professional-footer .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 44px;
  }

  body .professional-footer .footer-brand-block p {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  body .professional-footer {
    margin-top: 56px;
  }

  body .professional-footer .footer-inner {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 28px;
  }

  body .professional-footer .footer-bottom-inner {
    width: min(100% - 32px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 0 18px;
  }
}
