:root {
  --bg-canvas: #050814;
  --bg-deep: #080d1d;
  --surface-glass: rgba(11, 18, 38, 0.76);
  --surface-chip: rgba(8, 15, 31, 0.82);
  --text-primary: #f7f9ff;
  --text-secondary: #a7b0c3;
  --text-muted: #818ba1;
  --line-subtle: rgba(155, 174, 219, 0.22);
  --line-strong: rgba(220, 231, 255, 0.62);
  --blue: #2e75ff;
  --cyan: #27c6f7;
  --violet: #7357f6;
  --mint: #41d5c7;
  --background: var(--bg-canvas);
  --foreground: var(--text-primary);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-geist-sans), "Segoe UI", Arial, sans-serif;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #050814;
  font-weight: 750;
  transform: translateY(-160%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  min-height: 900px;
  overflow: hidden;
  position: relative;
  padding: 24px 36px 56px;
  background:
    radial-gradient(circle at 73% 49%, rgba(45, 92, 255, 0.13), transparent 35%),
    radial-gradient(circle at 89% 25%, rgba(115, 87, 246, 0.08), transparent 26%),
    var(--bg-canvas);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(125, 151, 210, 0.23) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 38%, transparent 94%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow--one {
  width: 300px;
  height: 300px;
  background: #0e58ff;
  right: 13%;
  top: 30%;
}

.hero-glow--two {
  width: 210px;
  height: 210px;
  background: #652ff1;
  right: 2%;
  bottom: 6%;
  opacity: 0.13;
}

.site-header {
  width: min(1368px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 24px 12px 28px;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line-subtle);
  border-radius: 20px;
  background: rgba(6, 10, 23, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  animation: header-in 0.42s ease-out both;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 60px);
  color: #bdc5d5;
  font-size: 15px;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 11px 0;
  transition: color 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(187, 204, 244, 0.24);
  border-radius: 12px;
  color: #dfe5f2;
  font-size: 15px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(211, 224, 255, 0.55);
  background: rgba(255, 255, 255, 0.045);
}

.header-chat-icon {
  width: 17px;
  height: 14px;
  position: relative;
  display: block;
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.header-chat-icon::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 4px;
  left: 3px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 4.5px 0 currentColor, 9px 0 currentColor;
}

.header-chat-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 2px;
  bottom: -3px;
  border-left: 1.5px solid currentColor;
  transform: skewY(-35deg);
}

.hero-shell {
  width: min(1312px, calc(100% - 56px));
  min-height: 690px;
  margin: 48px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(590px, 1.06fr);
  align-items: center;
  gap: 34px;
}

.hero-copy {
  padding: 40px 0 32px;
  position: relative;
  z-index: 4;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #aab9d8;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: content-in 0.58s 0.04s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(39, 198, 247, 0.8);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 4.9vw, 68px);
  line-height: 0.99;
  font-weight: 760;
  letter-spacing: -0.055em;
  text-wrap: balance;
  animation: content-in 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 > span {
  color: transparent;
  background: linear-gradient(100deg, #2c86ff 0%, #8a55f5 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.015em;
  animation: content-in 0.62s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  animation: content-in 0.5s 0.27s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 560;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button span {
  font-size: 24px;
  line-height: 1;
}

.button--primary {
  min-width: 244px;
  color: white;
  border: 1px solid rgba(168, 190, 255, 0.38);
  background: linear-gradient(100deg, #176dff 0%, #4058f8 52%, #8847ed 100%);
  box-shadow:
    0 14px 40px rgba(50, 89, 255, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(70, 76, 255, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.32);
}

.button--secondary {
  min-width: 218px;
  color: #f2f5ff;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 28, 0.44);
}

.button--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(220, 231, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.button:focus-visible,
.main-nav a:focus-visible,
.header-cta:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(39, 181, 255, 0.42);
  outline-offset: 3px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
  animation: content-in 0.5s 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.proof-row > span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(155, 174, 219, 0.17);
  border-radius: 999px;
  background: var(--surface-chip);
  color: #cbd3e2;
  font-size: 13px;
  font-weight: 520;
}

.proof-icon {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: white;
  font-size: 11px;
  font-style: normal;
  box-shadow: 0 0 14px currentColor;
}

.proof-icon--mint {
  background: #1d9b95;
  color: #6af5e9;
}

.proof-icon--blue {
  background: #2466da;
  color: #68a2ff;
}

.proof-icon--violet {
  background: #6339c9;
  color: #ad8cff;
}

.workflow-stage {
  min-height: 650px;
  position: relative;
  isolation: isolate;
  animation: visual-in 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.workflow-stage::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: 50%;
  top: 50%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 91, 255, 0.13), transparent 65%);
  transform: translate(-50%, -50%);
}

.orchestration-art {
  width: 630px;
  height: 630px;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  object-fit: contain;
  opacity: 0.46;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  filter: saturate(1.15);
}

.workflow-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.signal-wires path {
  fill: none;
  stroke: url("#signalBlue");
  stroke-width: 2.8;
  stroke-linecap: round;
  opacity: 1;
  stroke-dasharray: 11 7 2 7;
  animation: signal-flow 6s linear infinite;
  filter:
    drop-shadow(0 0 3px rgba(97, 220, 255, 1))
    drop-shadow(0 0 8px rgba(40, 122, 255, 0.95));
}

.signal-wires--base path {
  stroke: url("#signalBlue");
  stroke-width: 5.5;
  stroke-dasharray: none;
  opacity: 0.5;
  filter:
    drop-shadow(0 0 5px rgba(71, 190, 255, 0.95))
    drop-shadow(0 0 14px rgba(51, 94, 255, 0.8));
  animation: none;
}

.signal-nodes circle {
  fill: #4ed8ff;
  opacity: 0.95;
  filter: drop-shadow(0 0 5px #258cff);
  animation: node-pulse 2.8s ease-in-out infinite;
}

.signal-nodes circle:nth-child(2n) {
  fill: #8f6aff;
  animation-delay: 0.9s;
}

.workflow-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.center-orb {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(202, 222, 255, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 255, 255, 0.38), transparent 17%),
    radial-gradient(circle at 50% 65%, rgba(93, 61, 255, 0.48), transparent 55%),
    rgba(36, 92, 255, 0.24);
  box-shadow:
    0 0 28px rgba(47, 113, 255, 0.95),
    0 0 80px rgba(61, 56, 255, 0.7),
    inset 0 0 28px rgba(173, 211, 255, 0.35);
  backdrop-filter: blur(12px);
  animation: orb-breathe 4.8s ease-in-out infinite;
}

.center-orb img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(64, 177, 255, 0.55));
}

.center-pulse {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(64, 129, 255, 0.34);
  border-radius: 50%;
  animation: pulse-ring 3.6s ease-out infinite;
}

.center-pulse--two {
  animation-delay: 1.8s;
}

.branch-card {
  width: 166px;
  height: 94px;
  min-height: 94px;
  padding: 9px;
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(151, 180, 241, 0.31);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(22, 36, 71, 0.78), rgba(7, 14, 31, 0.85)),
    rgba(9, 16, 35, 0.82);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.branch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(119, 171, 255, 0.64);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(49, 96, 255, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.11);
}

.branch-card > header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.branch-card > header p {
  margin: 0 0 2px;
  color: #7889aa;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-card h2 {
  margin: 0;
  color: #f4f7ff;
  font-size: 10px;
  font-weight: 660;
  letter-spacing: -0.01em;
}

.branch-badge {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 209, 255, 0.22);
  border-radius: 9px;
  color: #eff6ff;
  font-size: 8px;
  font-weight: 800;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.16);
}

.branch-badge--blue {
  background: linear-gradient(145deg, rgba(43, 132, 255, 0.74), rgba(38, 74, 187, 0.56));
  box-shadow: 0 0 17px rgba(41, 119, 255, 0.34);
}

.branch-badge--violet {
  background: linear-gradient(145deg, rgba(135, 83, 255, 0.76), rgba(75, 46, 177, 0.56));
  box-shadow: 0 0 17px rgba(120, 76, 255, 0.34);
}

.branch-badge--cyan {
  background: linear-gradient(145deg, rgba(33, 196, 215, 0.7), rgba(21, 89, 139, 0.58));
  box-shadow: 0 0 17px rgba(31, 203, 224, 0.3);
}

.branch-card--orders {
  left: -2px;
  top: 98px;
}

.branch-card--advice {
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
}

.branch-card--advice:hover {
  transform: translateX(-50%) translateY(-3px);
}

.branch-card--operations {
  right: -2px;
  top: 98px;
}

.branch-card--quality {
  right: -10px;
  top: 274px;
}

.branch-card--reports {
  right: 8px;
  bottom: 40px;
}

.branch-card--notifications {
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
}

.branch-card--notifications:hover {
  transform: translateX(-50%) translateY(-3px);
}

.branch-card--customers {
  left: 8px;
  bottom: 40px;
}

.branch-compact {
  height: 34px;
  margin-top: 7px;
  color: #9baac2;
  font-size: 7px;
}

.branch-compact--metric {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 7px;
}

.branch-compact--metric strong,
.branch-compact--bars strong {
  color: #f3f7ff;
  font-size: 13px;
  letter-spacing: -0.035em;
}

.branch-compact--metric > span {
  justify-self: end;
  padding: 2px 4px;
  border: 1px solid rgba(65, 213, 199, 0.2);
  border-radius: 99px;
  background: rgba(65, 213, 199, 0.08);
  color: #62ded3;
  font-size: 6px;
  font-weight: 700;
}

.compact-line {
  grid-column: 1 / -1;
  height: 12px;
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(70, 132, 255, 0.22);
}

.compact-line::after {
  content: "";
  width: 110%;
  height: 17px;
  position: absolute;
  left: -4px;
  bottom: -8px;
  border-top: 2px solid #4aa9ff;
  border-radius: 50%;
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 4px rgba(60, 140, 255, 0.75));
}

.branch-compact--chat {
  display: grid;
  gap: 3px;
  margin-top: 5px;
}

.branch-compact--chat p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 3px 5px;
  overflow: hidden;
  border: 1px solid rgba(147, 174, 230, 0.13);
  border-radius: 5px;
  background: rgba(74, 91, 131, 0.24);
  color: #cbd6eb;
  font-size: 6px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.branch-compact--chat p:first-child {
  justify-self: end;
}

.branch-compact--chat p:last-child {
  display: flex;
  align-items: center;
  gap: 3px;
  border-color: rgba(96, 123, 255, 0.19);
  background: rgba(68, 73, 210, 0.17);
}

.branch-compact--chat span {
  width: 11px;
  height: 11px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #2d7cff, #7447e9);
  color: white;
  font-size: 4px;
  font-weight: 800;
}

.branch-compact--status {
  display: grid;
  grid-template-columns: 7px auto 1fr;
  align-items: center;
  gap: 5px;
  padding: 6px 7px;
  border: 1px solid rgba(136, 183, 229, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.branch-compact--status strong {
  color: #dfe8f8;
  font-size: 8px;
  white-space: nowrap;
}

.branch-compact--status small {
  overflow: hidden;
  color: #7f8da5;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.branch-compact--bars {
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: end;
  gap: 6px;
}

.branch-compact--bars > div {
  height: 30px;
  display: flex;
  align-items: end;
  gap: 4px;
  border-bottom: 1px solid rgba(80, 135, 239, 0.19);
}

.branch-compact--bars i {
  width: 7px;
  display: block;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, #3459c6, #40b9ff);
  box-shadow: 0 0 7px rgba(50, 131, 255, 0.22);
}

.metric-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 8px;
  margin-top: 12px;
}

.metric-content strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-content span {
  display: block;
  margin-top: 4px;
  color: #8591aa;
  font-size: 8px;
}

.metric-content .metric-up {
  align-self: start;
  margin: 1px 0 0;
  padding: 3px 5px;
  border: 1px solid rgba(66, 213, 199, 0.2);
  border-radius: 99px;
  background: rgba(65, 213, 199, 0.08);
  color: #60e1d5;
  font-size: 8px;
  font-weight: 650;
}

.sparkline {
  grid-column: 1 / -1;
  height: 28px;
  display: flex;
  align-items: end;
  gap: 4px;
  margin-top: 3px;
  padding-top: 4px;
  border-top: 1px solid rgba(151, 180, 241, 0.1);
}

.sparkline i {
  width: 100%;
  display: block;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(49, 100, 255, 0.3), #45a0ff);
}

.sparkline i:nth-child(1) {
  height: 31%;
}

.sparkline i:nth-child(2) {
  height: 45%;
}

.sparkline i:nth-child(3) {
  height: 40%;
}

.sparkline i:nth-child(4) {
  height: 63%;
}

.sparkline i:nth-child(5) {
  height: 56%;
}

.sparkline i:nth-child(6) {
  height: 75%;
}

.sparkline i:nth-child(7) {
  height: 91%;
}

.mini-chat {
  margin-top: 10px;
  font-size: 8px;
  line-height: 1.35;
}

.mini-chat p {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 6px 7px;
  border-radius: 7px;
}

.chat-customer {
  margin-left: auto !important;
  color: #dce5f6;
  background: rgba(67, 83, 126, 0.32);
  border: 1px solid rgba(170, 191, 237, 0.11);
}

.mini-chat .chat-agent {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: #dfe9ff;
  background: rgba(69, 84, 255, 0.18);
  border: 1px solid rgba(91, 140, 255, 0.22);
}

.chat-agent span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: linear-gradient(145deg, #2676ff, #764cec);
  color: white;
  font-size: 6px;
  font-weight: 800;
}

.ops-list {
  display: grid;
  gap: 6px;
  margin-top: 13px;
}

.ops-list p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(136, 183, 229, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: #aebcd4;
  font-size: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #35d4c7;
  box-shadow: 0 0 8px rgba(53, 212, 199, 0.8);
}

.status-dot--violet {
  background: #8b63ff;
  box-shadow: 0 0 8px rgba(139, 99, 255, 0.8);
}

.report-content {
  display: grid;
  grid-template-columns: 1fr 75px;
  gap: 7px;
  align-items: end;
  margin-top: 13px;
}

.report-score strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.report-score span {
  display: block;
  max-width: 84px;
  margin-top: 3px;
  color: #8490a8;
  font-size: 8px;
  line-height: 1.3;
}

.mini-bars {
  height: 45px;
  display: flex;
  align-items: end;
  gap: 5px;
  padding: 5px 5px 0;
  border-bottom: 1px solid rgba(129, 166, 241, 0.2);
  background: linear-gradient(to top, rgba(40, 92, 213, 0.08), transparent);
}

.mini-bars i {
  width: 7px;
  display: block;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, #3459c6, #40b9ff);
  box-shadow: 0 0 8px rgba(50, 131, 255, 0.18);
}

.trust-strip {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 18px 32px;
  border-top: 1px solid rgba(155, 174, 219, 0.13);
  border-bottom: 1px solid rgba(155, 174, 219, 0.13);
  background: #060a16;
  color: #8c99b0;
  font-size: 13px;
  letter-spacing: 0.025em;
}

.trust-strip p {
  margin: 0;
}

.trust-strip span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4a7cff;
  box-shadow: 0 0 8px rgba(74, 124, 255, 0.8);
}

.section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #9eacc7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-eyebrow > span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(39, 198, 247, 0.7);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.process-copy > h2,
.application-copy h2,
.agent-explainer h2,
.multi-industry h2,
.section--contact h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  font-weight: 720;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.section-heading > p,
.process-description,
.application-copy > p,
.agent-explainer p,
.multi-industry__intro > p,
.section--contact > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 58px;
}

.agent-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  border-bottom: 1px solid rgba(155, 174, 219, 0.13);
}

.explainer-lead > p:last-child {
  margin-top: 28px;
}

.explainer-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.explainer-flow article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(137, 169, 232, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(14, 25, 52, 0.9), rgba(7, 12, 27, 0.95));
}

.explainer-flow article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2778ff, #744ff2);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(56, 103, 255, 0.3);
}

.explainer-flow strong {
  display: block;
  font-size: 18px;
}

.explainer-flow p {
  margin: 10px 0 0;
  color: #96a4bc;
  font-size: 14px;
  line-height: 1.65;
}

.solution-card {
  min-height: 350px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 174, 219, 0.17);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(13, 22, 46, 0.9), rgba(7, 12, 27, 0.95)),
    var(--bg-deep);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.solution-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  opacity: 0.14;
  filter: blur(30px);
  transition: opacity 180ms ease;
}

.solution-card--blue::after {
  background: var(--blue);
}

.solution-card--violet::after {
  background: var(--violet);
}

.solution-card--cyan::after {
  background: var(--cyan);
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(110, 147, 233, 0.44);
  background:
    linear-gradient(145deg, rgba(17, 29, 61, 0.92), rgba(8, 14, 31, 0.96)),
    var(--bg-deep);
}

.solution-card:hover::after {
  opacity: 0.26;
}

.solution-topline {
  display: flex;
  align-items: center;
  gap: 14px;
}

.solution-topline span {
  color: #8ea4d1;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.solution-topline i {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(79, 125, 226, 0.45), transparent);
}

.solution-card h3 {
  margin: 48px 0 15px;
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.solution-card > p {
  margin: 0;
  color: #9ca8bd;
  font-size: 14px;
  line-height: 1.65;
}

.solution-card small {
  display: block;
  margin-top: 28px;
  color: #6f7e98;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.multi-industry {
  border-top: 1px solid rgba(155, 174, 219, 0.13);
}

.multi-industry__intro {
  max-width: 920px;
}

.multi-industry__intro > p {
  max-width: 820px;
  margin-top: 28px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}

.industry-grid article {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(148, 179, 237, 0.17);
  border-radius: 18px;
  background: rgba(10, 18, 38, 0.72);
}

.industry-grid article > span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(42, 190, 207, 0.13);
  color: #55e0d4;
  font-size: 11px;
  box-shadow: 0 0 15px rgba(39, 198, 247, 0.17);
}

.industry-grid h3 {
  margin: 2px 0 10px;
  font-size: 17px;
}

.industry-grid p {
  margin: 0;
  color: #929fb6;
  font-size: 13px;
  line-height: 1.65;
}

.professional-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(72, 161, 255, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(34, 74, 161, 0.16), rgba(97, 55, 197, 0.1)),
    rgba(8, 15, 32, 0.8);
}

.professional-note strong {
  font-size: 19px;
  line-height: 1.45;
}

.professional-note p {
  margin: 0;
  color: #a6b1c4;
  font-size: 15px;
  line-height: 1.75;
}

.section--process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  border-top: 1px solid rgba(155, 174, 219, 0.13);
}

.process-copy {
  align-self: start;
  position: sticky;
  top: 40px;
}

.process-description {
  max-width: 550px;
  margin-top: 26px;
}

.guardrail-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 18px;
  border: 1px solid rgba(106, 143, 224, 0.24);
  border-radius: 16px;
  background: rgba(12, 21, 44, 0.65);
}

.guardrail-panel > div:last-child > p {
  margin: 0 0 5px;
  color: #7787a4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guardrail-panel strong {
  font-size: 14px;
  line-height: 1.4;
}

.guardrail-visual {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  position: relative;
}

.guardrail-core {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  z-index: 2;
  border: 1px solid rgba(176, 209, 255, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, #245eff, #743bea);
  color: white;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(62, 94, 255, 0.4);
}

.guardrail-visual i {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px currentColor;
}

.guardrail-visual i:nth-of-type(1) {
  left: 0;
  top: 9px;
}

.guardrail-visual i:nth-of-type(2) {
  right: 1px;
  top: 3px;
  background: var(--violet);
}

.guardrail-visual i:nth-of-type(3) {
  right: 6px;
  bottom: 1px;
  background: var(--blue);
}

.step-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 27px 0 31px;
  border-bottom: 1px solid rgba(155, 174, 219, 0.15);
}

.step-list li:first-child {
  border-top: 1px solid rgba(155, 174, 219, 0.15);
}

.step-list > li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(121, 160, 244, 0.25);
  border-radius: 12px;
  background: rgba(15, 27, 55, 0.7);
  color: #81a7ff;
  font-size: 11px;
  font-weight: 750;
}

.step-list h3 {
  margin: 1px 0 8px;
  font-size: 21px;
  font-weight: 660;
  letter-spacing: -0.025em;
}

.step-list p {
  max-width: 530px;
  margin: 0;
  color: #8f9caf;
  font-size: 14px;
  line-height: 1.65;
}

.section--applications {
  display: grid;
  gap: 20px;
  width: min(1320px, calc(100% - 44px));
  padding-top: 20px;
}

.application-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: 70px;
  position: relative;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(155, 174, 219, 0.17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 50%, rgba(45, 92, 255, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(11, 19, 41, 0.96), rgba(6, 11, 24, 0.98));
}

.application-card--data {
  grid-template-columns: minmax(480px, 1.22fr) minmax(0, 0.78fr);
  background:
    radial-gradient(circle at 22% 50%, rgba(112, 65, 246, 0.12), transparent 34%),
    linear-gradient(215deg, rgba(11, 19, 41, 0.96), rgba(6, 11, 24, 0.98));
}

.application-card--data .application-copy {
  grid-column: 2;
  grid-row: 1;
}

.application-card--data .application-demo {
  grid-column: 1;
  grid-row: 1;
}

.application-copy > p {
  max-width: 480px;
  margin-top: 24px;
}

.application-demo {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(150, 184, 247, 0.27);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(19, 32, 68, 0.87), rgba(8, 15, 34, 0.92)),
    #0a1228;
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(150, 184, 247, 0.13);
}

.demo-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #2474ff, #773fe9);
  color: white;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 23px rgba(61, 95, 255, 0.35);
}

.demo-header strong,
.demo-header small {
  display: block;
}

.demo-header strong {
  font-size: 14px;
}

.demo-header small {
  margin-top: 5px;
  color: #7f8ea8;
  font-size: 10px;
}

.demo-header small i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(65, 213, 199, 0.8);
}

.demo-message {
  max-width: 82%;
  margin: 18px 0 0;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.demo-message--customer {
  margin-left: auto;
  border: 1px solid rgba(172, 194, 238, 0.15);
  border-bottom-right-radius: 5px;
  background: rgba(59, 75, 112, 0.35);
  color: #d5ddeb;
}

.demo-message--agent {
  border: 1px solid rgba(93, 135, 255, 0.22);
  border-bottom-left-radius: 5px;
  background: rgba(49, 75, 190, 0.2);
  color: #e6edff;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(150, 184, 247, 0.13);
}

.demo-actions span {
  padding: 7px 9px;
  border: 1px solid rgba(151, 181, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #8fa2c2;
  font-size: 9px;
}

.dashboard-demo {
  padding: 30px;
}

.dashboard-label {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.dashboard-label small,
.dashboard-label strong {
  display: block;
}

.dashboard-label small {
  color: #7486a7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-label strong {
  margin-top: 7px;
  font-size: 17px;
}

.dashboard-label > span {
  padding: 7px 10px;
  border: 1px solid rgba(151, 181, 240, 0.18);
  border-radius: 8px;
  color: #8fa2c2;
  font-size: 10px;
}

.dashboard-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.dashboard-score strong {
  font-size: 35px;
  letter-spacing: -0.045em;
}

.dashboard-score span {
  padding: 5px 8px;
  border: 1px solid rgba(65, 213, 199, 0.2);
  border-radius: 99px;
  background: rgba(65, 213, 199, 0.08);
  color: #62ded3;
  font-size: 10px;
  font-weight: 650;
}

.dashboard-chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 26px;
  padding: 20px 15px 0;
  border-bottom: 1px solid rgba(151, 181, 240, 0.18);
  background:
    linear-gradient(rgba(151, 181, 240, 0.06) 1px, transparent 1px);
  background-size: 100% 42px;
}

.dashboard-chart i {
  width: 100%;
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, rgba(43, 68, 183, 0.68), #36a6ff);
  box-shadow: 0 0 17px rgba(50, 126, 255, 0.15);
}

.dashboard-chart i:nth-child(3n) {
  background: linear-gradient(to top, rgba(84, 48, 182, 0.66), #8258ff);
}

.dashboard-legend {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  color: #8493ad;
  font-size: 9px;
}

.dashboard-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}

.legend-blue {
  background: #38a7ff;
}

.legend-violet {
  background: #8258ff;
}

.section--contact {
  min-height: 560px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-glow {
  width: 560px;
  height: 310px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 50%, rgba(35, 105, 255, 0.34), transparent 48%),
    radial-gradient(circle at 68% 50%, rgba(121, 58, 239, 0.31), transparent 48%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.contact-logo {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(162, 191, 253, 0.2);
  border-radius: 17px;
  background: rgba(12, 20, 44, 0.75);
  box-shadow: 0 0 40px rgba(63, 82, 255, 0.24);
}

.contact-logo img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.section--contact h2 {
  max-width: 800px;
}

.section--contact > p {
  max-width: 690px;
  margin-top: 25px;
}

.contact-button {
  min-width: 265px;
  margin-top: 34px;
}

.section--contact > small {
  margin-top: 19px;
  color: #6f7d96;
  font-size: 10px;
  letter-spacing: 0.035em;
}

.privacy-section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 76px 0 64px;
  border-top: 1px solid rgba(155, 174, 219, 0.13);
}

.privacy-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}

.privacy-heading .section-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.privacy-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.048em;
}

.privacy-heading > p:last-child {
  margin: 0 0 8px;
  color: #74829b;
  font-size: 11px;
}

.privacy-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 30px;
  padding: 23px 25px;
  border: 1px solid rgba(82, 142, 244, 0.2);
  border-radius: 20px;
  background: rgba(11, 20, 43, 0.65);
}

.privacy-intro p {
  margin: 0;
  color: #a5b0c4;
  font-size: 14px;
  line-height: 1.65;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.privacy-grid article {
  min-height: 218px;
  padding: 19px 20px;
  border: 1px solid rgba(145, 174, 231, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(13, 23, 47, 0.84), rgba(7, 12, 27, 0.94));
}

.privacy-grid article > span {
  color: #7189b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.privacy-grid h3 {
  margin: 20px 0 10px;
  font-size: 17px;
}

.privacy-grid p {
  margin: 0;
  color: #929fb5;
  font-size: 14px;
  line-height: 1.58;
}

.deletion-box {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  margin-top: 14px;
  padding: 22px 24px;
  border: 1px solid rgba(81, 203, 218, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(125deg, rgba(34, 97, 154, 0.14), rgba(78, 52, 163, 0.09)),
    rgba(8, 15, 32, 0.85);
}

.deletion-box .section-eyebrow {
  margin-bottom: 10px;
}

.deletion-box h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.deletion-box ol {
  margin: 0;
  padding-left: 20px;
  color: #a4afc2;
  font-size: 13px;
  line-height: 1.55;
}

.deletion-box li + li {
  margin-top: 6px;
}

.deletion-box > a {
  grid-column: 2;
  width: fit-content;
  color: #71cfff;
  font-size: 13px;
  font-weight: 650;
}

.deletion-box > a span {
  margin-left: 6px;
}

.site-footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px max(36px, calc((100vw - 1240px) / 2));
  border-top: 1px solid rgba(155, 174, 219, 0.13);
  background: #050812;
  color: #6f7d95;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-legal a {
  color: #909db4;
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #ffffff;
}

.brand--footer {
  color: #f7f9ff;
  font-size: 18px;
}

.brand--footer .brand-mark {
  width: 30px;
  height: 30px;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    filter: brightness(0.94);
    transform: scale(0.985);
  }
  50% {
    filter: brightness(1.12);
    transform: scale(1.01);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.65;
    transform: scale(0.72);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes signal-flow {
  to {
    stroke-dashoffset: -54;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.55;
    r: 2.4px;
  }
  50% {
    opacity: 1;
    r: 3.4px;
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-inline: 22px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-shell {
    width: min(1100px, 100%);
    grid-template-columns: minmax(0, 0.96fr) minmax(510px, 1.04fr);
    gap: 12px;
  }

  .branch-card {
    width: 154px;
  }

  .branch-card--operations {
    right: 0;
  }

  .branch-card--quality {
    right: -2px;
  }

  .branch-card--reports {
    right: 4px;
  }

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

  .agent-explainer {
    gap: 42px;
  }

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

  .section--process {
    gap: 56px;
  }

  .application-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
    gap: 42px;
    padding: 52px;
  }

  .application-card--data {
    grid-template-columns: minmax(430px, 1.15fr) minmax(0, 0.85fr);
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-bottom: 28px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-shell {
    width: min(720px, 100%);
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(50px, 9vw, 72px);
  }

  .workflow-stage {
    min-height: 650px;
    margin-top: 12px;
  }

  .section {
    width: min(720px, calc(100% - 40px));
    padding: 88px 0;
  }

  .section-heading,
  .section--process,
  .agent-explainer {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-copy {
    position: static;
  }

  .section--applications {
    width: calc(100% - 28px);
    padding-top: 10px;
  }

  .application-card,
  .application-card--data {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 48px;
  }

  .application-card--data .application-copy,
  .application-card--data .application-demo {
    grid-column: 1;
  }

  .application-card--data .application-copy {
    grid-row: 1;
  }

  .application-card--data .application-demo {
    grid-row: 2;
  }

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

@media (max-width: 660px) {
  .hero {
    padding: 14px 14px 24px;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 12px 9px 16px;
    border-radius: 16px;
  }

  .brand {
    gap: 8px;
    font-size: 19px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero-shell {
    margin-top: 18px;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-description {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 11px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .proof-row {
    margin-top: 26px;
  }

  .proof-row > span {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .workflow-stage {
    min-height: 720px;
    margin-top: 6px;
  }

  .orchestration-art {
    width: 470px;
    height: 470px;
  }

  .workflow-center {
    top: 50%;
    width: 112px;
    height: 112px;
  }

  .center-orb {
    width: 82px;
    height: 82px;
  }

  .center-orb img {
    width: 38px;
    height: 38px;
  }

  .branch-card {
    width: min(145px, 43vw);
    height: 90px;
    min-height: 90px;
    padding: 8px;
  }

  .branch-card--orders {
    left: 0;
    top: 126px;
  }

  .branch-card--advice {
    left: 50%;
    right: auto;
    top: 10px;
    transform: translateX(-50%);
  }

  .branch-card--advice:hover {
    transform: translateX(-50%) translateY(-3px);
  }

  .branch-card--operations {
    right: 0;
    top: 126px;
  }

  .branch-card--quality {
    right: 0;
    top: 318px;
  }

  .branch-card--reports {
    left: auto;
    right: 0;
    bottom: 72px;
  }

  .branch-card--notifications {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .branch-card--notifications:hover {
    transform: translateX(-50%) translateY(-3px);
  }

  .branch-card--customers {
    left: 0;
    bottom: 72px;
  }

  .branch-card > header p {
    font-size: 5.5px;
  }

  .branch-card h2 {
    font-size: 9px;
  }

  .branch-badge {
    width: 27px;
    height: 27px;
  }

  .branch-compact {
    margin-top: 5px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
  }

  .trust-strip span {
    display: none;
  }

  .section {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .section-heading h2,
  .process-copy > h2,
  .application-copy h2,
  .agent-explainer h2,
  .multi-industry h2,
  .section--contact h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .section-heading {
    gap: 25px;
  }

  .section-heading > p,
  .process-description,
  .application-copy > p,
  .agent-explainer p,
  .multi-industry__intro > p,
  .section--contact > p {
    font-size: 15px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .solution-card {
    min-height: 250px;
  }

  .explainer-flow,
  .industry-grid,
  .professional-note {
    grid-template-columns: 1fr;
  }

  .explainer-flow article,
  .industry-grid article {
    min-height: auto;
  }

  .professional-note {
    gap: 16px;
    padding: 24px 20px;
  }

  .solution-card h3 {
    margin-top: 36px;
  }

  .section--process {
    gap: 34px;
  }

  .guardrail-panel {
    align-items: flex-start;
  }

  .step-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .step-list > li > span {
    width: 38px;
    height: 38px;
  }

  .section--applications {
    width: calc(100% - 18px);
    gap: 10px;
  }

  .application-card,
  .application-card--data {
    min-height: auto;
    gap: 34px;
    padding: 34px 20px;
    border-radius: 22px;
  }

  .application-demo {
    padding: 16px;
    border-radius: 17px;
  }

  .dashboard-demo {
    padding: 20px 16px;
  }

  .dashboard-chart {
    height: 145px;
    gap: 7px;
    padding-inline: 6px;
  }

  .section--contact {
    min-height: 540px;
    padding-inline: 12px;
  }

  .section--contact > small {
    max-width: 300px;
    line-height: 1.6;
  }

  .privacy-section {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .privacy-heading,
  .privacy-intro,
  .privacy-grid,
  .deletion-box {
    grid-template-columns: 1fr;
  }

  .privacy-heading > p:last-child {
    margin: 0;
  }

  .privacy-intro,
  .deletion-box {
    gap: 20px;
    padding: 22px 19px;
  }

  .privacy-grid article {
    min-height: auto;
  }

  .deletion-box > a {
    grid-column: 1;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 30px 22px;
  }

  .site-footer p:last-child {
    justify-self: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GD8 Phase 1 V13: genuine route architecture layered onto the preserved V12 visual system. */
.route-app {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(46, 117, 255, 0.1), transparent 26rem),
    var(--bg-canvas);
}

.route-app .v12-header-wrap {
  padding: 20px 28px 0;
}

.v12-nav a[aria-current="page"],
.product-nav__trigger[aria-current="page"] {
  color: #fff;
}

.v12-nav a[aria-current="page"]::after,
.product-nav__trigger[aria-current="page"]::after {
  transform: scaleX(1);
}

.route-page {
  padding: 26px 0 0;
}

.route-intro {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-subtle);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(15, 25, 52, 0.92), rgba(7, 12, 27, 0.78)),
    radial-gradient(circle at 85% 15%, rgba(115, 87, 246, 0.22), transparent 42%);
}

.route-intro::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: -210px;
  border: 1px solid rgba(85, 211, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 110px rgba(46, 117, 255, 0.16);
}

.route-intro h1 {
  max-width: 920px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.route-intro > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.route-content-section,
.route-feature-panel {
  margin-top: 28px;
}

.route-home-hero {
  width: min(1368px, calc(100% - 56px));
  min-height: 720px;
  margin: 24px auto 0;
  padding: clamp(56px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 58px;
  border: 1px solid var(--line-subtle);
  border-radius: 34px;
}

.route-home-hero__content,
.route-home-hero__visual {
  position: relative;
  z-index: 2;
}

.route-home-hero__content h1 {
  margin: 24px 0;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.route-home-hero__content h1 span {
  color: #61d9ff;
}

.route-home-hero__content > p:not(.hero-kicker) {
  max-width: 680px;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.7;
}

.route-home-hero__visual {
  min-height: 460px;
  display: grid;
  place-items: center;
}

.route-home-hero__visual::before,
.route-home-hero__visual::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(91, 201, 255, 0.3);
  border-radius: 50%;
  animation: route-orbit 13s linear infinite;
}

.route-home-hero__visual::after {
  inset: 19%;
  border-color: rgba(157, 124, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 9s;
}

.route-home-hero__visual img {
  width: min(100%, 460px);
  filter: drop-shadow(0 26px 80px rgba(40, 113, 255, 0.33));
}

.route-home-hero__visual div {
  position: absolute;
  right: 0;
  bottom: 10%;
  padding: 18px 20px;
  display: grid;
  border: 1px solid rgba(164, 190, 255, 0.25);
  border-radius: 18px;
  background: rgba(8, 15, 31, 0.88);
  backdrop-filter: blur(16px);
}

.route-home-hero__visual strong { color: #61d9ff; font-size: 28px; }
.route-home-hero__visual span { font-weight: 750; }
.route-home-hero__visual small { margin-top: 4px; color: var(--text-secondary); }

.route-value { margin-top: 0; }
.route-home-products { padding-top: 108px; padding-bottom: 108px; }

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

.route-product-grid--compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.route-product-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line-subtle);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 24, 49, 0.85), rgba(8, 13, 28, 0.75));
  transition: transform 180ms ease, border-color 180ms ease;
}

.route-product-card:hover,
.route-product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(100, 210, 255, 0.46);
}

.route-product-card > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-product-card h2 { margin: 15px 0 10px; font-size: clamp(25px, 3vw, 34px); }
.route-product-card p { color: var(--text-secondary); line-height: 1.65; }
.route-product-card ul { margin: 24px 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.route-product-card li { position: relative; padding-left: 18px; color: #c7cfdf; line-height: 1.45; }
.route-product-card li::before { content: ""; position: absolute; top: 0.62em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.route-product-card a,
.route-text-link { display: inline-flex; gap: 9px; align-items: center; color: #6fdfff; font-weight: 750; }

.route-product-grid--compact .route-product-card { padding: 22px; }
.route-product-grid--compact .route-product-card h2 { font-size: 22px; }
.route-home-products > .route-text-link { margin-top: 30px; }

.route-home-cta {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto 100px;
  padding: 72px;
  text-align: center;
  border: 1px solid var(--line-subtle);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 0, rgba(46, 117, 255, 0.23), transparent 62%), #080d1d;
}

.route-home-cta p { color: #61d9ff; text-transform: uppercase; letter-spacing: 0.15em; font-size: 12px; font-weight: 800; }
.route-home-cta h2 { max-width: 780px; margin: 18px auto 30px; font-size: clamp(34px, 5vw, 60px); letter-spacing: -0.04em; }
.route-home-cta > div { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.route-applications { padding-top: 24px; }
.route-industries { padding-top: 80px; }
.route-feature-panel { width: min(1180px, calc(100% - 56px)); margin-right: auto; margin-left: auto; }
.route-core-message { width: min(1180px, calc(100% - 56px)); margin: 28px auto; }
.route-next-step { width: min(1180px, calc(100% - 56px)); margin: 30px auto 90px; padding: 26px 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border: 1px solid var(--line-subtle); border-radius: 20px; }
.route-next-step p { margin: 0; color: var(--text-secondary); }
.route-next-step a { color: #6fdfff; font-weight: 750; }

.route-contact { margin-top: 28px; margin-bottom: 100px; }
.route-privacy { width: min(1180px, calc(100% - 56px)); margin: 28px auto 100px; }

.login-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.login-entry-grid article {
  padding: 36px;
  border: 1px solid var(--line-subtle);
  border-radius: 26px;
  background: rgba(11, 18, 38, 0.78);
}

.login-entry-grid article > span { color: #61d9ff; font-size: 12px; font-weight: 850; letter-spacing: 0.14em; }
.login-entry-grid h2 { margin: 16px 0 10px; font-size: 34px; }
.login-entry-grid p,
.login-entry-grid li { color: var(--text-secondary); line-height: 1.55; }
.login-entry-grid ul { margin: 24px 0; padding-left: 20px; columns: 2; }
.login-entry-grid strong { display: inline-flex; padding: 9px 13px; border-radius: 999px; background: rgba(70, 211, 197, 0.12); color: #65e0d2; font-size: 12px; }

.login-security-note {
  width: min(1180px, calc(100% - 56px));
  margin: 28px auto 100px;
  padding: 26px 30px;
  border-left: 3px solid var(--mint);
  background: rgba(65, 213, 199, 0.07);
}
.login-security-note p { margin-bottom: 0; color: var(--text-secondary); line-height: 1.6; }

.internal-staging-shell { min-height: 100vh; padding: 48px; background: #050814; }
.internal-staging-shell > header { width: min(1180px, 100%); margin: 0 auto 24px; }
.internal-staging-shell > header span { color: #61d9ff; letter-spacing: 0.14em; font-weight: 800; }
.internal-staging-shell > header p { color: var(--text-secondary); }

.route-footer { margin-top: 0; }

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

@media (max-width: 1120px) {
  .route-product-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-home-hero { grid-template-columns: 1fr; }
  .route-home-hero__visual { min-height: 390px; }
}

@media (max-width: 720px) {
  .route-app .v12-header-wrap { padding: 12px 14px 0; }
  .route-intro,
  .route-home-hero,
  .route-feature-panel,
  .route-core-message,
  .route-next-step,
  .route-home-cta,
  .route-privacy { width: min(100% - 28px, 1180px); }
  .route-intro { padding: 56px 24px; border-radius: 24px; }
  .route-home-hero { min-height: auto; padding: 58px 24px 32px; gap: 24px; border-radius: 24px; }
  .route-home-hero__content h1 { font-size: clamp(48px, 15vw, 68px); }
  .route-home-hero__visual { min-height: 310px; }
  .route-home-hero__visual div { right: 2%; bottom: 3%; }
  .route-product-grid,
  .route-product-grid--compact,
  .login-entry-grid { grid-template-columns: 1fr; }
  .route-home-cta { padding: 50px 24px; }
  .route-next-step { align-items: flex-start; flex-direction: column; }
  .login-entry-grid ul { columns: 1; }
  .internal-staging-shell { padding: 26px 14px; }
}

.gd8-readiness {
  display: grid;
  gap: 34px;
}

.product-readiness-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.product-readiness-card,
.readiness-entry-grid article,
.readiness-operations,
.readiness-form {
  border: 1px solid var(--line-subtle);
  background: linear-gradient(145deg, rgba(15, 25, 52, 0.86), rgba(7, 13, 29, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.product-readiness-card {
  min-height: 248px;
  padding: 24px 20px;
  border-radius: 20px;
}

.product-readiness-card > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(92, 178, 255, 0.28);
  border-radius: 999px;
  color: #7fd9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-readiness-card h3,
.readiness-entry-grid h3,
.readiness-operations h3,
.readiness-form h3 {
  margin: 20px 0 10px;
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1.25;
}

.product-readiness-card p,
.readiness-entry-grid p,
.readiness-operations p,
.readiness-form p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.product-readiness-card small {
  display: block;
  margin-top: 18px;
  color: #7787a6;
}

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

.readiness-entry-grid article {
  padding: 30px;
  border-radius: 24px;
}

.readiness-entry-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: #79d8ff;
  font-weight: 700;
}

.readiness-operations {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  padding: 32px;
  border-radius: 24px;
}

.readiness-operations button,
.readiness-form button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(132, 196, 255, 0.36);
  border-radius: 12px;
  background: linear-gradient(135deg, #2476ff, #7549e8);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.readiness-state-list {
  display: grid;
  gap: 10px;
}

.readiness-state-list p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(145, 174, 230, 0.15);
  border-radius: 14px;
  background: rgba(7, 14, 31, 0.65);
}

.readiness-state-list strong {
  color: #eaf0ff;
}

.readiness-state-list span {
  color: #8d9bb5;
  font-size: 13px;
}

.readiness-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  border-radius: 24px;
}

.readiness-form > div,
.readiness-form > label:last-of-type,
.readiness-form__status {
  grid-column: 1 / -1;
}

.readiness-form label {
  display: grid;
  gap: 8px;
  color: #dce5f8;
  font-size: 14px;
  font-weight: 650;
}

.readiness-form input,
.readiness-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(145, 174, 230, 0.25);
  border-radius: 12px;
  outline: none;
  background: rgba(6, 13, 29, 0.88);
  color: var(--text-primary);
  font: inherit;
}

.readiness-form input:focus-visible,
.readiness-form textarea:focus-visible,
.readiness-operations button:focus-visible,
.readiness-form button:focus-visible {
  outline: 3px solid rgba(39, 181, 255, 0.42);
  outline-offset: 3px;
}

.readiness-form__status {
  min-height: 26px;
  margin: 0;
  color: #7ce4cf !important;
}

@media (max-width: 1100px) {
  .product-readiness-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-readiness-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .product-readiness-grid,
  .readiness-entry-grid,
  .readiness-operations,
  .readiness-form {
    grid-template-columns: 1fr;
  }

  .product-readiness-card:last-child,
  .readiness-form > div,
  .readiness-form > label:last-of-type,
  .readiness-form__status {
    grid-column: auto;
  }

  .product-readiness-card {
    min-height: 0;
  }
}

.agentpro-chat {
  position: fixed;
  right: 24px;
  bottom: clamp(112px, 17vh, 184px);
  z-index: 100;
  display: grid;
  justify-items: end;
  gap: 14px;
  font-family: var(--font-geist-sans), "Segoe UI", Arial, sans-serif;
}

.agentpro-chat__launcher {
  min-width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(178, 209, 255, 0.52);
  border-radius: 20px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, #2377ff 0%, #4f5ef4 52%, #7d45e9 100%);
  color: #fff;
  box-shadow:
    0 18px 45px rgba(22, 60, 190, 0.48),
    0 0 30px rgba(80, 91, 255, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.agentpro-chat__launcher:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 54px rgba(22, 60, 190, 0.58),
    0 0 38px rgba(80, 91, 255, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.agentpro-chat__launcher > span:first-child:not(.agentpro-chat__launcher-mark) {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.agentpro-chat__launcher-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
}

.agentpro-chat__launcher-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.agentpro-chat__launcher-label {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.agentpro-chat__panel {
  width: min(380px, calc(100vw - 32px));
  height: min(580px, calc(100vh - clamp(112px, 17vh, 184px) - 96px));
  min-height: min(460px, calc(100vh - clamp(112px, 17vh, 184px) - 96px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(139, 176, 246, 0.31);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 2%, rgba(73, 87, 255, 0.18), transparent 32%),
    linear-gradient(155deg, rgba(12, 22, 48, 0.98), rgba(5, 10, 24, 0.99));
  color: #f5f8ff;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.58),
    0 0 45px rgba(46, 94, 255, 0.17),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  animation: agentpro-chat-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.agentpro-chat__header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(139, 176, 246, 0.14);
}

.agentpro-chat__identity {
  display: flex;
  align-items: center;
  gap: 11px;
}

.agentpro-chat__avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186, 214, 255, 0.36);
  border-radius: 13px;
  background: linear-gradient(145deg, #2479ff, #7644eb);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 0 22px rgba(74, 91, 255, 0.35);
}

.agentpro-chat__avatar img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.agentpro-chat__identity strong,
.agentpro-chat__identity small {
  display: block;
}

.agentpro-chat__identity strong {
  font-size: 15px;
}

.agentpro-chat__identity small {
  margin-top: 5px;
  color: #8d9db9;
  font-size: 10px;
}

.agentpro-chat__identity small i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(65, 213, 199, 0.8);
}

.agentpro-chat__close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(154, 180, 230, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #aeb9ce;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.agentpro-chat__notice {
  padding: 9px 15px;
  border-bottom: 1px solid rgba(139, 176, 246, 0.11);
  background: rgba(61, 77, 177, 0.11);
  color: #8fa3c8;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
}

.agentpro-chat__log {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 15px 14px;
  scrollbar-color: rgba(92, 126, 207, 0.45) transparent;
}

.agentpro-chat__message {
  width: fit-content;
  max-width: 84%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.agentpro-chat__message--agent {
  align-self: flex-start;
  border: 1px solid rgba(86, 133, 255, 0.22);
  border-bottom-left-radius: 5px;
  background: rgba(48, 72, 176, 0.23);
  color: #e5ecff;
}

.agentpro-chat__message--user {
  align-self: flex-end;
  border: 1px solid rgba(172, 194, 238, 0.14);
  border-bottom-right-radius: 5px;
  background: rgba(65, 81, 121, 0.42);
  color: #eef2fb;
}

.agentpro-chat__message--error {
  align-self: center;
  max-width: 94%;
  border: 1px solid rgba(255, 120, 132, 0.2);
  background: rgba(185, 45, 72, 0.13);
  color: #f3a7b1;
  text-align: center;
}

.agentpro-chat__typing {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(86, 133, 255, 0.17);
  border-radius: 14px 14px 14px 5px;
  background: rgba(48, 72, 176, 0.15);
}

.agentpro-chat__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ba3d4;
  animation: agentpro-chat-dot 900ms ease-in-out infinite;
}

.agentpro-chat__typing span:nth-child(2) {
  animation-delay: 150ms;
}

.agentpro-chat__typing span:nth-child(3) {
  animation-delay: 300ms;
}

.agentpro-chat__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  padding: 12px;
  border-top: 1px solid rgba(139, 176, 246, 0.14);
  background: rgba(4, 9, 22, 0.72);
}

.agentpro-chat__form textarea {
  min-height: 48px;
  max-height: 104px;
  resize: none;
  padding: 11px 12px;
  border: 1px solid rgba(145, 174, 230, 0.2);
  border-radius: 12px;
  outline: none;
  background: rgba(14, 24, 50, 0.8);
  color: #eef3ff;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.agentpro-chat__form textarea::placeholder {
  color: #6f7f9d;
}

.agentpro-chat__form button {
  min-width: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(168, 190, 255, 0.38);
  border-radius: 12px;
  background: linear-gradient(135deg, #2476ff, #7549e8);
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.agentpro-chat__form button:disabled {
  cursor: not-allowed;
  filter: saturate(0.5);
  opacity: 0.5;
}

.agentpro-chat__launcher:focus-visible,
.agentpro-chat__close:focus-visible,
.agentpro-chat__form textarea:focus-visible,
.agentpro-chat__form button:focus-visible {
  outline: 3px solid rgba(39, 181, 255, 0.42);
  outline-offset: 3px;
}

@keyframes agentpro-chat-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes agentpro-chat-dot {
  0%,
  60%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 660px) {
  .agentpro-chat {
    right: 14px;
    bottom: max(
      calc(92px + env(safe-area-inset-bottom)),
      min(17dvh, 150px)
    );
  }

  .agentpro-chat__panel {
    width: calc(100vw - 28px);
    height: min(
      620px,
      calc(100dvh - max(calc(92px + env(safe-area-inset-bottom)), min(17dvh, 150px)) - 86px)
    );
    min-height: min(
      420px,
      calc(100dvh - max(calc(92px + env(safe-area-inset-bottom)), min(17dvh, 150px)) - 86px)
    );
    border-radius: 19px;
  }

  .agentpro-chat__launcher {
    height: 58px;
    min-width: 58px;
    padding-inline: 14px;
    border-radius: 18px;
  }

  .agentpro-chat__launcher-label {
    display: none;
  }

  .agentpro-chat__message {
    max-width: 88%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agentpro-chat__panel,
  .agentpro-chat__typing span {
    animation: none !important;
  }

  .agentpro-chat__launcher {
    transition: none !important;
  }
}

/* GD8 Website V12 — commercial, dynamic, data-driven successor */

section[id],
div[id] {
  scroll-margin-top: 112px;
}

.v12-header-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 14px 28px 0;
  pointer-events: none;
}

.v12-header {
  width: min(1380px, 100%);
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 13px 10px 22px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(143, 174, 235, 0.2);
  border-radius: 19px;
  background: rgba(5, 9, 21, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(1.2);
  pointer-events: auto;
}

.v12-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 44px);
  color: #aab5c9;
  font-size: 14px;
  font-weight: 620;
}

.v12-nav > a,
.product-nav__trigger {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease;
}

.v12-nav > a::after,
.product-nav__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.v12-nav > a:hover,
.v12-nav > a:focus-visible,
.v12-nav > a[aria-current="page"],
.product-nav__trigger:hover,
.product-nav__trigger:focus-visible,
.product-nav__trigger[aria-current="page"] {
  color: #fff;
}

.v12-nav > a:hover::after,
.v12-nav > a:focus-visible::after,
.v12-nav > a[aria-current="page"]::after,
.product-nav__trigger:hover::after,
.product-nav__trigger:focus-visible::after,
.product-nav__trigger[aria-current="page"]::after {
  transform: scaleX(1);
}

.product-nav__trigger > span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.product-nav--open .product-nav__trigger > span {
  transform: rotate(180deg);
}

.v12-login {
  justify-self: end;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(130, 190, 255, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(28, 112, 255, 0.2), rgba(122, 74, 238, 0.2));
  color: #f3f7ff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.v12-login:hover,
.v12-login:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 220, 255, 0.78);
  background: linear-gradient(135deg, rgba(28, 112, 255, 0.34), rgba(122, 74, 238, 0.34));
}

.mobile-menu-toggle {
  display: none;
}

.product-mega-menu {
  width: min(1380px, calc(100vw - 56px));
  max-height: calc(100dvh - 108px);
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 205;
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(131, 173, 255, 0.25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 0%, rgba(42, 111, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(9, 16, 34, 0.99), rgba(5, 9, 20, 0.99));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
  scrollbar-color: rgba(85, 134, 239, 0.55) transparent;
}

.product-nav--open .product-mega-menu,
.product-nav:focus-within .product-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.product-mega-menu__intro {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
  padding: 8px 7px 20px;
  border-bottom: 1px solid rgba(137, 170, 231, 0.15);
}

.product-mega-menu__intro p,
.product-mega-menu__intro strong,
.product-mega-menu__intro span {
  margin: 0;
}

.product-mega-menu__intro p {
  color: #59d9ff;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-mega-menu__intro strong {
  color: #f6f8ff;
  font-size: 17px;
  font-weight: 650;
}

.product-mega-menu__intro > span {
  color: #71819c;
  font-size: 11px;
}

.product-mega-menu__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mega-product {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(135, 166, 225, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.mega-product:hover,
.mega-product:focus-within {
  border-color: rgba(100, 166, 255, 0.38);
  background: rgba(49, 83, 160, 0.08);
  transform: translateY(-2px);
}

.mega-product__heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
}

.mega-product__heading > span {
  font: 800 9px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.09em;
}

.mega-product h2 {
  margin: 0;
  color: #f3f6ff;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.mega-product__heading p,
.mega-product__summary {
  color: #8796b0;
  font-size: 10px;
  line-height: 1.45;
}

.mega-product__heading p {
  margin: 5px 0 0;
}

.mega-product__summary {
  margin: 13px 0;
  padding-top: 12px;
  border-top: 1px solid rgba(135, 166, 225, 0.1);
}

.mega-product ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-product li {
  position: relative;
  padding-left: 12px;
  color: #a9b4c8;
  font-size: 9px;
  line-height: 1.35;
}

.mega-product li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 99px;
  background: #4dbef5;
}

.mega-product > a {
  display: inline-flex;
  gap: 8px;
  margin-top: 15px;
  color: #70d9ff;
  font-size: 10px;
  font-weight: 730;
}

.hero {
  margin-top: -84px;
  padding-top: 108px;
}

.introduction {
  padding-top: 138px;
}

.introduction__lead {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  column-gap: 90px;
  align-items: start;
}

.introduction__lead .section-eyebrow {
  grid-column: 1 / -1;
}

.introduction__lead h2,
.value-section__lead h2,
.how-it-works__heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.02;
  font-weight: 730;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.introduction__definition {
  padding: 4px 0 0 30px;
  border-left: 1px solid rgba(107, 151, 235, 0.32);
}

.introduction__definition p {
  margin: 0;
  color: #abb6ca;
  font-size: 16px;
  line-height: 1.75;
}

.introduction__definition p + p {
  margin-top: 18px;
}

.ai-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 66px;
}

.ai-comparison__side {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid rgba(135, 166, 225, 0.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(14, 22, 44, 0.95), rgba(7, 12, 27, 0.98));
}

.ai-comparison__side::after {
  content: "";
  width: 230px;
  height: 230px;
  position: absolute;
  right: -110px;
  top: -130px;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.16;
  pointer-events: none;
}

.ai-comparison__side--without::after {
  background: #ff5e7c;
}

.ai-comparison__side--with {
  border-color: rgba(67, 196, 255, 0.3);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 24px 70px rgba(31, 91, 215, 0.12);
}

.ai-comparison__side--with::after {
  background: #278cff;
}

.ai-comparison__side header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(139, 169, 228, 0.14);
}

.ai-comparison__side header > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

.ai-comparison__side--without header > span {
  background: rgba(222, 64, 91, 0.16);
}

.ai-comparison__side--with header > span {
  background: rgba(39, 142, 255, 0.18);
}

.ai-comparison__side small,
.ai-comparison__side h3 {
  display: block;
  margin: 0;
}

.ai-comparison__side small {
  color: #72809a;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.ai-comparison__side h3 {
  margin-top: 4px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.ai-comparison__side ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ai-comparison__side li {
  position: relative;
  padding-left: 26px;
  color: #aab6c9;
  font-size: 14px;
  line-height: 1.55;
}

.ai-comparison__side li::before {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.ai-comparison__side--without li::before {
  content: "×";
  background: rgba(230, 69, 100, 0.13);
  color: #ff8ca1;
}

.ai-comparison__side--with li::before {
  content: "✓";
  background: rgba(49, 186, 208, 0.13);
  color: #62e4dc;
}

.adoption-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 140, 91, 0.35);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(184, 71, 50, 0.18), rgba(55, 18, 39, 0.14)),
    rgba(10, 14, 29, 0.92);
}

.adoption-warning > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 158, 114, 0.42);
  border-radius: 14px;
  background: rgba(240, 89, 55, 0.16);
  color: #ffb28d;
  font-size: 22px;
  font-weight: 800;
}

.adoption-warning strong {
  color: #fff1e8;
  font-size: 19px;
}

.adoption-warning p {
  margin: 9px 0 0;
  color: #c9afa7;
  font-size: 14px;
  line-height: 1.68;
}

.responsible-ai-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 23px 28px;
  border: 1px solid rgba(86, 195, 221, 0.22);
  border-radius: 18px;
  background: rgba(31, 112, 142, 0.075);
}

.responsible-ai-note span {
  color: #5bdbef;
  font: 800 10px/1.4 var(--font-geist-mono), monospace;
  letter-spacing: 0.1em;
}

.responsible-ai-note p {
  margin: 0;
  color: #a5b6c8;
  font-size: 14px;
  line-height: 1.65;
}

.value-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 169, 228, 0.12);
  border-bottom: 1px solid rgba(139, 169, 228, 0.12);
  background:
    radial-gradient(circle at 12% 50%, rgba(38, 114, 255, 0.12), transparent 30%),
    #060a16;
}

.value-section__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 72px;
  padding-block: 88px;
}

.value-section__lead h2 {
  font-size: clamp(36px, 3.6vw, 54px);
}

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

.value-grid article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(139, 169, 228, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
  transition: transform 160ms ease, border-color 160ms ease;
}

.value-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(81, 177, 255, 0.34);
}

.value-grid article > span {
  display: block;
  margin-bottom: 25px;
  color: #57d5ff;
  font: 780 13px/1 var(--font-geist-mono), monospace;
}

.value-grid strong {
  display: block;
  color: #eef3ff;
  font-size: 15px;
}

.value-grid p {
  margin: 9px 0 0;
  color: #8391aa;
  font-size: 12px;
  line-height: 1.55;
}

.how-it-works {
  padding-top: 140px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 56px;
  padding: 7px;
  border: 1px solid rgba(136, 166, 228, 0.16);
  border-radius: 18px;
  background: rgba(7, 13, 29, 0.9);
}

.product-tab {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: #aab5c8;
  font: 620 12px/1.35 var(--font-geist-sans), sans-serif;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.product-tab > span {
  grid-row: 1 / -1;
  font: 800 9px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.08em;
}

.product-tab small {
  color: #64728c;
  font-size: 9px;
  font-weight: 520;
}

.product-tab:hover,
.product-tab:focus-visible,
.product-tab--active {
  border-color: rgba(96, 159, 255, 0.32);
  background: linear-gradient(145deg, rgba(39, 99, 210, 0.17), rgba(103, 58, 194, 0.09));
  color: #fff;
}

.feature-panel {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-accent) 28%, transparent);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--product-accent) 10%, transparent), transparent 27%),
    linear-gradient(145deg, rgba(10, 18, 38, 0.97), rgba(5, 9, 21, 0.99));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.feature-panel[hidden] {
  display: none;
}

.feature-panel__intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 50px;
  align-items: end;
  padding: 34px;
  border-bottom: 1px solid rgba(132, 162, 220, 0.14);
}

.feature-panel__intro span {
  color: var(--product-accent);
  font: 800 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.11em;
}

.feature-panel__intro h3 {
  margin: 9px 0 0;
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -0.045em;
}

.feature-panel__intro p {
  margin: 0;
  color: #9ba9bf;
  font-size: 15px;
  line-height: 1.65;
}

.core-flagship-message {
  margin: 22px;
  padding: 25px;
  border: 1px solid rgba(255, 111, 216, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(116, 44, 151, 0.15), rgba(34, 70, 168, 0.14));
}

.core-flagship-message > span {
  color: #ff8be0;
  font: 820 10px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
}

.core-flagship-message p {
  margin: 13px 0 0;
  color: #d0c5d7;
  font-size: 14px;
  line-height: 1.7;
}

.core-flagship-message ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.core-flagship-message li {
  padding: 8px 11px;
  border: 1px solid rgba(205, 138, 238, 0.2);
  border-radius: 999px;
  color: #bfacd0;
  font-size: 10px;
}

.feature-table__header,
.feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-table__header {
  border-bottom: 1px solid rgba(132, 162, 220, 0.14);
  background: rgba(255, 255, 255, 0.018);
}

.feature-table__header span {
  padding: 15px 34px;
  color: #70809b;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-table__header span + span {
  border-left: 1px solid rgba(132, 162, 220, 0.14);
}

.feature-pair {
  border-bottom: 1px solid rgba(132, 162, 220, 0.1);
}

.feature-pair:last-child {
  border-bottom: 0;
}

.feature-pair__operation,
.feature-pair__use {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  padding: 27px 34px;
}

.feature-pair__use {
  align-items: start;
  border-left: 1px solid rgba(132, 162, 220, 0.14);
  background: rgba(45, 94, 171, 0.025);
}

.feature-pair__operation > span,
.feature-pair__use > span {
  color: var(--product-accent);
  font: 750 10px/1.6 var(--font-geist-mono), monospace;
}

.feature-pair h4 {
  margin: 0;
  color: #eef2fb;
  font-size: 16px;
  line-height: 1.4;
}

.feature-pair p {
  margin: 8px 0 0;
  color: #909eb5;
  font-size: 13px;
  line-height: 1.65;
}

.feature-pair__use p {
  margin: 0;
  color: #aeb8c9;
}

.gd8-readiness {
  padding-top: 140px;
}

.product-readiness-card details {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(135, 164, 224, 0.12);
}

.product-readiness-card summary {
  color: #78d7fb;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.product-readiness-card ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.product-readiness-card li {
  position: relative;
  padding-left: 13px;
  color: #8593aa;
  font-size: 10px;
  line-height: 1.4;
}

.product-readiness-card li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 99px;
  background: #49c8f5;
}

.entry-shell {
  display: grid;
  grid-template-columns: 0.8fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(132, 171, 240, 0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13, 25, 50, 0.92), rgba(6, 11, 25, 0.97));
}

.entry-shell__intro h3 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.entry-shell__intro > p:last-child {
  margin: 12px 0 0;
  color: #8795ac;
  font-size: 12px;
  line-height: 1.6;
}

.entry-switcher {
  display: grid;
  gap: 7px;
  padding: 6px;
  border: 1px solid rgba(134, 169, 234, 0.14);
  border-radius: 15px;
  background: rgba(3, 8, 19, 0.45);
}

.entry-switcher button {
  min-width: 110px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #8392aa;
  font: 650 12px/1 var(--font-geist-sans), sans-serif;
  cursor: pointer;
}

.entry-switcher button[aria-selected="true"] {
  border-color: rgba(86, 163, 255, 0.3);
  background: rgba(43, 105, 222, 0.16);
  color: #eef4ff;
}

.entry-panel {
  padding-left: 28px;
  border-left: 1px solid rgba(134, 169, 234, 0.15);
}

.entry-panel > span {
  color: #66d6ff;
  font: 780 9px/1 var(--font-geist-mono), monospace;
  letter-spacing: 0.1em;
}

.entry-panel h4 {
  margin: 9px 0 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.entry-panel p {
  margin: 9px 0 0;
  color: #8d9bb1;
  font-size: 12px;
  line-height: 1.6;
}

.entry-panel a {
  display: inline-flex;
  gap: 10px;
  margin-top: 15px;
  color: #6fd7ff;
  font-size: 11px;
  font-weight: 700;
}

.v12-nav a:focus-visible,
.product-nav__trigger:focus-visible,
.v12-login:focus-visible,
.mobile-menu-toggle:focus-visible,
.product-tab:focus-visible,
.entry-switcher button:focus-visible,
.mega-product a:focus-visible,
.product-readiness-card summary:focus-visible {
  outline: 3px solid rgba(61, 191, 255, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .v12-header {
    grid-template-columns: auto 1fr auto;
  }

  .v12-nav {
    gap: 20px;
  }

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

  .introduction__lead,
  .value-section__inner {
    gap: 46px;
  }

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

  .entry-shell {
    grid-template-columns: minmax(220px, 0.7fr) auto minmax(0, 1.3fr);
  }
}

@media (max-width: 960px) {
  .v12-header-wrap {
    padding: 10px 14px 0;
  }

  .v12-header {
    min-height: 64px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 8px 9px 8px 15px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(139, 171, 231, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 17px;
    height: 1px;
    display: block;
    background: #c7d1e4;
  }

  .v12-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(136, 170, 235, 0.2);
    border-radius: 16px;
    background: rgba(5, 9, 21, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  }

  .v12-nav--open {
    display: grid;
  }

  .v12-nav > a,
  .product-nav__trigger {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    justify-content: space-between;
    border-radius: 10px;
  }

  .v12-nav > a::after,
  .product-nav__trigger::after {
    display: none;
  }

  .product-mega-menu {
    width: 100%;
    max-height: min(64dvh, 650px);
    position: static;
    display: none;
    margin: 4px 0 8px;
    padding: 10px;
    border-radius: 13px;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .product-nav--open .product-mega-menu,
  .product-nav:focus-within .product-mega-menu {
    display: block;
    transform: none;
  }

  .product-mega-menu__intro {
    display: block;
    padding: 4px 4px 13px;
  }

  .product-mega-menu__intro strong,
  .product-mega-menu__intro > span {
    display: block;
    margin-top: 6px;
  }

  .product-mega-menu__list {
    grid-template-columns: 1fr;
  }

  .mega-product ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .introduction__lead,
  .value-section__inner,
  .feature-panel__intro {
    grid-template-columns: 1fr;
  }

  .introduction__definition {
    padding: 26px 0 0;
    border-top: 1px solid rgba(107, 151, 235, 0.32);
    border-left: 0;
  }

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

  .feature-panel__intro {
    gap: 19px;
  }

  .entry-shell {
    grid-template-columns: 1fr auto;
  }

  .entry-panel {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    border-top: 1px solid rgba(134, 169, 234, 0.15);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .v12-login {
    min-width: 44px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .hero {
    margin-top: -74px;
    padding-top: 98px;
  }

  .introduction {
    padding-top: 98px;
  }

  .introduction__lead h2,
  .how-it-works__heading h2 {
    font-size: clamp(36px, 11.5vw, 54px);
  }

  .ai-comparison {
    grid-template-columns: 1fr;
  }

  .ai-comparison__side {
    padding: 23px;
  }

  .adoption-warning,
  .responsible-ai-note {
    grid-template-columns: 1fr;
  }

  .value-section__inner {
    padding-block: 76px;
  }

  .value-grid,
  .product-tabs {
    grid-template-columns: 1fr;
  }

  .product-tab {
    min-height: 64px;
  }

  .feature-table__header {
    display: none;
  }

  .feature-pair {
    grid-template-columns: 1fr;
    margin: 12px;
    overflow: hidden;
    border: 1px solid rgba(132, 162, 220, 0.15);
    border-radius: 15px;
  }

  .feature-pair__operation,
  .feature-pair__use {
    padding: 22px;
  }

  .feature-pair__operation::before,
  .feature-pair__use::before {
    grid-column: 1 / -1;
    margin-bottom: -5px;
    color: #687894;
    font-size: 9px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .feature-pair__operation::before {
    content: "Chức năng / cách hoạt động";
  }

  .feature-pair__use {
    border-top: 1px solid rgba(132, 162, 220, 0.14);
    border-left: 0;
  }

  .feature-pair__use::before {
    content: "Cách doanh nghiệp sử dụng";
  }

  .entry-shell {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .entry-switcher button {
    min-width: 0;
  }

  .entry-panel {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .v12-header .brand > span:last-child {
    display: none;
  }

  .v12-header .brand {
    gap: 0;
  }

  .mega-product ul {
    grid-template-columns: 1fr;
  }

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

  .core-flagship-message {
    margin: 12px;
    padding: 20px;
  }

  .feature-panel__intro {
    padding: 24px;
  }

  .feature-pair__operation,
  .feature-pair__use {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-mega-menu,
  .mega-product,
  .value-grid article,
  .v12-login,
  .product-nav__trigger > span {
    transition: none !important;
  }
}

/* Loaded after the preserved stylesheet so V15 commercial corrections are authoritative. */
body { font-size: 18px; line-height: 1.62; }
.route-page { padding-top: 20px; }
.section { padding-top: clamp(64px, 7vw, 92px); padding-bottom: clamp(64px, 7vw, 92px); }
.route-intro { padding-block: clamp(56px, 7vw, 88px); }
.route-home-hero { min-height: 690px; padding: clamp(44px, 5vw, 76px); grid-template-columns: minmax(380px, .82fr) minmax(560px, 1.18fr); gap: 28px; }
.route-home-hero__content h1 { display: grid; gap: .04em; font-size: clamp(52px, 5.8vw, 82px); line-height: .96; }
.route-home-hero__content h1 > span:first-child { color: #61d9ff; }
.route-home-hero__content h1 > span:not(:first-child) { color: var(--text-primary); }
.route-home-hero__orchestration { width: 100%; min-width: 0; }
.route-home-products { padding-block: clamp(68px, 7vw, 92px); }
.route-home-cta { margin-bottom: 72px; padding: clamp(46px, 6vw, 68px); }
.route-industries { padding-top: 64px; }
.route-applications { padding-top: 40px; }
.section-heading > p, .route-product-card p, .route-product-card li, .application-copy > p:last-child, .multi-industry__intro > p:last-child, .industry-grid p, .feature-panel__intro p, .feature-pair p, .core-flagship-message p, .route-next-step p, .site-footer p, .site-footer a, .mega-product p, .mega-product li, .product-mega-menu__intro span { color: #b8c2d5; font-size: 16px; line-height: 1.62; }
.section-eyebrow, .route-product-card > span, .feature-panel__intro span, .core-flagship-message > span, .feature-table__header span, .product-tab, .product-tab small { font-size: 14px; }
.value-grid article, .route-product-card, .application-card, .industry-grid article { min-height: 0; }
.value-grid article { padding: 22px; }
.value-grid article > span { margin-bottom: 15px; font-size: 15px; }
.value-grid strong { font-size: 18px; }
.value-grid p { color: #aeb9ce; font-size: 16px; line-height: 1.55; }
.route-product-card { padding: 26px; }
.route-product-grid--compact .route-product-card { padding: 20px; }
.feature-panel__intro { padding: 30px; }
.feature-pair__operation, .feature-pair__use { padding: 24px 30px; }
.feature-pair h3, .feature-pair h4 { font-size: 18px; }
.core-flagship-message { margin: 28px auto; padding: 28px; }
.core-flagship-message li { font-size: 14px; }

.auth-layout { width: min(1180px, calc(100% - 56px)); margin: 28px auto 88px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: 24px; align-items: start; }
.auth-layout--single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.auth-card, .auth-benefits { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line-subtle); border-radius: 26px; background: linear-gradient(145deg, rgba(15,24,49,.9), rgba(8,13,28,.82)); }
.auth-card__heading h2, .auth-benefits h2 { margin: 14px 0 24px; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; }
.auth-card form { display: grid; gap: 20px; }
.auth-card label { display: grid; gap: 8px; color: #e7ecf7; font-size: 16px; font-weight: 680; }
.auth-card label > span, .auth-card label small { color: #aeb9ce; font-size: 14px; font-weight: 480; }
.auth-card input { width: 100%; min-height: 50px; padding: 11px 14px; border: 1px solid rgba(168,189,232,.28); border-radius: 12px; background: rgba(3,8,19,.72); color: #fff; font: inherit; }
.auth-card input:focus-visible { outline: 3px solid rgba(61,191,255,.42); outline-offset: 2px; border-color: #61d9ff; }
.auth-card button { border: 0; cursor: pointer; font: inherit; }
.auth-card button:disabled { cursor: wait; opacity: .68; }
.auth-card__result { margin: 0; padding: 12px 14px; border-radius: 10px; background: rgba(65,213,199,.1); color: #baf8ef; font-size: 16px; }
.auth-card__links { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.auth-card__links a { color: #72ddff; font-size: 16px; font-weight: 700; }
.auth-divider { margin: 24px 0; display: flex; align-items: center; gap: 12px; color: #aeb9ce; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line-subtle); }
.google-auth-button { min-height: 50px; display: flex; justify-content: center; align-items: center; gap: 12px; border: 1px solid rgba(196,211,241,.32); border-radius: 12px; background: #fff; color: #10172a; font-weight: 750; }
.google-auth-button span { color: #2768d8; font-size: 20px; }
.auth-card__privacy { margin: 22px 0 0; color: #aeb9ce; font-size: 14px; }
.legal-consent { margin: 4px 0; padding: 18px; display: grid; gap: 14px; border: 1px solid rgba(168,189,232,.24); border-radius: 14px; }
.legal-consent legend { padding: 0 8px; color: #fff; font-size: 16px; font-weight: 750; }
.auth-card .legal-consent label { grid-template-columns: 20px 1fr; align-items: start; gap: 10px; font-weight: 520; }
.auth-card .legal-consent input[type="checkbox"] { width: 18px; min-height: 18px; margin-top: 4px; accent-color: var(--blue); }
.legal-consent a { color: #72ddff; text-decoration: underline; text-underline-offset: 3px; }
.auth-benefits > span { color: #61d9ff; font-size: 14px; font-weight: 820; letter-spacing: .11em; }
.auth-benefits li { margin: 12px 0; color: #c4ccdc; font-size: 17px; line-height: 1.55; }

.portal-shell { min-height: 100vh; padding: 24px clamp(18px, 5vw, 72px) 80px; background: var(--bg-canvas); }
.portal-shell > header { width: min(1180px, 100%); margin: 0 auto 28px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line-subtle); border-radius: 16px; }
.portal-shell > header button { padding: 10px 15px; border: 1px solid var(--line-subtle); border-radius: 10px; background: transparent; color: #fff; font: inherit; cursor: pointer; }
.portal-overview, .portal-area-grid, .portal-availability { width: min(1180px, 100%); margin-inline: auto; }
.portal-overview { padding: clamp(34px, 6vw, 72px); border: 1px solid var(--line-subtle); border-radius: 28px; background: radial-gradient(circle at 85% 12%, rgba(46,117,255,.2), transparent 38%), var(--bg-deep); }
.portal-overview h1 { margin: 16px 0; font-size: clamp(38px, 6vw, 68px); line-height: 1; }
.portal-overview > p:last-child { max-width: 760px; color: #b8c2d5; }
.portal-area-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.portal-area-grid a { padding: 22px; display: grid; gap: 10px; border: 1px solid var(--line-subtle); border-radius: 16px; background: var(--surface-glass); }
.portal-area-grid span { color: #9fabc0; font-size: 14px; }
.portal-availability { margin-top: 24px; padding: 22px 26px; border-left: 3px solid var(--mint); background: rgba(65,213,199,.07); }
.portal-availability p { margin-bottom: 0; color: #b8c2d5; }
.portal-session { margin: 16px 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.portal-session div { padding: 12px; border: 1px solid var(--line-subtle); border-radius: 10px; }
.portal-session dt { color: #9fabc0; font-size: 13px; }
.portal-session dd { margin: 4px 0 0; overflow-wrap: anywhere; }

.legal-page { padding-bottom: 88px; }
.legal-version { width: min(1180px, calc(100% - 56px)); margin: -48px auto 42px; color: #aeb9ce; }
.legal-grid { width: min(1180px, calc(100% - 56px)); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.legal-grid article { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line-subtle); border-radius: 20px; background: var(--surface-glass); }
.legal-grid article > span { color: #61d9ff; font-size: 14px; font-weight: 800; letter-spacing: .08em; }
.legal-grid h2 { margin: 12px 0; font-size: clamp(24px, 3vw, 34px); line-height: 1.12; }
.legal-grid p { margin: 0; color: #b8c2d5; }
.legal-decision { width: min(1180px, calc(100% - 56px)); margin: 22px auto 0; padding: 22px 26px; border-left: 3px solid #ffb85c; background: rgba(255,184,92,.08); }
.legal-decision p { margin-bottom: 0; color: #d5dbea; }

@media (max-width: 1120px) {
  .route-home-hero { grid-template-columns: 1fr; }
  .route-home-hero__orchestration { width: min(700px, 100%); margin-inline: auto; }
  .portal-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: 52px; }
  .route-home-hero__content h1 { font-size: clamp(46px, 14vw, 66px); }
  .route-home-hero__orchestration { min-height: 560px; transform: scale(.88); transform-origin: center; }
  .auth-layout { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; margin-bottom: 64px; }
  .portal-area-grid { grid-template-columns: 1fr; }
  .portal-session, .legal-grid { grid-template-columns: 1fr; }
  .legal-version, .legal-grid, .legal-decision { width: min(100% - 28px, 1180px); }
}

/* GD8 Website V17 — bounded Owner visual/legal/FAQ correction layer. */

:root {
  --v17-z-content: 1;
  --v17-z-header: 300;
  --v17-z-menu: 320;
  --v17-z-chat: 400;
  --v17-header-offset: 112px;
}

html {
  scroll-padding-top: var(--v17-header-offset);
}

.route-app {
  overflow-x: clip;
}

section[id],
article[id],
div[id] {
  scroll-margin-top: var(--v17-header-offset);
}

.route-app .v12-header-wrap {
  position: sticky;
  top: 0;
  z-index: var(--v17-z-header);
  padding-top: 12px;
  isolation: isolate;
}

.v12-header {
  position: relative;
  z-index: var(--v17-z-header);
}

.product-mega-menu {
  z-index: var(--v17-z-menu);
}

.agentpro-chat {
  z-index: var(--v17-z-chat);
}

.route-home-hero.hero {
  margin-top: 18px;
  padding-top: clamp(54px, 6vw, 84px);
}

.route-home-hero .hero-kicker {
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  line-height: 1.35;
  white-space: normal;
}

.ecosystem-visual {
  width: min(1240px, calc(100% - 56px));
  margin: 92px auto 0;
  padding: clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  border: 1px solid rgba(132, 169, 239, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 77% 43%, rgba(69, 193, 255, .12), transparent 34%),
    linear-gradient(145deg, rgba(14, 24, 48, .82), rgba(7, 12, 27, .78));
}

.ecosystem-visual__copy h2 {
  max-width: 640px;
  margin: 18px 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.ecosystem-visual__copy > p:last-of-type {
  max-width: 640px;
  color: #b8c2d5;
  line-height: 1.7;
}

.ecosystem-map {
  min-height: 440px;
  position: relative;
  display: grid;
  place-items: center;
}

.ecosystem-map::before,
.ecosystem-map__orbit {
  content: "";
  width: min(390px, 82%);
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(105, 201, 255, .25);
  border-radius: 50%;
}

.ecosystem-map::before {
  width: min(270px, 58%);
  border-color: rgba(157, 124, 255, .28);
  box-shadow: 0 0 80px rgba(46, 117, 255, .12);
}

.ecosystem-map__core,
.ecosystem-map__node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(148, 183, 244, .25);
  background: rgba(8, 15, 32, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.ecosystem-map__core {
  width: 168px;
  aspect-ratio: 1;
  align-content: center;
  gap: 4px;
  border-radius: 50%;
  border-color: rgba(97, 217, 255, .58);
  box-shadow: 0 0 58px rgba(70, 176, 255, .19);
}

.ecosystem-map__core small,
.ecosystem-map__node span {
  color: #61d9ff;
  font: 800 10px/1.2 var(--font-geist-mono), monospace;
  letter-spacing: .12em;
}

.ecosystem-map__core strong { font-size: 23px; }
.ecosystem-map__core > span { color: #ad94ff; font-size: 14px; font-weight: 850; letter-spacing: .12em; }

.ecosystem-map__node {
  width: 134px;
  min-height: 72px;
  align-content: center;
  gap: 6px;
  border-radius: 16px;
}

.ecosystem-map__node strong { color: #f5f7ff; font-size: 13px; }
.ecosystem-map__node--chat { top: 3%; left: 50%; transform: translateX(-50%); }
.ecosystem-map__node--marketing { top: 50%; right: 0; transform: translateY(-50%); }
.ecosystem-map__node--monitoring { bottom: 3%; left: 50%; transform: translateX(-50%); }
.ecosystem-map__node--accounting { top: 50%; left: 0; transform: translateY(-50%); }

.product-workflow {
  width: min(1180px, calc(100% - 56px));
  margin: 28px auto 0;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-accent, #61d9ff) 34%, transparent);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--product-accent, #61d9ff) 13%, transparent), transparent 32%),
    rgba(11, 19, 39, .78);
}

.product-workflow--chat { --product-accent: #33d6ff; }
.product-workflow--marketing { --product-accent: #9d7cff; }
.product-workflow--monitoring { --product-accent: #58deb2; }
.product-workflow--accounting { --product-accent: #ffb85c; }
.product-workflow--core { --product-accent: #7da2ff; }

.product-workflow figcaption {
  margin-bottom: 18px;
  color: color-mix(in srgb, var(--product-accent) 82%, white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.product-workflow__step {
  min-width: 0;
  min-height: 92px;
  position: relative;
  padding: 17px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(148, 177, 232, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.product-workflow__step > span {
  color: var(--product-accent);
  font: 800 10px/1 var(--font-geist-mono), monospace;
}

.product-workflow__step > strong { font-size: clamp(13px, 1.2vw, 16px); line-height: 1.35; }
.product-workflow__step > i { position: absolute; top: 50%; right: -10px; z-index: 2; color: var(--product-accent); font-style: normal; transform: translateY(-50%); }
.product-workflow--compact { width: 100%; margin: 4px 0 28px; }

.home-faq,
.product-faq,
.faq-category-list,
.faq-support {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.home-faq { padding-top: 104px; padding-bottom: 104px; }
.home-faq .faq-accordion { margin-top: 32px; }
.home-faq > .route-text-link { margin-top: 22px; }
.product-faq { margin-top: 28px; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line-subtle); border-radius: 24px; background: rgba(10, 17, 34, .72); }
.product-faq > header { margin-bottom: 25px; }
.product-faq h2 { margin: 16px 0 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(143, 174, 235, .17);
  border-radius: 15px;
  background: rgba(255, 255, 255, .022);
  transition: border-color 160ms ease, background 160ms ease;
}

.faq-item--open {
  border-color: rgba(97, 217, 255, .36);
  background: rgba(53, 112, 199, .065);
}

.faq-item h3 { margin: 0; }
.faq-item button {
  width: 100%;
  min-height: 66px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #f5f7ff;
  font: 680 16px/1.45 var(--font-geist-sans), sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 208, 255, .32);
  border-radius: 50%;
  color: #61d9ff;
  font-style: normal;
  transition: transform 160ms ease;
}

.faq-item--open button i { transform: rotate(45deg); }
.faq-item button:focus-visible { outline: 2px solid #61d9ff; outline-offset: -3px; }
.faq-item [role="region"] { padding: 0 64px 21px 20px; }
.faq-item [role="region"] p { max-width: 900px; margin: 0; color: #b8c2d5; line-height: 1.7; }

.faq-page { padding-bottom: 96px; }
.faq-category-list { margin-top: 34px; display: grid; gap: 22px; }
.faq-category { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line-subtle); border-radius: 24px; background: rgba(10, 17, 34, .72); }
.faq-category > header { margin-bottom: 24px; display: grid; grid-template-columns: auto 1fr; gap: 18px; }
.faq-category > header > span { color: #61d9ff; font: 800 11px/1.2 var(--font-geist-mono), monospace; }
.faq-category h2 { margin: 0 0 8px; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -.04em; }
.faq-category header p { margin: 0; color: #aeb9ce; }
.faq-support { margin-top: 28px; padding: clamp(28px, 5vw, 52px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .65fr) auto; align-items: end; gap: 28px; border: 1px solid rgba(97, 217, 255, .25); border-radius: 24px; background: linear-gradient(135deg, rgba(31, 90, 170, .15), rgba(64, 37, 129, .12)); }
.faq-support h2 { margin: 16px 0 0; font-size: clamp(28px, 3.5vw, 44px); }
.faq-support > p { margin: 0; color: #b8c2d5; line-height: 1.65; }

.legal-page { padding-bottom: 96px; }
.legal-version { margin-top: 22px; margin-bottom: 22px; }
.legal-document {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 72px);
}

.legal-toc {
  max-height: calc(100dvh - 136px);
  position: sticky;
  top: 112px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid rgba(137, 170, 231, .17);
  border-radius: 17px;
  background: rgba(8, 14, 29, .82);
  scrollbar-width: thin;
}

.legal-toc > p { margin: 0 0 12px; color: #f6f8ff; font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.legal-toc nav,
.legal-toc-mobile nav { display: grid; gap: 3px; }
.legal-toc a,
.legal-toc-mobile a { padding: 8px 9px; display: grid; grid-template-columns: 25px 1fr; gap: 7px; border-radius: 8px; color: #9eabc1; font-size: 12px; line-height: 1.35; }
.legal-toc a span,
.legal-toc-mobile a span { color: #61d9ff; font: 760 9px/1.5 var(--font-geist-mono), monospace; }
.legal-toc a:hover,
.legal-toc a:focus-visible,
.legal-toc a[aria-current="location"] { background: rgba(68, 139, 234, .11); color: #fff; }
.legal-toc-mobile { display: none; }

.legal-article {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line-subtle);
  border-radius: 24px;
  background: rgba(9, 16, 32, .68);
}

.legal-article > section {
  padding: 0 0 36px;
  border-bottom: 1px solid rgba(139, 169, 225, .13);
}

.legal-article > section + section { padding-top: 36px; }
.legal-article > section:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-article header { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; align-items: start; }
.legal-article header span { padding-top: 7px; color: #61d9ff; font: 800 11px/1 var(--font-geist-mono), monospace; }
.legal-article h2 { margin: 0 0 15px; font-size: clamp(25px, 3vw, 34px); line-height: 1.15; letter-spacing: -.035em; }
.legal-article p,
.legal-article li { color: #bcc6d8; font-size: 16px; line-height: 1.75; }
.legal-article p { margin: 0 0 14px; }
.legal-article ul { margin: 12px 0 0 38px; padding-left: 20px; }
.legal-article__decision { margin-top: 20px !important; padding: 14px 16px; border-left: 3px solid #ffb85c; background: rgba(255, 184, 92, .08); color: #ffe0b3 !important; font: 760 12px/1.5 var(--font-geist-mono), monospace !important; }

.login-page .route-intro h1 { max-width: none; }

.industry-grid article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 217, 255, .25);
  border-radius: 12px;
  background: rgba(67, 136, 224, .08);
  color: #61d9ff;
  font-size: 18px;
}

@media (min-width: 1121px) {
  .login-page .route-intro h1 {
    font-size: clamp(48px, 5vw, 66px);
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  :root { --v17-header-offset: 104px; }
  .ecosystem-visual { grid-template-columns: 1fr; }
  .ecosystem-map { width: min(620px, 100%); margin-inline: auto; }
  .faq-support { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 960px) {
  :root { --v17-header-offset: 92px; }
  .route-app .v12-header-wrap { padding: 10px 14px 0; }
  .route-home-hero.hero { margin-top: 14px; padding-top: 54px; }
  .ecosystem-visual { width: min(100% - 28px, 1240px); margin-top: 64px; }
  .product-workflow,
  .home-faq,
  .product-faq,
  .faq-category-list,
  .faq-support,
  .legal-document { width: min(100% - 28px, 1180px); }
  .legal-document { grid-template-columns: 1fr; gap: 18px; }
  .legal-toc { display: none; }
  .legal-toc-mobile { display: block; border: 1px solid rgba(137, 170, 231, .18); border-radius: 14px; background: rgba(8, 14, 29, .82); }
  .legal-toc-mobile summary { padding: 16px 18px; color: #f4f7ff; font-weight: 750; cursor: pointer; }
  .legal-toc-mobile nav { max-height: 60dvh; overflow-y: auto; padding: 0 12px 14px; }
  .legal-toc-mobile a { font-size: 13px; }
}

@media (max-width: 720px) {
  .route-home-hero.hero { margin-top: 12px; padding-top: 48px; }
  .route-home-hero .hero-kicker { font-size: 10px; letter-spacing: .1em; }
  .ecosystem-visual { padding: 27px 20px; }
  .ecosystem-map { min-height: 350px; }
  .ecosystem-map__orbit { width: 270px; }
  .ecosystem-map::before { width: 190px; }
  .ecosystem-map__core { width: 128px; }
  .ecosystem-map__core strong { font-size: 18px; }
  .ecosystem-map__node { width: 104px; min-height: 61px; padding: 8px; }
  .ecosystem-map__node strong { font-size: 11px; }
  .ecosystem-map__node--marketing { right: -5px; }
  .ecosystem-map__node--accounting { left: -5px; }
  .product-workflow { padding: 18px; }
  .product-workflow__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-workflow__step > i { display: none; }
  .home-faq { padding-top: 72px; padding-bottom: 72px; }
  .product-faq,
  .faq-category { padding: 24px 18px; }
  .faq-item button { min-height: 62px; padding: 16px; font-size: 15px; }
  .faq-item [role="region"] { padding: 0 16px 18px; }
  .legal-article { padding: 28px 20px; }
  .legal-article header { grid-template-columns: 29px minmax(0, 1fr); }
  .legal-article ul { margin-left: 8px; }
  .industry-grid article > span { width: 38px; height: 38px; }
}

@media (max-width: 390px) {
  .ecosystem-map { min-height: 330px; }
  .ecosystem-map__orbit { width: 235px; }
  .ecosystem-map::before { width: 165px; }
  .ecosystem-map__core { width: 112px; }
  .ecosystem-map__node { width: 94px; }
  .product-workflow__track { grid-template-columns: 1fr; }
}

/* GD8 Website V18 — bounded FAQ/support interaction parity repair. */

.home-faq {
  padding-top: 68px;
  padding-bottom: 68px;
}

.home-faq .faq-accordion {
  margin-top: 22px;
}

.product-faq {
  padding: clamp(22px, 3.2vw, 34px);
}

.product-faq > header {
  margin-bottom: 18px;
}

.product-faq h2 {
  margin-top: 11px;
  font-size: clamp(25px, 3vw, 36px);
}

.faq-accordion {
  gap: 7px;
}

.faq-item button {
  min-height: 58px;
  padding: 13px 16px;
  gap: 14px;
  font-size: 15px;
  line-height: 1.42;
}

.faq-item button i {
  width: 25px;
  height: 25px;
  font-size: 17px;
}

.faq-item [role="region"] {
  padding: 0 51px 15px 16px;
}

.faq-item [role="region"] p {
  line-height: 1.58;
}

.faq-category-list {
  gap: 15px;
}

.faq-category {
  padding: clamp(21px, 3vw, 30px);
}

.faq-category > header {
  margin-bottom: 17px;
}

.faq-category h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 34px);
}

.faq-support {
  padding: clamp(22px, 3.5vw, 34px);
}

.faq-support h2 {
  margin-top: 11px;
  font-size: clamp(25px, 3vw, 36px);
}

.agentpro-chat,
.agentpro-chat__launcher,
.agentpro-chat__panel,
.agentpro-chat__close,
.agentpro-chat__form,
.agentpro-chat__form textarea,
.agentpro-chat__form button {
  pointer-events: auto;
}

.agentpro-chat__panel {
  position: relative;
  z-index: 1;
}

.agentpro-chat__panel[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .home-faq {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .product-faq,
  .faq-category {
    padding: 20px 16px;
  }

  .faq-item button {
    min-height: 56px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .faq-item [role="region"] {
    padding: 0 45px 14px 14px;
  }
}
