:root {
  --primary: #054bca;
  --primary-dark: #033a9e;
  --ink: #0f1a2e;
  --ink-soft: #4a5670;
  --muted: #6b7690;
  --line: #e4e9f3;
  --bg: #f5f7fc;
  --card: #ffffff;
  --radius-lg: 28px;
  --radius: 16px;
  --wrap: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(245, 247, 252, .75), rgba(245, 247, 252, .75)),
    url('assets/site-backdrop.jpg') center / cover no-repeat;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 14px; }
p { margin: 0 0 16px; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input { font: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; text-decoration: none;
  padding: 13px 20px; border-radius: 12px; border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(5,75,202,.25); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn.full { width: 100%; }

/* Chips / pills */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 999px; margin: 0 0 18px;
}
.chip-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.chip-blue { background: #eaf1fe; color: var(--primary); border: 1px solid #d3e2fb; }
.chip-icon { font-size: 11px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ee6b8; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.dot-status { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.dot-status.lg { width: 12px; height: 12px; }
.dot-green { background: #2fbf7e; box-shadow: 0 0 0 4px rgba(47,191,126,.18); }
.dot-amber { background: #e0942f; box-shadow: 0 0 0 4px rgba(224,148,47,.18); }

/* ===== Hero ===== */
.hero-shell { padding: 18px 16px 0; }
.hero-card {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 22px clamp(18px, 4vw, 52px) 70px;
  background:
    radial-gradient(120% 140% at 15% 0%, rgba(26,95,224,.55) 0%, rgba(14,63,175,.62) 45%, rgba(8,31,92,.82) 100%),
    url('assets/hero-bg.jpg') center / cover no-repeat,
    radial-gradient(120% 140% at 15% 0%, #1a5fe0 0%, #0e3faf 45%, #081f5c 100%);
  color: #fff;
}
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 60%;
  background: radial-gradient(60% 100% at 30% 0%, rgba(255,255,255,.16), transparent 70%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(70deg, rgba(255,255,255,.07) 0px, rgba(255,255,255,.07) 1px, transparent 1px, transparent 64px);
  mask-image: radial-gradient(70% 70% at 50% 20%, #000 0%, transparent 75%);
}

.hero-topbar { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero-brand img { height: 22px; width: auto; }
.hero-nav { display: flex; gap: 28px; }
.hero-nav a { text-decoration: none; color: rgba(255,255,255,.82); font-weight: 600; font-size: 14.5px; }
.hero-nav a:hover { color: #fff; }

.pill-menu-btn {
  display: none; align-items: center; gap: 8px;
  background: rgba(0,0,0,.28); color: #fff; border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px; font-weight: 600; font-size: 13.5px;
}
.menu-dots { display: inline-flex; gap: 3px; }
.menu-dots i { width: 3px; height: 3px; border-radius: 50%; background: #fff; }

.mobile-nav { display: none; flex-direction: column; position: relative; z-index: 3; margin-top: 14px; }
.mobile-nav a {
  text-decoration: none; color: #fff; font-weight: 600; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.is-open { display: flex; }

.hero-content { position: relative; z-index: 3; text-align: center; max-width: 760px; margin: 46px auto 0; }
.hero-title { font-size: clamp(30px, 4.6vw, 46px); color: #fff; }
.hero-title .hl, .hero-title span { color: #7fb2ff; }
.hero-sub { color: rgba(255,255,255,.78); font-size: 16px; max-width: 52ch; margin: 0 auto 28px; }

.hero-form {
  display: flex; align-items: center; gap: 6px;
  max-width: 440px; margin: 0 auto;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  padding: 6px; border-radius: 999px;
}
.hero-form input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: #fff; padding: 10px 14px; font-size: 14.5px;
}
.hero-form input::placeholder { color: rgba(255,255,255,.6); }
.hero-form button {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0b1730; color: #fff; border: none;
  padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: 14px;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}
.hero-form button:hover { background: #000; transform: translateY(-1px); }
.hero-form button svg { width: 16px; height: 16px; }

/* Floating cards */
.hero-floaters {
  position: relative;
  max-width: 900px;
  height: 200px;
  margin: -96px auto 0;
  z-index: 4;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(8,20,54,.22);
  padding: 14px 16px;
  color: var(--ink);
}
.float-stat {
  left: 0; top: 6px; width: 186px;
  display: flex; align-items: center; gap: 10px;
  transform: rotate(-4deg);
}
.float-stat-icon {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: #eaf1fe; color: var(--primary);
  display: grid; place-items: center;
}
.float-stat-icon svg { width: 18px; height: 18px; }
.float-stat strong { display: block; font-size: 14px; }
.float-stat span { font-size: 12px; color: var(--muted); }

.float-main {
  left: 50%; top: 44px; width: 264px;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(150deg, #1657d6, #0b2f70);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}
.float-main-head { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 12px; }
.float-main-body { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.avatar-ring {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.4);
  display: grid; place-items: center; color: #fff;
}
.avatar-ring svg { width: 20px; height: 20px; }
.avatar-ring.sm { width: 34px; height: 34px; background: #eaf1fe; border-color: #d3e2fb; color: var(--primary); }
.avatar-ring.sm svg { width: 17px; height: 17px; }
.float-main-body strong { display: block; font-size: 14.5px; }
.float-main-body span { font-size: 12px; color: rgba(255,255,255,.7); }
.float-main-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,.16); overflow: hidden; }
.float-main-bar i { display: block; width: 70%; height: 100%; background: linear-gradient(90deg, #4ee6b8, #7fb2ff); border-radius: 999px; }

.float-alert {
  right: 0; top: 78px; width: 208px;
  display: flex; align-items: center; gap: 10px;
  transform: rotate(3deg);
}
.float-alert strong { display: block; font-size: 13.5px; }
.float-alert span { font-size: 11.5px; color: var(--muted); }

/* ===== Trust strip ===== */
.trust-strip { padding: 16px 0 6px; }
.trust-strip .wrap { text-align: center; }
.trust-strip p { font-size: 13.5px; font-weight: 700; color: var(--muted); margin-bottom: 16px; }
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 13.5px; font-weight: 600; padding: 8px 16px 8px 8px; border-radius: 999px;
}
.pill-badge-icon {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: #eaf1fe; color: var(--primary);
  display: grid; place-items: center;
}
.pill-badge-icon svg { width: 13px; height: 13px; }

/* ===== Section head ===== */
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head .chip { display: inline-flex; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 36px); }
.section-head h2 .hl { color: var(--primary); }
.section-lead { color: var(--ink-soft); font-size: 15.5px; }

/* ===== Device types ===== */
.device-types { padding: 56px 0 40px; }
.device-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: start;
}
.device-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(15,26,46,.1);
  padding: 28px;
  display: flex; flex-direction: column;
}
.device-card h3 { font-size: 19px; }
.device-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }
.device-card-camera {
  background: linear-gradient(160deg, #1657d6, #0b2f70);
  color: #fff; border-color: transparent;
}
.device-card-camera p { color: rgba(255,255,255,.82); margin-bottom: 0; }

/* Media block lives inside the card — same border, background and shadow as its parent */
.device-card-media { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.device-media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.device-media-item {
  position: relative; display: block; width: 100%; padding: 0;
  border: none; border-radius: 16px;
  overflow: hidden; background: #0f1a2e;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.device-media-item:hover, .device-media-item:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15,26,46,.22);
}
.device-media-item img {
  width: 100%; display: block; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.device-media-hero img { height: 200px; }
.device-media-thumb img { height: 128px; }
.device-media-item:hover img, .device-media-item:focus-visible img {
  transform: scale(1.06);
}
.device-media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(6,12,28,.9) 100%);
  color: #fff; font-weight: 700; letter-spacing: -.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  padding: 26px 14px 12px;
  font-size: 13.5px;
}
.device-media-hero .device-media-caption { font-size: 14.5px; padding: 32px 18px 14px; }
.device-media-zoom {
  position: absolute; right: 10px; top: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; display: grid; place-items: center;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.device-media-item:hover .device-media-zoom,
.device-media-item:focus-visible .device-media-zoom {
  opacity: 1; transform: translateY(0);
}
.device-media-zoom svg { width: 14px; height: 14px; }

/* ===== Lightbox ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(8,15,34,.92); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: min(90vw, 1100px); text-align: center; }
.lightbox-figure img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-figure figcaption { color: rgba(255,255,255,.82); font-size: 14.5px; margin-top: 16px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; display: grid; place-items: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* ===== Feature showcase / tab carousel ===== */
.showcase { padding: 40px 0 40px; }

.tab-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 999px;
  transition: all .15s ease;
}
.tab svg { width: 16px; height: 16px; }
.tab.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }

.carousel {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: nowrap;
}
.carousel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; flex: 1 1 300px; max-width: 320px;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease, background .25s ease;
}
.carousel-card p, .carousel-card h3 { color: inherit; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.card-icon svg { width: 21px; height: 21px; }
.carousel-card h3 { font-size: 18.5px; }
.carousel-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.card-cta svg { width: 14px; height: 14px; }

.carousel-card.is-side {
  transform: scale(.92);
  opacity: .7;
}
.carousel-card.is-center {
  background: linear-gradient(160deg, #1657d6, #0b2f70);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 28px 56px rgba(8,20,54,.22);
  opacity: 1;
  z-index: 2;
}
.carousel-card.is-center p { color: rgba(255,255,255,.82); }
.carousel-card.is-center .card-cta { color: #7fb2ff; }

/* ===== Spotlight ===== */
.spotlight { padding: 40px 0 90px; }
.spotlight-stage { position: relative; display: flex; justify-content: center; padding-top: 40px; }
.spotlight-lines {
  position: absolute; top: 0; left: 50%; width: 1px; height: 40px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--line) 80%);
}
.spotlight-lines::before, .spotlight-lines::after {
  content: ""; position: absolute; top: 0; width: 120px; height: 1px; background: var(--line);
}
.spotlight-lines::before { right: 0; transform: rotate(28deg); transform-origin: right top; }
.spotlight-lines::after { left: 0; transform: rotate(-28deg); transform-origin: left top; }

/* Annotation callouts */
.annotated-card { position: relative; width: 100%; max-width: 760px; }
.annotated-card .spotlight-card { margin: 0 auto; }
.annotate-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 1; }
.annotate-svg path {
  fill: none; stroke: var(--primary); stroke-width: 1.5; stroke-dasharray: 5 5;
  opacity: .55;
}
.annotate-svg circle { fill: var(--primary); }
.annotate-label {
  position: absolute; z-index: 2;
  font-size: 13px; font-weight: 700; color: var(--primary);
  background: #fff; border: 1px solid #d3e2fb; border-radius: 999px;
  padding: 6px 14px; white-space: nowrap;
  box-shadow: 0 10px 20px rgba(5,75,202,.14);
}
.annotate-detection { left: 0; top: 34%; }
.annotate-activity { left: 4%; top: 52%; }
.annotate-time { left: 8%; top: 78%; }
.annotate-when { right: 0; top: 64%; }
@media (max-width: 900px) {
  .annotated-card { max-width: 380px; }
  .annotate-svg, .annotate-label { display: none; }
}

.spotlight-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(15,26,46,.1);
  padding: 26px; width: 100%; max-width: 380px;
}
.spotlight-alt { padding-top: 0; }

.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.modal-head h4 { margin: 0; font-size: 16px; }
.modal-close {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--primary); color: var(--primary);
  display: grid; place-items: center;
}
.modal-close svg { width: 13px; height: 13px; }

.photo-block {
  width: 100%; height: 170px; border-radius: 12px; margin-bottom: 20px;
  background: #eef2fb; color: #9db3dc;
  display: grid; place-items: center; overflow: hidden;
}
.photo-block svg { width: 44px; height: 44px; }
.photo-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-block svg.illustration { width: 100%; height: 100%; }

.scene-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted); margin: 0 0 8px;
}
.scene-block {
  position: relative; width: 100%; height: 96px; border-radius: 12px;
  background: #eef2fb; color: #9db3dc; overflow: hidden;
  display: grid; place-items: center; margin-bottom: 20px;
}
.scene-block svg { width: 30px; height: 30px; }
.scene-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scene-block svg.illustration { width: 100%; height: 100%; }

.field-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px;
}
.field-item.full { grid-column: 1 / -1; }
.field-item span {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--muted); margin-bottom: 5px;
}
.field-item strong { display: block; font-size: 14px; font-weight: 700; }
.field-item strong i { font-style: normal; font-weight: 500; font-size: 12px; color: var(--muted); }

.field-item .status-pill, .field-item .alarm-pill {
  display: inline-flex; align-items: center;
  padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700;
}
.field-item .status-pill { background: #eaf1fe; color: var(--primary); }
.field-item .alarm-pill { background: #fdeeee; color: #c23b3b; }

/* ===== Orbit section ===== */
.orbit-section { padding: 30px 0 96px; background: var(--bg); }
.orbit-wrap {
  position: relative;
  max-width: 620px; margin: 0 auto;
  height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-ring {
  position: absolute; inset: 0;
  border: 1.5px dashed #cfdaf2; border-radius: 50%;
}
.orbit-center {
  position: relative; z-index: 2;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #1a5fe0, #081f5c);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 30px 60px rgba(8,20,54,.28);
  text-align: center;
  padding: 20px;
}
.orbit-center-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.3);
  display: grid; place-items: center; margin-bottom: 8px;
}
.orbit-center-icon svg { width: 22px; height: 22px; }
.orbit-center strong { font-size: 14.5px; }
.orbit-center span { font-size: 12px; color: rgba(255,255,255,.7); }

.orbit-chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(15,26,46,.08);
}
.orbit-chip svg { width: 16px; height: 16px; }
.orbit-chip.muted-chip { opacity: .8; }
.chip-pos-1 { top: 26px; left: 12px; color: #c23b3b; }
.chip-pos-1 svg { color: #c23b3b; }
.chip-pos-2 { bottom: 46px; left: -6px; }
.chip-pos-3 { top: 26px; right: 12px; }
.chip-pos-4 { bottom: 46px; right: -6px; color: #1f9d55; }
.chip-pos-4 svg { color: #1f9d55; }

/* ===== Speed / how it works ===== */
.speed-section { padding: 40px 0 96px; }
.speed-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mini-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.mini-steps li { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 700; font-size: 13.5px;
  display: grid; place-items: center;
}
.mini-steps strong { display: block; font-size: 15px; }
.mini-steps span { font-size: 13.5px; color: var(--muted); }

.speed-card-wrap { display: flex; justify-content: center; }
.dash-stack { position: relative; width: 100%; max-width: 480px; padding: 6px 34px 46px 6px; }
.dash-window {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 30px 60px rgba(15,26,46,.14);
  overflow: hidden;
}
.dash-window-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 10px; background: #f1f4fa; border-bottom: 1px solid var(--line);
}
.dash-dot { width: 7px; height: 7px; border-radius: 50%; background: #d7deec; flex: none; }
.dash-url {
  margin-left: 8px; font-size: 10.5px; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.dash-window img { display: block; width: 100%; height: auto; }
.dash-window-main { position: relative; z-index: 1; }
.dash-window-side {
  position: absolute; width: 58%; right: -6px; bottom: -8px; z-index: 2;
  box-shadow: 0 24px 48px rgba(15,26,46,.2);
}

/* ===== Final CTA ===== */
.final-cta { padding: 20px 16px 90px; }
.final-cta-card {
  position: relative; overflow: hidden;
  max-width: var(--wrap); margin: 0 auto;
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 160% at 20% 0%, #1a5fe0 0%, #0e3faf 45%, #081f5c 100%);
  color: #fff; text-align: center;
  padding: 72px 24px;
}
.final-cta-logo { height: 22px; margin: 0 auto 22px; opacity: .9; }
.final-cta-card h2 { font-size: clamp(26px, 3.6vw, 36px); color: #fff; }
.final-cta-card p { color: rgba(255,255,255,.78); max-width: 46ch; margin: 0 auto 30px; }
.final-cta-card .hero-form { position: relative; z-index: 2; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); padding-top: 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px;
}
.footer-brand .footer-logo { height: 20px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); max-width: 32ch; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .speed-inner { grid-template-columns: 1fr; }
  .speed-card-wrap { order: -1; }
}

@media (max-width: 860px) {
  .hero-nav { display: none; }
  .pill-menu-btn { display: inline-flex; }
  .device-grid { grid-template-columns: 1fr; }
  .device-media-zoom { opacity: 1; transform: translateY(0); }
  .carousel { flex-wrap: wrap; }
  .carousel-card { max-width: 100%; flex: 1 1 100%; }
  .carousel-card.is-side { display: none; }
  .carousel-card.is-center { transform: none; }
  .orbit-wrap { height: auto; flex-direction: column; gap: 16px; padding: 20px 0; }
  .orbit-ring { display: none; }
  .orbit-chip { position: static; }
  .orbit-center { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .hero-floaters {
    position: static; height: auto; margin: 22px 0 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .float-card, .float-main, .float-stat, .float-alert {
    position: static; width: 100%; max-width: 340px; margin: 0 auto; transform: none;
  }
  .hero-card { padding-bottom: 28px; }
  .showcase, .spotlight, .orbit-section, .speed-section { padding: 56px 0; }
  .final-cta { padding: 16px 16px 56px; }
  .final-cta-card { padding: 52px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* FORM STATUS (real server response from the contact-form submit) */
.form-status {
  margin-top: 12px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.78);
  text-align: center; opacity: 0; transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.form-status.is-visible { opacity: 1; transform: none; }
.form-status.is-ok { color: #8ff0b0; }
.form-status.is-error { color: #ffb4b4; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(15,26,46,.28);
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(15,26,46,.34); }
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 420px) {
  .hero-form { flex-direction: column; border-radius: 20px; padding: 10px; }
  .hero-form input { width: 100%; text-align: center; padding: 8px 6px; }
  .hero-form button { width: 100%; justify-content: center; }
}
