:root {
  color-scheme: light;
  --navy: #142847;
  --navy-2: #0b1b31;
  --blue: #4aa4ed;
  --blue-2: #2488d8;
  --ink: #202937;
  --muted: #637083;
  --paper: #f6f9fd;
  --surface: #ffffff;
  --line: #dce6f1;
  --shadow: 0 24px 70px rgba(20, 40, 71, 0.16);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body.is-smooth-scrolling {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

main > section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 5vw, 66px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 241, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(20, 40, 71, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 14vw, 168px);
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.button,
.text-link {
  text-decoration: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  font-weight: 750;
}

.header-cta {
  background: var(--navy);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(340px, 1.06fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 253, 0.78)),
    radial-gradient(circle at 96% 10%, rgba(74, 164, 237, 0.26), transparent 34%),
    url("assets/entrycall-auth-background.avif") right center / 55% auto no-repeat;
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-2);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.7vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 610px;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
}

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

.button {
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(74, 164, 237, 0.32);
}

.button.secondary {
  border-color: #bed4e8;
  color: var(--navy);
  background: #ffffff;
}

.button.light {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: min(580px, 84%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 164, 237, 0.14), rgba(74, 164, 237, 0) 64%);
  transform: translate(12%, 2%);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 136px));
  clip-path: inset(0 0 3px 0 round 64px);
  filter: drop-shadow(0 30px 42px rgba(20, 40, 71, 0.24));
}

.hero-signals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-signal {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(162, 207, 244, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(20, 40, 71, 0.16);
  backdrop-filter: blur(14px);
  cursor: help;
  pointer-events: auto;
  scale: 1;
  transition: scale 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-signal::before,
.hero-signal::after {
  position: absolute;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: left top;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-signal::before {
  content: attr(data-detail);
  top: calc(100% + 12px);
  width: 245px;
  padding: 14px 15px;
  border: 1px solid rgba(162, 207, 244, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 22px 54px rgba(20, 40, 71, 0.18);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.45;
}

.hero-signal::after {
  content: "";
  top: calc(100% + 5px);
  width: 13px;
  height: 13px;
  margin-left: 17px;
  border-top: 1px solid rgba(162, 207, 244, 0.68);
  border-left: 1px solid rgba(162, 207, 244, 0.68);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(8px) rotate(45deg) scale(0.96);
}

.hero-signal:hover,
.hero-signal:focus-visible {
  scale: 1.04;
  border-color: rgba(74, 164, 237, 0.82);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 60px rgba(20, 40, 71, 0.22);
  outline: 3px solid rgba(74, 164, 237, 0.18);
  outline-offset: 4px;
}

.hero-signal:hover::before,
.hero-signal:hover::after,
.hero-signal:focus-visible::before,
.hero-signal:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-signal:hover::after,
.hero-signal:focus-visible::after {
  transform: translateY(0) rotate(45deg) scale(1);
}

.hero-signal b {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(74, 164, 237, 0.36);
}

.hero-signal b::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(74, 164, 237, 0.34);
  border-radius: inherit;
}

.hero-signal small {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.signal-video {
  top: 18%;
  left: 4%;
}

.signal-cloud {
  top: 38%;
  right: 0;
}

.signal-cloud::before,
.signal-cloud::after {
  right: 0;
  left: auto;
  transform-origin: right top;
}

.signal-cloud::after {
  margin-right: 22px;
  margin-left: 0;
}

.signal-log {
  bottom: 18%;
  left: 8%;
}

.signal-log::before {
  top: auto;
  bottom: calc(100% + 12px);
  transform: translateY(-8px) scale(0.96);
  transform-origin: left bottom;
}

.signal-log::after {
  top: auto;
  bottom: calc(100% + 5px);
  border-top: 0;
  border-left: 0;
  border-right: 1px solid rgba(162, 207, 244, 0.68);
  border-bottom: 1px solid rgba(162, 207, 244, 0.68);
  transform: translateY(-8px) rotate(45deg) scale(0.96);
}

.signal-log:hover::before,
.signal-log:focus-visible::before {
  transform: translateY(0) scale(1);
}

.signal-log:hover::after,
.signal-log:focus-visible::after {
  transform: translateY(0) rotate(45deg) scale(1);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-strip div {
  min-height: 122px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy-2);
  font-size: 1.03rem;
}

.proof-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.products-overview {
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  gap: 18px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 52px rgba(20, 40, 71, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(74, 164, 237, 0.24),
    rgba(74, 164, 237, 0) 34%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-card.is-tilting::after {
  opacity: 1;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(74, 164, 237, 0.46);
  box-shadow: 0 26px 62px rgba(20, 40, 71, 0.14);
}

.product-card-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 27, 49, 0.58), rgba(20, 40, 71, 0.22)),
    url("assets/entrycall-auth-background.avif") center / cover no-repeat;
}

.product-card-media img {
  width: 100%;
  height: 100%;
}

.product-card-media.screen img {
  object-fit: cover;
  object-position: left center;
}

.product-card-media.device {
  padding: 22px;
}

.product-card-media.device img {
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 17, 31, 0.28));
}

.product-card-media.brochure img {
  object-fit: contain;
}

.product-card-media.service img {
  object-fit: cover;
}

.product-card-media.brochure.portrait img {
  object-position: center 72%;
}

.product-card-media.brochure.landscape img {
  object-position: center bottom;
}

.product-card-media.service img {
  object-position: center center;
}

.product-card-media.graphic {
  padding: 26px;
}

.plate-visual {
  width: min(280px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(7, 17, 31, 0.2);
}

.plate-visual span {
  display: block;
  width: 38px;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
}

.plate-visual strong,
.plate-visual small {
  display: block;
}

.plate-visual strong {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.plate-visual small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.product-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 26px;
}

.product-card-copy > span,
.product-feature-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: #e7f4ff;
  color: var(--blue-2);
  font-weight: 850;
}

.product-label {
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.38rem;
}

.product-card strong {
  align-self: end;
  margin-top: 18px;
  color: var(--blue-2);
}

.product-page {
  background: var(--paper);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(88vh - var(--header-height));
  padding: clamp(52px, 8vw, 96px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 253, 0.8)),
    url("assets/entrycall-auth-background.avif") right center / 58% auto no-repeat;
  overflow: hidden;
}

.product-hero-copy {
  max-width: 620px;
}

.product-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

.product-hero-copy > p {
  max-width: 620px;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.product-visual {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(220, 230, 241, 0.78);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 27, 49, 0.78), rgba(20, 40, 71, 0.42)),
    url("assets/entrycall-auth-background.avif") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.device-visual {
  align-items: end;
  padding-bottom: 0;
}

.screen-visual img {
  width: 108%;
  max-width: none;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(6%);
}

.device-visual img {
  width: auto;
  align-self: end;
  filter: drop-shadow(0 26px 34px rgba(7, 17, 31, 0.32));
  transform: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.lpr-visual {
  align-content: center;
  gap: 22px;
  color: #ffffff;
}

.camera-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 14px;
}

.camera-line::before,
.camera-line::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.camera-line span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(74, 164, 237, 0.18);
  font-weight: 850;
}

.lpr-plate {
  width: min(520px, 100%);
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  text-align: center;
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.2);
}

.lpr-plate strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

.lpr-plate small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.lpr-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.lpr-status span {
  padding: 9px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 750;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

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

.product-feature-list article,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(20, 40, 71, 0.07);
}

.product-process {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.process-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 7px;
  background: #e7f4ff;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 6vw, 86px);
  background: url("assets/entrycall-auth-background.avif") center / cover no-repeat;
}

.product-band h2,
.product-band .eyebrow {
  color: #ffffff;
}

.product-band h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 86px);
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1.08fr);
}

.section-copy p {
  max-width: 630px;
  font-size: 1.06rem;
}

.image-panel,
.image-grid {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel {
  background: #505050;
}

.image-panel img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: left center;
}

.image-panel.dark {
  background: #111111;
}

.why-panel {
  display: grid;
  gap: 20px;
  min-height: 430px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 27, 49, 0.86), rgba(20, 40, 71, 0.7)),
    url("assets/entrycall-auth-background.avif") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.why-panel-header,
.why-flow article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 31, 0.42);
  backdrop-filter: blur(10px);
}

.why-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 14px 16px;
  border-radius: 8px;
}

.why-panel-header > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(74, 164, 237, 0.15);
}

.why-panel-header strong,
.why-panel-header small {
  display: block;
}

.why-panel-header strong,
.why-flow h3 {
  color: #ffffff;
}

.why-panel-header small {
  color: rgba(255, 255, 255, 0.68);
}

.story-progress {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.story-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, var(--blue));
  transform: scaleX(0.08);
  transform-origin: left center;
}

.why-flow {
  display: grid;
  gap: 12px;
}

.why-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 8px;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.why-flow article.is-active {
  transform: translateX(8px);
  border-color: rgba(74, 164, 237, 0.62);
  background: rgba(74, 164, 237, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.why-flow article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: rgba(74, 164, 237, 0.18);
  color: #ffffff;
  font-weight: 850;
}

.why-flow h3 {
  margin-bottom: 6px;
}

.why-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 960px;
  margin: 0 auto 42px;
  text-align: center;
}

.audience-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.audience-grid article,
.feature-grid article,
.quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audience-grid article,
.feature-grid article {
  padding: 28px;
}

.audience-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 7px;
  background: #e7f4ff;
  color: var(--blue-2);
  font-weight: 850;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: end;
  max-width: none;
  background: url("assets/entrycall-auth-background.avif") center / cover no-repeat;
}

.about-band h2,
.about-band p,
.about-band .eyebrow {
  color: #ffffff;
}

.about-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.image-grid {
  display: block;
  aspect-ratio: 3 / 2;
  min-height: 430px;
  background: var(--navy);
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: none;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-2);
  font-weight: 800;
}

.features {
  background: #ffffff;
}

.section-heading.compact {
  max-width: 860px;
}

.feature-grid article {
  min-height: 178px;
}

.management {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(62px, 9vw, 112px) clamp(18px, 6vw, 86px);
  background: #4f4f4f;
  color: #ffffff;
  overflow: hidden;
}

.management h2,
.management .eyebrow {
  color: #ffffff;
}

.management p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.management img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.motion-glow {
  position: relative;
}

.motion-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(74, 164, 237, 0.42), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 260ms ease;
}

.motion-glow.is-active::after {
  opacity: 1;
}

.brand-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 6vw, 86px);
  color: #ffffff;
  background: url("assets/entrycall-auth-background.avif") center / cover no-repeat;
}

.brand-cta h2,
.brand-cta .eyebrow {
  color: #ffffff;
}

.brand-cta h2 {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-copy p {
  max-width: 520px;
}

address {
  margin-top: 32px;
  color: var(--muted);
  font-style: normal;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 18px 54px rgba(20, 40, 71, 0.08);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9e8;
  border-radius: 7px;
  background: #f9fbfe;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.quote-form .button {
  width: fit-content;
}

.quote-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #16784f;
}

.form-status.is-error {
  color: #b42318;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 253, 0.8)),
    url("assets/entrycall-auth-background.avif") right center / 58% auto no-repeat;
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
}

.legal-hero p {
  max-width: 740px;
  font-size: clamp(1.03rem, 1.45vw, 1.18rem);
}

.legal-content {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 86px);
}

.legal-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 54px rgba(20, 40, 71, 0.07);
}

.legal-section h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.legal-section h3 {
  margin-top: 20px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  margin: 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 86px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: inline-flex;
  width: 142px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
  }

  .brand {
    width: 142px;
  }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(74, 164, 237, 0.34);
    border-radius: 50%;
    background: #f7fbff;
    color: var(--navy);
    box-shadow: 0 10px 24px rgba(20, 40, 71, 0.1);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-5px);
  }

  .nav-toggle span:last-child {
    transform: translateY(5px);
  }

  .nav-toggle:focus-visible {
    outline: 3px solid rgba(74, 164, 237, 0.28);
    outline-offset: 3px;
  }

  .site-header.menu-open .nav-toggle {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(74, 164, 237, 0.28);
  }

  .site-header.menu-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.menu-open .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .product-hero,
  .split,
  .split.reverse,
  .about-band,
  .management,
  .brand-cta,
  .product-detail,
  .product-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.88)),
      url("assets/entrycall-auth-background.avif") top right / 120% auto no-repeat;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-signals {
    display: none;
  }

  .hero-media::before {
    inset: 12% 0 10% 22%;
  }

  .hero-media img {
    width: min(420px, 84vw);
    max-width: none;
    max-height: none;
    clip-path: inset(0 0 2px 0 round 48px);
  }

  .proof-strip,
  .product-grid,
  .product-feature-list,
  .process-grid,
  .audience-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .image-panel img {
    min-height: 320px;
  }

  .product-hero {
    min-height: auto;
    gap: 28px;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.88)),
      url("assets/entrycall-auth-background.avif") top right / 120% auto no-repeat;
  }

  .product-visual {
    min-height: 360px;
    padding: 22px;
  }

  .device-visual {
    min-height: 420px;
    padding: 22px 14px 0;
  }

  .device-visual img {
    width: min(440px, 92vw);
    max-width: none;
    max-height: none;
  }

  .screen-visual img {
    width: 104%;
    transform: none;
  }

  .product-card {
    grid-template-rows: 270px 1fr;
  }

  .product-card,
  .product-card:hover,
  .product-card:focus-visible {
    transform: none !important;
  }

  .story-progress {
    display: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.55rem);
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 134px;
  }

  .hero,
  .product-hero {
    padding: 34px 18px 0;
  }

  .hero-copy p,
  .product-hero-copy > p,
  .section-copy p {
    font-size: 1rem;
  }

  .hero-media {
    margin-inline: -18px;
  }

  .hero-media img {
    width: min(390px, 96vw);
    clip-path: inset(0 0 2px 0 round 42px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .audience-grid article,
  .feature-grid article {
    padding: 22px;
  }

  .image-grid {
    aspect-ratio: 3 / 2;
    min-height: 0;
  }

  .product-card {
    grid-template-rows: 210px 1fr;
  }

  .product-card-media.device {
    align-items: end;
    padding: 18px 12px 0;
  }

  .product-card-media.brochure.portrait img {
    object-position: center bottom;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-copy,
  .product-feature-list article,
  .process-grid article {
    padding: 22px;
  }

  .product-hero h1 {
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
  }

  .product-visual {
    min-height: 320px;
    margin-inline: -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .device-visual {
    min-height: 420px;
    padding: 18px 8px 0;
  }

  .device-visual img {
    width: min(440px, 120vw);
  }

  .screen-visual img {
    width: 114%;
  }

  .quote-form .button {
    width: 100%;
  }

  .brand-cta .button {
    width: 100%;
  }

  .site-footer,
  .site-footer nav {
    display: grid;
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .why-flow article.is-active {
    transform: none;
  }

  .story-progress span {
    transform: none !important;
  }
}
