:root {
  --background: #061226;
  --foreground: #f7faff;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

.amb-site {
  --amb-navy-1000: #030b18;
  --amb-navy-950: #061226;
  --amb-navy-900: #081a34;
  --amb-blue: #2376ff;
  --amb-blue-dark: #0f5ce8;
  --amb-cyan: #22c7df;
  --amb-green: #18a96f;
  --amb-ink: #10233f;
  --amb-muted: #617089;
  --amb-line: #dce4ee;
  --amb-surface: #ffffff;
  --amb-soft: #f5f8fc;
  min-height: 100vh;
  overflow: hidden;
  background: var(--amb-navy-950);
  color: #f7faff;
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

.amb-site .amb-shell {
  width: min(calc(100% - 48px), 1240px);
  margin-inline: auto;
}

.amb-site .amb-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(183, 207, 240, 0.13);
  background: rgba(6, 18, 38, 0.74);
  backdrop-filter: blur(18px);
}

.amb-site .amb-header__inner {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

.amb-site .amb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.amb-site .amb-brand__mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(91, 210, 234, 0.45);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(42, 125, 255, 0.95), rgba(17, 196, 218, 0.72));
  box-shadow: 0 6px 20px rgba(23, 112, 230, 0.32);
}

.amb-site .amb-brand__mark i {
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.amb-site .amb-brand__mark i:last-child { transform: rotate(90deg); }

.amb-site .amb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
}

.amb-site .amb-nav a {
  color: #aebed4;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.amb-site .amb-nav a:hover { color: #fff; }

.amb-site .amb-language {
  position: relative;
}

.amb-site .amb-language__trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(183, 207, 240, .2);
  border-radius: 9px;
  padding: 0 11px;
  color: #dce8f7;
  background: rgba(255, 255, 255, .035);
  font: inherit;
  cursor: pointer;
}

.amb-site .amb-language__trigger > span {
  color: #55cee3;
  font-size: 16px;
}

.amb-site .amb-language__trigger strong {
  font-size: 10px;
  letter-spacing: .08em;
}

.amb-site .amb-language__trigger i {
  width: 6px;
  height: 6px;
  border-right: 1px solid #8da2bd;
  border-bottom: 1px solid #8da2bd;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.amb-site .amb-language[data-open="true"] .amb-language__trigger i {
  transform: translateY(2px) rotate(225deg);
}

.amb-site .amb-language__trigger:focus-visible,
.amb-site .amb-language__options a:focus-visible {
  outline: 3px solid rgba(34, 199, 223, .68);
  outline-offset: 2px;
}

.amb-site .amb-language__options {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 205px;
  overflow: hidden;
  border: 1px solid rgba(174, 203, 239, .22);
  border-radius: 12px;
  padding: 7px;
  background: rgba(5, 17, 35, .98);
  box-shadow: 0 22px 55px rgba(0, 5, 16, .42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.amb-site .amb-language[data-open="true"] .amb-language__options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.amb-site .amb-language__options a {
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  padding: 10px;
  color: #afc0d6;
  text-decoration: none;
}

.amb-site .amb-language__options a:hover,
.amb-site .amb-language__options a[aria-current="page"] {
  color: #fff;
  background: rgba(35, 118, 255, .13);
}

.amb-site .amb-language__options a > span {
  color: #65a9ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.amb-site .amb-language__options a > strong {
  font-size: 11px;
  font-weight: 650;
}

.amb-site .amb-language__options a > i {
  color: #53d8a8;
  font-size: 10px;
  font-style: normal;
}

.amb-site .amb-header__cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(89, 158, 255, 0.55);
  border-radius: 9px;
  padding: 0 15px;
  color: #fff;
  background: rgba(35, 118, 255, 0.13);
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
}

.amb-site .amb-menu-toggle { display: none; }

.amb-site .amb-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 142px 0 78px;
  background:
    radial-gradient(circle at 50% 17%, rgba(35, 118, 255, 0.23), transparent 31%),
    radial-gradient(circle at 8% 48%, rgba(34, 199, 223, 0.08), transparent 23%),
    linear-gradient(180deg, #061226 0%, #071831 61%, #091a31 100%);
}

.amb-site .amb-hero::before {
  position: absolute;
  z-index: -1;
  top: -225px;
  left: 50%;
  width: 860px;
  height: 520px;
  border: 1px solid rgba(89, 150, 255, 0.14);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.amb-site .amb-hero::after {
  position: absolute;
  z-index: -1;
  top: 110px;
  left: 50%;
  width: 1px;
  height: 440px;
  background: linear-gradient(transparent, rgba(74, 147, 255, 0.26), transparent);
  content: "";
}

.amb-site .amb-hero__copy {
  width: min(100%, 940px);
  margin: 0 auto;
  text-align: center;
}

.amb-site .amb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b9c9df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.amb-site .amb-eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amb-cyan);
  box-shadow: 0 0 0 5px rgba(34, 199, 223, 0.11), 0 0 22px rgba(34, 199, 223, 0.55);
}

.amb-site .amb-hero__copy h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(49px, 5.8vw, 76px);
  font-weight: 680;
  letter-spacing: -0.058em;
  line-height: 1.015;
  text-wrap: balance;
}

.amb-site .amb-hero__copy h1 em {
  color: #a9d5ff;
  font-style: normal;
  font-weight: 560;
}

.amb-site .amb-hero__lead {
  max-width: 760px;
  margin: 27px auto 0;
  color: #c3cee0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
  text-wrap: balance;
}

.amb-site .amb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 33px;
}

.amb-site .amb-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.amb-site .amb-button:hover { transform: translateY(-2px); }
.amb-site .amb-button:focus-visible,
.amb-site .amb-nav a:focus-visible,
.amb-site .amb-header__cta:focus-visible { outline: 3px solid rgba(34, 199, 223, 0.72); outline-offset: 3px; }
.amb-site .amb-button--primary { color: #fff; background: linear-gradient(135deg, #2684ff, var(--amb-blue-dark)); box-shadow: 0 12px 30px rgba(15, 92, 232, 0.28); }
.amb-site .amb-button--secondary { border-color: rgba(198, 216, 241, 0.32); color: #f5f8ff; background: rgba(255, 255, 255, 0.035); }
.amb-site .amb-button--secondary:hover { border-color: rgba(198, 216, 241, 0.62); background: rgba(255, 255, 255, 0.07); }
.amb-site .amb-play { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 8px; }

.amb-site .amb-proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 25px;
  margin: 34px auto 0;
  padding: 0;
  color: #e0e8f5;
  font-size: 13px;
  list-style: none;
}

.amb-site .amb-proof-list li { display: flex; align-items: center; gap: 8px; }
.amb-site .amb-proof-list li::before { display: grid; width: 19px; height: 19px; flex: 0 0 19px; place-items: center; border: 1px solid rgba(34, 199, 223, 0.7); border-radius: 50%; color: var(--amb-cyan); content: "✓"; font-size: 11px; font-weight: 900; }
.amb-site .amb-hero__note { margin: 16px 0 0; color: #8192ab; font-size: 12px; line-height: 1.6; }

.amb-site .amb-product-view { position: relative; margin: 55px 0 0; }
.amb-site .amb-product-view::before { position: absolute; z-index: -1; top: -65px; left: 8%; width: 84%; height: 76%; border-radius: 50%; background: rgba(35, 118, 255, 0.2); content: ""; filter: blur(80px); }
.amb-site .amb-product-view__caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 4px 13px; color: #9dafc6; font-style: normal; }
.amb-site .amb-product-view__caption > span { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.amb-site .amb-product-view__caption > span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--amb-cyan); content: ""; }
.amb-site .amb-product-view__caption small { font-size: 11px; }

.amb-site .amb-dashboard { overflow: hidden; border: 1px solid rgba(198, 216, 241, 0.38); border-radius: 18px; color: var(--amb-ink); background: var(--amb-surface); box-shadow: 0 32px 90px rgba(0, 5, 18, 0.48), 0 3px 12px rgba(0, 8, 31, 0.14); animation: amb-dashboard-float 7s ease-in-out infinite; }
.amb-site .amb-dashboard__topbar { display: grid; min-height: 57px; grid-template-columns: 110px 1fr auto; align-items: center; border-bottom: 1px solid var(--amb-line); padding: 0 19px; background: #fbfdff; }
.amb-site .amb-window-dots { display: flex; gap: 6px; }
.amb-site .amb-window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.amb-site .amb-window-dots i:first-child { background: #ff846e; }
.amb-site .amb-window-dots i:nth-child(2) { background: #f6bf4f; }
.amb-site .amb-window-dots i:last-child { background: #31bd82; }
.amb-site .amb-dashboard__workspace { display: flex; align-items: center; gap: 8px; }
.amb-site .amb-dashboard__workspace strong { color: #0b1c34; font-size: 14px; }
.amb-site .amb-dashboard__workspace > span:last-child { color: #8190a5; font-size: 12px; }
.amb-site .amb-mini-mark { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 6px; color: #fff; background: linear-gradient(135deg, var(--amb-blue), var(--amb-cyan)); font-size: 11px; }
.amb-site .amb-dashboard__connection { display: flex; align-items: center; gap: 7px; color: #3a526f; font-size: 12px; font-weight: 650; }
.amb-site .amb-dashboard__connection > span { width: 8px; height: 8px; border-radius: 50%; background: var(--amb-green); box-shadow: 0 0 0 4px rgba(24, 169, 111, 0.11); }
.amb-site .amb-dashboard__body { display: grid; min-height: 570px; grid-template-columns: 280px minmax(390px, 1fr) 290px; background: var(--amb-soft); }
.amb-site .amb-inbox, .amb-site .amb-conversation, .amb-site .amb-policy { min-width: 0; background: #fff; }
.amb-site .amb-inbox { display: flex; flex-direction: column; border-right: 1px solid var(--amb-line); }
.amb-site .amb-panel-heading { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--amb-line); padding: 17px 18px; }
.amb-site .amb-panel-kicker { display: block; margin-bottom: 5px; color: #8593a6; font-size: 9px; font-weight: 750; letter-spacing: 0.09em; line-height: 1.2; text-transform: uppercase; }
.amb-site .amb-panel-heading h2 { margin: 0; color: #10223c; font-size: 16px; font-weight: 750; letter-spacing: -0.015em; line-height: 1.2; }
.amb-site .amb-count, .amb-site .amb-policy__state { border-radius: 99px; padding: 6px 9px; color: #31628a; background: #edf4fb; font-size: 10px; font-weight: 750; white-space: nowrap; }
.amb-site .amb-inbox__list { flex: 1; padding: 9px; }
.amb-site .amb-thread { display: grid; grid-template-columns: 36px 1fr; gap: 10px; border: 1px solid transparent; border-radius: 10px; padding: 13px 10px; }
.amb-site .amb-thread + .amb-thread { margin-top: 3px; }
.amb-site .amb-thread--active { border-color: #d9e7fb; background: #f1f6ff; box-shadow: inset 3px 0 0 var(--amb-blue); }
.amb-site .amb-avatar { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #1552a6; background: #e4efff; font-size: 11px; font-weight: 800; }
.amb-site .amb-avatar--cyan { color: #0b7285; background: #dcf7fb; }
.amb-site .amb-avatar--green { color: #14704d; background: #dff7ec; }
.amb-site .amb-thread__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.amb-site .amb-thread__meta strong { color: #12243d; font-size: 13px; }
.amb-site .amb-thread__meta time { color: #8b97a8; font-size: 10px; }
.amb-site .amb-thread p { overflow: hidden; margin: 6px 0 0; color: #52647a; font-size: 12px; line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.amb-site .amb-thread__tag { display: inline-block; margin-top: 8px; border-radius: 99px; padding: 4px 7px; color: #5e42ae; background: #eee9ff; font-size: 10px; font-weight: 750; }
.amb-site .amb-inbox__footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--amb-line); padding: 18px; color: #225fa7; font-size: 12px; font-weight: 700; }
.amb-site .amb-conversation { display: flex; flex-direction: column; border-right: 1px solid var(--amb-line); }
.amb-site .amb-conversation__header { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--amb-line); padding: 13px 18px; }
.amb-site .amb-conversation__person { display: flex; min-width: 0; align-items: center; gap: 10px; }
.amb-site .amb-conversation__person > div:last-child { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.amb-site .amb-conversation__person strong { color: #10233d; font-size: 14px; }
.amb-site .amb-conversation__person span { overflow: hidden; color: #8190a4; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.amb-site .amb-ui-button { display: inline-flex; min-height: 34px; align-items: center; justify-content: center; gap: 7px; border: 1px solid transparent; border-radius: 7px; padding: 0 12px; font-size: 12px; font-weight: 750; line-height: 1; white-space: nowrap; }
.amb-site .amb-ui-button--handover { border-color: #d6e0ec; color: #2a4768; background: #fff; }
.amb-site .amb-ui-button--handover i { position: relative; width: 13px; height: 13px; border: 1.5px solid #5e7691; border-radius: 50%; }
.amb-site .amb-ui-button--handover i::after { position: absolute; right: -4px; bottom: -3px; width: 8px; height: 5px; border: 1.5px solid #5e7691; border-top: 0; border-radius: 0 0 6px 6px; content: ""; }
.amb-site .amb-conversation__stream { flex: 1; padding: 18px 20px 14px; background: #f8fafd; }
.amb-site .amb-date-divider { display: flex; align-items: center; gap: 11px; color: #95a1b2; font-size: 9px; }
.amb-site .amb-date-divider::before, .amb-site .amb-date-divider::after { height: 1px; flex: 1; background: #e2e8f0; content: ""; }
.amb-site .amb-message { width: min(76%, 380px); margin-top: 19px; }
.amb-site .amb-message p { margin: 0; border-radius: 10px 10px 10px 3px; padding: 11px 13px; color: #243a55; background: #e9eef5; font-size: 13px; line-height: 1.5; }
.amb-site .amb-message time { display: block; margin-top: 5px; color: #98a4b4; font-size: 10px; }
.amb-site .amb-reply-card { margin-top: 24px; border: 1px solid #d9e4f0; border-radius: 12px; padding: 15px; background: #fff; box-shadow: 0 7px 20px rgba(34, 60, 95, 0.07); }
.amb-site .amb-reply-card > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.amb-site .amb-reply-card > header > div { display: flex; align-items: center; gap: 9px; }
.amb-site .amb-ai-mark { display: grid; width: 29px; height: 29px; flex: 0 0 29px; place-items: center; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--amb-blue), var(--amb-cyan)); font-size: 14px; }
.amb-site .amb-reply-card header div div { display: flex; flex-direction: column; gap: 3px; }
.amb-site .amb-reply-card header strong { color: #11243d; font-size: 13px; }
.amb-site .amb-reply-card header div div span { color: #7d8ca0; font-size: 10px; }
.amb-site .amb-safe-badge { border-radius: 99px; padding: 5px 7px; color: #19724f; background: #e2f7ed; font-size: 9px; font-weight: 750; white-space: nowrap; }
.amb-site .amb-reply-card > p { margin: 14px 0 0; border-left: 2px solid #8fbaff; padding: 9px 11px; color: #314860; background: #f7faff; font-size: 13px; line-height: 1.55; }
.amb-site .amb-reply-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 13px; }
.amb-site .amb-ui-button--primary { color: #fff; background: var(--amb-blue-dark); }
.amb-site .amb-ui-button--outline { border-color: #cfdbea; color: #2e4d70; background: #fff; }
.amb-site .amb-ui-link { color: #1763ca; font-size: 11px; font-weight: 750; }
.amb-site .amb-composer { display: flex; min-height: 55px; align-items: center; gap: 10px; margin: 0 18px 18px; border: 1px solid #d7e1ed; border-radius: 10px; padding: 0 12px; color: #9aa6b6; background: #fff; font-size: 12px; }
.amb-site .amb-composer > span:nth-child(2) { flex: 1; }
.amb-site .amb-composer i { color: #30679e; font-size: 17px; font-style: normal; }
.amb-site .amb-policy { padding-bottom: 18px; }
.amb-site .amb-policy__state { color: #18714e; background: #e4f7ee; }
.amb-site .amb-policy__checks { padding: 12px 18px 8px; }
.amb-site .amb-policy-row { display: grid; grid-template-columns: 23px 1fr; align-items: center; gap: 10px; padding: 11px 0; }
.amb-site .amb-policy-row + .amb-policy-row { border-top: 1px solid #edf1f6; }
.amb-site .amb-check { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: var(--amb-green); font-size: 11px; font-weight: 900; }
.amb-site .amb-policy-row > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.amb-site .amb-policy-row span:not(.amb-check) { color: #52657c; font-size: 12px; }
.amb-site .amb-policy-row strong { color: #142a45; font-size: 12px; font-weight: 750; }
.amb-site .amb-policy__capability { margin: 9px 17px 0; border: 1px solid #d8e5f5; border-radius: 10px; padding: 13px; background: #f5f9ff; }
.amb-site .amb-policy__capability > span { display: block; margin-bottom: 6px; color: #2264b7; font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.amb-site .amb-policy__capability strong { display: block; color: #183656; font-size: 12px; line-height: 1.45; }
.amb-site .amb-policy__capability p { margin: 7px 0 0; color: #718199; font-size: 10px; line-height: 1.5; }
.amb-site .amb-policy__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 17px 18px 0; color: #1764c8; font-size: 11px; font-weight: 750; }
.amb-site .amb-mobile-policy { display: none; }

.amb-site .amb-operating,
.amb-site .amb-features,
.amb-site .amb-boundaries,
.amb-site .amb-faq {
  color: var(--amb-ink);
  background: #f6f9fd;
}

.amb-site .amb-operating,
.amb-site .amb-workflow,
.amb-site .amb-safety,
.amb-site .amb-features,
.amb-site .amb-deployment,
.amb-site .amb-boundaries,
.amb-site .amb-early,
.amb-site .amb-faq {
  position: relative;
  padding: 112px 0;
}

.amb-site .amb-section-heading {
  width: min(100%, 810px);
  margin: 0 auto 56px;
  text-align: center;
}

.amb-site .amb-section-heading--left {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.amb-site .amb-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 19px;
  color: #62728a;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.amb-site .amb-section-heading--left .amb-section-kicker,
.amb-site .amb-faq__heading .amb-section-kicker,
.amb-site .amb-safety__copy .amb-section-kicker,
.amb-site .amb-early__copy .amb-section-kicker {
  justify-content: flex-start;
}

.amb-site .amb-section-kicker > span {
  border-radius: 99px;
  padding: 6px 9px;
  color: #1763ca;
  background: #e7f0ff;
  letter-spacing: .08em;
}

.amb-site .amb-section-kicker--cyan {
  color: #8fa4bf;
}

.amb-site .amb-section-kicker--cyan > span {
  color: #6de1ef;
  background: rgba(34, 199, 223, .11);
}

.amb-site .amb-section-heading h2,
.amb-site .amb-safety__copy h2,
.amb-site .amb-faq__heading h2,
.amb-site .amb-early__copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 58px);
  font-weight: 690;
  letter-spacing: -.052em;
  line-height: 1.07;
  text-wrap: balance;
}

.amb-site .amb-section-heading h2 em,
.amb-site .amb-safety__copy h2 em {
  color: #69a9ff;
  font-style: normal;
  font-weight: 590;
}

.amb-site .amb-section-heading > p:last-child,
.amb-site .amb-safety__copy > p,
.amb-site .amb-faq__heading > p:last-child,
.amb-site .amb-early__copy > p {
  margin: 23px auto 0;
  color: #687991;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: balance;
}

.amb-site .amb-section-heading--light h2 {
  color: #fff;
}

.amb-site .amb-section-heading--light > p:last-child {
  color: #9daec4;
}

.amb-site .amb-section-heading--light .amb-section-kicker {
  color: #8296b1;
}

.amb-site .amb-operating {
  overflow: hidden;
  border-top: 1px solid #e3eaf3;
}

.amb-site .amb-operating::before {
  position: absolute;
  top: -270px;
  left: 50%;
  width: 680px;
  height: 420px;
  border-radius: 50%;
  background: rgba(35, 118, 255, .09);
  content: "";
  filter: blur(95px);
  transform: translateX(-50%);
}

.amb-site .amb-operating__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.amb-site .amb-operating-card {
  position: relative;
  overflow: hidden;
  min-height: 475px;
  border: 1px solid #dfe7f1;
  border-radius: 22px;
  padding: 29px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(27, 52, 83, .07);
}

.amb-site .amb-card-topline,
.amb-site .amb-feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.amb-site .amb-card-topline > span:last-child,
.amb-site .amb-feature-card__top > span:last-child {
  color: #718198;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.amb-site .amb-icon-box,
.amb-site .amb-feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #d5e5fb;
  border-radius: 12px;
  color: #1767d5;
  background: #eef5ff;
}

.amb-site .amb-icon-box svg,
.amb-site .amb-feature-icon svg,
.amb-site .amb-step-icon svg,
.amb-site .amb-safety-note > svg,
.amb-site .amb-safety-points > li > svg,
.amb-site .amb-console-mark svg,
.amb-site .amb-output-icon svg,
.amb-site .amb-handover-card > span svg,
.amb-site .amb-boundary-grid article > span svg,
.amb-site .amb-architecture svg {
  width: 21px;
  height: 21px;
}

.amb-site .amb-operating-card h3 {
  margin: 27px 0 0;
  color: #102440;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.25;
}

.amb-site .amb-operating-card > p {
  margin: 14px 0 0;
  color: #6a7a90;
  font-size: 14px;
  line-height: 1.7;
}

.amb-site .amb-mini-inbox {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  overflow: hidden;
  border: 1px solid #dee7f1;
  border-radius: 13px;
  background: #f8fbff;
}

.amb-site .amb-mini-inbox > div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px;
}

.amb-site .amb-mini-inbox > div + div { border-top: 1px solid #e5ebf2; }
.amb-site .amb-mini-avatar { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #1552a6; background: #dfeeff; font-size: 10px; font-weight: 800; }
.amb-site .amb-mini-avatar--cyan { color: #087487; background: #dcf7fb; }
.amb-site .amb-mini-inbox p,
.amb-site .amb-handover-card div,
.amb-site .amb-flow-message p,
.amb-site .amb-flow-output p,
.amb-site .amb-architecture p { display: flex; min-width: 0; flex-direction: column; gap: 3px; margin: 0; }
.amb-site .amb-mini-inbox strong { color: #1e3550; font-size: 12px; }
.amb-site .amb-mini-inbox small { color: #8492a3; font-size: 10px; }
.amb-site .amb-mini-inbox i { color: #9aa7b7; font-size: 9px; font-style: normal; }

.amb-site .amb-policy-orbit {
  position: absolute;
  right: 19px;
  bottom: 18px;
  left: 19px;
  height: 205px;
  border: 1px solid #e2eaf4;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 50%, rgba(35, 118, 255, .1), transparent 43%), #f9fbfe;
}

.amb-site .amb-policy-orbit::before,
.amb-site .amb-policy-orbit::after { position: absolute; top: 50%; left: 50%; border: 1px dashed #c9d9ed; border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.amb-site .amb-policy-orbit::before { width: 150px; height: 150px; }
.amb-site .amb-policy-orbit::after { width: 92px; height: 92px; }
.amb-site .amb-orbit-core { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid #bcd5fa; border-radius: 50%; color: #1d69ce; background: #fff; box-shadow: 0 12px 28px rgba(38, 94, 160, .13); transform: translate(-50%, -50%); }
.amb-site .amb-orbit-core svg { width: 20px; height: 20px; }
.amb-site .amb-orbit-core strong { margin-top: -6px; color: #203b5b; font-size: 11px; }
.amb-site .amb-orbit-core small { margin-top: -8px; color: #1b8a62; font-size: 8px; font-weight: 750; }
.amb-site .amb-orbit-node { position: absolute; z-index: 3; border: 1px solid #dbe6f2; border-radius: 99px; padding: 6px 8px; color: #35627f; background: #fff; box-shadow: 0 7px 18px rgba(33, 67, 106, .08); font-size: 8px; font-style: normal; font-weight: 760; }
.amb-site .amb-orbit-node--one { top: 26px; left: 27px; }
.amb-site .amb-orbit-node--two { top: 50px; right: 19px; }
.amb-site .amb-orbit-node--three { right: 42px; bottom: 24px; }

.amb-site .amb-handover-card {
  position: absolute;
  right: 24px;
  bottom: 30px;
  left: 24px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #dce7f2;
  border-radius: 14px;
  padding: 15px;
  background: #f8fbff;
}

.amb-site .amb-handover-card > span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, #247fff, #26c5df); }
.amb-site .amb-handover-card strong { color: #1c3552; font-size: 12px; }
.amb-site .amb-handover-card small { color: #8392a5; font-size: 9px; }
.amb-site .amb-handover-card > i { border-radius: 99px; padding: 6px 8px; color: #6443aa; background: #eee9ff; font-size: 8px; font-style: normal; font-weight: 800; text-transform: uppercase; }

.amb-site .amb-workflow {
  overflow: hidden;
  background: linear-gradient(180deg, #081931 0%, #061428 100%);
}

.amb-site .amb-workflow::before { position: absolute; top: -180px; left: 50%; width: 850px; height: 400px; border-radius: 50%; background: rgba(35, 118, 255, .12); content: ""; filter: blur(100px); transform: translateX(-50%); }

.amb-site .amb-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(186, 208, 238, .14);
  border-radius: 18px;
  padding: 0;
  background: rgba(186, 208, 238, .14);
  list-style: none;
}

.amb-site .amb-steps li {
  position: relative;
  min-height: 310px;
  padding: 26px;
  background: #0a1c36;
}

.amb-site .amb-steps li > span { color: #526b8c; font-family: var(--font-geist-mono), monospace; font-size: 11px; }
.amb-site .amb-step-icon { display: grid; width: 47px; height: 47px; margin-top: 34px; place-items: center; border: 1px solid rgba(96, 157, 240, .28); border-radius: 13px; color: #6da9ff; background: rgba(35, 118, 255, .08); }
.amb-site .amb-steps h3 { margin: 22px 0 0; color: #f6f9ff; font-size: 19px; font-weight: 680; letter-spacing: -.025em; }
.amb-site .amb-steps p { margin: 11px 0 0; color: #8598b2; font-size: 13px; line-height: 1.7; }

.amb-site .amb-flow-demo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .86fr) minmax(0, 1fr);
  gap: 68px;
  margin-top: 28px;
  border: 1px solid rgba(184, 209, 241, .17);
  border-radius: 20px;
  padding: 50px 42px;
  background: rgba(255, 255, 255, .025);
}

.amb-site .amb-flow-demo__rail { position: absolute; z-index: 0; top: 50%; right: 18%; left: 18%; height: 1px; background: linear-gradient(90deg, #2479ee, #35c0d7, #2479ee); }
.amb-site .amb-flow-demo__rail span { position: absolute; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: #4ed0e4; box-shadow: 0 0 12px rgba(78, 208, 228, .8); }
.amb-site .amb-flow-demo__rail span:first-child { left: 13%; }
.amb-site .amb-flow-demo__rail span:nth-child(2) { left: 49%; }
.amb-site .amb-flow-demo__rail span:last-child { right: 13%; }
.amb-site .amb-flow-message,
.amb-site .amb-flow-policy,
.amb-site .amb-flow-output { position: relative; z-index: 1; min-width: 0; border: 1px solid rgba(190, 212, 240, .18); border-radius: 15px; padding: 18px; background: #0b1e39; box-shadow: 0 18px 40px rgba(1, 8, 20, .23); }
.amb-site .amb-flow-label { display: block; margin-bottom: 18px; color: #6f85a3; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.amb-site .amb-flow-message > div,
.amb-site .amb-flow-output > div { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 11px; }
.amb-site .amb-flow-message strong,
.amb-site .amb-flow-output strong { color: #eaf2ff; font-size: 12px; }
.amb-site .amb-flow-message small,
.amb-site .amb-flow-output small { color: #7286a2; font-size: 9px; }
.amb-site .amb-flow-ring { display: flex; align-items: center; justify-content: center; gap: 9px; }
.amb-site .amb-flow-ring > svg { width: 27px; height: 27px; color: #55d7a8; }
.amb-site .amb-flow-ring > span { display: flex; flex-direction: column; gap: 2px; }
.amb-site .amb-flow-ring strong { color: #dff9ee; font-size: 12px; }
.amb-site .amb-flow-ring small { color: #69869a; font-size: 8px; }
.amb-site .amb-flow-policy ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin: 17px 0 0; padding: 0; list-style: none; }
.amb-site .amb-flow-policy li { border-radius: 99px; padding: 5px 7px; color: #6fc7aa; background: rgba(45, 187, 134, .1); font-size: 7px; font-weight: 750; }
.amb-site .amb-output-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg, #267fff, #25c6df); }
.amb-site .amb-flow-status { display: flex; align-items: center; gap: 6px; margin-top: 17px; color: #75a4df; font-size: 9px; font-weight: 700; }
.amb-site .amb-flow-status i { width: 6px; height: 6px; border-radius: 50%; background: #2fc9df; box-shadow: 0 0 0 4px rgba(47, 201, 223, .1); }

.amb-site .amb-safety {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(35, 118, 255, .15), transparent 28%),
    linear-gradient(180deg, #04101f 0%, #061429 100%);
}

.amb-site .amb-safety__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
  align-items: center;
  gap: 90px;
}

.amb-site .amb-safety__copy h2 { color: #fff; }
.amb-site .amb-safety__copy h2 em { display: block; margin-top: 7px; }
.amb-site .amb-safety__copy > p { color: #9aaec7; }
.amb-site .amb-safety-points { display: grid; gap: 18px; margin: 35px 0 0; padding: 0; list-style: none; }
.amb-site .amb-safety-points li { display: grid; grid-template-columns: 31px 1fr; align-items: start; gap: 12px; }
.amb-site .amb-safety-points > li > svg { width: 23px; height: 23px; border: 1px solid rgba(42, 204, 143, .36); border-radius: 50%; padding: 5px; color: #55d9a5; background: rgba(42, 204, 143, .09); }
.amb-site .amb-safety-points span { display: flex; flex-direction: column; gap: 4px; }
.amb-site .amb-safety-points strong { color: #e9f2ff; font-size: 14px; }
.amb-site .amb-safety-points small { color: #7f93ae; font-size: 12px; line-height: 1.5; }
.amb-site .amb-safety-note { display: grid; grid-template-columns: 35px 1fr; gap: 13px; margin-top: 35px; border: 1px solid rgba(96, 157, 240, .22); border-radius: 13px; padding: 17px; background: rgba(35, 118, 255, .06); }
.amb-site .amb-safety-note > svg { color: #74adff; }
.amb-site .amb-safety-note p { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.amb-site .amb-safety-note strong { color: #dceaff; font-size: 12px; }
.amb-site .amb-safety-note span { color: #748ca9; font-size: 10px; line-height: 1.5; }

.amb-site .amb-safety-console {
  overflow: hidden;
  border: 1px solid rgba(186, 211, 243, .22);
  border-radius: 20px;
  color: #18304d;
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 5, 16, .35);
}

.amb-site .amb-safety-console > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid #e1e8f0; padding: 21px 22px; background: #fbfdff; }
.amb-site .amb-safety-console > header > div { display: flex; align-items: center; gap: 11px; }
.amb-site .amb-console-mark { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, #267fff, #21bfda); }
.amb-site .amb-safety-console header p { display: flex; flex-direction: column; gap: 3px; margin: 0; }
.amb-site .amb-safety-console header strong { color: #142d4b; font-size: 13px; }
.amb-site .amb-safety-console header small { color: #8090a4; font-size: 9px; }
.amb-site .amb-live { display: flex; align-items: center; gap: 7px; border-radius: 99px; padding: 7px 9px; color: #207050; background: #e7f7ef; font-size: 9px; font-weight: 780; }
.amb-site .amb-live i { width: 6px; height: 6px; border-radius: 50%; background: #18a96f; box-shadow: 0 0 0 4px rgba(24, 169, 111, .1); }
.amb-site .amb-safety-console__checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 14px 22px; }
.amb-site .amb-safety-console__checks > div { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid #edf1f5; padding: 14px 8px; }
.amb-site .amb-safety-console__checks > div:nth-last-child(-n+2) { border-bottom: 0; }
.amb-site .amb-safety-console__checks > div:nth-child(odd) { padding-right: 17px; }
.amb-site .amb-safety-console__checks > div:nth-child(even) { border-left: 1px solid #edf1f5; padding-left: 17px; }
.amb-site .amb-console-check { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: #fff; background: #18a96f; font-size: 10px; font-weight: 900; }
.amb-site .amb-safety-console__checks p { margin: 0; color: #536780; font-size: 10px; }
.amb-site .amb-safety-console__checks strong { color: #1c3b5c; font-size: 9px; }
.amb-site .amb-safety-console > footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid #dfe8f1; padding: 18px 22px; background: #f5f9ff; }
.amb-site .amb-safety-console > footer > div { display: flex; flex-direction: column; gap: 4px; }
.amb-site .amb-safety-console footer span { color: #7d8fa5; font-size: 8px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.amb-site .amb-safety-console footer strong { color: #224a75; font-size: 12px; }
.amb-site .amb-safety-console footer .amb-allowed { border: 1px solid #cceadd; border-radius: 99px; padding: 8px 10px; color: #16714d; background: #e9f8f1; letter-spacing: 0; text-transform: none; }

.amb-site .amb-blocked {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  align-items: center;
  gap: 26px;
  margin-top: 65px;
  border: 1px solid rgba(247, 118, 118, .2);
  border-radius: 18px;
  padding: 24px 27px;
  background: rgba(123, 24, 38, .08);
}

.amb-site .amb-blocked__copy { display: flex; align-items: center; gap: 16px; }
.amb-site .amb-blocked__icon { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid rgba(255, 112, 112, .35); border-radius: 50%; color: #ff8f8f; background: rgba(255, 93, 93, .08); font-weight: 800; }
.amb-site .amb-blocked__copy p { margin: 0 0 4px; color: #9b7380; font-size: 9px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.amb-site .amb-blocked__copy h3 { margin: 0; color: #f4dce1; font-size: 17px; font-weight: 650; }
.amb-site .amb-blocked__status,
.amb-site .amb-blocked__result { display: flex; flex-direction: column; gap: 5px; border-left: 1px solid rgba(242, 159, 159, .17); padding-left: 26px; }
.amb-site .amb-blocked__status span,
.amb-site .amb-blocked__result span { display: flex; align-items: center; gap: 7px; color: #916f79; font-size: 8px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.amb-site .amb-blocked__status span i { width: 6px; height: 6px; border-radius: 50%; background: #e65c69; }
.amb-site .amb-blocked__status strong,
.amb-site .amb-blocked__result strong { color: #ffc0c6; font-size: 13px; }
.amb-site .amb-blocked__result small { color: #8e7178; font-size: 9px; }

.amb-site .amb-features { background: #f3f7fb; }
.amb-site .amb-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.amb-site .amb-feature-card { border: 1px solid #dfe7f0; border-radius: 18px; padding: 27px; background: #fff; box-shadow: 0 12px 35px rgba(30, 55, 87, .045); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.amb-site .amb-feature-card:hover { border-color: #c7daf5; box-shadow: 0 20px 45px rgba(30, 68, 117, .08); transform: translateY(-3px); }
.amb-site .amb-feature-card h3 { margin: 25px 0 0; color: #142b47; font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.amb-site .amb-feature-card > p { min-height: 70px; margin: 12px 0 0; color: #6b7b90; font-size: 13px; line-height: 1.7; }
.amb-site .amb-feature-link { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; border-top: 1px solid #e9eef4; padding-top: 16px; color: #2b67af; font-size: 10px; font-weight: 760; }
.amb-site .amb-feature-link i { font-style: normal; }

.amb-site .amb-deployment {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(35, 118, 255, .12), transparent 30%),
    linear-gradient(180deg, #071831 0%, #061327 100%);
}

.amb-site .amb-architecture {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .85fr) 78px minmax(300px, 1.25fr) 78px minmax(190px, .85fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(184, 208, 239, .16);
  border-radius: 23px;
  padding: 44px 31px;
  background: rgba(255, 255, 255, .025);
}

.amb-site .amb-architecture__clients,
.amb-site .amb-architecture__providers { display: grid; gap: 12px; }
.amb-site .amb-architecture__clients article,
.amb-site .amb-architecture__providers article { display: grid; grid-template-columns: 39px 1fr; align-items: center; gap: 11px; border: 1px solid rgba(186, 211, 243, .15); border-radius: 13px; padding: 14px; background: #0b1e39; }
.amb-site .amb-architecture__clients article > span,
.amb-site .amb-provider-mark { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 10px; color: #73acff; background: rgba(35, 118, 255, .1); }
.amb-site .amb-architecture strong { color: #e9f2ff; font-size: 11px; }
.amb-site .amb-architecture small { color: #7287a3; font-size: 8px; line-height: 1.45; }
.amb-site .amb-architecture__core { position: relative; border: 1px solid rgba(104, 164, 247, .3); border-radius: 18px; padding: 24px; background: linear-gradient(155deg, rgba(35, 118, 255, .14), rgba(11, 32, 62, .96)); box-shadow: 0 22px 55px rgba(0, 5, 17, .28); text-align: center; }
.amb-site .amb-core-icon { display: grid; width: 56px; height: 56px; margin: 0 auto 15px; place-items: center; border: 1px solid rgba(105, 176, 255, .38); border-radius: 16px; color: #fff; background: linear-gradient(135deg, #267fff, #22bdd7); box-shadow: 0 13px 27px rgba(24, 108, 224, .25); }
.amb-site .amb-core-icon svg { width: 27px; height: 27px; }
.amb-site .amb-architecture__core p small { color: #7e99ba; font-size: 8px; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.amb-site .amb-architecture__core p strong { margin-top: 4px; color: #fff; font-size: 17px; }
.amb-site .amb-architecture__core p span { margin-top: 5px; color: #839ab6; font-size: 9px; }
.amb-site .amb-architecture__core ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 19px 0 0; padding: 0; list-style: none; }
.amb-site .amb-architecture__core li { border-radius: 99px; padding: 6px 8px; color: #9fc3ef; background: rgba(110, 165, 235, .1); font-size: 7px; font-weight: 700; }
.amb-site .amb-architecture__link { position: relative; display: flex; height: 48px; align-items: center; justify-content: center; }
.amb-site .amb-architecture__link::before { position: absolute; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, rgba(49, 167, 230, .25), #2d9fdd); content: ""; }
.amb-site .amb-architecture__link > span { position: relative; z-index: 2; border: 1px solid rgba(98, 163, 240, .22); border-radius: 99px; padding: 5px 7px; color: #7ba7d9; background: #081a33; font-size: 7px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.amb-site .amb-architecture__link i { position: absolute; right: 0; width: 6px; height: 6px; border-top: 1px solid #3bb8e0; border-right: 1px solid #3bb8e0; transform: rotate(45deg); }
.amb-site .amb-architecture__link i:last-child { right: 7px; }
.amb-site .amb-provider-mark { color: #fff; background: #20a56f; font-size: 13px; font-style: normal; font-weight: 800; }
.amb-site .amb-provider-mark--ai { background: linear-gradient(135deg, #7a67ed, #267fff); }
.amb-site .amb-deployment-notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.amb-site .amb-deployment-notes article { display: grid; grid-template-columns: 34px 1fr; gap: 13px; border: 1px solid rgba(184, 209, 241, .13); border-radius: 14px; padding: 20px; background: rgba(255, 255, 255, .02); }
.amb-site .amb-deployment-notes article > span { color: #4f82c4; font-family: var(--font-geist-mono), monospace; font-size: 10px; }
.amb-site .amb-deployment-notes h3 { margin: 0; color: #dce8f8; font-size: 13px; }
.amb-site .amb-deployment-notes p { margin: 7px 0 0; color: #7488a4; font-size: 11px; line-height: 1.65; }

.amb-site .amb-boundaries { background: #fff; }
.amb-site .amb-boundary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.amb-site .amb-boundary-grid article { border-top: 1px solid #dce5ef; padding: 30px 8px 0; }
.amb-site .amb-boundary-grid article > span { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #d6e4f7; border-radius: 13px; color: #1d6bd2; background: #f1f6ff; }
.amb-site .amb-boundary-grid h3 { margin: 24px 0 0; color: #142b47; font-size: 20px; letter-spacing: -.03em; }
.amb-site .amb-boundary-grid p { margin: 12px 0 0; color: #6a7a8f; font-size: 13px; line-height: 1.7; }

.amb-site .amb-early {
  overflow: hidden;
  padding-top: 40px;
  background: #fff;
}

.amb-site .amb-early__card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  align-items: center;
  gap: 65px;
  border: 1px solid rgba(112, 166, 238, .28);
  border-radius: 25px;
  padding: 66px;
  background: linear-gradient(145deg, #081d3a, #061327);
  box-shadow: 0 35px 80px rgba(11, 37, 73, .17);
}

.amb-site .amb-early__glow { position: absolute; top: -160px; left: 7%; width: 430px; height: 300px; border-radius: 50%; background: rgba(35, 118, 255, .2); filter: blur(85px); }
.amb-site .amb-early__copy { position: relative; z-index: 2; }
.amb-site .amb-early__copy h2 { color: #fff; font-size: clamp(36px, 4vw, 50px); }
.amb-site .amb-early__copy > p { color: #9bacc2; font-size: 15px; }
.amb-site .amb-early__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 29px; }
.amb-site .amb-readiness-list { position: relative; z-index: 2; display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.amb-site .amb-readiness-list li { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 12px; border: 1px solid rgba(185, 210, 241, .14); border-radius: 13px; padding: 15px; background: rgba(255, 255, 255, .035); }
.amb-site .amb-readiness-list li > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #70b8ff; background: rgba(35, 118, 255, .12); font-family: var(--font-geist-mono), monospace; font-size: 10px; }
.amb-site .amb-readiness-list p { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.amb-site .amb-readiness-list strong { color: #e7effb; font-size: 12px; }
.amb-site .amb-readiness-list small { color: #758ba7; font-size: 9px; line-height: 1.45; }

.amb-site .amb-faq { padding-top: 100px; background: #f6f9fd; }
.amb-site .amb-faq__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(540px, 1fr); align-items: start; gap: 90px; }
.amb-site .amb-faq__heading { position: sticky; top: 100px; }
.amb-site .amb-faq__heading h2 { color: #102640; font-size: clamp(38px, 4.2vw, 51px); }
.amb-site .amb-faq__heading > p:last-child { margin-right: 0; margin-left: 0; font-size: 15px; }
.amb-site .amb-accordion { overflow: hidden; border: 1px solid #dce5ef; border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(32, 58, 89, .06); }
.amb-site .amb-faq-item + .amb-faq-item { border-top: 1px solid #e7edf3; }
.amb-site .amb-faq-item h3 { margin: 0; }
.amb-site .amb-faq-item button { display: grid; width: 100%; grid-template-columns: 1fr 28px; align-items: center; gap: 20px; border: 0; padding: 22px 24px; color: #1b324e; background: transparent; font: inherit; font-size: 14px; font-weight: 680; line-height: 1.45; text-align: left; cursor: pointer; }
.amb-site .amb-faq-item button:hover { color: #135fbf; }
.amb-site .amb-faq-item button:focus-visible { outline: 3px solid rgba(35, 118, 255, .4); outline-offset: -3px; }
.amb-site .amb-faq-item button i { position: relative; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid #d5e1ef; border-radius: 8px; }
.amb-site .amb-faq-item button i::before,
.amb-site .amb-faq-item button i::after { position: absolute; width: 10px; height: 1px; background: #3a6ea8; content: ""; transition: transform 160ms ease; }
.amb-site .amb-faq-item button i::after { transform: rotate(90deg); }
.amb-site .amb-faq-item[data-open="true"] button i::after { transform: rotate(0); }
.amb-site .amb-faq-answer { padding: 0 66px 22px 24px; }
.amb-site .amb-faq-answer p { margin: 0; color: #6a7b90; font-size: 13px; line-height: 1.75; }

.amb-site .amb-footer {
  border-top: 1px solid rgba(178, 204, 237, .13);
  background: #04101f;
}

.amb-site .amb-footer__main { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 80px; padding-top: 67px; padding-bottom: 58px; }
.amb-site .amb-footer__brand { max-width: 405px; }
.amb-site .amb-footer__brand > p { margin: 22px 0 0; color: #778ba6; font-size: 13px; line-height: 1.7; }
.amb-site .amb-footer__links { display: grid; grid-template-columns: repeat(2, 150px); gap: 50px; }
.amb-site .amb-footer__links > div { display: flex; flex-direction: column; gap: 13px; }
.amb-site .amb-footer__links strong { margin-bottom: 5px; color: #dce7f6; font-size: 11px; }
.amb-site .amb-footer__links a { color: #778ba6; font-size: 11px; text-decoration: none; }
.amb-site .amb-footer__links a:hover { color: #fff; }
.amb-site .amb-footer__bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(178, 204, 237, .1); padding-top: 21px; padding-bottom: 25px; }
.amb-site .amb-footer__bottom p { max-width: 650px; margin: 0; color: #536983; font-size: 9px; line-height: 1.6; }
.amb-site .amb-footer__bottom p:last-child { text-align: right; }

.amb-site.amb-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .7, .2, 1);
}

.amb-site.amb-motion-ready [data-reveal].amb-revealed {
  opacity: 1;
  transform: translateY(0);
}

.amb-site .amb-dashboard__connection > span,
.amb-site .amb-live i {
  animation: amb-status-pulse 2.4s ease-in-out infinite;
}

.amb-site .amb-orbit-node--one { animation: amb-orbit-drift 4.8s ease-in-out infinite; }
.amb-site .amb-orbit-node--two { animation: amb-orbit-drift 5.4s ease-in-out .6s infinite reverse; }
.amb-site .amb-orbit-node--three { animation: amb-orbit-drift 5s ease-in-out 1.1s infinite; }

.amb-site .amb-flow-demo__rail span:first-child { animation: amb-flow-signal 2.8s ease-in-out infinite; }
.amb-site .amb-flow-demo__rail span:nth-child(2) { animation: amb-flow-signal 2.8s ease-in-out .55s infinite; }
.amb-site .amb-flow-demo__rail span:last-child { animation: amb-flow-signal 2.8s ease-in-out 1.1s infinite; }

@keyframes amb-dashboard-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes amb-status-pulse {
  0%, 100% { opacity: .72; box-shadow: 0 0 0 4px rgba(24, 169, 111, .08); }
  50% { opacity: 1; box-shadow: 0 0 0 7px rgba(24, 169, 111, .02); }
}

@keyframes amb-orbit-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -7px, 0); }
}

@keyframes amb-flow-signal {
  0%, 100% { opacity: .35; transform: scale(.72); }
  50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 1080px) {
  .amb-site .amb-header__inner { gap: 14px; }
  .amb-site .amb-nav { gap: 15px; }
  .amb-site .amb-nav a { font-size: 12px; }
  .amb-site .amb-header__cta { padding-inline: 12px; }
  .amb-site .amb-dashboard__body { grid-template-columns: minmax(410px, 1fr) 280px; }
  .amb-site .amb-inbox { display: none; }
  .amb-site .amb-operating__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amb-site .amb-operating-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .amb-site .amb-handover-card { right: 29%; left: 29%; }
  .amb-site .amb-safety__grid { grid-template-columns: minmax(0, .75fr) minmax(480px, 1fr); gap: 55px; }
  .amb-site .amb-architecture { grid-template-columns: minmax(160px, .75fr) 55px minmax(260px, 1.2fr) 55px minmax(160px, .75fr); gap: 9px; padding-inline: 22px; }
}

@media (max-width: 820px) {
  .amb-site .amb-header__inner { min-height: 66px; grid-template-columns: 1fr auto auto; gap: 9px; }
  .amb-site .amb-header__cta { display: none; }
  .amb-site .amb-menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; border: 1px solid rgba(196, 215, 240, .24); border-radius: 9px; padding: 0; background: rgba(255,255,255,.04); }
  .amb-site .amb-menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: #dfe8f5; transition: transform 160ms ease, opacity 160ms ease; }
  .amb-site .amb-header[data-open="true"] .amb-menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
  .amb-site .amb-header[data-open="true"] .amb-menu-toggle span:nth-child(2) { opacity: 0; }
  .amb-site .amb-header[data-open="true"] .amb-menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .amb-site .amb-nav { position: absolute; top: 66px; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; border-top: 1px solid rgba(183,207,240,.13); padding: 12px 24px 18px; background: rgba(5, 17, 35, .98); }
  .amb-site .amb-header[data-open="true"] .amb-nav { display: flex; }
  .amb-site .amb-nav a { border-bottom: 1px solid rgba(183,207,240,.1); padding: 14px 2px; }
  .amb-site .amb-language__options { right: -51px; }
  .amb-site .amb-operating,
  .amb-site .amb-workflow,
  .amb-site .amb-safety,
  .amb-site .amb-features,
  .amb-site .amb-deployment,
  .amb-site .amb-boundaries,
  .amb-site .amb-early,
  .amb-site .amb-faq { padding: 86px 0; }
  .amb-site .amb-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amb-site .amb-flow-demo { grid-template-columns: 1fr; gap: 16px; }
  .amb-site .amb-flow-demo__rail { top: 16%; bottom: 16%; left: 50%; width: 1px; height: auto; background: linear-gradient(#2479ee, #35c0d7, #2479ee); }
  .amb-site .amb-flow-demo__rail span:first-child { top: 13%; left: -3px; }
  .amb-site .amb-flow-demo__rail span:nth-child(2) { top: 49%; left: -3px; }
  .amb-site .amb-flow-demo__rail span:last-child { top: auto; right: auto; bottom: 13%; left: -3px; }
  .amb-site .amb-safety__grid { grid-template-columns: 1fr; gap: 48px; }
  .amb-site .amb-safety__copy { max-width: 650px; }
  .amb-site .amb-blocked { grid-template-columns: 1fr 1fr; }
  .amb-site .amb-blocked__copy { grid-column: 1 / -1; }
  .amb-site .amb-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amb-site .amb-architecture { grid-template-columns: 1fr; gap: 14px; }
  .amb-site .amb-architecture__clients,
  .amb-site .amb-architecture__providers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amb-site .amb-architecture__link { width: 1px; height: 50px; margin: 0 auto; }
  .amb-site .amb-architecture__link::before { top: 0; bottom: 0; left: 0; width: 1px; height: auto; background: linear-gradient(#2d9fdd, rgba(49, 167, 230, .25)); }
  .amb-site .amb-architecture__link > span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .amb-site .amb-architecture__link i { right: auto; bottom: 0; left: -3px; transform: rotate(135deg); }
  .amb-site .amb-architecture__link i:last-child { right: auto; bottom: 7px; left: -3px; }
  .amb-site .amb-deployment-notes { grid-template-columns: 1fr; }
  .amb-site .amb-early { padding-top: 20px; background: #fff; }
  .amb-site .amb-early__card { grid-template-columns: 1fr; gap: 42px; padding: 48px; }
  .amb-site .amb-faq__grid { grid-template-columns: 1fr; gap: 45px; }
  .amb-site .amb-faq__heading { position: static; max-width: 650px; }
}

@media (max-width: 760px) {
  .amb-site .amb-shell { width: min(calc(100% - 32px), 1240px); }
  .amb-site .amb-hero { padding: 118px 0 48px; }
  .amb-site .amb-eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 0.1em; }
  .amb-site .amb-hero__copy h1 { font-size: clamp(39px, 12vw, 54px); letter-spacing: -0.05em; }
  .amb-site .amb-hero__lead { margin-top: 21px; font-size: 17px; line-height: 1.55; }
  .amb-site .amb-hero__actions { align-items: stretch; flex-direction: column; margin-top: 28px; }
  .amb-site .amb-button { width: 100%; }
  .amb-site .amb-proof-list { display: grid; grid-template-columns: 1fr; justify-items: start; width: fit-content; max-width: 100%; margin-top: 29px; text-align: left; }
  .amb-site .amb-product-view { margin-top: 46px; }
  .amb-site .amb-product-view__caption { align-items: flex-start; flex-direction: column; gap: 5px; margin-left: 2px; }
  .amb-site .amb-product-view__caption small { padding-left: 15px; }
  .amb-site .amb-dashboard { border-radius: 14px; }
  .amb-site .amb-dashboard__topbar { min-height: 52px; grid-template-columns: 40px 1fr auto; padding: 0 12px; }
  .amb-site .amb-window-dots { gap: 4px; }
  .amb-site .amb-window-dots i { width: 6px; height: 6px; }
  .amb-site .amb-dashboard__workspace > span:last-child { display: none; }
  .amb-site .amb-mini-mark { display: none; }
  .amb-site .amb-dashboard__connection { overflow: hidden; width: 8px; white-space: nowrap; }
  .amb-site .amb-dashboard__body { display: block; min-height: auto; }
  .amb-site .amb-policy { display: none; }
  .amb-site .amb-conversation { border-right: 0; }
  .amb-site .amb-conversation__header { min-height: 70px; padding: 11px 13px; }
  .amb-site .amb-conversation__person .amb-avatar, .amb-site .amb-conversation__person span { display: none; }
  .amb-site .amb-ui-button--handover { min-height: 36px; padding: 0 10px; font-size: 10px; }
  .amb-site .amb-mobile-policy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; border-bottom: 1px solid var(--amb-line); padding: 11px 12px; background: #f7fbff; }
  .amb-site .amb-mobile-policy span { overflow: hidden; border: 1px solid #d9e8e1; border-radius: 6px; padding: 7px; color: #20654c; background: #effaf5; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
  .amb-site .amb-conversation__stream { padding: 15px 13px 11px; }
  .amb-site .amb-message { width: 88%; }
  .amb-site .amb-message p, .amb-site .amb-reply-card > p { font-size: 12px; }
  .amb-site .amb-reply-card { margin-top: 18px; padding: 12px; }
  .amb-site .amb-reply-card > header { align-items: flex-start; flex-direction: column; }
  .amb-site .amb-reply-card__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .amb-site .amb-ui-link { grid-column: 1 / -1; padding-top: 3px; }
  .amb-site .amb-composer { margin: 0 12px 12px; }
  .amb-site .amb-section-heading { margin-bottom: 40px; }
  .amb-site .amb-section-heading h2,
  .amb-site .amb-safety__copy h2,
  .amb-site .amb-faq__heading h2,
  .amb-site .amb-early__copy h2 { font-size: 36px; letter-spacing: -.045em; }
  .amb-site .amb-section-heading > p:last-child,
  .amb-site .amb-safety__copy > p,
  .amb-site .amb-faq__heading > p:last-child,
  .amb-site .amb-early__copy > p { margin-top: 18px; font-size: 15px; line-height: 1.65; }
  .amb-site .amb-operating__grid { grid-template-columns: 1fr; }
  .amb-site .amb-operating-card,
  .amb-site .amb-operating-card:last-child { min-height: 440px; grid-column: auto; padding: 24px; }
  .amb-site .amb-handover-card { right: 20px; left: 20px; }
  .amb-site .amb-steps { grid-template-columns: 1fr; }
  .amb-site .amb-steps li { min-height: 250px; }
  .amb-site .amb-flow-demo { padding: 28px 18px; }
  .amb-site .amb-safety-console__checks { grid-template-columns: 1fr; }
  .amb-site .amb-safety-console__checks > div:nth-last-child(2) { border-bottom: 1px solid #edf1f5; }
  .amb-site .amb-safety-console__checks > div:nth-child(odd),
  .amb-site .amb-safety-console__checks > div:nth-child(even) { border-left: 0; padding-right: 5px; padding-left: 5px; }
  .amb-site .amb-safety-console > footer { align-items: flex-start; flex-direction: column; }
  .amb-site .amb-blocked { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .amb-site .amb-blocked__status,
  .amb-site .amb-blocked__result { border-top: 1px solid rgba(242, 159, 159, .17); border-left: 0; padding-top: 16px; padding-left: 0; }
  .amb-site .amb-feature-grid,
  .amb-site .amb-boundary-grid { grid-template-columns: 1fr; }
  .amb-site .amb-feature-card > p { min-height: 0; }
  .amb-site .amb-architecture { padding: 24px 16px; }
  .amb-site .amb-architecture__clients,
  .amb-site .amb-architecture__providers { grid-template-columns: 1fr; }
  .amb-site .amb-early__card { width: min(calc(100% - 24px), 1240px); padding: 35px 22px; }
  .amb-site .amb-early__actions { align-items: stretch; flex-direction: column; }
  .amb-site .amb-faq-item button { padding: 19px 18px; font-size: 13px; }
  .amb-site .amb-faq-answer { padding: 0 54px 20px 18px; }
  .amb-site .amb-footer__main { grid-template-columns: 1fr; gap: 45px; padding-top: 50px; }
  .amb-site .amb-footer__links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
  .amb-site .amb-footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .amb-site .amb-footer__bottom p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .amb-site .amb-button,
  .amb-site .amb-language__trigger i,
  .amb-site .amb-language__options,
  .amb-site .amb-menu-toggle span,
  .amb-site .amb-feature-card,
  .amb-site .amb-faq-item button i::before,
  .amb-site .amb-faq-item button i::after { transition: none; }

  .amb-site .amb-dashboard,
  .amb-site .amb-dashboard__connection > span,
  .amb-site .amb-live i,
  .amb-site .amb-orbit-node,
  .amb-site .amb-flow-demo__rail span { animation: none; }

  .amb-site.amb-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Multi-page additions. These extend the established visual system without
   changing the original homepage, dashboard, workflow or safety components. */
.amb-site .amb-nav a[aria-current="page"],
.amb-site .amb-header__cta[aria-current="page"] { color: #fff; }
.amb-site .amb-nav a[aria-current="page"] { position: relative; }
.amb-site .amb-nav a[aria-current="page"]::after { position: absolute; right: 0; bottom: -27px; left: 0; height: 2px; border-radius: 2px; background: var(--amb-cyan); content: ""; }

.amb-site .amb-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 156px 0 88px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(35, 118, 255, .24), transparent 35%),
    radial-gradient(circle at 12% 80%, rgba(34, 199, 223, .07), transparent 25%),
    linear-gradient(180deg, #061226, #081a34);
}
.amb-site .amb-page-hero::before { position: absolute; z-index: -1; top: -300px; left: 50%; width: 930px; height: 560px; border: 1px solid rgba(89,150,255,.14); border-radius: 50%; content: ""; transform: translateX(-50%); }
.amb-site .amb-page-hero__inner { width: min(calc(100% - 48px), 950px); }
.amb-site .amb-page-hero h1 { margin: 0; color: #fff; font-size: clamp(46px, 6vw, 72px); font-weight: 680; letter-spacing: -.058em; line-height: 1.04; text-wrap: balance; }
.amb-site .amb-page-hero__inner > p:last-of-type { max-width: 790px; margin: 25px auto 0; color: #bdcadd; font-size: clamp(17px, 2vw, 20px); line-height: 1.7; text-wrap: balance; }
.amb-site .amb-page-hero .amb-hero__actions { margin-top: 30px; }

.amb-site .amb-summary { padding: 108px 0; background: #fff; }
.amb-site .amb-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.amb-site .amb-preview-card { position: relative; display: flex; min-height: 330px; flex-direction: column; border: 1px solid #dce6f1; border-radius: 18px; padding: 30px; background: linear-gradient(145deg,#fff,#f7faff); box-shadow: 0 18px 50px rgba(31,61,96,.06); }
.amb-site .amb-preview-card__icon { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid #d5e5f8; border-radius: 13px; color: #1f70db; background: #edf5ff; }
.amb-site .amb-preview-card__icon svg { width: 23px; }
.amb-site .amb-preview-card .amb-card-topline { margin: 24px 0 0; color: #3377c5; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.amb-site .amb-preview-card h3 { margin: 11px 0 0; color: #142b47; font-size: 23px; letter-spacing: -.035em; line-height: 1.25; }
.amb-site .amb-preview-card > p:not(.amb-card-topline) { margin: 14px 0 0; color: #66788f; font-size: 13px; line-height: 1.75; }
.amb-site .amb-preview-card > a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; color: #1463c6; font-size: 12px; font-weight: 760; text-decoration: none; }
.amb-site .amb-preview-card > a:hover, .amb-site .amb-section-link:hover { color: #0b4fa5; }

.amb-site .amb-deployment--preview { padding: 100px 0; }
.amb-site .amb-deployment-preview { display: grid; grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr); align-items: center; gap: 80px; }
.amb-site .amb-deployment-preview h2 { margin: 0; color: #fff; font-size: clamp(36px, 4vw, 52px); letter-spacing: -.05em; line-height: 1.08; }
.amb-site .amb-deployment-preview p:not(.amb-section-kicker) { margin: 22px 0 0; color: #879bb7; font-size: 15px; line-height: 1.75; }
.amb-site .amb-section-link { display: inline-flex; gap: 9px; margin-top: 24px; color: #6cb5ff; font-size: 13px; font-weight: 750; text-decoration: none; }
.amb-site .amb-deployment-mini { display: grid; grid-template-columns: 1fr auto 1.2fr auto 1fr; align-items: center; gap: 12px; border: 1px solid rgba(132,181,243,.18); border-radius: 20px; padding: 30px; background: rgba(255,255,255,.025); box-shadow: 0 28px 70px rgba(0,5,18,.2); }
.amb-site .amb-deployment-mini article { display: grid; min-height: 150px; place-items: center; align-content: center; gap: 14px; border: 1px solid rgba(132,181,243,.18); border-radius: 15px; color: #82bfff; background: rgba(21,72,135,.13); }
.amb-site .amb-deployment-mini article svg { width: 32px; }
.amb-site .amb-deployment-mini article span { color: #c3d1e3; font-size: 11px; font-weight: 700; }
.amb-site .amb-deployment-mini__core { background: linear-gradient(145deg,rgba(35,118,255,.2),rgba(34,199,223,.08)) !important; }
.amb-site .amb-deployment-mini > i { color: #4e8ccc; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .08em; }

.amb-site .amb-faq--preview { padding: 100px 0; }
.amb-site .amb-faq--preview .amb-faq__heading .amb-section-link { margin-top: 22px; }
.amb-site .amb-early--cta { padding: 72px 0 96px; }
.amb-site .amb-cta-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 16px; }
.amb-site .amb-cta-visual > span { display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(117,184,255,.28); border-radius: 20px; color: #65b7ff; background: rgba(35,118,255,.11); }
.amb-site .amb-cta-visual > span svg { width: 30px; }
.amb-site .amb-cta-visual > i { color: #3f6ea5; font-style: normal; }

.amb-site .amb-product-detail { padding: 20px 0 96px; background: linear-gradient(180deg,#081a34,#061226); }
.amb-site .amb-product-detail .amb-product-view { margin-top: 0; }
.amb-site .amb-statements { padding: 90px 0; background: #f6f9fd; }
.amb-site .amb-statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.amb-site .amb-statement { display: grid; grid-template-columns: 54px 1fr; gap: 20px; border: 1px solid #dce6f0; border-radius: 18px; padding: 32px; background: #fff; }
.amb-site .amb-statement > span { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg,#2376ff,#22c7df); }
.amb-site .amb-statement--boundary > span { background: linear-gradient(145deg,#0b2b54,#1769c9); }
.amb-site .amb-statement svg { width: 25px; }
.amb-site .amb-statement p { margin: 0; color: #334c69; font-size: 15px; font-weight: 560; line-height: 1.75; }

.amb-site .amb-workflow--page { padding-top: 100px; }
.amb-site .amb-workflow--page .amb-steps li h2 { margin: 28px 0 0; color: #17304d; font-size: 16px; letter-spacing: -.025em; }
.amb-site .amb-state-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.amb-site .amb-state-card { overflow: hidden; border: 1px solid #dbe5ef; border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(31,61,96,.06); }
.amb-site .amb-state-card header { display: flex; align-items: center; gap: 13px; border-bottom: 1px solid #e5ecf3; padding: 23px 25px; }
.amb-site .amb-state-card header > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: #fff; background: #18a96f; font-size: 13px; font-weight: 900; }
.amb-site .amb-state-card--blocked header > span { background: #c85555; }
.amb-site .amb-state-card h2 { margin: 0; color: #18314e; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.amb-site .amb-state-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; padding: 14px 25px 23px; list-style: none; }
.amb-site .amb-state-card li { display: flex; align-items: center; gap: 9px; border-bottom: 1px solid #edf1f5; padding: 12px 4px; color: #5a6e86; font-size: 12px; }
.amb-site .amb-state-card li svg { width: 16px; flex: 0 0 16px; color: #18a96f; }
.amb-site .amb-state-card--blocked li svg { color: #b85a5a; }

.amb-site .amb-safety--page { padding-top: 104px; }
.amb-site .amb-security-facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 32px; }
.amb-site .amb-security-facts > div { display: flex; min-height: 58px; align-items: center; gap: 10px; border: 1px solid rgba(174,202,238,.13); border-radius: 11px; padding: 12px; color: #a3b5cd; background: rgba(255,255,255,.025); font-size: 10px; line-height: 1.4; }
.amb-site .amb-security-facts svg { width: 15px; flex: 0 0 15px; color: #43ca92; }
.amb-site .amb-disclosure { padding: 85px 0; background: #fff; }
.amb-site .amb-disclosure article { display: grid; grid-template-columns: 64px 1fr; gap: 24px; border: 1px solid #d8e4f0; border-radius: 18px; padding: 34px; background: #f7faff; }
.amb-site .amb-disclosure article > span { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 18px; color: #1b69cc; background: #e8f2ff; }
.amb-site .amb-disclosure svg { width: 29px; }
.amb-site .amb-disclosure h2 { margin: 0; color: #172f4c; font-size: 24px; letter-spacing: -.03em; }
.amb-site .amb-disclosure p { margin: 10px 0 0; color: #657890; font-size: 13px; line-height: 1.75; }
.amb-site .amb-disclosure a { display: inline-flex; gap: 8px; margin-top: 16px; color: #1463c6; font-size: 12px; font-weight: 750; text-decoration: none; }

.amb-site .amb-faq--page { padding: 90px 0 110px; }
.amb-site .amb-faq-page__inner { display: grid; grid-template-columns: minmax(0,1fr) 310px; align-items: start; gap: 30px; }
.amb-site .amb-faq-contact { position: sticky; top: 98px; border: 1px solid #dce6f0; border-radius: 18px; padding: 28px; background: #fff; box-shadow: 0 18px 50px rgba(32,58,89,.06); }
.amb-site .amb-faq-contact > svg { width: 32px; color: #1c70da; }
.amb-site .amb-faq-contact h2 { margin: 20px 0 0; color: #19324f; font-size: 21px; letter-spacing: -.03em; line-height: 1.35; }
.amb-site .amb-faq-contact .amb-button { width: 100%; margin-top: 24px; }

.amb-site .amb-early-page, .amb-site .amb-contact-page, .amb-site .amb-legal { padding: 96px 0 110px; background: #f6f9fd; }
.amb-site .amb-readiness-page { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.amb-site .amb-readiness-page li { display: grid; min-height: 270px; grid-template-rows: auto 1fr; border: 1px solid #dbe5ef; border-radius: 18px; padding: 29px; background: #fff; box-shadow: 0 18px 45px rgba(31,61,96,.05); }
.amb-site .amb-readiness-page li > span { color: #2a71c6; font-family: var(--font-geist-mono),monospace; font-size: 12px; font-weight: 750; }
.amb-site .amb-readiness-page h2 { margin: 45px 0 0; color: #17304d; font-size: 21px; letter-spacing: -.03em; }
.amb-site .amb-readiness-page p { margin: 13px 0 0; color: #6a7c92; font-size: 13px; line-height: 1.75; }
.amb-site .amb-contact-card { display: grid; grid-template-columns: 50px 1fr; align-items: start; gap: 18px; border: 1px solid #dbe5ef; border-radius: 17px; padding: 26px; background: #fff; box-shadow: 0 16px 42px rgba(31,61,96,.05); }
.amb-site .amb-contact-card > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 14px; color: #1d6bd2; background: #edf5ff; }
.amb-site .amb-contact-card svg { width: 23px; }
.amb-site .amb-contact-card h2 { margin: 0; color: #17304d; font-size: 24px; letter-spacing: -.03em; }
.amb-site .amb-contact-card p { margin: 8px 0 0; color: #6c7e94; font-size: 12px; line-height: 1.65; }
.amb-site .amb-contact-card a { display: inline-flex; gap: 8px; margin-top: 13px; color: #135fbf; font-size: 13px; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.amb-site .amb-contact-card--featured { max-width: 760px; margin: 42px auto 0; padding: 34px; }
.amb-site .amb-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.amb-site .amb-contact-grid .amb-contact-card { min-height: 150px; }
.amb-site .amb-contact-grid .amb-contact-card p { margin-top: 4px; color: #324b68; font-size: 14px; font-weight: 650; }

.amb-site .amb-pricing-page { padding: 96px 0 110px; background: #f6f9fd; }
.amb-site .amb-early-price { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 45px; overflow: hidden; border: 1px solid rgba(97,166,255,.3); border-radius: 22px; padding: 38px 42px; color: #fff; background: radial-gradient(circle at 85% 15%,rgba(34,199,223,.2),transparent 35%),linear-gradient(135deg,#0a2347,#07162e); box-shadow: 0 24px 70px rgba(12,45,85,.18); }
.amb-site .amb-price-badge { display: inline-flex; width: fit-content; border: 1px solid #cfe1f6; border-radius: 99px; padding: 7px 10px; color: #2b6bb5; background: #edf5ff; font-size: 9px; font-weight: 820; letter-spacing: .07em; line-height: 1; text-transform: uppercase; }
.amb-site .amb-early-price .amb-price-badge { border-color: rgba(92,210,229,.25); color: #7ce2ef; background: rgba(34,199,223,.09); }
.amb-site .amb-early-price h2 { margin: 18px 0 0; font-size: 34px; letter-spacing: -.045em; }
.amb-site .amb-early-price p { max-width: 760px; margin: 14px 0 0; color: #adbed4; font-size: 14px; line-height: 1.75; }
.amb-site .amb-early-price__amount { display: grid; min-width: 220px; justify-items: start; }
.amb-site .amb-early-price__amount strong { font-size: 52px; letter-spacing: -.06em; line-height: 1; }
.amb-site .amb-early-price__amount > span { margin-top: 7px; color: #8fa6c2; font-size: 11px; }
.amb-site .amb-early-price__amount .amb-button { width: 100%; margin-top: 20px; }
.amb-site .amb-pricing-heading { max-width: 810px; margin: 92px auto 45px; text-align: center; }
.amb-site .amb-pricing-heading > p:last-child { margin-inline: auto; }
.amb-site .amb-pricing-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; gap: 16px; }
.amb-site .amb-price-card { position: relative; display: flex; min-width: 0; flex-direction: column; border: 1px solid #d9e4ef; border-radius: 19px; padding: 25px; background: #fff; box-shadow: 0 18px 48px rgba(31,61,96,.055); }
.amb-site .amb-price-card--featured { border-color: #77aefa; box-shadow: 0 22px 65px rgba(35,118,255,.15); transform: translateY(-10px); }
.amb-site .amb-price-card--featured::before { position: absolute; top: 0; right: 25px; left: 25px; height: 3px; border-radius: 0 0 5px 5px; background: linear-gradient(90deg,#2376ff,#22c7df); content: ""; }
.amb-site .amb-price-card header h2 { margin: 21px 0 0; color: #17304d; font-size: 25px; letter-spacing: -.04em; }
.amb-site .amb-price-card header p { min-height: 88px; margin: 11px 0 0; color: #6a7c92; font-size: 12px; line-height: 1.65; }
.amb-site .amb-price-card__amount { display: flex; min-height: 67px; align-items: flex-end; gap: 8px; border-top: 1px solid #e6edf4; padding-top: 20px; }
.amb-site .amb-price-card__amount strong { color: #112c4c; font-size: 34px; letter-spacing: -.055em; line-height: 1; white-space: nowrap; }
.amb-site .amb-price-card__amount span { padding-bottom: 3px; color: #8593a5; font-size: 9px; line-height: 1.35; }
.amb-site .amb-price-card ul { display: grid; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }
.amb-site .amb-price-card li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; color: #546980; font-size: 11px; line-height: 1.45; }
.amb-site .amb-price-card li svg { width: 15px; color: #18a96f; }
.amb-site .amb-price-card > .amb-button { width: 100%; margin-top: auto; padding-inline: 12px; font-size: 12px; }
.amb-site .amb-button--light { border-color: #cbd9e8; color: #1b4f87; background: #f7faff; }
.amb-site .amb-button--light:hover { border-color: #8db5e4; background: #edf5ff; }
.amb-site .amb-plan-included { display: grid; grid-template-columns: 280px 1fr; align-items: start; gap: 35px; margin-top: 36px; border: 1px solid #d8e5f1; border-radius: 19px; padding: 32px; background: #fff; }
.amb-site .amb-plan-included > div { display: flex; align-items: center; gap: 14px; }
.amb-site .amb-plan-included > div > span { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 12px; color: #1f6ed0; background: #ebf4ff; }
.amb-site .amb-plan-included > div svg { width: 22px; }
.amb-site .amb-plan-included h2 { margin: 0; color: #17304d; font-size: 20px; letter-spacing: -.03em; }
.amb-site .amb-plan-included ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 22px; margin: 0; padding: 0; list-style: none; }
.amb-site .amb-plan-included li { display: flex; align-items: center; gap: 9px; color: #536981; font-size: 12px; }
.amb-site .amb-plan-included li svg { width: 16px; flex: 0 0 16px; color: #18a96f; }
.amb-site .amb-pricing-details { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 36px; }
.amb-site .amb-pricing-details article { border: 1px solid #d9e4ef; border-radius: 18px; padding: 30px; background: #fff; }
.amb-site .amb-pricing-detail__icon { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; color: #1d6bd2; background: #edf5ff; }
.amb-site .amb-pricing-detail__icon svg { width: 22px; }
.amb-site .amb-pricing-details h2 { margin: 19px 0 0; color: #17304d; font-size: 22px; letter-spacing: -.035em; }
.amb-site .amb-pricing-details ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0 0 0 18px; color: #657990; font-size: 12px; line-height: 1.6; }
.amb-site .amb-pricing-details p { margin: 16px 0 0; color: #657990; font-size: 13px; line-height: 1.75; }
.amb-site .amb-pricing-disclaimer { max-width: 900px; margin: 30px auto 0; color: #73869c; font-size: 11px; line-height: 1.7; text-align: center; }

.amb-site .amb-legal__inner { width: min(calc(100% - 48px), 850px); }
.amb-site .amb-legal__updated { margin: 0 0 30px; color: #77899f; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.amb-site .amb-legal__inner > section { border-top: 1px solid #dbe4ee; padding: 34px 0; }
.amb-site .amb-legal h2 { margin: 0; color: #17304d; font-size: 24px; letter-spacing: -.03em; }
.amb-site .amb-legal p { margin: 13px 0 0; color: #5f728a; font-size: 14px; line-height: 1.8; }

.amb-site .amb-footer__links--expanded { grid-template-columns: 170px 120px 230px; gap: 36px; }
.amb-site .amb-footer__operator { color: #9bb0c9 !important; font-weight: 650; }

@media (max-width: 1080px) {
  .amb-site .amb-deployment-preview { grid-template-columns: 1fr; gap: 45px; }
  .amb-site .amb-security-facts { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .amb-site .amb-footer__main { grid-template-columns: 1fr; gap: 45px; }
  .amb-site .amb-pricing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .amb-site .amb-price-card--featured { transform: none; }
}

@media (max-width: 820px) {
  .amb-site .amb-nav a[aria-current="page"]::after { display: none; }
  .amb-site .amb-preview-grid, .amb-site .amb-readiness-page { grid-template-columns: 1fr; }
  .amb-site .amb-preview-card { min-height: 280px; }
  .amb-site .amb-statement-grid, .amb-site .amb-state-grid { grid-template-columns: 1fr; }
  .amb-site .amb-security-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .amb-site .amb-faq-page__inner { grid-template-columns: 1fr; }
  .amb-site .amb-faq-contact { position: static; }
  .amb-site .amb-early-price, .amb-site .amb-plan-included, .amb-site .amb-pricing-details { grid-template-columns: 1fr; }
  .amb-site .amb-early-price__amount { min-width: 0; }
  .amb-site .amb-footer__links--expanded { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .amb-site .amb-footer__links--expanded > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .amb-site .amb-page-hero { padding: 126px 0 64px; }
  .amb-site .amb-page-hero__inner { width: min(calc(100% - 32px),950px); }
  .amb-site .amb-page-hero h1 { font-size: clamp(38px,11vw,52px); letter-spacing: -.05em; }
  .amb-site .amb-page-hero__inner > p:last-of-type { font-size: 16px; line-height: 1.6; }
  .amb-site .amb-summary, .amb-site .amb-deployment--preview, .amb-site .amb-faq--preview, .amb-site .amb-product-detail, .amb-site .amb-statements, .amb-site .amb-workflow--page, .amb-site .amb-safety--page, .amb-site .amb-disclosure, .amb-site .amb-faq--page, .amb-site .amb-early-page, .amb-site .amb-contact-page, .amb-site .amb-pricing-page, .amb-site .amb-legal { padding-top: 72px; padding-bottom: 78px; }
  .amb-site .amb-deployment-mini { grid-template-columns: 1fr; }
  .amb-site .amb-deployment-mini > i { transform: rotate(90deg); text-align: center; }
  .amb-site .amb-statement { grid-template-columns: 1fr; }
  .amb-site .amb-state-card ul { grid-template-columns: 1fr; }
  .amb-site .amb-security-facts, .amb-site .amb-contact-grid { grid-template-columns: 1fr; }
  .amb-site .amb-disclosure article { grid-template-columns: 1fr; padding: 25px; }
  .amb-site .amb-contact-card, .amb-site .amb-contact-card--featured { grid-template-columns: 1fr; padding: 24px; }
  .amb-site .amb-early-price { padding: 27px 23px; }
  .amb-site .amb-early-price__amount strong { font-size: 46px; }
  .amb-site .amb-pricing-heading { margin-top: 68px; }
  .amb-site .amb-pricing-grid { grid-template-columns: 1fr; }
  .amb-site .amb-price-card header p { min-height: 0; }
  .amb-site .amb-plan-included { padding: 24px; }
  .amb-site .amb-plan-included ul { grid-template-columns: 1fr; }
  .amb-site .amb-pricing-details article { padding: 24px; }
  .amb-site .amb-footer__links--expanded { grid-template-columns: 1fr 1fr; }
  .amb-site .amb-footer__links--expanded > div:last-child { grid-column: 1 / -1; }
}
