:root {
  --bg: #07111d;
  --bg-soft: #0d1c2f;
  --surface: #10263f;
  --surface-strong: #183b61;
  --surface-glass: rgba(10, 27, 47, 0.82);
  --line: rgba(113, 167, 223, 0.34);
  --line-strong: rgba(132, 205, 255, 0.65);
  --text: #f4f8ff;
  --text-muted: #b9c9dc;
  --accent: #38c6ff;
  --accent-strong: #168bd8;
  --mint: #64f1c8;
  --amber: #ffd166;
  --ink: #001525;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 198, 255, 0.2), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(100, 241, 200, 0.13), transparent 30%),
    linear-gradient(180deg, #07111d 0%, #0a1524 44%, #07111d 100%);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 2000;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(6, 21, 37, 0.96);
  color: var(--text);
  transform: translateY(-170%);
  transition: transform 0.2s ease;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(119, 166, 212, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 166, 212, 0.11) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 76px 0;
}

.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 43, 72, 0.44), rgba(8, 20, 35, 0.1)),
    rgba(9, 24, 42, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(5, 13, 24, 0.72);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 27, 47, 0.9), rgba(6, 18, 33, 0.84));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--accent));
  box-shadow: 0 0 18px rgba(56, 198, 255, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-nav a {
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  background: rgba(26, 65, 105, 0.46);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(119, 169, 224, 0.62);
  border-radius: 999px;
  color: var(--text);
  background: rgba(13, 34, 58, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button.small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #6df4d3 0%, #38c6ff 52%, #66a6ff 100%);
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(56, 198, 255, 0.28);
}

.button.secondary {
  background: linear-gradient(160deg, rgba(34, 89, 137, 0.84), rgba(12, 45, 80, 0.8));
}

.button.ghost {
  background: transparent;
}

.hero {
  padding-top: 94px;
}

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

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

.hero-logo-strip {
  display: flex;
  margin-bottom: 18px;
}

.hero-logo {
  width: 170px;
  height: auto;
  padding: 6px;
  border: 1px solid rgba(135, 178, 226, 0.45);
  border-radius: 14px;
  background: #eef3fb;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.badge,
.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.12;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
}

.subtitle {
  max-width: 68ch;
  margin: 20px 0 28px;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.trust-points,
.gov-list,
.modern-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.trust-points li::before,
.gov-list li::before,
.modern-list li::before {
  content: "+ ";
  color: var(--mint);
  font-weight: 800;
}

.hero-panel,
.card,
.workflow,
.capacity-card,
.industry-card,
.robot-card,
.software-preview,
.cta-layout,
.modern-card,
.metric-card,
.step,
.modern-rail-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-glass);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(17, 56, 92, 0.92), rgba(6, 18, 33, 0.92)),
    radial-gradient(circle at 84% 8%, rgba(100, 241, 200, 0.24), transparent 34%);
}

.panel-kicker {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.robot-console {
  display: grid;
  gap: 16px;
}

.robot-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(100, 241, 200, 0.4);
  border-radius: 999px;
  color: #dcfff4;
  background: rgba(12, 58, 50, 0.44);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(100, 241, 200, 0.6);
  animation: askAgentPulse 1.9s ease-out infinite;
}

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

.panel-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(116, 171, 229, 0.28);
  border-radius: 12px;
  background: rgba(7, 22, 39, 0.74);
}

.tag {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(56, 198, 255, 0.15);
  color: #c7f2ff;
  font-size: 0.74rem;
  font-weight: 800;
}

.panel-list em {
  color: var(--text-muted);
  font-style: normal;
}

.console-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.console-metrics article {
  padding: 14px;
  border: 1px solid rgba(116, 171, 229, 0.3);
  border-radius: 12px;
  background: rgba(8, 25, 43, 0.7);
}

.console-metrics span {
  display: block;
  color: var(--accent);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.console-metrics small {
  color: var(--text-muted);
}

.section-head {
  max-width: 78ch;
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 24ch;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.section-head p,
.card p,
.capacity-card p,
.industry-card p,
.robot-card p,
.cta-layout p,
.workflow li {
  color: var(--text-muted);
}

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

.capacity-card {
  min-height: 250px;
  padding: 20px;
  background:
    linear-gradient(165deg, rgba(14, 42, 70, 0.9), rgba(7, 21, 38, 0.82)),
    radial-gradient(circle at 80% 0%, rgba(56, 198, 255, 0.18), transparent 40%);
}

.capacity-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 12px rgba(56, 198, 255, 0.35));
}

.capacity-card h3,
.industry-card h3,
.robot-card h3,
.card h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

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

.industry-card {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(170deg, rgba(13, 38, 64, 0.92), rgba(7, 22, 39, 0.82)),
    radial-gradient(circle at 88% 10%, rgba(255, 209, 102, 0.12), transparent 40%);
}

.industry-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--amber);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.robot-layout,
.governance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: start;
}

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

.robot-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(160deg, rgba(13, 37, 63, 0.88), rgba(6, 20, 36, 0.82));
}

.robot-card.active {
  border-color: rgba(100, 241, 200, 0.62);
  background: linear-gradient(160deg, rgba(18, 70, 85, 0.92), rgba(7, 26, 43, 0.86));
}

.robot-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--mint), var(--accent));
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

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

.card {
  min-height: 158px;
  padding: 22px;
  background: linear-gradient(165deg, rgba(14, 38, 64, 0.86), rgba(8, 24, 42, 0.76));
}

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

.step {
  min-height: 92px;
  padding: 18px;
  font-weight: 800;
  background: linear-gradient(150deg, rgba(12, 36, 62, 0.88), rgba(7, 22, 39, 0.8));
}

.workflow {
  padding: 24px;
}

.workflow h3 {
  margin-bottom: 14px;
}

.workflow ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.software-preview {
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(11, 34, 58, 0.92), rgba(5, 18, 32, 0.88));
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--lift-y));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.software-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(116, 171, 229, 0.28);
  border-radius: 12px;
}

.cta-block {
  padding-top: 58px;
  padding-bottom: 92px;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(24, 72, 112, 0.72), rgba(7, 22, 39, 0.9)),
    radial-gradient(circle at 88% 0%, rgba(100, 241, 200, 0.18), transparent 38%);
}

.cta-layout h2 {
  max-width: 20ch;
  margin-bottom: 12px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  padding: 6px;
  border: 1px solid rgba(135, 178, 226, 0.42);
  border-radius: 12px;
  background: #eef3fb;
}

.footer-links {
  margin: 8px 0 0;
}

.footer-links a {
  color: #d8edff;
  text-underline-offset: 3px;
}

.edge-ai {
  position: fixed;
  top: 118px;
  bottom: 38px;
  z-index: 1;
  width: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 16px;
  pointer-events: none;
}

.edge-ai-left {
  left: max(12px, calc((100vw - 1160px) / 2 - 184px));
}

.edge-ai-right {
  right: max(12px, calc((100vw - 1160px) / 2 - 184px));
}

.ai-symbol-card {
  position: relative;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(104, 158, 216, 0.34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(9, 31, 53, 0.84), rgba(6, 19, 35, 0.76));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0.86;
  animation: floatDrift 8s ease-in-out infinite;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.ai-symbol-card:nth-child(2) {
  animation-delay: 1.4s;
}

.ai-symbol-card:nth-child(3) {
  animation-delay: 2.8s;
}

.ai-symbol-card::before {
  content: "";
  position: absolute;
  inset: -30% 20%;
  background: radial-gradient(circle, rgba(56, 198, 255, 0.24), transparent 70%);
  animation: ambientSweep 7.5s ease-in-out infinite;
}

.ai-symbol-card.is-active {
  border-color: rgba(132, 205, 255, 0.86);
  box-shadow: 0 0 30px rgba(56, 198, 255, 0.38), 0 16px 34px rgba(0, 0, 0, 0.3);
}

.ai-symbol-media {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 8px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.25s ease;
}

.ai-symbol-media img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(56, 198, 255, 0.38));
  animation: symbolBreath 3.2s ease-in-out infinite;
}

.ai-symbol-pulse {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(100, 241, 200, 0.44);
  border-radius: 14px;
  opacity: 0.3;
  animation: pulseRing 2.8s ease-out infinite;
}

.ai-symbol-scan {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 14px;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(56, 198, 255, 0), rgba(126, 238, 255, 0.9), rgba(56, 198, 255, 0));
  opacity: 0;
  filter: blur(0.6px);
  animation: scanLine 3.6s linear infinite;
}

.ai-symbol-card figcaption {
  color: rgba(205, 225, 245, 0.96);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.platform-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.platform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.82);
  backdrop-filter: blur(5px);
}

.platform-modal__panel {
  position: relative;
  width: min(1420px, 94vw);
  max-height: calc(100vh - 52px);
  overflow: auto;
  border: 1px solid rgba(126, 177, 232, 0.54);
  border-radius: 16px;
  background: linear-gradient(180deg, #0e2239 0%, #071426 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.platform-modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 24, 42, 0.94);
}

.platform-modal__header h2 {
  font-size: 1.06rem;
}

.platform-modal__close {
  padding: 8px 14px;
  border: 1px solid rgba(126, 177, 232, 0.65);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.platform-modal__image {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

:where(a, button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid #8ee8ff;
  outline-offset: 2px;
}

.ai-dynamic-image {
  --image-flash-offset: 0s;
  transform-origin: center center;
  will-change: transform, filter;
  animation:
    aiImageFloat 5.8s ease-in-out infinite,
    aiImageGlow 4s ease-in-out infinite,
    aiImageFlashCycle 3.8s steps(1, end) infinite var(--image-flash-offset);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ai-dynamic-image.is-flashing {
  filter: brightness(1.25) saturate(1.22) contrast(1.04)
    drop-shadow(0 0 20px rgba(89, 211, 255, 0.72));
  transform: translate3d(0, -4px, 0) scale(1.02);
}

.modern-visual,
.modern-ai-features-card,
.software-preview {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
}

.modern-visual.is-live,
.modern-ai-features-card.is-live,
.software-preview.is-live {
  border-color: rgba(120, 214, 255, 0.72);
  box-shadow: 0 0 24px rgba(50, 178, 255, 0.33), 0 20px 42px rgba(0, 0, 0, 0.34);
}

.ai-flash-shell {
  position: relative;
}

.ai-flash-shell::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: -16%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27, 170, 255, 0), rgba(123, 236, 255, 0.9), rgba(27, 170, 255, 0));
  filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ai-flash-shell.is-flashing {
  border-color: rgba(124, 224, 255, 0.74);
  box-shadow: 0 0 0 1px rgba(119, 218, 255, 0.45),
    0 0 30px rgba(62, 183, 255, 0.28), 0 18px 38px rgba(0, 0, 0, 0.34);
}

.ai-flash-shell.is-flashing::before {
  animation: aiFlashScan 0.62s ease-out;
}

.ask-agent-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ask-agent-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  padding: 12px 16px;
  border: 1px solid rgba(100, 169, 233, 0.7);
  border-radius: 999px;
  color: #f3fbff;
  background: linear-gradient(135deg, #1ba8f4, #0d6fca 60%, #224fe0 100%);
  box-shadow: 0 10px 28px rgba(8, 43, 78, 0.5);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.ask-agent-fab-pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #b9f1ff;
  animation: askAgentPulse 1.9s ease-out infinite;
}

.ask-agent-panel {
  width: min(94vw, 420px);
  max-height: min(84vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(95, 151, 214, 0.64);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(10, 24, 46, 0.97), rgba(6, 17, 32, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.ask-agent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(92, 145, 209, 0.35);
  background: rgba(8, 20, 39, 0.86);
}

.ask-agent-kicker {
  margin: 0 0 6px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ask-agent-header h2 {
  margin: 0;
  font-size: 1.08rem;
}

.ask-agent-close,
.ask-agent-action-button,
.ask-agent-submit,
.ask-agent-calendar-link,
.ask-agent-send {
  border: 1px solid rgba(99, 150, 212, 0.65);
  border-radius: 10px;
  color: var(--text);
  background: rgba(8, 26, 49, 0.9);
  font: inherit;
  font-weight: 800;
}

.ask-agent-close {
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.ask-agent-content {
  max-height: min(73vh, 680px);
  overflow: auto;
  padding: 14px 16px 16px;
}

.ask-agent-actions,
.ask-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ask-agent-actions {
  margin-bottom: 12px;
}

.ask-agent-action-button,
.ask-agent-submit,
.ask-agent-send {
  cursor: pointer;
}

.ask-agent-chat-log {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.ask-agent-message {
  padding: 10px 11px;
  border: 1px solid rgba(95, 151, 213, 0.37);
  border-radius: 12px;
}

.ask-agent-message-role {
  margin: 0 0 6px;
  color: #8bc8ec;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ask-agent-message-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.ask-agent-message-user {
  background: rgba(21, 67, 112, 0.58);
}

.ask-agent-message-assistant {
  background: rgba(8, 37, 67, 0.66);
}

.ask-agent-question-form {
  margin-bottom: 12px;
}

.ask-agent-question-form label,
.ask-agent-lead-form label {
  display: grid;
  gap: 5px;
  color: #9ecfe9;
  font-size: 0.84rem;
  font-weight: 700;
}

.ask-agent-question-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.ask-agent-question-row textarea,
.ask-agent-lead-form input,
.ask-agent-lead-form select,
.ask-agent-lead-form textarea {
  padding: 10px;
  border: 1px solid rgba(95, 150, 208, 0.5);
  border-radius: 10px;
  color: var(--text);
  background: rgba(8, 28, 49, 0.8);
  font: inherit;
}

.ask-agent-question-row textarea {
  min-height: 48px;
  resize: vertical;
}

.ask-agent-send,
.ask-agent-submit {
  padding: 0 14px;
  background: linear-gradient(130deg, #1aa0e9, #0d70ca 78%);
}

.ask-agent-copilot-wrap {
  margin-bottom: 12px;
  padding: 11px;
  border: 1px solid rgba(96, 151, 213, 0.4);
  border-radius: 12px;
  background: rgba(10, 29, 52, 0.7);
}

.ask-agent-subtitle {
  margin: 0 0 8px;
  color: #d9f2ff;
  font-weight: 800;
}

.ask-agent-copilot-frame {
  width: 100%;
  height: 210px;
  border: 1px solid rgba(96, 153, 212, 0.5);
  border-radius: 10px;
  background: rgba(3, 12, 24, 0.6);
}

.ask-agent-open-copilot {
  display: inline-flex;
  margin-top: 8px;
  color: #8fd6ff;
  font-size: 0.84rem;
}

.ask-agent-lead-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.ask-agent-message-field {
  grid-column: 1 / -1;
}

.ask-agent-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ask-agent-privacy-note,
.ask-agent-status {
  color: #86b8d8;
  font-size: 0.78rem;
}

.ask-agent-status[data-state="success"] {
  color: var(--mint);
}

.ask-agent-status[data-state="error"] {
  color: #ff9bb0;
}

.ask-agent-status[data-state="warning"] {
  color: #ffd88a;
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ambientSweep {
  0%,
  100% {
    transform: translateX(-20%) translateY(-6%);
    opacity: 0.16;
  }
  50% {
    transform: translateX(24%) translateY(8%);
    opacity: 0.42;
  }
}

@keyframes symbolBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.94);
    opacity: 0.56;
  }
  70% {
    transform: scale(1.08);
    opacity: 0.12;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  8% {
    opacity: 0.72;
  }
  60% {
    transform: translateY(34px);
    opacity: 0.55;
  }
  100% {
    transform: translateY(42px);
    opacity: 0;
  }
}

@keyframes askAgentPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 241, 255, 0.45);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(157, 241, 255, 0);
  }
}

@keyframes aiImageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.012);
  }
}

@keyframes aiImageGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(88, 203, 255, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(88, 203, 255, 0.36));
  }
}

@keyframes aiImageFlashCycle {
  0%,
  78%,
  100% {
    filter: brightness(1) saturate(1) contrast(1);
  }
  80% {
    filter: brightness(1.22) saturate(1.22) contrast(1.04)
      drop-shadow(0 0 16px rgba(89, 211, 255, 0.65));
  }
  84% {
    filter: brightness(1.16) saturate(1.2) contrast(1.03)
      drop-shadow(0 0 11px rgba(89, 211, 255, 0.42));
  }
}

@keyframes aiFlashScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 0.82;
  }
  75% {
    transform: translateY(240%);
    opacity: 0.45;
  }
  100% {
    transform: translateY(300%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1460px) {
  .edge-ai {
    display: none;
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .robot-layout,
  .governance-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    order: 3;
    width: 100%;
    padding-bottom: 12px;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding-top: 10px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
    max-width: 12ch;
  }

  .subtitle {
    font-size: 1rem;
  }

  .brand {
    white-space: normal;
  }

  .button.small {
    width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: visible;
    flex-wrap: wrap;
    padding-bottom: 12px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .capacity-grid,
  .industry-grid,
  .capability-grid,
  .pipeline,
  .console-metrics {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .card,
  .capacity-card,
  .industry-card,
  .workflow,
  .cta-layout {
    padding: 18px;
  }

  .robot-card {
    grid-template-columns: 1fr;
  }

  .platform-modal {
    padding: 14px;
  }

  .platform-modal__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ask-agent-root {
    right: 10px;
    left: 10px;
    bottom: 10px;
    align-items: stretch;
  }

  .ask-agent-fab,
  .ask-agent-panel {
    width: 100%;
  }

  .ask-agent-actions,
  .ask-agent-grid,
  .ask-agent-question-row {
    grid-template-columns: 1fr;
  }

  .ask-agent-send {
    min-height: 42px;
  }
}
