:root {
  --font: "Google Sans", "Google Sans Text", Roboto, Arial, sans-serif;
  --bg: #f8fbff;
  --paper: #ffffff;
  --paper-soft: #f5f8fd;
  --ink: #202124;
  --ink-2: #3c4043;
  --muted: #5f6368;
  --line: rgba(17, 24, 39, 0.10);
  --line-strong: rgba(17, 24, 39, 0.16);
  --blue: #1a73e8;
  --blue-deep: #174ea6;
  --mint: #34a853;
  --amber: #fbbc04;
  --violet: #7b61ff;
  --rose: #ea4335;
  --shadow-sm: 0 2px 8px rgba(60, 64, 67, 0.12);
  --shadow: 0 12px 30px rgba(60, 64, 67, 0.14);
  --shadow-lg: 0 20px 54px rgba(60, 64, 67, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --wrap: 1200px;
  --pad: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mobile-menu-open {
  overflow: hidden;
}

body::before {
  display: none;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(66, 133, 244, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.wrap,
.nav-wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-menu-open {
  z-index: 500;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(26, 43, 71, 0.08);
}

.nav-wrap {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  max-width: none;
  margin: 0;
  padding-left: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2vw, 28px);
  gap: clamp(16px, 2.4vw, 30px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.clNavBrand {
  justify-self: start;
  max-width: min(34vw, 300px);
}

.brand .clBrandText {
  display: block;
  overflow: hidden;
  color: #3c4043;
  font-size: 13.5px;
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clBrandAccent {
  background: linear-gradient(135deg, #4f7fff 0%, #7a5cff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #4f7fff;
  -webkit-text-fill-color: transparent;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 40px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a,
.site-footer nav a,
.nav-link-login,
.clConsoleLink {
  color: #5f6368;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer nav a:hover,
.nav-link-login:hover,
.clConsoleLink:hover {
  color: var(--blue-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.clConsoleLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.clConsoleIcon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  box-shadow: none;
  font-size: 14px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(26, 115, 232, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.08);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover {
  border-color: rgba(26, 115, 232, 0.22);
  box-shadow: 0 10px 26px rgba(60, 64, 67, 0.10);
}

.menu-toggle:active {
  transform: scale(0.98);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #3c4043;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 520;
  display: none;
  flex-direction: column;
  width: min(84vw, 360px);
  height: 100dvh;
  padding: 16px 20px max(18px, env(safe-area-inset-bottom));
  border-left: 1px solid rgba(26, 115, 232, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 255, 0.94) 100%);
  box-shadow: -24px 0 54px rgba(31, 45, 76, 0.16);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  transform: translateX(calc(100% + 28px));
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
  overscroll-behavior: contain;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 510;
  display: none;
  border: 0;
  background: rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mobile-drawer-brand {
  min-width: 0;
  color: #3c4043;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.mobile-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(26, 115, 232, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: #3c4043;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.mobile-drawer-close:hover {
  border-color: rgba(26, 115, 232, 0.24);
  background: #fff;
  color: var(--blue-deep);
}

.mobile-drawer-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: #3c4043;
  font-size: 16px;
  font-weight: 560;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .clConsoleLink {
  justify-content: flex-start;
  gap: 8px;
}

.mobile-nav .mobile-sales-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  width: 100%;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  font-weight: 760;
  box-shadow: 0 12px 24px rgba(26, 115, 232, 0.16);
}

.mobile-nav .mobile-sales-link:hover {
  color: #fff;
}

.desktop-nav a[aria-current="page"] {
  color: var(--blue-deep);
}

.home-hero,
.page-hero {
  position: relative;
  padding: 72px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-bottom: 1px solid #e8eaed;
}

.home-hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: center;
}

.home-hero-copy,
.page-hero-grid > div {
  min-width: 0;
}

.home-hero-media,
.page-hero-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
  min-height: 500px;
  margin: 0;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-hero-media > img,
.page-hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 30px 0 34px;
  isolation: isolate;
  border-bottom: 1px solid #e8eaed;
  background:
    radial-gradient(ellipse at 74% 42%, rgba(232, 240, 254, 0.82) 0%, rgba(232, 240, 254, 0.24) 34%, transparent 62%),
    radial-gradient(ellipse at 20% 80%, rgba(230, 244, 234, 0.64) 0%, rgba(230, 244, 234, 0.18) 32%, transparent 60%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f8fbff 100%);
  overflow: hidden;
}

.journey-hero-inner {
  min-height: calc(100svh - 136px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  align-content: center;
}

.journey-hero-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.journey-hero-copy h1 {
  max-width: 1040px;
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
}

.home-hero.journey-hero .journey-hero-copy {
  justify-content: center;
  padding-top: clamp(18px, 4vh, 46px);
  text-align: center;
}

.home-hero.journey-hero .journey-hero-copy h1 {
  margin: 0 auto;
}

.journey-hero-copy .hero-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.hero-login-cta {
  gap: 8px;
  min-height: 40px;
  padding: 0 22px;
  border-color: rgba(26, 115, 232, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hero-login-cta:hover {
  border-color: rgba(26, 115, 232, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(60, 64, 67, 0.08);
}

.journey-hero-visual {
  position: relative;
  min-width: 0;
  height: clamp(460px, 56vh, 610px);
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.journey-hero-visual::before {
  content: "";
  position: absolute;
  inset: 2% 0 0;
  border-radius: 44px;
  background:
    linear-gradient(90deg, rgba(218, 220, 224, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(218, 220, 224, 0.22) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  opacity: 0.42;
  pointer-events: none;
}

.journey-hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% 4%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 240, 254, 0.26), rgba(230, 244, 234, 0.22), rgba(243, 237, 255, 0.22));
  filter: blur(34px);
  opacity: 0.8;
  pointer-events: none;
  animation: fieldDrift 18s ease-in-out infinite;
}

.journey-canvas {
  position: absolute;
  inset: 0;
}

.journey-thread {
  position: absolute;
  inset: -1% -2% 2%;
  z-index: 2;
  width: 104%;
  height: 100%;
  overflow: visible;
}

.journey-grid-line {
  fill: none;
  stroke: rgba(218, 220, 224, 0.58);
  stroke-width: 1;
  stroke-dasharray: 4 14;
}

.journey-ribbon,
.journey-path-active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-ribbon {
  stroke: url("#softRibbon");
  stroke-width: 76;
  opacity: 0.78;
}

.journey-path-active {
  stroke: url("#journeyStroke");
  stroke-width: 3.5;
  stroke-dasharray: 18 24;
  opacity: 0.86;
  filter: url("#journeyGlow");
  animation: journeyDash 13s linear infinite;
}

.journey-packet {
  opacity: 0.84;
  filter: drop-shadow(0 8px 14px rgba(26, 115, 232, 0.20));
}

.field-wash {
  fill: url("#fieldGlow");
  opacity: 0.62;
  transform-origin: center;
  animation: fieldBreath 16s ease-in-out infinite;
}

.wash-two {
  animation-delay: -6s;
}

.ambient-thread {
  fill: none;
  stroke: rgba(26, 115, 232, 0.18);
  stroke-width: 1.4;
  stroke-dasharray: 2 14;
  stroke-linecap: round;
  animation: journeyDash 24s linear infinite;
}

.thread-two {
  stroke: rgba(52, 168, 83, 0.18);
  animation-duration: 28s;
  animation-direction: reverse;
}

.flow-waypoint {
  animation: waypointBreath 13s ease-in-out infinite;
}

.flow-waypoint > circle:first-child {
  fill: rgba(255, 255, 255, 0.56);
  stroke: rgba(210, 227, 252, 0.92);
  stroke-width: 1.2;
  filter: drop-shadow(0 12px 20px rgba(60, 64, 67, 0.12));
}

.flow-waypoint .waypoint-core {
  fill: var(--blue);
  stroke: #fff;
  stroke-width: 4;
}

.flow-waypoint path {
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.68;
}

.flow-waypoint text {
  fill: var(--ink-2);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
}

.wp-inquiry { animation-delay: 1.4s; }
.wp-aura { animation-delay: 2.8s; }
.wp-portal { animation-delay: 4.2s; }
.wp-nova { animation-delay: 5.6s; }
.wp-visit { animation-delay: 7s; }
.wp-booking { animation-delay: 8.4s; }

.wp-aura .waypoint-core,
.wp-visit .waypoint-core {
  fill: var(--mint);
}

.wp-nova .waypoint-core {
  fill: var(--amber);
}

.wp-portal .waypoint-core {
  fill: var(--violet);
}

.wp-booking .waypoint-core {
  fill: var(--blue-deep);
}

.helix-ribbon {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 4;
  width: min(360px, calc(100% - 56px));
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #d2e3fc;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.helix-ribbon::before {
  content: "";
  position: absolute;
  inset: auto -30% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--mint), transparent);
  animation: helixSweep 5.8s ease-in-out infinite;
}

.helix-ribbon img {
  grid-row: span 2;
  width: 46px;
  height: 42px;
  object-fit: contain;
}

.helix-ribbon span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.helix-ribbon small {
  color: var(--muted);
  font-size: 12px;
}

.helix-current {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: max-content;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.helix-current::before {
  content: "";
  position: absolute;
  inset: auto -30% 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--mint), transparent);
  animation: helixSweep 5.8s ease-in-out infinite;
}

.helix-current img {
  grid-row: span 2;
  width: 42px;
  height: 38px;
  object-fit: contain;
}

.helix-current span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.helix-current small {
  color: var(--muted);
  font-size: 11px;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.flow-micro-label {
  position: absolute;
  z-index: 3;
  color: rgba(60, 64, 67, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  animation: labelFloat 12s ease-in-out infinite;
}

.micro-website { left: 9%; top: 26%; }
.micro-engage { left: 25%; bottom: 22%; animation-delay: -3s; }
.micro-experience { right: 31%; top: 28%; animation-delay: -6s; }
.micro-close { right: 9%; bottom: 28%; animation-delay: -9s; }

.intent-workspace-hero::before,
.intent-workspace-hero::after {
  z-index: 0;
}

.intent-canvas {
  position: absolute;
  inset: -2% -3%;
  z-index: 1;
}

.intent-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.intent-stage {
  transform-box: view-box;
  transform-origin: 50% 52%;
}

.intent-halo {
  fill: url("#intentHalo");
  opacity: 0.76;
  transform-origin: center;
  animation: fieldBreath 15s ease-in-out infinite;
}

.halo-two {
  animation-delay: -5s;
}

.blur-field {
  filter: url("#cinemaBlur");
  opacity: 0.48;
  transform-origin: center;
  animation: fieldDrift 18s ease-in-out infinite;
}

.field-blue {
  fill: rgba(26, 115, 232, 0.22);
}

.field-mint {
  fill: rgba(52, 168, 83, 0.18);
  animation-delay: -6s;
}

.field-violet {
  fill: rgba(123, 97, 255, 0.18);
  animation-delay: -11s;
}

.workspace-layer {
  animation: workspaceFloat 14s ease-in-out infinite;
  transform-origin: center;
}

.layer-front {
  animation-delay: -4s;
}

.workspace-layer rect {
  fill: url("#workspaceSurface");
  stroke: rgba(91, 108, 255, 0.14);
  stroke-width: 1;
}

.workspace-layer path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.22);
  stroke-width: 9;
  stroke-linecap: round;
}

.workspace-layer circle {
  fill: rgba(232, 240, 254, 0.62);
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 12;
}

.intent-current {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.current-broad {
  stroke: url("#helixCurrent");
  stroke-width: 54;
  opacity: 0.58;
}

.current-core {
  stroke: url("#helixCurrent");
  stroke-width: 4;
  stroke-dasharray: 120 520;
  stroke-dashoffset: 0;
  opacity: 0.82;
  animation: currentSweep 12s linear infinite;
}

.intent-particle {
  opacity: 0.74;
  filter: drop-shadow(0 10px 18px rgba(26, 115, 232, 0.18));
}

.signal-cluster,
.voice-signal,
.ciq-signal,
.booking-pulse {
  opacity: 0.76;
  animation: signalBreathe 12s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.scout-signal { animation-delay: -1s; }
.aura-signal { animation-delay: -2s; }
.portal-signal { animation-delay: -4s; }
.voice-signal { animation-delay: -6s; }
.ciq-signal { animation-delay: -7s; }
.visit-signal { animation-delay: -8s; }
.booking-pulse { animation-delay: -10s; }

.signal-cluster circle,
.ciq-signal circle,
.booking-pulse circle:first-child {
  fill: rgba(255, 255, 255, 0.36);
  stroke: rgba(210, 227, 252, 0.5);
  stroke-width: 1;
  filter: drop-shadow(0 18px 26px rgba(60, 64, 67, 0.10));
}

.signal-cluster path,
.ciq-signal path,
.booking-pulse path {
  fill: none;
  stroke: rgba(23, 78, 166, 0.66);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aura-signal path {
  stroke: rgba(52, 168, 83, 0.68);
}

.portal-signal path {
  stroke: rgba(123, 97, 255, 0.62);
}

.visit-signal path {
  stroke: rgba(26, 115, 232, 0.62);
}

.ciq-signal circle {
  fill: rgba(243, 237, 255, 0.44);
  stroke: rgba(123, 97, 255, 0.28);
}

.ciq-signal path {
  stroke: rgba(123, 97, 255, 0.70);
}

.voice-signal use {
  fill: none;
  stroke: rgba(251, 188, 4, 0.70);
  stroke-width: 5;
  stroke-linecap: round;
}

.voice-signal circle {
  fill: rgba(251, 188, 4, 0.72);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 8;
}

.voice-signal text,
.signal-cluster text,
.ciq-signal text,
.visit-signal text {
  fill: rgba(60, 64, 67, 0.70);
  font-family: var(--font);
  font-size: 19px;
  font-weight: 600;
}

.booking-pulse circle:first-child {
  fill: rgba(230, 244, 234, 0.58);
  stroke: rgba(52, 168, 83, 0.28);
  transform-box: fill-box;
  transform-origin: center;
  animation: bookingResolve 4.8s ease-in-out infinite;
}

.booking-pulse circle:nth-child(2) {
  fill: rgba(52, 168, 83, 0.82);
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 8;
}

.booking-pulse path {
  stroke: #fff;
  stroke-width: 5;
}

.workspace-core {
  position: absolute;
  left: 53%;
  top: 53%;
  z-index: 4;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.workspace-core::before {
  content: "";
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(232, 240, 254, 0.42) 44%, transparent 72%);
  filter: blur(4px);
  animation: fieldBreath 8s ease-in-out infinite;
}

.workspace-core img {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 49px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(60, 64, 67, 0.16));
}

.workspace-core span {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(26, 115, 232, 0.24);
  animation: bookingResolve 5.2s ease-in-out infinite;
}

.journey-stage {
  position: absolute;
  z-index: 3;
  width: 174px;
  min-height: 124px;
  padding: 14px;
  border: 1px solid rgba(218, 220, 224, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: journeyStage 13s ease-in-out infinite;
}

.journey-stage span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-stage strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.stage-website { left: 4%; top: 31%; animation-delay: 0s; }
.stage-inquiry { left: 16%; top: 7%; animation-delay: 1.5s; }
.stage-whatsapp { left: 30%; bottom: 8%; animation-delay: 3s; }
.stage-portal { left: 45%; top: 8%; animation-delay: 4.5s; }
.stage-voice { right: 29%; bottom: 10%; animation-delay: 6s; }
.stage-visit { right: 14%; top: 10%; animation-delay: 7.5s; }
.stage-booking { right: 4%; top: 38%; animation-delay: 9s; }

.stage-ui {
  position: relative;
  height: 38px;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  background: #f8fbff;
  overflow: hidden;
}

.stage-ui i,
.stage-ui b {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.web-ui i {
  left: 12px;
  right: 12px;
  height: 5px;
  background: #d2e3fc;
}

.web-ui i:nth-child(1) { top: 9px; right: 42px; }
.web-ui i:nth-child(2) { top: 18px; right: 26px; background: #e6f4ea; }
.web-ui i:nth-child(3) { top: 27px; right: 62px; background: #fef7e0; }

.intent-ui b {
  left: 13px;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.13);
}

.intent-ui i {
  left: 42px;
  right: 12px;
  top: 16px;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.chat-ui i {
  height: 8px;
  background: #e6f4ea;
}

.chat-ui i:nth-child(1) { left: 12px; right: 38px; top: 8px; }
.chat-ui i:nth-child(2) { left: 38px; right: 12px; top: 20px; background: #e8f0fe; }
.chat-ui i:nth-child(3) { left: 12px; right: 54px; top: 31px; background: #e6f4ea; }

.portal-ui b {
  left: 12px;
  top: 9px;
  width: 30px;
  height: 20px;
  border-radius: 7px;
  background: #e8f0fe;
}

.portal-ui i {
  left: 52px;
  right: 12px;
  height: 6px;
  background: #dadce0;
}

.portal-ui i:nth-child(2) { top: 10px; }
.portal-ui i:nth-child(3) { top: 23px; right: 42px; background: #d2e3fc; }

.voice-ui b {
  left: 14px;
  top: 8px;
  width: 22px;
  height: 22px;
  border: 5px solid #fef7e0;
  border-top-color: var(--amber);
  border-radius: 50%;
}

.voice-ui i {
  left: 48px;
  right: 14px;
  top: 18px;
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--violet));
}

.visit-ui i {
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #e8f0fe;
}

.visit-ui i:nth-child(1) { left: 12px; }
.visit-ui i:nth-child(2) { left: 42px; background: #e6f4ea; }
.visit-ui b {
  right: 14px;
  top: 15px;
  width: 52px;
  height: 8px;
  background: #d2e3fc;
}

.booking-ui b {
  left: 14px;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
}

.booking-ui b::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.booking-ui i {
  left: 48px;
  right: 14px;
  top: 17px;
  height: 7px;
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.orchestration-visual {
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    linear-gradient(90deg, rgba(218, 220, 224, 0.48) 1px, transparent 1px),
    linear-gradient(180deg, rgba(218, 220, 224, 0.48) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
}

.system-map {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.system-lines {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
  opacity: 0.78;
}

.system-lines path {
  fill: none;
  stroke: url("#systemStroke");
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  opacity: 0.42;
  animation: dashFlow 18s linear infinite;
}

.system-note {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 2;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid #d2e3fc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
}

.engine-core,
.product-node,
.control-preview {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(218, 220, 224, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.engine-core {
  top: 50%;
  left: 50%;
  width: 218px;
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 22px;
  border-color: rgba(26, 115, 232, 0.28);
  border-radius: 20px;
  text-align: center;
  transform: translate(-50%, -52%);
}

.engine-logo {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border: 1px solid #d2e3fc;
  border-radius: 18px;
  background: #f8fbff;
}

.engine-logo img {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.engine-core span,
.product-node span {
  display: block;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.engine-core strong,
.product-node strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

.engine-core strong {
  margin: 3px 0 8px;
  font-size: 20px;
}

.engine-core small {
  max-width: 164px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-node {
  width: 170px;
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 18px 18px 48px;
  border-radius: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-node:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 115, 232, 0.32);
  box-shadow: var(--shadow);
}

.product-node i {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12);
}

.product-node strong {
  font-size: 15px;
}

.node-leads { top: 100px; left: 32px; }
.node-crm { top: 252px; left: 24px; }
.node-cx { bottom: 42px; left: 86px; }
.node-aura { top: 94px; right: 32px; }
.node-nova { top: 252px; right: 24px; }
.node-rm { bottom: 42px; right: 74px; }

.node-crm i,
.node-aura i {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.13);
}

.node-cx i,
.node-rm i {
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.12);
}

.node-nova i {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(251, 188, 4, 0.16);
}

.control-preview {
  left: 50%;
  bottom: 22px;
  width: 300px;
  padding: 14px;
  border-radius: 18px;
  transform: translateX(-50%);
}

.control-preview-head,
.dashboard-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8eaed;
}

.control-preview-head span,
.dashboard-head strong {
  margin-right: auto;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.control-preview-head b,
.dashboard-head span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
}

.control-row {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.control-row small {
  color: var(--muted);
  font-size: 12px;
}

.control-row em {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.system-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: min(390px, calc(100% - 44px));
  padding: 12px 16px;
  border: 1px solid #d2e3fc;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-band {
  position: relative;
  padding: 108px 0 96px;
  background: #fff;
}

.challenge-band {
  isolation: isolate;
  overflow: hidden;
  background: #fff;
}

.challenge-band::before {
  display: none;
}

.challenge-editorial {
  position: relative;
  z-index: 1;
}

.challenge-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.challenge-heading {
  max-width: 860px;
}

.challenge-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 54px;
  line-height: 1.05;
}

.challenge-abstract-art {
  position: relative;
  min-width: 0;
  margin: 0;
}

.challenge-abstract-art svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.demand-art-grid path {
  fill: none;
  stroke: rgba(218, 220, 224, 0.44);
  stroke-width: 1;
}

.demand-leak-lines path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.24);
  stroke-width: 2;
  stroke-dasharray: 7 12;
  stroke-linecap: round;
}

.demand-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demand-flow-one {
  stroke: url("#demandSignalBlue");
  stroke-width: 16;
  opacity: 0.58;
}

.demand-flow-two {
  stroke: url("#demandSignalViolet");
  stroke-width: 13;
  opacity: 0.50;
}

.demand-flow-three {
  stroke: rgba(52, 168, 83, 0.46);
  stroke-width: 4;
  stroke-dasharray: 38 120;
  animation: demandSweep 9s linear infinite;
}

.demand-capture circle:first-child {
  fill: #fff;
  stroke: rgba(210, 227, 252, 0.90);
  stroke-width: 1;
}

.demand-capture circle:nth-child(2) {
  fill: rgba(232, 240, 254, 0.74);
  stroke: #fff;
  stroke-width: 9;
}

.demand-capture path,
.demand-revenue-pulse path {
  fill: none;
  stroke: var(--blue-deep);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demand-nodes circle {
  fill: #fff;
  stroke: rgba(26, 115, 232, 0.36);
  stroke-width: 4;
  animation: demandNodePulse 8s ease-in-out infinite;
}

.demand-nodes circle:nth-child(2),
.demand-nodes circle:nth-child(5) {
  stroke: rgba(52, 168, 83, 0.36);
  animation-delay: -2s;
}

.demand-nodes circle:nth-child(3) {
  stroke: rgba(123, 97, 255, 0.34);
  animation-delay: -4s;
}

.demand-revenue-pulse circle {
  fill: #fff;
  stroke: rgba(52, 168, 83, 0.44);
  stroke-width: 2;
  filter: drop-shadow(0 16px 24px rgba(60, 64, 67, 0.10));
  animation: demandRevenuePulse 6s ease-in-out infinite;
}

.demand-revenue-pulse path {
  stroke: var(--mint);
}

.challenge-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.challenge-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(218, 220, 224, 0.72);
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 18px 44px rgba(60, 64, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.challenge-card::before {
  display: none;
}

.challenge-card::after {
  display: none;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 227, 252, 0.82);
  box-shadow:
    0 24px 58px rgba(60, 64, 67, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.challenge-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 44px;
  color: rgba(60, 64, 67, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.challenge-card h3,
.challenge-card strong,
.challenge-card p {
  position: relative;
  z-index: 1;
}

.challenge-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
}

.challenge-card strong {
  display: block;
  max-width: 260px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 500;
}

.challenge-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.page-section {
  padding: 96px 0;
  background: #fff;
}

.home-opportunity {
  background:
    radial-gradient(ellipse at 20% 18%, rgba(232, 240, 254, 0.62) 0%, rgba(232, 240, 254, 0.18) 33%, transparent 58%),
    radial-gradient(ellipse at 84% 70%, rgba(243, 237, 255, 0.58) 0%, rgba(243, 237, 255, 0.18) 34%, transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.gateway-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.gateway-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.gateway-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
}

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

.gateway-card,
.detail-card {
  display: block;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 48px rgba(60, 64, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gateway-visual {
  position: relative;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(210, 227, 252, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 26%, rgba(232, 240, 254, 0.88), transparent 34%),
    radial-gradient(circle at 76% 78%, rgba(230, 244, 234, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 255, 0.68));
  overflow: hidden;
}

.gateway-visual i,
.gateway-visual b {
  position: absolute;
  display: block;
}

.platform-mini i {
  width: 62px;
  height: 28px;
  border: 1px solid #d2e3fc;
  border-radius: 8px;
  background: #fff;
}

.platform-mini i:nth-child(1) { top: 18px; left: 18px; }
.platform-mini i:nth-child(2) { top: 46px; left: 92px; }
.platform-mini i:nth-child(3) { top: 18px; right: 18px; }

.platform-mini b {
  left: 48px;
  right: 48px;
  top: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.agents-mini i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f0fe;
  box-shadow: inset 0 0 0 1px #d2e3fc;
}

.agents-mini i:nth-child(1) { top: 18px; left: 28px; }
.agents-mini i:nth-child(2) { top: 18px; right: 28px; background: #e6f4ea; }
.agents-mini i:nth-child(3) { bottom: 18px; left: 72px; background: #fef7e0; }
.agents-mini i:nth-child(4) { bottom: 18px; right: 72px; background: #f3edff; }

.agents-mini b {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid #d2e3fc;
  border-radius: 12px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.journey-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.journey-mini i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #d2e3fc;
}

.journey-mini i:nth-child(2) { background: var(--mint); }
.journey-mini i:nth-child(3) { background: var(--amber); }
.journey-mini i:nth-child(4) { background: var(--violet); }
.journey-mini i:nth-child(5) { background: var(--blue-deep); }

.journey-mini::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--amber), var(--violet));
}

.gateway-card:hover,
.detail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(210, 227, 252, 0.88);
  box-shadow:
    0 24px 58px rgba(60, 64, 67, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gateway-card span,
.detail-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.gateway-card p,
.detail-card p {
  margin: 0;
}

.page-hero.center {
  text-align: center;
}

.narrow {
  max-width: 900px;
}

.page-hero.center .hero-lead,
.page-hero.center h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  padding: 48px 0 28px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 5px rgba(66, 133, 244, 0.13);
}

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

h1 {
  max-width: 670px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 60px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: var(--shadow-sm);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: #dadce0;
  box-shadow: none;
}

.button-secondary.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.pain-grid span,
.trust-list span,
.control-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 720;
}

.hero-visual,
.image-panel {
  position: relative;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual > img,
.image-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual {
  min-height: 540px;
}

.hero-visual::after,
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 15, 30, 0.28));
}

.hero-visual-card {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-visual-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-visual-card strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.card-live {
  top: 22px;
  left: 22px;
}

.card-action {
  right: 22px;
  bottom: 22px;
}

.signal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.signal-strip i {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  animation: pulseLine 2.4s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 0 auto;
}

.split-layout,
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-layout.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 560px;
}

.problem-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(242, 247, 255, 0.92));
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.pain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.image-panel {
  min-height: 480px;
}

.image-panel figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.intelligence-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 88px minmax(0, 1.25fr);
  gap: 18px;
  align-items: center;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(232, 240, 254, 0.76) 0%, rgba(232, 240, 254, 0.18) 44%, transparent 68%),
    radial-gradient(ellipse at 82% 72%, rgba(230, 244, 234, 0.70) 0%, rgba(230, 244, 234, 0.16) 42%, transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 255, 0.70));
  box-shadow:
    0 28px 78px rgba(60, 64, 67, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.intelligence-visual::after {
  display: none;
}

.fragment-column {
  display: grid;
  gap: 12px;
}

.fragment-column span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(60, 64, 67, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.fragment-column span:nth-child(odd) {
  transform: translateX(10px);
}

.fragment-column i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dadce0;
  box-shadow: 0 0 0 4px rgba(218, 220, 224, 0.35);
}

.event-spine {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 18px;
  color: var(--blue-deep);
}

.event-spine::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(26, 115, 232, 0.10), rgba(26, 115, 232, 0.58), rgba(52, 168, 83, 0.14));
  transform: translateX(-50%);
}

.event-spine b {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(210, 227, 252, 0.70);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 32px rgba(60, 64, 67, 0.10);
}

.event-spine b::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.event-spine strong,
.event-spine small {
  position: relative;
  z-index: 1;
  display: block;
  padding: 2px 6px;
  background: rgba(248, 251, 255, 0.74);
  text-align: center;
}

.event-spine strong {
  font-size: 13px;
  font-weight: 700;
}

.event-spine small {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-shell {
  min-height: 330px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(60, 64, 67, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dashboard-widgets {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  padding-top: 14px;
}

.widget {
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(218, 220, 224, 0.56);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.widget small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.widget i,
.widget p {
  display: block;
  height: 9px;
  margin: 10px 0 0;
  border-radius: 999px;
  background: #e8f0fe;
}

.widget i:nth-of-type(2) {
  background: #e6f4ea;
}

.widget i:nth-of-type(3) {
  background: #fef7e0;
}

.widget b {
  display: block;
  width: 72px;
  height: 72px;
  margin: 2px auto 0;
  border: 10px solid #e8f0fe;
  border-top-color: var(--blue);
  border-radius: 50%;
}

.widget em {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(26, 115, 232, 0.22) 47%, rgba(26, 115, 232, 0.22) 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(26, 115, 232, 0.22) 47%, rgba(26, 115, 232, 0.22) 53%, transparent 54%),
    #f8fbff;
  box-shadow: inset 0 0 0 1px #d2e3fc;
}

.widget.large,
.widget.wide {
  grid-column: span 2;
}

.widget.wide {
  min-height: 124px;
}

.widget.wide p:nth-of-type(1) { width: 86%; }
.widget.wide p:nth-of-type(2) { width: 68%; background: #e6f4ea; }
.widget.wide p:nth-of-type(3) { width: 78%; background: #f3edff; }

.platform-hero-visual,
.agent-constellation-visual,
.about-hero-visual,
.login-product-visual,
.journey-handoff-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.95)),
    linear-gradient(90deg, rgba(218, 220, 224, 0.45) 1px, transparent 1px),
    linear-gradient(180deg, rgba(218, 220, 224, 0.45) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.platform-board,
.agent-system,
.about-principles,
.login-product-shell,
.handoff-board {
  position: absolute;
  inset: 28px;
}

.platform-board {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 18px;
  border: 1px solid #dadce0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.board-header,
.control-stack-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.board-header strong,
.control-stack-head strong {
  margin-right: auto;
}

.board-header span,
.control-stack-head span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dadce0;
}

.platform-rails {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.platform-rails::before,
.platform-rails::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.28), rgba(52, 168, 83, 0.32));
}

.platform-rails::before {
  left: 28%;
  right: 53%;
}

.platform-rails::after {
  left: 53%;
  right: 28%;
}

.rail-stack {
  display: grid;
  gap: 12px;
}

.rail-stack small,
.platform-metrics span,
.control-kpis b {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rail-stack b,
.platform-metrics span {
  display: block;
  padding: 13px 14px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.rail-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 178px;
  padding: 18px;
  border: 1px solid #d2e3fc;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.rail-core img {
  width: 56px;
  height: 50px;
  object-fit: contain;
}

.rail-core strong,
.agent-orbit-core strong,
.principle-card strong,
.login-card strong,
.handoff-center strong {
  color: var(--ink);
  font-weight: 500;
}

.rail-core span,
.agent-orbit-core small,
.principle-card span,
.login-card span,
.handoff-center span {
  color: var(--muted);
  font-size: 13px;
}

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

.platform-metrics span {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: none;
}

.platform-metrics i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.14);
}

.agent-system {
  border-radius: 20px;
  overflow: hidden;
}

.agent-system::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 240, 254, 0.76), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 251, 255, 0.82));
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(26, 115, 232, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitDrift 18s linear infinite;
}

.orbit-one {
  width: 360px;
  height: 250px;
}

.orbit-two {
  width: 500px;
  height: 350px;
  border-color: rgba(52, 168, 83, 0.24);
  animation-duration: 24s;
  animation-direction: reverse;
}

.agent-orbit-core,
.agent-node {
  position: absolute;
  z-index: 2;
  border: 1px solid #dadce0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.agent-orbit-core {
  left: 50%;
  top: 50%;
  width: 160px;
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-color: #d2e3fc;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}

.agent-orbit-core img {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.agent-node {
  width: 136px;
  min-height: 74px;
  padding: 14px;
  border-radius: 16px;
}

.agent-node small,
.agent-card small,
.blog-card span,
.outcome-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.agent-node b {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
}

.orbit-scout { left: 7%; top: 18%; }
.orbit-aura { right: 8%; top: 16%; }
.orbit-nova { right: 5%; top: 54%; }
.orbit-vaia { right: 24%; bottom: 7%; }
.orbit-scribe { left: 23%; bottom: 7%; }
.orbit-ciq { left: 5%; top: 55%; }

.agent-glyph,
.blog-glyph {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border: 1px solid #d2e3fc;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    linear-gradient(135deg, rgba(26, 115, 232, 0.12), transparent);
  box-shadow: var(--shadow-sm);
}

.agent-glyph::before,
.agent-glyph::after,
.blog-glyph::before,
.blog-glyph::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.agent-glyph::before {
  inset: 18px;
  border: 2px solid rgba(26, 115, 232, 0.28);
}

.agent-glyph::after {
  width: 18px;
  height: 18px;
  right: 14px;
  top: 14px;
  background: var(--mint);
}

.agent-glyph i {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.glyph-aura::after { background: var(--mint); }
.glyph-helix::after { background: var(--violet); }
.glyph-nova::after { background: var(--amber); }
.glyph-vaia::after { background: #00acc1; }
.glyph-scribe::after { background: #5f6368; }
.glyph-ciq::after { background: var(--rose); }

.agent-card-feature {
  grid-column: span 2;
}

.journey-visual-section {
  padding-top: 0;
}

.journey-flow-panel {
  padding: 26px;
  border: 1px solid #dadce0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fff, #f8fbff),
    linear-gradient(90deg, rgba(218, 220, 224, 0.45) 1px, transparent 1px);
  box-shadow: var(--shadow-sm);
}

.journey-flow-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.journey-flow-head strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.journey-flow-head span {
  color: var(--muted);
  font-size: 15px;
}

.journey-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.journey-flow::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--amber), var(--violet));
}

.journey-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid #dadce0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.journey-intro-section {
  position: relative;
  padding: 76px 0 84px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(ellipse at 72% 26%, rgba(232, 240, 254, 0.72) 0%, rgba(232, 240, 254, 0.18) 34%, transparent 62%),
    radial-gradient(ellipse at 90% 74%, rgba(230, 244, 234, 0.48) 0%, rgba(230, 244, 234, 0.12) 32%, transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.journey-intro-section::before {
  content: "";
  position: absolute;
  right: 6%;
  top: 18%;
  width: min(520px, 54vw);
  height: 300px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.08), rgba(123, 97, 255, 0.06), rgba(52, 168, 83, 0.07));
  filter: blur(44px);
  pointer-events: none;
}

.journey-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
}

.journey-intro-copy {
  min-width: 0;
}

.journey-intro-copy h1 {
  max-width: 660px;
  margin-bottom: 22px;
}

.journey-intro-copy .hero-lead {
  max-width: 640px;
  font-size: 19px;
  line-height: 1.66;
}

.journey-intro-art {
  position: relative;
  min-width: 0;
  margin: 0;
}

.journey-intro-art::before {
  content: "";
  position: absolute;
  inset: 13% 0 12%;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 32% 54%, rgba(232, 240, 254, 0.60), transparent 58%),
    radial-gradient(ellipse at 70% 44%, rgba(243, 237, 255, 0.48), transparent 58%),
    radial-gradient(ellipse at 78% 74%, rgba(230, 244, 234, 0.48), transparent 58%);
  filter: blur(28px);
  pointer-events: none;
}

.journey-intro-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
}

.journey-intro-svg text {
  font-family: var(--font);
}

.journey-funnel-svg-mobile {
  display: none;
}

.journey-funnel-fields path,
.journey-mobile-funnel-fields path {
  fill: rgba(255, 255, 255, 0.42);
  stroke: rgba(210, 227, 252, 0.34);
  stroke-width: 1;
}

.journey-funnel-shell path:first-child {
  fill: rgba(255, 255, 255, 0.56);
  stroke: rgba(210, 227, 252, 0.62);
  stroke-width: 1.2;
}

.journey-funnel-shell path:not(:first-child) {
  fill: none;
  stroke: rgba(255, 255, 255, 0.80);
  stroke-width: 1;
  stroke-linecap: round;
}

.journey-funnel-segments path,
.journey-mobile-funnel path {
  stroke: rgba(255, 255, 255, 0.70);
  stroke-width: 1;
}

.segment-blue {
  fill: rgba(232, 240, 254, 0.86);
}

.segment-blue-soft {
  fill: rgba(232, 240, 254, 0.62);
}

.segment-violet-soft {
  fill: rgba(243, 237, 255, 0.62);
}

.segment-violet {
  fill: rgba(243, 237, 255, 0.82);
}

.segment-violet-green {
  fill: rgba(238, 246, 255, 0.78);
}

.segment-green-soft {
  fill: rgba(230, 244, 234, 0.68);
}

.segment-green,
.segment-green-final {
  fill: rgba(230, 244, 234, 0.86);
}

.journey-funnel-dividers path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.journey-funnel-spine,
.journey-mobile-funnel-spine {
  fill: none;
  stroke: url(#journeyFunnelLine);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.68;
}

.journey-mobile-funnel-spine {
  stroke: url(#journeyMobileFunnelLine);
}

.journey-funnel-labels text,
.journey-mobile-funnel-labels text {
  fill: var(--ink-2);
  font-size: 12px;
  font-weight: 680;
}

.journey-funnel-labels text:nth-child(1),
.journey-funnel-labels text:nth-child(4),
.journey-funnel-labels text:nth-child(8),
.journey-mobile-funnel-labels text:nth-child(1),
.journey-mobile-funnel-labels text:nth-child(4),
.journey-mobile-funnel-labels text:nth-child(8) {
  fill: var(--blue-deep);
}

.journey-funnel-notes text {
  fill: rgba(23, 78, 166, 0.72);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.journey-illustration-section {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(ellipse at 12% 24%, rgba(232, 240, 254, 0.70) 0%, rgba(232, 240, 254, 0.18) 34%, transparent 62%),
    radial-gradient(ellipse at 86% 72%, rgba(230, 244, 234, 0.62) 0%, rgba(230, 244, 234, 0.16) 34%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.journey-illustration-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: min(940px, 82vw);
  height: 240px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.08), rgba(123, 97, 255, 0.07), rgba(52, 168, 83, 0.07));
  filter: blur(44px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.journey-section-header,
.journey-artwork-wrap {
  position: relative;
  z-index: 1;
}

.journey-section-header {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.journey-section-header h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  font-size: 52px;
  line-height: 1.06;
}

.journey-section-header p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
}

.journey-artwork-wrap {
  margin: 0;
}

.journey-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.journey-svg-mobile {
  display: none;
}

.journey-venn-surface {
  stroke: rgba(218, 220, 224, 0.68);
}

.journey-venn-zone {
  stroke-width: 1.2;
  mix-blend-mode: multiply;
}

.journey-venn-blue {
  fill: url(#journeyVennBlue);
  stroke: rgba(26, 115, 232, 0.18);
}

.journey-venn-violet {
  fill: url(#journeyVennViolet);
  stroke: rgba(123, 97, 255, 0.18);
}

.journey-venn-green {
  fill: url(#journeyVennGreen);
  stroke: rgba(52, 168, 83, 0.18);
}

.journey-venn-zone-title text {
  fill: var(--blue-deep);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journey-venn-context {
  fill: rgba(95, 99, 104, 0.72);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0;
}

.journey-venn-stages rect {
  fill: rgba(255, 255, 255, 0.90);
  stroke: rgba(26, 115, 232, 0.16);
  stroke-width: 1;
}

.journey-venn-stages g:nth-child(2n) rect {
  stroke: rgba(123, 97, 255, 0.16);
}

.journey-venn-stages g:nth-child(3n) rect {
  stroke: rgba(52, 168, 83, 0.17);
}

.journey-venn-stages circle {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 3;
}

.journey-venn-stages g:nth-child(2n) circle {
  stroke: var(--violet);
}

.journey-venn-stages g:nth-child(3n) circle {
  stroke: var(--mint);
}

.journey-venn-stages text {
  fill: var(--ink-2);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
}

.journey-venn-mobile-zones .journey-venn-blue {
  fill: url(#journeyMobileVennBlue);
}

.journey-venn-mobile-zones .journey-venn-violet {
  fill: url(#journeyMobileVennViolet);
}

.journey-venn-mobile-zones .journey-venn-green {
  fill: url(#journeyMobileVennGreen);
}

.journey-handoff-section {
  position: relative;
  padding: 100px 0 112px;
  background:
    radial-gradient(ellipse at 17% 34%, rgba(232, 240, 254, 0.58) 0%, rgba(232, 240, 254, 0.18) 34%, transparent 62%),
    radial-gradient(ellipse at 82% 62%, rgba(230, 244, 234, 0.50) 0%, rgba(230, 244, 234, 0.14) 32%, transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 22%, #ffffff 100%);
  overflow: hidden;
}

.journey-handoff-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: min(720px, 76vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.18), rgba(52, 168, 83, 0.14), transparent);
  transform: translateX(-50%);
}

.journey-handoff-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
}

.journey-handoff-art {
  position: relative;
  margin: 0;
}

.journey-handoff-art::before {
  content: "";
  position: absolute;
  inset: 14% 4% 16%;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(26, 115, 232, 0.06), rgba(123, 97, 255, 0.05), rgba(52, 168, 83, 0.06));
  filter: blur(22px);
  pointer-events: none;
}

.handoff-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
}

.handoff-illustration-mobile {
  display: none;
}

.handoff-illustration text {
  font-family: var(--font);
}

.handoff-lane-sheet path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.105);
  stroke-width: 1;
}

.handoff-orchestration-wash {
  fill: url(#handoffCenterWash);
  stroke: rgba(210, 227, 252, 0.70);
  stroke-width: 1;
  opacity: 0.76;
}

.handoff-lane-connectors path {
  fill: none;
  stroke: url(#handoffLaneGradient);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0.68;
}

.handoff-lane-footer path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.16);
  stroke-width: 1;
  stroke-linecap: round;
}

.handoff-lane-footer text {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.handoff-zone-titles text {
  fill: var(--blue-deep);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.handoff-pill rect {
  fill: rgba(255, 255, 255, 0.86);
  stroke: rgba(26, 115, 232, 0.14);
  stroke-width: 1;
}

.handoff-pill-core rect {
  fill: rgba(255, 255, 255, 0.74);
  stroke: rgba(123, 97, 255, 0.18);
}

.handoff-pill-action rect {
  stroke: rgba(52, 168, 83, 0.18);
}

.handoff-pill circle {
  fill: #fff;
  stroke-width: 3;
}

.handoff-pill-signal circle {
  stroke: var(--blue);
}

.handoff-pill-action circle {
  stroke: var(--mint);
}

.handoff-pill text {
  fill: var(--ink-2);
  font-size: 14px;
  font-weight: 640;
}

.handoff-pill-core text {
  fill: var(--blue-deep);
  font-weight: 720;
}

.handoff-mobile-lanes path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.12);
  stroke-width: 1;
}

.handoff-mobile-spine {
  fill: none;
  stroke: url(#handoffMobileLaneGradient);
  stroke-width: 2;
  stroke-linecap: round;
}

.journey-handoff-copy {
  max-width: 550px;
}

.journey-handoff-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.journey-handoff-copy > p:not(.kicker) {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.64;
}

.handoff-proof-list {
  display: grid;
  gap: 0;
  max-width: 470px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 24, 39, 0.10);
}

.handoff-proof-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  color: var(--ink);
  font-size: 15px;
  font-weight: 620;
}

.handoff-proof-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.journey-orchestration-section {
  position: relative;
  min-height: 80vh;
  padding: clamp(88px, 10vw, 136px) 0;
  color: #f8fbff;
  background:
    radial-gradient(circle at 18% 26%, rgba(26, 115, 232, 0.28) 0%, rgba(26, 115, 232, 0.08) 30%, transparent 58%),
    radial-gradient(circle at 78% 24%, rgba(123, 97, 255, 0.30) 0%, rgba(123, 97, 255, 0.08) 32%, transparent 60%),
    radial-gradient(circle at 82% 80%, rgba(52, 168, 83, 0.22) 0%, rgba(52, 168, 83, 0.07) 34%, transparent 64%),
    linear-gradient(145deg, #05070d 0%, #0b1020 48%, #05070d 100%);
  overflow: hidden;
}

.journey-orchestration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.030) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(ellipse at 50% 45%, #000 0%, #000 42%, transparent 78%);
  opacity: 0.46;
  pointer-events: none;
}

.journey-orchestration-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(1040px, 82vw);
  height: 300px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.20), rgba(123, 97, 255, 0.16), rgba(52, 168, 83, 0.13));
  filter: blur(72px);
  opacity: 0.68;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.journey-orchestration-inner {
  position: relative;
  z-index: 1;
}

.journey-orchestration-copy {
  max-width: 900px;
}

.journey-orchestration-copy .kicker {
  color: rgba(138, 180, 248, 0.92);
}

.journey-orchestration-copy h2 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
}

.journey-orchestration-copy p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(232, 234, 237, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.journey-intelligence-flow {
  position: relative;
  height: clamp(500px, 52vw, 650px);
  margin: clamp(38px, 6vw, 74px) 0 0;
  isolation: isolate;
}

.journey-intelligence-flow::before,
.journey-intelligence-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.journey-intelligence-flow::before {
  inset: 8% 4% 14%;
  background:
    radial-gradient(circle at 24% 46%, rgba(26, 115, 232, 0.18), transparent 34%),
    radial-gradient(circle at 64% 42%, rgba(123, 97, 255, 0.18), transparent 36%),
    radial-gradient(circle at 88% 54%, rgba(52, 168, 83, 0.14), transparent 36%);
  filter: blur(26px);
}

.journey-intelligence-flow::after {
  left: 12%;
  right: 12%;
  top: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 180, 248, 0.18), rgba(129, 201, 149, 0.16), transparent);
}

.journey-intel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-intel-grid {
  fill: rgba(255, 255, 255, 0.018);
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.journey-intel-orb {
  opacity: 0.78;
}

.orb-blue {
  fill: url("#journeyOrbBlue");
}

.orb-violet {
  fill: rgba(123, 97, 255, 0.16);
}

.orb-green {
  fill: url("#journeyOrbGreen");
}

.journey-intel-shadow,
.journey-intel-path,
.journey-intel-echo {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-intel-shadow {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 44;
}

.path-glow {
  stroke: url("#journeyIntelStroke");
  stroke-width: 26;
  opacity: 0.32;
  filter: url("#journeyIntelGlow");
}

.path-core {
  stroke: url("#journeyIntelStroke");
  stroke-width: 3;
  stroke-dasharray: 22 32;
  animation: journeySignalDash 12s linear infinite;
}

.journey-intel-echo {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.5;
  stroke-dasharray: 5 18;
  opacity: 0.62;
  animation: journeySignalDash 22s linear infinite;
}

.echo-two {
  animation-direction: reverse;
  opacity: 0.44;
}

.journey-signal-dot {
  position: absolute;
  z-index: 3;
  left: 6%;
  top: 67%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 8px rgba(138, 180, 248, 0.13),
    0 0 34px rgba(138, 180, 248, 0.72);
  transform: translate(-50%, -50%);
  animation: journeySignalTravel 14s cubic-bezier(0.72, 0, 0.28, 1) infinite;
}

.journey-intel-nodes {
  position: absolute;
  inset: 0;
}

.journey-intel-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  min-width: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 251, 255, 0.92);
  cursor: default;
  transform: translate(-50%, -50%);
}

.journey-intel-node::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-bottom: 10px;
  border: 4px solid rgba(255, 255, 255, 0.80);
  border-radius: 50%;
  background: linear-gradient(135deg, #1a73e8, #7b61ff);
  box-shadow:
    0 0 0 11px rgba(138, 180, 248, 0.12),
    0 0 30px rgba(138, 180, 248, 0.36);
  animation: journeyNodePulse 7s ease-in-out infinite;
}

.journey-intel-node:nth-child(3n + 2)::before {
  background: linear-gradient(135deg, #7b61ff, #34a853);
  box-shadow:
    0 0 0 11px rgba(123, 97, 255, 0.12),
    0 0 30px rgba(123, 97, 255, 0.34);
}

.journey-intel-node:nth-child(3n)::before {
  background: linear-gradient(135deg, #34a853, #1a73e8);
  box-shadow:
    0 0 0 11px rgba(52, 168, 83, 0.11),
    0 0 30px rgba(52, 168, 83, 0.30);
}

.journey-intel-node span {
  display: block;
  color: rgba(248, 251, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.journey-intel-node::after {
  content: attr(data-detail);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  width: 214px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(10, 15, 28, 0.72);
  color: rgba(248, 251, 255, 0.82);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.journey-intel-node:hover::after,
.journey-intel-node:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.node-lead { left: 6%; top: 68%; }
.node-intent { left: 18%; top: 43%; }
.node-whatsapp { left: 31%; top: 55%; }
.node-voice { left: 43%; top: 68%; }
.node-rm { left: 54%; top: 46%; }
.node-visit { left: 65%; top: 25%; }
.node-pricing { left: 76%; top: 26%; }
.node-booking { left: 86%; top: 46%; }
.node-closure { left: 94%; top: 55%; }

.node-lead::after {
  left: 0;
  transform: translate(0, 8px);
}

.node-lead:hover::after,
.node-lead:focus-visible::after {
  transform: translate(0, 0);
}

.node-closure::after,
.node-booking::after {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.node-closure:hover::after,
.node-closure:focus-visible::after,
.node-booking:hover::after,
.node-booking:focus-visible::after {
  transform: translate(0, 0);
}

.journey-matrix-section {
  position: relative;
  min-height: 80vh;
  padding: clamp(88px, 9vw, 132px) 0;
  color: #f8fbff;
  background:
    radial-gradient(circle at 16% 20%, rgba(26, 115, 232, 0.25) 0%, rgba(26, 115, 232, 0.08) 30%, transparent 60%),
    radial-gradient(circle at 78% 24%, rgba(123, 97, 255, 0.30) 0%, rgba(123, 97, 255, 0.08) 32%, transparent 62%),
    radial-gradient(circle at 76% 82%, rgba(52, 168, 83, 0.22) 0%, rgba(52, 168, 83, 0.07) 34%, transparent 64%),
    linear-gradient(145deg, #05070d 0%, #0b1020 52%, #05070d 100%);
  overflow: hidden;
}

.journey-matrix-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.030) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(ellipse at 50% 54%, #000 0%, #000 48%, transparent 82%);
  opacity: 0.46;
  pointer-events: none;
}

.journey-matrix-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 62%;
  width: min(980px, 82vw);
  height: 360px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.18), rgba(123, 97, 255, 0.16), rgba(52, 168, 83, 0.13));
  filter: blur(72px);
  opacity: 0.72;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.journey-matrix-inner {
  position: relative;
  z-index: 1;
}

.journey-matrix-header {
  max-width: 900px;
}

.journey-matrix-header .kicker {
  color: rgba(138, 180, 248, 0.92);
}

.journey-matrix-header h2 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
}

.journey-matrix-header p:last-child {
  max-width: 780px;
  margin: 0;
  color: rgba(232, 234, 237, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.journey-matrix-canvas {
  position: relative;
  min-height: clamp(560px, 50vw, 680px);
  margin: clamp(42px, 6vw, 78px) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.045), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  isolation: isolate;
}

.journey-matrix-canvas::before,
.journey-matrix-canvas::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.journey-matrix-canvas::before {
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(138, 180, 248, 0.24), rgba(123, 97, 255, 0.12) 44%, transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  animation: matrixGlowBreath 10s ease-in-out infinite;
}

.journey-matrix-canvas::after {
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0.9;
}

.journey-matrix-lattice {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.matrix-grid-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.matrix-beams path {
  fill: none;
  stroke: url("#matrixBeamBlue");
  stroke-width: 1.4;
  stroke-dasharray: 8 18;
  stroke-linecap: round;
  opacity: 0.76;
  filter: url("#matrixSoftGlow");
  animation: matrixBeamShimmer 18s linear infinite;
}

.matrix-beams path:nth-child(even) {
  animation-direction: reverse;
  opacity: 0.54;
}

.matrix-core-halo {
  fill: url("#matrixCoreGlow");
  opacity: 0.76;
  transform-box: fill-box;
  transform-origin: center;
  animation: matrixSvgGlowBreath 11s ease-in-out infinite;
}

.matrix-orbit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
  stroke-dasharray: 5 16;
  transform-box: fill-box;
  transform-origin: center;
  animation: matrixOrbit 28s linear infinite;
}

.matrix-orbit.orbit-b {
  stroke: rgba(129, 201, 149, 0.18);
  animation-duration: 21s;
  animation-direction: reverse;
}

.matrix-particles circle {
  fill: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 0 14px rgba(138, 180, 248, 0.55));
  transform-box: fill-box;
  transform-origin: center;
  animation: matrixParticlePulse 8s ease-in-out infinite;
}

.matrix-particles circle:nth-child(even) {
  animation-delay: -3s;
}

.journey-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 230px;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 32px 70px rgba(0, 0, 0, 0.30),
    0 0 70px rgba(138, 180, 248, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.core-ring {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(138, 180, 248, 0.20);
  border-radius: 50%;
  animation: matrixCorePulse 8s ease-in-out infinite;
}

.core-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.core-mark img {
  width: 56px;
  height: 50px;
  object-fit: contain;
}

.journey-core strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 560;
}

.journey-core small {
  max-width: 160px;
  color: rgba(232, 234, 237, 0.62);
  font-size: 12px;
  line-height: 1.42;
}

.journey-layer {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 390px;
}

.matrix-layer-signals {
  left: 7%;
  top: 20%;
}

.matrix-layer-engagement {
  right: 8%;
  top: 18%;
  justify-content: flex-end;
}

.matrix-layer-conversion {
  right: 8%;
  bottom: 16%;
  max-width: 520px;
  justify-content: flex-end;
}

.layer-label {
  flex: 0 0 100%;
  color: rgba(138, 180, 248, 0.86);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.matrix-layer-engagement .layer-label,
.matrix-layer-conversion .layer-label {
  text-align: right;
}

.matrix-stage {
  position: relative;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(248, 251, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 14px 34px rgba(0, 0, 0, 0.20);
  font-size: 14px;
  font-weight: 620;
  cursor: default;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.matrix-stage::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #8ab4f8;
  box-shadow: 0 0 18px rgba(138, 180, 248, 0.70);
  vertical-align: 1px;
}

.matrix-layer-engagement .matrix-stage::before {
  background: #b8a8ff;
  box-shadow: 0 0 18px rgba(123, 97, 255, 0.70);
}

.matrix-layer-conversion .matrix-stage::before {
  background: #81c995;
  box-shadow: 0 0 18px rgba(129, 201, 149, 0.66);
}

.matrix-stage::after {
  content: attr(data-detail);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: 224px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(9, 13, 25, 0.80);
  color: rgba(248, 251, 255, 0.82);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.matrix-stage:hover,
.matrix-stage:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(138, 180, 248, 0.36);
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 44px rgba(0, 0, 0, 0.26);
}

.matrix-stage:hover::after,
.matrix-stage:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.handoff-board {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  gap: 18px;
  align-items: center;
}

.handoff-column {
  display: grid;
  gap: 12px;
}

.handoff-column small {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.handoff-column b {
  padding: 15px;
  border: 1px solid #dadce0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.handoff-center {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 180px;
  border: 1px solid #d2e3fc;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.handoff-center i {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 0 0 8px rgba(26, 115, 232, 0.10);
}

.about-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.principle-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.principle-card.primary {
  grid-row: span 2;
  place-items: center;
  align-content: center;
  text-align: center;
  border-color: #d2e3fc;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.principle-card.primary img {
  width: 70px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 8px;
}

.principle-card small {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
}

.about-proof > div i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(26, 115, 232, 0.16), rgba(52, 168, 83, 0.18)),
    #f8fbff;
  box-shadow: inset 0 0 0 1px #d2e3fc;
}

.blog-feature-section {
  padding-top: 0;
}

.blog-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid #dadce0;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.blog-feature-panel h2 {
  margin-bottom: 0;
  font-size: 34px;
}

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

.blog-signal-board span {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  background:
    linear-gradient(180deg, #fff, #f8fbff);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
}

.blog-glyph {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 16px;
}

.blog-glyph::before {
  left: 13px;
  right: 13px;
  top: 16px;
  height: 6px;
  background: var(--blue);
}

.blog-glyph::after {
  left: 13px;
  right: 21px;
  bottom: 16px;
  height: 6px;
  background: var(--mint);
}

.login-product-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: center;
}

.login-card,
.control-stack {
  border: 1px solid #dadce0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.login-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.login-card img {
  width: 50px;
  height: 45px;
  object-fit: contain;
}

.login-card i {
  height: 40px;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #dadce0 80px, transparent 80px),
    #f8fbff;
}

.login-card button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
}

.control-stack {
  padding: 18px;
}

.control-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.control-kpis b {
  display: grid;
  min-height: 78px;
  place-items: center;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  background: #fff;
  color: var(--ink-2);
  text-align: center;
  text-transform: none;
}

.control-bars {
  display: grid;
  gap: 12px;
}

.control-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.platform-section,
.login-section {
  background: #ffffff;
}

.platform-cloud {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 253, 0.92)),
    linear-gradient(120deg, rgba(66, 133, 244, 0.08), transparent 42%),
    linear-gradient(300deg, rgba(18, 185, 129, 0.10), transparent 46%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cloud-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cloud-lines path {
  fill: none;
  stroke: url("#cloudLine");
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 12;
  opacity: 0.46;
  animation: dashFlow 18s linear infinite;
}

.cloud-node,
.cloud-core {
  position: absolute;
  z-index: 2;
  width: 258px;
  padding: 20px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cloud-node small,
.agent-card small,
.blog-card span,
.outcome-card b {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.cloud-node strong,
.cloud-core strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.cloud-node span,
.cloud-core span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cloud-core {
  top: 50%;
  left: 50%;
  width: 236px;
  min-height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  border-color: rgba(66, 133, 244, 0.22);
}

.cloud-core img {
  width: 68px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 12px;
}

.node-left-top { top: 70px; left: 44px; }
.node-left-mid { top: 230px; left: 72px; }
.node-left-bottom { bottom: 62px; left: 44px; }
.node-right-top { top: 70px; right: 44px; }
.node-right-mid { top: 230px; right: 72px; }
.node-right-bottom { bottom: 62px; right: 44px; }

.platform-story {
  background: #ffffff;
}

.platform-story-hero,
.platform-layer-section,
.platform-agent-section,
.platform-google-section,
.platform-domain-section,
.platform-data-section,
.platform-operating-section,
.platform-final-cta {
  position: relative;
  overflow: hidden;
}

.platform-story-hero {
  padding: 86px 0 98px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background:
    radial-gradient(ellipse at 78% 26%, rgba(232, 240, 254, 0.76) 0%, rgba(232, 240, 254, 0.20) 34%, transparent 62%),
    radial-gradient(ellipse at 86% 78%, rgba(230, 244, 234, 0.48) 0%, rgba(230, 244, 234, 0.14) 32%, transparent 64%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.platform-story-hero-grid,
.platform-layer-grid,
.platform-agent-grid,
.platform-domain-grid,
.platform-data-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.platform-story-copy h1 {
  max-width: 700px;
}

.platform-story-copy .hero-lead {
  max-width: 650px;
  font-size: 19px;
  line-height: 1.66;
}

.platform-hero-art,
.data-insight-art,
.domain-map-art {
  position: relative;
  margin: 0;
}

.platform-hero-art::before,
.data-insight-art::before,
.domain-map-art::before {
  content: "";
  position: absolute;
  inset: 14% 5% 12%;
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(26, 115, 232, 0.08), rgba(123, 97, 255, 0.06), rgba(52, 168, 83, 0.07));
  filter: blur(28px);
  pointer-events: none;
}

.platform-hero-svg,
.google-blueprint-svg,
.data-insight-art svg,
.domain-map-art svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
}

.platform-hero-svg text,
.google-blueprint-svg text,
.data-insight-art text,
.domain-map-art text,
.agent-map-lines text {
  font-family: var(--font);
}

.platform-plane {
  fill: url(#platformHeroPlane);
  stroke: rgba(210, 227, 252, 0.72);
}

.plane-two {
  opacity: 0.86;
}

.plane-three {
  opacity: 0.78;
}

.platform-plane-labels text {
  fill: var(--blue-deep);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
}

.platform-plane-traces path {
  fill: none;
  stroke: url(#platformHeroAccent);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.66;
}

.platform-hero-modules rect {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(26, 115, 232, 0.14);
}

.platform-hero-modules g:nth-child(2n) rect {
  stroke: rgba(123, 97, 255, 0.16);
}

.platform-hero-modules g:nth-child(3n) rect {
  stroke: rgba(52, 168, 83, 0.16);
}

.platform-hero-modules text {
  fill: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

.platform-layer-section {
  padding: 104px 0;
  background: #ffffff;
}

.platform-section-copy {
  max-width: 590px;
}

.platform-section-copy h2,
.platform-google-header h2,
.platform-operating-header h2,
.platform-final-inner h2 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.06;
}

.platform-section-copy p:not(.kicker),
.platform-google-header p:last-child {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.64;
}

.platform-orbit-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.64) 36%, rgba(248, 251, 255, 0.36) 62%, transparent 82%),
    radial-gradient(ellipse at 24% 18%, rgba(232, 240, 254, 0.78), transparent 52%),
    radial-gradient(ellipse at 78% 80%, rgba(230, 244, 234, 0.64), transparent 54%);
  overflow: hidden;
}

.platform-orbit-visual::before,
.platform-orbit-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.platform-orbit-visual::before {
  inset: 14% 18%;
  background: linear-gradient(120deg, rgba(26, 115, 232, 0.13), rgba(123, 97, 255, 0.10), rgba(52, 168, 83, 0.12));
  filter: blur(34px);
  opacity: 0.76;
}

.platform-orbit-visual::after {
  right: 14%;
  bottom: 10%;
  width: 160px;
  height: 160px;
  background: rgba(230, 244, 234, 0.44);
  filter: blur(42px);
}

.platform-orbit-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.orbit-soft-field {
  fill: url(#platformOrbitCoreGlow);
}

.orbit-ring,
.orbit-connectors path {
  fill: none;
  stroke: url(#platformOrbitLine);
  stroke-linecap: round;
}

.orbit-ring {
  stroke-width: 1;
  opacity: 0.44;
}

.ring-two {
  opacity: 0.26;
}

.orbit-connectors path {
  stroke-width: 1.4;
  opacity: 0.56;
  stroke-dasharray: 7 12;
  animation: platformOrbitFlow 18s linear infinite;
}

.orbit-signal-dots circle {
  fill: #fff;
  stroke: rgba(26, 115, 232, 0.28);
  stroke-width: 4;
}

.orbit-signal-dots circle:nth-child(2),
.orbit-signal-dots circle:nth-child(5) {
  stroke: rgba(123, 97, 255, 0.26);
}

.orbit-signal-dots circle:nth-child(4),
.orbit-signal-dots circle:nth-child(7) {
  stroke: rgba(52, 168, 83, 0.26);
}

.orbit-core-aura {
  fill: rgba(255, 255, 255, 0.34);
  stroke: rgba(210, 227, 252, 0.52);
  stroke-width: 1;
}

.platform-core-node,
.platform-agent-node,
.platform-orbit-foundation {
  position: absolute;
  z-index: 2;
}

.platform-core-node {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  padding: 20px;
  border: 1px solid rgba(210, 227, 252, 0.86);
  border-radius: 999px;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.76)),
    radial-gradient(circle at 42% 24%, rgba(232, 240, 254, 0.94), transparent 56%);
  box-shadow:
    0 18px 48px rgba(60, 64, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  animation: platformCorePulse 8s ease-in-out infinite;
}

.platform-core-node small,
.platform-core-node span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.2;
}

.platform-core-node strong {
  color: var(--blue-deep);
  font-size: 27px;
  line-height: 1;
  font-weight: 720;
}

.platform-agent-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(210, 227, 252, 0.78);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 12px 30px rgba(60, 64, 67, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  animation: platformNodeFloat 10s ease-in-out infinite;
}

.platform-agent-node span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.platform-orbit-capture {
  left: 22%;
  top: 23%;
}

.platform-orbit-aura {
  left: 78%;
  top: 24%;
  border-color: rgba(123, 97, 255, 0.22);
  background: rgba(252, 250, 255, 0.78);
  animation-delay: -1.5s;
}

.platform-orbit-nova {
  left: 14%;
  top: 50%;
  animation-delay: -3s;
}

.platform-orbit-vaia {
  left: 85%;
  top: 52%;
  border-color: rgba(52, 168, 83, 0.22);
  background: rgba(250, 255, 252, 0.78);
  animation-delay: -4.5s;
}

.platform-orbit-scribe {
  left: 23%;
  top: 80%;
  border-color: rgba(123, 97, 255, 0.22);
  background: rgba(252, 250, 255, 0.76);
  animation-delay: -6s;
}

.platform-orbit-ciq {
  left: 78%;
  top: 81%;
  animation-delay: -7.5s;
}

.platform-orbit-analytics {
  left: 50%;
  top: 74%;
  border-color: rgba(52, 168, 83, 0.22);
  background: rgba(250, 255, 252, 0.78);
  animation-delay: -9s;
}

.platform-orbit-foundation {
  left: 50%;
  bottom: 22px;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(218, 220, 224, 0.66);
  border-radius: 999px;
  color: rgba(60, 64, 67, 0.70);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 650;
  transform: translateX(-50%);
  white-space: nowrap;
  backdrop-filter: blur(16px);
}

.platform-agent-section {
  padding: 108px 0;
  background:
    radial-gradient(ellipse at 18% 34%, rgba(232, 240, 254, 0.60) 0%, rgba(232, 240, 254, 0.16) 34%, transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.platform-agent-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.platform-agent-map {
  position: relative;
  min-height: 480px;
}

.platform-agent-map::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 34px;
  background: linear-gradient(120deg, rgba(26, 115, 232, 0.08), rgba(123, 97, 255, 0.05), rgba(52, 168, 83, 0.07));
  filter: blur(24px);
}

.agent-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.agent-map-lines path {
  fill: none;
  stroke: url(#agentMapLine);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0.66;
}

.agent-map-lines .agent-map-spine {
  stroke-width: 1.2;
  opacity: 0.38;
}

.agent-map-node,
.agent-map-core {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(17, 24, 39, 0.09);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(60, 64, 67, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.agent-map-node {
  width: 134px;
  padding: 14px 16px;
  border-radius: 18px;
}

.agent-map-node small {
  display: block;
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 840;
  text-transform: uppercase;
}

.agent-map-node strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 620;
}

.agent-map-core {
  left: 50%;
  top: 50%;
  display: grid;
  width: 184px;
  min-height: 116px;
  place-items: center;
  align-content: center;
  padding: 18px;
  border-color: rgba(123, 97, 255, 0.18);
  border-radius: 28px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.agent-map-core span {
  color: var(--blue-deep);
  font-size: 22px;
  font-weight: 720;
}

.agent-map-core small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.node-scout { left: 7%; top: 12%; }
.node-aura { left: 3%; top: 44%; }
.node-nova { left: 10%; bottom: 12%; }
.node-vaia { right: 8%; top: 10%; }
.node-scribe { right: 3%; top: 44%; }
.node-ciq { right: 10%; bottom: 12%; }

.platform-google-section {
  padding: 112px 0;
  background: #ffffff;
}

.platform-google-header,
.platform-operating-header,
.platform-final-inner {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.platform-google-header p:last-child {
  max-width: 840px;
  margin: 0 auto;
}

.google-blueprint {
  margin: 0;
}

.blueprint-surface {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(218, 220, 224, 0.76);
}

.blueprint-grid path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.10);
  stroke-width: 1;
}

.blueprint-layer-labels text {
  fill: var(--blue-deep);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 820;
  text-transform: uppercase;
}

.blueprint-foundation path:first-child,
.blueprint-intelligence path:first-child {
  fill: rgba(232, 240, 254, 0.28);
  stroke: rgba(210, 227, 252, 0.64);
}

.blueprint-intelligence path:first-child {
  fill: rgba(243, 237, 255, 0.25);
  stroke: rgba(227, 215, 255, 0.64);
}

.blueprint-foundation path:not(:first-child),
.blueprint-intelligence path:not(:first-child),
.blueprint-flow path {
  fill: none;
  stroke: url(#blueprintLine);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.42;
}

.blueprint-flow path {
  stroke-width: 1.7;
  opacity: 0.56;
}

.blueprint-modules rect {
  fill: rgba(255, 255, 255, 0.90);
  stroke: rgba(26, 115, 232, 0.14);
}

.blueprint-modules .blueprint-clikin-module rect {
  stroke: rgba(123, 97, 255, 0.18);
}

.blueprint-modules text {
  fill: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
}

.blueprint-modules text:nth-child(3) {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 560;
}

.blueprint-engineering text {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
}

.google-blueprint figcaption {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.google-mobile-architecture {
  display: none;
}

.platform-domain-section {
  padding: 108px 0;
  background:
    radial-gradient(ellipse at 82% 30%, rgba(230, 244, 234, 0.56) 0%, rgba(230, 244, 234, 0.14) 34%, transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.platform-domain-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.domain-map-fields path {
  fill: rgba(255, 255, 255, 0.68);
  stroke: rgba(210, 227, 252, 0.62);
}

.domain-map-thread path,
.insight-threads path {
  fill: none;
  stroke: url(#domainThread);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0.60;
}

.domain-map-core rect,
.insight-output > rect {
  fill: rgba(255, 255, 255, 0.88);
  stroke: rgba(123, 97, 255, 0.18);
}

.domain-map-core text {
  fill: var(--blue-deep);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 720;
}

.domain-chip-group rect,
.insight-inputs rect {
  fill: rgba(255, 255, 255, 0.90);
  stroke: rgba(26, 115, 232, 0.14);
}

.domain-actions rect {
  stroke: rgba(52, 168, 83, 0.18);
}

.domain-chip-group text,
.insight-inputs text,
.insight-output text {
  fill: var(--ink-2);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
}

.platform-data-section {
  padding: 108px 0;
  background: #ffffff;
}

.platform-data-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.insight-threads path {
  stroke: url(#insightThread);
}

.insight-output path {
  fill: none;
  stroke: rgba(95, 99, 104, 0.24);
  stroke-width: 6;
  stroke-linecap: round;
}

.insight-output rect:not(:first-child) {
  fill: rgba(232, 240, 254, 0.82);
  stroke: rgba(26, 115, 232, 0.14);
}

.insight-output rect:nth-of-type(3) {
  fill: rgba(243, 237, 255, 0.82);
}

.insight-output rect:nth-of-type(4) {
  fill: rgba(230, 244, 234, 0.88);
}

.platform-operating-section {
  padding: 102px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.platform-operating-header {
  margin-bottom: 34px;
}

.platform-proof-rows {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(17, 24, 39, 0.10);
}

.platform-proof-rows article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

.platform-proof-rows span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.platform-proof-rows p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.58;
}

.platform-final-cta {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(232, 240, 254, 0.82) 0%, rgba(232, 240, 254, 0.20) 36%, transparent 62%),
    radial-gradient(ellipse at 74% 70%, rgba(230, 244, 234, 0.68) 0%, rgba(230, 244, 234, 0.18) 34%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.platform-final-inner {
  margin-bottom: 0;
}

.agents-section {
  background:
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

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

.agent-card,
.outcome-card,
.blog-card,
.about-proof > div {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.agent-card:hover,
.outcome-card:hover,
.blog-card:hover,
.about-proof > div:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 133, 244, 0.24);
  box-shadow: var(--shadow);
}

.agent-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 18px rgba(26, 43, 71, 0.14));
}

.agent-card-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 255, 0.92)),
    linear-gradient(135deg, rgba(66, 133, 244, 0.13), rgba(18, 185, 129, 0.10));
}

.journey-section {
  background:
    linear-gradient(120deg, rgba(249, 171, 0, 0.10), transparent 34%),
    linear-gradient(300deg, rgba(124, 77, 255, 0.09), transparent 38%),
    #ffffff;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-map li {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.journey-map li::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.journey-map li:nth-child(5)::after,
.journey-map li:last-child::after {
  display: none;
}

.journey-map span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-size: 13px;
  font-weight: 840;
}

.journey-map strong,
.journey-map small {
  display: block;
}

.journey-map strong {
  color: var(--ink);
  font-size: 17px;
}

.journey-map small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.outcomes-section {
  background: linear-gradient(180deg, #f4f8ff, #ffffff);
}

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

.outcome-card {
  min-height: 220px;
}

.outcome-card b {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(66, 133, 244, 0.10);
}

.about-section {
  background:
    linear-gradient(120deg, rgba(18, 185, 129, 0.10), transparent 32%),
    #ffffff;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-proof {
  display: grid;
  gap: 16px;
}

.about-proof > div {
  min-height: 132px;
}

.about-proof strong {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 20px;
}

.about-proof span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.login-visual {
  min-height: 520px;
}

.blog-section {
  background:
    linear-gradient(180deg, #ffffff, #f4f8ff);
}

.blog-card {
  min-height: 268px;
}

.blog-card p {
  margin-bottom: 0;
}

.trust-section {
  background: #ffffff;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 255, 0.92)),
    linear-gradient(45deg, rgba(249, 171, 0, 0.08), transparent);
  box-shadow: var(--shadow);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta {
  position: relative;
  padding: 112px 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 24% 18%, rgba(232, 240, 254, 0.82) 0%, rgba(232, 240, 254, 0.20) 38%, transparent 64%),
    radial-gradient(ellipse at 80% 78%, rgba(230, 244, 234, 0.70) 0%, rgba(230, 244, 234, 0.18) 36%, transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(860px, 82vw);
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(26, 115, 232, 0.14), rgba(52, 168, 83, 0.10), rgba(123, 97, 255, 0.10));
  filter: blur(42px);
  opacity: 0.82;
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
  text-align: center;
}

.final-cta .kicker {
  color: var(--blue-deep);
}

.final-cta h2 {
  color: var(--ink);
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button-secondary.light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(218, 220, 224, 0.80);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer p {
  justify-self: end;
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes dashFlow {
  to {
    stroke-dashoffset: -140;
  }
}

@keyframes journeyDash {
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes helixSweep {
  0%, 100% {
    transform: translateX(-34%);
    opacity: 0.32;
  }
  50% {
    transform: translateX(34%);
    opacity: 0.9;
  }
}

@keyframes fieldDrift {
  0%, 100% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1%, -1%, 0) scale(1.03);
  }
}

@keyframes fieldBreath {
  0%, 100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.74;
  }
}

@keyframes waypointBreath {
  0%, 100% {
    opacity: 0.78;
  }
  12%, 20% {
    opacity: 1;
  }
}

@keyframes labelFloat {
  0%, 100% {
    opacity: 0.58;
    transform: translateY(0);
  }
  50% {
    opacity: 0.86;
    transform: translateY(-5px);
  }
}

@keyframes currentSweep {
  to {
    stroke-dashoffset: -640;
  }
}

@keyframes workspaceFloat {
  0%, 100% {
    opacity: 0.74;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.94;
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes signalBreathe {
  0%, 100% {
    opacity: 0.52;
  }
  45%, 58% {
    opacity: 0.95;
  }
}

@keyframes bookingResolve {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.92);
  }
  45%, 62% {
    opacity: 0.98;
    transform: scale(1.08);
  }
}

@keyframes demandSweep {
  to {
    stroke-dashoffset: -158;
  }
}

@keyframes demandNodePulse {
  0%, 100% {
    opacity: 0.52;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes demandRevenuePulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes journeySignalDash {
  to {
    stroke-dashoffset: -216;
  }
}

@keyframes journeyNodePulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes journeySignalTravel {
  0%, 100% { left: 6%; top: 68%; }
  12% { left: 18%; top: 43%; }
  24% { left: 31%; top: 55%; }
  36% { left: 43%; top: 68%; }
  49% { left: 54%; top: 46%; }
  62% { left: 65%; top: 25%; }
  74% { left: 76%; top: 26%; }
  87% { left: 86%; top: 46%; }
  96% { left: 94%; top: 55%; }
}

@keyframes matrixBeamShimmer {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes matrixGlowBreath {
  0%, 100% {
    opacity: 0.56;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes matrixSvgGlowBreath {
  0%, 100% {
    opacity: 0.52;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.04);
  }
}

@keyframes matrixCorePulse {
  0%, 100% {
    opacity: 0.56;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

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

@keyframes matrixParticlePulse {
  0%, 100% {
    opacity: 0.38;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes journeyStage {
  0%, 100% {
    transform: translateY(0);
    border-color: rgba(218, 220, 224, 0.95);
    box-shadow: var(--shadow-sm);
  }
  11%, 18% {
    transform: translateY(-4px);
    border-color: rgba(26, 115, 232, 0.34);
    box-shadow: 0 16px 34px rgba(60, 64, 67, 0.14);
  }
}

@keyframes pulseLine {
  0%, 100% {
    opacity: 0.45;
    transform: scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes platformOrbitFlow {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes platformCorePulse {
  0%, 100% {
    box-shadow:
      0 18px 48px rgba(60, 64, 67, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow:
      0 22px 56px rgba(26, 115, 232, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes platformNodeFloat {
  0%, 100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, calc(-50% - 5px));
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

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

  .journey-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-map li:nth-child(5)::after {
    display: block;
  }

  .journey-map li:nth-child(even)::after,
  .journey-map li:last-child::after {
    display: none;
  }

  .challenge-heading h2 {
    font-size: 46px;
  }
}

@media (min-width: 941px) and (max-width: 1366px) {
  .home-hero.journey-hero .journey-hero-copy {
    padding-top: clamp(10px, 2.5vh, 30px);
  }

  .journey-hero-inner {
    gap: 20px;
  }

  .journey-hero-copy h1 {
    font-size: clamp(50px, 4.3vw, 56px);
  }

  .journey-hero-visual {
    height: clamp(430px, 54vh, 560px);
  }
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .clNavBrand {
    max-width: calc(100vw - 108px);
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav-backdrop {
    display: block;
  }
}

@media (max-width: 940px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .clNavBrand {
    max-width: calc(100vw - 108px);
  }

  .desktop-nav {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .home-hero-grid,
  .page-hero-grid,
  .split-layout,
  .split-layout.reverse,
  .about-grid,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .section-copy {
    order: 0;
  }

  .section-copy {
    max-width: 760px;
  }

  .hero-visual,
  .home-hero-media,
  .page-hero-visual,
  .image-panel,
  .login-visual {
    min-height: 420px;
  }

  .home-hero-media.orchestration-visual {
    min-height: 0;
    padding: 18px;
  }

  .orchestration-visual .system-map {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 0;
  }

  .system-lines,
  .system-note,
  .control-preview,
  .system-caption {
    display: none;
  }

  .engine-core,
  .product-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 112px;
    transform: none;
  }

  .engine-core {
    grid-column: 1 / -1;
    min-height: 160px;
  }

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

  .challenge-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .challenge-abstract-art {
    max-width: 560px;
  }

  .intelligence-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .journey-section-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .journey-section-header h2,
  .journey-section-header p:last-child {
    margin-left: 0;
    margin-right: 0;
  }

  .journey-section-header h2 {
    font-size: 42px;
  }

  .journey-intro-section {
    padding: 64px 0 76px;
  }

  .journey-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-intro-copy h1 {
    max-width: 780px;
    font-size: 48px;
  }

  .journey-intro-copy .hero-lead {
    max-width: 760px;
  }

  .journey-intro-art {
    max-width: 700px;
    margin: 0 auto;
  }

  .journey-handoff-section {
    padding: 82px 0 92px;
  }

  .journey-handoff-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-handoff-copy {
    order: 1;
    max-width: 760px;
  }

  .journey-handoff-art {
    order: 2;
    max-width: 720px;
    margin: 0 auto;
  }

  .journey-handoff-copy h2 {
    max-width: 720px;
    font-size: 42px;
  }

  .journey-orchestration-section {
    min-height: 0;
  }

  .journey-intelligence-flow {
    height: auto;
    min-height: 0;
    margin-top: 42px;
    padding: 4px 0 4px 28px;
  }

  .journey-intel-svg,
  .journey-signal-dot {
    display: none;
  }

  .journey-intel-nodes {
    position: relative;
    display: grid;
    gap: 24px;
    inset: auto;
  }

  .journey-intel-nodes::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(138, 180, 248, 0.30), rgba(123, 97, 255, 0.24), rgba(129, 201, 149, 0.26));
  }

  .journey-intel-node,
  .node-lead,
  .node-intent,
  .node-whatsapp,
  .node-voice,
  .node-rm,
  .node-visit,
  .node-pricing,
  .node-booking,
  .node-closure {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    justify-items: start;
    padding: 0 0 0 28px;
    text-align: left;
    transform: none;
  }

  .journey-intel-node::before {
    position: absolute;
    left: -28px;
    top: 2px;
    width: 14px;
    height: 14px;
    margin: 0;
    border-width: 3px;
  }

  .journey-intel-node span {
    font-size: 15px;
  }

  .journey-intel-node::after,
  .node-lead::after,
  .node-closure::after,
  .node-booking::after {
    position: static;
    width: auto;
    max-width: 520px;
    margin-top: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(232, 234, 237, 0.62);
    box-shadow: none;
    font-size: 14px;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .journey-matrix-section {
    min-height: 0;
  }

  .journey-matrix-canvas {
    display: grid;
    gap: 28px;
    min-height: 0;
    padding: 28px;
  }

  .journey-matrix-lattice {
    opacity: 0.56;
  }

  .journey-core,
  .journey-layer,
  .matrix-layer-signals,
  .matrix-layer-engagement,
  .matrix-layer-conversion {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .journey-core {
    justify-self: center;
    width: 210px;
    min-height: 210px;
    order: 2;
  }

  .journey-layer {
    display: flex;
    max-width: none;
    justify-content: flex-start;
  }

  .matrix-layer-signals {
    order: 1;
  }

  .matrix-layer-engagement {
    order: 3;
  }

  .matrix-layer-conversion {
    order: 4;
  }

  .matrix-layer-engagement .layer-label,
  .matrix-layer-conversion .layer-label {
    text-align: left;
  }

  .matrix-stage::after {
    position: static;
    display: block;
    width: auto;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(232, 234, 237, 0.62);
    font-size: 13px;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .journey-hero {
    min-height: auto;
    align-items: start;
    padding: 44px 0 50px;
  }

  .journey-hero-inner {
    min-height: 0;
    gap: 22px;
    align-content: start;
  }

  .journey-hero-copy {
    display: block;
  }

  .journey-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(42px, 6.5vw, 50px);
    line-height: 1.04;
  }

  .journey-hero-copy .hero-actions {
    margin-top: 22px;
  }

  .journey-hero-visual {
    height: clamp(380px, 54svh, 520px);
    min-height: 380px;
    padding: 0;
  }

  .home-hero.journey-hero .journey-hero-copy {
    padding-top: clamp(10px, 3vw, 28px);
  }

  .intent-canvas {
    inset: 0 -3%;
  }

  .intent-stage {
    transform: scale(1.12);
  }

  .journey-canvas {
    position: absolute;
    inset: 0;
    display: block;
  }

  .journey-thread {
    display: block;
    inset: 0 -10%;
    width: 120%;
    height: 100%;
  }

  .helix-current {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
  }

  .flow-micro-label {
    display: none;
  }

  .page-hero-visual.platform-hero-visual,
  .page-hero-visual.about-hero-visual,
  .page-hero-visual.login-product-visual,
  .image-panel.journey-handoff-visual {
    min-height: 0;
    padding: 18px;
  }

  .platform-board,
  .about-principles,
  .login-product-shell,
  .handoff-board {
    position: relative;
    inset: auto;
  }

  .platform-rails,
  .login-product-shell,
  .handoff-board,
  .blog-feature-panel {
    grid-template-columns: 1fr;
  }

  .platform-rails::before,
  .platform-rails::after {
    display: none;
  }

  .platform-metrics,
  .control-kpis {
    grid-template-columns: 1fr;
  }

  .agent-system {
    inset: 18px;
  }

  .agent-card-feature {
    grid-column: span 2;
  }

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

  .journey-flow::before {
    display: none;
  }

  .event-spine {
    min-height: 88px;
  }

  .event-spine::before {
    top: 50%;
    bottom: auto;
    left: 26px;
    right: 26px;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .platform-cloud {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .cloud-lines {
    display: none;
  }

  .cloud-node,
  .cloud-core,
  .node-left-top,
  .node-left-mid,
  .node-left-bottom,
  .node-right-top,
  .node-right-mid,
  .node-right-bottom {
    position: static;
    width: auto;
    transform: none;
  }

  .cloud-core {
    min-height: 160px;
    order: -1;
  }

  .platform-story-hero,
  .platform-layer-section,
  .platform-agent-section,
  .platform-google-section,
  .platform-domain-section,
  .platform-data-section,
  .platform-operating-section,
  .platform-final-cta {
    padding: 82px 0;
  }

  .platform-story-hero-grid,
  .platform-layer-grid,
  .platform-agent-grid,
  .platform-domain-grid,
  .platform-data-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .platform-hero-art,
  .domain-map-art,
  .data-insight-art {
    max-width: 700px;
    margin: 0 auto;
  }

  .platform-section-copy {
    max-width: 760px;
  }

  .platform-orbit-visual {
    max-width: 720px;
    min-height: 500px;
    margin: 0 auto;
  }

  .platform-agent-grid .platform-section-copy {
    order: 1;
  }

  .platform-agent-map {
    order: 2;
    max-width: 720px;
    margin: 0 auto;
  }

  .google-blueprint-svg {
    max-width: 960px;
    margin: 0 auto;
  }

  .outcome-grid,
  .blog-grid,
  .agent-grid,
  .gateway-grid,
  .challenge-card-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .site-footer p {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 18px;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand span {
    font-size: 17px;
  }

  .brand .clBrandText {
    font-size: 13px;
  }

  .hero {
    padding-top: 38px;
  }

  .home-hero,
  .page-hero {
    padding: 46px 0;
  }

  .journey-intro-section {
    padding: 48px 0 62px;
  }

  .journey-intro-grid {
    gap: 24px;
  }

  .journey-intro-copy h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.08;
  }

  .journey-intro-copy .hero-lead {
    font-size: 16px;
  }

  .journey-intro-art {
    max-width: 430px;
  }

  .journey-intro-art::before {
    inset: 14% 2% 12%;
    filter: blur(24px);
  }

  .journey-funnel-svg-desktop {
    display: none;
  }

  .journey-funnel-svg-mobile {
    display: block;
  }

  .journey-mobile-funnel-labels text {
    font-size: 14px;
  }

  .journey-hero {
    min-height: auto;
    padding: 28px 0 38px;
  }

  .journey-hero-inner {
    gap: 20px;
    align-content: start;
  }

  .journey-hero-copy h1 {
    max-width: min(390px, 100%);
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.03;
  }

  .journey-canvas {
    position: absolute;
    inset: 0;
    display: block;
  }

  .journey-hero-visual {
    height: clamp(380px, 52svh, 430px);
    min-height: 360px;
    margin-top: 2px;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .intent-canvas {
    inset: -2% -2% 0;
  }

  .home-hero.journey-hero .journey-hero-copy {
    padding-top: clamp(8px, 4svh, 22px);
  }

  .intent-stage {
    transform: scale(1.32);
    transform-origin: 23.5% 54%;
  }

  .voice-signal text,
  .signal-cluster text,
  .ciq-signal text,
  .visit-signal text {
    font-size: 34px;
  }

  .workspace-core {
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%) scale(0.88);
  }

  .journey-thread {
    inset: 0 -18%;
    width: 136%;
    height: 100%;
  }

  .helix-current {
    grid-template-columns: auto 1fr;
    padding: 6px;
  }

  .helix-current img {
    width: 34px;
    height: 31px;
  }

  .helix-current span {
    font-size: 13px;
  }

  .helix-current small {
    font-size: 10px;
  }

  .flow-waypoint text {
    font-size: 18px;
  }

  .page-section,
  .home-band {
    padding: 64px 0;
  }

  .challenge-heading h2 {
    font-size: 34px;
  }

  .gateway-heading h2 {
    font-size: 32px;
  }

  .platform-story-hero,
  .platform-layer-section,
  .platform-agent-section,
  .platform-google-section,
  .platform-domain-section,
  .platform-data-section,
  .platform-operating-section,
  .platform-final-cta {
    padding: 64px 0;
  }

  .platform-story-copy h1 {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.08;
  }

  .platform-story-copy .hero-lead,
  .platform-section-copy p:not(.kicker),
  .platform-google-header p:last-child {
    font-size: 16px;
  }

  .platform-section-copy h2,
  .platform-google-header h2,
  .platform-operating-header h2,
  .platform-final-inner h2 {
    font-size: 34px;
  }

  .platform-orbit-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 22px;
    border-radius: 30px;
  }

  .platform-orbit-lines {
    display: none;
  }

  .platform-orbit-visual::before {
    inset: 10% 4%;
  }

  .platform-core-node {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1 / -1;
    width: auto;
    height: auto;
    min-height: 118px;
    padding: 20px;
    transform: none;
    animation: none;
  }

  .platform-core-node strong {
    font-size: 23px;
  }

  .platform-agent-node {
    position: relative;
    left: auto;
    top: auto;
    min-width: 82px;
    min-height: 38px;
    padding: 0 12px;
    transform: none;
    animation: none;
  }

  .platform-agent-node span {
    font-size: 13px;
  }

  .platform-orbit-foundation {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1 / -1;
    max-width: calc(100% - 34px);
    margin: 4px auto 0;
    white-space: normal;
    text-align: center;
    transform: none;
  }

  .platform-agent-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .platform-agent-map::before,
  .agent-map-lines {
    display: none;
  }

  .agent-map-node,
  .agent-map-core,
  .node-scout,
  .node-aura,
  .node-nova,
  .node-vaia,
  .node-scribe,
  .node-ciq {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .agent-map-core {
    grid-column: 1 / -1;
    min-height: 110px;
    order: -1;
  }

  .google-blueprint-svg {
    display: none;
  }

  .google-blueprint figcaption {
    margin-top: 0;
    text-align: left;
  }

  .google-mobile-architecture {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .google-mobile-architecture div,
  .google-mobile-architecture > p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
  }

  .google-mobile-architecture small {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-deep);
    font-size: 11px;
    font-weight: 820;
    text-transform: uppercase;
  }

  .google-mobile-architecture strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
  }

  .google-mobile-architecture p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .platform-proof-rows article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .domain-map-art,
  .data-insight-art {
    max-width: 430px;
  }

  .journey-illustration-section {
    padding: 70px 0 76px;
  }

  .journey-section-header {
    margin-bottom: 26px;
  }

  .journey-section-header h2 {
    font-size: 34px;
  }

  .journey-section-header p:last-child {
    font-size: 16px;
  }

  .journey-handoff-section {
    padding: 68px 0 76px;
    background: #fff;
  }

  .journey-handoff-inner {
    gap: 24px;
  }

  .journey-handoff-copy h2 {
    font-size: 34px;
  }

  .journey-handoff-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .handoff-proof-list {
    margin-top: 22px;
  }

  .handoff-proof-list li {
    padding: 13px 0;
    font-size: 14px;
  }

  .handoff-illustration-desktop {
    display: none;
  }

  .handoff-illustration-mobile {
    display: block;
    max-width: 390px;
    margin: 0 auto;
  }

  .journey-handoff-art::before {
    inset: 12% 2% 10%;
    filter: blur(28px);
  }

  .handoff-pill text {
    font-size: 14px;
  }

  .journey-svg-desktop {
    display: none;
  }

  .journey-svg-mobile {
    display: block;
    max-width: 430px;
    margin: 0 auto;
  }

  .journey-orchestration-section {
    padding: 74px 0;
  }

  .journey-orchestration-copy h2 {
    font-size: 36px;
  }

  .journey-orchestration-copy p:last-child {
    font-size: 16px;
  }

  .journey-matrix-section {
    padding: 74px 0;
  }

  .journey-matrix-header h2 {
    font-size: 36px;
  }

  .journey-matrix-header p:last-child {
    font-size: 16px;
  }

  .journey-matrix-canvas {
    gap: 22px;
    margin-top: 34px;
    padding: 22px;
    border-radius: 24px;
  }

  .journey-matrix-lattice {
    display: none;
  }

  .journey-core {
    width: 178px;
    min-height: 178px;
    padding: 22px;
  }

  .core-mark {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .core-mark img {
    width: 46px;
    height: 42px;
  }

  .journey-core strong {
    font-size: 15px;
  }

  .journey-core small {
    font-size: 11px;
  }

  .journey-layer {
    display: grid;
    gap: 10px;
  }

  .matrix-stage {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    text-align: left;
  }

  .challenge-intro {
    gap: 24px;
  }

  .challenge-abstract-art {
    max-width: 100%;
  }

  h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 19px;
  }

  p,
  .hero-lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-visual,
  .home-hero-media,
  .page-hero-visual,
  .image-panel,
  .login-visual {
    min-height: 320px;
    border-radius: 12px;
  }

  .home-hero-media.orchestration-visual {
    padding: 12px;
  }

  .orchestration-visual .system-map,
  .challenge-card-grid,
  .dashboard-widgets,
  .about-principles,
  .journey-flow,
  .blog-signal-board {
    grid-template-columns: 1fr;
  }

  .platform-board {
    padding: 14px;
  }

  .platform-rails {
    gap: 14px;
  }

  .agent-constellation-visual {
    min-height: 0;
    padding: 14px;
  }

  .agent-system {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .orbit {
    display: none;
  }

  .agent-orbit-core,
  .agent-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 86px;
    transform: none;
  }

  .agent-card-feature {
    grid-column: auto;
  }

  .journey-flow-head {
    display: block;
  }

  .journey-flow-head span {
    display: block;
    margin-top: 8px;
  }

  .blog-feature-panel {
    padding: 22px;
  }

  .blog-feature-panel h2 {
    font-size: 28px;
  }

  .engine-core,
  .product-node {
    min-height: 102px;
  }

  .product-node {
    padding: 16px 16px 16px 46px;
  }

  .fragment-story {
    padding: 12px;
  }

  .gateway-visual {
    height: 82px;
  }

  .intelligence-visual {
    padding: 16px;
  }

  .fragment-column span:nth-child(odd) {
    transform: none;
  }

  .dashboard-shell {
    min-height: 0;
    padding: 12px;
  }

  .widget.large,
  .widget.wide {
    grid-column: auto;
  }

  .hero-visual-card {
    position: static;
    margin: 12px;
  }

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

  .signal-strip {
    justify-content: flex-start;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .outcome-grid,
  .blog-grid,
  .agent-grid,
  .gateway-grid,
  .detail-grid,
  .journey-map {
    grid-template-columns: 1fr;
  }

  .journey-map li::after,
  .journey-map li:nth-child(even)::after,
  .journey-map li:nth-child(5)::after {
    top: auto;
    right: auto;
    left: 36px;
    bottom: -10px;
    width: 2px;
    height: 18px;
    display: block;
  }

  .journey-map li:last-child::after {
    display: none;
  }

  .trust-panel {
    padding: 22px;
  }

  .final-cta {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 64px 0 48px;
    overflow: hidden;
  }

  .leadership-layout {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    text-align: center;
  }

  .leadership-copy {
    max-width: 640px;
    margin: 0 auto;
  }

  .leadership-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .leadership-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.08;
  }

  .leadership-subtitle {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.55;
  }

  .leadership-actions {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .leadership-actions .button {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .leadership-visual {
    width: 100%;
    max-width: 420px;
    height: clamp(360px, 76vw, 430px);
    min-height: 0;
    margin: 28px auto 0;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
  }

  .leadership-visual .fragment-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .leadership-visual .fragment-column span {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 13px;
    font-size: 12px;
    text-align: left;
    transform: none;
  }

  .leadership-visual .fragment-column span:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(170px, 100%);
  }

  .leadership-visual .fragment-column i {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
  }

  .leadership-visual .event-spine {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .leadership-visual .event-spine::before {
    top: 50%;
    bottom: auto;
    left: 16px;
    right: 16px;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .leadership-visual .event-spine b {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .leadership-visual .event-spine b::after {
    inset: 11px;
  }

  .leadership-visual .event-spine strong,
  .leadership-visual .event-spine small {
    padding: 2px 7px;
    white-space: nowrap;
  }

  .leadership-visual .dashboard-shell {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
  }

  .leadership-visual .dashboard-widgets {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .leadership-visual .widget {
    min-height: 58px;
    padding: 10px;
    border-radius: 14px;
  }

  .leadership-visual .widget:not(.large) {
    display: none;
  }

  .leadership-visual .widget.large {
    grid-column: auto;
  }

  .leadership-visual .widget small {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .leadership-visual .widget i,
  .leadership-visual .widget p {
    height: 7px;
    margin-top: 7px;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 52px 0 40px;
  }

  .leadership-title {
    font-size: clamp(32px, 9.5vw, 36px);
  }

  .leadership-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }

  .leadership-actions .button {
    width: 100%;
  }

  .leadership-visual {
    max-width: 360px;
    height: clamp(380px, 92vw, 400px);
    padding: 14px;
    gap: 10px;
  }

  .leadership-visual .fragment-column span {
    min-height: 38px;
    padding: 0 9px;
  }

  .leadership-visual .event-spine {
    min-height: 48px;
  }

  .leadership-visual .event-spine b {
    width: 36px;
    height: 36px;
  }

  .leadership-visual .event-spine b::after {
    inset: 10px;
    border-radius: 7px;
  }

  .leadership-visual .dashboard-head {
    min-height: 26px;
    padding-bottom: 8px;
  }

  .leadership-visual .dashboard-shell {
    padding: 11px;
  }

  .leadership-visual .widget {
    min-height: 52px;
    padding: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

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