:root {
  --bg: #0b0d15;
  --bg-2: #151722;
  --panel: rgba(24, 26, 38, 0.62);
  --panel-2: rgba(17, 19, 30, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(132, 136, 255, 0.46);
  --text: #f6f6fb;
  --muted: #9b9ca8;
  --accent: #8687ff;
  --accent-2: #6f72ef;
  --warning: #b8a3ff;
  --danger: #df7b83;
  --max: 1240px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(8, 10, 18, 0.2), rgba(8, 10, 18, 0.96)),
    linear-gradient(135deg, rgba(91, 169, 218, 0.08), transparent 34%),
    linear-gradient(220deg, rgba(92, 96, 130, 0.14), transparent 42%),
    #090b13;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before { content: none; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: translateZ(0);
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, #25ff9f, var(--accent), #f7a928);
  box-shadow: 0 0 18px rgba(134, 135, 255, 0.72);
}
.wrap { width: min(var(--max), 92vw); margin: 0 auto; }
.section { padding: 84px 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b0d15;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 15, 25, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  width: min(var(--max), 92vw);
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; flex: 0 1 330px; }
.brand-mark {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  background: #000;
  border: 1px solid rgba(91, 169, 218, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-text strong,
.brand-text span { display: block; line-height: 1.15; }
.brand-text strong {
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}
.brand-text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  text-transform: none;
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-links a,
.nav-dropdown__button,
.header-cta { color: #dbe6ea; transition: color 180ms ease; }
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown:hover .nav-dropdown__button,
.header-cta:hover { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown__button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  z-index: 60;
  display: grid;
  min-width: 280px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(16, 19, 30, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  --hero-x: 0;
  --hero-y: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.08), rgba(9, 11, 18, 0.84)),
    linear-gradient(90deg, transparent 0 17%, rgba(134, 135, 255, 0.1) 17% 18%, transparent 18% 100%);
  pointer-events: none;
  transform: translate3d(calc(var(--hero-x) * -12px), calc(var(--hero-y) * -12px), 0);
  transition: transform 240ms ease;
}
.hero-shell {
  width: min(var(--max), 92vw);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.hero-shell-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  justify-items: stretch;
  text-align: left;
}
.hero-shell-split .hero-copy {
  justify-items: start;
  align-content: center;
}
.hero-shell-split .hero-badge,
.hero-shell-split .lead {
  justify-self: start;
}
.hero-shell > *,
.steps-layout > *,
.faq-layout > *,
.split-panel > * { min-width: 0; }
.hero-copy {
  display: grid;
  width: 100%;
  gap: 20px;
  justify-items: center;
  min-width: 0;
  animation: hero-copy-in 620ms ease both;
}

.hero-badge,
.domain-label,
.kicker {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  padding: 9px 16px;
  border: 1px solid rgba(134, 135, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  white-space: normal;
}
.hero-photo {
  min-height: calc(100vh - 86px);
  background:
    radial-gradient(circle at 80% 18%, rgba(134, 135, 255, 0.18), transparent 30%),
    linear-gradient(140deg, rgba(11, 13, 21, 0.98), rgba(16, 23, 34, 0.95) 54%, rgba(7, 9, 16, 0.98));
}

h1, h2 {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: none;
}
h1 {
  max-width: min(1180px, 100%);
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 3.05rem);
  line-height: 1.08;
}
h3 { margin: 0 0 9px; font-size: 1.04rem; }
p { margin: 0; }
.lead,
.section-head p,
.card p,
.steps-copy,
.faq-list p,
.footer-note,
.footer-address span,
.footer-links a,
.footer-contactline span { color: var(--muted); }
.lead {
  justify-self: center;
  width: 100%;
  max-width: 760px;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
}
.lead,
.card p,
.step-item p,
.faq-list p { overflow-wrap: anywhere; }
.section-head { max-width: 850px; margin-bottom: 28px; }
.kicker { margin: 0 0 10px; }

.hero-points,
.grid-3,
.benefits-grid,
.domain-grid,
.pricing-grid,
.footer-grid { display: grid; gap: 16px; }
.hero-points { width: 100%; }
.hero-points,
.grid-3,
.benefits-grid,
.domain-grid,
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.15fr 0.85fr 0.85fr 0.9fr; align-items: start; }

.point-card,
.card,
.step-item,
.faq-list details,
.steps-copy,
.check-panel {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 18px;
  box-shadow: var(--shadow);
  contain: paint;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
:where(.point-card, .card, .step-item, .faq-list details, .steps-copy, .check-panel, .metric-card, .work-card, .contact-modal__facts li)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(134, 135, 255, 0.2), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
:where(.point-card, .card, .step-item, .faq-list details, .steps-copy, .check-panel, .metric-card, .work-card, .contact-modal__facts li).is-spotlit::before {
  opacity: 1;
}
:where(.point-card, .card, .step-item, .faq-list details, .steps-copy, .check-panel, .metric-card, .work-card, .contact-modal__facts li).is-spotlit {
  border-color: rgba(134, 135, 255, 0.52);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}
:where(.point-card, .card, .step-item, .faq-list details, .steps-copy, .check-panel, .metric-card, .work-card, .contact-modal__facts li) > * {
  position: relative;
  z-index: 1;
}
.point-card { width: 100%; min-width: 0; padding: 16px; min-height: 118px; text-align: left; }
.point-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-family: "Russo One", sans-serif;
  font-size: 1rem;
}
.point-card span { color: var(--muted); font-size: 0.88rem; overflow-wrap: anywhere; }
.card { padding: 22px; }
.legal-page {
  max-width: 860px;
}
.legal-page p {
  color: var(--muted);
  font-size: 1.03rem;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(134, 135, 255, 0.7);
  border-radius: 999px;
  background: linear-gradient(180deg, #8f90ff, #696df0);
  color: #ffffff;
  font-weight: 800;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 22%, rgba(255, 255, 255, 0.36) 42%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}
.btn:hover {
  transform: translate3d(0, -2px, 0);
  background: transparent;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(105, 109, 240, 0.28);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translate3d(0, 0, 0) scale(0.98); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.14);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(134, 135, 255, 0.08); }

.hero-visual,
.tek-map {
  display: none;
  width: min(760px, 100%);
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 15, 19, 0.94), rgba(12, 21, 26, 0.98));
  background-size: 48px 48px, 48px 48px, auto;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0.92;
}
.radar {
  position: absolute;
  inset: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 169, 218, 0.24);
}
.radar span {
  position: absolute;
  inset: calc(var(--i, 0) * 54px);
  border: 1px solid rgba(127, 191, 159, 0.18);
}
.radar span:nth-child(1) { --i: 1; }
.radar span:nth-child(2) { --i: 2; }
.radar span:nth-child(3) { --i: 3; }
.radar-core {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: #05090c;
  color: var(--accent);
  font-family: "Russo One", sans-serif;
}
.signal-card {
  position: absolute;
  width: 230px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 9, 12, 0.88);
}
.signal-card b,
.tek-node b { display: block; color: var(--text); }
.signal-card span,
.tek-node span { color: var(--muted); font-size: 0.86rem; }
.signal-card-a { left: 28px; top: 34px; }
.signal-card-b { right: 28px; top: 42%; }
.signal-card-c { left: 44px; bottom: 34px; }

.domain-card { min-height: 290px; display: flex; flex-direction: column; }
.domain-card h3 { margin-top: 12px; font-size: 1.28rem; }
.domain-card-active { border-color: var(--line-strong); }
.domain-link { margin-top: auto; color: var(--accent-2); font-weight: 800; }
.hover-summary {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  isolation: isolate;
}
.hover-summary__label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(134, 135, 255, 0.58);
  border-radius: 999px;
  background: linear-gradient(180deg, #8f90ff, #696df0);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(105, 109, 240, 0.22);
}
.hover-summary__tip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: min(300px, 78vw);
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(246, 248, 252, 0.96);
  color: #223044;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.24;
  text-align: left;
  box-shadow: 0 18px 38px rgba(4, 8, 20, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}
.hover-summary__tip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  background: rgba(246, 248, 252, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -5px) rotate(45deg);
}
.hover-summary:hover .hover-summary__tip,
.hover-summary:focus-within .hover-summary__tip,
.direction-card:hover .hover-summary__tip,
.direction-card:focus-visible .hover-summary__tip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.hover-summary--compact {
  margin-top: 8px;
}
.hover-summary--compact .hover-summary__label {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.78rem;
}
.muted-link { color: var(--muted); }
.service-card,
.benefit-card { min-height: 176px; }
.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.direction-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.direction-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--warning));
  opacity: 0.82;
}
.direction-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(134, 135, 255, 0.55);
  background: linear-gradient(180deg, rgba(35, 38, 58, 0.76), var(--panel-2));
}
.direction-card h3 {
  margin-top: 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.04;
}
.direction-photo {
  position: relative;
  display: block;
  height: 220px;
  margin: -4px -4px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.direction-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 36%, rgba(8, 11, 18, 0.78)),
    radial-gradient(circle at 18% 22%, rgba(37, 255, 159, 0.18), transparent 34%);
}
.direction-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}
.direction-card:hover .direction-photo img {
  transform: scale(1.08);
}
.direction-domain {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(37, 255, 159, 0.34);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.76);
  color: #d9ffe9;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.direction-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}
.direction-chips span {
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(134, 135, 255, 0.24);
  border-radius: 999px;
  background: rgba(134, 135, 255, 0.1);
  color: #d8d9ff;
  font-size: 0.82rem;
  font-weight: 850;
}
.mini-list {
  display: grid;
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}
.mini-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 2px;
  background: var(--accent);
}
.photo-stack,
.service-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
}
.photo-stack img,
.service-photo img {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}
.photo-stack__main {
  width: 82%;
  height: 390px;
  margin-left: auto;
}
.photo-stack__small {
  position: absolute;
  width: 46%;
  height: 170px;
}
.photo-stack__small-a {
  left: 0;
  bottom: 76px;
}
.photo-stack__small-b {
  right: 24px;
  bottom: 0;
}
.service-photo {
  display: grid;
  align-items: center;
  transform: translate3d(calc(var(--hero-x) * 18px), calc(var(--hero-y) * 14px), 0);
  transition: transform 260ms ease;
}
.service-photo img {
  width: 100%;
  min-height: 430px;
  transition: transform 700ms ease, filter 700ms ease;
}
.hero:hover .service-photo img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}
.ai-vision {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(32, 255, 155, 0.18), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(134, 135, 255, 0.18), transparent 26%),
    rgba(10, 13, 22, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}
.vision-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: stretch;
}
.vision-track {
  position: relative;
  min-height: 540px;
}
.vision-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 0, 0) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
}
.vision-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}
.vision-controls {
  display: grid;
  gap: 10px;
  align-content: center;
}
.vision-controls button {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}
.vision-controls button span {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}
.vision-controls button:hover,
.vision-controls button.is-active {
  border-color: rgba(38,255,159,0.44);
  background: rgba(38,255,159,0.08);
  color: var(--text);
  transform: translate3d(-4px, 0, 0);
}
.ai-vision img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.88) contrast(1.08);
}
.ai-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32,255,155,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32,255,155,0.07) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(6, 9, 15, 0.72));
  background-size: 42px 42px, 42px 42px, auto;
  pointer-events: none;
}
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(32,255,155,0.9), transparent);
  box-shadow: 0 0 26px rgba(32,255,155,0.72);
  animation: ai-scan 4.8s linear infinite;
}
.ai-box {
  position: absolute;
  display: grid;
  align-content: start;
  min-width: 148px;
  min-height: 88px;
  padding: 9px 10px;
  border: 2px solid rgba(38, 255, 159, 0.86);
  border-radius: 14px;
  color: #dfffee;
  text-shadow: 0 1px 12px rgba(0,0,0,0.68);
  box-shadow: 0 0 0 1px rgba(38,255,159,0.18), 0 0 28px rgba(38,255,159,0.22);
  animation: ai-float 5s ease-in-out infinite;
}
.ai-box::before,
.ai-box::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(38,255,159,0.96);
}
.ai-box::before {
  left: -2px;
  top: -2px;
  border-left: 4px solid;
  border-top: 4px solid;
  border-radius: 12px 0 0 0;
}
.ai-box::after {
  right: -2px;
  bottom: -2px;
  border-right: 4px solid;
  border-bottom: 4px solid;
  border-radius: 0 0 12px 0;
}
.ai-box b {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}
.ai-box small {
  margin-top: 4px;
  color: rgba(223, 255, 238, 0.78);
  font-size: 0.72rem;
}
.ai-box-person { left: 13%; top: 24%; }
.ai-box-vehicle {
  right: 12%;
  top: 36%;
  min-width: 172px;
  min-height: 100px;
  animation-delay: -1.4s;
}
.ai-box-risk {
  left: 22%;
  bottom: 22%;
  border-color: rgba(255, 214, 102, 0.9);
  box-shadow: 0 0 0 1px rgba(255,214,102,0.18), 0 0 28px rgba(255,214,102,0.2);
  animation-delay: -2.7s;
}
.ai-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #25ff9f;
  box-shadow: 0 0 24px rgba(37,255,159,0.86);
  animation: ai-pulse 1.7s ease-in-out infinite;
}
.ai-dot-a { left: 62%; top: 25%; }
.ai-dot-b { left: 43%; top: 67%; animation-delay: -0.8s; }
.vision-domain {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(37, 255, 159, 0.34);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.78);
  color: #d9ffe9;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
}
.savings-visual {
  position: absolute;
  inset: 70px 72px auto auto;
  width: 250px;
  height: 210px;
  border-radius: 28px;
  overflow: clip;
  background: rgba(8, 11, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 52px rgba(0,0,0,0.34);
  backdrop-filter: blur(8px);
}
.saving-label {
  position: absolute;
  left: 18px;
  top: 16px;
  display: grid;
  gap: 2px;
  min-width: 102px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(8, 11, 18, 0.82);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  z-index: 3;
}
.saving-label b {
  color: #25ff9f;
  font-size: 1.8rem;
  line-height: 1;
}
.saving-label small {
  color: var(--muted);
  font-weight: 900;
}
.piggy {
  position: absolute;
  left: 58px;
  top: 104px;
  width: 145px;
  height: 82px;
  border-radius: 70px 78px 58px 64px;
  background: linear-gradient(135deg, #ffb6d1, #ff6ea6);
  box-shadow: 0 0 40px rgba(255, 110, 166, 0.28);
}
.piggy::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 13px;
  width: 48px;
  height: 8px;
  border-radius: 999px;
  background: rgba(68, 20, 43, 0.4);
}
.piggy-ear {
  position: absolute;
  left: 32px;
  top: -18px;
  width: 34px;
  height: 34px;
  border-radius: 10px 18px 10px 18px;
  background: #ff88b8;
  transform: rotate(14deg);
}
.piggy-nose {
  position: absolute;
  right: -6px;
  top: 28px;
  width: 34px;
  height: 28px;
  border-radius: 999px;
  background: #ffd1df;
}
.piggy-nose::before,
.piggy-nose::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 5px;
  height: 8px;
  border-radius: 999px;
  background: #a54b70;
}
.piggy-nose::before { left: 10px; }
.piggy-nose::after { right: 10px; }
.piggy-leg {
  position: absolute;
  bottom: -13px;
  width: 24px;
  height: 22px;
  border-radius: 0 0 10px 10px;
  background: #ff7ead;
}
.piggy-leg-a { left: 34px; }
.piggy-leg-b { right: 34px; }
.coin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe28a, #f7a928);
  color: #5f3a00;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(247,169,40,0.26);
  animation: coin-drop 3.2s ease-in-out infinite;
  z-index: 2;
}
.coin-a { left: 132px; top: 18px; }
.coin-b { right: 34px; top: 36px; animation-delay: -1.1s; }
.coin-c { left: 158px; top: 78px; animation-delay: -2s; }
.robot-photo-panel {
  position: absolute;
  right: 72px;
  top: 58px;
  width: 220px;
  height: 300px;
  overflow: clip;
  border: 1px solid rgba(134, 135, 255, 0.36);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(37,255,159,0.16), transparent 28%),
    rgba(8, 11, 18, 0.78);
  box-shadow: 0 24px 58px rgba(0,0,0,0.38);
  backdrop-filter: blur(10px);
  animation: ai-float 5.8s ease-in-out infinite;
}
.robot-head {
  position: absolute;
  left: 50%;
  top: 40px;
  width: 118px;
  height: 86px;
  border: 4px solid #8f90ff;
  border-radius: 28px;
  transform: translateX(-50%);
}
.robot-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 4px;
  height: 26px;
  background: #8f90ff;
}
.robot-head i {
  position: absolute;
  top: 34px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #25ff9f;
  box-shadow: 0 0 18px rgba(37,255,159,0.72);
}
.robot-head i:first-child { left: 32px; }
.robot-head i:last-child { right: 32px; }
.robot-body {
  position: absolute;
  left: 50%;
  bottom: 76px;
  width: 132px;
  height: 86px;
  border-radius: 34px 34px 22px 22px;
  background: linear-gradient(180deg, rgba(143,144,255,0.28), rgba(37,255,159,0.12));
  border: 1px solid rgba(255,255,255,0.14);
  transform: translateX(-50%);
}
.robot-wave {
  position: absolute;
  left: 22px;
  bottom: 130px;
  width: 42px;
  height: 72px;
  border-left: 5px solid #25ff9f;
  border-top: 5px solid #25ff9f;
  border-radius: 34px 0 0 0;
  transform-origin: bottom right;
  animation: robot-wave 1.8s ease-in-out infinite;
}
.robot-claim {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: grid;
  gap: 2px;
  width: 210px;
  padding: 13px 15px;
  border: 1px solid rgba(37,255,159,0.34);
  border-radius: 18px;
  background: rgba(8, 11, 18, 0.86);
  color: var(--text);
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
.robot-claim b {
  color: #25ff9f;
  font-size: 1.7rem;
  line-height: 1;
}
.robot-claim small {
  color: var(--muted);
  font-weight: 800;
}
.ai-bot {
  position: absolute;
  right: 24px;
  bottom: 102px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(134, 135, 255, 0.44);
  border-radius: 24px;
  background: rgba(9, 12, 22, 0.78);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35), inset 0 0 28px rgba(134,135,255,0.12);
  backdrop-filter: blur(8px);
  animation: ai-float 6.2s ease-in-out infinite reverse;
}
.ai-bot svg {
  width: 58px;
  height: 58px;
}
.ai-bot rect,
.ai-bot circle,
.ai-bot path {
  fill: none;
  stroke: #8f90ff;
  stroke-width: 5;
  stroke-linecap: round;
}
.ai-bot strong {
  position: absolute;
  right: 12px;
  top: 10px;
  color: #25ff9f;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}
.ai-vision figcaption {
  position: absolute;
  left: 22px;
  right: 132px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(8, 11, 18, 0.82);
  backdrop-filter: blur(10px);
}
.ai-vision figcaption strong {
  color: var(--text);
}
.ai-vision figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}
.vision-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}
.vision-services em {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(37, 255, 159, 0.1);
  color: #cffff0;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 850;
}
.ai-vision figcaption a {
  width: fit-content;
  margin-top: 8px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 900;
}
.ai-vision figcaption .hover-summary__tip {
  left: 0;
  bottom: calc(100% + 10px);
  transform: translate(0, 8px);
}
.ai-vision figcaption .hover-summary:hover .hover-summary__tip,
.ai-vision figcaption .hover-summary:focus-within .hover-summary__tip {
  transform: translate(0, 0);
}
.ai-vision figcaption .hover-summary__tip::after {
  left: 22px;
}
@keyframes ai-scan {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(410px); opacity: 0; }
}
@keyframes ai-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes ai-pulse {
  0%, 100% { transform: scale(0.78); opacity: 0.58; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes coin-drop {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(18px) rotate(18deg); }
}
@keyframes robot-wave {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(12deg); }
}
.compact-steps {
  max-width: 920px;
  margin: 0 auto;
}
.work-carousel {
  display: grid;
  gap: 16px;
  --work-progress: 0;
}
.work-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(720px, 86%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 18px;
  scrollbar-color: rgba(134,135,255,0.55) rgba(255,255,255,0.06);
}
.work-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-2);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.work-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(134, 135, 255, 0.55);
}
.cctv-frame {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #050812;
}
.cctv-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.86);
  transition: transform 700ms ease, filter 700ms ease;
}
.work-card:hover .cctv-frame img { transform: scale(1.035); }
.cctv-frame-real img {
  object-fit: contain;
  filter: none;
  background: #050812;
}
.cctv-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(92, 126, 255, 0.74);
  pointer-events: none;
}
.cctv-time,
.cctv-mode,
.cctv-camera {
  position: absolute;
  z-index: 2;
  color: rgba(255,255,255,0.9);
  font-family: "Courier New", monospace;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.cctv-time {
  left: 22px;
  top: 18px;
  font-size: clamp(1rem, 2.2vw, 1.85rem);
}
.cctv-mode {
  right: 24px;
  top: 18px;
  font-size: clamp(0.9rem, 1.6vw, 1.28rem);
}
.cctv-camera {
  right: 26px;
  bottom: 22px;
  font-size: clamp(1rem, 2vw, 1.6rem);
}
.cctv-box {
  position: absolute;
  z-index: 3;
  border: 2px solid #1cff38;
  color: #1cff38;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0,0,0,0.72);
}
.cctv-box::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -24px;
  height: 24px;
  background: rgba(28,255,56,0.18);
}
.box-person { left: 42%; top: 27%; width: 78px; height: 118px; }
.box-person-large { left: 34%; top: 30%; width: 100px; height: 205px; }
.box-person-side { left: 8%; bottom: 13%; width: 54px; height: 154px; }
.box-car { right: 12%; bottom: 25%; width: 150px; height: 64px; }
.box-door { left: 46%; top: 25%; width: 86px; height: 150px; }
.box-risk-small { right: 18%; top: 36%; width: 130px; height: 80px; border-color: #ffe268; color: #ffe268; }
.box-line {
  left: -3%;
  right: -3%;
  top: 58%;
  width: auto;
  height: 0;
  border-color: #5c7eff;
  transform: rotate(4deg);
}
.box-line::before { display: none; }
.work-card__body {
  display: grid;
  gap: 8px;
  padding: 20px 22px 24px;
}
.work-card__body h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.work-card__body p {
  color: var(--muted);
}
.work-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.work-controls button {
  min-width: 92px;
  padding: 12px 16px;
  border: 1px solid rgba(134, 135, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}
.work-controls button:hover:not(:disabled) {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(134, 135, 255, 0.72);
  background: rgba(134, 135, 255, 0.1);
}
.work-controls button:disabled {
  opacity: 0.42;
  cursor: default;
}
.work-indicators {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: -8px;
}
.work-indicators::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: min(240px, 46vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.work-indicators::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: min(240px, 46vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #25ff9f);
  transform: scaleX(var(--work-progress, 0));
  transform-origin: left center;
}
.work-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 180ms ease, background 180ms ease;
}
.work-indicators span.is-active {
  width: 22px;
  background: var(--accent);
}
.capability-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.capability-marquee span {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(134, 135, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8d9ff;
  font-weight: 800;
  font-size: 0.9rem;
}
.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.media-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-2);
  box-shadow: var(--shadow);
}
.media-card-large {
  grid-row: span 2;
  min-height: 536px;
}
.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}
.media-card:hover img {
  transform: scale(1.06);
}
.media-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(8, 11, 18, 0.78);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.scenario-card {
  min-height: 230px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}
.scenario-card img {
  width: calc(100% + 44px);
  max-width: none;
  height: 138px;
  margin: -22px -22px 18px;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.9) contrast(1.04);
}
.scenario-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(134, 135, 255, 0.42);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.metric-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(35, 38, 58, 0.72), rgba(17, 19, 30, 0.82));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.metric-card strong {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}
.metric-card span {
  margin-top: 10px;
  color: var(--muted);
}

.section-light {
  background:
    linear-gradient(90deg, rgba(226, 180, 95, 0.08), transparent 42%),
    #101820;
}
.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}
.check-panel { padding: 24px; }
.check-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--accent-2);
}

.benefit-icon,
.idx {
  display: grid;
  place-items: center;
  border: 1px solid rgba(127, 191, 159, 0.32);
  background: rgba(127, 191, 159, 0.1);
  color: var(--accent-2);
  font-weight: 800;
}
.benefit-icon { width: 30px; height: 30px; margin-bottom: 12px; }
.steps-layout { display: grid; grid-template-columns: 0.62fr 1fr; gap: 18px; align-items: start; }
.steps-copy { position: sticky; top: 92px; padding: 22px; }
.steps-list { display: grid; gap: 12px; }
.step-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 16px;
}
.idx { width: 34px; height: 34px; }
.step-item p { color: var(--muted); font-size: 0.9rem; }

.faq-section { background: #080d11; }
.faq-layout { display: grid; grid-template-columns: 0.95fr 1fr; gap: 28px; align-items: center; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 15px 16px; box-shadow: none; }
.faq-list summary {
  position: relative;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 34px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(134, 135, 255, 0.3);
  border-radius: 999px;
  color: var(--accent);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease, background 180ms ease;
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(134, 135, 255, 0.12);
}
.faq-list details[open],
.faq-list details.is-open {
  border-color: rgba(134, 135, 255, 0.38);
}
.faq-list p {
  margin-top: 10px;
  animation: faq-answer-in 220ms ease both;
}
.faq-heading { display: grid; gap: 16px; }

.tek-map { min-height: 560px; }
.tek-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warning), var(--accent), transparent);
  transform-origin: center;
}
.line-a { width: 78%; left: 10%; top: 48%; transform: rotate(-18deg); }
.line-b { width: 70%; left: 16%; top: 52%; transform: rotate(29deg); }
.tek-node {
  position: absolute;
  width: 150px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 13, 0.9);
}
.node-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(226, 180, 95, 0.55);
}
.node-a { left: 32px; top: 48px; }
.node-b { right: 36px; top: 82px; }
.node-c { left: 56px; bottom: 70px; border-color: rgba(214, 108, 95, 0.45); }
.node-d { right: 52px; bottom: 54px; border-color: rgba(127, 191, 159, 0.45); }

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #04080b;
  padding: 32px 0 38px;
}
.footer-title {
  margin: 0 0 13px;
  color: var(--text);
  font-family: "Russo One", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.footer-brandbox,
.footer-links,
.footer-contactlist,
.footer-address { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--accent); }

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 520ms ease, transform 520ms ease;
}
.js-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}
.reveal.in-view { opacity: 1; transform: translate3d(0, 0, 0); }
.js-ready .reveal :where(.card, .point-card, .step-item, .metric-card, .work-card, .faq-list details, .check-panel) {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 440ms ease, transform 440ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.js-ready .reveal.in-view :where(.card, .point-card, .step-item, .metric-card, .work-card, .faq-list details, .check-panel) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}
.js-ready .reveal.in-view :where(.card, .point-card, .step-item, .metric-card, .work-card, .faq-list details, .check-panel).is-spotlit {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, -3px, 0);
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes faq-answer-in {
  from { opacity: 0; transform: translate3d(0, -4px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes carousel-card-depth {
  0%, 100% { scale: 0.96; opacity: 0.72; }
  50% { scale: 1; opacity: 1; }
}
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  .work-card {
    animation: carousel-card-depth auto linear both;
    animation-timeline: view(inline);
  }
}

@media (prefers-reduced-motion: reduce) {
  html, body { scroll-behavior: auto; }
  .scroll-progress span,
  .reveal,
  .js-ready .reveal,
  .js-ready .reveal :where(.card, .point-card, .step-item, .metric-card, .work-card, .faq-list details, .check-panel),
  .btn,
  .nav-links a::after,
  .contact-modal,
  .contact-toast,
  .service-photo,
  .service-photo img,
  .cctv-frame img,
  .work-card,
  .work-indicators span,
  .faq-list p,
  .faq-list summary::after {
    transition: none;
  }
  .direction-card:hover,
  .btn:hover,
  .scenario-card:hover,
  .media-card:hover img,
  .vision-controls button:hover,
  .ai-box,
  .ai-bot,
  .ai-dot,
  .coin,
  .robot-photo-panel,
  .robot-wave,
  .scan-line {
    transform: none;
    animation: none;
  }
  .js-ready .reveal,
  .js-ready .reveal :where(.card, .point-card, .step-item, .metric-card, .work-card, .faq-list details, .check-panel) {
    opacity: 1;
    transform: none;
  }
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 10, 0.76);
  backdrop-filter: blur(5px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: min(90vh, 860px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(134, 135, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(20, 23, 34, 0.98), rgba(11, 13, 20, 0.98));
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1.08fr);
  box-shadow: var(--shadow);
  transform: translate3d(0, 16px, 0) scale(0.985);
  transition: transform 220ms ease;
}
.contact-modal.is-open .contact-modal__dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.contact-modal__copy,
.contact-modal__formpanel {
  padding: 32px;
}

.contact-modal__copy {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%),
    rgba(255, 255, 255, 0.01);
}

.contact-modal__copy h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-modal__lead {
  margin-top: 14px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
}

.contact-modal__facts {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-modal__facts li {
  position: relative;
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.contact-modal__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--warning));
}

.contact-modal__facts span {
  color: var(--text);
  font-weight: 700;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-modal__close:hover {
  transform: scale(1.04);
  border-color: rgba(134, 135, 255, 0.55);
  background: rgba(134, 135, 255, 0.12);
}

.contact-modal__formpanel {
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.48), rgba(8, 11, 18, 0.2));
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.field span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}
.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.consent-field a { color: var(--accent); }

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.field select {
  appearance: none;
  color-scheme: dark;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.6) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field select option {
  background: #1a1d28;
  color: #f6f6fb;
}

.field textarea {
  min-height: 154px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(134, 135, 255, 0.12);
  transform: translate3d(0, -1px, 0);
}

.contact-form__submit {
  width: auto;
  min-width: 220px;
  margin-top: 2px;
  justify-self: start;
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contact-form__status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0;
}

.contact-form__status.is-error {
  color: #ff9aa5;
}

.auth-main {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
}

.auth-wrap,
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.auth-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.auth-copy h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.8vw, 4.6rem);
}

.auth-card {
  display: grid;
  gap: 16px;
  min-height: 0;
}

.auth-alert {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
}

.auth-alert-error {
  border: 1px solid rgba(223, 123, 131, 0.44);
  color: #ffb3bb;
}

.auth-alert-success {
  border: 1px solid rgba(127, 191, 159, 0.38);
  color: #c6f4da;
}

.auth-switch {
  color: var(--muted);
  font-size: 0.94rem;
}

.auth-switch a {
  color: var(--accent);
  font-weight: 800;
}

.account-panels {
  display: grid;
  gap: 16px;
}

.account-card {
  display: grid;
  gap: 10px;
}

.account-card p strong {
  color: var(--text);
}

.account-main {
  align-items: stretch;
}

.account-hero {
  padding-bottom: 42px;
}

.account-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 22px;
  align-items: stretch;
}

.account-hero__copy {
  align-content: center;
}

.account-status-card {
  display: grid;
  gap: 14px;
}

.account-status-card h2,
.account-section-head h2,
.tool-card__head h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.1vw, 2.2rem);
}

.account-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.account-meta div {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.account-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.account-meta dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.account-workspace {
  padding-top: 22px;
}

.account-workspace .auth-alert {
  margin-bottom: 18px;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.account-grid > * {
  min-width: 0;
}

.account-profile-card {
  grid-row: span 2;
}

.account-section-head,
.tool-card__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.tool-card__head p,
.account-section-head p {
  color: var(--muted);
}

.account-tool-card {
  min-height: 0;
}

.ai-chat {
  display: grid;
  gap: 14px;
}

.ai-chat__log {
  display: grid;
  gap: 10px;
  min-height: 170px;
  max-height: 280px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.ai-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.ai-message--user {
  justify-self: end;
  background: rgba(134, 135, 255, 0.16);
}

.ai-message--bot {
  justify-self: start;
}

.ai-chat__form {
  display: grid;
  gap: 12px;
}

.ai-chat__form textarea {
  min-height: 104px;
}

.calculator-result {
  display: block;
  padding: 16px;
  border: 1px solid rgba(134, 135, 255, 0.28);
  border-radius: 14px;
  background: rgba(134, 135, 255, 0.09);
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
}

.ord-form textarea[readonly] {
  min-height: 170px;
  color: #d8d9ff;
}

.contact-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  min-width: min(92vw, 360px);
  max-width: 92vw;
  padding: 14px 18px;
  border: 1px solid rgba(127, 191, 159, 0.36);
  border-radius: 999px;
  background: rgba(10, 16, 20, 0.94);
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .header-inner,
  .hero-shell,
  .hero-shell-split,
  .hero-points,
  .grid-3,
  .scenario-grid,
  .media-grid,
  .metric-grid,
  .vision-carousel,
  .direction-grid,
  .benefits-grid,
  .domain-grid,
  .split-panel,
  .steps-layout,
  .faq-layout,
  .account-dashboard,
  .account-grid,
  .pricing-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .header-cta { margin-left: auto; }
  .hero { min-height: auto; padding: 54px 0; }
  .hero-shell-split {
    text-align: center;
  }
  .hero-shell-split .hero-copy,
  .hero-shell-split .hero-badge,
  .hero-shell-split .lead {
    justify-items: center;
    justify-self: center;
  }
  .hero-shell-split .actions {
    justify-content: center;
  }
  .hero-visual,
  .tek-map { min-height: 440px; }
  .steps-copy { position: static; }
}

@media (max-width: 720px) {
  .section { padding: 62px 0; }
  .site-header { position: static; }
  .header-inner { gap: 14px; align-items: center; }
  .brand { flex-basis: min(100%, 280px); }
  .nav-links {
    order: 2;
    flex-basis: 100%;
    gap: 8px 11px;
    font-size: 0.66rem;
  }
  .header-cta {
    order: 1;
    margin-left: auto;
    padding: 9px 13px;
    font-size: 0.78rem;
  }
  .nav-dropdown__menu {
    left: 0;
    min-width: min(300px, 88vw);
    transform: translate(0, -6px);
  }
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu {
    transform: translate(0, 0);
  }
  .brand-mark { width: 56px; height: 56px; flex-basis: 56px; }
  .brand-text strong { white-space: normal; }
  .hero-shell {
    width: min(var(--max), calc(100vw - 24px));
    overflow: visible;
  }
  .hero-badge {
    display: flex;
    width: 100%;
    max-width: calc(100vw - 24px);
    padding: 9px 12px;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.09em;
    font-size: 0.62rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  h1 {
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 9vw, 3.05rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
  .lead {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: anywhere;
  }
  .hero-visual,
  .tek-map { min-height: 500px; }
  .photo-stack,
  .service-photo,
  .ai-vision {
    min-height: auto;
  }
  .photo-stack__main,
  .service-photo img,
  .ai-vision img {
    width: 100%;
    height: 270px;
    min-height: 0;
  }
  .ai-vision {
    padding-bottom: 220px;
  }
  .ai-box-person { left: 16px; top: 72px; }
  .ai-box-vehicle { right: 16px; top: 154px; }
  .ai-box-risk { left: 18px; top: 236px; bottom: auto; }
  .ai-bot {
    right: 16px;
    bottom: 112px;
    width: 78px;
    height: 78px;
  }
  .savings-visual,
  .robot-photo-panel {
    right: 18px;
    top: 86px;
    transform: scale(0.82);
    transform-origin: top right;
  }
  .ai-vision figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .hover-summary {
    width: 100%;
  }
  .hover-summary__label {
    justify-content: center;
    width: 100%;
  }
  .hover-summary__tip {
    left: 0;
    width: min(100%, calc(100vw - 40px));
    transform: translate(0, 8px);
  }
  .hover-summary:hover .hover-summary__tip,
  .hover-summary:focus-within .hover-summary__tip,
  .direction-card:hover .hover-summary__tip,
  .direction-card:focus-visible .hover-summary__tip {
    transform: translate(0, 0);
  }
  .hover-summary__tip::after {
    left: 24px;
  }
  .photo-stack__small {
    position: static;
    width: 100%;
    height: 150px;
    margin-top: 12px;
  }
  .media-card,
  .media-card-large {
    min-height: 260px;
  }
  .vision-track {
    min-height: 520px;
  }
  .vision-controls {
    grid-template-columns: 1fr;
  }
  .work-track {
    grid-auto-columns: minmax(300px, 92%);
  }
  .cctv-frame {
    min-height: 270px;
  }
  .cctv-frame img {
    height: 270px;
  }
  .cctv-time {
    left: 12px;
    top: 12px;
    font-size: 0.82rem;
  }
  .cctv-mode {
    display: none;
  }
  .cctv-camera {
    right: 12px;
    bottom: 12px;
    font-size: 0.9rem;
  }
  .cctv-box {
    font-size: 0.65rem;
  }
  .box-person { left: 43%; top: 30%; width: 48px; height: 86px; }
  .box-person-large { left: 36%; top: 32%; width: 66px; height: 138px; }
  .box-person-side { left: 7%; bottom: 14%; width: 38px; height: 110px; }
  .box-car { right: 9%; bottom: 25%; width: 92px; height: 42px; }
  .box-door { left: 44%; top: 28%; width: 58px; height: 98px; }
  .box-risk-small { right: 12%; top: 38%; width: 88px; height: 58px; }
  .work-controls {
    justify-content: flex-start;
  }
  .signal-card,
  .tek-node { width: calc(50% - 28px); }
  .signal-card-a,
  .node-a { left: 16px; top: 18px; }
  .signal-card-b,
  .node-b { right: 16px; top: 128px; }
  .signal-card-c,
  .node-c { left: 16px; bottom: 20px; }
  .node-d { right: 16px; bottom: 92px; }
  .radar { inset: 110px 28px; }
  .contact-modal {
    padding: 16px;
  }
  .contact-modal__dialog {
    width: min(100%, calc(100vw - 24px));
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow: auto;
  }
  .contact-modal__copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .contact-modal__copy,
  .contact-modal__formpanel {
    padding: 22px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-form__submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
  .auth-wrap,
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-hero {
    padding-bottom: 24px;
  }
  .account-dashboard,
  .account-grid {
    width: min(var(--max), calc(100vw - 24px));
  }
  .account-status-card h2,
  .account-section-head h2,
  .tool-card__head h2 {
    font-size: 1.45rem;
    line-height: 1.15;
  }
  .ai-message {
    max-width: 100%;
  }
  .auth-copy h1 {
    max-width: 100%;
    font-size: 1.75rem;
    line-height: 1.12;
  }
}
