:root {
  --ink: #070914;
  --ink-2: #111522;
  --ink-soft: #2a3145;
  --muted: #687184;
  --muted-2: #9aa2b3;
  --paper: #f7f8fb;
  --paper-2: #eef1f7;
  --white: #ffffff;
  --line: #dce3ee;
  --line-soft: #e8edf5;
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #315bb8;
  --blue-2: #5c8cff;
  --blue-soft: #e6edff;
  --mint: #3dd39f;
  --mint-deep: #1d8a64;
  --mint-soft: #d4f5e7;
  --lime: #c8ff74;
  --coral: #ff6f61;
  --amber: #f4bd50;
  --dark: #080a10;
  --dark-card: #111520;
  --shadow-card: 0 1px 0 rgba(7, 9, 20, 0.04), 0 12px 32px -14px rgba(7, 9, 20, 0.12);
  --shadow: 0 24px 70px rgba(7, 9, 20, 0.18);
  --shadow-soft: 0 16px 36px rgba(7, 9, 20, 0.08);
  --radius: 8px;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(49, 91, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 91, 184, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 920;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 20px 0 22px;
  font-size: 5.25rem;
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.75rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.38rem;
  line-height: 1.1;
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.accent {
  background: linear-gradient(115deg, var(--blue) 0%, var(--mint) 58%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flow-section .accent,
.site-footer .accent {
  filter: saturate(1.15) brightness(1.12);
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 24px;
  border-bottom: 1px solid rgba(220, 227, 238, 0.76);
  background: rgba(247, 248, 251, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(7, 9, 20, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 100%);
  min-height: 76px;
  gap: 28px;
  margin-inline: auto;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 12px;
}

.brand-logo-wrap {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  grid-template-columns: repeat(2, 8px);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.brand-mark span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
}

.brand-mark span:nth-child(4) {
  background: var(--mint);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 12px;
}

.main-nav a {
  position: relative;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
  transition: color 160ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
}

.has-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.has-dropdown[aria-expanded="true"] .dropdown-trigger svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown[aria-expanded="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  color: var(--ink);
  background: #f3f7fc;
}

.dropdown-menu strong,
.dropdown-menu small {
  display: block;
}

.dropdown-menu strong {
  font-size: 0.92rem;
  line-height: 1.15;
}

.dropdown-menu small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.dropdown-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(49, 91, 184, 0.16);
  border-radius: var(--radius);
  background: #eef4ff;
}

.dropdown-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(49, 91, 184, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(49, 91, 184, 0.34), rgba(61, 211, 159, 0.28)) border-box;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mobile-menu-toggle:hover {
  border-color: rgba(49, 91, 184, 0.3);
  box-shadow: 0 14px 28px rgba(7, 9, 20, 0.14);
  transform: translateY(-1px);
}

.menu-icon {
  position: relative;
  display: grid;
  width: 22px;
  height: 18px;
  align-content: space-between;
}

.menu-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

.menu-line:nth-child(2) {
  width: 14px;
  justify-self: end;
  background: var(--blue);
}

.menu-line:nth-child(3) {
  width: 18px;
}

.site-header.is-menu-open .menu-line:nth-child(1) {
  width: 22px;
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.is-menu-open .menu-line:nth-child(3) {
  width: 22px;
  transform: translateY(-8px) rotate(-45deg);
}

.nav-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  transition: color 160ms ease;
}

.nav-secondary:hover {
  color: var(--blue);
}

.nav-secondary svg {
  width: 15px;
  height: 15px;
}

.nav-cta {
  display: inline-flex;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(7, 9, 20, 0.22);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button.large {
  min-height: 56px;
  padding-inline: 24px;
}

.secondary-button {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-icon {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.button-arrow svg {
  width: 18px;
  height: 18px;
}

.primary-button:hover .button-arrow,
.secondary-button:hover .button-arrow {
  transform: translateX(3px);
}

.nav-cta,
.primary-button[href="#demo"],
.primary-button[href="/#demo"],
.demo-submit,
.floating-demo-cta {
  animation: demoFloat 3.4s ease-in-out infinite;
}

.nav-cta:hover,
.primary-button[href="#demo"]:hover,
.primary-button[href="/#demo"]:hover,
.demo-submit:hover,
.floating-demo-cta:hover {
  animation-play-state: paused;
}

@keyframes demoFloat {
  0%,
  100% {
    translate: 0 0;
  }

  34% {
    translate: 0 -4px;
  }

  48% {
    translate: 0 0;
  }

  66% {
    translate: 0 -2px;
  }
}

.icon-arrow::before {
  position: absolute;
  top: 4px;
  left: 3px;
  width: 9px;
  height: 9px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-arrow::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 28px;
  background:
    linear-gradient(120deg, rgba(7, 9, 20, 0.035), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.hero::before {
  position: absolute;
  inset: 26px 0 auto auto;
  width: min(50vw, 680px);
  height: 580px;
  content: "";
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.12), rgba(61, 211, 159, 0.09) 52%, rgba(255, 111, 97, 0.08)),
    repeating-linear-gradient(135deg, rgba(7, 9, 20, 0.08) 0 1px, transparent 1px 24px);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 88%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 44px;
  align-items: center;
  min-height: 710px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.ui-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  color: var(--blue);
  border: 1px solid rgba(49, 91, 184, 0.2);
  border-radius: var(--radius);
  background: #eef4ff;
  font-size: 0.76rem;
  font-weight: 950;
}

.eyebrow.dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 28px;
  color: #414a5e;
  font-size: 1.2rem;
  font-weight: 640;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: #273249;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 9, 20, 0.06);
  font-size: 0.86rem;
  font-weight: 860;
}

.hero-visual {
  min-width: 0;
}

.visual-shell {
  position: relative;
  min-height: 710px;
}

.signal-field {
  position: absolute;
  inset: 34px 28px 50px 54px;
  z-index: 0;
  pointer-events: none;
}

.signal-field span {
  position: absolute;
  border: 1px solid rgba(49, 91, 184, 0.22);
  border-radius: 50%;
  animation: signalPulse 5.2s ease-in-out infinite;
}

.signal-field span:nth-child(1) {
  top: 90px;
  right: 56px;
  width: 390px;
  height: 390px;
}

.signal-field span:nth-child(2) {
  top: 42px;
  right: 8px;
  width: 500px;
  height: 500px;
  animation-delay: 0.5s;
}

.signal-field span:nth-child(3) {
  top: 0;
  right: -42px;
  width: 610px;
  height: 610px;
  animation-delay: 1s;
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.02);
  }
}

.vehicle-chip,
.floating-doc {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(220, 227, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(7, 9, 20, 0.14);
  backdrop-filter: blur(14px);
}

.vehicle-chip {
  right: 18px;
  top: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
  padding: 13px 14px;
  animation: chipFloat 6.4s ease-in-out infinite;
}

.vehicle-chip strong,
.vehicle-chip small {
  display: block;
}

.vehicle-chip strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.1;
}

.vehicle-chip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
}

.vehicle-icon {
  position: relative;
  width: 46px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 7px 11px 7px 7px;
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
}

.vehicle-icon::before {
  position: absolute;
  top: -10px;
  left: 9px;
  width: 26px;
  height: 14px;
  content: "";
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #ffffff;
}

.vehicle-icon::after {
  position: absolute;
  right: 4px;
  bottom: -7px;
  left: 4px;
  height: 8px;
  content: "";
  background:
    radial-gradient(circle at left center, var(--blue) 0 4px, transparent 5px),
    radial-gradient(circle at right center, var(--blue) 0 4px, transparent 5px);
}

.floating-doc {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  min-height: 44px;
  max-width: min(220px, calc(100% - 32px));
  padding: 0 13px;
  color: #1c2943;
  font-size: 0.84rem;
  font-weight: 940;
  white-space: nowrap;
}

.floating-doc span {
  display: block;
  width: 24px;
  height: 30px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(255, 255, 255, 0.9) 19% 27%, transparent 28%),
    linear-gradient(180deg, var(--blue), var(--ink));
}

.floating-doc.card-a {
  right: 76px;
  bottom: 132px;
  animation: docFloatA 5.8s ease-in-out infinite;
}

.floating-doc.card-b {
  left: 118px;
  bottom: 64px;
  animation: docFloatB 6.2s ease-in-out infinite;
}

.keychain-fleet {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 8;
  width: min(560px, 100%);
  min-height: 630px;
  transform: translateX(-50%);
}

.key-rail {
  position: absolute;
  top: 42px;
  left: 100px;
  width: 330px;
  height: 20px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #f9fbff, #aebdce 48%, #eef3f8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 34px rgba(7, 9, 20, 0.18);
  transform: rotate(-6deg);
}

.key-tag {
  position: absolute;
  width: 214px;
  filter: drop-shadow(0 28px 48px rgba(7, 9, 20, 0.24));
  transform-origin: 50% 16px;
}

.tag-one {
  top: 44px;
  left: 156px;
  z-index: 3;
  width: 268px;
  animation: keySwingMain 5.6s ease-in-out infinite;
}

.tag-two {
  top: 78px;
  left: 18px;
  z-index: 2;
  transform: rotate(-11deg) scale(0.84);
  animation: keySwingLeft 6s ease-in-out infinite;
}

.tag-three {
  top: 92px;
  left: 360px;
  z-index: 1;
  transform: rotate(12deg) scale(0.78);
  animation: keySwingRight 6.2s ease-in-out infinite;
}

.tag-ring {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto -7px;
  border: 7px solid #c2cede;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, #ffffff 43% 100%);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(7, 9, 20, 0.12);
}

.tag-body {
  padding: 16px;
  border: 1px solid rgba(196, 210, 226, 0.96);
  border-radius: 20px 20px 24px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 253, 0.96)),
    linear-gradient(135deg, rgba(49, 91, 184, 0.12), transparent 44%);
}

.tag-one .tag-body {
  padding: 18px;
  border-color: rgba(49, 91, 184, 0.28);
  background:
    linear-gradient(145deg, #ffffff, #edf4ff),
    linear-gradient(135deg, rgba(49, 91, 184, 0.2), rgba(61, 211, 159, 0.12));
}

.tag-label,
.tag-body strong,
.tag-body small {
  display: block;
  text-align: center;
}

.tag-label {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.tag-qr {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: 136px;
  aspect-ratio: 1;
  margin: 14px auto 12px;
  padding: 13px;
  border: 1px solid #d8e3f1;
  border-radius: 14px;
  background: #ffffff;
}

.tag-one .tag-qr {
  width: 172px;
  gap: 8px;
}

.tag-qr::after {
  position: absolute;
  right: 12px;
  left: 12px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: qrScan 2.8s ease-in-out infinite;
}

.tag-qr span {
  border-radius: 4px;
  background: var(--ink);
}

.tag-qr span:nth-child(3n) {
  background: var(--blue);
}

.tag-qr span:nth-child(5n) {
  background: var(--mint);
}

.tag-qr span:nth-child(2),
.tag-qr span:nth-child(7),
.tag-qr span:nth-child(13) {
  opacity: 0.15;
}

.tag-body strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.05;
}

.tag-one .tag-body strong {
  font-size: 1.16rem;
}

.tag-body small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
}

.keychain-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 52px;
  max-width: 460px;
  padding: 16px 18px;
  border: 1px solid rgba(220, 227, 238, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 9, 20, 0.12);
  backdrop-filter: blur(16px);
}

.keychain-caption strong,
.keychain-caption span {
  display: block;
}

.keychain-caption strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
}

.keychain-caption span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

@keyframes keySwingMain {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-8px);
  }
}

@keyframes keySwingLeft {
  0%,
  100% {
    transform: rotate(-13deg) scale(0.84) translateY(0);
  }
  50% {
    transform: rotate(-8deg) scale(0.84) translateY(-6px);
  }
}

@keyframes keySwingRight {
  0%,
  100% {
    transform: rotate(14deg) scale(0.78) translateY(0);
  }
  50% {
    transform: rotate(9deg) scale(0.78) translateY(-6px);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes docFloatA {
  0%,
  100% {
    transform: translate(0, 0) rotate(1deg);
  }
  50% {
    transform: translate(-8px, -8px) rotate(-1deg);
  }
}

@keyframes docFloatB {
  0%,
  100% {
    transform: translate(0, 0) rotate(-1deg);
  }
  50% {
    transform: translate(10px, -6px) rotate(1deg);
  }
}

.qr-fob {
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 3;
  width: 190px;
  animation: fobFloat 5.8s ease-in-out infinite;
}

.metal-ring {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto -6px;
  border: 6px solid #c9d4e3;
  border-radius: 50%;
  background: #ffffff;
}

.fob-body {
  padding: 15px;
  border: 1px solid #cad5e5;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #eef4fb);
  box-shadow: 0 26px 64px rgba(7, 9, 20, 0.22);
  transform: rotate(-3deg);
}

.fob-label,
.fob-body strong {
  display: block;
  text-align: center;
}

.fob-label {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.fob-body strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 0.94rem;
}

.qr-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 6px;
  background: #ffffff;
}

.qr-matrix::after {
  position: absolute;
  right: 10px;
  left: 10px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  animation: qrScan 2.8s ease-in-out infinite;
}

.qr-matrix i {
  border-radius: 2px;
  background: var(--ink);
}

.qr-matrix i:nth-child(4n),
.qr-matrix i:nth-child(6n) {
  background: var(--blue);
}

.qr-matrix i:nth-child(8n),
.qr-matrix i:nth-child(13n) {
  background: var(--mint);
}

.qr-matrix i:nth-child(2),
.qr-matrix i:nth-child(10),
.qr-matrix i:nth-child(17),
.qr-matrix i:nth-child(25),
.qr-matrix i:nth-child(34),
.qr-matrix i:nth-child(42) {
  opacity: 0.14;
}

@keyframes qrScan {
  0%,
  100% {
    top: 14px;
    opacity: 0;
  }
  18%,
  82% {
    opacity: 1;
  }
  50% {
    top: calc(100% - 16px);
  }
}

@keyframes fobFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.product-window {
  position: absolute;
  right: -8px;
  bottom: 22px;
  z-index: 2;
  width: 74%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: rotate(-2deg) scale(0.92);
  transform-origin: right bottom;
}

.dashboard-window {
  background: #f3f7fc;
  opacity: 1;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 16px 18px;
  border-bottom: 1px solid #cfdbec;
  background: rgba(245, 249, 254, 0.96);
}

.dashboard-brand,
.dashboard-tabs,
.configuration-head,
.configuration-steps article,
.link-head,
.storage-line,
.document-list div {
  display: flex;
  align-items: center;
}

.dashboard-brand {
  gap: 10px;
}

.dashboard-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cfdbec;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(49, 91, 184, 0.12);
}

.dashboard-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.dashboard-brand strong,
.dashboard-brand small {
  display: block;
}

.dashboard-brand strong {
  color: #101626;
  font-size: 1rem;
  line-height: 1;
}

.dashboard-brand small {
  margin-top: 5px;
  color: #59657a;
  font-size: 0.72rem;
  font-weight: 780;
}

.dashboard-tabs {
  gap: 8px;
}

.dashboard-tabs span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #1e2a42;
  border-radius: 999px;
  background: #eaf1f9;
  font-size: 0.8rem;
  font-weight: 900;
}

.dashboard-tabs .active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(49, 91, 184, 0.22);
}

.dashboard-page {
  padding: 20px;
}

.dashboard-heading {
  margin-bottom: 16px;
}

.dashboard-heading h2 {
  margin-bottom: 8px;
  color: #0d1423;
  font-size: 1.68rem;
  line-height: 1;
}

.dashboard-heading p {
  margin: 0;
  color: #58647a;
  font-size: 0.88rem;
  font-weight: 740;
}

.configuration-panel,
.dashboard-card {
  border: 1px solid #cfdbec;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(49, 91, 184, 0.08);
}

.configuration-panel {
  margin-bottom: 14px;
  padding: 16px;
}

.dashboard-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--blue);
  border-radius: 999px;
  background: #ddecff;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.configuration-head {
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.configuration-head h3,
.dashboard-card h3 {
  margin: 0 0 6px;
  color: #050914;
  font-size: 1.16rem;
}

.configuration-head p,
.pin-card p {
  margin: 0;
  color: #58647a;
  font-size: 0.8rem;
  font-weight: 720;
}

.progress-box {
  min-width: 150px;
}

.progress-box span,
.progress-box strong {
  display: inline-block;
  color: #31405c;
  font-size: 0.8rem;
  font-weight: 900;
}

.progress-box strong {
  float: right;
}

.progress-box i,
.storage-line i {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef8;
}

.progress-box i::before,
.storage-line i::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: var(--blue);
}

.configuration-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.configuration-steps article {
  position: relative;
  gap: 10px;
  min-height: 70px;
  padding: 12px 36px 12px 12px;
  border: 1px solid #cfdbec;
  border-radius: var(--radius);
  background: #f1f6fd;
}

.configuration-steps article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border-radius: 11px;
  background: #b7dcff;
  font-weight: 1000;
}

.configuration-steps strong,
.configuration-steps small,
.document-list strong,
.document-list span {
  display: block;
}

.configuration-steps strong {
  color: #0b1020;
  font-size: 0.82rem;
  line-height: 1.1;
}

.configuration-steps small {
  margin-top: 4px;
  color: #59657a;
  font-size: 0.7rem;
  font-weight: 760;
}

.configuration-steps article > i {
  position: absolute;
  top: 22px;
  right: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid #3ba16d;
  border-radius: 50%;
}

.configuration-steps article > i::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 7px;
  height: 11px;
  content: "";
  border-right: 2px solid #3ba16d;
  border-bottom: 2px solid #3ba16d;
  transform: rotate(45deg);
}

.dashboard-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(210px, 0.88fr);
  gap: 14px;
}

.dashboard-card {
  padding: 16px;
}

.link-head {
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 13px;
  border-bottom: 1px solid #cfdbec;
}

.link-head strong,
.link-head span {
  display: block;
}

.link-head strong {
  color: #0b1020;
  font-size: 0.84rem;
}

.link-head span {
  margin-top: 6px;
  max-width: 265px;
  overflow: hidden;
  color: #4a556b;
  border-radius: 999px;
  background: #f0f5fc;
  padding: 8px 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-head em {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: #243654;
  border: 1px solid #cfdbec;
  border-radius: 999px;
  background: #edf4fb;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.document-block {
  margin-top: 15px;
  padding: 14px;
  border: 1px solid #cfdbec;
  border-radius: var(--radius);
  background: #f6faff;
}

.document-block h3 {
  margin-top: 12px;
}

.storage-line {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 11px;
  border: 1px solid #cfdbec;
  border-radius: var(--radius);
  background: #ffffff;
}

.storage-line strong,
.storage-line span {
  color: #334057;
  font-size: 0.72rem;
  font-weight: 900;
}

.storage-line i {
  flex-basis: 100%;
  height: 7px;
}

.storage-line i::before {
  width: 42%;
}

.document-list {
  display: grid;
  gap: 8px;
}

.document-list div {
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: #e8f2ff;
}

.document-list strong {
  color: #0b1020;
  font-size: 0.76rem;
}

.document-list span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 920;
}

.pin-card .dashboard-badge {
  margin-bottom: 12px;
}

.pin-status {
  margin-top: 14px;
  padding: 12px;
  color: #334057;
  border: 1px solid #cfdbec;
  border-radius: var(--radius);
  background: #f0f5fc;
  font-size: 0.84rem;
  font-weight: 850;
}

.pin-status strong {
  color: var(--blue);
}

.dashboard-pin-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin: 16px 0 12px;
}

.dashboard-pin-row i {
  height: 36px;
  border: 1px solid #cfdbec;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(49, 91, 184, 0.08);
  animation: pinFlashLight 2.8s ease-in-out infinite;
}

.dashboard-pin-row i:nth-child(2) {
  animation-delay: 0.1s;
}

.dashboard-pin-row i:nth-child(3) {
  animation-delay: 0.2s;
}

.dashboard-pin-row i:nth-child(4) {
  animation-delay: 0.3s;
}

.dashboard-pin-row i:nth-child(5) {
  animation-delay: 0.4s;
}

.dashboard-pin-row i:nth-child(6) {
  animation-delay: 0.5s;
}

@keyframes pinFlashLight {
  50% {
    border-color: rgba(49, 91, 184, 0.45);
    background: #e8f2ff;
  }
}

.pin-button {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-radius: 999px;
  background: #96aad8;
  font-size: 0.82rem;
  font-weight: 900;
}

.window-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.window-brand,
.window-tabs,
.mini-actions,
.doc-item,
.panel-title {
  display: flex;
  align-items: center;
}

.window-brand {
  gap: 10px;
}

.window-brand strong,
.window-brand small {
  display: block;
}

.window-brand strong {
  color: var(--ink);
  font-size: 1rem;
}

.window-brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.app-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-content: center;
  grid-template-columns: repeat(2, 7px);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f0f6ff;
}

.app-mark::before,
.app-mark::after {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 11px 0 0 var(--mint), 0 11px 0 var(--ink), 11px 11px 0 var(--blue);
}

.app-mark::after {
  display: none;
}

.window-tabs {
  gap: 8px;
}

.window-tabs span,
.solid-pill,
.soft-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.window-tabs span,
.soft-pill {
  color: #263249;
  background: #edf3fb;
}

.window-tabs .active,
.solid-pill {
  color: var(--white);
  background: var(--blue);
}

.window-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.86fr);
  gap: 14px;
  padding: 18px;
}

.screen-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.activation-screen {
  position: relative;
  min-height: 246px;
  padding: 18px;
}

.activation-screen h2,
.pin-screen h2 {
  margin: 20px 0 8px;
  font-size: 1.5rem;
  line-height: 1.05;
}

.activation-screen p,
.pin-screen p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.input-line {
  display: flex;
  min-height: 42px;
  align-items: center;
  margin-top: 16px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.documents-screen {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.panel-title {
  justify-content: space-between;
  gap: 12px;
}

.panel-title strong {
  color: var(--muted);
  font-size: 0.78rem;
}

.doc-item {
  gap: 10px;
  min-height: 58px;
  padding: 10px;
  border-radius: var(--radius);
  background: #f6f9fe;
}

.doc-item.active {
  background: #e9f3ff;
  animation: docPulse 3.6s ease-in-out infinite;
}

@keyframes docPulse {
  50% {
    box-shadow: inset 0 0 0 2px rgba(49, 91, 184, 0.16);
  }
}

.doc-item i {
  width: 34px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--blue), var(--ink));
}

.doc-item strong,
.doc-item span {
  display: block;
}

.doc-item strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.doc-item span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.doc-preview {
  display: grid;
  gap: 9px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(61, 211, 159, 0.12), transparent 48%),
    #ffffff;
}

.doc-preview strong {
  color: var(--blue);
  font-size: 0.82rem;
}

.doc-preview span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dce7f5;
}

.doc-preview span:nth-child(2) {
  width: 88%;
}

.doc-preview span:nth-child(3) {
  width: 66%;
}

.doc-preview span:nth-child(4) {
  width: 76%;
}

.pin-screen {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--dark);
}

.pin-screen .ui-badge {
  color: var(--lime);
  border-color: rgba(200, 255, 116, 0.24);
  background: rgba(200, 255, 116, 0.1);
}

.pin-screen h2,
.pin-screen p {
  color: var(--white);
}

.pin-row {
  display: grid;
  grid-template-columns: repeat(6, 30px);
  gap: 8px;
}

.pin-row i {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  animation: pinFlash 2.6s ease-in-out infinite;
}

.pin-row i:nth-child(2) {
  animation-delay: 0.12s;
}

.pin-row i:nth-child(3) {
  animation-delay: 0.24s;
}

.pin-row i:nth-child(4) {
  animation-delay: 0.36s;
}

.pin-row i:nth-child(5) {
  animation-delay: 0.48s;
}

.pin-row i:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes pinFlash {
  50% {
    background: rgba(61, 211, 159, 0.34);
    border-color: rgba(61, 211, 159, 0.6);
  }
}

.trust-marquee {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 24px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-intro span,
.trust-intro strong {
  display: block;
}

.trust-intro span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 1000;
}

.trust-intro strong {
  margin-top: 6px;
  color: #1d2432;
  font-size: 1rem;
  line-height: 1.25;
}

.marquee-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  animation: trustLoop 24s linear infinite;
}

.trust-name,
.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 190px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #1f2c45;
  font-size: 1rem;
  font-weight: 950;
}

.trust-logo {
  min-width: 154px;
}

.trust-logo img {
  width: 112px;
}

@keyframes trustLoop {
  to {
    transform: translateX(-50%);
  }
}

.problem-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 92px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.problem-strip span {
  display: block;
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 1000;
}

.problem-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.problem-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 640;
}

.product-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: center;
  padding: 92px 0 28px;
}

.story-copy h2 {
  max-width: 620px;
  font-size: 3.2rem;
}

.story-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 650;
}

.story-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(220, 227, 238, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.11), transparent 34%),
    linear-gradient(315deg, rgba(61, 211, 159, 0.12), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
}

.story-board::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.52;
  pointer-events: none;
  background:
    linear-gradient(rgba(49, 91, 184, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 91, 184, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(140deg, #000 0%, transparent 76%);
}

.story-line {
  position: absolute;
  inset: 78px 86px;
  border: 2px solid rgba(49, 91, 184, 0.24);
  border-radius: var(--radius);
}

.story-line::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 3px;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(61, 211, 159, 0.16);
  offset-path: inset(0 round 8px);
  offset-distance: 0%;
  animation: routeDot 7s linear infinite;
}

@keyframes routeDot {
  100% {
    offset-distance: 100%;
  }
}

.story-node {
  position: absolute;
  z-index: 1;
  width: min(250px, calc(50% - 34px));
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(220, 227, 238, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(7, 9, 20, 0.1);
}

.story-node::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(61, 211, 159, 0.16);
}

.story-node strong,
.story-node p {
  display: block;
}

.story-node strong {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.15;
}

.story-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.key-node {
  top: 34px;
  left: 34px;
}

.agency-node {
  top: 34px;
  right: 34px;
}

.vault-node {
  right: 34px;
  bottom: 34px;
}

.phone-node {
  left: 34px;
  bottom: 34px;
}

.story-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(49, 91, 184, 0.18);
  border-radius: var(--radius);
  background: #eef4ff;
}

.key-symbol::before {
  position: absolute;
  top: 15px;
  left: 12px;
  width: 19px;
  height: 19px;
  content: "";
  border: 4px solid var(--blue);
  border-radius: 50%;
}

.key-symbol::after {
  position: absolute;
  top: 24px;
  left: 29px;
  width: 17px;
  height: 4px;
  content: "";
  background: var(--ink);
  box-shadow: 9px 0 0 var(--ink), 9px 7px 0 var(--ink);
}

.desk-symbol::before {
  position: absolute;
  inset: 12px 10px 17px;
  content: "";
  border: 3px solid var(--blue);
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 0 38%, var(--mint) 39% 48%, transparent 49%),
    linear-gradient(#cddbf2 0 0) 8px 8px / 18px 3px no-repeat;
}

.desk-symbol::after {
  position: absolute;
  right: 13px;
  bottom: 11px;
  left: 13px;
  height: 4px;
  content: "";
  background: var(--ink);
}

.vault-symbol::before {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 30px;
  height: 28px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 5px;
  background:
    radial-gradient(circle at center, var(--mint) 0 4px, transparent 5px),
    #ffffff;
}

.vault-symbol::after {
  position: absolute;
  top: 21px;
  left: 24px;
  width: 7px;
  height: 13px;
  content: "";
  border-radius: 999px;
  background: var(--blue);
}

.phone-symbol::before {
  position: absolute;
  top: 8px;
  left: 17px;
  width: 21px;
  height: 38px;
  content: "";
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 8px, var(--blue) 8px 12px, transparent 12px 16px, var(--mint) 16px 20px) 5px 10px / 20px 4px no-repeat,
    linear-gradient(90deg, transparent 0 4px, var(--ink) 4px 8px, transparent 8px 12px, var(--ink) 12px 16px) 5px 17px / 20px 4px no-repeat,
    #ffffff;
}

.phone-symbol::after {
  position: absolute;
  top: 16px;
  right: 8px;
  width: 2px;
  height: 24px;
  content: "";
  background: linear-gradient(transparent, var(--mint), transparent);
  animation: phoneScan 2.8s ease-in-out infinite;
}

@keyframes phoneScan {
  0%,
  100% {
    transform: translateX(-22px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
}

.dashboard-showcase-section {
  padding: 42px 0 98px;
  background:
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
}

.dashboard-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 42px;
  align-items: center;
}

.dashboard-showcase-copy h2 {
  max-width: 560px;
  font-size: 3rem;
}

.dashboard-showcase-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.dashboard-showcase-window {
  overflow: hidden;
  border: 1px solid rgba(207, 219, 236, 0.94);
  border-radius: var(--radius);
  background: #f3f7fc;
  box-shadow: var(--shadow);
}

.feature-section,
.deployment-section,
.demo-section {
  padding: 96px 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.flow-copy p,
.security-copy p,
.demo-panel p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 650;
}

.feature-grid,
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.deployment-card,
.security-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 276px;
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
}

.feature-visual {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.1), transparent 54%),
    #f8fbff;
}

.feature-visual::before,
.feature-visual::after {
  position: absolute;
  content: "";
}

.associate-visual::before {
  top: 22px;
  left: 19px;
  width: 36px;
  height: 36px;
  border: 5px solid var(--blue);
  border-radius: 50%;
}

.associate-visual::after {
  top: 39px;
  left: 52px;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 12px 0 0 var(--mint), 18px 9px 0 var(--ink);
}

.upload-visual::before {
  top: 18px;
  left: 25px;
  width: 42px;
  height: 52px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(255, 255, 255, 0.95) 19% 29%, transparent 30%),
    linear-gradient(180deg, var(--blue), var(--ink));
}

.upload-visual::after {
  top: 37px;
  left: 41px;
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: -8px 8px 0 -2px var(--mint), 8px 8px 0 -2px var(--mint);
  transform: rotate(180deg);
}

.scan-visual::before {
  inset: 20px;
  border: 5px solid var(--ink);
  border-radius: 9px;
  background:
    linear-gradient(90deg, var(--blue) 0 9px, transparent 9px 18px, var(--ink) 18px 27px, transparent 27px 36px, var(--mint) 36px 45px) 8px 12px / 45px 8px no-repeat,
    linear-gradient(90deg, transparent 0 9px, var(--ink) 9px 18px, transparent 18px 27px, var(--blue) 27px 36px) 8px 28px / 45px 8px no-repeat,
    #ffffff;
}

.scan-visual::after {
  top: 24px;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--mint);
  animation: miniScan 2.7s ease-in-out infinite;
}

@keyframes miniScan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.2;
  }
  50% {
    transform: translateY(42px);
    opacity: 1;
  }
}

.card-number {
  display: inline-flex;
  width: 40px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--blue);
  border: 1px solid rgba(49, 91, 184, 0.2);
  border-radius: var(--radius);
  background: #eef4ff;
  font-size: 0.84rem;
  font-weight: 1000;
}

.feature-card p,
.deployment-card p {
  margin-bottom: 0;
  font-weight: 650;
}

.deployment-card,
.security-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(49, 91, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    linear-gradient(135deg, rgba(49, 91, 184, 0.07), rgba(61, 211, 159, 0.05));
}

.deployment-card::before,
.security-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--blue), var(--mint), var(--coral));
}

.deployment-card h3,
.security-card strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.deployment-card > p,
.security-card > span {
  margin: 0;
  color: var(--muted);
  font-weight: 680;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.card-index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 0;
  border-radius: 11px;
  background: #b7dcff;
  box-shadow: inset 0 0 0 1px rgba(49, 91, 184, 0.08);
  font-size: 0.95rem;
  font-weight: 1000;
}

.security-card .card-topline {
  justify-content: flex-end;
  min-height: 48px;
}

.security-card .card-index {
  position: absolute;
  top: 22px;
  left: 22px;
  width: auto;
  height: 34px;
  min-width: 86px;
  padding: 0 12px;
  display: inline-flex;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--mint-deep));
  box-shadow: 0 10px 24px rgba(49, 91, 184, 0.22);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.security-card .card-index::before {
  content: none;
}

.security-card .card-icon {
  margin-left: auto;
}

.card-icon {
  position: relative;
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(49, 91, 184, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.12), rgba(61, 211, 159, 0.08)),
    #ffffff;
}

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

.install-icon::before,
.qr-icon::before {
  width: 24px;
  height: 24px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background:
    linear-gradient(90deg, var(--blue) 0 5px, transparent 5px 10px, var(--ink) 10px 15px, transparent 15px) 5px 7px / 18px 4px no-repeat,
    linear-gradient(90deg, transparent 0 5px, var(--mint) 5px 10px, transparent 10px 15px, var(--ink) 15px) 5px 15px / 18px 4px no-repeat,
    #ffffff;
}

.install-icon::after {
  right: 9px;
  bottom: 9px;
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.usage-icon::before {
  width: 22px;
  height: 32px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #ffffff;
}

.usage-icon::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 7px 0 var(--blue), 0 14px 0 var(--ink);
}

.network-icon::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: -14px 16px 0 var(--mint), 14px 16px 0 var(--coral);
}

.network-icon::after {
  width: 30px;
  height: 24px;
  border-right: 2px solid rgba(7, 9, 20, 0.45);
  border-bottom: 2px solid rgba(7, 9, 20, 0.45);
  border-left: 2px solid rgba(7, 9, 20, 0.45);
  transform: translateY(7px);
}

.pin-icon::before {
  width: 26px;
  height: 22px;
  bottom: 10px;
  border-radius: 6px;
  background: var(--ink);
}

.pin-icon::after {
  top: 10px;
  width: 18px;
  height: 16px;
  border: 3px solid var(--blue);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.agency-icon::before {
  width: 26px;
  height: 30px;
  bottom: 9px;
  border-radius: 5px;
  background:
    radial-gradient(circle, #ffffff 0 2px, transparent 3px) 7px 7px / 9px 9px,
    linear-gradient(180deg, var(--blue), var(--ink));
}

.agency-icon::after {
  right: 8px;
  bottom: 9px;
  width: 14px;
  height: 22px;
  border-radius: 4px;
  background: var(--mint);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.card-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #20304c;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-section {
  padding: 104px 0;
  background: var(--dark);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.flow-copy h2,
.flow-copy p {
  color: var(--white);
}

.flow-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.flow-item {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.flow-item span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 116, 0.24);
  border-radius: var(--radius);
  background: rgba(200, 255, 116, 0.08);
  font-size: 0.78rem;
  font-weight: 1000;
}

.flow-item strong {
  display: block;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.18;
}

.flow-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 640;
}

.security-section {
  padding: 96px 0;
  background: #ffffff;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.security-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.security-card {
  min-height: 130px;
  box-shadow: none;
}

.security-card strong,
.security-card span {
  display: block;
}

.security-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.security-list {
  gap: 10px;
}

.security-card {
  gap: 8px;
  min-height: 0;
  padding: 15px 18px;
}

.security-card .card-topline {
  min-height: 34px;
  margin-bottom: 0;
}

.security-card .card-index {
  top: 15px;
  left: 18px;
  height: 27px;
  min-width: 74px;
  margin-top: 0;
  padding-inline: 11px;
  align-items: center;
  justify-content: center;
}

.security-card .card-icon {
  width: 38px;
  height: 38px;
  margin-top: 0;
}

.security-card > span {
  margin-top: 0;
  line-height: 1.4;
}

.security-card .card-tags {
  gap: 7px;
  padding-top: 0;
}

.security-card .card-tags span {
  min-height: 27px;
  margin-top: 0;
  padding-inline: 9px;
}

.demo-panel {
  display: grid;
  justify-items: center;
  max-width: 1040px;
  margin-inline: auto;
  padding: 70px 60px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 245, 251, 0.98)),
    linear-gradient(135deg, rgba(49, 91, 184, 0.08), rgba(61, 211, 159, 0.06));
  box-shadow: var(--shadow);
  text-align: center;
}

.demo-panel .eyebrow {
  margin-bottom: 30px;
}

.demo-panel h2 {
  max-width: 900px;
  margin-bottom: 24px;
}

.demo-panel p {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: 1.18rem;
  line-height: 1.58;
}

.demo-outcomes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.demo-outcomes span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: #20304c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 950;
}

.demo-panel-form {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: start;
  justify-items: stretch;
  gap: 42px;
  text-align: left;
}

.demo-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.demo-panel-form .eyebrow {
  margin-bottom: 24px;
}

.demo-panel-form h2 {
  max-width: none;
}

.demo-panel-form p {
  max-width: none;
}

.demo-panel-form .demo-outcomes {
  justify-content: flex-start;
  margin-bottom: 0;
}

.demo-form {
  display: grid;
  align-self: start;
  align-content: start;
  gap: 20px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(49, 91, 184, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(49, 91, 184, 0.08), rgba(61, 211, 159, 0.08));
  box-shadow: 0 22px 48px rgba(7, 9, 20, 0.12);
}

.demo-form-head {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.demo-form-head span {
  width: fit-content;
  padding: 5px 9px;
  color: var(--blue);
  border: 1px solid rgba(49, 91, 184, 0.16);
  border-radius: var(--radius);
  background: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-form-head strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.1;
}

.demo-form-head small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

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

.demo-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 850;
}

.form-wide {
  grid-column: 1 / -1;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.demo-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.demo-form input:focus,
.demo-form select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(49, 91, 184, 0.12);
}

.demo-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.demo-submit[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.demo-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.demo-form-status.is-success {
  color: var(--mint-deep);
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.floating-demo-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 36;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 38px rgba(7, 9, 20, 0.28);
  font-size: 0.92rem;
  font-weight: 950;
}

.breadcrumb {
  padding: 22px 0 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 780;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li::after {
  content: "/";
  color: var(--muted-2);
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 160ms ease;
}

.breadcrumb a:hover,
.breadcrumb li[aria-current] {
  color: var(--ink);
}

.content-page {
  padding: 34px 0 108px;
}

.content-shell {
  max-width: 900px;
  margin-inline: auto;
}

.page-header {
  max-width: 820px;
  margin: 44px auto 46px;
  text-align: center;
}

.page-header .eyebrow {
  margin-inline: auto;
}

.page-header h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.96;
}

.page-header p {
  max-width: 720px;
  margin-inline: auto;
  color: #414a5e;
  font-size: 1.08rem;
  font-weight: 650;
}

.prose {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.prose section + section {
  margin-top: 42px;
}

.prose h2 {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.42rem;
  line-height: 1.18;
}

.prose h3 {
  margin: 24px 0 10px;
  font-size: 1.08rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 610;
  line-height: 1.68;
}

.prose p + p,
.prose li + li {
  margin-top: 8px;
}

.prose ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 22px;
}

.prose ul li::before {
  position: absolute;
  top: 0.72em;
  left: 4px;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.prose strong {
  color: var(--ink);
}

.prose a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}

.legal-meta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 840;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 34px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease;
}

.legal-back:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-item[open] {
  border-color: rgba(49, 91, 184, 0.28);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 20px 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 920;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(var(--blue), var(--blue)) center / 12px 2px no-repeat,
    linear-gradient(var(--blue), var(--blue)) center / 2px 12px no-repeat,
    #eef4ff;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-weight: 620;
}

.use-case-hero {
  padding: 54px 0 64px;
}

.use-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.use-case-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(3rem, 5.6vw, 5.1rem);
  line-height: 0.94;
}

.use-case-hero .hero-lede {
  max-width: 720px;
  font-size: 1.1rem;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 0;
  padding: 0 12px;
  color: var(--mint-deep);
  border: 1px solid rgba(61, 211, 159, 0.28);
  border-radius: var(--radius);
  background: var(--mint-soft);
  font-size: 0.78rem;
  font-weight: 950;
}

.eyebrow + h1,
.eyebrow + h2,
.audience-tag + h1,
.ui-badge + h1,
.ui-badge + h2 {
  margin-top: 24px;
}

.demo-panel .eyebrow,
.demo-panel-form .eyebrow {
  margin-bottom: 0;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
  padding: 24px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.kpi {
  padding: 0 16px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.kpi:last-child {
  border-right: 0;
}

.kpi strong {
  display: block;
  background: linear-gradient(115deg, var(--blue), var(--mint), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.85rem;
  font-weight: 1000;
  line-height: 1;
}

.kpi small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.25;
}

.use-case-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.1), transparent 54%),
    linear-gradient(180deg, #ffffff, #eef4fb);
  box-shadow: var(--shadow);
}

.use-case-visual .visual-shell {
  width: min(100%, 560px);
  min-height: 560px;
}

.use-case-visual .keychain-fleet {
  top: 20px;
  min-height: 500px;
}

.use-case-visual .key-tag {
  top: 72px;
  left: 50%;
  width: 250px;
  transform: translateX(-50%);
}

.benefits-section {
  padding: 88px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit:hover {
  border-color: rgba(49, 91, 184, 0.32);
  transform: translateY(-2px);
}

.benefit-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(49, 91, 184, 0.16);
  border-radius: var(--radius);
  background: #eef4ff;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
}

.benefit h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.benefit p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.5;
}

.site-footer {
  padding: 0 24px;
  padding-bottom: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(49, 91, 184, 0.18), transparent 42%),
    var(--dark);
}

.footer-shell {
  width: min(var(--max), 100%);
  margin-inline: auto;
  padding: 58px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(132px, 0.65fr));
  gap: 38px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 430px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  font-weight: 620;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  font-weight: 760;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
}

.footer-brand .brand-logo-wrap {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #ffffff;
}

.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
}

.footer-brand {
  width: 100%;
  min-width: 0;
  align-items: flex-start;
}

.footer-brand .brand-text {
  min-width: 0;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 1.24rem;
}

.footer-brand small {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.32;
  white-space: normal;
}

.footer-column {
  display: grid;
  gap: 11px;
}

.footer-column strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  font-weight: 650;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.site-footer p {
  margin: 0;
}

.footer-brand-block > p {
  margin-top: 34px;
}

.brand.compact .brand-mark {
  width: 40px;
  height: 40px;
}

.brand.compact strong {
  font-size: 1.08rem;
}

.brand.compact small {
  font-size: 0.74rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 8px;
  }

  .main-nav a {
    padding-inline: 7px;
  }

  .nav-secondary {
    display: none;
  }

  .nav-cta {
    right: 18px;
    bottom: 18px;
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    width: 86vw;
    height: 420px;
  }

  .visual-shell {
    min-height: 760px;
  }

  .product-window {
    width: 100%;
  }

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

  .trust-marquee,
  .problem-strip,
  .product-story-section,
  .dashboard-showcase-grid,
  .flow-grid,
  .security-grid,
  .use-case-hero-grid {
    grid-template-columns: 1fr;
  }

  .story-copy h2,
  .dashboard-showcase-copy h2 {
    max-width: 820px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .section-shell,
  .trust-marquee {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding-top: 34px;
  }

  .feature-section,
  .deployment-section,
  .demo-section,
  .flow-section,
  .security-section,
  .benefits-section {
    padding: 64px 0;
  }

  .use-case-hero {
    padding: 44px 0 46px;
  }

  .problem-strip {
    margin-top: 56px;
  }

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

  .visual-shell {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .signal-field,
  .vehicle-chip,
  .floating-doc {
    display: none;
  }

  .qr-fob,
  .product-window {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .dashboard-window {
    opacity: 1;
  }

  .keychain-fleet {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 560px;
    transform: none;
  }

  .key-tag {
    animation: none;
  }

  .key-rail {
    left: 50%;
    width: 250px;
    transform: translateX(-50%) rotate(-6deg);
  }

  .tag-one {
    left: 50%;
    transform: translateX(-50%);
  }

  .tag-two {
    left: 6%;
  }

  .tag-three {
    right: 6%;
    left: auto;
  }

  .keychain-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .qr-fob {
    width: min(100%, 240px);
    justify-self: center;
  }

  .window-content,
  .feature-grid,
  .deployment-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .use-case-visual {
    min-height: 520px;
  }

  .use-case-visual .visual-shell {
    min-height: 520px;
  }

  .product-story-section {
    padding: 64px 0 28px;
  }

  .dashboard-showcase-section {
    padding: 64px 0;
  }

  .product-story-section,
  .dashboard-showcase-grid,
  .flow-grid,
  .security-grid,
  .use-case-hero-grid {
    gap: 34px;
  }

  .story-board {
    display: grid;
    min-height: auto;
    gap: 12px;
  }

  .story-line {
    display: none;
  }

  .story-node {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
  }

  .pin-screen {
    grid-template-columns: 1fr;
  }

  .pin-row {
    grid-template-columns: repeat(6, 1fr);
  }

  .problem-strip,
  .demo-panel,
  .prose {
    padding: 34px 22px;
  }

  .demo-panel-form {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-panel-form .demo-outcomes {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.18rem;
  }

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

  .feature-section,
  .deployment-section,
  .demo-section,
  .flow-section,
  .security-section,
  .benefits-section,
  .dashboard-showcase-section,
  .product-story-section {
    padding: 34px 0;
  }

  .use-case-hero {
    padding: 30px 0 34px;
  }

  .problem-strip {
    margin-top: 28px;
    padding: 24px 20px;
  }

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

  .product-story-section,
  .dashboard-showcase-grid,
  .flow-grid,
  .security-grid,
  .use-case-hero-grid {
    gap: 20px;
  }

  .feature-grid,
  .deployment-grid,
  .benefits-grid {
    gap: 10px;
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    flex: none;
    gap: 4px;
    align-items: stretch;
    justify-content: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: transparent;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--ink);
    background: #f3f7fc;
  }

  .has-dropdown {
    width: 100%;
  }

  .dropdown-trigger svg {
    width: 16px;
    height: 16px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 2px 0 8px;
    padding: 8px;
    border-color: var(--line-soft);
    background: #f7f9fc;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown:hover .dropdown-menu {
    display: none;
  }

  .has-dropdown[aria-expanded="true"] .dropdown-menu {
    display: grid;
    transform: none;
  }

  .dropdown-menu a {
    min-height: 0;
    padding: 10px;
    background: var(--white);
  }

  .floating-demo-cta {
    display: inline-flex;
  }

  .demo-panel-form {
    text-align: left;
  }

  .demo-panel-form .demo-outcomes {
    justify-content: stretch;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .demo-form {
    padding: 16px;
  }

  .hero-lede,
  .section-heading p,
  .flow-copy p,
  .security-copy p,
  .demo-panel p {
    font-size: 1rem;
  }

  .window-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .window-tabs {
    width: 100%;
  }

  .window-tabs span {
    flex: 1;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-tabs {
    width: 100%;
  }

  .dashboard-tabs span {
    flex: 1;
  }

  .dashboard-page {
    padding: 14px;
  }

  .configuration-head {
    align-items: stretch;
    flex-direction: column;
  }

  .configuration-steps {
    grid-template-columns: 1fr;
  }

  .demo-outcomes {
    width: 100%;
  }

  .demo-outcomes span {
    width: 100%;
    justify-content: center;
  }

  .kpis {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .kpi {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .kpi:last-child {
    border-bottom: 0;
  }

  .page-header h1,
  .use-case-hero h1 {
    font-size: 2.65rem;
  }

  .trust-marquee {
    padding: 14px;
  }

  .trust-name,
  .trust-logo {
    min-width: 172px;
  }

  .feature-card {
    min-height: 236px;
  }

  .feature-visual {
    width: 76px;
    height: 76px;
  }

  .keychain-fleet {
    min-height: 500px;
  }

  .key-tag {
    width: 184px;
  }

  .tag-one {
    width: 214px;
  }

  .tag-two {
    top: 92px;
    left: -12px;
  }

  .tag-three {
    top: 108px;
    right: -18px;
  }

  .tag-qr {
    width: 114px;
  }

  .tag-one .tag-qr {
    width: 132px;
  }

  .keychain-caption {
    padding: 14px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
