:root {
  --bg: #030d15;
  --bg-soft: #071827;
  --bg-card: #0b2334;
  --bg-panel: rgba(7, 24, 36, 0.8);
  --bg-panel-strong: rgba(10, 31, 47, 0.94);
  --text: #e8f3ff;
  --muted: #a3bed2;
  --line: rgba(162, 201, 225, 0.16);
  --line-strong: rgba(162, 201, 225, 0.32);
  --brand: #69dcff;
  --brand-strong: #0eaede;
  --accent: #ffbe7e;
  --radius: 18px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  --container: min(1240px, 92vw);
  --space-section: clamp(4.4rem, 8vw, 6.8rem);
  --space-stack: clamp(0.95rem, 2vw, 1.4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Arial", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(31, 167, 225, 0.2), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(255, 164, 84, 0.16), transparent 30%),
    linear-gradient(160deg, #02080d, #061522 40%, #081a28 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  font-family: "Montserrat", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.55rem);
}

h3 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  z-index: 9999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(10px);
  background: rgba(2, 13, 22, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  overflow: visible;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(3, 19, 31, 0.9);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-icon {
  width: 20px;
  height: 20px;
}

.nav-icon line {
  stroke: #d8efff;
  stroke-width: 2;
  stroke-linecap: round;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-icon line:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-icon line:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-icon line:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-menu {
  margin-left: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.05rem;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.nav-list a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.86rem 1.42rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #042338;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 14px 30px rgba(41, 179, 228, 0.28);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid rgba(152, 232, 255, 0.92);
  outline-offset: 3px;
}

.btn-sm {
  padding: 0.56rem 1.02rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 7.2rem) 0 clamp(3.5rem, 7vw, 5rem);
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: -3;
  opacity: 0.23;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(2, 12, 20, 0.97) 27%, rgba(5, 23, 36, 0.65) 66%),
    radial-gradient(circle at 25% 40%, rgba(0, 166, 232, 0.35), transparent 44%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.35rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8dd9de;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 65ch;
}

.hero-intro {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
  max-width: 70ch;
}

.hero-subtitle {
  margin: 0.45rem 0 0.1rem;
  font-size: clamp(1.02rem, 1.6vw, 1.26rem);
  line-height: 1.32;
}

.hero-list {
  margin-top: 0.15rem;
}

.hero-compact-note {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 38, 56, 0.92), rgba(6, 20, 30, 0.82));
  box-shadow: var(--shadow);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 0.25s ease;
}

.hero-card img {
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.hero-card figcaption {
  padding: 0.95rem 1rem 1.08rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.products-hero .hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
}

.products-hero .hero-copy h1 {
  max-width: 20ch;
}

.products-hero .hero-lead {
  max-width: 62ch;
  line-height: 1.56;
}

.products-hero-card {
  max-width: 390px;
  width: 100%;
  margin-left: auto;
  transform: none;
}

.products-hero-card img {
  width: 100%;
  height: clamp(220px, 22vw, 290px);
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0.8rem 0.9rem 0.4rem;
}

.products-hero-card figcaption {
  font-size: 0.87rem;
  line-height: 1.42;
  padding-top: 0.64rem;
}

.home-hero {
  position: relative;
  isolation: isolate;
  background: #041421;
  --home-hero-copy-width: min(620px, 45vw);
  --home-hero-lift: -5%;
  --home-hero-x-shift: clamp(0px, 2.4vw, 30px);
  --home-hero-video-overscan: 1.18;
  --home-hero-video-pan-x: -10%;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% * var(--home-hero-video-overscan));
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.46) contrast(1.08) brightness(0.92);
  transform: translateX(calc(-50% + var(--home-hero-video-pan-x)));
  transform-origin: center;
}

.home-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(2, 10, 16, 0.3) 0%,
    rgba(2, 10, 16, 0.54) 36%,
    rgba(3, 11, 18, 0.88) 70%,
    rgba(3, 11, 18, 0.97) 100%
  );
}

.home-hero-wrap {
  position: relative;
  z-index: 2;
  min-height: clamp(620px, 78vh, 840px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  isolation: isolate;
  transform: translateX(var(--home-hero-x-shift)) translateY(var(--home-hero-lift));
}

.home-hero .eyebrow {
  width: var(--home-hero-copy-width);
  max-width: 100%;
  margin: 0 0 0.8rem;
  text-align: left;
  color: var(--brand);
  letter-spacing: 0.14em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-stack);
  width: var(--home-hero-copy-width);
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.home-hero-copy h1 {
  color: #ffffff;
  font-size: clamp(2.05rem, 3.4vw, 3.45rem);
  line-height: 1.02;
  font-weight: 700;
  max-width: 13ch;
  letter-spacing: -0.03em;
}

.home-hero-subtitle {
  color: var(--brand);
  font-size: clamp(1.02rem, 1.28vw, 1.18rem);
  line-height: 1.38;
  font-weight: 600;
  margin: 0;
}

.home-hero-lead {
  color: #d6e7f3;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.68;
  max-width: 58ch;
  margin: 0;
}

.home-hero-points {
  display: grid;
  gap: 0.48rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-hero-points li {
  position: relative;
  color: #d6e7f3;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.62;
  padding: 0 0 0 0.92rem;
}

.home-hero-points li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #8dd9de;
}

.home-hero .hero-actions {
  margin: 0.2rem 0 0;
}

.hero-microcopy {
  color: #90aabd;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 58ch;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-proof-grid li {
  display: grid;
  gap: 0.5rem;
  min-height: 100%;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(7, 24, 36, 0.86), rgba(7, 20, 30, 0.52));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero-proof-grid strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-proof-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  gap: 0.75rem;
}

.kpis li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(3, 14, 24, 0.56);
}

.kpis strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.kpis span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: var(--space-section) 0;
}

.section-slim {
  padding: clamp(3.2rem, 6vw, 4.5rem) 0;
}

.section-compact {
  padding-top: 2.2rem;
}

.section-layered {
  background:
    linear-gradient(180deg, rgba(5, 17, 27, 0.62), rgba(4, 12, 20, 0.16)),
    radial-gradient(circle at 12% 0, rgba(88, 178, 216, 0.12), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(8, 29, 44, 0.84), rgba(4, 17, 27, 0.95)),
    radial-gradient(circle at 85% 10%, rgba(255, 170, 95, 0.2), transparent 30%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spotlight-grid,
.featured-grid,
.glance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.spotlight-copy p,
.featured-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.spotlight-media,
.glance-media,
.featured-media {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(5, 19, 30, 0.78);
}

.featured-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.glance-media {
  min-height: clamp(360px, 38vw, 560px);
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 58% 32%, rgba(24, 96, 140, 0.34), transparent 58%),
    linear-gradient(170deg, #081726, #020a12 70%);
}

.glance-media img {
  width: 100%;
  height: clamp(300px, 31vw, 480px);
  object-fit: contain;
  aspect-ratio: auto;
  padding: 0.8rem 0.9rem 0.4rem;
}

.spotlight-media {
  min-height: clamp(320px, 34vw, 520px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 56% 42%, rgba(35, 125, 170, 0.42), transparent 60%),
    linear-gradient(165deg, #081826, #040d15 68%);
}

.spotlight-media img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  transform: translateX(4%) scale(1.08);
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.46));
}

.partnership-media {
  align-items: center;
  padding: 0.7rem;
}

.partnership-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: saturate(1.05) contrast(1.04);
}

.glance-media figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.featured-media {
  position: relative;
}

.spotlight-copy,
.featured-copy,
.glance-copy {
  max-width: 640px;
}

.spotlight-copy p + p,
.featured-copy p + p {
  margin-top: 1rem;
}

.spotlight-copy h2,
.featured-copy h2,
.glance-copy h2 {
  margin-bottom: 1rem;
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  color: #d8f0ff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
}

.cta-inline::after {
  content: "";
  width: 15px;
  height: 13px;
  margin-left: 0.48rem;
  background: url("../assets/images/triangle-arrow.png") center / contain no-repeat;
  transition: transform 0.2s ease;
}

.cta-inline:hover {
  color: #fff;
}

.cta-inline:hover::after {
  transform: translateX(3px);
}

button.cta-inline {
  appearance: none;
}

.glance-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 1rem;
}

.glance-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: rgba(5, 19, 30, 0.64);
}

.glance-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.03rem;
}

.glance-list p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* VELDAR-like composition for Spotlight / Featured / Glance */
#spotlight .veldar-spotlight-grid,
#featured-app .veldar-featured-grid,
#glance .veldar-glance-grid {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#spotlight .veldar-spotlight-grid {
  background-image: radial-gradient(circle at 80%, #0c2046, #000);
}

#featured-app .veldar-featured-grid,
#glance .veldar-glance-grid {
  background-image: radial-gradient(circle at 100%, #0b070e, #0d091e);
}

#spotlight .veldar-spotlight-copy .eyebrow,
#featured-app .veldar-featured-copy .eyebrow {
  color: #fff;
  margin-bottom: 0.35rem;
}

#spotlight .veldar-spotlight-copy h2,
#featured-app .veldar-featured-copy h2 {
  color: #8dd9de;
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.1;
}

#spotlight .veldar-spotlight-copy p,
#featured-app .veldar-featured-copy p,
#glance .veldar-glance-copy p {
  color: #cfcfcf;
  font-size: 1.02rem;
  line-height: 1.65;
}

#spotlight .veldar-spotlight-copy p + p,
#featured-app .veldar-featured-copy p + p {
  margin-top: 1rem;
}

#spotlight .veldar-spotlight-media {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: auto;
  overflow: visible;
}

#spotlight .veldar-spotlight-media img {
  filter: hue-rotate(318deg);
  width: min(100%, 450px);
  min-width: 150px;
  margin: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
}

#featured-app .veldar-featured-media {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

#featured-app .veldar-featured-media img {
  border-radius: 0;
  height: clamp(190px, 20vw, 248px);
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

#featured-app .play-fab {
  width: min(6.8vw, 62px);
  height: min(6.8vw, 62px);
  min-width: 44px;
  min-height: 44px;
  z-index: 3;
  pointer-events: none;
}

#featured-app .veldar-featured-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 1.9vw, 1.4rem);
  align-items: center;
}

#featured-app .veldar-featured-media {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  position: relative;
}

#featured-app .veldar-featured-copy {
  max-width: 600px;
}

#featured-app .featured-video-hit {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

#featured-app .featured-video-hit:focus-visible {
  outline: 2px solid rgba(141, 217, 222, 0.9);
  outline-offset: -3px;
}

#featured-app .veldar-featured-copy .eyebrow {
  margin-bottom: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#featured-app .veldar-featured-copy h2 {
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.15vw, 2.02rem);
  line-height: 1.1;
  margin-bottom: 0.68rem;
}

#featured-app .veldar-featured-copy p {
  color: #d4e0eb;
  font-size: 0.96rem;
  line-height: 1.52;
  max-width: 52ch;
}

#featured-app .veldar-featured-copy p + p {
  margin-top: 0.62rem;
}

#featured-app .veldar-featured-copy .cta-inline {
  margin-top: 0.88rem;
  font-size: 0.93rem;
}

#glance .veldar-glance-copy h2 {
  color: #d6ecff;
  margin: 0 0 1.2rem;
  padding: 0;
  font-size: clamp(1.58rem, 2.2vw, 2rem);
  line-height: 1.2;
}

#glance .veldar-glance-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1rem, 1.9vw, 1.45rem);
  align-items: center;
}

#glance .veldar-glance-copy {
  max-width: 620px;
  order: 2;
}

#glance .veldar-glance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

#glance .veldar-glance-list li {
  margin: 0;
  border: 1px solid rgba(151, 209, 248, 0.24);
  border-radius: 12px;
  padding: 0.92rem 1rem;
  background: linear-gradient(160deg, rgba(7, 28, 44, 0.74), rgba(6, 20, 31, 0.5));
}

#glance .veldar-glance-list h3 {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.28;
  margin: 0 0 0.32rem;
  font-weight: 700;
}

#glance .veldar-glance-list p {
  color: #cfe2f1;
  padding: 0;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.48;
}

#glance .veldar-glance-media {
  z-index: 0;
  border: 1px solid rgba(154, 210, 246, 0.22);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(9, 30, 45, 0.9), rgba(5, 19, 30, 0.88));
  width: 100%;
  max-width: 500px;
  min-height: auto;
  margin-left: 0;
  margin-right: auto;
  order: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

#glance .veldar-glance-media img {
  width: min(100%, 460px);
  height: clamp(220px, 21vw, 300px);
  filter: brightness(1.08) saturate(1.08) contrast(1.04) drop-shadow(0 20px 36px rgba(0, 0, 0, 0.42));
  object-fit: contain;
  padding: 0.46rem 0.55rem 0.2rem;
  transform: none;
  transform-origin: center;
}

#glance .veldar-glance-caption {
  color: #9fb7ca;
  text-align: center;
  margin-top: 0.15rem;
  padding: 0 0.7rem 0.65rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: normal;
}

#spotlight .cta-inline,
#featured-app .cta-inline {
  color: #fff;
}

#glance .cta-inline {
  color: #fff;
  margin-top: 0.85rem;
  font-size: 0.92rem;
}

.play-fab {
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease;
}

.play-fab:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.play-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.42));
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.principle {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.15rem;
  background: linear-gradient(160deg, rgba(11, 38, 55, 0.88), rgba(7, 20, 31, 0.82));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.principle h2 {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  margin-bottom: 0.5rem;
}

.principle h3 {
  margin-bottom: 0.58rem;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.3;
}

.principle p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.section-head {
  display: grid;
  gap: 0.85rem;
  max-width: 860px;
  margin-bottom: clamp(1.7rem, 4vw, 2.6rem);
}

.section-head p {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.68;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.15rem;
  background: linear-gradient(165deg, rgba(11, 39, 56, 0.92), rgba(8, 25, 37, 0.76));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.24);
}

.tile h3 {
  margin-bottom: 0.6rem;
  line-height: 1.32;
}

.tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tile p {
  color: var(--muted);
  font-size: 0.94rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.benefit-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
  background: rgba(4, 19, 30, 0.7);
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
  line-height: 1.62;
}

.bullet-list li + li {
  margin-top: 0;
}

#partnership .spotlight-copy .btn {
  margin-top: 1rem;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-cards article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(4, 20, 32, 0.78);
}

.product-cards p {
  color: var(--muted);
}

.product-specs .section-head {
  max-width: 920px;
  margin-bottom: 1.45rem;
}

.specs-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 90% 5%, rgba(40, 125, 168, 0.2), transparent 28%),
    linear-gradient(165deg, rgba(8, 28, 43, 0.86), rgba(4, 17, 27, 0.96));
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.24);
}

.spec-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.22rem;
  border: 1px solid rgba(157, 212, 245, 0.2);
  border-radius: 12px;
  background: rgba(4, 18, 28, 0.72);
}

.spec-tab {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.66rem 0.9rem;
  font-family: inherit;
  font-size: 0.89rem;
  font-weight: 700;
  color: #c3def0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spec-tab:hover {
  color: #ffffff;
  border-color: rgba(140, 214, 248, 0.26);
}

.spec-tab:focus-visible {
  outline: 2px solid rgba(140, 223, 255, 0.92);
  outline-offset: 2px;
}

.spec-tab.is-active {
  color: #ffffff;
  border-color: rgba(142, 220, 255, 0.64);
  background: linear-gradient(170deg, rgba(39, 113, 153, 0.66), rgba(6, 25, 38, 0.8));
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(197, 238, 255, 0.28);
}

.spec-panel {
  min-width: 0;
}

.spec-panel[hidden] {
  display: none;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.spec-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 0.92rem;
  background: linear-gradient(175deg, rgba(7, 25, 38, 0.86), rgba(4, 17, 28, 0.8));
  box-shadow: inset 0 1px 0 rgba(201, 236, 255, 0.06);
}

.spec-card-performance {
  border-color: rgba(125, 213, 251, 0.34);
}

.spec-card-io {
  border-color: rgba(255, 188, 126, 0.3);
}

.spec-card-environment {
  border-color: rgba(135, 224, 188, 0.28);
}

.spec-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0 0 0.5rem;
  padding: 0.24rem 0.58rem 0.24rem 0.36rem;
  border: 1px solid rgba(144, 200, 233, 0.28);
  border-radius: 999px;
  background: rgba(9, 32, 48, 0.58);
  color: #adcadf;
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.spec-card-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid rgba(144, 200, 233, 0.45);
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(46, 134, 182, 0.42), rgba(12, 36, 52, 0.9));
  flex: 0 0 14px;
}

.spec-card-performance .spec-card-badge::before {
  border-color: rgba(144, 224, 255, 0.62);
  background:
    linear-gradient(to top, #9be8ff 100%, #9be8ff 100%) 2px calc(100% - 2px) / 2px 4px no-repeat,
    linear-gradient(to top, #9be8ff 100%, #9be8ff 100%) 6px calc(100% - 2px) / 2px 7px no-repeat,
    linear-gradient(to top, #9be8ff 100%, #9be8ff 100%) 10px calc(100% - 2px) / 2px 10px no-repeat,
    linear-gradient(165deg, rgba(65, 161, 212, 0.36), rgba(7, 26, 39, 0.92));
}

.spec-card-io .spec-card-badge::before {
  border-color: rgba(255, 194, 137, 0.58);
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 50%, #ffd2a8 20%, transparent 23%),
    linear-gradient(#ffd2a8, #ffd2a8) 2px 2px / 10px 1px no-repeat,
    linear-gradient(#ffd2a8, #ffd2a8) 2px calc(100% - 3px) / 10px 1px no-repeat,
    linear-gradient(#ffd2a8, #ffd2a8) 2px 2px / 1px 10px no-repeat,
    linear-gradient(#ffd2a8, #ffd2a8) calc(100% - 3px) 2px / 1px 10px no-repeat,
    linear-gradient(165deg, rgba(180, 126, 80, 0.36), rgba(29, 20, 13, 0.9));
}

.spec-card-environment .spec-card-badge::before {
  border-color: rgba(144, 231, 189, 0.58);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #92f0c6 24%, transparent 26%),
    radial-gradient(circle at 50% 50%, transparent 43%, #92f0c6 46%, transparent 49%),
    linear-gradient(165deg, rgba(50, 129, 100, 0.4), rgba(9, 27, 21, 0.9));
}

.spec-card h3 {
  margin-bottom: 0.64rem;
  font-size: 1.02rem;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.spec-list {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.34rem 0;
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  align-self: stretch;
  padding: 0.54rem 0.62rem;
  border: 1px solid rgba(146, 202, 235, 0.2);
  background: linear-gradient(150deg, rgba(8, 28, 43, 0.66), rgba(5, 18, 30, 0.42));
}

.spec-list dt:nth-of-type(even),
.spec-list dt:nth-of-type(even) + dd {
  background: linear-gradient(150deg, rgba(6, 23, 36, 0.72), rgba(5, 17, 27, 0.48));
}

.spec-list dt {
  color: #d8e9f8;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.34;
  border-right: 0;
  border-radius: 10px 0 0 10px;
}

.spec-list dd {
  text-align: right;
  color: #f0f8ff;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  white-space: normal;
  max-width: 25ch;
  justify-self: stretch;
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.spec-doc-links {
  margin-top: 1.08rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.spec-doc-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(149, 212, 247, 0.25);
  border-radius: 12px;
  padding: 0.65rem 0.84rem;
  background: rgba(5, 22, 34, 0.72);
  color: #c6e8ff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.spec-doc-links a:hover {
  border-color: rgba(143, 222, 255, 0.68);
  background: rgba(9, 33, 48, 0.9);
  color: #ffffff;
}

.product-specs-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(188, 229, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(244, 248, 252, 0.96));
  padding-bottom: clamp(4.4rem, 6vw, 5.4rem);
}

.product-specs-headline {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.product-specs-headline h1 {
  margin: 0;
  color: #12263a;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.product-specs-headline p:last-child {
  max-width: 56ch;
}

.spec-sheet-shell {
  margin-bottom: 0.25rem;
  overflow: hidden;
  border: 1px solid rgba(16, 28, 42, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 6%, rgba(72, 164, 217, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(9, 17, 26, 0.99), rgba(14, 23, 35, 0.99));
  box-shadow: 0 28px 62px rgba(11, 19, 29, 0.22);
}

.spec-sheet-media {
  margin: 0;
  aspect-ratio: 3.45 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(36, 42, 48, 0.96), rgba(20, 25, 31, 0.98));
}

.spec-sheet-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 32%;
}

.spec-sheet-titlebar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(160, 215, 246, 0.14);
  border-bottom: 1px solid rgba(160, 215, 246, 0.14);
  color: #f3f8fc;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, rgba(18, 27, 39, 0.94), rgba(12, 20, 31, 0.94));
}

.spec-compare-scroll {
  overflow-x: auto;
  padding: 0 0.8rem;
}

.spec-compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #eef7ff;
}

.spec-compare-table thead th {
  padding: 0.8rem 0.72rem;
  border-bottom: 1px solid rgba(162, 217, 246, 0.16);
  color: #d4ecfb;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
}

.spec-compare-table thead th:first-child,
.spec-compare-table thead th:nth-child(2) {
  text-align: left;
}

.spec-compare-table tbody th,
.spec-compare-table tbody td {
  padding: 0.66rem 0.72rem;
  border-top: 1px solid rgba(162, 217, 246, 0.1);
  vertical-align: middle;
}

.spec-compare-table tbody tr:first-child th,
.spec-compare-table tbody tr:first-child td {
  border-top: 0;
}

.spec-group-cell {
  width: 110px;
  color: #7fd8ff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  vertical-align: top;
  padding-top: 1rem;
}

.spec-row-label {
  width: 230px;
  color: #dbeaf7;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
}

.spec-compare-table tbody td {
  color: #f7fbff;
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
}

.spec-col-group {
  width: 110px;
}

.spec-col-label {
  width: 230px;
}

.spec-sheet-docs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem 1rem 1.15rem;
  border-top: 1px solid rgba(160, 215, 246, 0.12);
  background: linear-gradient(180deg, rgba(11, 20, 31, 0.92), rgba(9, 16, 25, 0.95));
}

.spec-sheet-docs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(149, 212, 247, 0.18);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  color: #d2ecff;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: rgba(7, 19, 30, 0.72);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.spec-sheet-docs a:hover {
  border-color: rgba(143, 222, 255, 0.56);
  background: rgba(11, 28, 43, 0.92);
  color: #ffffff;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.roadmap-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  background: linear-gradient(160deg, rgba(9, 30, 45, 0.94), rgba(4, 18, 29, 0.96));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.roadmap-step span {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.roadmap-step h3 {
  margin-bottom: 0.55rem;
  line-height: 1.28;
}

.roadmap-step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.dynamic-showcase {
  position: relative;
  overflow: clip;
}

.visight-scroll-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.05rem;
  align-items: start;
  margin-top: 0.3rem;
}

.visight-stage {
  position: relative;
  top: auto;
  margin-left: -1.8rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.visight-lottie {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  border: 1px solid rgba(184, 225, 255, 0.22);
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 25%, rgba(15, 98, 139, 0.26), transparent 52%),
    #04131e;
}

.visight-local-note {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #c8e7ff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.visight-lottie canvas,
.visight-lottie svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  transform: scale(1.16) translateX(-13%);
  transform-origin: center;
  filter: saturate(1.18) contrast(1.05);
}

.visight-controls {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.68rem 0.2rem 0;
  border-top: 0;
  background: transparent;
}

.visight-scrub-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visight-scrub {
  flex: 1;
  accent-color: #34d2ff;
}

.visight-points {
  display: grid;
  gap: 0.32rem;
  align-self: start;
  margin-top: 0.4rem;
}

.visight-point {
  border: 0;
  border-left: 2px solid rgba(184, 230, 255, 0.24);
  border-radius: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  padding: 0.72rem 0.2rem 0.72rem 1rem;
  min-height: auto;
  display: block;
  opacity: 0.44;
  transform: translateY(8px);
  cursor: pointer;
  user-select: none;
  transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.visight-point-title {
  display: block;
  margin-bottom: 0.28rem;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.7vw, 1.54rem);
  font-weight: 700;
  line-height: 1.2;
}

.visight-point-text {
  display: block;
  color: #bfd6e7;
  font-size: clamp(0.93rem, 1vw, 1.02rem);
  line-height: 1.5;
}

.visight-point:focus-visible {
  outline: 2px solid rgba(140, 223, 255, 0.92);
  outline-offset: 2px;
}

.visight-point.is-active {
  opacity: 1;
  transform: translateY(0);
  border-left-color: rgba(129, 219, 255, 0.96);
  background: linear-gradient(90deg, rgba(58, 136, 183, 0.24), rgba(8, 20, 31, 0) 74%);
}

.visight-point.is-active .visight-point-text {
  color: #e6f6ff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 31, 46, 0.86), rgba(4, 18, 28, 0.95));
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card h3 {
  font-size: 1.02rem;
  padding: 0.88rem 0.95rem 0.25rem;
}

.video-card .video-open,
.video-card a {
  display: inline-flex;
  margin: 0 0.95rem 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.video-card .video-open {
  color: #c5eaff;
}

.video-card a:hover {
  text-decoration: underline;
}

.video-card a:last-child {
  margin-bottom: 1rem;
}

.demo-section {
  border-top: 0;
}

#videos .veldar-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background-image: radial-gradient(circle at 95% 35%, rgba(57, 111, 160, 0.3), rgba(12, 11, 26, 0.92) 58%);
}

.demo-cta-copy {
  max-width: 620px;
}

#videos .demo-primary {
  margin-top: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  font-weight: 800;
}

.demo-secondary {
  display: inline-block;
  margin-top: 0.6rem;
  color: #d0e2f0;
  text-decoration: none;
  max-width: 560px;
  line-height: 1.55;
  font-size: 1.01rem;
}

.demo-secondary:hover {
  color: #ffffff;
  text-decoration: underline;
}

.demo-mini-links {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.demo-chip {
  border: 1px solid rgba(159, 221, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 30, 45, 0.76);
  color: #d9f0ff;
  padding: 0.48rem 0.82rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.demo-chip:hover {
  border-color: rgba(127, 224, 255, 0.8);
  background: rgba(10, 43, 65, 0.88);
  color: #ffffff;
}

.demo-cta-media {
  display: grid;
  justify-items: end;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  text-decoration: none;
}

.demo-cta-media img {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  filter: brightness(1.04) drop-shadow(0 22px 38px rgba(0, 0, 0, 0.52));
}

.industries-hero {
  padding-top: 4.6rem;
  padding-bottom: 1.5rem;
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 102, 150, 0.34), transparent 52%),
    linear-gradient(180deg, rgba(5, 20, 31, 0.94), rgba(5, 20, 31, 0.46));
}

.industries-hero-inner {
  max-width: 980px;
  text-align: center;
}

.industries-hero-inner img {
  width: min(100%, 460px);
  height: auto;
  margin: 0 auto 0.3rem;
  filter: brightness(1.1) hue-rotate(284deg);
}

.industries-hero-inner h1 {
  margin: 0;
  font-size: clamp(1.95rem, 3.3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.industries-hero-inner p {
  max-width: 720px;
  margin: 0.9rem auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
}

.industries-videos {
  padding-top: 1.2rem;
}

.industries-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.industry-video-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(176deg, rgba(8, 27, 41, 0.9), rgba(5, 18, 28, 0.94));
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.industry-video-card:hover {
  border-color: rgba(147, 220, 255, 0.46);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.industry-video-hit {
  display: block;
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.industry-video-copy {
  padding: 1rem 1rem 0.74rem;
  cursor: pointer;
}

.industry-video-copy h2 {
  margin: 0;
  font-size: clamp(1.04rem, 1.3vw, 1.24rem);
  line-height: 1.25;
}

.industry-video-copy p {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.46;
  min-height: 4.15rem;
}

.industry-video-copy:focus-visible {
  outline: 2px solid rgba(134, 217, 255, 0.9);
  outline-offset: -2px;
}

.industry-video-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-video-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.industry-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.industry-video-play > img {
  width: min(84px, 22%);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.5));
  transition: transform 0.24s ease;
}

.industry-video-card:hover .industry-video-play img {
  transform: scale(1.05);
}

.industry-video-hit:focus-visible {
  outline: 2px solid rgba(134, 217, 255, 0.9);
  outline-offset: -2px;
}

.more-videos {
  margin-top: 1rem;
  color: var(--muted);
}

.more-videos a {
  color: #b1e7ff;
}

.docs-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.85rem;
}

.docs-list li {
  color: var(--muted);
}

.docs-list a {
  color: #def4ff;
}

.docs-list a:hover {
  color: #fff;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  background: linear-gradient(160deg, rgba(7, 23, 35, 0.88), rgba(5, 18, 28, 0.72));
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.cta-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10, 33, 48, 0.97), rgba(4, 16, 26, 0.98));
  box-shadow: var(--shadow);
}

.cta-box img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.cta-box > div {
  padding: 1.55rem 1.55rem 1.8rem;
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.cta-box p {
  color: var(--muted);
  line-height: 1.68;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-meta-card {
  border: 1px solid rgba(173, 214, 237, 0.18);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(7, 23, 35, 0.68);
}

.contact-meta-card strong {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.94rem;
  line-height: 1.35;
}

.contact-meta-card p {
  font-size: 0.86rem;
  line-height: 1.58;
}

.lead-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

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

.field {
  display: grid;
  gap: 0.38rem;
  font-size: 0.86rem;
  color: #c8deee;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 22, 33, 0.82);
  color: #eef8ff;
  border-radius: 12px;
  padding: 0.74rem 0.82rem;
  font: inherit;
}

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

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(67, 214, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(67, 214, 255, 0.18);
}

.field-full {
  grid-column: 1 / -1;
}

.field-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.45rem;
}

.field-check input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  padding: 0;
  margin-top: 0.2rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  color: #8eafc5;
  font-size: 0.77rem;
  line-height: 1.45;
}

.form-status {
  margin: 0;
  min-height: 1.15em;
  font-size: 0.84rem;
  color: #cbe8ff;
}

.form-status.is-success {
  color: #9ff0bf;
}

.form-status.is-error {
  color: #ffb9b9;
}

.lead-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.4rem;
}

.footer-grid {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-grid p {
  color: var(--muted);
}

.footer-links {
  margin-top: 0.3rem;
  font-size: 0.86rem;
}

.footer-links a {
  color: #c6e8ff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem;
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2vh 0;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.media-lightbox-dialog {
  position: relative;
  width: min(980px, 92vw);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(3, 15, 23, 0.98);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-lightbox-title {
  margin: 0;
  padding: 1rem 5rem 0.9rem 1.15rem;
  color: #eef6ff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.media-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(8, 29, 42, 0.96);
  color: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.media-lightbox-close:hover {
  transform: scale(1.04);
  background: rgba(12, 42, 61, 0.98);
  border-color: rgba(147, 220, 255, 0.46);
}

.media-lightbox-close:focus-visible {
  outline: 2px solid rgba(134, 217, 255, 0.9);
  outline-offset: 2px;
}

.media-lightbox-body {
  aspect-ratio: 16 / 9;
}

.media-lightbox-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .tile-grid,
  .benefits-grid,
  .roadmap-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-hero-bg {
    inset: 0;
  }

  .home-hero {
    --home-hero-copy-width: min(560px, 48vw);
    --home-hero-lift: -6%;
    --home-hero-x-shift: clamp(0px, 2.3vw, 28px);
    --home-hero-video-overscan: 1.14;
    --home-hero-video-pan-x: -8%;
  }

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

  .home-hero-wrap {
    min-height: clamp(520px, 72vw, 700px);
  }

  .home-hero-video {
    transform: translateX(calc(-50% + var(--home-hero-video-pan-x)));
  }

  .hero-card {
    max-width: 600px;
  }

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

  .products-hero-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .products-hero-card img {
    height: clamp(220px, 46vw, 300px);
  }

  .visight-scroll-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .spotlight-grid,
  .featured-grid,
  .glance-grid {
    grid-template-columns: 1fr;
  }

  #featured-app .veldar-featured-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  #featured-app .veldar-featured-media {
    max-width: 460px;
  }

  #featured-app .veldar-featured-media img {
    height: clamp(180px, 42vw, 232px);
  }

  .spotlight-media {
    min-height: 300px;
  }

  .spotlight-media img {
    transform: none;
    width: min(100%, 520px);
  }

  .partnership-media img {
    width: 100%;
  }

  #glance .veldar-glance-media {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  #glance .veldar-glance-media img {
    transform: none;
    height: clamp(210px, 36vw, 300px);
  }

  .glance-media img {
    height: clamp(280px, 45vw, 430px);
  }

  .visight-stage {
    position: relative;
    top: auto;
    margin-left: 0;
  }

  .visight-lottie canvas,
  .visight-lottie svg {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .nav-list {
    gap: 0.78rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .spotlight-grid,
  .featured-grid,
  .glance-grid,
  .products-grid,
  .cta-box {
    gap: 1rem;
  }

  .home-hero {
    --home-hero-copy-width: min(580px, 56vw);
    --home-hero-lift: -4%;
    --home-hero-x-shift: clamp(0px, 1.2vw, 12px);
  }

  .home-hero-bg {
    inset: 0;
  }

  .home-hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(6, 22, 34, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .nav-list a {
    display: block;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.62rem 0.7rem;
    font-size: 0.94rem;
  }

  .nav-list a:hover {
    background: rgba(13, 46, 66, 0.48);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav-list .btn {
    margin-top: 0.35rem;
    width: 100%;
  }

  .products-grid,
  .cta-box,
  .principles-grid,
  .video-grid,
  .industries-video-grid,
  .spotlight-grid,
  .featured-grid,
  .glance-grid,
  .visight-scroll-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .spec-tabs {
    flex-wrap: wrap;
  }

  .spec-tab {
    flex: 1 1 calc(33.333% - 0.5rem);
  }

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

  .contact-meta {
    grid-template-columns: 1fr;
  }

  #spotlight .veldar-spotlight-grid,
  #featured-app .veldar-featured-grid,
  #glance .veldar-glance-grid,
  #videos .veldar-demo-grid {
    padding: 16px;
  }

  #glance .veldar-glance-copy h2 {
    padding-left: 0;
    padding-right: 0;
  }

  #glance .veldar-glance-list li {
    margin-left: 0;
  }

  #glance .veldar-glance-media img {
    transform: none;
    object-fit: contain;
    height: clamp(220px, 54vw, 320px);
  }

  #glance .veldar-glance-caption {
    margin-top: 0.2rem;
  }

  #spotlight .veldar-spotlight-media img {
    width: min(100%, 360px);
  }

  #videos .veldar-demo-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .demo-cta-media {
    justify-items: start;
    max-width: 360px;
    margin-left: 0;
  }

  .industry-video-copy p {
    min-height: 0;
  }

  .visight-lottie {
    min-height: 260px;
  }

  .visight-controls {
    flex-wrap: wrap;
  }

  .visight-controls .btn,
  .visight-controls .btn-sm {
    width: auto;
    flex: 0 0 auto;
  }

  .visight-points {
    gap: 0.65rem;
  }

  .visight-point {
    padding-left: 0.82rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(1240px, 94vw);
  }

  .site-header {
    position: sticky;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero-copy h1 {
    font-size: clamp(1.74rem, 7.4vw, 2.34rem);
  }

  .home-hero-subtitle {
    font-size: 1rem;
  }

  .home-hero-copy {
    padding: 0;
  }

  .home-hero-lead,
  .home-hero-points li {
    font-size: 0.94rem;
  }

  .hero-microcopy {
    font-size: 0.8rem;
  }

  .home-hero-points li {
    padding: 0 0 0 0.98rem;
  }

  .home-hero-points li::before {
    top: 0.72em;
    left: 0;
  }

  .home-hero .hero-actions {
    margin-top: 0.9rem;
    margin-bottom: 0.64rem;
  }

  .home-hero-bg {
    inset: 0;
  }

  .home-hero {
    --home-hero-copy-width: 100%;
    --home-hero-lift: 0%;
    --home-hero-x-shift: 0px;
    --home-hero-video-overscan: 1.02;
    --home-hero-video-pan-x: 0%;
  }

  .home-hero-wrap {
    min-height: clamp(460px, 116vw, 580px);
    align-items: stretch;
  }

  .home-hero .eyebrow {
    width: 100%;
    margin: 0 0 0.8rem;
  }

  .home-hero-video {
    transform: translateX(calc(-50% + var(--home-hero-video-pan-x)));
  }

  .home-hero-copy {
    margin: 0;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

  .hero-proof-grid li {
    padding: 0.92rem;
  }

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

  .tile-grid,
  .benefits-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-media,
  .featured-media,
  .glance-media {
    border-radius: 14px;
  }

  .products-hero-card {
    max-width: 100%;
  }

  .products-hero-card img {
    height: clamp(200px, 58vw, 270px);
  }

  .spec-tab {
    flex-basis: 100%;
    text-align: left;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .spec-list dd {
    text-align: left;
    white-space: normal;
    max-width: none;
    justify-self: start;
  }

  .spec-doc-links {
    grid-template-columns: 1fr;
  }

  #glance .veldar-glance-media {
    max-width: 100%;
  }

  #glance .veldar-glance-media img {
    height: clamp(220px, 56vw, 300px);
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  #featured-app .veldar-featured-media {
    max-width: 100%;
  }

  #featured-app .veldar-featured-media img {
    height: clamp(188px, 52vw, 238px);
  }

  #featured-app .veldar-featured-copy h2 {
    font-size: clamp(1.42rem, 6vw, 1.82rem);
  }

  .spotlight-media {
    min-height: 250px;
  }

  .glance-media img {
    height: clamp(250px, 58vw, 360px);
  }

  .play-fab {
    width: 64px;
    height: 64px;
  }

  .industries-hero {
    padding-top: 4.1rem;
  }

  .industries-hero-inner img {
    width: min(100%, 330px);
  }

  .industries-hero-inner h1 {
    font-size: clamp(1.62rem, 8vw, 2.1rem);
  }

  .industry-video-copy {
    padding: 0.86rem 0.86rem 0.64rem;
  }

  .industry-video-copy h2 {
    font-size: 1rem;
  }

  .industry-video-copy p {
    font-size: 0.9rem;
  }

  .demo-mini-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-chip {
    width: 100%;
    text-align: left;
  }

  .demo-cta-media {
    max-width: 320px;
  }

  .visight-lottie {
    aspect-ratio: 4 / 5;
    min-height: 320px;
  }

  .visight-controls {
    padding: 0.68rem 0.78rem;
  }

  .visight-scrub-label {
    width: 100%;
    margin-bottom: -0.12rem;
  }

  .visight-controls .btn-sm {
    width: auto;
  }

  .cta-box img {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
    height: auto;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-slim {
    padding: 2.8rem 0;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .principle,
  .tile,
  .benefit-card,
  .roadmap-step,
  .product-cards article,
  .spec-card {
    padding: 0.92rem;
  }

  .footer-grid {
    justify-content: center;
    text-align: center;
  }

  .media-lightbox-dialog {
    width: 95vw;
  }
}

@media (max-width: 390px) {
  .hero-copy p {
    font-size: 0.92rem;
  }

  .section-head p,
  .tile p,
  .benefit-card p,
  .roadmap-step p {
    font-size: 0.9rem;
  }

  .field {
    font-size: 0.82rem;
  }

  .field input,
  .field textarea {
    padding: 0.56rem 0.58rem;
  }

  .media-lightbox-title {
    padding-right: 4.4rem;
    font-size: 0.95rem;
  }

  .media-lightbox-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 2.6rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.48rem, 8.2vw, 1.72rem);
    line-height: 1.2;
  }

  .hero-lead {
    display: block;
  }

  .hero-compact-note {
    display: none;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin: 1.1rem 0 0.95rem;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    font-size: 0.89rem;
    padding: 0.66rem 0.88rem;
  }

  .kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .kpis li {
    padding: 0.58rem 0.35rem;
    text-align: center;
    border-radius: 10px;
  }

  .kpis strong {
    font-size: 1.02rem;
    margin-bottom: 0.2rem;
  }

  .kpis span {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .hero-card img {
    max-height: 200px;
    aspect-ratio: 1.35 / 1;
  }

  .hero-card figcaption {
    padding: 0.62rem 0.72rem 0.68rem;
    font-size: 0.77rem;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: min(1320px, 90vw);
  }

  .hero-grid {
    gap: 3rem;
  }

  .visight-scroll-grid {
    gap: 1.25rem;
  }

  .tile-grid,
  .benefits-grid {
    gap: 1.1rem;
  }
}

/* --- KaizenWay partner branding --- */
.brand-logo {
  width: 220px;
  height: auto;
  max-width: none;
  min-width: 220px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 51, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(34, 58, 84, 0.05);
  color: #52697f;
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-partner-logo {
  width: 84px;
  height: auto;
  display: block;
  opacity: 1;
  filter: contrast(1.08) saturate(1.08);
}

.footer-disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.85rem;
  max-width: 640px;
}

@media (max-width: 760px) {
  .brand-badge {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 176px;
    height: auto;
    min-width: 176px;
  }
  .brand-partner-logo {
    width: 72px;
  }
}

/* --- 2026 light redesign: radar-first homepage --- */
:root {
  --bg: #f6f8fc;
  --bg-soft: #eef4fa;
  --bg-card: #ffffff;
  --bg-panel: rgba(255, 255, 255, 0.94);
  --bg-panel-strong: rgba(248, 251, 255, 0.98);
  --text: #122033;
  --muted: #5f748a;
  --line: rgba(18, 32, 51, 0.1);
  --line-strong: rgba(18, 32, 51, 0.18);
  --brand: #4bb8ff;
  --brand-strong: #0f86dc;
  --accent: #7dd8ff;
  --shadow: 0 22px 60px rgba(32, 55, 82, 0.12);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(99, 188, 255, 0.12), transparent 26%),
    radial-gradient(circle at 100% 0, rgba(164, 221, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #eef3f8 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: 0 12px 30px rgba(34, 58, 84, 0.05);
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.92);
}

.nav-icon line {
  stroke: #19324a;
}

.nav-list a {
  color: #33475d;
}

.nav-list a:hover {
  color: #091827;
}

.btn {
  background: linear-gradient(135deg, #7ad5ff, #2f9df3);
  color: #0c2236;
  box-shadow: 0 16px 36px rgba(72, 161, 222, 0.18);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.84);
  color: #183049;
  border-color: rgba(24, 48, 73, 0.12);
  box-shadow: none;
}

.home-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.98)),
    radial-gradient(circle at 18% 20%, rgba(120, 198, 255, 0.12), transparent 28%);
}

.home-hero-bg {
  overflow: visible;
}

.home-hero-video {
  display: none;
}

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

.home-hero-orb-one {
  width: 320px;
  height: 320px;
  top: 42px;
  right: 7%;
  background: radial-gradient(circle, rgba(101, 187, 255, 0.18), transparent 68%);
}

.home-hero-orb-two {
  width: 240px;
  height: 240px;
  left: 4%;
  bottom: 22px;
  background: radial-gradient(circle, rgba(180, 229, 255, 0.2), transparent 68%);
}

.home-hero-scrim {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(246, 250, 255, 0.92));
}

.home-hero-wrap {
  min-height: clamp(620px, 78vh, 820px);
  align-items: stretch;
  transform: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}

.home-hero .eyebrow,
.home-hero-subtitle {
  color: #1f8bda;
}

.home-hero-copy h1 {
  color: #13263a;
  max-width: 12ch;
}

.home-hero-lead,
.home-hero-points li {
  color: #4f6478;
}

.home-hero-points li::before {
  background: #4bb8ff;
}

.hero-list-intro {
  margin-top: 0.18rem;
  margin-bottom: 0;
}

.hero-tech-points {
  margin: 0;
  padding: 0;
}

.hero-tech-points + .hero-list-intro {
  margin-top: 0.2rem;
}

.hero-proof-grid li,
.principle,
.tile,
.roadmap-step,
.contact-meta-card,
.faq details,
.glance-list li {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 32, 51, 0.1);
  box-shadow: 0 16px 34px rgba(42, 73, 104, 0.08);
}

.hero-proof-grid strong,
.principle h3,
.tile h3,
.roadmap-step h3 {
  color: #102235;
}

.hero-proof-grid span,
.principle p,
.tile p,
.roadmap-step p,
.contact-meta-card p,
.glance-list p,
.faq p {
  color: #607486;
}

.home-hero-visual {
  display: grid;
}

.hero-product-card {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(96, 188, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
  box-shadow: 0 28px 70px rgba(35, 63, 92, 0.14);
}

.hero-product-kicker {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(77, 183, 255, 0.14);
  color: #147dc9;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-product-card img {
  width: min(100%, 480px);
  margin: 0 auto;
  filter: drop-shadow(0 22px 32px rgba(53, 88, 124, 0.2));
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stat-grid div {
  padding: 0.9rem 0.95rem;
  border-radius: 16px;
  background: rgba(246, 250, 255, 0.96);
  border: 1px solid rgba(18, 32, 51, 0.08);
}

.hero-stat-grid span {
  display: block;
  margin-bottom: 0.28rem;
  color: #6d8194;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-grid strong {
  color: #12263a;
  font-size: 0.92rem;
  line-height: 1.36;
}

.section-layered,
.section-dark {
  background:
    linear-gradient(180deg, rgba(246, 249, 253, 0.98), rgba(239, 244, 249, 0.94)),
    radial-gradient(circle at 100% 0, rgba(167, 223, 255, 0.12), transparent 26%);
  border-top: 1px solid rgba(18, 32, 51, 0.06);
  border-bottom: 1px solid rgba(18, 32, 51, 0.06);
}

.section-head p,
.spotlight-copy p,
.featured-copy p,
#spotlight .veldar-spotlight-copy p,
#featured-app .veldar-featured-copy p,
#glance .veldar-glance-copy p,
.demo-secondary,
.docs-list li,
.cta-box p,
.footer-grid p,
.footer-disclaimer {
  color: #607486;
}

#spotlight .veldar-spotlight-grid,
#featured-app .veldar-featured-grid,
#glance .veldar-glance-grid,
#videos .veldar-demo-grid {
  border-color: rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 52px rgba(40, 63, 89, 0.08);
}

#spotlight .veldar-spotlight-grid {
  background:
    radial-gradient(circle at 90% 10%, rgba(160, 223, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.95));
}

#featured-app .veldar-featured-grid,
#glance .veldar-glance-grid,
#videos .veldar-demo-grid {
  background:
    radial-gradient(circle at 100% 0, rgba(181, 231, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 253, 0.96));
}

#spotlight .veldar-spotlight-copy .eyebrow,
#featured-app .veldar-featured-copy .eyebrow {
  color: #1c8ad6;
}

#spotlight .veldar-spotlight-copy h2,
#featured-app .veldar-featured-copy h2,
#glance .veldar-glance-copy h2,
#videos .demo-primary,
.section-head h2 {
  color: #13263a;
}

#spotlight .veldar-spotlight-media img {
  filter: none;
}

#featured-app .veldar-featured-media,
#glance .veldar-glance-media,
.spotlight-media,
.featured-media,
.glance-media,
.demo-cta-media {
  background: rgba(247, 250, 254, 0.96);
}

.demo-chip,
.spec-doc-links a {
  background: rgba(255, 255, 255, 0.88);
  color: #20415f;
  border-color: rgba(26, 60, 91, 0.12);
}

.demo-chip:hover,
.spec-doc-links a:hover {
  background: rgba(242, 248, 253, 1);
  color: #102235;
  border-color: rgba(26, 60, 91, 0.2);
}

.docs-list a,
.cta-inline,
#spotlight .cta-inline,
#featured-app .cta-inline,
#glance .cta-inline {
  color: #136fb8;
}

.cta-inline:hover,
.docs-list a:hover {
  color: #0d4f82;
}

.visight-lottie {
  border-color: rgba(18, 32, 51, 0.08);
  background:
    radial-gradient(circle at 72% 25%, rgba(125, 202, 255, 0.22), transparent 52%),
    #ffffff;
}

.visight-point {
  border-left-color: rgba(54, 120, 173, 0.18);
}

.visight-point-title {
  color: #13263a;
}

.visight-point-text {
  color: #607486;
}

.visight-point.is-active {
  border-left-color: rgba(56, 152, 224, 0.92);
  background: linear-gradient(90deg, rgba(126, 208, 255, 0.18), rgba(255, 255, 255, 0) 74%);
}

.faq summary {
  color: #13263a;
}

.cta-box {
  border-color: rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.field {
  color: #385068;
}

.field input,
.field textarea {
  border-color: rgba(18, 32, 51, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #13263a;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8aa0b3;
}

.site-footer {
  background: rgba(245, 248, 252, 0.92);
  border-top-color: rgba(18, 32, 51, 0.08);
}

.socials a {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(18, 32, 51, 0.08);
}

.brand-badge {
  background: rgba(255, 255, 255, 0.82);
  color: #62788d;
  border-color: rgba(18, 32, 51, 0.08);
}

@media (max-width: 992px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-wrap {
    min-height: auto;
  }

  .home-hero-copy h1 {
    max-width: 14ch;
  }

  .hero-proof-grid,
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(18, 32, 51, 0.08);
  }

  .nav-list a:hover {
    background: rgba(239, 246, 252, 0.96);
    border-color: rgba(18, 32, 51, 0.08);
  }
}

@media (max-width: 768px) {
  .home-hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .hero-product-card {
    border-radius: 22px;
  }
}

/* --- Products & industries consistency pass --- */
.products-hero-clean {
  background:
    radial-gradient(circle at 100% 0, rgba(173, 227, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96));
}

.products-hero-clean .hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(245, 248, 253, 0.5));
}

.products-hero .hero-copy {
  display: grid;
  gap: 0.95rem;
}

.products-hero .hero-copy h1 {
  color: #13263a;
  max-width: 11ch;
  letter-spacing: -0.03em;
}

.products-hero .hero-lead {
  color: #607486;
  max-width: 58ch;
}

.products-hero-proof {
  margin-top: 0.3rem;
}

.products-hero-stack {
  display: grid;
  gap: 1rem;
}

.products-hero-card {
  border-color: rgba(18, 32, 51, 0.08);
  background:
    radial-gradient(circle at 50% 20%, rgba(125, 207, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.94));
  box-shadow: 0 24px 60px rgba(35, 63, 92, 0.12);
}

.products-hero-card figcaption {
  color: #64798e;
}

.products-hero-cards article,
.product-cards article {
  border-color: rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(35, 63, 92, 0.08);
}

.product-cards article h3 {
  color: #12263a;
  margin-bottom: 0.34rem;
}

.product-cards p,
.benefit-card p {
  color: #607486;
}

.product-specs .section-head,
.industries-videos .section-head {
  max-width: 780px;
}

.benefit-card {
  border-color: rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(35, 63, 92, 0.08);
}

.benefit-card h3 {
  color: #13263a;
  margin-bottom: 0.42rem;
}

.industries-hero {
  padding-top: 5.1rem;
  padding-bottom: 2.2rem;
  background:
    radial-gradient(circle at 100% 0, rgba(173, 227, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96));
}

.industries-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(1.2rem, 4vw, 2.6rem);
  align-items: center;
}

.industries-hero-copy {
  display: grid;
  gap: 0.95rem;
  text-align: left;
}

.industries-hero-copy h1 {
  color: #13263a;
  max-width: 12ch;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.industries-hero-copy p:not(.eyebrow) {
  color: #607486;
  max-width: 58ch;
  line-height: 1.68;
}

.industries-hero-visual {
  display: grid;
  justify-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(141, 214, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.94));
  box-shadow: 0 26px 62px rgba(35, 63, 92, 0.12);
}

.industries-hero-visual img {
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 34px rgba(35, 63, 92, 0.14));
}

.industries-tags {
  margin-top: 0.2rem;
}

.demo-chip-static {
  cursor: default;
}

.industries-videos {
  padding-top: 1rem;
}

.industries-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.industry-video-card {
  border-color: rgba(18, 32, 51, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 63, 92, 0.08);
}

.industry-video-card:hover {
  border-color: rgba(18, 32, 51, 0.14);
  box-shadow: 0 24px 50px rgba(35, 63, 92, 0.12);
}

.industry-video-copy {
  display: grid;
  gap: 0.48rem;
}

.industry-video-tag {
  margin: 0;
  color: #1d86d2;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-video-copy h2 {
  color: #13263a;
}

.industry-video-copy p:last-child {
  color: #607486;
}

.industry-video-media {
  border-top-color: rgba(18, 32, 51, 0.06);
  background: rgba(245, 249, 253, 0.92);
}

.industry-video-play > img {
  filter: drop-shadow(0 10px 18px rgba(35, 63, 92, 0.18));
}

@media (max-width: 1200px) {
  .industries-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .products-hero .hero-grid,
  .industries-hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .industries-video-grid {
    grid-template-columns: 1fr;
  }

  .industries-hero-copy h1,
  .products-hero .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2rem, 8vw, 2.7rem);
  }
}

/* --- Header and homepage hero refinement --- */
.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(18, 32, 51, 0.08);
  box-shadow: 0 12px 28px rgba(33, 56, 81, 0.06);
}

.nav-wrap {
  min-height: 74px;
}

.nav-list {
  gap: clamp(0.62rem, 1.35vw, 0.95rem);
}

.home-hero {
  padding-top: clamp(4.35rem, 6vw, 5.1rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.2rem);
}

.home-hero-wrap {
  min-height: clamp(560px, 72vh, 720px);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(1.35rem, 3vw, 2.6rem);
}

.home-hero-copy {
  width: 100%;
  max-width: 620px;
}

.home-hero-visual {
  justify-items: end;
}

.home-hero .hero-product-card {
  width: min(100%, 430px);
  justify-self: end;
}

.home-hero .hero-product-card img {
  display: block;
  width: min(100%, 360px);
  height: clamp(220px, 24vw, 290px);
  object-fit: contain;
}

.home-hero .hero-stat-grid {
  gap: 0.68rem;
}

.home-hero .hero-stat-grid div {
  min-height: 86px;
}

@media (max-width: 992px) {
  .home-hero {
    padding-top: 4rem;
  }

  .home-hero-visual {
    justify-items: center;
  }

  .home-hero .hero-product-card {
    justify-self: center;
    width: min(100%, 480px);
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    min-height: 70px;
  }

  .home-hero {
    padding-top: 3.5rem;
    padding-bottom: 2.2rem;
  }

  .home-hero-wrap {
    min-height: auto;
  }

  .home-hero .hero-product-card {
    width: 100%;
  }

  .home-hero .hero-product-card img {
    width: min(100%, 320px);
    height: clamp(200px, 58vw, 260px);
  }
}

/* --- Visual system polish pass --- */
.section {
  padding: clamp(4.7rem, 7vw, 6.1rem) 0;
}

.section-slim {
  padding: clamp(3.8rem, 6vw, 4.9rem) 0;
}

.section-head {
  gap: 0.72rem;
  max-width: 780px;
  margin-bottom: clamp(1.9rem, 4vw, 2.9rem);
}

.section-head h2 {
  font-size: clamp(2rem, 3.25vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.section-head p {
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.72;
}

.nav-list a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:not(.btn):hover {
  background: rgba(237, 244, 250, 0.92);
  color: #102235;
}

.hero-proof-grid,
.principles-grid,
.tile-grid,
.benefits-grid,
.roadmap-grid,
.product-cards,
.contact-meta {
  align-items: stretch;
}

.hero-proof-grid li,
.principle,
.tile,
.roadmap-step,
.benefit-card,
.contact-meta-card,
.faq details,
.glance-list li,
.product-cards article {
  border-radius: 22px;
}

.hero-proof-grid li,
.principle,
.tile,
.roadmap-step,
.benefit-card,
.contact-meta-card,
.glance-list li,
.product-cards article {
  min-height: 100%;
  padding: 1.22rem 1.18rem;
}

.principle,
.tile,
.roadmap-step,
.benefit-card,
.contact-meta-card,
.product-cards article,
.glance-list li {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.hero-proof-grid li {
  min-height: 108px;
}

.spotlight-grid,
.featured-grid,
.glance-grid {
  gap: clamp(1.2rem, 2.8vw, 2rem);
}

#spotlight .veldar-spotlight-grid,
#featured-app .veldar-featured-grid,
#glance .veldar-glance-grid,
#videos .veldar-demo-grid {
  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-radius: 30px;
}

.spotlight-media,
.featured-media,
.glance-media,
.demo-cta-media,
.products-hero-card,
.hero-product-card,
.industries-hero-visual {
  border-radius: 30px;
}

.spotlight-media,
.featured-media,
.glance-media,
.demo-cta-media {
  border-color: rgba(18, 32, 51, 0.08);
  box-shadow: 0 24px 56px rgba(35, 63, 92, 0.1);
}

.spotlight-copy p,
.featured-copy p,
.glance-copy p,
.roadmap-step p,
.tile p,
.principle p,
.benefit-card p,
.cta-box p,
.industry-video-copy p:last-child {
  font-size: 0.98rem;
  line-height: 1.68;
}

.featured-media img,
.industry-video-media > img,
.cta-box img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.play-fab {
  width: 74px;
  height: 74px;
}

.products-hero-stack,
.home-hero-visual {
  align-content: start;
}

.products-hero-card,
.home-hero .hero-product-card {
  box-shadow: 0 30px 72px rgba(35, 63, 92, 0.14);
}

#hero .products-hero-card,
#hero .products-hero-card img {
  box-shadow: none;
}

.products-hero-cards article,
.product-cards article {
  min-height: 118px;
}

.specs-shell {
  border-radius: 28px;
  box-shadow: 0 26px 58px rgba(35, 63, 92, 0.12);
}

.spec-card {
  border-radius: 20px;
  padding: 1rem;
}

.spec-list div {
  border-radius: 14px;
  padding: 0.72rem 0.78rem;
}

.spec-doc-links {
  gap: 0.82rem;
}

.spec-doc-links a {
  min-height: 64px;
  border-radius: 18px;
  padding: 0.82rem 1rem;
}

.roadmap-step span {
  margin-bottom: 0.38rem;
}

.visight-stage {
  margin-left: 0;
  padding: 1rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(35, 63, 92, 0.08);
}

.visight-lottie {
  border-radius: 20px;
}

.visight-controls {
  padding: 0.95rem 0.1rem 0;
}

.visight-points {
  gap: 0.72rem;
  margin-top: 0;
}

.visight-point {
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-left-width: 1px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  padding: 1rem 1.05rem;
  opacity: 1;
  transform: none;
}

.visight-point-title {
  color: #13263a;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.visight-point-text {
  color: #607486;
  font-size: 0.95rem;
}

.visight-point.is-active {
  border-left-color: rgba(56, 152, 224, 0.92);
  box-shadow: 0 18px 38px rgba(35, 63, 92, 0.08);
  background: linear-gradient(135deg, rgba(123, 211, 255, 0.16), rgba(255, 255, 255, 0.92) 72%);
}

#videos .veldar-demo-grid {
  background:
    radial-gradient(circle at 100% 0, rgba(181, 231, 255, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.96));
}

.demo-secondary {
  max-width: 52ch;
  font-size: 0.98rem;
}

.demo-cta-media {
  max-width: 500px;
}

.demo-cta-media img {
  width: min(100%, 460px);
}

.industries-videos {
  padding-top: 0.6rem;
}

.industries-video-grid {
  gap: 1.05rem;
}

.industry-video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 22px;
}

.industry-video-copy {
  min-height: 132px;
  padding: 1.08rem 1.08rem 0.88rem;
}

.industry-video-copy h2 {
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
}

.industry-video-tag {
  letter-spacing: 0.12em;
}

.docs-list {
  list-style: none;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.docs-list li {
  margin: 0;
}

.docs-list a {
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 1rem 1.08rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(35, 63, 92, 0.08);
  text-decoration: none;
  line-height: 1.45;
}

.faq details {
  padding: 1.15rem 1.18rem;
}

.cta-box {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  border-radius: 30px;
  box-shadow: 0 26px 58px rgba(35, 63, 92, 0.1);
}

.cta-box > div {
  padding: clamp(1.35rem, 2.4vw, 2rem);
  gap: 1rem;
}

.cta-box img {
  min-height: 320px;
}

.lead-form {
  gap: 0.92rem;
}

.field input,
.field textarea {
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
}

.site-footer {
  padding: 1.6rem 0 2.6rem;
}

.footer-grid {
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-links a {
  color: #20415f;
}

.socials a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(35, 63, 92, 0.08);
}

@media (max-width: 1200px) {
  .docs-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 4.3rem 0;
  }

  .cta-box,
  #videos .veldar-demo-grid {
    grid-template-columns: 1fr;
  }

  .cta-box img {
    min-height: 240px;
  }

  .visight-stage {
    padding: 0.88rem;
  }
}

@media (max-width: 768px) {
  .section-head h2 {
    max-width: none;
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .hero-proof-grid li,
  .principle,
  .tile,
  .roadmap-step,
  .benefit-card,
  .contact-meta-card,
  .faq details,
  .glance-list li,
  .product-cards article {
    border-radius: 20px;
    padding: 1.05rem;
  }

  .visight-point {
    border-radius: 18px;
    padding: 0.9rem;
  }

  .industry-video-copy {
    min-height: auto;
  }
}

/* --- Simplified VELDAR page structure --- */
.simple-page-hero {
  padding-top: clamp(4.6rem, 7vw, 5.8rem);
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0, rgba(169, 224, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
}

.simple-page-title {
  margin: 0;
  color: #13263a;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.simple-hero-copy {
  display: grid;
  gap: 0.9rem;
}

.simple-page-hero .hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(247, 250, 254, 0.72)),
    radial-gradient(circle at 12% 20%, rgba(110, 196, 255, 0.1), transparent 30%);
}

.simple-page-hero .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.simple-page-hero .hero-copy h1,
.simple-page-hero .hero-lead,
.simple-page-hero .hero-subtitle {
  max-width: 34rem;
}

.range-metric-grid,
.sensor-summary-grid,
.testing-grid {
  display: grid;
  gap: 1rem;
}

.range-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sensor-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.1rem, 2.8vw, 1.8rem);
  align-items: start;
}

.contact-info-stack {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.2rem);
  align-content: start;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2.6vw, 1.8rem);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 52px rgba(35, 63, 92, 0.08);
}

.contact-panel h2 {
  color: #13263a;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.08;
}

.contact-panel-copy,
.contact-note {
  color: #607486;
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-meta {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.contact-meta-card {
  padding: 1rem 1.05rem;
}

.contact-link {
  color: #136fb8;
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: #0d4f82;
  text-decoration: underline;
}

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

@media (max-width: 992px) {
  .simple-page-hero .hero-grid,
  .contact-shell,
  .range-metric-grid,
  .testing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .simple-page-hero {
    padding-top: 4rem;
  }

  .simple-page-hero .hero-grid {
    gap: 1rem;
  }

  .form-grid-compact {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    border-radius: 22px;
    padding: 1.05rem;
  }
}

/* --- Final layout polish pass --- */
:root {
  --space-section: clamp(3.7rem, 5.8vw, 4.9rem);
}

.section {
  padding: var(--space-section) 0;
}

.section-head {
  gap: 0.66rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.section-head h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.section-head p {
  max-width: 58ch;
}

.hero.home-hero,
.hero.simple-page-hero {
  padding-top: clamp(2.7rem, 4vw, 3.3rem);
  padding-bottom: clamp(0.25rem, 0.9vw, 0.6rem);
}

.simple-page-hero {
  padding-top: clamp(2.9rem, 4.4vw, 3.8rem);
  padding-bottom: 0;
}

.simple-page-title {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3.7vw, 3rem);
}

.simple-page-hero .section-head {
  margin-bottom: 0;
}

.industries-page-hero {
  padding-top: clamp(4.2rem, 6vw, 5.4rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.6rem);
  background:
    radial-gradient(circle at 100% 0, rgba(160, 221, 255, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 249, 253, 0.96));
}

.industries-page-hero .container {
  max-width: 1240px;
}

.industries-page-hero-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 960px;
  align-content: start;
  text-align: left;
}

.industries-page-hero-copy .eyebrow {
  margin-bottom: 0.36rem;
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.industries-page-hero .simple-page-title {
  max-width: 100%;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.industries-page-hero-copy > p:not(.eyebrow) {
  max-width: 72ch;
  color: #607486;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.industries-page-hero + .industries-videos {
  padding-top: clamp(2.25rem, 3.5vw, 2.9rem);
}

.simple-page-hero .hero-grid,
.home-hero-grid,
.spotlight-grid,
.featured-grid,
.glance-grid,
.contact-shell {
  align-items: center;
}

.home-hero .container {
  max-width: 920px;
}

.home-hero-wrap {
  min-height: auto;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 470px) minmax(240px, 280px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(0.65rem, 1.35vw, 0.95rem);
}

.home-hero-copy {
  gap: 0.48rem;
  max-width: 100%;
  padding-top: 0.2rem;
}

.home-hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(2.2rem, 4.4vw, 3.55rem);
  line-height: 0.96;
}

#hero .eyebrow {
  margin-bottom: 0.58rem;
  font-size: 0.74rem;
  letter-spacing: 0.17em;
}

#hero .hero-copy h1 {
  max-width: none;
  font-size: clamp(2.05rem, 3.15vw, 3.15rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: nowrap;
  font-weight: 650;
}

#hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.4rem);
  min-height: clamp(360px, 36vw, 440px);
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  align-self: center;
  max-width: 31.25rem;
  padding-top: 0;
  text-align: left;
  transform: translateY(-12px);
  font-family: "Montserrat", "Arial", "Helvetica Neue", sans-serif;
}

#hero .hero-copy .eyebrow {
  margin-bottom: 0.5rem;
  color: #6b87a3;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-subtitle {
  max-width: 31ch;
  font-size: clamp(0.92rem, 1vw, 1rem);
}

#hero .hero-subtitle {
  max-width: 31ch;
  margin-top: 0;
  margin-bottom: 0.82rem;
  color: #3f5f7c;
  font-size: clamp(1rem, 1.14vw, 1.06rem);
  line-height: 1.43;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.home-hero-lead {
  max-width: 40ch;
  font-size: 0.9rem;
  line-height: 1.5;
}

#hero .hero-lead {
  max-width: 34ch;
  margin-top: 0;
  margin-bottom: 0;
  color: #61778d;
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.home-hero-points {
  gap: 0.26rem;
  max-width: 39ch;
}

.home-hero-points li {
  font-size: 0.84rem;
  line-height: 1.38;
}

.hero-actions {
  margin: 0.62rem 0 0;
  gap: 0.55rem;
}

#hero .hero-copy h1 {
  margin-bottom: 0.9rem;
  line-height: 0.93;
}

#hero .hero-actions {
  margin-top: 1.35rem;
  margin-bottom: 0;
  justify-content: flex-start;
  gap: 0.88rem;
  flex-wrap: wrap;
}

#hero .hero-actions .btn {
  flex: 0 0 auto;
}

.btn-hero-neutral {
  background: rgba(255, 255, 255, 0.82);
  color: #16324a;
  border-color: rgba(18, 32, 51, 0.08);
  box-shadow: none;
}

.btn-hero-neutral:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 32, 51, 0.14);
}

.home-hero .hero-actions .btn {
  min-height: 42px;
  padding: 0 0.98rem;
}

.hero-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: #1c79d1;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.hero-inline-link::after {
  content: "";
  width: 13px;
  height: 11px;
  margin-left: 0.42rem;
  background: url("../assets/images/triangle-arrow.png") center / contain no-repeat;
  opacity: 0.88;
}

.hero-inline-link:hover {
  color: #0f5fa9;
}

#hero .products-hero-card {
  display: block;
  width: min(100%, 600px);
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateX(clamp(10px, 1.7vw, 24px)) translateY(clamp(-14px, -1.2vw, -8px));
}

#hero .products-hero-card img {
  width: min(100%, 500px);
  height: auto;
  max-height: 404px;
  padding: 0;
  margin: 0 0 0 auto;
  display: block;
  object-fit: contain;
  filter: none;
  box-shadow: none;
  transform: translateX(clamp(6px, 0.9vw, 14px)) translateY(clamp(-10px, -0.9vw, -4px));
}

#hero .products-hero-card figcaption {
  display: none;
}

#hero .home-radar-hero {
  justify-self: end;
  align-self: center;
  margin-left: auto;
  margin-right: 0;
  transform: translateX(clamp(6px, 0.8vw, 12px)) translateY(clamp(-8px, -0.8vw, -2px));
}

#hero .home-radar-hero figcaption {
  align-self: center;
  padding-bottom: 0;
}

.hero-product-card,
.products-hero-card {
  max-width: 330px;
  overflow: hidden;
}

.hero-product-card {
  gap: 0.72rem;
  padding: 0.82rem;
}

.home-hero .hero-product-card {
  width: min(100%, 280px);
}

.home-hero-visual {
  justify-items: end;
  align-self: start;
}

.home-hero .hero-product-kicker {
  min-height: 30px;
  padding: 0 0.72rem;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.hero-product-card img,
.products-hero-card img {
  width: min(100%, 198px);
  height: clamp(132px, 11vw, 162px);
  margin: 0 auto;
}

.hero-stat-grid {
  gap: 0.42rem;
}

.hero-stat-grid div {
  min-height: 56px;
  padding: 0.52rem 0.58rem;
}

.hero-stat-grid span {
  margin-bottom: 0.18rem;
  font-size: 0.64rem;
}

.hero-stat-grid strong {
  font-size: 0.78rem;
  line-height: 1.22;
}

.reveal,
html.js .reveal,
html.js .reveal.in-view {
  opacity: 1;
  transform: none;
  transition: none;
}

#sensing .visight-controls {
  display: none;
}

.hero-card,
.products-hero-card,
.spotlight-media,
.featured-media,
.glance-media,
.demo-cta-media,
.industries-hero-visual,
.contact-panel,
.benefit-card,
.tile,
.contact-meta-card,
.spec-doc-links a,
.docs-list a,
.industry-video-card {
  border-radius: 24px;
}

.benefits-grid,
.tile-grid,
.range-metric-grid,
.sensor-summary-grid,
.testing-grid,
.contact-meta,
.spec-doc-links {
  align-items: stretch;
}

.benefits-grid > *,
.tile-grid > *,
.range-metric-grid > *,
.sensor-summary-grid > *,
.testing-grid > *,
.contact-meta > *,
.spec-doc-links > * {
  min-height: 100%;
}

.benefit-card,
.tile,
.contact-meta-card {
  padding: 1.1rem 1.08rem;
}

.benefit-card,
.tile,
.contact-meta-card,
.contact-panel {
  box-shadow: 0 18px 40px rgba(35, 63, 92, 0.07);
}

.benefit-card h3,
.tile h3 {
  line-height: 1.24;
}

.benefit-card p,
.tile p,
.contact-meta-card p {
  line-height: 1.58;
}

.range-metric-grid .benefit-card {
  min-height: 150px;
}

.sensor-summary-grid .tile,
.capability-grid .tile {
  gap: 0.5rem;
}

.products-hero .hero-copy {
  gap: 0.78rem;
}

.products-hero .hero-copy h1 {
  max-width: 8ch;
}

.products-hero .hero-subtitle {
  color: #556d84;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.42;
}

.products-hero .hero-lead {
  max-width: 54ch;
  line-height: 1.58;
}

.products-hero-card figcaption,
.hero-card figcaption {
  padding: 0.72rem 0.92rem 0.92rem;
  font-size: 0.9rem;
  line-height: 1.48;
}

.products-tech-hero-card {
  max-width: 460px;
}

.products-tech-hero-card img {
  width: 100%;
  height: auto;
  padding: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.products-tech-hero-card figcaption {
  max-width: 38ch;
}

.products-cinematic-hero {
  padding-top: clamp(2.6rem, 4vw, 3.4rem);
  padding-bottom: clamp(2rem, 3.4vw, 2.8rem);
  background:
    radial-gradient(circle at 16% 8%, rgba(164, 223, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(244, 248, 252, 0.96));
}

.products-video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #02070d;
  box-shadow: 0 28px 80px rgba(15, 32, 49, 0.18);
  min-height: clamp(420px, 48vw, 700px);
}

.products-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 13, 0.12), rgba(2, 7, 13, 0.46)),
    radial-gradient(circle at 50% 24%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28) 72%);
  pointer-events: none;
}

.products-video-overlay {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: inherit;
  padding: clamp(2.8rem, 7vw, 5.4rem) clamp(1.2rem, 3vw, 2.2rem) 4rem;
  text-align: center;
}

.products-video-overlay .eyebrow {
  color: rgba(225, 242, 255, 0.78);
}

.products-video-overlay h1 {
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: clamp(1.08rem, 2.1vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.products-video-tagline {
  margin-top: 0.85rem;
  max-width: 28ch;
  color: rgba(237, 246, 255, 0.95);
  font-size: clamp(1.08rem, 2.1vw, 1.62rem);
  line-height: 1.2;
  font-weight: 500;
}

.products-hero-play-fab {
  z-index: 2;
}

.products-hero-play-fab[hidden] {
  display: none;
}

.products-hero-video-toggle {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  min-width: 88px;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(229, 243, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 16, 27, 0.7);
  color: #f0f7ff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.products-hero-video-toggle:hover {
  background: rgba(9, 27, 42, 0.82);
}

.products-tech-bridge {
  padding-top: clamp(2rem, 4vw, 2.9rem);
  padding-bottom: clamp(0.7rem, 1.6vw, 1.1rem);
}

.products-tech-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1.06fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}

.products-tech-bridge-copy {
  max-width: 32ch;
}

.products-tech-intro {
  padding-top: clamp(1rem, 2.1vw, 1.6rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.products-tech-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.products-tech-copy {
  display: grid;
  gap: 1.28rem;
}

.products-lead-kicker {
  color: #17324d;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
  font-weight: 600;
}

.products-section-head {
  margin-bottom: 0;
}

.products-tech-intro .products-section-head {
  display: grid;
  gap: 0.72rem;
}

.products-section-head h2 {
  max-width: 15ch;
}

.products-section-head p {
  max-width: 60ch;
}

.products-weather-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.products-weather-item {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 48px;
  padding: 0.5rem 0.86rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(35, 63, 92, 0.07);
  color: #17324d;
  font-size: 0.92rem;
  font-weight: 600;
}

.products-weather-item img {
  width: 18px;
  height: 18px;
}

.products-section-copy {
  display: grid;
  gap: 0.72rem;
  padding-top: 0.08rem;
}

.products-connectivity-label {
  color: #94a3b8;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.products-connectivity-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(18, 32, 51, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(35, 63, 92, 0.08);
  text-align: center;
}

.products-connectivity-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 12px;
}

.products-connectivity-card img {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.products-connectivity-card h3 {
  margin: 0;
  margin-top: 8px;
  color: #12263a;
  font-size: 0.9rem;
  line-height: 1.18;
  text-align: center;
  grid-row: 3;
}

.products-tech-visual {
  display: grid;
  gap: 1rem;
}

.products-radar-lottie-shell,
.products-tech-hardware,
.products-range-visual {
  overflow: hidden;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 56px rgba(35, 63, 92, 0.1);
}

.products-tech-bridge .products-radar-lottie-shell {
  justify-self: end;
  width: min(100%, 560px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.products-radar-lottie-shell {
  padding: 0;
  background: transparent;
}

.products-radar-lottie {
  min-height: 300px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  will-change: transform;
}

.products-radar-lottie::before,
.products-radar-lottie::after {
  display: none !important;
}

.products-radar-lottie canvas,
.products-radar-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
}

.products-tech-intro .bullet-list {
  max-width: 58ch;
}

.products-tech-hardware {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(80, 170, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #0b1a26 0%, #07131c 100%);
}

.products-tech-hardware::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 30%, rgba(120, 200, 255, 0.22), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.products-tech-hardware img,
.products-range-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.products-tech-hardware img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: brightness(1.15) contrast(1.2);
}

.products-tech-hardware,
.products-tech-hardware:hover,
.products-tech-hardware:active,
.products-tech-hardware:focus,
.products-tech-hardware img,
.products-tech-hardware img:hover,
.products-tech-hardware img:active,
.products-tech-hardware img:focus {
  transform: none !important;
  transition: none !important;
}

.products-clear-vision {
  padding-top: clamp(3.2rem, 5vw, 4rem);
  padding-bottom: clamp(3.3rem, 5.2vw, 4.2rem);
  background:
    linear-gradient(180deg, rgba(247, 250, 254, 0.98), rgba(239, 244, 249, 0.94)),
    radial-gradient(circle at 100% 0, rgba(167, 223, 255, 0.12), transparent 26%);
}

.products-clear-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
}

.products-range-copy {
  display: grid;
  gap: 0.95rem;
}

.products-range-copy h2 {
  color: #12263a;
  font-size: clamp(1.42rem, 1.72vw, 1.82rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 15ch;
}

.products-range-table {
  display: grid;
  gap: 0.32rem;
  margin-top: 0.25rem;
}

.products-range-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 0.7fr);
  gap: 0;
}

.products-range-row > span {
  padding: 0.66rem 0.78rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: #50667b;
  font-size: 0.89rem;
  line-height: 1.36;
}

.products-range-head > span {
  color: #12263a;
  font-weight: 700;
  background: rgba(239, 246, 252, 0.98);
}

.products-range-row > span:first-child {
  border-radius: 14px 0 0 14px;
}

.products-range-row > span:last-child {
  border-radius: 0 14px 14px 0;
}

.products-models-section {
  padding-top: clamp(3.2rem, 5vw, 4rem);
  padding-bottom: clamp(3.2rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 14% 8%, rgba(186, 228, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.products-models-section .products-section-head {
  max-width: 760px;
  margin-bottom: clamp(1rem, 1.4vw, 1.35rem);
  gap: 0.48rem;
}

.products-models-section .products-section-head h2 {
  max-width: 30ch;
  font-size: clamp(1.42rem, 1.55vw, 1.82rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  white-space: normal;
  text-wrap: pretty;
}

.products-models-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.products-model-group {
  display: grid;
  gap: 0.82rem;
  padding: 1rem 1rem 1.04rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(35, 63, 92, 0.06);
  transform: none !important;
}

.products-model-group:hover {
  border-color: rgba(18, 32, 51, 0.08);
  box-shadow: 0 18px 38px rgba(35, 63, 92, 0.07);
}

.products-model-group-head {
  display: grid;
  gap: 0.32rem;
}

.products-model-group-head h3 {
  margin: 0;
  color: #12263a;
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  line-height: 1.16;
}

.products-model-group-head p {
  margin: 0;
  color: #607486;
  font-size: 0.93rem;
  line-height: 1.56;
  max-width: 44ch;
}

.products-model-subgrid {
  display: grid;
  gap: 0.68rem;
}

.products-model-subgrid-legacy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-model-subcard {
  display: grid;
  align-content: start;
  gap: 0.34rem;
  min-height: 100%;
  padding: 0.8rem 0.84rem 0.86rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 16px;
  background: rgba(246, 249, 253, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.products-model-subcard h4 {
  margin: 0;
  color: #12263a;
  font-size: 0.98rem;
  line-height: 1.24;
}

.products-model-subcard p {
  color: #607486;
  font-size: 0.88rem;
  line-height: 1.46;
}

.products-model-group > .cta-inline {
  justify-self: start;
  margin-top: 0.12rem;
}

.products-model-subcard .cta-inline {
  margin-top: 0.1rem;
  font-size: 0.88rem;
}

.products-capabilities-section {
  overflow: hidden;
  padding-top: clamp(3.2rem, 5vw, 4rem);
  padding-bottom: clamp(4.4rem, 6.2vw, 5.6rem);
}

.products-features-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.45rem, 2.2vw, 1.85rem) clamp(1.2rem, 2vw, 1.7rem);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 100%, rgba(126, 204, 255, 0.18), transparent 36%),
    radial-gradient(circle at 12% 0, rgba(176, 226, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94));
  box-shadow: 0 24px 54px rgba(35, 63, 92, 0.1);
}

.products-features-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.35rem;
  align-content: start;
}

.products-feature-card {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.products-feature-card h3 {
  margin: 0;
  color: #12263a;
  font-size: 0.94rem;
  line-height: 1.2;
}

.products-feature-card p {
  margin: 0;
  color: #5f7387;
  max-width: 26ch;
  font-size: 0.86rem;
  line-height: 1.42;
}

.products-features-object {
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: end;
  width: min(100%, 720px);
  margin: 0;
  pointer-events: none;
}

.products-features-object img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.specs-shell {
  padding: clamp(0.95rem, 1.8vw, 1.25rem);
}

.spec-grid {
  gap: 0.8rem;
}

.spec-card {
  padding: 0.92rem;
}

.spec-card h3 {
  margin-bottom: 0.56rem;
}

.spec-list dt,
.spec-list dd {
  padding: 0.62rem 0.72rem;
}

.spec-doc-links {
  margin-top: 0.95rem;
}

.spec-doc-links a {
  min-height: 60px;
  padding: 0.78rem 0.92rem;
}

.sensor-family-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sensor-family-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.compact-bullet-list {
  margin-top: 0.1rem;
  padding-left: 1rem;
  gap: 0.42rem;
  font-size: 0.93rem;
  line-height: 1.56;
}

.testing-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.testing-card-media {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: #081827;
}

.testing-card-product {
  object-fit: contain;
  padding: 0.45rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(123, 206, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(247, 250, 254, 0.98), rgba(239, 245, 251, 0.98));
}

#sensing {
  background:
    radial-gradient(circle at 50% 0, rgba(179, 226, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(249, 251, 254, 0.98), rgba(242, 247, 252, 0.96));
}

#sensing .container {
  max-width: 1120px;
}

#sensing .section-head {
  justify-items: start;
  text-align: left;
  margin: 0 0 clamp(1.2rem, 2.8vw, 1.8rem);
  max-width: 760px;
  margin-left: -0.08rem;
}

#sensing .section-head h2 {
  max-width: none;
  text-wrap: balance;
}

#sensing .section-head p {
  max-width: 46ch;
}

#sensing .reveal,
html.js #sensing .reveal,
html.js #sensing .reveal.in-view {
  opacity: 1;
  transform: none;
  transition: none;
}

.visight-scroll-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  max-width: 1120px;
  margin: 0;
  align-items: start;
}

.visight-stage {
  display: grid;
  gap: 0.9rem;
  margin-left: 0;
  padding: 1rem;
  position: sticky;
  top: 110px;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(181, 231, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96));
  box-shadow: 0 22px 50px rgba(35, 63, 92, 0.08);
}

.visight-lottie {
  min-height: clamp(320px, 34vw, 420px);
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 22px;
  background-image:
    radial-gradient(circle at 50% 26%, rgba(124, 196, 244, 0.2), transparent 34%),
    url("../assets/images/point-cloud-curve.png"),
    linear-gradient(180deg, #0e2032 0%, #173048 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center;
  background-size: auto, min(74%, 560px) auto, cover;
}

#sensing .visight-lottie canvas,
#sensing .visight-lottie svg {
  transform: none;
  filter: saturate(1.04) contrast(1.04);
}

.visight-controls {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
}

#sensing .visight-scrub-label {
  color: #5e7489;
}

#sensing .visight-scrub {
  flex: 0 1 220px;
}

.visight-points {
  grid-template-columns: 1fr;
  gap: clamp(7rem, 14vh, 10.5rem);
  margin-top: 0;
  align-content: start;
  padding: clamp(0.6rem, 4vh, 2rem) 0 clamp(8rem, 16vh, 12rem);
}

.visight-point {
  display: block;
  width: 100%;
  min-height: clamp(160px, 21vh, 240px);
  padding: 0 0 0 0.9rem;
  appearance: none;
  border: 0;
  border-left: 2px solid rgba(94, 116, 137, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.38;
  transform: none;
  text-align: left;
  cursor: default;
  transition: opacity 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.visight-point:hover {
  transform: none;
  border-color: rgba(94, 116, 137, 0.18);
  box-shadow: none;
}

.visight-point-title {
  margin-bottom: 0.34rem;
  color: #16304a;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
}

.visight-point-text {
  color: #607486;
  font-size: 0.94rem;
  line-height: 1.52;
  max-width: 28ch;
}

.visight-point.is-active {
  opacity: 1;
  border-color: #29a7ff;
  background: transparent;
  box-shadow: none;
}

.visight-point.is-active .visight-point-title {
  color: #12263a;
}

.visight-point.is-active .visight-point-text {
  color: #4f667c;
}

@media (min-width: 993px) {
  #sensing .visight-controls {
    display: none;
  }

  .visight-point {
    pointer-events: none;
  }
}

.industry-video-card {
  overflow: hidden;
  grid-template-rows: auto 1fr;
}

.industry-video-copy {
  min-height: 148px;
  padding: 1rem 1rem 0.85rem;
  gap: 0.42rem;
}

.industry-video-copy h2 {
  font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  line-height: 1.22;
}

.industry-video-copy p:last-child {
  font-size: 0.95rem;
  line-height: 1.54;
}

.industry-video-media > img {
  aspect-ratio: 16 / 9;
}

.contact-shell {
  gap: 1.15rem;
  align-items: start;
}

.contact-panel {
  gap: 0.9rem;
  padding: 1.2rem;
}

.contact-panel h2 {
  font-size: clamp(1.46rem, 2vw, 1.9rem);
}

.contact-meta {
  gap: 0.72rem;
}

.contact-meta-card {
  padding: 0.95rem 1rem;
}

.lead-form {
  gap: 0.82rem;
}

.form-grid,
.form-grid-compact {
  gap: 0.72rem;
}

.contact-note {
  margin-top: 0.15rem;
}

.featured-application .container {
  max-width: 1120px;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  border: 1px solid rgba(18, 32, 51, 0.07);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(142, 217, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88));
  box-shadow: 0 22px 54px rgba(35, 63, 92, 0.06);
}

#featured-application {
  padding-top: clamp(1rem, 1.8vw, 1.5rem);
  padding-bottom: clamp(2.15rem, 3.8vw, 3rem);
}

.home-featured .container,
.home-overview .container,
#sensing .container,
#videos .container {
  max-width: 1120px;
}

.home-featured,
.home-overview,
#sensing,
#videos {
  padding-top: clamp(3.7rem, 5.8vw, 4.9rem);
  padding-bottom: clamp(3.7rem, 5.8vw, 4.9rem);
}

.featured-application .featured-grid {
  grid-template-columns: minmax(440px, 520px) minmax(400px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
  justify-content: start;
}

.featured-application .featured-media {
  width: min(100%, 500px);
  max-width: 500px;
  justify-self: start;
  align-self: center;
  padding: 0.72rem;
  border: 1px solid rgba(18, 32, 51, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(35, 63, 92, 0.07);
}

.featured-application .featured-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: rgba(239, 245, 251, 0.96);
}

.featured-application .featured-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.featured-application .featured-video-hit {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.featured-application .play-fab {
  width: 66px;
  height: 66px;
  z-index: 3;
  pointer-events: none;
}

.featured-application .featured-copy {
  display: grid;
  gap: 0.78rem;
  width: 100%;
  max-width: 490px;
  justify-self: start;
  align-self: center;
  align-content: start;
  position: relative;
  padding: 0.15rem 0 0.15rem 1.18rem;
}

.featured-application .featured-copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.featured-application .featured-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(91, 181, 243, 0.08), rgba(91, 181, 243, 0.5), rgba(91, 181, 243, 0.08));
}

.featured-application .featured-copy .eyebrow {
  margin-bottom: 0.08rem;
  color: #718aa4;
}

.featured-application .featured-copy h2 {
  max-width: none;
  font-size: clamp(1.84rem, 2.35vw, 2.22rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.featured-application .featured-copy p {
  max-width: 37ch;
  font-size: 1rem;
  line-height: 1.62;
}

.featured-application .cta-inline {
  margin-top: 0.32rem;
}

.home-featured .featured-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  align-items: center;
}

.home-featured .featured-media {
  max-width: 440px;
  padding: 0.72rem;
}

.home-featured .featured-copy {
  gap: 0.68rem;
  max-width: 430px;
}

.home-featured .featured-copy h2 {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.home-featured .featured-copy p {
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.58;
}

.home-featured .cta-inline {
  margin-top: 0.55rem;
}

#spotlight .container {
  max-width: 980px;
}

#videos .container {
  max-width: 1120px;
}

.home-overview .section-head,
#sensing .section-head {
  max-width: 780px;
}

.home-overview .section-head {
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.home-overview .section-head h2 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.home-overview .benefits-grid {
  gap: 1rem;
}

.home-overview .benefit-card {
  min-height: 150px;
  padding: 1.1rem 1.08rem;
}

.home-overview .benefit-card h3 {
  margin-bottom: 0.42rem;
  font-size: 1.08rem;
}

.home-overview .benefit-card p {
  font-size: 0.94rem;
  line-height: 1.58;
}

.home-overview .cta-inline {
  margin-top: 1rem;
}

#spotlight .spotlight-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.55rem);
}

#spotlight .spotlight-copy {
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 0.72rem;
  max-width: 430px;
}

#spotlight .spotlight-copy h2 {
  margin-bottom: 0.05rem;
  max-width: 10ch;
  font-size: clamp(1.7rem, 2.3vw, 2.2rem);
  line-height: 1.04;
}

#spotlight .spotlight-copy p {
  max-width: 41ch;
  font-size: 0.96rem;
  line-height: 1.58;
}

#spotlight .cta-inline {
  margin-top: 0.45rem;
}

#spotlight .spotlight-media {
  min-height: auto;
  width: min(100%, 410px);
  max-width: 410px;
  justify-self: end;
  padding: 0.92rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0, rgba(184, 228, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.95));
  box-shadow: 0 22px 48px rgba(35, 63, 92, 0.1);
}

#spotlight .spotlight-media-frame {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(205, 234, 255, 0.34), transparent 44%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(239, 245, 251, 0.94));
}

#spotlight .spotlight-media img {
  width: min(100%, 252px);
  height: auto;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 18px 32px rgba(46, 73, 103, 0.18));
}

#videos .veldar-demo-grid {
  max-width: 1120px;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 1.15rem 1.2rem;
  background:
    radial-gradient(circle at 100% 0, rgba(181, 231, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 248, 252, 0.96));
  box-shadow: 0 20px 48px rgba(35, 63, 92, 0.08);
}

#videos .veldar-demo-grid {
  max-width: 1120px;
  padding: 1.1rem 1.2rem;
}

.demo-cta-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 450px;
}

#videos .demo-cta-copy {
  gap: 0.7rem;
  max-width: 560px;
}

.demo-title {
  margin: 0;
  color: #13263a;
  font-size: clamp(1.65rem, 2.1vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

#videos .demo-title {
  font-size: clamp(1.65rem, 2.1vw, 2.05rem);
}

.demo-secondary {
  display: block;
  margin: 0;
  color: #607486;
  font-size: 0.95rem;
  line-height: 1.58;
  max-width: 42ch;
  text-decoration: none;
}

#videos .demo-secondary {
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.58;
}

.demo-mini-links {
  margin-top: 0.2rem;
  gap: 0.5rem;
}

.demo-chip {
  min-height: 40px;
  padding: 0.52rem 0.82rem;
  border: 1px solid rgba(24, 58, 88, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: #23445f;
  font-size: 0.83rem;
  font-weight: 700;
  box-shadow: none;
}

.demo-chip:hover {
  border-color: rgba(24, 58, 88, 0.18);
  background: rgba(243, 248, 253, 0.98);
  color: #12263a;
}

.demo-cta-media {
  max-width: 400px;
  padding: 0.72rem;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(35, 63, 92, 0.08);
}

#videos .demo-cta-media {
  max-width: 400px;
  padding: 0.72rem;
}

.demo-cta-frame {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 42% 42%, rgba(193, 230, 255, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(241, 246, 252, 0.94));
}

#videos .demo-cta-frame {
  min-height: 220px;
}

.demo-cta-media img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(52, 84, 117, 0.12));
}

#videos .demo-cta-media img {
  width: min(100%, 320px);
}

.site-footer {
  padding: 1.35rem 0 2.2rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 32, 51, 0.07);
  box-shadow: 0 10px 24px rgba(34, 58, 84, 0.045);
}

.nav-wrap {
  min-height: 72px;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.brand-badge {
  gap: 0.42rem;
  padding: 0.34rem 0.66rem;
  color: #566d83;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-partner-logo {
  width: 82px;
  opacity: 1;
}

.nav-list {
  gap: clamp(0.4rem, 1vw, 0.7rem);
}

.nav-list a {
  color: #31475d;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.005em;
}

.nav-list a:not(.btn) {
  min-height: 38px;
  padding: 0.42rem 0.72rem;
}

.nav-list a:not(.btn):hover {
  background: rgba(239, 246, 252, 0.96);
  color: #102235;
}

.site-footer {
  padding: 1.55rem 0 2.35rem;
}

.footer-grid {
  gap: 1.15rem;
}

.footer-grid p {
  margin: 0;
  color: #708396;
  font-size: 0.8rem;
  line-height: 1.56;
}

.footer-links {
  margin-top: 0.38rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem 0.48rem;
  font-size: 0.84rem;
}

.footer-links a {
  color: #34526c;
  font-weight: 500;
}

.footer-disclaimer {
  margin-top: 0.55rem;
  max-width: 58ch;
  color: #8597a8;
  font-size: 0.76rem;
  line-height: 1.52;
}

.socials {
  gap: 0.45rem;
}

.socials a {
  width: 42px;
  height: 42px;
  padding: 0;
  box-shadow: 0 12px 22px rgba(35, 63, 92, 0.06);
}

@media (max-width: 1200px) {
  .tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .products-model-subgrid-legacy {
    grid-template-columns: 1fr;
  }

  .products-models-section .products-section-head h2 {
    white-space: normal;
    text-wrap: balance;
  }

  .spec-sheet-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .home-hero-grid,
  .simple-page-hero .hero-grid,
  .visight-scroll-grid,
  .contact-shell,
  .products-tech-bridge-grid,
  .products-tech-intro-grid,
  .products-clear-vision-grid,
  .products-models-grid,
  #spotlight .spotlight-grid,
  #videos .veldar-demo-grid,
  .featured-application .featured-grid,
  .testing-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-wrap {
    min-height: auto;
  }

  .home-hero-visual,
  .products-hero-card,
  .hero-product-card {
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .simple-page-title,
  .section-head h2,
  .products-hero .hero-copy h1,
  .home-hero-copy h1 {
    max-width: none;
  }

  #hero .products-hero-card {
    width: min(100%, 500px);
    transform: translateX(0) translateY(-10px);
  }

  #hero .hero-copy {
    transform: translateY(-10px);
  }

  .visight-lottie {
    min-height: 300px;
    background-size: auto, 86% auto, cover;
  }

  .industry-video-copy {
    min-height: 132px;
  }

  .featured-application .featured-media,
  .featured-application .featured-copy,
  #spotlight .spotlight-copy,
  #spotlight .spotlight-media,
  .demo-cta-copy,
  .demo-cta-media {
    max-width: none;
  }

  .featured-application .featured-copy {
    padding-left: 1rem;
  }

  .products-radar-lottie {
    min-height: 240px;
  }

  .products-tech-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .products-tech-hardware {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    min-height: unset;
  }

  .products-features-showcase {
    grid-template-columns: 1fr;
  }

  .spec-sheet-media {
    aspect-ratio: 2.6 / 1;
  }

  .products-features-object {
    justify-self: center;
    width: min(100%, 760px);
  }

  .products-tech-bridge-copy {
    max-width: none;
  }

  .products-connectivity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .products-features-object {
    width: min(100%, 720px);
  }

  .spec-compare-scroll {
    padding: 0 0.65rem;
  }

  #spotlight .spotlight-media,
  .demo-cta-media {
    justify-self: stretch;
  }

  #spotlight .spotlight-copy {
    justify-items: start;
    text-align: left;
  }

  .visight-points {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 0.35rem 0 0;
  }

  .visight-point {
    min-height: auto;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: clamp(3.25rem, 7vw, 4rem) 0;
  }

  .home-hero,
  .hero.simple-page-hero,
  .simple-page-hero {
    padding-top: 2.6rem;
    padding-bottom: 1.2rem;
  }

  .industries-page-hero {
    padding-top: 3.35rem;
    padding-bottom: 0.75rem;
  }

  .industries-page-hero .container {
    max-width: 100%;
  }

  .industries-page-hero-copy {
    max-width: 100%;
  }

  .industries-page-hero .simple-page-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .industries-page-hero-copy > p:not(.eyebrow) {
    max-width: 36ch;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-product-card,
  .products-hero-card,
  .contact-panel,
  .benefit-card,
  .tile,
  .industry-video-card,
  .spec-doc-links a,
  .docs-list a {
    border-radius: 20px;
  }

  .hero-product-card,
  .contact-panel,
  .benefit-card,
  .tile,
  .contact-meta-card {
    padding: 1rem;
  }

  .hero-product-card img,
  .products-hero-card img {
    width: min(100%, 280px);
    height: clamp(180px, 56vw, 220px);
  }

  .products-tech-hardware {
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    padding: 0.85rem;
    border-radius: 22px;
  }

  .products-tech-hardware img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  #hero .products-hero-card img {
    width: min(100%, 320px);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-6px);
  }

  #hero .hero-copy {
    transform: none;
    max-width: 100%;
  }

  #hero .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.2rem;
    min-height: 0;
  }

  #hero .hero-copy h1 {
    margin-bottom: 0.72rem;
    font-size: clamp(2.15rem, 10.8vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
    white-space: normal;
    text-wrap: balance;
  }

  #hero .hero-subtitle,
  #hero .hero-lead {
    max-width: none;
  }

  #hero .hero-subtitle {
    margin-bottom: 0.72rem;
    font-size: 1rem;
    line-height: 1.46;
  }

  #hero .hero-lead {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  #hero .hero-actions {
    margin-top: 1.05rem;
    gap: 0.72rem;
  }

  #hero .hero-inline-link {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  #hero .home-radar-hero {
    justify-self: center;
    width: min(100%, 310px);
    margin: 0 auto;
    transform: none;
  }

  #hero .home-radar-hero img {
    width: min(100%, 268px);
    justify-self: center;
    transform: none;
  }

  #hero .products-hero-card {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(100%, 310px);
    transform: none;
    gap: 0.35rem;
  }

  #hero .products-hero-card img {
    grid-column: 1;
    width: min(100%, 268px);
    max-height: none;
    justify-self: center;
    margin: 0 auto;
    transform: none;
  }

  #hero .products-hero-card figcaption {
    grid-column: 1;
    max-width: 28ch;
    justify-self: center;
    text-align: center;
  }

  .featured-application .featured-copy {
    padding-left: 0;
  }

  .featured-application .featured-copy::before {
    display: none;
  }

  .featured-application .container {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .featured-application .featured-grid {
    gap: 1rem;
  }

  .featured-application .featured-media {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .featured-application .featured-copy {
    gap: 0.55rem;
  }

  .featured-application .featured-copy p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .featured-application .play-fab {
    width: 58px;
    height: 58px;
  }

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

  .range-metric-grid,
  .sensor-summary-grid,
  .sensor-family-grid,
  .capability-grid,
  .testing-grid,
  .products-features-grid,
  .products-connectivity-grid,
  .form-grid-compact,
  .visight-points {
    grid-template-columns: 1fr;
  }

  .industry-video-copy {
    min-height: auto;
  }

  .visight-lottie {
    min-height: 280px;
  }

  .products-video-shell {
    border-radius: 24px;
    min-height: 360px;
  }

  .product-specs-headline {
    margin-bottom: 1rem;
  }

  .product-specs-headline h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .products-video-overlay {
    padding: 2.4rem 1rem 3.6rem;
  }

  .products-video-overlay h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .products-video-tagline {
    font-size: 1rem;
  }

  .products-hero-video-toggle {
    right: 0.9rem;
    bottom: 0.9rem;
    min-width: 76px;
    min-height: 38px;
    padding: 0 0.82rem;
    font-size: 0.8rem;
  }

  .products-weather-row {
    gap: 0.55rem;
  }

  .products-weather-item {
    min-height: 44px;
    padding: 0.46rem 0.76rem;
  }

  .products-model-subcard,
  .products-connectivity-card {
    border-radius: 18px;
  }

  .products-range-row {
    grid-template-columns: 1fr;
  }

  .products-range-row > span {
    border-radius: 0;
  }

  .products-range-row > span:first-child {
    border-radius: 16px 16px 0 0;
  }

  .products-range-row > span:last-child {
    border-radius: 0 0 16px 16px;
  }

  .products-features-showcase {
    gap: 0.6rem;
    padding-bottom: 0.85rem;
  }

  .spec-sheet-shell {
    border-radius: 22px;
  }

  .spec-sheet-media {
    aspect-ratio: 2 / 1;
  }

  .spec-sheet-titlebar {
    min-height: 38px;
    padding: 0.62rem 0.8rem;
    font-size: 0.86rem;
  }

  .spec-sheet-docs {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .products-features-object {
    width: 100%;
    margin-top: 0.1rem;
  }

  #sensing .section-head {
    margin-left: 0;
  }

  .visight-point {
    min-height: auto;
    opacity: 0.78;
    border: 1px solid rgba(18, 32, 51, 0.1);
    border-left-width: 1px;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.66);
    cursor: pointer;
  }

  .visight-stage {
    position: static;
    top: auto;
    padding: 0.8rem;
    border-radius: 22px;
  }

  .visight-scroll-grid {
    gap: 1rem;
  }

  .visight-points {
    gap: 0.82rem;
    padding: 0.35rem 0 0;
  }

  .visight-point.is-active {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(35, 63, 92, 0.08);
  }

  .visight-point:hover {
    border-color: rgba(28, 138, 214, 0.3);
  }
}
