/* Base / Theme */
:root {
  --ink: #0a1628;
  --muted: #5b6b7f;
  --line: #dce5ee;
  --surface: #f7fafc;
  --surface-blue: #e8f5ff;
  --brand-cyan: #12b9ee;
  --brand-blue: #147cff;
  --deep-blue: #07376b;
  --navy: #04142d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 68, 0.12);
  --radius: 8px;
  --section-width: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

ul {
  padding-left: 1.1rem;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 700;
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.25vw, 5.25rem);
}

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

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn-primary {
  color: var(--white);
  background: var(--brand-cyan);
}

.btn-secondary {
  color: var(--deep-blue);
  border: 1px solid rgba(20, 124, 255, 0.28);
  background: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #079fd3;
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--brand-blue);
  font-weight: 800;
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 238, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--section-width), calc(100% - 48px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand-blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 3px;
}

/* Hero Section */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    linear-gradient(135deg, rgba(18, 185, 238, 0.12), rgba(20, 124, 255, 0.05)),
    var(--surface);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(7, 55, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 55, 107, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 88%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 42%,
    rgba(18, 185, 238, 0.18) 49%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%);
  animation: hero-scan 7s ease-in-out infinite;
}

@keyframes hero-scan {
  0%,
  34% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

.hero-slider {
  position: relative;
  z-index: 1;
  display: grid;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: -34px -12px 62px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-120%) skewX(-14deg);
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.72) 47%,
    rgba(18, 185, 238, 0.3) 52%,
    rgba(255, 255, 255, 0.5) 56%,
    transparent 68%,
    transparent 100%
  );
}

.hero-slider.is-changing::after {
  animation: slider-light-sweep 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slider-light-sweep {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
  }

  20%,
  62% {
    opacity: 0.95;
  }

  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-14deg);
  }
}

.hero-slide {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 64px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(8px);
  transform: translateX(-18px) scale(0.992);
  transition:
    opacity 220ms ease,
    filter 420ms ease,
    transform 420ms ease,
    visibility 0s linear 420ms;
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
  transform: translateX(0) scale(1);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) 180ms,
    filter 640ms cubic-bezier(0.22, 1, 0.36, 1) 160ms,
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1) 160ms,
    visibility 0s linear 0s;
}

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

.hero-copy .eyebrow {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(18, 185, 238, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  color: #173c65;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

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

.hero-panel {
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 124, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 90px rgba(7, 31, 68, 0.17);
  backdrop-filter: blur(20px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  pointer-events: none;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  color: var(--white);
  background: linear-gradient(100deg, var(--navy), var(--brand-blue));
}

.hero-panel-header span {
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel-header strong {
  color: #bff5ff;
}

.hero-product-stack {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 28px;
  background: linear-gradient(180deg, #68c8ff, #157cff);
}

.hero-product-stack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0.85;
  animation: product-scan 3.8s ease-in-out infinite;
}

@keyframes product-scan {
  0%,
  100% {
    transform: translateY(-90px);
  }

  50% {
    transform: translateY(90px);
  }
}

.hero-product-stack img {
  position: relative;
  z-index: 1;
  width: 122%;
  max-width: none;
  filter: drop-shadow(0 20px 20px rgba(0, 34, 92, 0.22));
}

.hero-product-stack.single-product {
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-product-stack.single-product img {
  width: min(78%, 360px);
}

.hero-visual {
  min-height: 290px;
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(191, 245, 255, 0.22), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #082244, #167cff);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-90%);
  animation: visual-shine 5.5s ease-in-out infinite;
}

@keyframes visual-shine {
  0%,
  45% {
    transform: translateX(-90%);
  }

  78%,
  100% {
    transform: translateX(90%);
  }
}

.coverage-map,
.entry-door,
.entry-phone,
.visual-caption {
  position: relative;
  z-index: 1;
}

.coverage-map {
  min-height: 178px;
  border: 1px solid rgba(191, 245, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(191, 245, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 245, 255, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 28px 28px;
}

.coverage-camera {
  width: 68px;
  height: 68px;
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 28px;
  display: grid;
  place-items: center;
  color: #bff5ff;
  border: 1px solid rgba(191, 245, 255, 0.34);
  border-radius: 18px;
  background: rgba(4, 20, 45, 0.58);
  box-shadow: 0 18px 34px rgba(0, 25, 70, 0.22);
}

.coverage-camera svg {
  width: 34px;
  height: 34px;
}

.coverage-beam {
  position: absolute;
  z-index: 2;
  left: 78px;
  top: 2px;
  width: 224px;
  height: 94px;
  background: linear-gradient(
    90deg,
    rgba(191, 245, 255, 0) 0%,
    rgba(191, 245, 255, 0.06) 18%,
    rgba(191, 245, 255, 0.3) 42%,
    rgba(191, 245, 255, 0.02) 100%
  );
  clip-path: polygon(0 48%, 100% 0, 100% 80%, 0 66%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 20%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 20%, #000 44%);
  transform-origin: left center;
}

.beam-two {
  top: 24px;
  opacity: 0.55;
  transform: rotate(13deg);
}

.coverage-point {
  width: 13px;
  height: 13px;
  position: absolute;
  z-index: 3;
  border: 3px solid #bff5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(191, 245, 255, 0.12);
}

.point-one {
  right: 48px;
  top: 48px;
}

.point-two {
  right: 94px;
  bottom: 38px;
}

.point-three {
  right: 170px;
  top: 116px;
}

.entry-visual {
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 22px;
}

.entry-door {
  height: 190px;
  border: 1px solid rgba(191, 245, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.06);
}

.entry-doorbell {
  width: 58px;
  height: 76px;
  position: absolute;
  top: 56px;
  right: 24px;
  display: grid;
  place-items: center;
  color: #bff5ff;
  border: 1px solid rgba(191, 245, 255, 0.34);
  border-radius: 18px;
  background: rgba(4, 20, 45, 0.58);
}

.entry-doorbell svg {
  width: 30px;
  height: 30px;
}

.entry-handle {
  width: 10px;
  height: 46px;
  position: absolute;
  top: 76px;
  left: 24px;
  border-radius: 999px;
  background: #bff5ff;
}

.entry-phone {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 22px 14px;
  border: 1px solid rgba(191, 245, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.entry-phone span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #bff5ff;
  border-radius: 18px;
  background: rgba(4, 20, 45, 0.5);
}

.entry-phone svg {
  width: 30px;
  height: 30px;
}

.entry-phone small,
.visual-caption span {
  color: #d7f7ff;
}

.visual-caption {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.hero-dashboard {
  min-height: 290px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(150deg, #082244, #167cff);
  background-size: 34px 34px, 34px 34px, auto;
}

.dashboard-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #bff5ff;
  border: 1px solid rgba(191, 245, 255, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-icon svg,
.hero-workflow svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.85;
}

.hero-dashboard strong {
  font-size: 1.35rem;
}

.hero-dashboard p {
  max-width: 290px;
  margin: 6px 0 0;
  color: #e9f8ff;
}

.storage-bars {
  display: grid;
  gap: 10px;
}

.storage-bars span {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #bff5ff var(--bar), rgba(255, 255, 255, 0.2) var(--bar));
}

.hero-workflow {
  min-height: 290px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, #082244, #167cff);
}

.hero-workflow article {
  display: grid;
  grid-template-rows: 42px auto 1fr;
  align-content: start;
  align-items: start;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(191, 245, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-workflow svg {
  align-self: center;
  color: #bff5ff;
}

.hero-workflow strong {
  align-self: start;
  font-size: 1.1rem;
}

.hero-workflow p {
  align-self: start;
  margin: 0;
  color: #f4fdff;
  font-size: 0.88rem;
  opacity: 1;
}

.hero-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px 28px 28px 48px;
  color: #2f4964;
  font-weight: 700;
}

.hero-slider-controls {
  position: relative;
  z-index: 4;
  grid-row: 2;
  display: grid;
  grid-template-columns: 44px auto 44px;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
  gap: 16px;
  margin-top: 34px;
  line-height: 0;
}

.hero-slider-controls > p {
  display: contents;
  margin: 0;
}

.hero-slider-controls br {
  display: none;
}

.slider-arrow {
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  appearance: none;
  position: relative;
  top: 0;
  bottom: auto;
  color: var(--deep-blue);
  border: 1px solid rgba(20, 124, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  line-height: 0;
  margin: 0;
  outline: none;
  transition: background 160ms ease, border-color 160ms ease;
  vertical-align: middle;
}

.slider-arrow-prev {
  grid-column: 1;
  grid-row: 1;
}

.slider-arrow-next {
  grid-column: 3;
  grid-row: 1;
}

.slider-arrow:hover,
.slider-arrow:focus,
.slider-arrow:focus-visible,
.slider-arrow:active {
  border-color: rgba(20, 124, 255, 0.28);
  background: var(--white);
  outline: none;
  box-shadow: none;
  transform: none;
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke-width: 2.4;
}

.hero-dots {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  align-self: center;
  height: 44px;
  gap: 9px;
  line-height: 0;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 55, 107, 0.25);
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--brand-cyan);
}

/* Snapshot Section */
.snapshot-section {
  padding: 26px 0;
  background: var(--white);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 31, 68, 0.07);
}

.snapshot-grid article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.snapshot-grid article:last-child {
  border-right: 0;
}

.snapshot-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.snapshot-grid strong {
  color: var(--deep-blue);
  font-size: 1.06rem;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 124, 255, 0.35);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(150deg, var(--navy), var(--brand-blue));
}

.service-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--brand-blue);
  border: 1px solid rgba(18, 185, 238, 0.42);
  border-radius: 22px;
  background: linear-gradient(180deg, #f5fcff, #e6f5ff);
}

.service-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.85;
}

.service-card.featured .service-icon {
  color: #bff5ff;
  border-color: rgba(191, 245, 255, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

.service-number {
  width: fit-content;
  margin-bottom: 20px;
  padding: 5px 9px;
  color: var(--brand-blue);
  background: var(--surface-blue);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-card.featured .service-number {
  color: var(--navy);
  background: #bff5ff;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card.featured p,
.service-card.featured li,
.service-card.featured .text-link {
  color: #e9f8ff;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

/* Software Preview Section */
.software-preview-section {
  padding: 100px 0;
  background: var(--surface-blue);
}

.software-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  align-items: center;
  gap: 56px;
}

.software-copy {
  max-width: 560px;
}

.workflow-card {
  display: grid;
  gap: 16px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 24px;
  border: 1px solid rgba(20, 124, 255, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 31, 68, 0.08);
}

.workflow-step span {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand-blue);
  border-radius: 50%;
  font-weight: 900;
}

.workflow-step strong {
  font-size: 1.2rem;
}

.workflow-step p {
  margin: 4px 0 0;
}

/* Consultation / Availability Section */
.consultation-section {
  padding: 100px 0;
  background: var(--white);
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 54px;
}

.consultation-copy {
  max-width: 720px;
}

.consultation-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.consultation-cards article,
.availability-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.consultation-cards span,
.calendar-label {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consultation-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.availability-card {
  position: sticky;
  top: 112px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.availability-card.is-compact {
  position: relative;
  top: auto;
  align-self: start;
  will-change: transform;
  transform: translate3d(0, var(--orie-contact-y, 0px), 0);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.availability-card.is-expanded {
  align-self: start;
  transform: none;
  animation: none;
}

.availability-card h3,
.availability-card p,
.availability-card label {
  color: var(--white);
}

.availability-card label {
  display: block;
  margin: 22px 0 8px;
  font-weight: 800;
}

.availability-card input,
.availability-card select,
.availability-card textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 700;
}

.availability-card textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form .form-field {
  margin-top: 16px;
}

.consultation-fields[hidden] {
  display: none !important;
}

.visit-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 8px;
  padding: 0;
  border: 0;
}

.visit-choice legend,
.visit-choice-title {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--white);
  font-weight: 800;
}

.visit-choice > p {
  display: contents !important;
  margin: 0 !important;
}

.visit-choice br {
  display: none !important;
}

.visit-choice label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.visit-choice input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  padding: 0;
  accent-color: var(--brand-cyan);
}

.visit-choice strong,
.visit-choice small {
  display: block;
  color: var(--white);
}

.visit-choice small {
  margin-top: 2px;
  color: #c8d6e5;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-call {
  margin-top: 10px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #bff5ff;
  font-weight: 800;
}

.availability-message {
  min-height: 50px;
  margin: 16px 0 20px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.availability-message.is-available {
  color: #bff5ff;
  background: rgba(18, 185, 238, 0.16);
}

.availability-message.is-unavailable {
  color: #ffd3d3;
  background: rgba(255, 92, 92, 0.14);
}

/* Trust Section */
.trust-section {
  padding: 96px 0;
  background: var(--surface);
}

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

.trust-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

/* Scan Package Soft Page */
.subpage-hero {
  padding: 88px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 185, 238, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy), #0b4f9b 58%, var(--brand-blue));
}

.subpage-hero h1,
.subpage-hero p {
  color: var(--white);
}

.subpage-hero p {
  max-width: 720px;
  font-size: 1.22rem;
  font-weight: 600;
}

.subpage-section {
  padding: 96px 0;
}

.subpage-section.alt {
  background: var(--surface);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.demo-card {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--brand-blue));
  box-shadow: var(--shadow);
}

.demo-card p {
  color: #e9f8ff;
}

/* Contact / Footer */
.call-section {
  padding: 72px 0;
  color: var(--white);
  background: linear-gradient(100deg, var(--navy), #074488 45%, var(--brand-blue));
}

.call-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.call-inner h2,
.call-inner p {
  color: var(--white);
}

.phone-number {
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.site-footer {
  padding: 34px 0;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  width: 150px;
  flex: 0 0 auto;
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  color: #c8d6e5;
  font-size: 0.95rem;
}

.site-footer a:not(.footer-brand) {
  color: #bff5ff;
  font-weight: 800;
}

/* Responsive Layout */
@media (max-width: 1020px) {
  .hero-slide,
  .software-preview,
  .consultation-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .availability-card {
    position: static;
  }

  .availability-card.is-compact {
    position: relative;
    top: auto;
    z-index: 3;
  }

  .snapshot-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .nav-shell {
    min-height: 78px;
  }

  .brand {
    width: 168px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .hero-section,
  .services-section,
  .software-preview-section,
  .consultation-section,
  .trust-section,
  .subpage-section {
    padding: 72px 0;
  }

  .snapshot-grid,
  .service-grid,
  .consultation-cards {
    grid-template-columns: 1fr;
  }

  .snapshot-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot-grid article:last-child {
    border-bottom: 0;
  }

  .call-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .nav-shell {
    width: calc(100% - 32px);
    max-width: 358px;
    margin-left: 16px;
    margin-right: 16px;
  }

  h1 {
    width: 100%;
    max-width: 330px;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  h2 {
    width: 100%;
    max-width: 330px;
    font-size: 1.55rem;
    line-height: 1.1;
  }

  .eyebrow {
    max-width: 320px;
    font-size: 0.64rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-panel,
  .snapshot-grid,
  .service-grid,
  .workflow-card,
  .availability-card {
    width: 100%;
    max-width: 358px;
  }

  .hero-text,
  .section-heading p,
  .service-card p,
  .service-card li {
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .hero-product-stack {
    min-height: 230px;
    padding: 18px;
  }

  .hero-visual {
    min-height: 268px;
    padding: 18px;
  }

  .coverage-map {
    min-height: 160px;
  }

  .coverage-beam {
    width: 190px;
  }

  .entry-visual {
    grid-template-columns: 1fr;
  }

  .entry-door {
    height: 150px;
  }

  .entry-phone {
    grid-template-columns: 48px 1fr;
    justify-items: start;
    text-align: left;
  }

  .entry-phone span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
  }

  .hero-product-stack img {
    width: 100%;
    max-width: 100%;
  }

  .hero-product-stack.single-product img {
    width: 82%;
  }

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

  .hero-slider-controls {
    justify-content: flex-start;
  }

  .hero-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .visit-choice {
    grid-template-columns: 1fr;
  }

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

  .workflow-step span {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .phone-number {
    white-space: normal;
  }
}

/* WordPress shortcode isolation */
.orie-body-shell {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.orie-body-shell,
.orie-body-shell * {
  box-sizing: border-box;
  min-width: 0;
}

.orie-body-shell main {
  display: block;
}

.orie-body-shell img {
  display: block;
  max-width: 100%;
}

.orie-body-shell ul {
  padding-left: 1.1rem;
}

.orie-body-shell h1,
.orie-body-shell h2,
.orie-body-shell h3,
.orie-body-shell p {
  margin-top: 0;
}

.orie-body-shell h1,
.orie-body-shell h2 {
  color: var(--ink) !important;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.04 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

.orie-body-shell h1 {
  max-width: 760px !important;
  margin-bottom: 22px !important;
  font-size: clamp(3rem, 5.25vw, 5.25rem) !important;
}

.orie-body-shell h2 {
  margin-bottom: 18px !important;
  font-size: clamp(2.1rem, 4.4vw, 4.4rem) !important;
}

.orie-body-shell h3 {
  margin-bottom: 14px !important;
  color: var(--ink) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 1.35rem !important;
  line-height: 1.2 !important;
}

.orie-body-shell p {
  color: var(--muted) !important;
  font-family: "Inter", Arial, sans-serif !important;
  line-height: 1.55 !important;
}

.orie-body-shell .eyebrow {
  margin: 0 0 14px !important;
  color: var(--brand-cyan) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.orie-body-shell .btn-primary,
.orie-body-shell .btn-secondary {
  display: inline-flex !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border-radius: var(--radius) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.orie-body-shell .btn-primary {
  color: var(--white) !important;
  background: var(--brand-cyan) !important;
}

.orie-body-shell .btn-secondary {
  color: var(--deep-blue) !important;
  border: 1px solid rgba(20, 124, 255, 0.28) !important;
  background: var(--white) !important;
}

.orie-body-shell .service-card.featured h3 {
  color: var(--white) !important;
}

.orie-body-shell .service-card.featured p,
.orie-body-shell .service-card.featured li,
.orie-body-shell .service-card.featured .text-link {
  color: #e9f8ff !important;
}

.orie-body-shell .availability-card h3,
.orie-body-shell .availability-card p,
.orie-body-shell .availability-card label,
.orie-body-shell .visit-choice legend,
.orie-body-shell .visit-choice-title,
.orie-body-shell .visit-choice strong {
  color: var(--white) !important;
}

.orie-body-shell .visit-choice small {
  color: #c8d6e5 !important;
}

.orie-body-shell .availability-message.is-available,
.orie-body-shell .form-status {
  color: #bff5ff !important;
}

.orie-body-shell .availability-message.is-unavailable {
  color: #ffd3d3 !important;
}

.orie-body-shell .subpage-hero h1,
.orie-body-shell .subpage-hero p {
  color: var(--white) !important;
}

.orie-body-shell .demo-card,
.orie-body-shell .demo-card h3 {
  color: var(--white) !important;
}

.orie-body-shell .demo-card p {
  color: #e9f8ff !important;
}

.orie-anchor {
  display: block;
  position: relative;
  top: -92px;
  height: 0;
  visibility: hidden;
}

/* WordPress theme reset locks: keep these sections identical to the local HTML. */
@media (min-width: 821px) {
  .orie-body-shell .snapshot-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.orie-body-shell .snapshot-grid article {
  min-width: 0;
}

.orie-body-shell .hero-slider-controls {
  display: grid !important;
  grid-template-columns: 44px auto 44px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 44px !important;
  gap: 16px !important;
  width: fit-content !important;
  max-width: none !important;
  line-height: 0 !important;
}

.orie-body-shell .hero-slider-controls > p {
  display: contents !important;
  margin: 0 !important;
}

.orie-body-shell .hero-slider-controls br {
  display: none !important;
}

.orie-body-shell .slider-arrow {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  flex: 0 0 44px !important;
  align-self: center !important;
  justify-self: center !important;
  position: relative !important;
  top: 0 !important;
  bottom: auto !important;
  padding: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  outline: none !important;
  transform: none !important;
}

.orie-body-shell .slider-arrow-prev {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.orie-body-shell .slider-arrow-next {
  grid-column: 3 !important;
  grid-row: 1 !important;
}

.orie-body-shell .slider-arrow:hover,
.orie-body-shell .slider-arrow:focus,
.orie-body-shell .slider-arrow:focus-visible,
.orie-body-shell .slider-arrow:active {
  border-color: rgba(20, 124, 255, 0.28) !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none !important;
}

.orie-body-shell .hero-dots {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  align-self: center !important;
  height: 44px !important;
  gap: 9px !important;
  line-height: 0 !important;
}

.orie-body-shell .hero-text {
  color: #173c65 !important;
}

.orie-body-shell .hero-dashboard p,
.orie-body-shell .hero-workflow p {
  color: #f4fdff !important;
  opacity: 1 !important;
}

.orie-body-shell .hero-workflow article {
  grid-template-rows: 42px auto 1fr !important;
  align-content: start !important;
  align-items: start !important;
}

.orie-body-shell .hero-workflow svg {
  align-self: center !important;
}

.orie-body-shell .hero-workflow strong,
.orie-body-shell .hero-workflow p {
  align-self: start !important;
}

.orie-body-shell .hero-dots button {
  width: 10px !important;
  min-width: 10px !important;
  height: 10px !important;
  min-height: 10px !important;
  flex: 0 0 auto !important;
  padding: 0 !important;
  margin: 0 !important;
}

.orie-body-shell .hero-dots button.is-active {
  width: 34px !important;
}

.orie-body-shell .hero-checks {
  display: grid !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 24px 28px 28px 48px !important;
  color: #2f4964 !important;
  font-weight: 700 !important;
  list-style-position: outside !important;
  list-style-type: disc !important;
}

.orie-body-shell .hero-checks li {
  display: list-item !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #2f4964 !important;
  font-weight: 700 !important;
  list-style-position: outside !important;
  list-style-type: disc !important;
}

.orie-body-shell .software-preview {
  display: grid !important;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr) !important;
  align-items: center !important;
  gap: 56px !important;
}

.orie-body-shell .workflow-card {
  display: grid !important;
  gap: 16px !important;
}

.orie-body-shell .workflow-step {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  column-gap: 18px !important;
  align-items: start !important;
}

.orie-body-shell .workflow-step span {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
}

.orie-body-shell .workflow-step strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
}

.orie-body-shell .workflow-step p {
  grid-column: 2 !important;
  grid-row: 2 !important;
  max-width: none !important;
  margin: 4px 0 0 !important;
  white-space: normal !important;
}

.orie-body-shell .availability-card {
  background: var(--navy) !important;
}

.orie-body-shell .availability-card.is-compact {
  position: relative !important;
  top: auto !important;
  align-self: start !important;
  will-change: transform !important;
  transform: translate3d(0, var(--orie-contact-y, 0px), 0) !important;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.orie-body-shell .availability-card.is-expanded {
  align-self: start !important;
  transform: none !important;
  animation: none !important;
}

.orie-body-shell .visit-choice {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.orie-body-shell .visit-choice-title {
  grid-column: 1 / -1 !important;
}

.orie-body-shell .visit-choice > p {
  display: contents !important;
  margin: 0 !important;
}

.orie-body-shell .visit-choice br {
  display: none !important;
}

.orie-body-shell .visit-choice label {
  min-width: 0 !important;
  width: 100% !important;
}

@media (max-width: 1020px) {
  .orie-body-shell .software-preview {
    grid-template-columns: 1fr !important;
  }

  .orie-body-shell .availability-card.is-compact {
    position: relative !important;
    top: auto !important;
    z-index: 3 !important;
  }

  .orie-body-shell .availability-card.is-expanded {
    position: static !important;
  }
}

@media (max-width: 560px) {
  .orie-body-shell .snapshot-grid,
  .orie-body-shell .workflow-card,
  .orie-body-shell .availability-card {
    width: 100% !important;
    max-width: 358px !important;
  }

  .orie-body-shell .hero-slider-controls {
    width: fit-content !important;
    max-width: none !important;
    justify-content: flex-start !important;
  }

  .orie-body-shell .workflow-step {
    grid-template-columns: 1fr !important;
  }

  .orie-body-shell .workflow-step span,
  .orie-body-shell .workflow-step strong,
  .orie-body-shell .workflow-step p {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}
