/* =====================================================================
   SECURITY LINKS — design system + components
   Brand: deep petrol teal + signal orange. Display face: Barlow.
   Motion: exponential ease-out reveals, staged scroll storytelling.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --ink:        #0A1A19;   /* near-black teal — hero / footer ground */
  --ink-2:      #0E2422;
  --teal-900:   #0C302E;
  --teal-800:   #0F3B39;
  --teal-700:   #134E4A;
  --teal-600:   #17726B;   /* primary brand mid */
  --teal-500:   #1E9188;
  --teal-tint:  #E9F3F1;   /* pale teal wash */
  --orange:     #F26A21;   /* signal accent */
  --orange-600: #E0570F;
  --orange-tint:#FDEBDF;

  /* neutrals (teal-tinted, never dead gray) */
  --paper:      #F4F8F7;
  --white:      #FFFFFF;
  --text:       #223432;   /* body on light */
  --text-2:     #526664;   /* muted on light */
  --on-dark:    #F6FBFA;
  --on-dark-2:  rgba(223,238,236,0.70);
  --line:       #E0EAE8;
  --line-2:     #CFDCD9;
  --line-dark:  rgba(255,255,255,0.12);

  /* type */
  --f: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 999px;

  /* shadows — real offset + soft blur */
  --sh-1: 0 1px 2px rgba(10,26,25,.05), 0 4px 14px -4px rgba(10,26,25,.10);
  --sh-2: 0 12px 34px -12px rgba(10,26,25,.22);
  --sh-3: 0 40px 80px -30px rgba(9,40,38,.45);
  --sh-orange: 0 14px 30px -10px rgba(224,87,15,.55);

  /* motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --dur: .75s;

  /* layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 10vw, 132px);
  --header-h: 76px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.has-smooth { scroll-behavior: auto; } /* JS smoother takes over on desktop */
body {
  margin: 0;
  font-family: var(--f);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--orange); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.04; letter-spacing: -.02em; margin: 0; color: var(--ink); text-wrap: balance; }
.h-display { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 900; letter-spacing: -.035em; line-height: .98; }
.h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.12rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--text-2); max-width: 62ch; }
strong { font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); position: relative; }
.section-sm { padding-block: clamp(48px, 7vw, 84px); }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.measure { max-width: 60ch; }

/* section on dark ground */
.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark .lede { color: var(--on-dark-2); }
.on-teal { background: var(--teal-800); color: var(--on-dark); }
.on-teal h1, .on-teal h2, .on-teal h3 { color: #fff; }
.on-paper { background: var(--paper); }

/* ---------- Kicker (named system, used sparingly) ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.on-dark .kicker { color: var(--orange); }
.section-head { max-width: 64ch; }
.section-head .h2 { margin-top: .7rem; }
.section-head .lede { margin-top: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--orange); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .92em 1.5em; border: 0; border-radius: var(--pill);
  background: var(--_bg); color: var(--_fg);
  font-weight: 700; font-size: 1rem; letter-spacing: .01em; line-height: 1;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  box-shadow: var(--sh-orange);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--orange-600); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn .btn-ico { transition: transform .4s var(--ease); }
.btn:hover .btn-ico { transform: translateX(4px); }

.btn-lg { padding: 1.05em 1.9em; font-size: 1.06rem; }
.btn-ghost {
  --_bg: transparent; --_fg: currentColor;
  box-shadow: none; border: 1.5px solid var(--line-2);
}
.btn-ghost::after { background: currentColor; opacity: .08; }
.on-dark .btn-ghost { border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--orange); }
.btn-light { --_bg:#fff; --_fg: var(--ink); box-shadow: var(--sh-2); }
.btn-light::after { background: #eef4f3; }
.btn-block { display: flex; width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--teal-600); }
.on-dark .link-arrow { color: var(--orange); }
.link-arrow svg { transition: transform .4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em .95em; border-radius: var(--pill);
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark);
  font-weight: 600; font-size: .9rem; color: var(--on-dark);
}
.chip svg { color: var(--orange); flex: none; }
.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.on-paper .chip, .on-light .chip { background: #fff; border-color: var(--line); color: var(--text); box-shadow: var(--sh-1); }

/* =====================================================================
   HEADER
   ===================================================================== */
.topbar {
  background: var(--ink-2); color: var(--on-dark-2);
  font-size: .86rem; border-bottom: 1px solid var(--line-dark);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar a { color: var(--on-dark); font-weight: 600; }
.topbar-meta > a { display: inline-flex; align-items: center; gap: .5em; }
.topbar-meta { display: flex; gap: 1.4rem; align-items: center; }
.topbar-meta span { display: inline-flex; align-items: center; gap: .5em; }
.topbar-meta svg { color: var(--orange); }
.topbar-social { display: flex; gap: .3rem; }
.topbar-social a { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--on-dark-2); transition: .3s; }
.topbar-social a:hover { color: #fff; background: var(--orange); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
/* transparent over dark hero */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .nav-link { color: var(--on-dark); }
.site-header.is-stuck {
  background: rgba(9,22,21,.82); backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); border-bottom: 1px solid var(--line-dark);
}
.site-header.is-stuck .nav-link { color: var(--on-dark); }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: #fff; font-weight: 900; letter-spacing: -.02em; }
.brand-logo { height: 50px; width: auto; display: block; }
.footer-brand .brand-logo { height: 56px; }
.mobile-nav .brand-logo { height: 42px; }
@media (max-width: 480px) { .brand-logo { height: 40px; } }
.brand .brand-mark { width: 42px; height: 42px; flex: none; }
.brand .brand-name { font-size: 1.28rem; line-height: .95; }
.brand .brand-name b { color: var(--orange); font-weight: 900; }
.brand .brand-name small { display: block; font-size: .58rem; letter-spacing: .28em; font-weight: 600; color: var(--on-dark-2); text-transform: uppercase; margin-top: 3px; }

.primary-nav { display: flex; align-items: center; gap: .3rem; }
.nav-link {
  position: relative; padding: .55em .72em; border-radius: 10px;
  font-weight: 600; font-size: .96rem; color: var(--on-dark);
  transition: color .25s;
}
.nav-link::after {
  content: ""; position: absolute; left: .72em; right: .72em; bottom: .35em; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; border-radius: 2px;
  transition: transform .35s var(--ease);
}
.nav-link:hover::after, .nav-link.current::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: inline-flex; align-items: center; gap: .6em; font-weight: 800; color: #fff; font-size: 1.02rem; }
.header-phone svg { color: var(--orange); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: .3s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  padding: calc(var(--header-h) + 30px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: .2rem;
  transform: translateX(100%); transition: transform .5s var(--ease); visibility: hidden;
}
body.nav-open .mobile-nav { transform: none; visibility: visible; }
.mobile-nav a.m-link { color: #fff; font-size: 1.5rem; font-weight: 800; padding: .55em 0; border-bottom: 1px solid var(--line-dark); letter-spacing: -.01em; }
.mobile-nav .btn { margin-top: 1.4rem; }
.mobile-nav .m-contact { margin-top: auto; color: var(--on-dark-2); }
.mobile-nav .m-contact a { color: #fff; font-weight: 700; }

/* =====================================================================
   HERO — the tension
   ===================================================================== */
.hero, .page-hero { margin-top: calc(var(--header-h) * -1); } /* slide under transparent sticky header */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--ink); color: var(--on-dark); overflow: hidden; isolation: isolate; }

/* full-bleed image slider */
.hero-slider { position: absolute; inset: 0; z-index: -3; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: 72% center; opacity: 0; transition: opacity 1.5s ease; will-change: opacity; }
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-slide.is-active { animation: kenburns 8s ease-out both; transform-origin: 70% 50%; }
}
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }

/* left scrim keeps the copy legible over any scene */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(90deg, rgba(8,20,19,.95) 0%, rgba(8,20,19,.82) 30%, rgba(8,20,19,.46) 56%, rgba(8,20,19,.14) 80%, rgba(8,20,19,0) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,20,19,.62) 0%, rgba(8,20,19,.20) 11%, transparent 22%),
    linear-gradient(0deg, var(--ink) 1%, rgba(8,20,19,.4) 20%, transparent 42%),
    radial-gradient(70% 50% at 86% 4%, rgba(242,106,33,.12), transparent 60%);
}
.hero-inner { width: 100%; padding-block: clamp(104px, 12vw, 150px) clamp(72px, 8vw, 104px); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6em; font-weight: 700; letter-spacing: .04em; color: var(--on-dark); font-size: .96rem; }
.hero-eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(242,106,33,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(242,106,33,.6)} 70%{box-shadow:0 0 0 14px rgba(242,106,33,0)} 100%{box-shadow:0 0 0 0 rgba(242,106,33,0)} }
.hero h1 { color: #fff; max-width: 22ch; font-size: clamp(2.3rem, 4.9vw, 4.05rem); line-height: 1.04; padding-bottom: .08em; }
.hero h1 .accent { color: var(--orange); }
/* rotating word */
.rotator { display: inline-block; position: relative; text-align: left; white-space: nowrap; vertical-align: baseline; }
.rotator__word { display: inline-block; will-change: transform, opacity; }
.hero .lede { color: var(--on-dark-2); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: .4rem; }
.hero-trust .t { display: inline-flex; align-items: center; gap: .6em; font-weight: 600; color: var(--on-dark-2); font-size: .95rem; }
.hero-trust svg { color: var(--orange); flex: none; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); display: grid; justify-items: center; gap: .5rem; color: var(--on-dark-2); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 2px solid var(--on-dark-2); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 7px; background: var(--orange); border-radius: 2px; transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* =====================================================================
   MARQUEE strip
   ===================================================================== */
.marquee { overflow: hidden; border-block: 1px solid var(--line-dark); background: var(--ink-2); padding-block: .9rem; }
.marquee.on-orange { background: var(--orange); border-color: transparent; }
.marquee-track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 2.6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: .01em; color: var(--on-dark); text-transform: uppercase; }
.marquee.on-orange .marquee-track span { color: #fff; }
.marquee-track .star { color: var(--orange); font-size: 1rem; }
.marquee.on-orange .marquee-track .star { color: rgba(255,255,255,.75); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   STAT counters
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); }
.stat { position: relative; padding-left: 1.4rem; }
.stat::before { content: ""; position: absolute; left: 0; top: .35rem; bottom: .35rem; width: 3px; background: var(--orange); border-radius: 3px; }
.stat .num { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.on-dark .stat .num, .on-teal .stat .num { color: #fff; }
.stat .num .suf { color: var(--orange); }
.stat .label { margin-top: .5rem; font-weight: 600; color: var(--text-2); font-size: .98rem; }
.on-dark .stat .label, .on-teal .stat .label { color: rgba(246,251,250,.82); }

/* =====================================================================
   STAGED SYSTEM — sticky scroll storytelling
   ===================================================================== */
.system { background: var(--ink); color: var(--on-dark); position: relative; }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.system-stage { position: sticky; top: calc(var(--header-h) + 40px); height: min(72vh, 640px); }
.stage-scene {
  position: relative; height: 100%; border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(120% 120% at 70% 20%, #123c39, #081a19 70%);
  border: 1px solid var(--line-dark); box-shadow: var(--sh-3);
}
.stage-scene .house-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.stage-scene .scan { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(242,106,33,.14), transparent); height: 40%; transform: translateY(-120%); }
.system.scanning .stage-scene .scan { animation: scan 3.4s var(--ease) infinite; }
@keyframes scan { 0%{transform:translateY(-120%)} 100%{transform:translateY(320%)} }
/* coverage cones + markers toggled by JS stage classes */
.cone { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); transform: scale(.7); mix-blend-mode: screen; }
.stage-scene .badge-float {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: rgba(9,22,21,.72); backdrop-filter: blur(8px); border: 1px solid var(--line-dark);
  padding: .7rem .95rem; border-radius: 14px; box-shadow: var(--sh-2);
  opacity: 0; transform: translateY(10px) scale(.96); transition: .55s var(--ease);
}
.stage-scene .badge-float.on { opacity: 1; transform: none; }
.stage-scene .badge-float .bico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--orange); color: #fff; flex: none; }
.stage-scene .badge-float b { display: block; font-size: .92rem; color: #fff; }
.stage-scene .badge-float small { color: var(--on-dark-2); font-size: .76rem; }

.system-steps { display: flex; flex-direction: column; gap: clamp(1rem, 4vw, 2.2rem); }
.sys-step { padding: clamp(1.4rem, 3vw, 2.2rem) 0; border-top: 1px solid var(--line-dark); opacity: .4; transition: opacity .5s var(--ease); }
.sys-step:first-child { border-top: 0; }
.sys-step.active { opacity: 1; }
.sys-step .n { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--orange); letter-spacing: .1em; font-size: .85rem; text-transform: uppercase; }
.sys-step h3 { color: #fff; margin: .7rem 0 .5rem; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.sys-step p { color: var(--on-dark-2); margin: 0; }
.sys-step .feat { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }

/* =====================================================================
   SERVICES — asymmetric grid (not identical cards)
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.svc { grid-column: span 2; position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.4vw, 2.1rem); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.svc.lead { grid-column: span 3; }
.svc.wide { grid-column: span 3; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: transparent; }
.svc .svc-ico { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-600); margin-bottom: 1.1rem; transition: .5s var(--ease); }
.svc:hover .svc-ico { background: var(--orange); color: #fff; transform: rotate(-6deg); }
.svc h3 { margin-bottom: .5rem; }
.svc p { color: var(--text-2); margin: 0 0 1.1rem; }
.svc .svc-more { color: var(--teal-600); font-weight: 700; display: inline-flex; align-items: center; gap: .4em; }
.svc .svc-more svg { transition: transform .4s var(--ease); }
.svc:hover .svc-more svg { transform: translateX(5px); }
.svc.dark { background: var(--teal-800); border-color: transparent; color: var(--on-dark); }
.svc.dark h3 { color: #fff; } .svc.dark p { color: var(--on-dark-2); }
.svc.dark .svc-ico { background: rgba(255,255,255,.1); color: var(--orange); }
.svc-num { position: absolute; top: 1.1rem; right: 1.3rem; font-weight: 900; font-size: 1rem; color: var(--line-2); }

/* =====================================================================
   FEATURE split (why us / about)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); position: relative; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.media-badge {
  position: absolute; left: -18px; bottom: 24px; background: #fff; color: var(--ink);
  border-radius: var(--r); padding: 1rem 1.2rem; box-shadow: var(--sh-3); display: flex; gap: .8rem; align-items: center; max-width: 260px;
}
.media-badge .mb-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--orange); color: #fff; flex: none; }
.media-badge b { display: block; font-size: 1.5rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.media-badge small { color: var(--text-2); font-weight: 600; }

.check-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.check-list li { display: flex; gap: .85rem; align-items: flex-start; }
.check-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: none; margin-top: 2px; }
.on-dark .check-list .ck { background: rgba(242,106,33,.16); color: var(--orange); }
.check-list b { font-weight: 700; }
.check-list span.d { color: var(--text-2); display: block; font-size: .96rem; }
.on-dark .check-list span.d { color: var(--on-dark-2); }

/* feature mini-cards row (varied from svc) */
.pill-features { display: flex; flex-wrap: nowrap; gap: .5rem; margin-top: 1.6rem; }
.pill-features .pf { display: inline-flex; align-items: center; gap: .5em; padding: .52em .8em; border-radius: var(--pill); background: var(--paper); border: 1px solid var(--line); font-weight: 600; font-size: .88rem; color: var(--text); white-space: nowrap; }
@media (max-width: 900px) { .pill-features { flex-wrap: wrap; } }
.pill-features .pf svg { color: var(--orange); }

/* =====================================================================
   PACKAGES (quote-based, prices hidden)
   ===================================================================== */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); align-items: stretch; }
.pkg { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 2.2vw, 2rem); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.pkg:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.pkg.featured { background: var(--ink); color: var(--on-dark); border-color: transparent; box-shadow: var(--sh-3); position: relative; }
.pkg.featured h3 { color: #fff; }
.pkg-tag { position: absolute; top: 1.2rem; right: 1.2rem; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.pkg .p-name { font-weight: 800; font-size: 1.3rem; color: inherit; }
.pkg .p-for { color: var(--text-2); font-size: .95rem; margin: .3rem 0 1.2rem; }
.pkg.featured .p-for { color: var(--on-dark-2); }
.pkg .p-list { display: grid; gap: .7rem; margin: 0 0 1.6rem; }
.pkg .p-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .97rem; color: var(--text); }
.pkg.featured .p-list li { color: var(--on-dark); }
.pkg .p-list svg { color: var(--teal-600); flex: none; margin-top: 3px; }
.pkg.featured .p-list svg { color: var(--orange); }
.pkg .btn { margin-top: auto; }

/* add-ons / maintenance small grid */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.5rem; }
.mini h4 { font-size: 1.1rem; } .mini p { color: var(--text-2); margin: .4rem 0 0; font-size: .95rem; }

/* =====================================================================
   PROCESS steps
   ===================================================================== */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.6rem); counter-reset: step; }
.step { position: relative; }
.step .s-n { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-weight: 900; font-size: 1.35rem; margin-bottom: 1.1rem; position: relative; z-index: 2; transition: transform .4s var(--ease), background .4s var(--ease); }
.step:hover .s-n { background: var(--orange); transform: translateY(-4px); }
/* connector lives on the step (stable), so the circle's hover lift never clips it */
.process .step:not(:last-child)::after { content: ""; position: absolute; top: 30px; left: 68px; width: calc(100% - 60px + clamp(1rem,2vw,1.6rem)); height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); z-index: 0; }
.step h4 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--text-2); font-size: .95rem; margin: 0; }

/* =====================================================================
   AREAS served
   ===================================================================== */
.areas-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-cols { columns: 3; column-gap: 1.4rem; }
.area-cols a { display: flex; align-items: center; gap: .6em; padding: .5rem 0; font-weight: 600; color: var(--text); break-inside: avoid; transition: color .25s, transform .25s; }
.area-cols a svg { color: var(--orange); flex: none; transition: transform .3s var(--ease); }
.area-cols a:hover { color: var(--teal-600); } .area-cols a:hover svg { transform: translateX(3px); }
.map-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); position: relative; background: var(--teal-900); aspect-ratio: 4/3.6; display: grid; place-items: center; color: var(--on-dark-2); }
.map-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-card iframe { width: 100%; height: 100%; min-height: inherit; border: 0; display: block; }

/* =====================================================================
   TESTIMONIALS slider
   ===================================================================== */
.tst { position: relative; }
.tst-viewport { overflow: hidden; }
.tst-track { display: flex; gap: clamp(16px, 2vw, 26px); transition: transform .7s var(--ease); }
.tst-card { flex: 0 0 clamp(300px, 42%, 480px); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 2.4vw, 2.3rem); box-shadow: var(--sh-1); }
.on-dark .tst-card { background: var(--teal-900); border-color: var(--line-dark); }
.tst-stars { display: flex; gap: 3px; color: var(--orange); margin-bottom: 1rem; }
.tst-quote { font-size: 1.12rem; line-height: 1.55; color: var(--text); }
.on-dark .tst-quote { color: #fff; }
.tst-who { display: flex; align-items: center; gap: .9rem; margin-top: 1.5rem; }
.tst-who .av { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; font-weight: 800; flex: none; overflow: hidden; }
.tst-who .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tst-who b { display: block; } .tst-who small { color: var(--text-2); }
.on-dark .tst-who small { color: var(--on-dark-2); }
.tst-nav { display: flex; gap: .6rem; margin-top: 2rem; }
.tst-nav button { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line-2); background: transparent; display: grid; place-items: center; transition: .3s var(--ease); color: var(--ink); }
.on-dark .tst-nav button { border-color: var(--line-dark); color: #fff; }
.tst-nav button:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; background: var(--orange); color: #fff; border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4rem); overflow: hidden; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 140% at 100% 0, rgba(255,255,255,.16), transparent 55%); }
.cta-band .h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }

/* =====================================================================
   CONTACT / form
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info .ci { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-info .ci .ci-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(242,106,33,.15); color: var(--orange); display: grid; place-items: center; flex: none; }
.contact-info .ci small { color: var(--on-dark-2); display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 700; }
.contact-info .ci b { font-size: 1.15rem; display: block; }
.contact-info .ci b a { color: #fff; }
.contact-info .ci > div > span { display: block; font-size: .9rem; margin-top: .15rem; }
.form-card { background: #fff; border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--sh-3); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95em 1.05em; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 1rem; color: var(--text); background: var(--paper); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px var(--orange-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .86rem; color: var(--text-2); margin-top: .6rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 600; }
.form-status.ok { display: block; background: var(--teal-tint); color: var(--teal-700); }
.form-status.err { display: block; background: #fdecec; color: #b3261e; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: var(--on-dark-2); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(2rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 5rem); }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); color: #fff; transition: .3s var(--ease); }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: .4rem 0; color: var(--on-dark-2); transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--orange); transform: translateX(3px); }
.footer-news p { margin-bottom: 1rem; }
.news-form { display: flex; gap: .5rem; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); border-radius: var(--pill); padding: .4rem .4rem .4rem 1.2rem; }
.news-form input { flex: 1; background: transparent; border: 0; color: #fff; font: inherit; }
.news-form input::placeholder { color: var(--on-dark-2); }
.news-form input:focus { outline: none; }
.news-form button { width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: #fff; border: 0; display: grid; place-items: center; flex: none; transition: .3s var(--ease); }
.news-form button:hover { background: var(--orange-600); transform: scale(1.05); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }
.footer-bottom a { color: var(--on-dark); }

/* sticky mobile call bar (conversion) */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: none; gap: .7rem; }
.mobile-cta .btn { flex: 1; box-shadow: var(--sh-3); }
.mobile-cta .btn.call { --_bg: #fff; --_fg: var(--ink); }

/* =====================================================================
   REVEAL animation utility
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); transition-delay: var(--d, 0ms); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="clip"] { opacity: 1; clip-path: inset(0 100% 0 0); transform: none; }
.is-in { opacity: 1 !important; transform: none !important; clip-path: inset(0 0 0 0) !important; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .svc, .svc.lead, .svc.wide { grid-column: span 2; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; }
  .process .step::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .primary-nav, .header-cta .header-phone, .header-cta > .btn, .topbar-meta .hide-sm { display: none; }
  .nav-toggle { display: block; }
  .system-grid { grid-template-columns: 1fr; }
  .system-stage { position: relative; top: 0; height: auto; aspect-ratio: 16/12; margin-bottom: 1.5rem; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .areas-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}
@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc, .svc.lead, .svc.wide { grid-column: span 1; }
  .pkg-grid, .mini-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .area-cols { columns: 2; }
  .field-row { grid-template-columns: 1fr; }
  .tst-card { flex-basis: 86%; }
  .footer-top { grid-template-columns: 1fr; }
}

/* =====================================================================
   HERO VISUAL (SVG composition)
   ===================================================================== */
.hero-inner.has-visual { grid-template-columns: 1.05fr .95fr; align-items: center; }
.hero-copy { display: grid; gap: 1.25rem; align-content: center; max-width: 720px; }
.hero-visual { position: relative; }
.hero-visual .hv-panel { position: relative; border-radius: var(--r-xl); overflow: hidden; background: radial-gradient(120% 120% at 70% 15%, #123c39, #08201e 72%); border: 1px solid var(--line-dark); box-shadow: var(--sh-3); aspect-ratio: 5/5.2; }
.hv-cam { position: absolute; top: 8%; right: 8%; width: 44%; filter: drop-shadow(0 24px 40px rgba(0,0,0,.5)); }
.hv-cone { position: absolute; left: 12%; bottom: 10%; width: 70%; height: 62%; background: conic-gradient(from 200deg at 100% 0, transparent 0 20deg, rgba(242,106,33,.28) 20deg 62deg, transparent 62deg); filter: blur(6px); border-radius: 40%; animation: coneSweep 6s var(--ease) infinite alternate; }
@keyframes coneSweep { from { transform: rotate(-6deg);} to { transform: rotate(6deg);} }
.hv-live { position: absolute; top: 6%; left: 6%; display: inline-flex; align-items: center; gap: .5em; background: rgba(9,22,21,.7); border: 1px solid var(--line-dark); padding: .4rem .8rem; border-radius: var(--pill); font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: #fff; text-transform: uppercase; }
.hv-live i { width: 8px; height: 8px; border-radius: 50%; background: #ff4d4d; box-shadow: 0 0 0 0 rgba(255,77,77,.7); animation: pulse 1.8s infinite; font-style: normal; }
.hv-chip { position: absolute; background: rgba(9,22,21,.78); backdrop-filter: blur(8px); border: 1px solid var(--line-dark); border-radius: 14px; padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem; box-shadow: var(--sh-2); }
.hv-chip .hc-ico { width: 32px; height: 32px; border-radius: 9px; background: var(--orange); color: #fff; display: grid; place-items: center; flex: none; }
.hv-chip b { color: #fff; font-size: .9rem; display: block; line-height: 1.1; } .hv-chip small { color: var(--on-dark-2); font-size: .74rem; }
.hv-chip.c1 { bottom: 14%; left: -3%; animation: floaty 5s ease-in-out infinite; }
.hv-chip.c2 { top: 38%; right: -3%; animation: floaty 6.5s ease-in-out infinite reverse; max-width: 190px; }

/* floating UI placed directly over the hero imagery (right side) */
.hero > .hv-live { position: absolute; z-index: 3; top: clamp(96px, 15vh, 148px); right: clamp(20px, 6vw, 74px); left: auto; pointer-events: none; }
.hero > .hv-chip { position: absolute; z-index: 3; pointer-events: none; }
.hero > .hv-chip.c1 { top: auto; left: auto; bottom: 22%; right: 17%; max-width: 260px; }
.hero > .hv-chip.c2 { top: 44%; left: auto; right: 7%; max-width: 210px; }

/* social-proof avatar stack */
.hv-chip.proof { gap: .8rem; }
.hv-chip.proof b { font-size: .96rem; }
.avatars { display: flex; align-items: center; flex: none; }
.avatars .av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(9,22,21,.85); margin-left: -12px; background: var(--teal-700); }
.avatars .av:first-child { margin-left: 0; }
.avatars .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .hero > .hv-live, .hero > .hv-chip { display: none; }
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* =====================================================================
   SCENE LAYERS (staged system)
   ===================================================================== */
.stage-scene .house { position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); width: 74%; z-index: 1; }

/* photo-based scene (real home + phone mockup) */
.stage-scene.has-photo { background: #0a1a19; }
.stage-scene.has-photo .scene-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: 0; }
.stage-scene.has-photo .scene-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,20,19,.30) 0%, rgba(8,20,19,.10) 38%, rgba(8,20,19,.66) 100%); }
.stage-scene.has-photo .scan { z-index: 2; }
.stage-scene.has-photo .cone { z-index: 3; }
.stage-scene.has-photo .detect { z-index: 4; }
.stage-scene.has-photo .badge-float { z-index: 5; }
.scene-phone { position: absolute; right: 4%; bottom: 5%; width: 43%; max-width: 246px; z-index: 6; opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); filter: drop-shadow(0 20px 30px rgba(0,0,0,.45)); }
.scene-phone.on { opacity: 1; transform: none; }
.stage-scene [data-stage] { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.cone { z-index: 2; }
.cone.on { opacity: .8; transform: scale(1); }
.detect { position: absolute; z-index: 3; width: 92px; height: 92px; opacity: 0; transform: scale(.8); }
.detect.on { opacity: 1; transform: scale(1); }
.detect .brk { position: absolute; width: 16px; height: 16px; border: 2px solid var(--orange); }
.detect .brk.tl { top:0; left:0; border-right:0; border-bottom:0; }
.detect .brk.tr { top:0; right:0; border-left:0; border-bottom:0; }
.detect .brk.bl { bottom:0; left:0; border-right:0; border-top:0; }
.detect .brk.br { bottom:0; right:0; border-left:0; border-top:0; }
.detect .tag { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .06em; padding: .18rem .5rem; border-radius: 6px; white-space: nowrap; text-transform: uppercase; }
.phone-ui { position: absolute; z-index: 4; right: 6%; bottom: 8%; width: 118px; border-radius: 20px; background: #0a1a19; border: 2px solid rgba(255,255,255,.18); box-shadow: var(--sh-3); padding: 8px; opacity: 0; transform: translateY(14px) rotate(4deg); }
.phone-ui.on { opacity: 1; transform: rotate(4deg); }
.phone-ui .pf { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.phone-ui .pf i { aspect-ratio: 1; border-radius: 6px; background: linear-gradient(135deg, #14403c, #0c2624); display: block; }
.phone-ui .pbar { height: 6px; border-radius: 4px; background: var(--orange); margin-bottom: 6px; width: 60%; }

/* =====================================================================
   PROBLEM / pain
   ===================================================================== */
.pain-statement .h2 .u { color: var(--orange); }
.pain-list { display: grid; gap: 0; }
.pain-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.pain-list li:first-child { border-top: 0; }
.pain-list .pi { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-tint); color: var(--orange-600); display: grid; place-items: center; flex: none; }
.pain-list b { font-size: 1.12rem; display: block; margin-bottom: .15rem; }
.pain-list p { color: var(--text-2); margin: 0; font-size: .97rem; }
.big-quote { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.big-quote .u { color: var(--orange); }

/* =====================================================================
   CAMERA showcase
   ===================================================================== */
.showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.cam { position: relative; background: var(--teal-900); border: 1px solid var(--line-dark); border-radius: var(--r-lg); overflow: hidden; color: var(--on-dark); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.cam:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: rgba(242,106,33,.4); }
.cam-art { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0a201e; }
.cam-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.cam:hover .cam-art img { transform: scale(1.06); }
.cam-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,26,25,0) 52%, rgba(10,26,25,.5)); }
.cam-body { padding: 1.25rem 1.4rem 1.5rem; }
.cam-body h4 { color: #fff; font-size: 1.2rem; }
.cam-body p { color: var(--on-dark-2); font-size: .93rem; margin: .35rem 0 0; }
.cam .tagf { position: absolute; top: .85rem; left: .85rem; z-index: 2; font-size: .66rem; font-weight: 800; color: var(--orange); letter-spacing: .1em; text-transform: uppercase; background: rgba(9,22,21,.66); backdrop-filter: blur(6px); border: 1px solid var(--line-dark); padding: .34rem .7rem; border-radius: var(--pill); }

/* =====================================================================
   BADGE ribbon (trust logos row)
   ===================================================================== */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; }
.trust-row .tr { display: inline-flex; align-items: center; gap: .6em; font-weight: 700; color: var(--text-2); }
.trust-row .tr svg { color: var(--teal-600); }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero { position: relative; background: var(--ink); color: var(--on-dark); overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(100% 120% at 85% 0, rgba(242,106,33,.18), transparent 55%), radial-gradient(90% 120% at 0 100%, rgba(23,114,107,.30), transparent 60%), linear-gradient(180deg, rgba(9,22,21,.6), var(--ink)); }
.page-hero .container { padding-block: clamp(122px, 16vw, 190px) clamp(48px, 7vw, 84px); position: relative; }
.crumb { display: inline-flex; align-items: center; gap: .5em; color: var(--on-dark-2); font-weight: 600; font-size: .92rem; }
.crumb a { color: var(--on-dark-2); } .crumb a:hover { color: var(--orange); }
.crumb .sep { opacity: .5; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.7rem); letter-spacing: -.03em; margin-top: .7rem; max-width: 20ch; }
.page-hero .lede { margin-top: 1rem; }
.page-hero .hero-trust { margin-top: 1.5rem; }

/* =====================================================================
   VIDEO WALL (monitoring motif)
   ===================================================================== */
.videowall { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: 16px; aspect-ratio: 4/3.1; background: radial-gradient(120% 120% at 70% 15%, #123c39, #07201e 72%); border: 1px solid var(--line-dark); box-shadow: var(--sh-3); }
.vw-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 8px; height: 100%; }
.vw-tile { position: relative; border-radius: 9px; overflow: hidden; background: linear-gradient(135deg, #164b46, #0b2622); border: 1px solid var(--line-dark); }
.vw-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 38% 30%, rgba(23,114,107,.55), transparent 70%); }
.vw-tile::after { content: ""; position: absolute; left: 8px; bottom: 7px; width: 26px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.28); }
.vw-tile.hot::before { background: radial-gradient(70% 70% at 55% 45%, rgba(242,106,33,.5), transparent 70%); }
.vw-tile.hot::after { background: var(--orange); }
.videowall .vw-live { position: absolute; top: 24px; right: 24px; z-index: 2; display: inline-flex; align-items: center; gap: .5em; background: rgba(9,22,21,.72); border: 1px solid var(--line-dark); padding: .38rem .75rem; border-radius: var(--pill); font-size: .74rem; font-weight: 800; letter-spacing: .14em; color: #fff; text-transform: uppercase; }
.videowall .vw-live i { width: 8px; height: 8px; border-radius: 50%; background: #ff4d4d; box-shadow: 0 0 0 0 rgba(255,77,77,.7); animation: pulse 1.8s infinite; font-style: normal; }
.videowall .vw-scan { position: absolute; left: 16px; right: 16px; top: 16px; height: 26%; background: linear-gradient(180deg, transparent, rgba(242,106,33,.12), transparent); transform: translateY(-120%); animation: scan 4s var(--ease) infinite; z-index: 1; pointer-events: none; }

/* who-it-for cards */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 22px); }
.aud { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 2.6vw, 2.2rem); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.aud:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.aud .aud-ico { width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: var(--teal-tint); color: var(--teal-600); margin-bottom: 1.1rem; }
.aud h3 { margin-bottom: .5rem; } .aud p { color: var(--text-2); margin: 0; }
@media (max-width: 720px) { .audience { grid-template-columns: 1fr; } }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; gap: .9rem; max-width: 860px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq details[open] { border-color: var(--line-2); box-shadow: var(--sh-1); }
.faq summary { font-weight: 700; font-size: 1.08rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.4rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-ico { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-600); display: grid; place-items: center; flex: none; transition: transform .4s var(--ease), background .3s, color .3s; }
.faq details[open] summary .q-ico { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq .faq-a { padding: 0 1.4rem 1.3rem; color: var(--text-2); max-width: 68ch; }

/* legal / prose pages */
.legal { max-width: 76ch; }
.legal .updated { color: var(--text-2); font-size: .95rem; margin-bottom: 2.2rem; }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 2.6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--text-2); }
.legal ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1.1rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--teal-600); font-weight: 600; }

/* generic two-up intro grid */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: end; }
@media (max-width: 820px) { .lead-grid { grid-template-columns: 1fr; align-items: start; gap: 1rem; } }

@media (max-width: 900px) {
  .hero-inner.has-visual { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .showcase { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .showcase { grid-template-columns: 1fr; }
  .hv-chip.c1 { left: 2%; } .hv-chip.c2 { right: 2%; }
}

/* motion off */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
