:root {
  --ink: #10243a;
  --muted-ink: #536879;
  --paper: #f6fbff;
  --paper-warm: #e8f4fb;
  --white: #ffffff;
  --signal: #f4b740;
  --signal-dark: #99670d;
  --blue: #2478d4;
  --green: #2f9e6d;
  --red: #e05b3c;
  --line: rgba(36, 120, 212, 0.17);
  --shadow: 0 24px 70px rgba(20, 88, 148, 0.16);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #bfe2ff;
  color: #242424;
  font-family: "Trebuchet MS", "Avenir Next", Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-height);
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--ink);
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: transparent;
  opacity: 0.78;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  background: transparent;
}

.site-nav a.is-active {
  color: var(--white);
  background: var(--ink);
  opacity: 1;
  box-shadow: 0 10px 24px rgba(16, 36, 58, 0.16);
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
  background: #17334f;
}

.mailing-nav-button {
  margin-left: auto;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(16, 36, 58, 0.16);
}

.mailing-nav-button:hover,
.mailing-nav-button:focus-visible {
  background: #17334f;
}

.deck {
  background:
    linear-gradient(180deg, #ffffff 0 62svh, #bfe2ff 78svh, #f6fbff 100%);
}

.deck-card {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -20px 60px rgba(20, 88, 148, 0.18);
}

@supports (position: sticky) {
  .deck-card {
    position: sticky;
    top: 0;
  }
}

.title-card {
  display: grid;
  min-height: 100svh;
  color: var(--white);
  border-radius: 0 0 30px 30px;
  background: #eeeeee;
  box-shadow: none;
}

.title-card::after {
  content: none;
}

.title-video,
.title-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.title-video {
  z-index: 0;
  object-fit: cover;
}

.title-video-shade {
  z-index: 1;
  background: transparent;
}

.animation-card {
  display: grid;
  align-items: end;
  color: var(--white);
  background: #eeeeee;
  padding: 0 clamp(20px, 6vw, 88px) 13svh;
}

#street-scene,
.hero-shade {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#street-scene {
  z-index: 0;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(34, 34, 34, 0.04) 0%, rgba(34, 34, 34, 0.02) 42%, rgba(238, 238, 238, 0) 100%),
    linear-gradient(0deg, rgba(34, 34, 34, 0.12) 0%, rgba(34, 34, 34, 0) 54%);
}

.hero-brand-lockup,
.hero-product-lockup {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 88px);
  right: clamp(20px, 6vw, 88px);
  max-width: none;
  padding-bottom: 0;
  text-align: center;
}

.hero-brand-lockup {
  top: clamp(104px, 14svh, 168px);
  z-index: 2;
}

.hero-product-lockup {
  top: clamp(76px, 17svh, 164px);
  animation: productFadeIn 900ms ease-out 120ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.title-card h1 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: 1in;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  color: #ffffff;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.scroll-prompt {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 13svh;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 3px 12px rgba(12, 24, 36, 0.42);
}

.prompt-arrow {
  display: inline-block;
  width: 0.62em;
  height: 0.62em;
  margin-left: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-0.15em) rotate(45deg);
}

.hero-product-title {
  margin: 0;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: 0.5in;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
}

.hero-product-title span {
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
  margin-left: 0.18em;
  padding: 0.09em 0.24em 0.16em;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.5em;
  line-height: 1.08;
  text-shadow: none;
  vertical-align: baseline;
  box-shadow: none;
}

.hero-copy {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(16, 36, 58, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

@keyframes productFadeIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-band {
  display: grid;
  place-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(20px, 6vw, 88px) clamp(36px, 6vw, 72px);
  background: var(--paper);
}

.video-band h2 {
  width: min(920px, 100%);
  margin: 0 0 22px;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.hero-video {
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #dceefb;
  box-shadow: var(--shadow);
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-scroll-prompt {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: clamp(24px, 5svh, 52px);
  margin: 0;
  color: #8c97a1;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 800;
  text-align: center;
}

.video-scroll-prompt .prompt-arrow {
  border-color: #8c97a1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--signal);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.38);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(10px);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.hero-lower-panel {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  align-self: end;
  width: min(900px, 100%);
  transform: translateY(calc(45% - 2mm));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  min-height: 86px;
  padding: 18px;
  background: rgba(12, 57, 100, 0.5);
}

.hero-metrics span,
.status-row em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-street-actions {
  margin-top: 20px;
}

.animation-scroll-prompt {
  width: 100%;
  margin: calc(clamp(20px, 3.4svh, 36px) - 3mm) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 800;
  text-align: center;
  transform: translateY(16%);
}

.animation-scroll-prompt .prompt-arrow {
  border-color: rgba(255, 255, 255, 0.72);
}

.product-band,
.awareness-band,
.deployment-band {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 88px);
}

.product-band {
  padding-bottom: 10mm;
  background:
    linear-gradient(180deg, #f6fbff 0%, #ffffff 52%, #eef7ff 100%);
}

.product-scroll-prompt {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: clamp(16px, 3svh, 34px);
  margin: 0;
  color: #8c97a1;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 800;
  text-align: center;
}

.product-scroll-prompt .prompt-arrow {
  border-color: #8c97a1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: end;
  margin-bottom: clamp(40px, 8vw, 88px);
}

.section-heading h2,
.split-copy h2,
.deployment-copy h2 {
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(2.7rem, 6.2vw, 6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.deployment-copy p {
  margin: 0;
  color: var(--muted-ink);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  transform: translateY(-10mm);
}

.device-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(244, 183, 64, 0.18), rgba(36, 120, 212, 0.16) 46%, rgba(47, 158, 109, 0.12)),
    repeating-linear-gradient(0deg, rgba(36, 120, 212, 0.06) 0 1px, transparent 1px 46px),
    var(--white);
  box-shadow: var(--shadow);
}

.camera-head {
  position: relative;
  z-index: 3;
  width: min(245px, 62vw);
  aspect-ratio: 1.28;
  border: 10px solid #173047;
  border-radius: 26px;
  background:
    linear-gradient(150deg, #ffffff, #cfe5f4 70%),
    var(--white);
  box-shadow:
    inset -18px -18px 46px rgba(20, 88, 148, 0.14),
    0 28px 70px rgba(20, 88, 148, 0.22);
}

.lens {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border: 11px solid #0f2435;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle, var(--blue) 0 16px, #0b1f31 17px 100%);
}

.sensor-dot {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(47, 158, 68, 0.18);
}

.camera-stem,
.camera-base {
  position: absolute;
  z-index: 2;
  background: #173047;
}

.camera-stem {
  width: 30px;
  height: 170px;
  top: calc(50% + 78px);
  border-radius: 999px;
}

.camera-base {
  width: 190px;
  height: 34px;
  bottom: 76px;
  border-radius: 999px;
}

.signal-rings span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(28, 126, 214, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-rings span:nth-child(2) {
  width: 330px;
  height: 330px;
  border-color: rgba(255, 176, 0, 0.28);
}

.signal-rings span:nth-child(3) {
  width: 470px;
  height: 470px;
  border-color: rgba(47, 158, 68, 0.22);
}

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

.capability-grid article,
.workflow article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.capability-grid article {
  min-height: 238px;
  padding: 28px;
}

.capability-grid article:nth-child(n + 3) {
  align-self: start;
  min-height: 270px;
  height: 270px;
  padding-bottom: 22px;
}

.capability-grid article:nth-child(4) h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  white-space: nowrap;
}

.capability-grid h3,
.workflow h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.capability-grid p,
.workflow p {
  margin: 0;
  color: var(--muted-ink);
}

.icon {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(36, 120, 212, 0.1);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon.approaching::before,
.icon.leaving::before {
  left: 10px;
  top: 17px;
  width: 26px;
  height: 13px;
  border-radius: 5px 8px 3px 3px;
  background: var(--red);
}

.icon.approaching::after {
  right: 6px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  transform: rotate(45deg);
}

.icon.leaving::before {
  background: var(--blue);
}

.icon.leaving::after {
  left: 7px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
}

.icon.person::before {
  left: 18px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.icon.person::after {
  left: 15px;
  top: 22px;
  width: 16px;
  height: 15px;
  border-left: 4px solid var(--green);
  border-bottom: 4px solid var(--green);
  transform: skewX(-18deg);
}

.icon.local::before {
  left: 12px;
  top: 9px;
  width: 22px;
  height: 28px;
  border: 3px solid var(--signal-dark);
  border-radius: 7px;
}

.icon.local::after {
  left: 21px;
  top: 30px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal-dark);
}

.awareness-band {
  color: var(--ink);
  background:
    linear-gradient(135deg, #e5f4ff 0%, #f8fcff 46%, #eef8f4 100%);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  gap: clamp(26px, 6vw, 82px);
  align-items: end;
}

.split-copy p {
  color: var(--muted-ink);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 7vw, 78px);
}

.workflow article {
  min-height: 260px;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.awareness-scroll-prompt {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: clamp(24px, 5svh, 52px);
  margin: 0;
  color: #8c97a1;
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 800;
  text-align: center;
}

.awareness-scroll-prompt .prompt-arrow {
  border-color: #8c97a1;
}

.workflow span {
  color: var(--blue);
  font-weight: 900;
}

.workflow p {
  color: var(--muted-ink);
}

.deployment-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.66fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(180deg, var(--paper-warm), var(--paper));
}

.deployment-copy p {
  max-width: 720px;
  margin: 22px 0 32px;
}

.deployment-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 14px;
  border: 1px solid rgba(36, 120, 212, 0.14);
  border-radius: 6px;
}

.status-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.status-row strong {
  min-width: 0;
  line-height: 1.1;
}

.status-row em {
  color: var(--muted-ink);
}

.status-row.active {
  border-color: rgba(217, 72, 15, 0.34);
  background: rgba(217, 72, 15, 0.08);
}

.status-row.active span {
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(217, 72, 15, 0.13);
}

.status-row.calm span {
  background: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.site-footer p {
  max-width: 720px;
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

.mailing-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 32%, rgba(191, 226, 255, 0.72), rgba(246, 251, 255, 0) 38%),
    linear-gradient(180deg, #f6fbff, #e8f4fb);
}

.mailing-back {
  position: fixed;
  z-index: 2;
  top: 24px;
  left: clamp(20px, 4vw, 54px);
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(16, 36, 58, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.mailing-content {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 100svh;
  padding: clamp(28px, 6vw, 72px);
  text-align: center;
}

.mailing-content h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.mailing-form {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(460px, 100%);
  margin-top: 34px;
}

.mailing-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid rgba(36, 120, 212, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 42px rgba(20, 88, 148, 0.12);
}

.mailing-form input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 120, 212, 0.18);
}

.mailing-form .button {
  min-width: 160px;
}

.mailing-content-embed {
  padding-top: clamp(88px, 12vw, 130px);
  padding-bottom: clamp(44px, 7vw, 88px);
}

#mlb2-41113479.ml-form-embedContainer {
  width: min(460px, 100%);
}

#mlb2-41113479 .ml-form-embedWrapper {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(20, 88, 148, 0.16);
}

#mlb2-41113479 .ml-form-embedBody,
#mlb2-41113479 .ml-form-successBody {
  padding: 28px;
}

#mlb2-41113479 .ml-form-embedContent,
#mlb2-41113479 .ml-form-successContent {
  margin-bottom: 22px;
  text-align: left;
}

#mlb2-41113479 h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.05;
}

#mlb2-41113479 p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

#mlb2-41113479 form,
#mlb2-41113479 .ml-form-formContent,
#mlb2-41113479 .ml-form-fieldRow,
#mlb2-41113479 .ml-field-group,
#mlb2-41113479 .ml-form-embedSubmit {
  width: 100%;
}

#mlb2-41113479 input[type="email"] {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid rgba(36, 120, 212, 0.2);
  border-radius: 8px;
  background: #ffffff;
  font: inherit;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 42px rgba(20, 88, 148, 0.1);
}

#mlb2-41113479 input[type="email"]:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 120, 212, 0.18);
}

#mlb2-41113479 .ml-form-embedPermissions {
  margin: 14px 0 18px;
}

#mlb2-41113479 .ml-form-embedPermissions p {
  font-size: 0.82rem;
}

#mlb2-41113479 .ml-form-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#mlb2-41113479 .ml-form-embedSubmit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
}

#mlb2-41113479 .ml-form-embedSubmit button:hover,
#mlb2-41113479 .ml-form-embedSubmit button:focus-visible {
  background: #17334f;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.ml-form-embedSubmitLoad::after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border: 4px solid #ffffff;
  border-color: #ffffff #ffffff #ffffff transparent;
  border-radius: 50%;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  to {
    transform: rotate(360deg);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 901px) {
  .product-band,
  .awareness-band,
  .deployment-band {
    padding-top: clamp(66px, 8svh, 100px);
    padding-bottom: clamp(56px, 6svh, 72px);
  }

  .section-heading {
    margin-bottom: clamp(28px, 5svh, 54px);
  }

  .workflow {
    margin-top: clamp(28px, 5svh, 54px);
  }
}

@media (min-width: 901px) and (max-height: 880px) {
  .product-band,
  .awareness-band,
  .deployment-band {
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .section-heading,
  .split-copy {
    gap: clamp(24px, 4vw, 56px);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .split-copy h2,
  .deployment-copy h2 {
    font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  }

  .section-heading p,
  .split-copy p,
  .deployment-copy p {
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  }

  .product-layout {
    gap: clamp(24px, 4vw, 54px);
    transform: none;
  }

  .device-visual {
    min-height: min(430px, 52svh);
  }

  .camera-head {
    width: min(215px, 48vw);
  }

  .camera-stem {
    height: 138px;
    top: calc(50% + 68px);
  }

  .camera-base {
    width: 160px;
    bottom: 54px;
  }

  .capability-grid article {
    min-height: 190px;
    padding: 22px;
  }

  .capability-grid article:nth-child(n + 3) {
    min-height: 220px;
    height: auto;
  }

  .capability-grid h3,
  .workflow h3 {
    margin-top: 14px;
    font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  }

  .workflow {
    margin-top: 28px;
  }

  .workflow article {
    min-height: 205px;
    padding: 24px;
  }

  .deployment-band {
    gap: clamp(28px, 5vw, 68px);
  }

  .deployment-copy p {
    margin: 16px 0 24px;
  }

  .status-row {
    min-height: 56px;
    padding: 12px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  .mailing-nav-button {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .animation-card {
    min-height: 100svh;
    padding-inline: 20px;
  }

  .hero-brand-lockup {
    top: 180px;
  }

  .hero-product-lockup {
    top: 116px;
  }

  .title-card h1 {
    font-size: clamp(3.8rem, 12vw, 6rem);
  }

  .hero-product-title {
    font-size: clamp(2.2rem, 6.5vw, 3.4rem);
  }

  .hero-metrics,
  .section-heading,
  .product-layout,
  .split-copy,
  .deployment-band {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .device-visual {
    min-height: 430px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .product-band,
  .awareness-band,
  .deployment-band {
    padding-top: 70px;
    padding-bottom: 48px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.72fr);
    gap: 24px;
    margin-bottom: 24px;
  }

  .product-layout {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    transform: none;
  }

  .split-copy {
    grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.8fr);
    gap: 24px;
  }

  .deployment-band {
    grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.66fr);
    gap: 28px;
  }

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

  .workflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
  }

  .section-heading h2,
  .split-copy h2,
  .deployment-copy h2 {
    font-size: clamp(2.2rem, 5.2vw, 3.8rem);
  }

  .section-heading p,
  .split-copy p,
  .deployment-copy p {
    font-size: 0.98rem;
  }

  .device-visual {
    min-height: 350px;
  }

  .camera-head {
    width: min(190px, 34vw);
  }

  .camera-stem {
    height: 116px;
    top: calc(50% + 58px);
  }

  .camera-base {
    width: 142px;
    bottom: 42px;
  }

  .capability-grid article {
    min-height: 178px;
    padding: 18px;
  }

  .capability-grid article:nth-child(n + 3) {
    min-height: 200px;
    height: auto;
  }

  .capability-grid article:nth-child(4) h3 {
    font-size: clamp(1rem, 1.8vw, 1.22rem);
  }

  .capability-grid h3,
  .workflow h3 {
    margin-top: 12px;
    font-size: clamp(1rem, 1.8vw, 1.24rem);
  }

  .workflow article {
    min-height: 190px;
    padding: 20px;
  }

  .deployment-copy p {
    margin: 14px 0 20px;
  }

  .status-row {
    min-height: 54px;
    padding: 11px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    min-height: 92px;
    gap: 10px;
  }

  .site-nav {
    display: grid;
    gap: 5px;
  }

  .mailing-nav-button {
    max-width: 142px;
    text-align: center;
    white-space: normal;
  }

  .animation-card {
    min-height: 980px;
    padding-top: 128px;
    padding-bottom: 88px;
  }

  .title-card h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-brand-lockup {
    top: 118px;
  }

  .hero-product-lockup {
    top: 104px;
  }

  .hero-product-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .hero-lower-panel {
    justify-items: stretch;
  }

  .product-band,
  .awareness-band,
  .deployment-band {
    padding-inline: 20px;
  }

  .capability-grid article,
  .workflow article {
    min-height: auto;
    padding: 24px;
  }

  .status-row {
    grid-template-columns: 14px minmax(0, 1fr);
  }

  .status-row em {
    grid-column: 2;
  }
}

.flow-card {
  display: grid;
  align-content: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.82), rgba(238, 238, 238, 0) 48%),
    #eeeeee;
  padding: clamp(86px, 11svh, 118px) clamp(20px, 6vw, 88px) clamp(58px, 8svh, 84px);
}

.flow-card .hero-product-lockup {
  position: relative;
  z-index: 2;
  inset: auto;
  max-width: 1080px;
  margin: 0 auto;
}

.flow-card .hero-copy {
  max-width: 900px;
  margin-top: 20px;
  color: rgba(16, 36, 58, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.24rem);
}

.two-step-card {
  padding-top: clamp(78px, 9svh, 104px);
  padding-bottom: clamp(56px, 7svh, 76px);
}

.two-step-card .hero-copy {
  max-width: 960px;
  margin-top: 16px;
  font-size: clamp(0.98rem, 1.35vw, 1.16rem);
}

.information-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(150px, 0.9fr) minmax(34px, 0.16fr) minmax(230px, 1.24fr) minmax(34px, 0.16fr) minmax(160px, 0.96fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  width: min(1120px, 100%);
  margin: clamp(30px, 5svh, 52px) auto 0;
}

.information-flow.two-step-flow {
  grid-template-columns: minmax(190px, 0.9fr) 96px minmax(190px, 0.92fr);
  width: min(820px, 100%);
  margin-top: clamp(18px, 3.2svh, 34px);
}

.flow-step {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 36, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(16, 36, 58, 0.13);
  transform: scale(1);
  transform-origin: center;
}

.flow-image-frame {
  overflow: hidden;
  border-radius: 7px;
  background: #dbeaf4;
}

.flow-step-device .flow-image-frame {
  aspect-ratio: 3 / 4;
}

.flow-step-phone .flow-image-frame {
  aspect-ratio: 16 / 10;
}

.flow-step-watch .flow-image-frame {
  aspect-ratio: 4 / 5;
}

.two-step-card .flow-step {
  gap: 10px;
  padding: 10px;
}

.two-step-card .flow-image-frame {
  height: clamp(250px, 38svh, 370px);
  aspect-ratio: auto;
}

.two-step-card .flow-step strong {
  font-size: clamp(0.96rem, 1.2vw, 1.12rem);
  line-height: 1.12;
}

.flow-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-step p {
  margin: 0;
  color: var(--ink);
  text-align: left;
}

.flow-step span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-step strong {
  display: block;
  margin-top: 3px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.08;
}

.flow-arrow {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 120, 212, 0.25), rgba(16, 36, 58, 0.72));
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 13px;
  height: 13px;
  border-top: 3px solid rgba(16, 36, 58, 0.72);
  border-right: 3px solid rgba(16, 36, 58, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.flow-card .animation-scroll-prompt {
  position: absolute;
  z-index: 3;
  left: 20px;
  right: 20px;
  bottom: clamp(18px, 3.4svh, 36px);
  margin: 0;
  color: #7f8d9a;
  transform: none;
}

.flow-card .animation-scroll-prompt .prompt-arrow {
  border-color: #7f8d9a;
}

.flow-card.is-flow-active .flow-step-device {
  animation: flowFocus 2s ease-in-out 0s 1;
}

.flow-card.is-flow-active .flow-step-phone {
  animation: flowFocus 2s ease-in-out 2s 1;
}

.flow-card.is-flow-active .flow-step-watch {
  animation: flowFocus 2s ease-in-out 4s 1;
}

.two-step-card.is-flow-active .flow-step-watch {
  animation-delay: 2s;
}

@keyframes flowFocus {
  0%,
  100% {
    z-index: 1;
    transform: scale(1);
    box-shadow: 0 18px 46px rgba(16, 36, 58, 0.13);
  }

  14%,
  86% {
    z-index: 4;
    transform: scale(var(--flow-focus-scale, 1.14));
    box-shadow: 0 30px 72px rgba(16, 36, 58, 0.22);
  }
}

@media (max-width: 900px) {
  .flow-card {
    min-height: 100svh;
    padding: 108px 20px 72px;
  }

  .two-step-card {
    padding-top: 98px;
    padding-bottom: 74px;
  }

  .information-flow {
    grid-template-columns: minmax(130px, 0.9fr) 28px minmax(160px, 1.2fr) 28px minmax(130px, 0.95fr);
    gap: 10px;
  }

  .information-flow.two-step-flow {
    grid-template-columns: minmax(130px, 0.9fr) 54px minmax(130px, 0.95fr);
  }

  .two-step-card .flow-image-frame {
    height: clamp(220px, 34svh, 315px);
  }

  .flow-step {
    padding: 9px;
  }

  .flow-step strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  body {
    background: #eef5fb;
  }

  .deck {
    background: #eef5fb;
  }

  .deck-card {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
    scroll-margin-top: calc(var(--header-height) + 18px);
    border-radius: 22px 22px 0 0;
  }

  .title-card {
    min-height: 100svh;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
  }

  .site-header {
    min-height: var(--header-height);
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .site-nav {
    display: flex;
    max-width: calc(100vw - 154px);
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .mailing-nav-button {
    flex: 0 0 132px;
    max-width: 132px;
    padding: 9px 10px;
    font-size: 0.66rem;
    text-align: center;
    white-space: normal;
  }

  .hero-brand-lockup {
    top: clamp(112px, 17svh, 148px);
  }

  .title-card h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .scroll-prompt {
    bottom: 11svh;
    font-size: 0.98rem;
  }

  .flow-card {
    min-height: auto;
    align-content: start;
    --flow-focus-scale: 1.04;
    padding: 112px 18px 88px;
  }

  .flow-card .hero-product-title {
    white-space: normal;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .flow-card .hero-product-title span {
    margin-top: 8px;
  }

  .flow-card .hero-copy {
    max-width: 35rem;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .information-flow {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: min(430px, 100%);
    margin-top: 26px;
  }

  .information-flow.two-step-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .flow-step {
    gap: 12px;
    padding: 10px;
  }

  .flow-step-device .flow-image-frame,
  .flow-step-phone .flow-image-frame,
  .flow-step-watch .flow-image-frame,
  .two-step-card .flow-image-frame {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .flow-step-phone .flow-image-frame {
    aspect-ratio: 16 / 10;
  }

  .flow-image-frame img {
    object-fit: contain;
  }

  .flow-step strong,
  .two-step-card .flow-step strong {
    font-size: 1rem;
    line-height: 1.16;
  }

  .flow-arrow {
    width: 3px;
    height: 42px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(36, 120, 212, 0.25), rgba(16, 36, 58, 0.72));
  }

  .flow-arrow::after {
    top: auto;
    right: auto;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .flow-card .animation-scroll-prompt,
  .video-scroll-prompt,
  .product-scroll-prompt {
    position: static;
    margin-top: 28px;
    padding: 0 8px;
    font-size: 0.92rem;
  }

  .video-band {
    min-height: auto;
    padding: 104px 18px 82px;
  }

  .video-band h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-video {
    width: 100%;
  }

  .product-band {
    min-height: auto;
    padding: 104px 18px 72px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .section-heading p {
    font-size: 1rem;
  }

  .product-layout {
    gap: 24px;
    transform: none;
  }

  .device-visual {
    min-height: 330px;
  }

  .camera-head {
    width: min(190px, 66vw);
  }

  .camera-stem {
    height: 112px;
    top: calc(50% + 58px);
  }

  .camera-base {
    width: 142px;
    bottom: 42px;
  }

  .capability-grid {
    gap: 14px;
  }

  .capability-grid article,
  .capability-grid article:nth-child(n + 3) {
    height: auto;
    min-height: auto;
    padding: 22px;
  }

  .capability-grid article:nth-child(4) h3 {
    white-space: normal;
  }
}

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