:root {
  --navy: #071d49;
  --navy-deep: #04102c;
  --navy-mid: #0f2e66;
  --blue: #5bc2e7;
  --blue-deep: #2fa3cc;
  --blue-soft: #b9e8f5;
  --wash: #cdedf7;
  --paper: #ffffff;
  --ink: #0b1730;
  --slate: #51607d;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(7, 29, 73, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Space Grotesk',sans-serif;
  -webkit-font-smoothing:antialiased;
} */
/* h1,h2,h3,h4{
  font-family:'Space Grotesk',sans-serif;
  margin:0;
  letter-spacing:-0.01em;
} */
/* p{margin:0;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;}
.mono{font-family:'IBM Plex Mono',monospace;}
img{display:block;max-width:100%;}
.wrap{max-width:1160px;margin:0 auto;padding:0 32px;}
section{position:relative;} */

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.hero-aide {
  background:
    radial-gradient(
      ellipse 900px 500px at 78% -10%,
      rgba(91, 194, 231, 0.18),
      transparent 60%
    ),
    var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 80px;
}
.hero-hex-aide {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: none;
  background-repeat: no-repeat;
  background-position: 130% top;
  background-size: auto 125%;
  opacity: 0.5;
}
.hero-aide .main-box-width {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-soft);
  border: 1px solid rgba(91, 194, 231, 0.4);
  background: rgba(91, 194, 231, 0.08);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(91, 194, 231, 0.28);
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 22px;
  color: #fff;
}
.hero-aide h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue-soft), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-aide p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: #c7d6ec;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  background: var(--blue);
  color: var(--navy);
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(91, 194, 231, 0.45);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-microcopy {
  font-size: 13px;
  color: #8ea2c0;
}

/* console */
.console {
  background: linear-gradient(180deg, #0c2454, var(--navy-deep));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.console-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.console-bar .r {
  background: #ff6b6b;
}
.console-bar .y {
  background: #ffd166;
}
.console-bar .g {
  background: #6ee7a7;
}
.console-title {
  margin-left: 8px;
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12px;
  color: #7d90b0;
  white-space: nowrap;
  overflow: hidden;
}
.console-body {
  padding: 22px 22px 24px;
  min-height: 290px;
}
.console-line {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 13.5px;
  line-height: 1.7;
  color: #dfe9f7;
  white-space: pre-wrap;
  word-break: break-word;
}
.console-prompt-label {
  color: var(--blue-soft);
}
.console-cursor {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: var(--blue);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.console-log {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.console-log .row {
  display: flex;
  align-items: center;
  gap: 10px;
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12.5px;
  color: #9fb2cf;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.console-log .row.show {
  opacity: 1;
  transform: translateX(0);
}
.console-log .row .tag {
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(91, 194, 231, 0.16);
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 600;
}
.console-log .row .ok {
  color: #6ee7a7;
}

/* ---------- STATS ---------- */
.stats {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 0px;
}
.stats .main-start-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 44px 32px;
}
.stat-aide {
  padding: 0 22px;
  border-left: 1px solid var(--line-dark);
}
.stat-aide:first-child {
  border-left: none;
  padding-left: 0;
}
.stat-aide .num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--blue-soft);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-aide .label {
  font-size: 13px;
  color: #a9bad6;
  margin-top: 6px;
  line-height: 1.4;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 76px 0;
}
.section.wash {
  background: var(--wash);
}
.section.tight {
  padding: 60px 0;
}
.section-tag {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.22;
}
.section-head p {
  font-size: 16.5px;
  color: var(--slate);
  margin-top: 14px;
  line-height: 1.65;
}

/* ---------- PILLARS (Discover / Build / Govern) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar-aide {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pillar-aide:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(7, 29, 73, 0.08);
}
.pillar-aide .k {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.pillar-aide h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.pillar-aide p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

/* ---------- FLOW ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 8px;
}
.flow-step {
  padding: 26px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line-light);
}
.flow-step .n {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 600;
}
.flow-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.flow-step p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.55;
}

/* ---------- AGENTS ---------- */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.agent-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 22px 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(7, 29, 73, 0.09);
  border-color: rgba(91, 194, 231, 0.45);
}
.agent-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue-soft);
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 14px;
}
.agent-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.agent-card p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
}

/* ---------- SOLUTIONS TABS ---------- */
.tabbar {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: 36px;
}
.tabbtn {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tabbtn.active {
  background: var(--navy);
  color: #fff;
}
.tabpanel {
  display: none;
}
.tabpanel.active {
  display: grid;
}
.uc-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.uc-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 26px 22px;
  background: #fff;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.uc-card:hover {
  border-color: rgba(91, 194, 231, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(7, 29, 73, 0.08);
}
.uc-card .tag {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 11px;
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.uc-card h4 {
  font-size: 17px;
  margin: 10px 0 10px;
  color: var(--ink);
}
.uc-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---------- ARCHITECTURE ---------- */
.arch-diagram {
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 30px;
  background: var(--wash);
}
.arch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.arch-col h5 {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-deep);
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}
.arch-box {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 12.5px;
  color: var(--ink);
  margin-bottom: 8px;
  text-align: center;
  font-weight: 500;
}
.arch-box.hi {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.arch-note {
  font-size: 12px;
  color: var(--slate);
  text-align: center;
  margin-top: 6px;
}
.arch-gov {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #dbe7f7;
  font-size: 12.5px;
  text-align: center;
  /* font-family: "IBM Plex Mono", monospace; */
  letter-spacing: 0.02em;
}

/* ---------- BENEFITS ---------- */
.bene-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bene-card {
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
}
.bene-card h4 {
  font-size: 17px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bene-card h4 .idx {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 12px;
  color: var(--blue-deep);
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(91, 194, 231, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.bene-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.9;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  gap: 20px;
}
.faq-q .plus {
  /* font-family: "IBM Plex Mono", monospace; */
  font-size: 20px;
  color: var(--blue-deep);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  padding: 0 0 22px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 680px;
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--navy), var(--navy-mid));
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.cta .wrap {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
}
.cta p {
  font-size: 16.5px;
  color: #c7d6ec;
  max-width: 520px;
  margin: 0 auto 34px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-aide .wrap {
    grid-template-columns: 1fr;
  }
  .stats .wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
  .stat-aide {
    border-left: none;
    padding-left: 0;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-step:not(:last-child)::after {
    display: none;
  }
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .uc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .arch-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .bene-grid {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-search {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .foot-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .foot-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding: 0 20px;
  }
  .hero-aide h1 {
    font-size: 32px;
  }
  .stats .wrap {
    grid-template-columns: 1fr;
  }
  .agent-grid {
    grid-template-columns: 1fr;
  }
  .uc-grid {
    grid-template-columns: 1fr !important;
  }
  .arch-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .cta h2 {
    font-size: 26px;
  }
  .foot-main {
    grid-template-columns: 1fr;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav .logo img {
    height: 30px;
  }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 84px;
  z-index: 99;
  background: var(--navy-deep);
  overflow-y: auto;
  padding: 20px 24px 40px;
}
.mobile-menu.open {
  display: block;
}
.mm-item {
  border-bottom: 1px solid var(--line-dark);
}
.mm-item summary {
  padding: 16px 4px;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mm-item summary::-webkit-details-marker {
  display: none;
}
.mm-item[open] summary .caret {
  transform: rotate(180deg);
}
.mm-item .caret {
  color: var(--blue);
  font-size: 11px;
  transition: transform 0.2s ease;
}
.mm-links {
  padding: 0 4px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mm-links a {
  color: #cfe0f5;
  font-size: 14.5px;
}
.mm-item.simple a {
  display: block;
  padding: 16px 4px;
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
}
