:root {
  --ink: #071426;
  --muted: #5c6b7d;
  --line: #d9e2ec;
  --soft: #f5f8fb;
  --soft-2: #edf4f8;
  --blue: #0d4ca3;
  --blue-2: #08264b;
  --teal: #00b7a6;
  --teal-2: #00d4c0;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(7, 20, 38, .16);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,20,38,.96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: 0; }
.brand-symbol-img { width: 66px; height: 30px; display: block; object-fit: contain; }
.brand-mark {
  position: relative;
  width: 48px;
  height: 28px;
  display: inline-block;
}
.brand-mark span {
  position: absolute;
  inset: 3px 0;
  border: 7px solid var(--teal);
  border-left-color: var(--blue);
  border-radius: 50%;
  transform: rotate(35deg);
  opacity: .96;
}
.brand-mark span:last-child {
  transform: rotate(-35deg);
  border-left-color: var(--teal);
  border-right-color: var(--blue);
}
.brand-name { font-size: 26px; color: var(--white); }
.brand-name .flow-part, .brand-name span { color: var(--teal); }
.brand-name .stack-part, .text-brand .stack-part { color: #fff; }
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.desktop-nav ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-button {
  border: 0;
  background: transparent;
  padding: 14px 11px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
  cursor: pointer;
}
.nav-button:after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-item { position: relative; height: 92px; display: flex; align-items: center; }
.nav-item:after { content: ""; position: absolute; left: -8px; right: -8px; top: 100%; height: 14px; }
.mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: min(760px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, visibility .16s ease;
}
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega-intro { background: linear-gradient(145deg, var(--blue-2), #0e5a79); color: white; padding: 22px; border-radius: var(--radius); }
.mega-intro p, .section-head p, .eyebrow { margin: 0 0 10px; color: var(--teal); text-transform: uppercase; font-size: 12px; font-weight: 850; letter-spacing: .09em; }
.mega-intro h3 { margin: 0; font-size: 24px; line-height: 1.12; }
.mega-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.mega-links a { padding: 12px; border-radius: var(--radius); border: 1px solid transparent; }
.mega-links a:hover { border-color: var(--line); background: var(--soft); }
.mega-links strong { display: block; font-size: 14px; }
.mega-links span { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; margin-top: 4px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.plain-link { font-weight: 750; color: rgba(255,255,255,.86); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 7px;
  font-weight: 850;
  border: 1px solid transparent;
  white-space: nowrap;
}
.button-primary { background: var(--teal); color: #062032; box-shadow: 0 12px 30px rgba(0,183,166,.28); }
.button-light { background: var(--ink); color: white; }
.button-outline { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.08); }
.section .button-outline, .page-hero .button-outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--ink); border-radius: 7px; padding: 11px; }
.mobile-toggle span { display: block; height: 2px; background: white; margin: 5px 0; }
.mobile-nav { display: none; border-top: 1px solid var(--line); padding: 16px; background: white; }
.mobile-nav a, .mobile-nav summary { display: block; padding: 12px 4px; font-weight: 800; }
.mobile-nav details a { color: var(--muted); padding-left: 14px; font-weight: 650; }
.hero {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
  padding: 74px 0;
}
.hero-home {
  width: 100%;
  max-width: none;
  padding: 86px max(16px, calc((100% - 1220px)/2));
  background: radial-gradient(circle at 80% 20%, rgba(0,183,166,.2), transparent 35%), linear-gradient(135deg, #071426 0%, #0b3a73 55%, #008978 100%);
  color: white;
}
.page-hero { color: white; background: linear-gradient(135deg, #071426, #0c4d91 62%, #00a895); max-width: none; width: 100%; padding: 72px max(16px, calc((100% - 1220px)/2)); }
.page-hero.compact { min-height: 520px; }
.contact-hero { color: white; background: linear-gradient(135deg, #071426, #0c4d91 62%, #00a895); max-width: none; width: 100%; padding: 72px max(16px, calc((100% - 1220px)/2)); min-height: calc(100vh - 92px); }
h1 { font-size: clamp(44px, 7vw, 88px); line-height: .95; letter-spacing: 0; margin: 0 0 24px; max-width: 920px; }
h2 { font-size: clamp(31px, 4vw, 58px); line-height: 1.02; margin: 0; letter-spacing: 0; }
h3 { letter-spacing: 0; }
.lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.55; max-width: 760px; color: rgba(255,255,255,.82); margin: 0 0 28px; }
.section .lead, .page-hero + .section .lead { color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-visual {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 420px;
}
.visual-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}
.visual-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.visual-top span:first-child { background: #ff6868; }
.visual-top span:nth-child(2) { background: #ffc857; }
.visual-top span:nth-child(3) { background: var(--teal); }
.visual-top strong { margin-left: 10px; }
.visual-top em { margin-left: auto; color: var(--teal); font-style: normal; font-size: 12px; font-weight: 850; }
.visual-grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: 14px; padding: 16px; }
.visual-panel { min-height: 148px; border: 1px solid var(--line); border-radius: 8px; padding: 16px; background: white; }
.visual-panel.wide { grid-row: span 2; }
.panel-title { color: var(--muted); font-size: 12px; text-transform: uppercase; font-weight: 850; letter-spacing: .08em; margin-bottom: 14px; }
.timeline { display: grid; grid-template-columns: 12px 1fr; gap: 13px 12px; }
.timeline p { margin: 0; color: #25384e; line-height: 1.4; }
.timeline span { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; }
.ok { background: var(--teal); }
.warn { background: #ffc857; }
.gauge { height: 108px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(0,183,166,.14), rgba(13,76,163,.12)); text-align: center; }
.gauge b { display: block; font-size: 46px; color: var(--blue); }
.gauge span { display: block; color: var(--muted); }
.node-map { position: relative; height: 112px; background: radial-gradient(circle, rgba(0,183,166,.1), transparent 55%); }
.node-map:before, .node-map:after { content: ""; position: absolute; inset: 50% 10% auto 10%; height: 1px; background: var(--line); transform: rotate(16deg); }
.node-map:after { transform: rotate(-18deg); }
.node-map i { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); border: 4px solid #dff9f6; }
.node-map i:nth-child(1) { left: 8%; top: 30%; }
.node-map i:nth-child(2) { left: 34%; top: 12%; background: var(--teal); }
.node-map i:nth-child(3) { left: 52%; top: 52%; }
.node-map i:nth-child(4) { left: 78%; top: 24%; background: var(--teal); }
.node-map i:nth-child(5) { left: 64%; top: 74%; }
.visual-panel button { width: 100%; height: 38px; border: 0; border-radius: 7px; background: var(--teal); color: #062032; font-weight: 850; margin-bottom: 10px; }
.visual-panel button.secondary { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.workflow-visual { min-height: 470px; }
.workflow-screen { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr); gap: 14px; padding: 16px; }
.workflow-main-panel, .workflow-side-panel { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 16px; min-width: 0; }
.workflow-heading { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: start; margin-bottom: 14px; }
.workflow-heading span { grid-column: 1 / -1; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.workflow-heading strong { color: var(--ink); font-size: 18px; line-height: 1.15; }
.workflow-heading em { color: var(--teal); font-style: normal; font-size: 12px; font-weight: 850; white-space: nowrap; }
.workflow-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fbfdff; }
.workflow-row { display: grid; grid-template-columns: 82px minmax(0, 1fr) 74px 58px; gap: 10px; align-items: center; min-height: 44px; padding: 9px 12px; border-top: 1px solid var(--line); font-size: 13px; }
.workflow-row:first-child { border-top: 0; }
.workflow-row-head { min-height: 34px; background: #f1f6fb; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 850; }
.workflow-row b { color: var(--ink); white-space: nowrap; }
.workflow-row span { color: #25384e; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.workflow-row small { justify-self: start; min-width: 54px; border-radius: 999px; padding: 5px 8px; text-align: center; font-size: 10px; font-weight: 850; color: var(--ink); }
.workflow-row small.danger { color: #8a1f1f; background: #ffe7e7; }
.workflow-row small.warn { color: #684100; background: #fff2c7; }
.workflow-row small.teal { color: #005f57; background: #dff9f6; }
.workflow-row small.blue { color: #073b7c; background: #e4efff; }
.workflow-row em { color: var(--muted); font-style: normal; font-size: 12px; text-align: right; white-space: nowrap; }
.workflow-context { margin-top: 14px; border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: linear-gradient(135deg, rgba(0,183,166,.08), rgba(13,76,163,.06)); }
.workflow-context h4 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.workflow-context p { position: relative; margin: 8px 0 0; padding-left: 18px; color: #25384e; line-height: 1.35; font-size: 13px; }
.workflow-context p:before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.workflow-side-panel { display: grid; gap: 14px; align-content: start; }
.workflow-side-panel > * { min-width: 0; max-width: 100%; }
.workflow-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; width: 100%; min-width: 0; }
.workflow-metrics div { border: 1px solid var(--line); border-radius: 8px; padding: 10px; background: #fbfdff; min-height: 72px; display: grid; align-content: center; min-width: 0; overflow: hidden; }
.workflow-metrics b { color: var(--blue); font-size: clamp(18px, 1.6vw, 23px); line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.workflow-metrics span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 850; margin-top: 6px; }
.workflow-mini { border: 1px solid var(--line); border-radius: 8px; min-height: 160px; background: #fbfdff; position: relative; overflow: hidden; width: 100%; max-width: 100%; min-width: 0; }
.workflow-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 12px; }
.workflow-kanban span { border-radius: 8px; background: white; border: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 850; display: grid; place-items: start center; padding-top: 12px; position: relative; }
.workflow-kanban span:after { content: ""; width: 70%; height: 48px; border-radius: 7px; background: linear-gradient(145deg, rgba(0,183,166,.18), rgba(13,76,163,.12)); margin-top: 12px; }
.workflow-topology:before, .workflow-topology:after { content: ""; position: absolute; left: 14%; right: 14%; top: 48%; height: 1px; background: #bfd2e6; transform: rotate(20deg); }
.workflow-topology:after { transform: rotate(-18deg); }
.workflow-topology i { position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); border: 5px solid #dff9f6; box-shadow: 0 8px 18px rgba(13,76,163,.18); }
.workflow-topology i:nth-child(1) { left: 13%; top: 36%; }
.workflow-topology i:nth-child(2) { left: 33%; top: 18%; background: var(--teal); }
.workflow-topology i:nth-child(3) { left: 52%; top: 50%; }
.workflow-topology i:nth-child(4) { left: 76%; top: 28%; background: var(--teal); }
.workflow-topology i:nth-child(5) { left: 64%; top: 72%; }
.workflow-topology i:nth-child(6) { left: 42%; top: 72%; background: #ffc857; }
.workflow-cloud-map { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 14px; background: radial-gradient(circle at 72% 18%, rgba(0,183,166,.18), transparent 34%), #fbfdff; }
.workflow-cloud-map span { border-radius: 8px; border: 1px solid var(--line); background: white; color: #25384e; font-size: 12px; font-weight: 850; padding: 12px; display: flex; align-items: end; min-height: 62px; }
.workflow-cloud-map span:nth-child(2), .workflow-cloud-map span:nth-child(3) { background: #f1f8ff; }
.workflow-bars { display: flex; align-items: end; gap: 12px; padding: 16px; }
.workflow-bars span { flex: 1; min-width: 0; height: var(--h); min-height: 36px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--teal), var(--blue)); display: flex; align-items: start; justify-content: center; padding-top: 8px; color: white; font-size: 11px; font-weight: 850; }
.workflow-audit { display: grid; gap: 10px; padding: 14px; }
.workflow-audit span { position: relative; border: 1px solid var(--line); border-radius: 8px; background: white; color: #25384e; min-height: 26px; padding: 10px 12px 10px 38px; font-size: 12px; font-weight: 850; }
.workflow-audit span:before { content: ""; position: absolute; left: 14px; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); transform: translateY(-50%); box-shadow: 0 0 0 5px #dff9f6; }
.workflow-audit span:not(:last-child):after { content: ""; position: absolute; left: 20px; top: 31px; width: 1px; height: 20px; background: var(--line); }
.workflow-actions { display: grid; gap: 9px; width: 100%; max-width: 100%; min-width: 0; }
.workflow-actions button { width: 100%; max-width: 100%; min-width: 0; min-height: 38px; border: 0; border-radius: 7px; background: var(--teal); color: #062032; font-weight: 850; white-space: normal; }
.workflow-actions button.secondary { background: var(--soft); color: var(--ink); border: 1px solid var(--line); }
.metric-band {
  width: min(1050px, calc(100% - 32px));
  margin: -32px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
}
.metric-band div { padding: 26px; border-right: 1px solid var(--line); }
.metric-band div:last-child { border-right: 0; }
.metric-band strong { display: block; color: var(--blue); font-size: 34px; }
.metric-band span { color: var(--muted); }
.section {
  padding: 86px max(16px, calc((100% - 1220px)/2));
  scroll-margin-top: 160px;
}
.section.dark {
  background: #061c35;
  color: white;
}
.section.dark .section-head span, .section.dark p { color: rgba(255,255,255,.72); }
.section-head { margin-bottom: 34px; max-width: 880px; }
.section-head span { display: block; color: var(--muted); margin-top: 14px; line-height: 1.55; }
.architecture { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.architecture article { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 22px; min-height: 230px; }
.architecture span { color: var(--teal); font-weight: 900; }
.architecture h3 { font-size: 28px; margin: 38px 0 12px; }
.architecture p { line-height: 1.5; }
.agent-grid, .card-grid, .capability-grid, .resource-grid, .story-grid, .listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.agent-grid article, .info-card, .capability-grid article, .resource-grid article, .story-grid article, .listing-card {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 26px;
  min-height: 230px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.agent-grid article:hover, .listing-card:hover, .resource-grid article:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(7,20,38,.1); }
.card-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(0,183,166,.16), rgba(13,76,163,.12)); color: var(--blue); border: 1px solid rgba(0,183,166,.3); border-radius: 8px; margin-bottom: 24px; }
.card-icon svg { width: 28px; height: 28px; display: block; color: currentColor; }
.agent-grid article:nth-child(odd) .card-icon, .info-card:nth-child(odd) .card-icon { color: var(--teal); }
.agent-grid h3, .info-card h3, .resource-grid h3, .story-grid h3, .listing-card h2, .capability-grid h3 { font-size: 24px; line-height: 1.15; margin: 0 0 12px; }
.agent-grid p, .info-card p, .resource-grid p, .story-grid p, .listing-card p, .capability-grid p { color: var(--muted); line-height: 1.55; }
.agent-grid a, .resource-grid a, .story-grid a, .capability-grid a, .listing-card b { color: var(--blue); font-weight: 850; }
.split-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.workflow-section { grid-template-columns: .62fr 1.38fr; }
.split-section > div:first-child p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.65; }
.solution-tabs { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: var(--soft); }
.solution-tabs > button {
  border: 0;
  background: transparent;
  padding: 12px 14px;
  border-radius: 7px;
  font-weight: 850;
  cursor: pointer;
}
.solution-tabs > button.active { background: var(--ink); color: white; }
.tab-panels article { display: none; padding: 22px; }
.tab-panels article.active { display: block; }
.tab-panels .product-visual { margin-top: 18px; min-height: 360px; transform: none; transform-origin: top center; }
.proof-section { background: var(--soft); }
.story-grid article strong { display: block; font-size: 42px; color: var(--blue); margin-top: 28px; }
.story-grid article span { color: var(--muted); }
.news-section { background: #fbfdff; }
.page-hero .product-visual, .contact-hero .contact-form { align-self: stretch; }
.subnav {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  gap: 22px;
  padding: 14px max(16px, calc((100% - 1220px)/2));
  background: white;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.subnav a { font-weight: 800; color: #244059; white-space: nowrap; }
.mini-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-tabs span, .integration-grid span { display: inline-flex; min-height: 44px; align-items: center; padding: 0 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }
.integration-grid { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.listing-card span, .resource-grid span, .story-grid p { color: var(--teal); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-grid article { border: 1px solid var(--line); border-radius: 8px; padding: 28px; background: white; }
.pricing-grid h2 { font-size: 32px; }
.pricing-grid strong { display: block; font-size: 24px; margin: 20px 0; }
.pricing-grid span { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); }
.pricing-grid .button { margin-top: 20px; width: 100%; }
.rendering-section { background: #f7fbff; }
.platform-rendering { margin: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.platform-rendering img { width: 100%; display: block; }
.platform-rendering figcaption { padding: 16px 20px; color: var(--muted); font-size: 14px; line-height: 1.5; background: white; }
.comparison-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: white; margin-bottom: 28px; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 780px; }
.comparison-table th { text-align: left; background: #071426; color: white; padding: 18px; font-size: 14px; }
.comparison-table th:nth-child(2) { color: var(--teal); }
.comparison-table td { padding: 18px; border-top: 1px solid var(--line); color: #25384e; line-height: 1.5; vertical-align: top; }
.comparison-table td:first-child { font-weight: 850; color: var(--ink); }
.compare-links { margin-top: 28px; }
.roi-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: stretch; background: var(--soft); }
.roi-form, .roi-results, .contact-form { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: 0 18px 50px rgba(7,20,38,.08); }
label { display: grid; gap: 8px; color: var(--ink); font-weight: 800; margin-bottom: 16px; }
input, select, textarea { width: 100%; border: 1px solid #cbd6e2; border-radius: 7px; padding: 13px 14px; color: var(--ink); background: white; }
.roi-results { display: grid; align-content: center; }
.roi-results span { color: var(--muted); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.roi-results strong { font-size: clamp(44px, 8vw, 90px); color: var(--blue); }
.roi-results.detailed { align-content: start; gap: 18px; }
.roi-results.detailed > p { color: var(--muted); line-height: 1.6; margin: 0; }
.roi-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.roi-kpi-grid div { background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.roi-kpi-grid b { display: block; color: var(--blue); font-size: 24px; }
.roi-kpi-grid small { color: var(--muted); text-transform: uppercase; font-weight: 850; letter-spacing: .06em; }
.roi-breakdown { border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #fff; }
.roi-breakdown h3 { margin: 0 0 12px; }
.roi-breakdown dl { display: grid; gap: 10px; margin: 0; }
.roi-breakdown dl div { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 10px; }
.roi-breakdown dt { color: var(--muted); font-weight: 750; }
.roi-breakdown dd { margin: 0; color: var(--ink); font-weight: 900; }
.roi-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.roi-actions .button:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; max-width: 900px; }
.faq summary { font-size: 20px; font-weight: 900; cursor: pointer; }
.faq p { color: var(--muted); line-height: 1.6; }
.platform-flow-section { max-width: none; background: #06384A; color: white; overflow: hidden; padding: 0; }
.platform-flow-inner { max-width: none; margin: 0 auto; }
.platform-flow-image-wrap { margin: 0 auto; max-width: 1518px; line-height: 0; }
.platform-flow-img { display: block; width: 100%; height: auto; border: 0; }
.platform-flow-section .section-head { margin-left: auto; margin-right: auto; text-align: center; max-width: 900px; }
.platform-flow-section .section-head h2 { color: white; }
.platform-flow-section .section-head span { color: rgba(255,255,255,.72); }
.platform-flow-visual { position: relative; min-height: 620px; margin: 42px auto 0; border-radius: 8px; isolation: isolate; }
.flow-ribbon { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ribbon-shadow { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 104; stroke-linecap: round; stroke-linejoin: round; }
.ribbon-main { fill: none; stroke: url(#flowRibbon); stroke-width: 78; stroke-linecap: round; stroke-linejoin: round; filter: url(#flowGlow); opacity: .95; }
.ribbon-highlight { fill: none; stroke: rgba(255,255,255,.72); stroke-width: 8; stroke-linecap: round; opacity: .72; }
.ribbon-thread { fill: none; stroke: rgba(255,255,255,.48); stroke-width: 2; stroke-linecap: round; opacity: .7; }
.flow-stars path { fill: white; opacity: .9; }
.flow-node { fill: white; stroke: rgba(255,255,255,.26); stroke-width: 22; }
.flow-core { position: absolute; z-index: 2; left: 50%; top: 52%; transform: translate(-50%, -50%); width: min(620px, calc(100% - 220px)); text-align: center; padding: 18px 28px; border-radius: 999px; border: 1px solid rgba(0,212,192,.75); background: linear-gradient(90deg, rgba(13,76,163,.72), rgba(6,28,53,.86), rgba(0,183,166,.34)); box-shadow: 0 22px 70px rgba(0,0,0,.26), inset 0 0 24px rgba(255,255,255,.08); }
.flow-core strong { display: block; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.05; }
.flow-core span { display: block; margin-top: 6px; color: #BFEFEA; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.flow-team-card { position: absolute; z-index: 3; width: 260px; padding: 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,.18); background: rgba(6,28,53,.78); backdrop-filter: blur(12px); box-shadow: 0 22px 60px rgba(0,0,0,.22); }
.flow-team-left { left: 7%; top: 310px; }
.flow-team-right { right: 7%; top: 310px; }
.flow-team-card span { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: linear-gradient(90deg, #0D4CA3, #00B7A6); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.flow-team-card b { display: block; margin-top: 14px; font-size: 21px; line-height: 1.1; }
.flow-team-card small { display: block; margin-top: 9px; color: rgba(255,255,255,.72); line-height: 1.45; font-size: 13px; }
.flow-label { position: absolute; z-index: 3; display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.1); color: white; box-shadow: 0 16px 40px rgba(0,0,0,.16); font-weight: 900; }
.flow-label:before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: white; box-shadow: 0 0 0 8px rgba(255,255,255,.2); margin-right: 10px; }
.flow-label-itsm { left: 6%; top: 128px; }
.flow-label-itom { right: 6%; top: 128px; }
.flow-label-cloud { left: 26%; bottom: 48px; }
.flow-label-finops { right: 26%; bottom: 48px; }
.flow-label-governance { left: 50%; top: 62px; transform: translateX(-50%); }
.flow-label-security { left: 50%; bottom: 92px; transform: translateX(-50%); background: rgba(0,183,166,.18); }
.site-footer { background: #061c35; color: white; padding: 48px max(16px, calc((100% - 1220px)/2)); }
.footer-cta { display: flex; justify-content: space-between; gap: 24px; align-items: center; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); border-radius: 8px; padding: 28px; margin-bottom: 44px; }
.footer-cta p { color: var(--teal); margin: 0 0 8px; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.footer-cta h2 { font-size: 34px; }
.footer-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: minmax(210px, 1.25fr) repeat(6, minmax(125px, 1fr)); gap: 24px; align-items: start; }
.footer-brand .brand-symbol-img { width: 76px; height: 36px; }
.footer-brand p { color: rgba(255,255,255,.68); line-height: 1.6; margin-top: 16px; }
.footer-grid h3 { color: white; margin: 0 0 14px; font-size: 15px; }
.footer-grid a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: 13px; line-height: 1.35; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.13); margin-top: 36px; padding-top: 22px; font-size: 14px; }
.footer-bottom a { color: inherit; }
.site-footer .brand-name { color: white; }
[data-browser="safari"] .product-visual { transform: translateZ(0); }
[data-device="mobile"] .hero { min-height: auto; }
@media (max-width: 1100px) {
  .desktop-nav, .plain-link { display: none; }
  .mobile-toggle { display: block; }
  .nav-shell { height: 74px; }
  .brand-symbol-img { width: 50px; height: 25px; }
  body.mobile-open .mobile-nav { display: block; }
  .hero, .page-hero, .contact-hero, .split-section, .roi-section { grid-template-columns: 1fr; }
  .page-hero, .contact-hero, .hero-home { padding-top: 52px; }
  .architecture, .metric-band, .agent-grid, .card-grid, .capability-grid, .resource-grid, .story-grid, .pricing-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .platform-flow-visual { min-height: 560px; }
  .flow-core { width: min(560px, calc(100% - 160px)); }
  .flow-team-card { width: 230px; }
  .flow-team-left { left: 4%; }
  .flow-team-right { right: 4%; }
  .workflow-screen { grid-template-columns: 1fr; }
  .workflow-side-panel { grid-template-columns: 1fr 1fr; }
  .workflow-actions { grid-column: 1 / -1; }
  .hero { gap: 28px; }
}
@media (max-width: 720px) {
  .nav-shell { width: min(100% - 20px, 1220px); gap: 10px; }
  .brand-mark { width: 40px; }
  .brand-symbol-img { width: 44px; height: 23px; }
  .brand-name { font-size: 20px; }
  .brand-name { font-size: 20px; }
  .button { min-height: 42px; padding: 0 13px; }
  .nav-actions { margin-left: auto; }
  .nav-actions .button-light { display: inline-flex; }
  h1 { font-size: clamp(40px, 14vw, 58px); }
  h2 { font-size: clamp(30px, 9vw, 42px); }
  .hero, .page-hero, .contact-hero, .hero-home { padding-left: 16px; padding-right: 16px; }
  .product-visual { min-height: 360px; }
  .visual-grid { grid-template-columns: 1fr; }
  .visual-panel.wide { grid-row: auto; }
  .visual-top { padding: 0 12px; }
  .visual-top strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .visual-top em { display: none; }
  .solution-tabs { padding: 8px; }
  .solution-tabs > button { padding: 10px 8px; font-size: 13px; }
  .tab-panels article { padding: 14px 8px; }
  .tab-panels .product-visual { transform: none; }
  .workflow-visual { min-height: 0; }
  .workflow-screen { padding: 10px; }
  .workflow-main-panel, .workflow-side-panel { padding: 12px; }
  .workflow-heading { grid-template-columns: 1fr; }
  .workflow-heading em { white-space: normal; }
  .workflow-row { grid-template-columns: 1fr auto; gap: 6px 8px; padding: 10px; }
  .workflow-row-head { display: none; }
  .workflow-row b, .workflow-row span { grid-column: 1 / -1; }
  .workflow-row span { white-space: normal; }
  .workflow-row em { text-align: left; }
  .workflow-side-panel { grid-template-columns: 1fr; }
  .workflow-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .workflow-metrics div { min-height: 64px; padding: 8px; }
  .workflow-metrics b { font-size: 18px; }
  .workflow-mini { min-height: 132px; }
  .workflow-kanban, .workflow-cloud-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-flow-section { padding: 0; }
  .platform-flow-image-wrap { max-width: 100%; }
  .platform-flow-visual { display: flex; flex-direction: column; min-height: 0; gap: 12px; margin-top: 26px; }
  .flow-ribbon { position: relative; inset: auto; height: 320px; min-height: 320px; order: 1; }
  .flow-core { position: relative; left: auto; top: auto; transform: none; width: auto; margin: -118px 8px 0; order: 2; border-radius: 8px; padding: 16px; }
  .flow-core strong { font-size: 25px; }
  .flow-team-card { position: relative; left: auto; right: auto; top: auto; width: auto; order: 3; margin: 0 8px; }
  .flow-label { position: static; transform: none; order: 4; align-self: flex-start; margin: 2px 8px; min-height: 30px; font-size: 13px; }
  .flow-label:before { width: 9px; height: 9px; box-shadow: 0 0 0 6px rgba(255,255,255,.18); }
  .metric-band { grid-template-columns: 1fr 1fr; margin-top: 0; border-radius: 0; width: 100%; }
  .metric-band div { padding: 18px; }
  .section { padding: 58px 16px; }
  .architecture, .agent-grid, .card-grid, .capability-grid, .resource-grid, .story-grid, .listing-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .roi-kpi-grid { grid-template-columns: 1fr 1fr; }
  .subnav { top: 74px; padding-left: 16px; padding-right: 16px; }
  .footer-cta, .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}