:root {
  --bg: #050816;
  --bg-soft: #0b1123;
  --panel: rgba(12, 18, 35, 0.62);
  --panel-strong: rgba(9, 14, 28, 0.82);
  --line: rgba(140, 214, 255, 0.18);
  --line-strong: rgba(140, 214, 255, 0.34);
  --text: #f4f7ff;
  --muted: #8f9db7;
  --cyan: #79dbff;
  --blue: #5f77ff;
  --lime: #95ffb7;
  --orange: #ffb36b;
  --wa: #25d366;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
  --radius: 30px;
  --radius-sm: 20px;
  --shell: 1280px;
  --nav-height: 84px;
  --ease: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --audio-reactivity: 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #050816;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  cursor: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(121, 219, 255, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(95, 119, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #040714 0%, #060a18 35%, #081022 100%);
}

main {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%, rgba(121, 219, 255, calc(0.04 + var(--audio-reactivity) * 0.12)), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(149, 255, 183, calc(0.02 + var(--audio-reactivity) * 0.08)), transparent 30%);
}

body.loader-active {
  overflow: hidden;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 72px;
  height: 72px;
  border-color: rgba(149, 255, 183, 0.55);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

canvas,
svg {
  display: block;
}

::selection {
  background: rgba(121, 219, 255, 0.24);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 999px;
}

.particle-canvas,
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(121, 219, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(4, 7, 20, 0.98), rgba(4, 7, 20, 1));
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  z-index: 1400;
  mix-blend-mode: screen;
  transition: opacity 220ms ease, width 220ms ease, height 220ms ease, border-color 220ms ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: radial-gradient(circle, #fff 0%, var(--cyan) 65%);
  box-shadow: 0 0 20px rgba(121, 219, 255, 0.5);
}

.cursor-ring {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 1px solid rgba(121, 219, 255, 0.45);
  background: radial-gradient(circle, rgba(121, 219, 255, 0.08), transparent 60%);
}

.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  pointer-events: none;
  opacity: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(6, 12, 24, 0.88);
  border: 1px solid rgba(121, 219, 255, 0.18);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.cursor-label-active .cursor-label {
  opacity: 1;
}

.loader-core {
  position: relative;
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(121, 219, 255, 0.22);
  animation: loader-spin 2.8s linear infinite;
}

.loader-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: inherit;
  border: 1px solid rgba(149, 255, 183, 0.18);
}

.loader-ring.delay {
  inset: 24px;
  animation-direction: reverse;
  animation-duration: 2s;
}

.loader-label {
  text-align: center;
  display: grid;
  gap: 8px;
}

.loader-label span {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 0.72rem;
}

.loader-label strong {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
}

.particle-canvas {
  z-index: 0;
  opacity: 0.9;
}

.ambient-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(121, 219, 255, 0.48);
}

.sound-toggle {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(121, 219, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 13, 28, 0.82);
  color: var(--text);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.sound-toggle.is-on {
  border-color: rgba(149, 255, 183, 0.3);
  box-shadow: 0 18px 42px rgba(121, 219, 255, 0.18);
}

.sound-bars {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  height: 22px;
}

.sound-bars i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
  height: calc(6px + var(--audio-reactivity) * 16px);
}

.sound-bars i:nth-child(2) {
  height: calc(10px + var(--audio-reactivity) * 14px);
}

.sound-bars i:nth-child(3) {
  height: calc(14px + var(--audio-reactivity) * 12px);
}

.sound-bars i:nth-child(4) {
  height: calc(8px + var(--audio-reactivity) * 18px);
}

.sound-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.sound-copy strong {
  font-size: 0.9rem;
}

.sound-copy span {
  font-size: 0.76rem;
  color: var(--muted);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(5, 9, 22, 0.94);
  border-bottom: 1px solid rgba(121, 219, 255, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.header-top {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(216, 45, 52, 0.94) 0 36%, rgba(8, 18, 45, 0.98) 36% 100%),
    linear-gradient(135deg, rgba(121, 219, 255, 0.16), rgba(149, 255, 183, 0.04));
  border-bottom: 1px solid rgba(121, 219, 255, 0.12);
}

.header-top-inner,
.site-nav {
  width: min(calc(100% - 40px), 1588px);
  margin: 0 auto;
}

.header-top-inner {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  min-height: 46px;
}

.top-hours,
.top-contact,
.top-contact a,
.top-socials {
  display: flex;
  align-items: center;
}

.top-hours {
  gap: 12px;
  padding-right: 22px;
  font-weight: 800;
}

.top-contact {
  justify-content: flex-end;
  gap: 20px;
  padding-left: 28px;
  font-weight: 700;
}

.top-contact a {
  gap: 10px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.top-contact a:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.top-hours svg,
.top-contact svg,
.top-socials svg {
  width: 18px;
  height: 18px;
}

.top-socials {
  gap: 14px;
}

.top-socials a {
  padding-right: 0;
  border-right: 0;
}

.site-nav {
  position: relative;
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  color: var(--text);
  transition: height var(--ease);
}

.site-header.scrolled .site-nav {
  height: 86px;
}

.brand {
  display: inline-flex;
  align-items: stretch;
  min-height: 70px;
  text-decoration: none;
  border: 1px solid rgba(121, 219, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 13, 28, 0.88);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.brand-mark {
  width: 86px;
  min-height: 70px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #e43845, #9e1724);
}

.brand-mark svg {
  width: 64px;
  height: 52px;
}

.brand-copy {
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 190px;
  padding: 12px 18px;
}

.brand-copy strong,
.section-head h2,
.systems-copy h2,
.workflow-sticky h2,
.contact-copy h2,
.hero-copy h1 {
  font-family: "Syne", sans-serif;
}

.brand-copy strong {
  color: #f4f7ff;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 0.86;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  justify-content: center;
  min-width: 0;
}

.nav-links a,
.footer-links a,
.nav-link-cta {
  text-decoration: none;
  color: inherit;
  position: relative;
  white-space: nowrap;
  font-size: clamp(1.08rem, 1.2vw, 1.42rem);
  font-weight: 900;
  text-transform: uppercase;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d82d34, transparent);
  transform: scaleX(0);
  transition: transform var(--ease);
}

.nav-links a:hover,
.nav-links a.active,
.footer-links a:hover,
.nav-link-cta:hover {
  color: var(--cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

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

.nav-button,
.button,
.mob-cta,
.form-submit,
.map-button,
.wa-float {
  text-decoration: none;
  border-radius: 999px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.nav-button,
.button-primary,
.mob-cta,
.form-submit {
  color: #04111d;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #8fb4ff 52%, var(--lime));
  box-shadow: 0 18px 36px rgba(121, 219, 255, 0.2);
}

.nav-button {
  padding: 18px 26px;
  color: var(--text);
  background: rgba(121, 219, 255, 0.06);
  border: 1px solid rgba(121, 219, 255, 0.46);
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(121, 219, 255, 0.12);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 24px;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button:hover,
.nav-button:hover,
.form-submit:hover,
.map-button:hover,
.wa-float:hover {
  transform: translateY(-3px);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(121, 219, 255, 0.26);
  border-radius: 6px;
  background: rgba(121, 219, 255, 0.08);
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 146px;
  left: 12px;
  right: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(5, 9, 22, 0.98);
  border: 1px solid rgba(121, 219, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  z-index: 1090;
}

.mobile-menu.open {
  display: flex;
}

.mob-link,
.mob-cta {
  padding: 14px 16px;
}

.mob-link {
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #07110b;
  background: linear-gradient(135deg, var(--wa), #8effa8);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.24);
}

.wa-float svg {
  width: 20px;
  height: 20px;
}

.hero {
  min-height: auto;
  padding: 184px 0 76px;
  overflow: hidden;
  color: #071b3d;
  background:
    linear-gradient(105deg, #ffffff 0 50%, #f1f5fb 50% 100%),
    #ffffff;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

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

.eyebrow,
.section-label,
.service-card span,
.system-number,
.workflow-card span,
.meta-card span,
.feed-card span,
.success-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.eyebrow {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(121, 219, 255, 0.18);
  color: var(--cyan);
  background: rgba(121, 219, 255, 0.07);
  margin-bottom: 20px;
}

.hero-eyebrow {
  color: #145bb8;
  background: #eaf3ff;
  border-color: #d3e4ff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(149, 255, 183, 0.52);
  animation: pulse 1.7s infinite;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  color: #071b3d;
  font-size: clamp(2.55rem, 3.35vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span,
.accent-line {
  display: block;
}

.accent-line {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, var(--cyan) 40%, #9ba8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero .accent-line {
  color: #135cbd;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.split-line {
  overflow: hidden;
}

.split-line::after {
  content: "";
  display: block;
  height: 0.02em;
}

body.intro-complete .split-line {
  animation: split-rise 900ms cubic-bezier(0.21, 1, 0.34, 1) both;
}

body.intro-complete .split-line:nth-child(2) {
  animation-delay: 100ms;
}

body.intro-complete .split-line:nth-child(3) {
  animation-delay: 180ms;
}

.hero-text,
.section-text,
.systems-copy p,
.workflow-sticky p,
.review-card p,
.review-feature p,
.service-card p,
.system-panel p,
.workflow-card p,
.meta-card p,
.footer-brand p,
.feed-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  font-size: 1.12rem;
  margin: 24px 0 34px;
  color: #173763;
}

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

.quick-reach,
.contact-socials {
  display: grid;
  gap: 12px;
}

.quick-reach {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 18px;
}

.hero .quick-reach {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-link,
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.085);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.hero .quick-link {
  color: #071b3d;
  background: rgba(255, 255, 255, 0.88);
  border-color: #dbe6f5;
  box-shadow: 0 16px 36px rgba(21, 58, 112, 0.08);
}

.hero .quick-link small,
.hero .glass-card span,
.hero .hero-note p {
  color: #426086;
}

.hero .button-primary {
  color: #ffffff;
  background: #2167c9;
  box-shadow: 0 18px 38px rgba(33, 103, 201, 0.26);
}

.hero .button-secondary {
  color: #071b3d;
  background: #ffffff;
  border-color: #d5e1f0;
  box-shadow: 0 18px 38px rgba(19, 48, 96, 0.08);
}

.quick-link {
  padding: 12px;
  border-radius: 18px;
}

.quick-link:hover,
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(121, 219, 255, 0.28);
  background: rgba(121, 219, 255, 0.075);
}

.quick-icon,
.social-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(121, 219, 255, 0.08);
  border: 1px solid rgba(121, 219, 255, 0.16);
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.quick-icon svg,
.social-icon svg {
  width: 20px;
  height: 20px;
}

.quick-link span:last-child,
.social-link span:last-child {
  min-width: 0;
}

.quick-link strong,
.quick-link small,
.social-link strong,
.social-link small {
  display: block;
}

.quick-link strong,
.social-link strong {
  font-size: 0.9rem;
}

.quick-link small,
.social-link small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-icon.instagram,
.social-link.instagram .social-icon {
  color: #ffb1d5;
  background: rgba(255, 74, 153, 0.1);
  border-color: rgba(255, 74, 153, 0.18);
}

.hero-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin-top: 26px;
  max-width: 640px;
}

.hero-note span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--cyan);
  background: rgba(121, 219, 255, 0.08);
  border: 1px solid rgba(121, 219, 255, 0.16);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.glass-card,
.hero-stage,
.service-card,
.system-panel,
.workflow-card,
.review-feature,
.review-card,
.meta-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.glass-card {
  padding: 22px;
}

.hero .glass-card {
  background: rgba(255, 255, 255, 0.86);
  border-color: #dbe6f5;
  box-shadow: 0 18px 42px rgba(16, 47, 92, 0.08);
}

.hero .counter {
  color: #071b3d;
}

.counter,
.review-feature strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.95;
  font-family: "Syne", sans-serif;
}

.glass-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-install-card {
  position: relative;
  min-height: min(56vw, 620px);
  display: grid;
  align-items: end;
}

.hero-home-scene {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #eef4fb, #ffffff 42%, #e8eef8);
  box-shadow: 0 34px 90px rgba(13, 42, 83, 0.14);
}

.home-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(214, 226, 241, 0.65), rgba(255, 255, 255, 0.06) 48%),
    linear-gradient(115deg, rgba(18, 55, 102, 0.1), rgba(255, 255, 255, 0));
}

.home-building {
  position: absolute;
  left: 9%;
  right: 12%;
  bottom: 58px;
  height: 245px;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0 34%, rgba(223, 230, 241, 0.94) 34% 36%, rgba(255, 255, 255, 0.88) 36% 100%);
  box-shadow: 0 30px 70px rgba(26, 46, 78, 0.16);
}

.home-building::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 16%;
  top: -58px;
  height: 90px;
  border-radius: 10px 10px 0 0;
  background: #dfe7f3;
  box-shadow: inset 0 -42px 0 rgba(45, 65, 98, 0.12);
}

.home-building span {
  position: absolute;
  top: 82px;
  width: 22%;
  height: 88px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffd98d, #f8aa43);
  box-shadow: 0 0 36px rgba(250, 171, 67, 0.34);
}

.home-building span:nth-child(1) {
  left: 14%;
}

.home-building span:nth-child(2) {
  left: 41%;
  height: 132px;
  top: 104px;
  background: linear-gradient(180deg, #17243c, #0f1a2e);
  box-shadow: none;
}

.home-building span:nth-child(3) {
  right: 13%;
}

.home-gate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background:
    repeating-linear-gradient(90deg, #182b49 0 12px, transparent 12px 44px),
    linear-gradient(180deg, #203654, #101c31);
  border-top: 8px solid #13233d;
}

.hero-bullet-camera {
  position: absolute;
  top: 76px;
  right: -24px;
  width: min(72%, 610px);
  height: 214px;
  transform: rotate(-2deg);
}

.camera-arm {
  position: absolute;
  right: 40px;
  top: 94px;
  width: 170px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cfd8e6, #ffffff 48%, #aeb9c8);
  box-shadow: 0 18px 32px rgba(10, 31, 61, 0.12);
}

.camera-arm::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -34px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffffff, #cfd8e6 68%, #aeb9c8);
  border: 1px solid rgba(17, 37, 68, 0.1);
}

.camera-body {
  position: absolute;
  left: 0;
  top: 28px;
  width: 420px;
  height: 142px;
  border-radius: 80px 26px 26px 80px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef3fa 52%, #ccd6e6 100%);
  border: 1px solid rgba(13, 35, 68, 0.12);
  box-shadow:
    inset 0 -12px 24px rgba(17, 42, 72, 0.08),
    0 30px 70px rgba(11, 31, 60, 0.22);
}

.camera-body::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 168px;
  height: 174px;
  border-radius: 46% 54% 54% 46%;
  background: linear-gradient(180deg, #ffffff, #d7dfeb);
  border: 1px solid rgba(13, 35, 68, 0.14);
}

.camera-body i {
  position: absolute;
  left: 38px;
  top: 28px;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #050914 0 22%, #17243b 23% 34%, #050914 35% 52%, #2b3546 53% 70%, #0d1525 71%);
  box-shadow:
    0 0 0 12px #e6edf7,
    0 0 0 24px #2b3546,
    0 16px 34px rgba(0, 0, 0, 0.28);
}

.camera-glow {
  position: absolute;
  left: 86px;
  top: 74px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #79dbff;
  box-shadow: 0 0 34px #79dbff;
}

.hero-scan-card {
  position: absolute;
  left: 30px;
  bottom: 126px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 19, 43, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(7, 19, 43, 0.22);
}

.hero-scan-card span {
  color: #ff6464;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-scan-card strong {
  font-size: 0.95rem;
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: #071b3d;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-proof-strip span:not(:last-child)::after {
  content: "•";
  margin-left: 18px;
  color: #2167c9;
}

.hero-stage {
  min-height: 610px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(121, 219, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(95, 119, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(8, 13, 28, 0.95), rgba(5, 8, 18, 0.9));
  border-color: rgba(121, 219, 255, 0.14);
  transform-style: preserve-3d;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(121, 219, 255, 0.08);
}

.hero-stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-stage-orb.orb-a {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 10%;
  background: radial-gradient(circle, rgba(121, 219, 255, calc(0.15 + var(--audio-reactivity) * 0.14)), transparent 68%);
  transform: translate3d(calc(var(--hero-x, 0) * 16px), calc(var(--hero-y, 0) * -12px), 0);
}

.hero-stage-orb.orb-b {
  width: 220px;
  height: 220px;
  bottom: 8%;
  left: 4%;
  background: radial-gradient(circle, rgba(149, 255, 183, calc(0.06 + var(--audio-reactivity) * 0.1)), transparent 70%);
  transform: translate3d(calc(var(--hero-x, 0) * -20px), calc(var(--hero-y, 0) * 14px), 0);
}

.ptz-panel {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 160px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(6, 12, 24, 0.72);
  border: 1px solid rgba(121, 219, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.ptz-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ptz-pad {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.ptz-middle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.ptz-zoom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.ptz-btn {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(121, 219, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.ptz-btn:hover,
.ptz-btn:focus-visible {
  background: rgba(121, 219, 255, 0.12);
  border-color: rgba(121, 219, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}

.ptz-center {
  color: var(--cyan);
}

.stage-topline,
.metrics-ribbon,
.feed-stack,
.contact-shell,
.contact-meta,
.reviews-grid,
.services-grid,
.systems-shell,
.footer-shell {
  position: relative;
  z-index: 1;
}

.stage-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stage-topline span:first-child {
  color: #ff8e8e;
}

.camera-core {
  position: relative;
  width: min(100%, 520px);
  height: 285px;
  margin: 58px auto 42px;
  transform: scale(var(--ptz-zoom, 1));
  transform-origin: center center;
  transition: transform 240ms ease;
}

.camera-head {
  position: absolute;
  left: 12%;
  top: 35%;
  width: 190px;
  height: 126px;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(19, 33, 58, 1), rgba(7, 13, 25, 0.98));
  border: 1px solid rgba(121, 219, 255, 0.2);
  transform:
    rotate(calc(-16deg + var(--hero-x, 0) * 8deg))
    translate3d(calc(var(--hero-x, 0) * 16px), calc(var(--hero-y, 0) * -10px), 28px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.44);
  animation: head-sweep 6.5s ease-in-out infinite;
}

.camera-head::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 18px;
  left: -120px;
  top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(121, 219, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.camera-lens {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 8px solid #13233a;
  background: radial-gradient(circle at 38% 35%, #9af3ff 0%, #22445d 36%, #050915 68%);
  box-shadow:
    0 0 0 2px rgba(121, 219, 255, 0.24),
    0 0 36px rgba(121, 219, 255, 0.15);
}

.camera-lens::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 219, 255, 0.18), transparent 68%);
  animation: lens-pulse 2.8s ease-in-out infinite;
}

.camera-beam {
  position: absolute;
  right: 0;
  top: 21%;
  width: 360px;
  height: 250px;
  background: linear-gradient(90deg, rgba(121, 219, 255, 0.24), transparent 74%);
  clip-path: polygon(0 48%, 100% 0, 100% 100%);
  filter: blur(5px);
  transform-origin: left center;
  animation: beam-sweep 6.5s ease-in-out infinite;
  transform:
    rotate(calc(-8deg + var(--hero-x, 0) * 12deg))
    scaleY(calc(1 + var(--audio-reactivity) * 0.08));
}

.feed-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transform: translate3d(calc(var(--hero-x, 0) * -10px), calc(var(--hero-y, 0) * 8px), 18px);
}

.feed-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-card strong,
.service-card h3,
.system-panel h3,
.workflow-card h3,
.meta-card strong,
.form-title,
.form-success h3 {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.18rem;
}

.metrics-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  transform: translate3d(calc(var(--hero-x, 0) * 10px), calc(var(--hero-y, 0) * -8px), 22px);
}

.metrics-ribbon div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-ribbon span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.metrics-ribbon strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.marquee-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.horizontal-showcase {
  position: relative;
  z-index: 1;
  height: auto;
  overflow: hidden;
  padding: 70px 0;
}

.horizontal-sticky {
  position: relative;
  top: 0;
  height: auto;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 64px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(121, 219, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 12, 26, 0.94), rgba(5, 8, 18, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.horizontal-intro {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--shell));
  max-width: var(--shell);
  margin: 0 auto;
}

.horizontal-intro h2 {
  margin: 12px 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 720px;
}

.horizontal-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
  padding: 0;
  will-change: transform;
}

.showcase-panel {
  width: 100%;
  min-height: 330px;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.showcase-panel span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  font-size: 0.74rem;
}

.showcase-panel h3 {
  margin: 14px 0 10px;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 1.9vw, 2.1rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.showcase-panel p {
  max-width: 480px;
  color: rgba(244, 247, 255, 0.76);
  line-height: 1.7;
}

.panel-a {
  background:
    radial-gradient(circle at 20% 20%, rgba(121, 219, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(14, 25, 48, 0.94), rgba(6, 12, 23, 0.98));
}

.panel-b {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 179, 107, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(33, 24, 42, 0.94), rgba(10, 13, 24, 0.98));
}

.panel-c {
  background:
    radial-gradient(circle at 18% 80%, rgba(149, 255, 183, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(14, 33, 38, 0.94), rgba(8, 14, 24, 0.98));
}

.panel-d {
  background:
    radial-gradient(circle at 80% 20%, rgba(95, 119, 255, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(18, 18, 47, 0.94), rgba(7, 10, 25, 0.98));
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track span::after {
  content: "•";
  color: var(--cyan);
}

.section {
  position: relative;
  z-index: 1;
  padding: 110px 0;
}

.section::before,
.horizontal-showcase::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(121, 219, 255, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 500ms ease;
}

.section.section-active::before,
.horizontal-showcase.section-active::before,
.hero.section-active::before {
  opacity: 1;
}

.services-section,
.reviews-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.section-head,
.systems-copy {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-label {
  color: var(--cyan);
}

.section-head h2,
.systems-copy h2,
.workflow-sticky h2,
.contact-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 15ch;
}

.section-head h2,
.systems-copy h2,
.workflow-sticky h2,
.contact-copy h2,
.horizontal-intro h2 {
  text-wrap: balance;
}

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

.service-card {
  min-height: 240px;
  padding: 24px;
}

.service-card,
.system-panel,
.workflow-card,
.review-card,
.meta-card {
  backdrop-filter: blur(12px);
}

.service-card span,
.system-number,
.workflow-card span,
.meta-card span,
.feed-card span,
.success-pill {
  color: var(--cyan);
}

.systems-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.systems-stack {
  display: grid;
  gap: 18px;
}

.system-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
}

.system-number {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(121, 219, 255, 0.08);
  border: 1px solid rgba(121, 219, 255, 0.16);
}

.workflow-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: start;
}

.workflow-sticky {
  position: sticky;
  top: 120px;
}

.workflow-steps {
  display: grid;
  gap: 18px;
}

.workflow-card {
  padding: 28px;
  min-height: 200px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.google-reviews-section {
  background: #ffffff;
  color: #252936;
}

.google-reviews-section::before {
  display: none;
}

.google-reviews-section .section-label {
  color: #1a73e8;
}

.google-reviews-section .section-head h2 {
  color: #071b3d;
  max-width: 24ch;
}

.reviews-frame {
  position: relative;
  padding: 0 38px 42px;
  background: #ffffff;
}

.reviews-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 0 0 20px;
  background: #ffffff;
  box-shadow: none;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card-head span {
  color: #5f6674;
}

.google-card {
  flex: 0 0 min(32vw, 430px);
  scroll-snap-align: start;
  min-height: 280px;
  padding: 26px 30px;
  border-radius: 7px;
  color: #30333b;
  background: #f4f4f6;
  box-shadow: none;
  border: 0;
}

.profile-card {
  align-content: center;
  display: grid;
  gap: 10px;
}

.profile-card strong {
  color: #30333b;
  font-size: 1.35rem;
}

.profile-card span {
  color: #5f6674;
}

.profile-card a {
  width: max-content;
  color: #1a73e8;
  font-weight: 900;
  text-decoration: none;
}

.review-card-head {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
}

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

.review-avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 800;
  background: #cf3b13;
  font-size: 1.35rem;
}

.review-photo {
  background:
    radial-gradient(circle at 50% 30%, #f6c86f 0 18%, transparent 19%),
    linear-gradient(135deg, #2a5b8e, #0e2245);
}

.avatar-lilac {
  color: #9ce5ff;
  background: #b98eab;
}

.avatar-red {
  background: #d12e05;
}

.google-logo {
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 43%, #fbbc05 0 62%, #ea4335 0 82%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
}

.stars {
  color: #ff8500;
  margin-top: 20px;
  font-size: 2.05rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.google-card p {
  margin: 20px 0 0;
  color: #30333b;
  font-size: 1.15rem;
  line-height: 1.42;
}

.review-nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #777d86;
  background: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.review-nav span {
  display: block;
  margin-top: -4px;
  font-size: 2.7rem;
  line-height: 1;
}

.review-prev {
  left: -6px;
}

.review-next {
  right: -6px;
}

.review-dots {
  position: absolute;
  left: 50%;
  bottom: 4px;
  display: inline-flex;
  gap: 14px;
  transform: translateX(-50%);
}

.review-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9c9c9;
}

.review-dots .active {
  background: #727272;
}

.camera-wall-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.camera-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  grid-auto-rows: minmax(220px, auto);
}

.camera-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(121, 219, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.camera-tile[data-feed-state="2"] .tile-scene::before {
  filter: hue-rotate(22deg) saturate(1.15);
  transform: scale(1.08) translate3d(-1.2%, -1.2%, 0);
}

.camera-tile[data-feed-state="3"] .tile-scene::before {
  filter: contrast(1.08) brightness(1.1);
  transform: scale(1.1) translate3d(1%, -0.8%, 0);
}

.camera-tile[data-feed-state="2"] .track-box,
.camera-tile[data-feed-state="3"] .track-box {
  border-color: rgba(149, 255, 183, 0.5);
}

.camera-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.tile-large {
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.tile-hud,
.tile-meta,
.tile-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.tile-hud {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
}

.tile-hud span:first-child {
  color: #ff8d8d;
}

.tile-overlay {
  position: absolute;
  inset: 14px 14px auto 14px;
  display: block;
  pointer-events: none;
}

.tile-stamp,
.signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(4, 10, 20, 0.58);
  border: 1px solid rgba(121, 219, 255, 0.16);
  color: rgba(244, 247, 255, 0.82);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.64rem;
  backdrop-filter: blur(10px);
}

.track-box {
  position: absolute;
  border: 1px solid rgba(121, 219, 255, 0.5);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: track-flicker 2.6s ease-in-out infinite;
}

.track-box span {
  position: absolute;
  top: -12px;
  left: 0;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.85);
  color: var(--cyan);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.box-a {
  top: 78px;
  left: 42%;
  width: 26%;
  height: 30%;
}

.box-b {
  top: 46%;
  left: 18%;
  width: 22%;
  height: 18%;
  animation-delay: 0.6s;
}

.box-c {
  top: 34%;
  left: 30%;
  width: 28%;
  height: 34%;
}

.box-d {
  top: 22%;
  left: 54%;
  width: 24%;
  height: 42%;
}

.box-e {
  top: 58%;
  left: 22%;
  width: 36%;
  height: 14%;
}

.signal-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tile-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feed-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.78) contrast(1.12) brightness(0.72);
  transform: scale(1.04);
  transition: filter 1000ms ease, opacity 1000ms ease, transform 1000ms ease;
}

.feed-video-vertical {
  object-position: center;
}

.tile-scene::before,
.tile-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tile-scene::before {
  background-size: cover;
  background-position: center;
  opacity: 0.82;
  transform: scale(1.04);
  animation: scene-drift 12s ease-in-out infinite alternate;
}

.tile-scene::after {
  z-index: 2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  background-size: 100% 5px, 100% 100%;
  opacity: 0.28;
  animation: scanfall 9s linear infinite;
}

.tile-scene::before {
  transition: transform 1000ms ease, filter 1000ms ease, opacity 1000ms ease;
}

.tile-scene.has-video::before {
  opacity: 0.5;
  mix-blend-mode: screen;
}

.camera-tile[data-feed-state="2"] .feed-video {
  filter: saturate(0.9) contrast(1.2) brightness(0.82) hue-rotate(14deg);
  transform: scale(1.08) translate3d(-1%, -1%, 0);
}

.camera-tile[data-feed-state="3"] .feed-video {
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.28) brightness(0.86);
  transform: scale(1.1) translate3d(1%, -0.8%, 0);
}

.scene-gate::before {
  background:
    radial-gradient(circle at 60% 30%, rgba(121, 219, 255, 0.24), transparent 20%),
    linear-gradient(180deg, rgba(20, 42, 64, 0.4), rgba(4, 9, 18, 0.92)),
    linear-gradient(90deg, transparent 0 20%, rgba(255, 255, 255, 0.06) 20% 21%, transparent 21% 79%, rgba(255, 255, 255, 0.06) 79% 80%, transparent 80%),
    linear-gradient(180deg, transparent 0 74%, rgba(255, 255, 255, 0.08) 74% 76%, transparent 76%);
}

.scene-lobby::before {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(29, 35, 56, 0.5), rgba(7, 10, 20, 0.92)),
    linear-gradient(90deg, transparent 0 30%, rgba(255, 255, 255, 0.08) 30% 31%, transparent 31% 69%, rgba(255, 255, 255, 0.08) 69% 70%, transparent 70%),
    linear-gradient(180deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 70%, transparent 70%);
}

.scene-warehouse::before {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 179, 107, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(54, 39, 28, 0.35), rgba(9, 12, 24, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(255, 255, 255, 0.05) 56px 58px),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 255, 255, 0.08) 72% 74%, transparent 74%);
}

.scene-parking::before {
  background:
    radial-gradient(circle at 38% 30%, rgba(149, 255, 183, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(17, 33, 44, 0.38), rgba(8, 12, 23, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255, 255, 255, 0.05) 80px 82px),
    linear-gradient(180deg, transparent 0 74%, rgba(255, 255, 255, 0.1) 74% 76%, transparent 76%);
}

.scene-command::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(121, 219, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(15, 24, 45, 0.5), rgba(4, 9, 18, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(255, 255, 255, 0.05) 48px 50px),
    repeating-linear-gradient(180deg, transparent 0 42px, rgba(255, 255, 255, 0.04) 42px 44px);
}

.tile-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  align-items: end;
}

.tile-meta strong,
.tile-meta span {
  display: block;
}

.tile-meta strong {
  font-size: 1rem;
}

.tile-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-feature,
.review-card {
  padding: 28px;
}

.review-feature span,
.review-card span,
.footer-note span {
  color: var(--muted);
}

.review-card strong {
  display: block;
  margin-top: 20px;
}

.brands-section {
  background: linear-gradient(180deg, rgba(121, 219, 255, 0.025), rgba(255, 255, 255, 0));
}

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

.partner-brand {
  min-height: 136px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(9, 15, 30, 0.78);
  border: 1px solid rgba(121, 219, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.partner-brand strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.partner-brand span {
  color: var(--muted);
  line-height: 1.55;
}

.installations-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 96px 0 120px;
  color: #081d45;
  background: #f2f5fb;
}

.installations-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54px;
  background: #e8f0ff;
}

.installations-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1380px);
  margin: 0 auto;
}

.installations-head {
  max-width: 780px;
  margin-bottom: 60px;
}

.installations-head h2 {
  margin: 0;
  color: #061b46;
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.installations-head p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #0f2a5c;
  font-size: clamp(1.15rem, 2.1vw, 1.9rem);
  line-height: 1.18;
}

.installations-carousel {
  position: relative;
}

.installations-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 22px;
}

.installations-track::-webkit-scrollbar {
  display: none;
}

.installation-card {
  flex: 0 0 min(46vw, 560px);
  position: relative;
  height: 282px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #d9dde8;
  box-shadow: 0 24px 54px rgba(16, 35, 72, 0.08);
}

.installation-card img,
.installation-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.install-video-card {
  flex-basis: min(26vw, 300px);
}

.install-portrait {
  flex-basis: min(28vw, 340px);
}

.install-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(8, 19, 46, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.install-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #0b234f;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(19, 38, 76, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.install-nav span {
  display: block;
  margin-top: -4px;
  font-size: 3rem;
  line-height: 1;
}

.install-prev {
  left: 28px;
}

.install-next {
  right: 28px;
}

.coverage-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.coverage-cloud span {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 15%, rgba(121, 219, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(12, 20, 39, 0.9), rgba(5, 9, 22, 0.94));
  border: 1px solid rgba(121, 219, 255, 0.16);
  box-shadow: var(--shadow);
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.map-copy h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.55rem);
  line-height: 1.05;
}

.map-address {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 13px 18px;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(121, 219, 255, 0.08);
  border: 1px solid rgba(121, 219, 255, 0.32);
  box-shadow: 0 16px 30px rgba(121, 219, 255, 0.12);
}

.map-frame {
  min-height: 380px;
  border-left: 1px solid rgba(121, 219, 255, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.06);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-meta {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-socials {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.social-link {
  padding: 14px;
  border-radius: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
}

.social-link.whatsapp .social-icon {
  color: var(--wa);
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.18);
}

.meta-card {
  padding: 24px;
}

.meta-card a,
.footer-note a {
  color: inherit;
  text-decoration: none;
}

.meta-card a:hover,
.footer-note a:hover {
  color: var(--cyan);
}

.contact-form {
  padding: 28px;
}

.form-sub {
  color: var(--muted);
  margin: 8px 0 22px;
}

.form-privacy {
  margin: 2px 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-input,
.form-select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-input:focus,
.form-select:focus {
  border-color: rgba(121, 219, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(121, 219, 255, 0.1);
}

.form-select option {
  background: #09101d;
}

.form-submit {
  width: 100%;
  border: 0;
  padding: 16px 20px;
  cursor: pointer;
}

.form-success {
  display: none;
  padding: 48px 20px;
  text-align: center;
}

.success-pill {
  justify-content: center;
  margin-bottom: 10px;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

.field-tip {
  margin-top: 8px;
  color: #ff9ea7;
  font-size: 0.84rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 56px;
}

.section,
.horizontal-showcase {
  content-visibility: visible;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(330px, 0.9fr);
  gap: 34px;
  align-items: start;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 219, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(13, 21, 42, 0.92), rgba(5, 9, 22, 0.96));
  border: 1px solid rgba(121, 219, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 440px;
}

.footer-note {
  display: grid;
  justify-items: stretch;
  gap: 10px;
  color: var(--muted);
}

.footer-kicker {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.footer-contact-row span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(121, 219, 255, 0.08);
  border: 1px solid rgba(121, 219, 255, 0.16);
}

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

.footer-contact-row:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(121, 219, 255, 0.12);
  color: rgba(143, 157, 183, 0.82);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms cubic-bezier(0.21, 1, 0.34, 1), transform 700ms cubic-bezier(0.21, 1, 0.34, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow var(--ease), border-color var(--ease);
}

.tilt-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.45);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(149, 255, 183, 0.52);
  }
  60% {
    box-shadow: 0 0 0 14px rgba(149, 255, 183, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes head-sweep {
  0%,
  100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes beam-sweep {
  0%,
  100% {
    transform: rotate(-10deg);
    opacity: 0.62;
  }
  50% {
    transform: rotate(18deg);
    opacity: 0.95;
  }
}

@keyframes lens-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes split-rise {
  from {
    opacity: 0;
    transform: translateY(110%);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes scene-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes scanfall {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(20px);
  }
}

@keyframes track-flicker {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.42;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    display: flex;
    justify-content: space-between;
    height: 96px;
  }

  .site-header.scrolled .site-nav {
    height: 90px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    justify-self: end;
  }

  .top-contact {
    gap: 12px;
    font-size: 0.88rem;
  }

  .top-contact a:not(:last-child) {
    padding-right: 12px;
  }

  .hero-shell,
  .systems-shell,
  .workflow-shell,
  .contact-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

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

  .reviews-carousel {
    gap: 22px;
  }

  .google-card {
    flex-basis: min(46vw, 420px);
  }

  .installations-track {
    gap: 22px;
  }

  .camera-wall {
    grid-template-columns: 1fr 1fr;
  }

  .tile-wide {
    grid-column: span 2;
  }

  .review-feature {
    grid-column: 1 / -1;
  }

  .workflow-sticky {
    position: static;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 190px;
  }

  .hero-shell,
  .services-grid,
  .reviews-grid,
  .camera-wall {
    grid-template-columns: 1fr;
  }

  .horizontal-track {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    min-height: 300px;
  }

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

  .reviews-carousel {
    padding: 18px;
  }

  .google-card {
    flex-basis: min(72vw, 360px);
  }

  .hero-home-scene {
    min-height: 470px;
  }

  .hero-bullet-camera {
    right: -78px;
    width: min(92%, 560px);
  }

  .installations-section {
    padding: 76px 0 96px;
  }

  .installations-head {
    margin-bottom: 36px;
  }

  .installations-track {
    gap: 18px;
    padding: 0 8px;
  }

  .installation-card {
    flex-basis: 82vw;
    height: 230px;
  }

  .install-video-card {
    flex-basis: 72vw;
  }

  .install-portrait {
    flex-basis: 70vw;
  }

  .install-nav {
    width: 46px;
    height: 46px;
  }

  .install-nav span {
    font-size: 2.3rem;
  }

  .install-prev {
    left: 8px;
  }

  .install-next {
    right: 8px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 330px;
    border-left: 0;
    border-top: 1px solid rgba(121, 219, 255, 0.14);
  }

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

  .tile-large {
    grid-row: auto;
  }

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

  .ptz-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .metrics-ribbon,
  .feed-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-height: 74px;
  }

  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

  .header-top {
    background: rgba(8, 18, 45, 0.98);
  }

  .header-top-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .top-hours {
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    background: linear-gradient(90deg, #d82d34, #aa1f2c);
    font-size: 0.78rem;
    text-align: center;
  }

  .top-contact {
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    gap: 10px;
    font-size: 0.78rem;
  }

  .top-contact a:first-child,
  .top-contact a:nth-child(3),
  .top-socials {
    display: none;
  }

  .site-nav {
    width: calc(100% - 20px);
    height: 82px;
    gap: 12px;
  }

  .hamburger {
    display: grid !important;
    place-items: center;
    position: fixed;
    top: 92px;
    right: auto;
    left: min(calc(100vw - 64px), 326px);
    z-index: 1301;
    border-color: rgba(121, 219, 255, 0.35);
    background: linear-gradient(145deg, #e43845, #9e1724);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transform: none;
  }

  .hamburger span {
    background: #ffffff;
  }

  .wa-float span {
    display: none;
  }

  .brand {
    min-height: 58px;
  }

  .brand-mark {
    width: 64px;
    min-height: 58px;
  }

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

  .brand-copy {
    min-width: 128px;
    padding: 10px 12px;
  }

  .brand-copy strong {
    font-size: 1.7rem;
  }

  .brand-copy span {
    font-size: 0.66rem;
  }

  .mobile-menu {
    top: 156px;
  }

  .hero {
    padding-top: 170px;
    background: #ffffff;
  }

  .sound-copy span {
    display: none;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions,
  .hero-stats,
  .form-row,
  .quick-reach,
  .contact-socials {
    grid-template-columns: 1fr;
  }

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

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  .hero-shell {
    overflow: hidden;
  }

  .hero-copy,
  .hero-text,
  .hero-actions,
  .quick-reach,
  .hero-stats,
  .hero-note {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-text {
    max-width: 32ch;
    font-size: 1rem;
  }

  .hero-home-scene {
    min-height: 390px;
  }

  .home-building {
    left: 6%;
    right: 4%;
    bottom: 46px;
    height: 178px;
  }

  .home-building::before {
    top: -42px;
    height: 62px;
  }

  .home-building span {
    top: 58px;
    height: 66px;
  }

  .home-building span:nth-child(2) {
    top: 78px;
    height: 100px;
  }

  .home-gate {
    height: 68px;
  }

  .hero-bullet-camera {
    top: 48px;
    right: -128px;
    width: 520px;
    transform: scale(0.72) rotate(-2deg);
    transform-origin: top right;
  }

  .hero-scan-card {
    left: 16px;
    bottom: 90px;
  }

  .hero-proof-strip {
    display: grid;
    gap: 7px;
    font-size: 0.86rem;
  }

  .hero-proof-strip span:not(:last-child)::after {
    content: "";
    margin: 0;
  }

  .split-line {
    overflow: visible;
  }

  .horizontal-showcase {
    height: auto;
    padding: 90px 0;
  }

  .horizontal-sticky {
    position: relative;
    height: auto;
    display: block;
    background: transparent;
    border: 0;
  }

  .horizontal-intro {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 24px;
    width: min(calc(100% - 24px), var(--shell));
  }

  .horizontal-track {
    display: grid;
    width: min(calc(100% - 24px), var(--shell));
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .showcase-panel {
    width: 100%;
    min-height: auto;
    scroll-snap-align: none;
  }

  .reviews-carousel {
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .reviews-frame {
    padding-left: 22px;
    padding-right: 22px;
  }

  .google-card {
    flex-basis: 78vw;
    min-height: 260px;
  }

  .review-nav {
    width: 38px;
    height: 38px;
  }

  .review-prev {
    left: -2px;
  }

  .review-next {
    right: -2px;
  }

  .installations-shell {
    width: min(calc(100% - 24px), 1380px);
  }

  .installations-head h2 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .installations-head p {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .partner-brands-grid {
    grid-template-columns: 1fr;
  }

  .map-copy {
    padding: 22px;
  }

  .map-frame {
    min-height: 300px;
  }

  .map-button {
    width: 100%;
  }

  .hero-stage,
  .service-card,
  .system-panel,
  .workflow-card,
  .review-feature,
  .review-card,
  .meta-card,
  .contact-form {
    padding: 22px;
  }

  .camera-core {
    height: 250px;
    margin: 54px auto 34px;
  }

  .camera-head {
    width: 156px;
    height: 108px;
  }

  .camera-beam {
    width: 230px;
    height: 180px;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    padding: 13px;
  }

  .sound-toggle {
    left: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .cursor-label {
    display: none;
  }

  .footer-note {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    cursor: auto;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .tilt-card,
  .reveal {
    transform: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
