:root {
  --bg: #eef5ff;
  --paper: #ffffff;
  --paper-2: #e7f0ff;
  --ink: #091521;
  --muted: #64748b;
  --line: #cbd9ef;
  --dark: #07111f;
  --dark-2: #0d2138;
  --green: #1f7bff;
  --mint: #b8dcff;
  --cyan: #48d5ff;
  --amber: #f0b64b;
  --blue: #125cff;
  --blue-2: #0a3da8;
  --steel: #d8e7fb;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(18, 72, 150, .18);
  --container: 1280px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(237, 244, 240, .95), rgba(244, 247, 245, 0) 560px),
    var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 225, .88);
  background: rgba(244, 247, 245, .88);
  backdrop-filter: blur(16px);
}

.header-inner,
.section,
.section-wide,
.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--dark);
}

.main-nav {
  display: flex;
  gap: 22px;
  color: #35423e;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 760;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 26, 23, .1);
}

.btn-dark {
  color: #fff;
  border-color: var(--dark);
  background: var(--dark);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .8fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: 68px 0 54px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: #33403c;
  font-size: 19px;
  line-height: 1.72;
}

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

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

.hero-proof div {
  min-height: 108px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.hero-proof strong {
  display: block;
  font-size: 18px;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  padding: 22px;
  border: 1px solid rgba(220, 229, 225, .98);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 244, 240, .92)),
    repeating-linear-gradient(90deg, rgba(17, 26, 23, .045) 0 1px, transparent 1px 68px);
  box-shadow: var(--shadow);
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.visual-top b {
  color: var(--green);
}

.agent-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.node {
  min-height: 154px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .8);
}

.node.primary {
  color: #ecfff8;
  border-color: rgba(255, 255, 255, .12);
  background: var(--dark);
}

.node span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 780;
}

.node strong {
  display: block;
  font-size: 16px;
}

.node p {
  margin: 8px 0 0;
  color: inherit;
  opacity: .76;
  font-size: 13px;
  line-height: 1.5;
}

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

.visual-metrics div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.visual-metrics small,
.visual-metrics b {
  display: block;
}

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

.anchor-band {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 0 28px;
}

.anchor-band a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #36433f;
  background: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 720;
}

.section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr);
  gap: 44px;
}

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

.section-label {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 780;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

.section-head p:not(.section-label),
.rich-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.rich-text p:first-child {
  margin-top: 0;
}

.card-grid {
  display: grid;
  gap: 14px;
}

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

.card {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(20, 34, 29, .055);
}

.card.compact {
  min-height: 168px;
}

.card p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  color: #ecfff7;
  background: var(--dark);
}

.dark-section .section-head p,
.dark-section .timeline p {
  color: rgba(236, 255, 247, .72);
}

.dark-section .section-label {
  color: var(--mint);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.timeline article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.timeline p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.58;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.table-row {
  display: grid;
  grid-template-columns: 180px 1fr 1.25fr;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.table-row:first-child { border-top: 0; }

.table-row span:first-child {
  color: var(--ink);
  font-weight: 780;
}

.table-head {
  color: #ecfff7;
  background: var(--dark-2);
}

.table-head span {
  color: #ecfff7 !important;
}

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

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.metric strong {
  display: block;
  font-size: 26px;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.checklist div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.checklist b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  min-height: 64px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

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

.glossary-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.glossary-grid strong,
.glossary-grid span {
  display: block;
}

.glossary-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.semantic-map {
  background: linear-gradient(180deg, rgba(237, 244, 240, .8), rgba(244, 247, 245, 0));
}

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

.topic-columns div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
}

.topic-columns p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  margin-bottom: 72px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cta-section h2 {
  font-size: 30px;
}

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

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  max-width: 560px;
}

.footer-inner nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: flex-start;
}

@media (max-width: 1100px) {
  .hero,
  .section-split {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .metric-grid,
  .glossary-grid,
  .checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section,
  .section-wide,
  .footer-inner {
    width: min(100% - 28px, var(--container));
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-proof,
  .agent-flow,
  .visual-metrics,
  .cards-3,
  .cards-4,
  .metric-grid,
  .faq-list,
  .glossary-grid,
  .checklist,
  .topic-columns {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .footer-inner {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Studio blue redesign layer */
body {
  background:
    radial-gradient(circle at 72% 10%, rgba(72, 213, 255, .24), transparent 30vw),
    radial-gradient(circle at 18% 0%, rgba(31, 123, 255, .18), transparent 34vw),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 44%, #f8fbff 100%);
}

.site-header {
  border-bottom-color: rgba(151, 177, 219, .35);
  background: rgba(247, 251, 255, .76);
  box-shadow: 0 10px 30px rgba(13, 33, 56, .06);
}

.brand-mark {
  background: linear-gradient(135deg, #0a3da8, #1f7bff 58%, #48d5ff);
  box-shadow: 0 12px 26px rgba(31, 123, 255, .26);
}

.main-nav a {
  position: relative;
  color: #294362;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .18s ease, transform .18s ease;
}

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

.btn-dark {
  border-color: #0b46c6;
  background: linear-gradient(135deg, #082c77, #125cff 72%, #48d5ff);
  box-shadow: 0 16px 38px rgba(18, 92, 255, .24);
}

.btn-light {
  border-color: rgba(18, 92, 255, .24);
  color: #0b3171;
  background: rgba(255, 255, 255, .78);
}

.hero {
  position: relative;
  isolation: isolate;
  padding-top: 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 32px -24px auto -24px;
  height: 78%;
  z-index: -1;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, .04), rgba(31, 123, 255, .08)),
    repeating-linear-gradient(90deg, rgba(11, 70, 198, .07) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(11, 70, 198, .055) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.hero h1 {
  color: #07111f;
  text-wrap: balance;
}

.hero-lead {
  color: #334c6d;
}

.hero-proof div,
.card,
.metric,
.glossary-grid div,
.topic-columns div,
details,
.compare-table,
.checklist div,
.cta-section {
  border-color: rgba(133, 166, 217, .38);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 54px rgba(20, 68, 135, .08);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  position: relative;
  overflow: hidden;
}

.hero-proof div::before,
.card::before,
.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  opacity: .72;
}

.hero-proof div,
.card,
.metric {
  position: relative;
}

.section {
  border-top-color: rgba(151, 177, 219, .36);
}

.section-label {
  color: #125cff;
}

.anchor-band {
  padding-top: 6px;
}

.anchor-band a {
  border-color: rgba(31, 123, 255, .2);
  color: #173f79;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(18, 92, 255, .07);
}

.anchor-band a:hover {
  border-color: rgba(31, 123, 255, .52);
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 24px;
  border-color: rgba(96, 165, 250, .34);
  color: #eaf6ff;
  background:
    radial-gradient(circle at 50% 45%, rgba(72, 213, 255, .22), transparent 24%),
    radial-gradient(circle at 78% 20%, rgba(31, 123, 255, .34), transparent 30%),
    linear-gradient(145deg, #07111f, #0d2138 58%, #06101d);
  box-shadow: 0 34px 100px rgba(7, 17, 31, .34), 0 0 0 1px rgba(255, 255, 255, .04) inset;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 54px);
  opacity: .55;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 220, 255, .16);
  border-radius: 12px;
  pointer-events: none;
}

.visual-top {
  position: relative;
  z-index: 2;
  color: rgba(234, 246, 255, .76);
}

.visual-top b {
  color: #a9e8ff;
}

.hero-visual .agent-flow {
  position: relative;
  z-index: 2;
}

.hero-visual .agent-flow .node:not(.primary) {
  color: #0b2a4c;
  border-color: rgba(159, 220, 255, .36);
  background:
    linear-gradient(135deg, rgba(234, 246, 255, .96), rgba(199, 228, 255, .86)),
    repeating-linear-gradient(90deg, rgba(18, 92, 255, .11) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(18, 92, 255, .08) 0 1px, transparent 1px 22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .88),
    0 18px 42px rgba(7, 17, 31, .18);
}

.hero-visual .agent-flow .node:not(.primary) span {
  color: #eaf6ff;
  background: linear-gradient(135deg, #125cff, #48d5ff);
  box-shadow: 0 10px 24px rgba(18, 92, 255, .26);
}

.automation-canvas {
  position: relative;
  z-index: 1;
  height: 430px;
  margin-top: 14px;
  border: 1px solid rgba(184, 220, 255, .14);
  border-radius: 12px;
  background:
    radial-gradient(circle at center, rgba(31, 123, 255, .28), transparent 34%),
    rgba(255, 255, 255, .035);
  overflow: hidden;
}

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

.flow-path {
  fill: none;
  stroke: rgba(93, 205, 255, .52);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
  animation: dashFlow 9s linear infinite;
  filter: drop-shadow(0 0 8px rgba(72, 213, 255, .45));
}

.path-two { animation-duration: 10.5s; }
.path-three { animation-duration: 8.2s; }
.path-four { animation-duration: 11.4s; }
.path-five { animation-duration: 7.5s; }

.data-packet {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ee7ff;
  box-shadow: 0 0 16px rgba(126, 231, 255, .95), 0 0 34px rgba(18, 92, 255, .56);
  offset-path: path("M92 88 C185 92 214 174 304 205");
  animation: packetMove 4.8s linear infinite;
}

.packet-two {
  offset-path: path("M522 88 C435 98 405 170 316 205");
  animation-delay: -1.1s;
  animation-duration: 5.8s;
}

.packet-three {
  offset-path: path("M96 330 C182 308 219 256 304 225");
  animation-delay: -2s;
  animation-duration: 5.2s;
}

.packet-four {
  offset-path: path("M520 330 C430 306 402 260 316 225");
  animation-delay: -3s;
  animation-duration: 6.2s;
}

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

.bot-core::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 213, 255, .34), rgba(31, 123, 255, .1) 58%, transparent 70%);
  animation: corePulse 3.4s ease-in-out infinite;
}

.bot-orbit {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(184, 220, 255, .5);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.bot-face {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  width: 74px;
  height: 58px;
  padding: 18px;
  border: 1px solid rgba(184, 220, 255, .32);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(184, 220, 255, .88));
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}

.bot-face span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b46c6;
  box-shadow: 0 0 12px rgba(18, 92, 255, .8);
  animation: botBlink 5s ease-in-out infinite;
}

.flow-node {
  position: absolute;
  z-index: 4;
  width: 150px;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid rgba(184, 220, 255, .28);
  border-radius: 10px;
  color: #eaf6ff;
  background: rgba(8, 25, 50, .76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.flow-node small {
  display: block;
  color: #9fdcff;
  font-size: 11px;
  font-weight: 780;
}

.flow-node strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.node-requests { left: 28px; top: 40px; }
.node-knowledge { right: 28px; top: 40px; }
.node-system { left: 32px; bottom: 46px; }
.node-analytics { right: 32px; bottom: 46px; }
.node-result { left: 50%; bottom: 18px; transform: translateX(-50%); }

.visual-metrics {
  position: relative;
  z-index: 2;
  margin-top: 14px;
}

.visual-metrics div {
  border-color: rgba(184, 220, 255, .16);
  color: #eaf6ff;
  background: rgba(255, 255, 255, .08);
}

.visual-metrics small {
  color: rgba(234, 246, 255, .64);
}

.visual-metrics b {
  color: #9fdcff;
}

.dark-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(72, 213, 255, .18), transparent 28vw),
    linear-gradient(145deg, #07111f, #0d2138 64%, #08192f);
}

.timeline article {
  border-color: rgba(184, 220, 255, .18);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.timeline span,
.checklist b {
  color: #06101d;
  background: linear-gradient(135deg, #b8dcff, #48d5ff);
}

.table-head {
  background: linear-gradient(135deg, #07111f, #0d3d91);
}

.metric strong {
  color: #0b46c6;
}

.semantic-map {
  background:
    radial-gradient(circle at 80% 8%, rgba(72, 213, 255, .12), transparent 30vw),
    linear-gradient(180deg, rgba(231, 240, 255, .74), rgba(248, 251, 255, 0));
}

.site-footer {
  border-top-color: rgba(151, 177, 219, .34);
  background: #07111f;
}

.footer-inner,
.footer-inner a {
  color: rgba(234, 246, 255, .78);
}

.footer-inner strong {
  color: #fff;
}

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

@keyframes packetMove {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes corePulse {
  0%, 100% { transform: scale(.92); opacity: .72; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

@keyframes botBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.16); }
}

@media (max-width: 1100px) {
  .hero-visual {
    min-height: 560px;
  }

  .automation-canvas {
    height: 390px;
  }
}

@media (max-width: 760px) {
  .hero::before {
    inset: 14px -14px auto -14px;
  }

  .hero-visual {
    min-height: 520px;
    padding: 16px;
  }

  .automation-canvas {
    height: 360px;
  }

  .flow-node {
    width: 124px;
    min-height: 66px;
    padding: 10px;
  }

  .flow-node strong {
    font-size: 14px;
  }

  .node-requests,
  .node-system {
    left: 12px;
  }

  .node-knowledge,
  .node-analytics {
    right: 12px;
  }

  .bot-core {
    width: 110px;
    height: 110px;
  }

  .node-result {
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-path,
  .data-packet,
  .bot-core::before,
  .bot-orbit,
  .bot-face span {
    animation: none !important;
  }

  .data-packet {
    opacity: .55;
  }
}
