/* ── Self-hosted fonts (free / SIL OFL 1.1 — no third-party CDN) ───────────── */
/* Noto Sans SC: subset to characters used on the site. License: assets/fonts/Noto-Sans-SC-LICENSE.txt
   To regenerate after adding new Chinese copy, re-run the pyftsubset build over the site text. */
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/Noto-Sans-SC-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/Noto-Sans-SC-Bold.woff') format('woff');
}
/* Orbitron (SIL OFL 1.1) — used only for the 9px loader wordmark.
   This font could not be fetched in the build sandbox (no network). To enable:
   download the Orbitron bold webfont from the OFL source, place it in
   assets/fonts/, then uncomment the block below. Until then the loader uses the
   monospace fallback in .fr-loader-wordmark. */
/*
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/Orbitron-Bold.woff') format('woff');
}
*/

/* ── Accessibility: skip link + visible keyboard focus (WCAG 2.4.1 / 2.4.7) ── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  padding: 10px 18px;
  border-radius: 8px;
  background: #1dc8ff;
  color: #00131f;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid #00131f;
  outline-offset: 2px;
}
:where(a, button, input, textarea, select, [tabindex], [data-filter], [role="button"]):focus-visible {
  outline: 3px solid #1dc8ff;
  outline-offset: 2px;
  border-radius: 4px;
}

:root {
  --ink: #f4faff;
  --muted: rgba(185, 225, 248, 0.92);
  --line: rgba(255, 255, 255, 0.20);
  --paper: rgba(255, 255, 255, 0.07);
  --wash: #0c2e47;
  --brand-blue: #1dc8ff;
  --cyan: #1dc8ff;
  --blue: #4a9fe8;
  --orange: #ff8c2a;
  --navy: #060f18;
  --deep: #0c2e47;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --light-ink: #0b1720;
  --light-muted: #637381;
  --shadow: 0 20px 64px rgba(0, 0, 0, 0.38);
  --glow: 0 0 32px rgba(29, 200, 255, 0.30);
  --text-eyebrow: 22px;
  --text-body: 18px;
  --text-body-large: 20px;
  --text-caption: 14px;
  --text-small: 12px;
  --title-page: clamp(32px, 3.5vw, 48px);
  --title-section: clamp(28px, 3vw, 40px);
  --title-card: 22px;
  --leading-body: 1.72;
  --font-main: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* animated hero background */
@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  line-height: 1.5;
  background:
    radial-gradient(circle at 14% 6%, rgba(29, 200, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(74, 159, 232, 0.18), transparent 30%),
    radial-gradient(circle at 50% 55%, rgba(12, 46, 71, 0.60), transparent 60%),
    linear-gradient(180deg, #060f18 0%, #0c2e47 45%, #071520 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

button,
a,
input,
textarea,
select,
table {
  font-family: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 15, 24, 0.88);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 168px;
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(3, 60, 92, 0.08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-lockup {
  color: rgba(193, 220, 232, 0.88);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(244, 251, 255, 0.8);
  font-size: var(--text-caption);
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.menu-button {
  display: none;
}

.mobile-nav {
  position: absolute;
  right: 20px;
  top: 68px;
  display: none;
  width: min(320px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 15, 24, 0.96);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.section-nav {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(138px, 1fr);
  gap: 1px;
  padding: 1px clamp(20px, 5vw, 76px);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 15, 24, 0.92);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  color: rgba(244, 251, 255, 0.82);
  font-size: var(--text-caption);
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, background 0.2s ease;
}

.section-nav a:hover {
  color: #060f18;
  background: var(--brand-blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 76px) 42px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 197, 223, 0.17), transparent 30%),
    radial-gradient(circle at 20% 84%, rgba(74, 163, 255, 0.13), transparent 34%),
    linear-gradient(135deg, #060f18 0%, #0c2e47 54%, #061a2b 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(29, 200, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 200, 255, 0.2) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(420px) rotateX(60deg);
  transform-origin: bottom;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: var(--text-eyebrow);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: var(--title-page);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--title-card);
  line-height: 1.2;
}

p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.hero-text {
  max-width: 630px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: var(--leading-body);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-button {
  color: #060f18;
  background: var(--brand-blue);
  box-shadow: 0 12px 36px rgba(29, 200, 255, 0.38);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button svg,
.secondary-button svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(143, 197, 223, 0.08)),
    radial-gradient(circle at center, rgba(143, 197, 223, 0.18), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(29, 200, 255, 0.22);
  border-radius: 50%;
}

.hero-visual::after {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 70px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-product {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(24, 72, 99, 0.22));
}

.hero-product-main {
  left: 10%;
  top: 18%;
  width: 80%;
}

.hero-product-left {
  left: 5%;
  bottom: 14%;
  width: 43%;
}

.hero-product-right {
  right: 7%;
  bottom: 13%;
  width: 39%;
}

.scan-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 200, 255, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(6, 15, 24, 0.72);
  backdrop-filter: blur(14px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 76px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.metrics div {
  min-height: 132px;
  padding: 24px;
  background: var(--panel);
}

.metrics strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: var(--title-section);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  scroll-margin-top: 140px;
  padding: clamp(76px, 10vw, 124px) clamp(20px, 5vw, 76px);
}

.page-section {
  display: none;
  min-height: calc(100vh - 124px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-section.active {
  display: block;
}

.page-section > * {
  position: relative;
  z-index: 1;
}

.page-section:not(.philosophy-section)::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 13% 18%, rgba(29, 200, 255, 0.13) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 24%, rgba(143, 197, 223, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 82%, rgba(29, 200, 255, 0.08) 0 1px, transparent 2px),
    repeating-linear-gradient(115deg, rgba(143, 197, 223, 0.035) 0 1px, transparent 1px 76px),
    radial-gradient(ellipse at 8% 14%, transparent 0 86px, rgba(29, 200, 255, 0.10) 87px 88px, transparent 89px 140px, rgba(29, 200, 255, 0.07) 141px 142px, transparent 143px);
}

.intro::before {
  opacity: 0.55;
}

.product-section::before {
  opacity: 0.36;
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 200, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 28%, rgba(143, 197, 223, 0.07) 0 1px, transparent 2px),
    repeating-linear-gradient(115deg, rgba(143, 197, 223, 0.018) 0 1px, transparent 1px 108px),
    radial-gradient(ellipse at 8% 14%, transparent 0 104px, rgba(29, 200, 255, 0.07) 105px 106px, transparent 107px 170px);
}

.intro::after,
.product-section::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -24%;
  z-index: 0;
  width: 42%;
  height: 42%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at left, rgba(29, 200, 255, 0.20), rgba(29, 200, 255, 0.05) 45%, transparent 72%);
  transform: translateX(0) skewX(-12deg);
}

.intro.fx-pulse::after,
.product-section.fx-pulse::after {
  animation: sectionSoftPulse 1.35s ease-out 1 forwards;
}

@keyframes sectionSoftPulse {
  0%   { opacity: 0; transform: translateX(0) skewX(-12deg); }
  22%  { opacity: 0.55; }
  100% { opacity: 0; transform: translateX(210%) skewX(-12deg); }
}

.section-nav a.active,
.desktop-nav a.active,
.mobile-nav a.active {
  color: #060f18;
  background: var(--brand-blue);
}

.desktop-nav a.active::after {
  width: 100%;
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: var(--title-page);
  line-height: 1.15;
}

.section-heading .eyebrow {
  margin: 0;
}

.products-application-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-caption);
  opacity: 0.72;
  letter-spacing: 0.02em;
}

.application-layout,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform-intro {
  max-width: 1080px;
  margin: -8px auto 30px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  text-align: center;
}

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

.platform-deep-dive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.platform-deep-dive article {
  min-height: 0;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.065)),
    radial-gradient(circle at 100% 0%, rgba(143, 197, 223, 0.13), transparent 34%);
  box-shadow: var(--shadow);
}

.capability-thumb {
  display: block;
  width: 100%;
  height: clamp(132px, 11vw, 168px);
  margin-bottom: 18px;
  border: 1px solid rgba(108, 207, 255, 0.30);
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  object-position: 50% 56%;
  background: rgba(9, 31, 47, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  filter: brightness(1.18) saturate(1.18) contrast(1.08);
}

.platform-deep-dive span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: var(--text-caption);
  font-weight: 900;
  text-transform: uppercase;
}

.platform-deep-dive h3 {
  font-size: var(--title-card);
  line-height: 1.2;
}

.platform-deep-dive p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: var(--leading-body);
}

.production-capability {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 0;
  border-top: 1px solid rgba(143, 197, 223, 0.2);
}

.production-photo {
  order: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(143, 197, 223, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(2, 11, 20, 0.28);
}

.production-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.production-copy {
  order: 1;
  display: grid;
  max-width: 860px;
}

.production-copy h3 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: var(--title-section);
  line-height: 1.18;
}

.production-copy p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: var(--leading-body);
}

.production-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(108, 207, 255, 0.16);
}

.production-stats div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.production-stats strong {
  color: var(--cyan);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.15;
}

.production-stats span {
  color: var(--muted);
  font-size: var(--text-small);
  line-height: var(--leading-body);
}

.philosophy-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(143, 197, 223, 0.13), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(74, 163, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #0c2e47, #060f18);
}

.home-section {
  padding-top: clamp(64px, 8vw, 104px);
}

.philosophy-statement {
  display: grid;
  gap: 10px;
  max-width: 1060px;
  margin: 0 auto clamp(24px, 3vw, 40px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(143, 197, 223, 0.08)),
    radial-gradient(circle at 96% 20%, rgba(143, 197, 223, 0.14), transparent 28%);
  box-shadow: 0 14px 42px rgba(18, 66, 96, 0.09);
}

.philosophy-statement p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body-large);
  font-weight: 700;
  line-height: var(--leading-body);
}

.philosophy-statement p:nth-child(2) {
  color: var(--ink);
  font-weight: 900;
}

.statement-sub {
  margin: 4px 0 0 !important;
  color: var(--muted) !important;
  font-size: var(--text-body) !important;
  font-weight: 600 !important;
}

.philosophy-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.philosophy-benefits li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 10px 14px;
  border-left: 3px solid var(--cyan);
  background: rgba(29, 200, 255, 0.05);
  border-radius: 0 6px 6px 0;
  font-size: var(--text-body);
  line-height: 1.55;
}

.philosophy-benefits li strong {
  flex-shrink: 0;
  color: var(--ink);
  font-weight: 700;
}

.philosophy-benefits li strong::after {
  content: ":";
  margin-right: 4px;
}

.philosophy-benefits li span {
  color: var(--muted);
}

/* ── CTA Buttons ─────────────────────────── */
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 auto 32px;
  max-width: 1060px;
  padding: 0 clamp(18px, 3vw, 28px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  background: var(--cyan);
  color: #060f18;
  font-size: var(--text-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--cyan);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1.5px solid var(--cyan);
  border-radius: 6px;
  color: var(--cyan);
  font-size: var(--text-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(29, 200, 255, 0.1);
  transform: translateY(-1px);
}

/* ── Partners Bar ────────────────────────── */
.partners-bar {
  max-width: 1060px;
  margin: 32px auto 0;
  padding: 20px clamp(18px, 3vw, 28px);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partners-label {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partners-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-logo-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}

.partner-logo-card:hover {
  border-color: var(--cyan);
  background: rgba(29, 200, 255, 0.06);
}

.partner-name {
  color: var(--ink);
  font-size: var(--text-body);
  font-weight: 700;
}

.partner-desc {
  color: var(--muted);
  font-size: var(--text-caption);
}

/* ── Keyframes ───────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 200, 255, 0); }
  50%       { box-shadow: 0 0 18px 6px rgba(29, 200, 255, 0.35); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes scanLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(29, 200, 255, 0.2); }
  50%       { border-color: rgba(29, 200, 255, 0.6); }
}

/* ── Fade-in entrance animation ─────────── */
.fade-in {
  opacity: 0;
}

.fade-in.is-visible {
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.08s; }
.fade-in:nth-child(3) { animation-delay: 0.16s; }
.fade-in:nth-child(4) { animation-delay: 0.24s; }
.fade-in:nth-child(5) { animation-delay: 0.32s; }
.fade-in:nth-child(6) { animation-delay: 0.40s; }

/* ── 2021 → 2026 timeline hero ───────────── */
.timeline-hero {
  max-width: 1060px;
  margin: 0 auto clamp(42px, 5vw, 72px);
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(29, 200, 255, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 200, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  position: relative;
}

.timeline-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(29, 200, 255, 0.12) 44%, transparent 62%);
  transform: translateX(-70%);
  animation: timelineSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.timeline-stage {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 3.6vw, 40px);
}

.timeline-track {
  position: absolute;
  top: 33px;
  left: 6%;
  right: 6%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.timeline-beam {
  display: block;
  height: 100%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--cyan), #a8f0ff, var(--blue)),
    rgba(255, 255, 255, 0.12);
  transform-origin: left center;
  transform: scaleX(0);
  box-shadow: 0 0 22px rgba(29, 200, 255, 0.5);
}

.timeline-hero.is-visible .timeline-beam {
  animation: timelineBeam 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.timeline-copy {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.timeline-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.18;
}

.timeline-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.timeline-events {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
}

.timeline-event {
  position: relative;
  min-height: 148px;
  padding: 46px 10px 16px;
  border: 1px solid rgba(103, 181, 220, 0.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 200, 255, 0.20), transparent 50%),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 4px 18px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  filter: blur(5px);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.timeline-event:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 8px 32px rgba(23,174,224,0.22);
  border-color: rgba(29, 200, 255, 0.55);
}

.timeline-event::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(29, 200, 255, 0.15), 0 0 20px rgba(29, 200, 255, 0.8);
  transform: translateX(-50%);
}

.timeline-event-year {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
  text-shadow: 0 0 22px rgba(29, 200, 255, 0.65);
  white-space: nowrap;
}

.timeline-event h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.38;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}

.timeline-event-final {
  border-color: rgba(29, 200, 255, 0.55);
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 200, 255, 0.32), transparent 56%),
    rgba(29, 200, 255, 0.11);
}

.timeline-hero.timeline-running .timeline-event,
.timeline-hero.timeline-complete .timeline-event {
  animation: timelineFlyIn 0.70s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 300ms);
}

.timeline-event.is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes timelineBeam {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes timelineBeamVertical {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes timelineSweep {
  0%, 62%, 100% { transform: translateX(-70%); opacity: 0; }
  18% { opacity: 1; }
  42% { transform: translateX(78%); opacity: 0; }
}

@keyframes timelineFlyIn {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.93);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-hero::before,
  .timeline-hero.is-visible .timeline-beam,
  .timeline-hero.timeline-running .timeline-event,
  .timeline-hero.timeline-complete .timeline-event,
  .feature-card[data-capability-card]:first-child:hover h3::after,
  .feature-card[data-capability-card]:first-child:focus-visible h3::after {
    animation: none;
  }

  .timeline-beam {
    transform: scaleX(1);
  }

  .timeline-event {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .capability-detail,
  .feature-card.is-expanded::after,
  .image-lightbox,
  .image-lightbox.is-open img {
    transition: none;
  }
}

/* ── Card hover lift + glow ──────────────── */
.feature-card,
.mv-card,
.zadar-relationship,
.partner-logo-card,
.application-card,
.zadar-fusion-grid article,
.platform-deep-dive article,
.feature-card,
.product-card,
.application-layout article,
.jobs-grid article,
.why-join article,
.press-grid article,
.contact-grid article,
.jobs-note,
.jobs-contact {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
}

.feature-card.is-expanded {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 40px rgba(29, 200, 255, 0.18), var(--shadow);
  border-color: rgba(29, 200, 255, 0.4);
}

@keyframes capabilityScan {
  0% { opacity: 0; transform: translateX(-70%); }
  28% { opacity: 1; }
  100% { opacity: 0; transform: translateX(70%); }
}

/* ── CTA button glow pulse ───────────────── */
.btn-primary {
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
  box-shadow: 0 0 22px 6px rgba(29, 200, 255, 0.45);
}

/* ── Eyebrow shimmer label ───────────────── */
.eyebrow {
  background: linear-gradient(
    90deg,
    var(--cyan) 0%,
    #a8f0ff 38%,
    var(--cyan) 58%,
    var(--blue) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Image rendering ─────────────────────── */
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.capability-thumb,
.product-image,
.philosophy-image {
  image-rendering: auto;
}

/* ── Section heading title glow ─────────── */
.section-heading h2 {
  transition: text-shadow 0.3s ease;
}

.section-heading.is-visible h2 {
  text-shadow: 0 0 40px rgba(29, 200, 255, 0.2);
}

/* ── Scan line on hero image ─────────────── */
.philosophy-image-card {
  overflow: hidden;
  position: relative;
}

.philosophy-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(29, 200, 255, 0.6), transparent);
  animation: scanLine 5s linear infinite;
  pointer-events: none;
}

/* ── Border glow on zadar card ───────────── */
.zadar-relationship {
  animation: borderGlow 4s ease-in-out infinite;
}

/* ── Nav link hover underline ────────────── */
.desktop-nav a,
.section-nav a {
  position: relative;
}

.desktop-nav a::after,
.section-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a:hover::after,
.section-nav a:hover::after,
.desktop-nav a.active::after,
.section-nav a.active::after {
  width: 100%;
}

.philosophy-image-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(6px, 1.2vw, 14px);
  border: 1px solid rgba(143, 197, 223, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 197, 223, 0.2), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(74, 163, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #061420 0%, #0a2639 54%, #060f18 100%);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.philosophy-image {
  display: block;
  width: 100%;
  min-width: 0;
  height: auto;
}

.philosophy-image-en {
  display: block;
}

.philosophy-image-zh {
  display: none;
}

html[lang="zh-CN"] .philosophy-image-en {
  display: none;
}

html[lang="zh-CN"] .philosophy-image-zh {
  display: block;
}

.philosophy-image text,
.philosophy-image tspan {
  fill: #e9f6fb !important;
  font-size: 28px !important;
  font-weight: 900;
}

.philosophy-image > line {
  stroke: #e9f6fb;
}

.philosophy-image > path {
  stroke: rgba(143, 197, 223, 0.95);
}

.philosophy-image marker path {
  fill: #e9f6fb;
}

.bubble-text {
  font-weight: 900;
}

.multi-line {
  dominant-baseline: middle;
}

.icon-label {
  font-weight: 900;
}

.mission-vision {
  margin-top: clamp(34px, 5vw, 58px);
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(143, 197, 223, 0.07)),
    radial-gradient(circle at 92% 18%, rgba(143, 197, 223, 0.13), transparent 32%);
  box-shadow: var(--shadow);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.mv-card {
  grid-column: span 3;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.mv-card--values {
  grid-column: 1 / -1;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.values-list p {
  margin: 0;
}

.values-list strong {
  display: inline;
  margin-right: 2px;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.mv-card h4 {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: var(--text-body);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: var(--leading-body);
}

.zadar-relationship {
  max-width: 1180px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(143, 197, 223, 0.07)),
    radial-gradient(circle at 92% 18%, rgba(143, 197, 223, 0.13), transparent 32%);
  box-shadow: var(--shadow);
}

.zadar-relationship h3 {
  margin: 0 0 10px;
  font-size: var(--title-section);
  line-height: 1.18;
}

.zadar-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: var(--leading-body);
}

.contribution-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: var(--text-body);
}

.contribution-table th,
.contribution-table td {
  width: 50%;
}

.contribution-table th {
  padding: 10px 16px;
  background: rgba(29, 200, 255, 0.12);
  border: 1px solid var(--line);
  color: var(--cyan);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.contribution-table td {
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
  vertical-align: top;
}

.contribution-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.03);
}

.zadar-fusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.zadar-fusion-grid article {
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(29, 200, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(29, 200, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.zadar-fusion-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: var(--text-caption);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zadar-fusion-grid p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.52;
}

.zadar-outcome {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: var(--leading-body);
}

.global-map-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(143, 197, 223, 0.07)),
    radial-gradient(circle at 90% 10%, rgba(143, 197, 223, 0.12), transparent 34%);
  box-shadow: var(--shadow);
}

.global-map-copy h3 {
  margin-bottom: 14px;
  font-size: var(--title-section);
  line-height: 1.18;
}

.global-map-copy p:last-child {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.global-layout-image-wrap {
  position: relative;
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 197, 223, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 12%, rgba(143, 197, 223, 0.2), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(74, 163, 255, 0.13), transparent 36%),
    linear-gradient(135deg, #061420 0%, #0a2639 54%, #060f18 100%);
}

.global-layout-image-wrap--light {
  border-color: rgba(29, 200, 255, 0.42);
  background: #fff;
}

.global-layout-image-wrap.is-missing {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-style: dashed;
  background: #f8fcff;
}

.global-layout-image {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.global-layout-image-wrap.is-missing .global-layout-image {
  display: none;
}

.image-missing-note {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  text-align: center;
}

.global-layout-image-wrap.is-missing .image-missing-note {
  display: block;
}

.feature-card,
.application-layout article,
.video-slot,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-card,
.application-layout article,
.video-slot {
  padding: 28px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card[data-capability-card] {
  cursor: pointer;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: clamp(24px, 2.2vw, 34px);
}

.feature-card[data-capability-card] h3 {
  grid-column: 2;
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.18;
}

.feature-card[data-capability-card] .capability-thumb,
.feature-card[data-capability-card] p,
.feature-card[data-capability-card] .capability-detail {
  grid-column: 1 / -1;
}

.feature-card[data-capability-card] svg {
  grid-column: 1;
  align-self: center;
  margin-bottom: 0;
}

.feature-card[data-capability-card]:first-child h3::after {
  position: absolute;
  inset: -6px -10px;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(29, 200, 255, 0.26) 45%, transparent 72%);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-70%);
  pointer-events: none;
}

.feature-card[data-capability-card]:first-child:hover h3::after,
.feature-card[data-capability-card]:first-child:focus-visible h3::after {
  animation: capabilityScan 0.46s ease-out;
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(29, 200, 255, 0.24);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.55);
  pointer-events: none;
}

.feature-card.is-expanded::after {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-detail {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(29, 200, 255, 0.32);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(6, 15, 24, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
  font-size: var(--text-small);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
}

.feature-card.is-expanded .capability-detail {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card svg,
.application-layout svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--cyan);
}

.feature-card p,
.application-layout p,
.video-slot p,
.product-card p,
.spec-copy p {
  color: var(--muted);
  line-height: var(--leading-body);
}

.product-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 197, 223, 0.06), transparent 30%),
    linear-gradient(180deg, #06111b, #071c2c);
}

.product-toolbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.chip {
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: clamp(18px, 1.2vw, 22px);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.chip.active {
  border-color: rgba(29, 200, 255, 0.34);
  color: #060f18;
  background: var(--brand-blue);
}

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

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-color: rgba(22, 92, 126, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  border-color: rgba(29, 200, 255, 0.38);
  box-shadow: 0 8px 32px rgba(29, 200, 255, 0.12);
}

.product-card--wide {
  grid-column: 1 / -1;
}

.product-card img {
  cursor: zoom-in;
  width: 100%;
  height: 240px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #060f18;
  border-bottom: 1px solid rgba(29, 200, 255, 0.10);
}

.product-body {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 34px);
}

.product-body span {
  display: inline-block;
  justify-self: start;
  padding: 3px 8px;
  border: 1px solid rgba(29, 200, 255, 0.28);
  border-radius: 4px;
  color: var(--cyan);
  background: rgba(29, 200, 255, 0.08);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.product-body h3 {
  min-height: 0;
  font-size: var(--title-card);
  line-height: 1.28;
}

.product-body span,
.product-body h3 {
  text-transform: none !important;
}

.product-body p {
  margin-bottom: 0;
  font-size: var(--text-body);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-specs div {
  min-height: 68px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.product-specs strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.25;
}

.product-specs small {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.2;
}

.product-table-wrap {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.product-detail-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--muted);
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 1.35;
  max-width: 100%;
}

.product-detail-table th,
.product-detail-table td {
  padding: 11px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.product-detail-table th:last-child,
.product-detail-table td:last-child {
  border-right: 0;
}

.product-detail-table td.product-table-merged-cell {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(29, 200, 255, 0.06);
  font-weight: 900;
  vertical-align: middle;
}

.product-detail-table tr:last-child th,
.product-detail-table tr:last-child td {
  border-bottom: 0;
}

.product-detail-table thead th {
  color: var(--ink);
  background: rgba(29, 200, 255, 0.18);
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-table th:first-child {
  width: 28%;
}

.product-detail-table tbody th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.product-detail-table--two-col th:first-child {
  width: 50%;
}

.product-detail-table--two-col td {
  width: 50%;
  color: var(--ink);
  font-weight: 800;
}

.product-feature-line {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.product-card.is-hidden {
  display: none;
}

.applications {
  background:
    linear-gradient(90deg, rgba(6, 15, 24, 0.96), rgba(12, 46, 71, 0.94)),
    url("https://www.fusionride.com/static/www/images/pic1.png") center/cover;
  color: #fff;
}

.applications .eyebrow {
  color: var(--cyan);
}

.applications .application-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-layout article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.application-layout p {
  color: rgba(255, 255, 255, 0.74);
}

.application-image {
  display: block;
  width: calc(100% + 56px);
  height: auto;
  aspect-ratio: 16 / 10;
  margin: -28px -28px 24px;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 42%, rgba(143, 197, 223, 0.16), transparent 44%),
    linear-gradient(180deg, #f7fbfd, #eaf4f7);
}

.application-body {
  display: grid;
}

.application-layout svg {
  color: var(--cyan);
}

.application-video-link {
  justify-self: start;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(143, 197, 223, 0.42);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 800;
  font-size: var(--text-caption);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.application-video-link:hover {
  background: rgba(143, 197, 223, 0.12);
  border-color: rgba(143, 197, 223, 0.72);
}

.application-video-embed {
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(22, 92, 126, 0.14);
  border-radius: 8px;
  background: #eaf6fb;
  aspect-ratio: 16 / 9;
}

.application-video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-heading {
  margin-top: clamp(54px, 7vw, 82px);
}

.applications .video-slot {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.applications .video-slot p {
  color: rgba(255, 255, 255, 0.74);
}

.applications .video-slot::before {
  background:
    linear-gradient(90deg, rgba(143, 197, 223, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 10px, transparent 10px 22px);
}

.applications .video-slot svg {
  color: var(--cyan);
}

.spec-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(180deg, #060f18, #0c2e47);
}

.spec-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spec-table div {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.2fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.spec-table div:nth-child(even) {
  background: rgba(255, 255, 255, 0.12);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table strong {
  color: var(--cyan);
  font-size: var(--title-card);
}

.video-section {
  background: linear-gradient(180deg, #0c2e47, #060f18);
}

.video-slot {
  position: relative;
  min-height: 320px;
  padding-top: 112px;
  overflow: hidden;
}

.video-slot::before {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  height: 58px;
  content: "";
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 200, 255, 0.18), transparent),
    repeating-linear-gradient(90deg, rgba(29, 200, 255, 0.14) 0 10px, transparent 10px 22px);
}

.video-slot svg {
  position: absolute;
  left: 48px;
  top: 45px;
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 76px) clamp(60px, 8vw, 96px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 15, 24, 0.92), rgba(12, 46, 70, 0.92)),
    url("https://www.fusionride.com/static/www/images/pic1.png") center/cover;
  box-shadow: var(--shadow);
}

.contact-section {
  background: linear-gradient(180deg, #060f18, #0c2e47);
}

.jobs-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 197, 223, 0.12), transparent 28%),
    linear-gradient(180deg, #060f18, #0c2e47);
}

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

.jobs-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.jobs-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--blue);
}

.job-location {
  margin: 8px 0 10px;
  color: var(--brand-blue);
  font-size: var(--text-caption);
  font-weight: 700;
  line-height: 1.45;
}

.jobs-grid p,
.jobs-note p {
  color: var(--muted);
  line-height: var(--leading-body);
}

.jobs-grid .job-location {
  color: var(--brand-blue);
}

.jobs-overview {
  margin-top: 18px;
  padding: clamp(22px, 3.2vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 10%, rgba(29, 200, 255, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.jobs-overview .jobs-note {
  margin: 0;
  padding: 0 0 clamp(20px, 2.4vw, 28px);
  border: 0;
  border-bottom: 1px solid rgba(22, 92, 126, 0.18);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.jobs-note p {
  margin: 0;
  max-width: 980px;
  color: var(--muted);
  font-size: var(--text-body-large);
  line-height: 1.72;
}

.jobs-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 10%, rgba(29, 200, 255, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.jobs-contact svg {
  width: 30px;
  height: 30px;
  color: var(--cyan);
}

.jobs-contact h3 {
  margin-bottom: 8px;
}

.jobs-contact p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.jobs-contact a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(143, 197, 223, 0.34);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  background: rgba(143, 197, 223, 0.12);
}

.jobs-overview .why-join {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.why-join article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 150px;
  padding: 22px 24px;
  border: 1px solid rgba(29, 200, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.why-join article:first-child {
  padding-left: 24px;
}

.why-join article:last-child {
  padding-right: 24px;
}

.why-join h3 {
  display: flex;
  align-items: flex-start;
  min-height: 32px;
  margin: 0 0 8px;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.24;
}

.why-join p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  text-align: left;
}

.career-benefits {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(22px, 3.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 94% 10%, rgba(29, 200, 255, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.career-benefits-copy .eyebrow {
  margin-bottom: 10px;
  font-size: 18px;
}

.career-benefits-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  color: var(--ink);
}

.career-benefits-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

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

.benefit-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(29, 200, 255, 0.28);
  border-radius: 8px;
  background: rgba(29, 200, 255, 0.10);
  color: var(--ink);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 4px 12px rgba(29, 200, 255, 0.08);
}

.press-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(143, 197, 223, 0.12), transparent 30%),
    linear-gradient(180deg, #060f18, #0c2e47);
}

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

.press-grid article {
  display: grid;
  align-content: start;
  align-items: start;
  gap: 14px;
  min-height: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 100% 0%, rgba(143, 197, 223, 0.12), transparent 32%);
  box-shadow: var(--shadow);
}

.press-grid span {
  color: var(--cyan);
  font-size: var(--text-caption);
  font-weight: 900;
  text-transform: uppercase;
}

.press-grid h3 {
  margin: 0;
}

.press-grid p {
  margin: 0;
  color: var(--muted);
  line-height: var(--leading-body);
}

.press-summary {
  color: var(--muted) !important;
  font-weight: 500;
}

.press-grid a,
.contact-mail-link,
.press-read-more,
.press-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(143, 197, 223, 0.34);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  background: rgba(143, 197, 223, 0.12);
}

.press-read-more {
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-small);
}

.press-modal-open {
  overflow: hidden;
}

.press-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(6, 15, 24, 0.58);
  backdrop-filter: blur(12px);
}

.press-modal.is-open {
  display: flex;
}

.press-modal-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(82vh, 900px);
  overflow: auto;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid rgba(29, 200, 255, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 0%, rgba(29, 200, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #0c2e47 0%, #060f18 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54);
}

.press-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
}

.press-modal-date {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: var(--text-caption);
  font-weight: 900;
  text-transform: uppercase;
}

.press-modal-panel h3 {
  margin: 0 48px 22px 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
}

.press-modal-body {
  display: grid;
  gap: 18px;
}

.press-modal-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 6px;
}

.press-modal-media figure {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(108, 207, 255, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 200, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(10, 46, 71, 0.96), rgba(4, 18, 31, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 44px rgba(0, 0, 0, 0.22);
}

.press-modal-figure-wide,
.press-modal-figure-logo {
  border-color: rgba(108, 207, 255, 0.26);
}

.press-modal-figure-wide {
  grid-column: 1 / -1;
}

.press-modal-figure-logo {
  width: min(430px, 100%);
}

.press-modal-media img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 7px;
}

.press-modal-figure-wide img {
  max-height: 520px;
  object-fit: contain;
}

.press-modal-figure-logo img {
  max-height: 96px;
  object-fit: contain;
}

.press-modal-media figcaption {
  margin-top: 10px;
  color: rgba(218, 241, 252, 0.82);
  font-size: var(--text-caption);
  line-height: 1.45;
}

.press-modal-figure-wide figcaption {
  color: rgba(218, 241, 252, 0.82);
}

.press-modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.82;
}

.press-modal-link {
  margin-top: 26px;
  color: var(--brand-blue);
}

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

.contact-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 100% 0%, rgba(143, 197, 223, 0.12), transparent 32%);
  box-shadow: var(--shadow);
}

.contact-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  color: var(--blue);
}

.contact-grid p {
  color: var(--muted);
  line-height: var(--leading-body);
}

.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;
}

.contact-chat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-chat-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(108, 207, 255, 0.46);
  border-radius: 8px;
  color: #c9f4ff;
  background: rgba(8, 43, 68, 0.58);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-chat-button:hover,
.contact-chat-button:focus-visible {
  border-color: rgba(108, 207, 255, 0.88);
  background: rgba(13, 67, 100, 0.74);
  transform: translateY(-1px);
}

.chatbot-float-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 84;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(108, 207, 255, 0.5);
  border-radius: 8px;
  color: #e3fbff;
  background: rgba(4, 26, 42, 0.88);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34), 0 0 18px rgba(29, 200, 255, 0.14);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.chatbot-float-button svg {
  width: 19px;
  height: 19px;
  color: var(--brand-blue);
}

.chatbot-float-button:hover,
.chatbot-float-button:focus-visible {
  border-color: rgba(108, 207, 255, 0.88);
  background: rgba(8, 45, 68, 0.94);
  transform: translateY(-1px);
}

.chatbot-open .chatbot-float-button {
  opacity: 0;
  pointer-events: none;
}

.chatbot-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(0, 9, 18, 0.52);
}

.chatbot-panel.is-open {
  display: flex;
}

.chatbot-panel [hidden] {
  display: none !important;
}

.chatbot-open {
  overflow: hidden;
}

.chatbot-shell {
  width: min(640px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(108, 207, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 28, 45, 0.98), rgba(2, 16, 28, 0.98)),
    radial-gradient(circle at 10% 0%, rgba(29, 200, 255, 0.16), transparent 34%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), 0 0 28px rgba(29, 200, 255, 0.18);
  overflow: hidden;
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(108, 207, 255, 0.18);
}

.chatbot-kicker {
  margin: 0 0 6px;
  color: var(--brand-blue);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-header h2 {
  margin: 0;
  color: #ecfbff;
  font-size: 22px;
  line-height: 1.25;
}

.chatbot-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid rgba(108, 207, 255, 0.34);
  border-radius: 8px;
  color: #dff7ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px;
}

.chatbot-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  white-space: normal;
  font-size: 15px;
  line-height: 1.58;
}

.chatbot-message p {
  margin: 0;
}

.chatbot-message p + p,
.chatbot-message p + .chatbot-table-wrap,
.chatbot-table-wrap + p {
  margin-top: 8px;
}

.chatbot-table-wrap {
  max-width: 100%;
  margin: 8px 0 0;
  overflow-x: auto;
  border: 1px solid rgba(108, 207, 255, 0.22);
  border-radius: 8px;
}

.chatbot-table-wrap table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.45;
}

.chatbot-table-wrap th,
.chatbot-table-wrap td {
  padding: 7px 8px;
  border-bottom: 1px solid rgba(108, 207, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

.chatbot-table-wrap th {
  color: #8fe9ff;
  font-weight: 700;
  background: rgba(108, 207, 255, 0.08);
}

.chatbot-table-wrap tr:last-child td {
  border-bottom: 0;
}

.chatbot-message-bot {
  align-self: flex-start;
  color: #d7eef7;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(108, 207, 255, 0.16);
}

.chatbot-message-thinking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: auto;
  min-width: 54px;
  padding: 13px 15px;
}

.chatbot-message-thinking span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(143, 233, 255, 0.9);
  animation: chatbot-thinking 1.1s ease-in-out infinite;
}

.chatbot-message-thinking span:nth-child(2) {
  animation-delay: 0.16s;
}

.chatbot-message-thinking span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes chatbot-thinking {
  0%,
  80%,
  100% {
    opacity: 0.34;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.chatbot-message-user {
  align-self: flex-end;
  color: #062133;
  background: #8fe9ff;
}

.chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 16px;
}

.chatbot-actions button,
.chatbot-input button,
.chatbot-lead-form button {
  border: 1px solid rgba(108, 207, 255, 0.42);
  border-radius: 8px;
  color: #d9f8ff;
  background: rgba(10, 50, 74, 0.78);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-actions button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
}

.chatbot-actions button[data-action="summary"] {
  border-color: rgba(143, 233, 255, 0.95);
  color: #062133;
  background: linear-gradient(180deg, #9af0ff 0%, #5fdcff 100%);
  box-shadow: 0 0 0 1px rgba(143, 233, 255, 0.2), 0 0 22px rgba(29, 200, 255, 0.32);
}

.chatbot-actions button[data-action="summary"]:hover,
.chatbot-actions button[data-action="summary"]:focus-visible {
  background: linear-gradient(180deg, #c6f8ff 0%, #76e4ff 100%);
  box-shadow: 0 0 0 2px rgba(143, 233, 255, 0.34), 0 0 28px rgba(29, 200, 255, 0.42);
}

.chatbot-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 0 22px 18px;
}

.chatbot-input textarea,
.chatbot-lead-form input,
.chatbot-lead-form textarea {
  width: 100%;
  border: 1px solid rgba(108, 207, 255, 0.26);
  border-radius: 8px;
  color: #edfaff;
  background: rgba(1, 12, 22, 0.72);
  font: inherit;
  line-height: 1.5;
}

.chatbot-input textarea {
  min-height: 74px;
  resize: vertical;
  padding: 10px 12px;
}

.chatbot-input button {
  min-width: 82px;
  padding: 0 16px;
}

.chatbot-lead-form {
  padding: 0 22px 18px;
  overflow-y: auto;
}

.chatbot-lead-back {
  min-height: 36px;
  padding: 0 12px;
  margin: 0 0 14px;
  font-size: 13px;
}

.chatbot-lead-title {
  margin: 0 0 10px;
  color: #ecfbff;
  font-weight: 700;
}

.chatbot-lead-helper {
  margin: -4px 0 12px;
  color: rgba(215, 238, 247, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.chatbot-lead-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.chatbot-lead-grid input {
  min-width: 0;
}

.chatbot-lead-grid input:nth-child(1),
.chatbot-lead-grid input:nth-child(2),
.chatbot-lead-grid input:nth-child(3) {
  grid-column: span 2;
}

.chatbot-lead-grid input:nth-child(4),
.chatbot-lead-grid input:nth-child(5) {
  grid-column: span 3;
}

.chatbot-lead-grid + textarea {
  min-height: 118px;
  margin-top: 10px;
}

.chatbot-lead-form input,
.chatbot-lead-form textarea {
  padding: 10px 12px;
}

.chatbot-lead-form textarea {
  resize: vertical;
}

.chatbot-captcha {
  display: grid;
  grid-template-columns: 148px minmax(120px, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.chatbot-captcha-image-wrap {
  width: 148px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgba(68, 210, 255, 0.34);
  border-radius: 8px;
  background: rgba(1, 18, 30, 0.9);
}

.chatbot-captcha-image-wrap img {
  display: block;
  width: 148px;
  height: 46px;
}

.chatbot-captcha input {
  min-height: 46px;
}

.chatbot-captcha button {
  min-height: 46px;
  padding: 0 12px;
  min-width: 64px;
  white-space: nowrap;
}

.chatbot-lead-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chatbot-lead-submit-row button {
  min-height: 54px;
  min-width: 154px;
  padding: 0 22px;
  font-size: 1.04rem;
}

.chatbot-sales-email {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #35bfff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chatbot-sales-email:hover,
.chatbot-sales-email:focus-visible {
  color: #7fe3ff;
  text-decoration: underline;
}

.chatbot-status {
  min-height: 20px;
  padding: 0 22px 18px;
  color: rgba(221, 242, 255, 0.72);
  font-size: 13px;
}

.chatbot-status[data-tone="error"] {
  color: #ffb6b6;
}

.chatbot-status[data-tone="ok"] {
  color: #aef7d1;
}

.contact-band .eyebrow {
  color: #dffdf6;
}

.contact-band .primary-button {
  color: #0f3447;
  background: #fff;
  box-shadow: none;
}

.footer-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #060f18;
}

footer img {
  width: 142px;
}

.footer-copy {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}

.footer-copy small {
  color: rgba(185, 207, 219, 0.82);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--cyan);
}

.footer-sep {
  opacity: 0.4;
}

.footer-disclaimer {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  opacity: 0.55;
  text-align: right;
  line-height: 1.5;
}

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

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

  .applications .application-layout {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .hero-visual {
    min-height: 470px;
  }

  .metrics,
  .platform-grid,
  .platform-deep-dive,
  .production-capability,
  .zadar-fusion-grid,
  .product-grid,
  .video-grid,
  .contact-grid,
  .press-grid,
  .jobs-grid,
  .why-join,
  .career-benefits,
  .mv-grid,
  .mission-vision,
  .global-map-card,
  .map-location-list,
  .spec-band {
    grid-template-columns: 1fr;
  }

  .mv-card,
  .mv-card--values {
    grid-column: 1 / -1;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .product-detail-table {
    width: 100%;
    font-size: 11px;
    line-height: 1.25;
  }

  .product-detail-table:not(.product-detail-table--two-col) {
    width: 78%;
  }

  .product-table-wrap {
    width: 100%;
    max-width: 100%;
  }

  .product-detail-table th,
  .product-detail-table td {
    padding: 7px 3px;
  }

  .product-body {
    padding: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .production-stats {
    grid-template-columns: 1fr;
  }

  .why-join article,
  .why-join article:first-child,
  .why-join article:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(143, 197, 223, 0.18);
  }

  .why-join article:first-child {
    padding-top: 0;
  }

  .why-join article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .capability-thumb {
    height: clamp(170px, 42vw, 240px);
  }

  .production-photo img {
    aspect-ratio: 16 / 10;
    object-position: 50% 44%;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .section-nav {
    top: 68px;
    grid-auto-columns: minmax(106px, max-content);
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-nav a {
    min-height: 42px;
    font-size: var(--text-caption);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    padding: 46px 16px 30px;
  }

  .section {
    padding: 46px 14px;
  }

  .philosophy-statement,
  .zadar-relationship,
  .global-map-card,
  .timeline-hero,
  .mv-card {
    border-radius: 7px;
  }

  .zadar-relationship h3,
  .global-map-copy h3 {
    font-size: 24px;
  }

  .zadar-fusion-grid article {
    box-shadow: none;
  }

  h1 {
    font-size: var(--title-page);
  }

  .hero-actions,
  .product-toolbar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button,
  .chip {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-product-main {
    left: 4%;
    width: 92%;
  }

  .hero-product-left,
  .hero-product-right {
    bottom: 20%;
  }

  .metrics {
    margin: 0 16px;
  }

  .section {
    padding: 46px 14px;
  }

  .philosophy-section {
    padding-top: 42px;
  }

  .philosophy-statement,
  .zadar-relationship,
  .global-map-card,
  .timeline-hero,
  .mv-card {
    padding: 18px 16px;
  }

  .mission-vision {
    margin-top: 28px;
  }

  .mv-grid,
  .zadar-fusion-grid {
    gap: 10px;
    margin-top: 14px;
  }

  .zadar-relationship {
    margin-top: 18px;
  }

  .zadar-intro,
  .zadar-outcome,
  .global-map-copy p:last-child,
  .mv-card p {
    line-height: 1.62;
  }

  .zadar-fusion-grid article {
    padding: 15px;
  }

  .global-map-card {
    gap: 14px;
    margin-top: 18px;
  }

  .timeline-hero {
    margin-top: 20px;
  }

  .timeline-stage {
    margin-top: 20px;
  }

  .timeline-track {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline-beam {
    width: 100%;
    height: 100%;
    transform-origin: top center;
  }

  .timeline-hero.is-visible .timeline-beam {
    animation-name: timelineBeamVertical;
  }

  .timeline-events {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-event {
    min-height: 0;
    padding: 18px 16px 18px 58px;
  }

  .timeline-event::before {
    top: 29px;
    left: 27px;
  }

  .timeline-copy h2 {
    font-size: var(--title-section);
  }

  .applications .application-layout {
    grid-template-columns: 1fr;
  }

  .contact-band {
    margin-right: 16px;
    margin-left: 16px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ── Bright site theme ─────────────────────────────────────────────── */
:root {
  --ink: #102332;
  --muted: #526879;
  --line: rgba(22, 92, 126, 0.16);
  --paper: rgba(255, 255, 255, 0.92);
  --wash: #eef7fb;
  --navy: #ffffff;
  --deep: #e8f5fb;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #ffffff;
  --shadow: 0 18px 48px rgba(20, 68, 96, 0.10);
  --glow: 0 0 24px rgba(29, 200, 255, 0.16);
}

html,
body {
  background: #f6fbfe;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 200, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(74, 159, 232, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3faff 44%, #eef7fb 100%);
}

.site-header,
.section-nav {
  border-color: rgba(22, 92, 126, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(13, 58, 86, 0.08);
}

.desktop-nav {
  color: #31495a;
}

.desktop-nav a,
.section-nav a,
.mobile-nav a {
  color: #31495a;
}

.section-nav a {
  background: rgba(255, 255, 255, 0.74);
}

.section-nav a:hover,
.section-nav a.active,
.desktop-nav a.active,
.mobile-nav a.active {
  color: #060f18;
  background: var(--brand-blue);
}

.desktop-nav a.active {
  color: var(--brand-blue);
  background: transparent;
}

.desktop-nav a.active::after {
  background: var(--brand-blue);
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.98);
}

.icon-button,
.secondary-button,
.chip {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 92, 126, 0.18);
  box-shadow: 0 8px 22px rgba(20, 68, 96, 0.08);
}

.hero::before,
.philosophy-section,
.product-section,
.contact-section,
.jobs-section,
.press-section,
.applications {
  background:
    radial-gradient(circle at 16% 10%, rgba(29, 200, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(74, 159, 232, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 55%, #eef7fb 100%);
  color: var(--ink);
}

.hero::after {
  opacity: 0.18;
}

.hero-text,
.platform-intro,
.feature-card p,
.application-layout p,
.video-slot p,
.product-card p,
.spec-copy p,
.mv-card p,
.zadar-intro,
.zadar-outcome,
.global-map-copy p:last-child,
.contribution-table td,
.jobs-grid p,
.jobs-note p,
.jobs-contact p,
.why-join p,
.press-grid p,
.contact-grid p,
.footer-copy small,
footer {
  color: var(--muted);
}

.timeline-hero,
.hero-visual,
.metrics,
.platform-deep-dive article,
.philosophy-image-card,
.mv-card,
.zadar-relationship,
.global-map-card,
.zadar-fusion-grid article,
.feature-card,
.application-layout article,
.video-slot,
.product-card,
.jobs-grid article,
.jobs-note,
.jobs-contact,
.why-join,
.press-grid article,
.contact-grid article,
.production-capability,
.spec-band,
.contact-band,
.admin-card {
  border-color: rgba(22, 92, 126, 0.16);
  background:
    radial-gradient(circle at 92% 0%, rgba(29, 200, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow);
}

.timeline-hero::before {
  background: linear-gradient(110deg, transparent 0%, rgba(29, 200, 255, 0.16) 44%, transparent 62%);
}

.timeline-track {
  background: rgba(22, 92, 126, 0.12);
}

.timeline-event {
  border-color: rgba(22, 92, 126, 0.16);
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 200, 255, 0.12), transparent 44%),
    #ffffff;
}

.timeline-event-final {
  border-color: rgba(29, 200, 255, 0.42);
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 200, 255, 0.18), transparent 48%),
    #f3fbff;
}

.scan-panel,
.product-specs div,
.product-table-wrap {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 92, 126, 0.16);
}

.metrics {
  gap: 0;
  background: rgba(22, 92, 126, 0.12);
}

.metrics div {
  background: #ffffff;
}

.global-layout-image-wrap {
  border-color: rgba(22, 92, 126, 0.16);
  background:
    radial-gradient(circle at 80% 12%, rgba(29, 200, 255, 0.08), transparent 34%),
    #ffffff;
}

.philosophy-image-card {
  background:
    radial-gradient(circle at 50% 12%, rgba(29, 200, 255, 0.08), transparent 32%),
    #ffffff;
}

.product-card {
  color: var(--ink);
}

.product-card img {
  background: #060f18;
}

.product-detail-table {
  color: var(--muted);
}

.product-detail-table thead th {
  color: var(--ink);
  background: rgba(29, 200, 255, 0.12);
}

.product-detail-table tbody th {
  color: var(--ink);
  background: rgba(22, 92, 126, 0.045);
}

.product-detail-table--two-col td,
.product-specs strong,
.contact-mail-link,
.jobs-contact a,
.press-grid a {
  color: var(--ink);
}

.chip.active,
.primary-button {
  color: #fff;
  background: var(--brand-blue);
}

.contribution-table th {
  background: rgba(29, 200, 255, 0.10);
}

.contribution-table tbody tr:nth-child(odd) td {
  background: rgba(22, 92, 126, 0.035);
}

.why-join article,
.why-join article:first-child,
.why-join article:last-child {
  border-color: rgba(22, 92, 126, 0.12);
}

.contact-band .eyebrow {
  color: var(--brand-blue);
}

.contact-band .primary-button {
  color: #fff;
  background: var(--brand-blue);
}

footer {
  border-color: rgba(22, 92, 126, 0.12);
  background: #ffffff;
}

@media (max-width: 760px) {
  .timeline-stage {
    margin-top: 20px;
  }

  .timeline-track {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline-beam {
    width: 100%;
    height: 100%;
    transform-origin: top center;
  }

  .timeline-hero.is-visible .timeline-beam {
    animation-name: timelineBeamVertical;
  }

  .timeline-events {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-event {
    min-height: 0;
    padding: 18px 16px 18px 58px;
  }

  .timeline-event::before {
    top: 29px;
    left: 27px;
  }

  .feature-card[data-capability-card] {
    cursor: default;
  }

  .feature-card[data-capability-card]:first-child h3::after,
  .feature-card::after,
  .capability-detail {
    display: none;
  }

  .press-modal-media {
    grid-template-columns: 1fr;
  }

  .press-modal-panel {
    max-height: 88vh;
    padding: 24px 18px;
  }
}

/* ── Global typography + light-theme image harmonization ───────────── */
:root {
  --text-eyebrow: 22px;
  --text-body: 17px;
  --text-body-large: 18px;
  --text-caption: 14px;
  --text-small: 12px;
  --title-page: clamp(31px, 3.4vw, 46px);
  --title-section: clamp(24px, 2.4vw, 34px);
  --title-card: clamp(18px, 1.35vw, 22px);
  --leading-body: 1.66;
}

body {
  font-size: var(--text-body);
}

.desktop-nav,
.section-nav a,
.mobile-nav a {
  font-size: 15px;
}

.eyebrow {
  font-size: var(--text-eyebrow);
  line-height: 1.25;
}

h1,
.section-heading h2 {
  font-size: var(--title-page);
}

h2,
.zadar-relationship h3,
.global-map-copy h3,
.production-copy h3 {
  font-size: var(--title-section);
}

h3,
.product-body h3,
.why-join h3,
.jobs-contact h3 {
  font-size: var(--title-card);
}

p,
.hero-text,
.platform-intro,
.product-body p,
.zadar-intro,
.zadar-outcome,
.global-map-copy p:last-child,
.why-join p,
.jobs-contact p,
.contact-grid p,
.press-grid p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.chip {
  min-height: 50px;
  font-size: var(--text-body);
}

.product-body span,
.press-grid span {
  font-size: var(--text-caption);
}

.product-card img {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  height: auto;
  aspect-ratio: 16 / 8.6;
  padding: 0;
  border-bottom: 0;
  background: #eef8fc;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.product-section .section-heading,
.product-section .product-toolbar,
.product-section .product-grid {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.product-section .product-grid {
  gap: 22px;
}

.product-section .product-card img {
  aspect-ratio: 3.35 / 1;
}

.product-section .product-body {
  padding: clamp(18px, 2vw, 28px);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(7, 27, 39, 0.78);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  display: block;
  max-width: min(94vw, 1440px);
  max-height: 86vh;
  border: 1px solid rgba(29, 200, 255, 0.22);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(5, 36, 52, 0.32);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.94);
}

.image-lightbox.is-open img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-lightbox-close {
  position: absolute;
  top: clamp(14px, 2.4vw, 30px);
  right: clamp(14px, 2.4vw, 30px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(13, 48, 66, 0.78);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.lightbox-open {
  overflow: hidden;
}

.product-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(29, 200, 255, 0.07), transparent 30%),
    #ffffff;
}

.product-card .product-body {
  border-top: 1px solid rgba(22, 92, 126, 0.10);
  background:
    radial-gradient(circle at 96% 0%, rgba(29, 200, 255, 0.06), transparent 34%),
    #ffffff;
}

.product-card .product-table-wrap {
  margin-top: 4px;
}

.application-layout article,
.applications .video-slot {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 0%, rgba(29, 200, 255, 0.07), transparent 30%),
    #ffffff;
  border-color: rgba(22, 92, 126, 0.14);
  box-shadow: var(--shadow);
}

.applications .application-layout p,
.applications .video-slot p {
  color: var(--muted);
}

.application-image {
  width: calc(100% + 56px);
  height: auto;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(22, 92, 126, 0.10);
  background:
    radial-gradient(circle at 50% 42%, rgba(29, 200, 255, 0.10), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}

.global-map-card,
.philosophy-image-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(29, 200, 255, 0.08), transparent 30%),
    #ffffff;
}

.global-layout-image-wrap {
  padding: clamp(8px, 1.2vw, 14px);
  background:
    radial-gradient(circle at 50% 45%, rgba(29, 200, 255, 0.08), transparent 44%),
    #f5fbff;
}

.global-layout-image,
.philosophy-image {
  border-radius: 6px;
}

.zadar-fusion-grid {
  align-items: stretch;
  gap: 12px;
  grid-auto-rows: 1fr;
  margin: 16px 0;
}

.zadar-fusion-grid article {
  height: 100%;
  padding: clamp(16px, 1.6vw, 20px);
}

.zadar-fusion-grid span {
  margin-bottom: 8px;
}

.product-detail-table {
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.42;
}

@media (max-width: 620px) {
  :root {
    --text-body: 16px;
    --text-body-large: 17px;
    --title-page: clamp(28px, 8vw, 34px);
    --title-section: clamp(22px, 6vw, 28px);
  }

  .chip {
    font-size: 16px;
  }

  .product-section {
    padding-top: 38px;
  }

  .product-section .product-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0 2px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-section .product-toolbar::-webkit-scrollbar {
    display: none;
  }

  .product-section .chip {
    flex: 0 0 auto;
    width: auto;
    min-width: 86px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1;
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .product-section .chip[data-filter="flagship"],
  .product-section .chip[data-filter="low-altitude"],
  .product-section .chip[data-filter="safety"] {
    min-width: 122px;
  }

  .product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 2.4 / 1;
  }
}

/* ── Tech edition experiment: dark, spacious, perception-tech style ── */
:root {
  --ink: #dcecf5;
  --muted: rgba(176, 209, 226, 0.80);
  --line: rgba(96, 198, 255, 0.18);
  --paper: rgba(9, 26, 40, 0.78);
  --wash: #06131f;
  --navy: #020914;
  --deep: #071b2b;
  --panel: rgba(8, 25, 39, 0.76);
  --panel-strong: rgba(11, 36, 56, 0.92);
  --brand-blue: #1dc8ff;
  --cyan: #1dc8ff;
  --blue: #6ccfff;
  --shadow: 0 28px 80px rgba(0, 8, 18, 0.46);
  --glow: 0 0 32px rgba(29, 200, 255, 0.22);
}

html,
body {
  background: #020914;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(29, 200, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(74, 159, 232, 0.18), transparent 30%),
    linear-gradient(180deg, #020914 0%, #061422 42%, #071b2b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(112, 210, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 210, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.16), rgba(2, 9, 20, 0.78)),
    url("assets/tech/tech-wave-bg.jpg") center bottom / 100% auto no-repeat;
  opacity: 0.68;
}

.site-header,
.section-nav {
  border-color: rgba(108, 207, 255, 0.16);
  background: rgba(3, 14, 25, 0.82);
  box-shadow: 0 18px 48px rgba(0, 8, 18, 0.34);
  backdrop-filter: blur(20px);
}

.desktop-nav,
.desktop-nav a,
.section-nav a,
.mobile-nav a {
  color: rgba(232, 247, 255, 0.88);
}

.desktop-nav a.active {
  color: var(--brand-blue);
}

.desktop-nav a.active::after {
  background: linear-gradient(90deg, rgba(29, 200, 255, 0), var(--brand-blue), rgba(29, 200, 255, 0));
  box-shadow: var(--glow);
}

.section-nav a,
.mobile-nav {
  background: rgba(8, 25, 39, 0.86);
}

.section-nav a:hover,
.section-nav a.active,
.mobile-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(29, 200, 255, 0.92), rgba(56, 136, 220, 0.92));
}

.icon-button,
.secondary-button,
.chip {
  color: rgba(243, 251, 255, 0.92);
  background: rgba(8, 25, 39, 0.70);
  border-color: rgba(108, 207, 255, 0.20);
  box-shadow: 0 14px 34px rgba(0, 8, 18, 0.24);
}

.primary-button,
.chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #1dc8ff 0%, #2573e8 100%);
  border-color: rgba(145, 229, 255, 0.42);
  box-shadow: 0 18px 42px rgba(29, 200, 255, 0.22);
}

.section {
  width: min(100%, 1440px);
  padding: clamp(104px, 9vw, 154px) clamp(28px, 6vw, 92px);
}

.page-section {
  background:
    radial-gradient(circle at 12% 6%, rgba(29, 200, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(74, 159, 232, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(2, 9, 20, 0.96), rgba(5, 18, 31, 0.96));
}

.hero,
.hero::before,
.philosophy-section,
.product-section,
.contact-section,
.jobs-section,
.press-section,
.applications {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.88), rgba(6, 19, 31, 0.94)),
    radial-gradient(circle at 16% 10%, rgba(29, 200, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(74, 159, 232, 0.14), transparent 32%);
}

.hero::after {
  opacity: 0.28;
}

.hero-copy {
  gap: clamp(30px, 4vw, 56px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(52px, 6vw, 86px);
}

.section-heading .eyebrow,
.eyebrow,
.timeline-kicker,
.zadar-relationship span,
.zadar-fusion-grid span,
.mv-card span,
.global-map-copy span,
.production-copy span,
.product-body span,
.press-grid span {
  color: var(--brand-blue);
  text-shadow: 0 0 18px rgba(29, 200, 255, 0.24);
}

.hero-text,
.platform-intro,
.feature-card p,
.application-layout p,
.video-slot p,
.product-card p,
.spec-copy p,
.mv-card p,
.zadar-intro,
.zadar-outcome,
.global-map-copy p:last-child,
.contribution-table td,
.jobs-grid p,
.jobs-note p,
.jobs-contact p,
.why-join p,
.press-grid p,
.contact-grid p,
.footer-copy small,
footer {
  color: var(--muted);
}

.timeline-hero,
.hero-visual,
.metrics,
.platform-deep-dive article,
.philosophy-statement,
.philosophy-image-card,
.mv-card,
.zadar-relationship,
.global-map-card,
.zadar-fusion-grid article,
.feature-card,
.application-layout article,
.video-slot,
.product-card,
.jobs-grid article,
.jobs-note,
.jobs-contact,
.why-join,
.press-grid article,
.contact-grid article,
.production-capability,
.spec-band,
.contact-band,
.admin-card {
  border: 1px solid rgba(108, 207, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(11, 36, 56, 0.82), rgba(4, 16, 28, 0.76)),
    radial-gradient(circle at 92% 0%, rgba(29, 200, 255, 0.14), transparent 30%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.timeline-hero,
.zadar-relationship,
.global-map-card,
.philosophy-statement,
.production-capability {
  padding: clamp(34px, 4.2vw, 62px);
}

.timeline-hero,
.global-map-card {
  overflow: hidden;
}

.timeline-hero::before,
.global-map-card::before,
.zadar-relationship::before {
  opacity: 0.72;
}

.timeline-track {
  background: rgba(108, 207, 255, 0.14);
}

.timeline-event {
  background: rgba(6, 20, 34, 0.78);
  border-color: rgba(108, 207, 255, 0.20);
}

.timeline-event strong,
.timeline-copy h2,
.section-heading h2,
.zadar-relationship h3,
.global-map-copy h3,
.production-copy h3,
.product-body h3,
.jobs-grid h3,
.press-grid h3,
.contact-grid h3 {
  color: #e2f1f8;
}

.mission-vision,
.platform-grid,
.application-layout,
.jobs-grid,
.press-grid,
.contact-grid {
  gap: clamp(24px, 3vw, 42px);
}

.mv-card,
.zadar-fusion-grid article,
.feature-card,
.application-layout article,
.jobs-grid article,
.press-grid article,
.contact-grid article,
.why-join,
.jobs-contact {
  padding: clamp(28px, 3vw, 44px);
}

.zadar-fusion-grid {
  align-items: stretch;
  gap: clamp(20px, 2.4vw, 32px);
  grid-auto-rows: 1fr;
  margin: clamp(24px, 3vw, 38px) 0;
}

.zadar-fusion-grid article {
  height: 100%;
  min-height: 168px;
  padding: clamp(24px, 2.4vw, 34px);
}

.global-map-card,
.production-capability {
  gap: clamp(28px, 4vw, 56px);
}

.global-layout-image-wrap,
.philosophy-image-card,
.production-photo {
  border: 1px solid rgba(108, 207, 255, 0.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(29, 200, 255, 0.12), transparent 42%),
    rgba(3, 14, 25, 0.68);
  box-shadow: inset 0 0 40px rgba(29, 200, 255, 0.04);
}

.global-layout-image,
.philosophy-image,
.production-photo img {
  filter: saturate(1.02) contrast(1.02);
}

.global-layout-image-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(29, 200, 255, 0.10), transparent 42%),
    linear-gradient(135deg, rgba(4, 16, 28, 0.96), rgba(7, 31, 48, 0.92));
}

.global-layout-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(220, 244, 250, 0.42),
    inset 0 0 20px rgba(238, 250, 253, 0.16),
    0 0 0 1px rgba(29, 200, 255, 0.12);
  background:
    linear-gradient(rgba(29, 200, 255, 0.68), rgba(29, 200, 255, 0.68)) left top / 30px 2px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.68), rgba(29, 200, 255, 0.68)) left top / 2px 30px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.52), rgba(29, 200, 255, 0.52)) right bottom / 30px 2px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.52), rgba(29, 200, 255, 0.52)) right bottom / 2px 30px no-repeat,
    linear-gradient(135deg, rgba(244, 252, 255, 0.10), transparent 28%, transparent 72%, rgba(244, 252, 255, 0.08));
}

.global-layout-image-wrap::after {
  content: "";
  position: absolute;
  inset: clamp(8px, 1.2vw, 14px);
  z-index: 3;
  pointer-events: none;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(244, 252, 255, 0.05), transparent 30%, transparent 72%, rgba(244, 252, 255, 0.035));
}

.global-layout-image {
  opacity: 1;
  filter: none;
  border-radius: 6px;
}

.product-section .section-heading,
.product-section .product-toolbar,
.product-section .product-grid {
  width: min(100%, 1120px);
}

.product-section .product-grid {
  gap: clamp(34px, 4vw, 58px);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  background:
    radial-gradient(circle at 72% 36%, rgba(29, 200, 255, 0.12), transparent 35%),
    linear-gradient(180deg, #071727 0%, #102a3c 100%);
}

.product-card .product-body {
  border-top: 1px solid rgba(108, 207, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 24, 38, 0.96), rgba(6, 19, 31, 0.94));
}

.product-table-wrap {
  overflow-x: auto;
  background: rgba(3, 14, 25, 0.58);
  border-color: rgba(108, 207, 255, 0.18);
}

.product-detail-table,
.contribution-table {
  color: rgba(238, 248, 255, 0.92);
  background: rgba(3, 14, 25, 0.54);
}

.product-detail-table th,
.product-detail-table td,
.contribution-table th,
.contribution-table td {
  border-color: rgba(108, 207, 255, 0.16);
}

.product-detail-table th,
.contribution-table th {
  color: #f7fcff;
  background: rgba(16, 54, 80, 0.72);
}

.product-detail-table td:first-child,
.contribution-table td:first-child {
  color: rgba(243, 251, 255, 0.92);
  background: rgba(255, 255, 255, 0.035);
}

.application-image,
.press-cover {
  background:
    linear-gradient(180deg, rgba(5, 18, 31, 0.42), rgba(5, 18, 31, 0.78)),
    radial-gradient(circle at 50% 40%, rgba(29, 200, 255, 0.16), transparent 42%);
  border-color: rgba(108, 207, 255, 0.14);
}

.jobs-note {
  border-style: solid;
}

.contact-grid a,
.jobs-contact a {
  color: #9fe6ff;
  border-color: rgba(108, 207, 255, 0.24);
  background: rgba(10, 40, 60, 0.58);
}

footer {
  background: rgba(2, 9, 20, 0.92);
  border-top-color: rgba(108, 207, 255, 0.14);
}

@media (max-width: 900px) {
  .section {
    width: 100%;
    padding: clamp(70px, 10vw, 98px) 22px;
  }

  .timeline-hero,
  .zadar-relationship,
  .global-map-card,
  .philosophy-statement,
  .production-capability {
    padding: clamp(24px, 6vw, 38px);
  }

  .mission-vision,
  .platform-grid,
  .application-layout,
  .jobs-grid,
  .press-grid,
  .contact-grid {
    gap: 20px;
  }
}

@media (max-width: 620px) {
  body::after {
    background-size: auto 42vh;
    opacity: 0.44;
  }

  .section {
    padding: 52px 16px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .hero h1,
  .section-heading h2 {
    font-size: clamp(29px, 7.1vw, 36px);
  }

  .mv-card,
  .feature-card,
  .application-layout article,
  .jobs-grid article,
  .press-grid article,
  .contact-grid article,
  .why-join,
  .jobs-contact {
    padding: 22px;
  }

  .product-section .product-grid {
    gap: 24px;
  }

  .product-detail-table:not(.product-detail-table--two-col) {
    width: max-content;
    min-width: 760px;
    table-layout: auto;
  }

  .product-detail-table--two-col {
    width: 100%;
    min-width: 0;
  }

  .product-detail-table th,
  .product-detail-table td {
    padding: 9px 8px;
    word-break: normal;
  }
}

/* ── Tech edition refinement: lighter secondary nav, stronger first screen, integrated product media ── */
.section-nav {
  top: 76px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  grid-auto-columns: minmax(104px, max-content);
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(108, 207, 255, 0.14);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(3, 14, 25, 0.58);
  box-shadow: 0 16px 36px rgba(0, 8, 18, 0.22);
}

.section-nav a {
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(232, 247, 255, 0.70);
  font-size: 13px;
  background: transparent;
}

.section-nav a:hover,
.section-nav a.active {
  color: #ffffff;
  background: rgba(29, 200, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(108, 207, 255, 0.18);
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
}

.philosophy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.20), rgba(2, 9, 20, 0.82)),
    radial-gradient(circle at 50% 23%, rgba(29, 200, 255, 0.20), transparent 23%),
    url("assets/tech/tech-orbit-bg.jpg") center top / cover no-repeat;
  opacity: 0.62;
}

.philosophy-section::after {
  content: "";
  position: absolute;
  top: clamp(286px, 24vw, 350px);
  left: 50%;
  z-index: 0;
  width: min(820px, 80vw);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(157, 235, 255, 0.70), transparent);
  box-shadow: 0 0 28px rgba(29, 200, 255, 0.46);
  transform: translateX(-50%);
}

.philosophy-section > * {
  position: relative;
  z-index: 1;
}

.philosophy-section .section-heading {
  max-width: 1080px;
  margin-top: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(42px, 5vw, 70px);
}

.philosophy-section .section-heading h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.12;
  text-shadow: 0 20px 54px rgba(29, 200, 255, 0.18);
}

.philosophy-statement {
  max-width: 1040px;
  margin-inline: auto;
  background:
    linear-gradient(135deg, rgba(11, 36, 56, 0.66), rgba(4, 16, 28, 0.54)),
    radial-gradient(circle at 50% 0%, rgba(29, 200, 255, 0.10), transparent 42%);
}

.philosophy-statement p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.product-card {
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(170px, 27vw, 340px);
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.30), transparent 30%, rgba(2, 9, 20, 0.28)),
    linear-gradient(180deg, rgba(10, 45, 68, 0.18), transparent 52%, rgba(4, 16, 28, 0.34));
  mix-blend-mode: multiply;
}

.product-card img {
  filter: brightness(0.76) saturate(0.88) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(108, 207, 255, 0.12);
}

.product-card .product-body {
  position: relative;
  z-index: 2;
}

.product-card:hover img {
  filter: brightness(0.82) saturate(0.92) contrast(1.03);
}

.mv-card--values,
.mv-card--values .values-list,
.mv-card--values .values-list p,
.mv-card--values .values-list strong,
.mv-card--values .values-list span {
  color: rgba(176, 209, 226, 0.82);
  text-shadow: none;
}

.product-section .product-grid {
  gap: clamp(46px, 5.2vw, 78px);
}

.philosophy-statement,
.mission-vision,
.zadar-relationship,
.global-map-card,
.timeline-hero,
.partners-bar,
.platform-grid,
.platform-deep-dive,
.production-capability,
.product-toolbar,
.product-grid,
.application-layout,
.jobs-grid,
.why-join,
.jobs-note,
.jobs-contact,
.press-grid,
.contact-grid,
.contact-band {
  margin-top: clamp(34px, 4.2vw, 68px);
}

.philosophy-statement + .mission-vision,
.mission-vision + .zadar-relationship,
.zadar-relationship + .global-map-card,
.global-map-card + .timeline-hero,
.timeline-hero + .partners-bar {
  margin-top: clamp(58px, 6.4vw, 104px);
}

.zadar-fusion-grid {
  margin-top: clamp(34px, 4vw, 54px);
  margin-bottom: clamp(34px, 4vw, 54px);
}

.product-section .product-toolbar {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.philosophy-section .section-heading h2 {
  max-width: 700px;
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.16;
  overflow-wrap: normal;
  word-break: keep-all;
}

.philosophy-section::before {
  animation: techAuraDrift 14s ease-in-out infinite alternate;
}

.philosophy-section::after {
  animation: techLightBreath 4.8s ease-in-out infinite;
}

.timeline-hero,
.mission-vision,
.zadar-relationship,
.global-map-card,
.feature-card,
.product-card,
.application-layout article,
.jobs-grid article,
.why-join article,
.press-grid article,
.contact-grid article,
.jobs-note,
.jobs-contact {
  position: relative;
}

.timeline-hero::after,
.mission-vision::after,
.zadar-relationship::after,
.zadar-fusion-grid article::after,
.feature-card::before,
.product-card::after,
.application-layout article::after,
.jobs-grid article::after,
.why-join article::after,
.press-grid article::after,
.contact-grid article::after,
.jobs-note::after,
.jobs-contact::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(rgba(29, 200, 255, 0.62), rgba(29, 200, 255, 0.62)) left top / 28px 2px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.62), rgba(29, 200, 255, 0.62)) left top / 2px 28px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.48), rgba(29, 200, 255, 0.48)) right bottom / 28px 2px no-repeat,
    linear-gradient(rgba(29, 200, 255, 0.48), rgba(29, 200, 255, 0.48)) right bottom / 2px 28px no-repeat,
    radial-gradient(circle at var(--glow-x, 18%) var(--glow-y, 12%), rgba(29, 200, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(108, 207, 255, 0.06), transparent 42%);
  opacity: 0.38;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.feature-card::before {
  opacity: 0.22;
}

.product-card::after {
  --glow-x: 74%;
  --glow-y: 8%;
  opacity: 0.26;
}

.timeline-hero:hover::after,
.mission-vision:hover::after,
.zadar-relationship:hover::after,
.zadar-fusion-grid article:hover::after,
.feature-card:hover::before,
.product-card:hover::after,
.application-layout article:hover::after,
.jobs-grid article:hover::after,
.why-join article:hover::after,
.press-grid article:hover::after,
.contact-grid article:hover::after,
.jobs-note:hover::after,
.jobs-contact:hover::after {
  opacity: 0.68;
  transform: scale(1.01);
}

.fr-card-lift {
  transform: translateY(-4px) scale(var(--card-lift-scale, 1.018));
  border-color: rgba(29, 200, 255, 0.42);
  box-shadow: 0 14px 34px rgba(29, 200, 255, 0.14), var(--shadow);
}

@media (hover: hover) and (pointer: fine) {
  .mv-card:hover,
  .platform-deep-dive article:hover,
  .zadar-fusion-grid article:hover,
  .feature-card:hover,
  .product-card:hover,
  .application-layout article:hover,
  .jobs-grid article:hover,
  .why-join article:hover,
  .press-grid article:hover,
  .contact-grid article:hover,
  .jobs-note:hover,
  .jobs-contact:hover {
    transform: translateY(-4px) scale(1.018);
    border-color: rgba(29, 200, 255, 0.42);
    box-shadow: 0 14px 34px rgba(29, 200, 255, 0.14), var(--shadow);
  }
}

.timeline-hero > *,
.mission-vision > *,
.zadar-relationship > *,
.zadar-fusion-grid article > *,
.feature-card > *,
.product-card > *,
.application-layout article > *,
.jobs-grid article > *,
.why-join article > *,
.press-grid article > *,
.contact-grid article > *,
.jobs-note > *,
.jobs-contact > * {
  position: relative;
  z-index: 1;
}

@keyframes techAuraDrift {
  0% {
    transform: scale(1);
    opacity: 0.56;
  }
  100% {
    transform: scale(1.035) translate3d(0, -10px, 0);
    opacity: 0.70;
  }
}

@keyframes techLightBreath {
  0%,
  100% {
    opacity: 0.32;
    box-shadow: 0 0 22px rgba(29, 200, 255, 0.28);
  }
  50% {
    opacity: 0.68;
    box-shadow: 0 0 46px rgba(29, 200, 255, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-section::before,
  .philosophy-section::after {
    animation: none;
  }
}

@media (max-width: 900px) {
  .section-nav {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    justify-content: start;
    padding: 5px 16px;
  }

  .section-nav a {
    min-height: 32px;
    padding: 0 16px;
  }

  .philosophy-section .section-heading h2 {
    font-size: clamp(28px, 5.8vw, 38px);
  }
}

@media (max-width: 620px) {
  .section-nav {
    top: 68px;
    gap: 8px;
    background: rgba(3, 14, 25, 0.76);
  }

  .section-nav a {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }

  .philosophy-section {
    min-height: auto;
  }

  .philosophy-section::before {
    background-size: auto 520px;
    opacity: 0.48;
  }

  .philosophy-section::after {
    top: 284px;
    width: 74vw;
    opacity: 0.48;
  }

  .philosophy-section .section-heading {
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .philosophy-section .section-heading h2 {
    font-size: clamp(24px, 6.4vw, 31px);
    overflow-wrap: break-word;
    word-break: normal;
  }

  .philosophy-statement {
    padding: 24px;
  }

  .product-card::before {
    height: clamp(112px, 36vw, 160px);
  }

  .product-section .product-grid {
    gap: 34px;
  }

  .philosophy-statement,
  .mission-vision,
  .zadar-relationship,
  .global-map-card,
  .timeline-hero,
  .partners-bar,
  .platform-grid,
  .platform-deep-dive,
  .production-capability,
  .product-toolbar,
  .product-grid,
  .application-layout,
  .jobs-grid,
  .why-join,
  .jobs-note,
  .jobs-contact,
  .press-grid,
  .contact-grid,
  .contact-band {
    margin-top: 28px;
  }

  .philosophy-statement + .mission-vision,
  .mission-vision + .zadar-relationship,
  .zadar-relationship + .global-map-card,
  .global-map-card + .timeline-hero,
  .timeline-hero + .partners-bar {
    margin-top: 44px;
  }

  .product-section .product-toolbar {
    margin-bottom: 28px;
  }
}

.super-sensor-video-section {
  margin-top: clamp(52px, 6vw, 92px);
  scroll-margin-top: 136px;
}

.application-layout {
  scroll-margin-top: 136px;
}

.application-local-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -8px auto 34px;
}

.application-local-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(105, 195, 236, 0.26);
  border-radius: 999px;
  color: rgba(205, 232, 244, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font-size: var(--text-caption);
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.application-local-nav a:hover {
  border-color: rgba(65, 205, 255, 0.56);
  color: rgba(238, 248, 252, 0.94);
  background: rgba(29, 200, 255, 0.09);
}

.video-section-heading {
  max-width: 760px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.video-section-heading h3 {
  margin: 8px 0 0;
  color: rgba(225, 242, 250, 0.90);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

.super-sensor-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
}

/* ═══════════════════════════════════════════════════
   LAYOUT CONSISTENCY FIXES
   ─ Alignment, spacing and card size uniformity
   ═══════════════════════════════════════════════════ */

/* 1. Centre section within viewport on wide screens */
.section {
  margin-left: auto;
  margin-right: auto;
}

/* 2. Explicit centering on section-heading — prevents
      browser inheritance gaps causing "tilted" look */
.section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.section-heading .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* 3. mission-vision: add max-width to match zadar-relationship
      and global-map-card (both 1180 px) */
.mission-vision {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* 4. Standardise timeline-hero width from 1060 px → 1180 px
      so it lines up with the cards above and below it */
.timeline-hero {
  max-width: 1180px;
}

/* 5. platform-deep-dive article: replace fixed height/padding
      with responsive values matching the feature-cards grid */
.platform-deep-dive article {
  min-height: 0;
  padding: clamp(22px, 2.6vw, 32px);
}

/* 6. Standardise border-radius to 10 px across all major
      card / panel elements (was a mix of 8 px and 10 px) */
.philosophy-statement,
.zadar-relationship,
.global-map-card,
.mv-card,
.zadar-fusion-grid article,
.platform-deep-dive article,
.zadar-fusion-grid article,
.feature-card,
.application-layout article,
.jobs-note,
.jobs-contact,
.why-join,
.career-benefits,
.press-grid article,
.contact-grid article {
  border-radius: 10px;
}

/* 7. Uniform gap in mv-grid (was a hardcoded 16 px) */
.mv-grid {
  gap: clamp(16px, 2vw, 24px);
}

/* 8. Uniform gap across all same-level grids
      zadar-fusion-grid was on a different scale */
.zadar-fusion-grid {
  gap: clamp(16px, 2vw, 28px);
}

/* 9. philosophy-section section-heading:
      keep it centred even after max-width override */
.philosophy-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.super-sensor-video-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  min-height: 168px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  color: rgba(222, 239, 248, 0.88);
  text-decoration: none;
  border: 1px solid rgba(105, 195, 236, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 16%, rgba(28, 203, 255, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(10, 44, 68, 0.88), rgba(4, 17, 30, 0.94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.super-sensor-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(78, 209, 255, 0.16) 42%, transparent 62%),
    radial-gradient(circle at 82% 18%, rgba(95, 182, 244, 0.16), transparent 36%);
  opacity: 0.58;
  transform: translateX(-18%);
  transition: opacity 0.24s ease, transform 0.34s ease;
}

.super-sensor-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 205, 255, 0.55);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.32), 0 0 34px rgba(26, 190, 255, 0.14);
}

.super-sensor-video-card:hover::before {
  opacity: 0.82;
  transform: translateX(0);
}

.video-card-icon,
.video-card-content,
.video-card-cta {
  position: relative;
  z-index: 1;
}

.video-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #1cc8ff;
  background: rgba(28, 200, 255, 0.11);
  border: 1px solid rgba(75, 203, 255, 0.30);
  box-shadow: inset 0 0 22px rgba(28, 200, 255, 0.10);
}

.video-card-icon svg {
  width: 28px;
  height: 28px;
}

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

.video-card-content strong {
  color: rgba(238, 248, 252, 0.92);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.28;
  letter-spacing: 0;
}

.video-card-content span {
  color: rgba(176, 209, 226, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
}

.video-card-cta {
  white-space: nowrap;
  color: #1cc8ff;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .super-sensor-video-grid {
    grid-template-columns: 1fr;
  }

  .super-sensor-video-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .super-sensor-video-section {
    margin-top: 38px;
    scroll-margin-top: 114px;
  }

  .application-layout {
    scroll-margin-top: 114px;
  }

  .application-local-nav {
    margin-bottom: 26px;
  }

  .video-section-heading h3 {
    font-size: 24px;
  }

  .super-sensor-video-card {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 22px;
    border-radius: 16px;
  }

  .video-card-cta {
    grid-column: 2;
    justify-self: start;
  }
}

/* Keep the secondary page navigation for mobile only. */
.section-nav {
  display: none;
}

.section {
  scroll-margin-top: 92px;
}

.page-section {
  min-height: calc(100vh - 76px);
}

/* Make content visible before JavaScript finishes; avoid blank first paint. */
.fade-in {
  opacity: 1;
}

.fade-in.is-visible {
  animation: none;
}

@media (max-width: 620px) {
  .section {
    scroll-margin-top: 116px;
  }
}

/* Primary row plus persistent secondary navigation. */
.site-header {
  gap: clamp(10px, 2vw, 28px);
}

.brand,
.header-actions {
  flex: 0 0 auto;
}

.desktop-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.desktop-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    padding: 10px 12px;
    gap: 10px;
  }

  .brand img {
    width: clamp(108px, 28vw, 142px);
  }

  .brand-lockup {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: grid;
  }

  .header-actions {
    gap: 10px;
  }

  .section-nav {
    top: 66px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 clamp(16px, 3vw, 28px);
    gap: 8px;
  }

  .section-nav a {
    width: max-content;
    min-width: max-content;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 10px;
  }

  .icon-button {
    min-width: 58px;
    padding-inline: 10px;
  }

  .section-nav a {
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .section-nav,
  .hero,
  .section,
  .section-heading,
  .hero-copy,
  .hero-text,
  .timeline-copy,
  .platform-intro,
  .product-section .product-toolbar,
  .product-grid,
  .product-card,
  .product-body,
  .application-layout,
  .jobs-overview,
  .press-grid,
  .contact-grid {
    max-width: 100%;
    min-width: 0;
  }

  .section-nav {
    width: 100%;
    margin-inline: 0;
  }

  h1,
  h2,
  h3,
  p,
  .hero-text,
  .section-heading h2,
  .philosophy-section .section-heading h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero h1,
  .section-heading h2 {
    max-width: 100%;
    line-height: 1.16;
  }

  .product-table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
}

.philosophy-section .section-heading h2 {
  max-width: min(980px, 100%);
  font-size: var(--title-page);
  line-height: 1.15;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

.philosophy-section .section-heading,
.philosophy-statement,
.philosophy-image-card {
  transform: none !important;
}

.philosophy-statement::after,
.philosophy-image-card::after {
  transform: none !important;
}

.section-heading .eyebrow,
.eyebrow {
  font-size: var(--text-eyebrow);
  font-weight: 900;
}

.mv-card h4 {
  font-size: var(--text-body);
  font-weight: 900;
}

.global-map-card {
  grid-template-columns: minmax(520px, 0.58fr) minmax(0, 1fr);
}

.global-map-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  white-space: nowrap;
}

.product-card img {
  aspect-ratio: 16 / 8.6;
  height: auto;
  padding: 0;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center 56%;
  background: #eef8fc;
}

.product-section .product-card img {
  aspect-ratio: 3.35 / 1;
  object-fit: cover;
  object-position: center 56%;
}

.product-card--wide img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  object-fit: fill !important;
  object-position: center top !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .product-detail-table {
    font-size: 13px;
    line-height: 1.42;
  }

  .product-detail-table th,
  .product-detail-table td {
    padding: 9px 6px;
  }
}

@media (max-width: 620px) {
  .product-card img {
    object-position: center 58%;
  }

  .product-detail-table {
    font-size: 13px;
    line-height: 1.44;
  }

  .product-detail-table th,
  .product-detail-table td {
    padding: 9px 5px;
  }
}

@media (max-width: 900px) {
  .global-map-card {
    grid-template-columns: 1fr;
  }

  .global-map-copy h3 {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .section-nav {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: max-content;
    width: 100%;
    margin-inline: 0;
    padding: 5px clamp(16px, 3vw, 28px);
    justify-content: start;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .section-nav a {
    display: flex;
    width: max-content;
    min-width: max-content;
    justify-self: start;
    justify-content: center;
    padding-inline: 14px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.jobs-overview .why-join {
  align-items: stretch;
}

.jobs-overview .why-join article {
  min-height: 220px;
}

.jobs-overview .why-join h3 {
  display: flex;
  align-items: flex-start;
  min-height: 58px;
  margin-bottom: 12px;
}

.jobs-overview .why-join p {
  flex: 1;
  margin: 0;
}

@media (max-width: 900px) {
  .jobs-overview .why-join article {
    min-height: auto;
  }

  .jobs-overview .why-join h3 {
    min-height: 0;
  }
}

/* Canonical typography assignments. Keep component text tied to these
   semantic groups so later layout fixes do not resize copy ad hoc. */
.section-heading .eyebrow,
.eyebrow {
  font-size: var(--text-eyebrow);
  line-height: 1.28;
}

.product-section,
.applications,
.jobs-section,
.press-section,
.contact-section {
  background:
    radial-gradient(circle at 12% 6%, rgba(29, 200, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(74, 159, 232, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(2, 9, 20, 0.96), rgba(5, 18, 31, 0.96));
}

.product-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 197, 223, 0.06), transparent 30%),
    linear-gradient(180deg, #06111b, #071c2c);
}

.platform-deep-dive h3,
.feature-card h3,
.application-layout h3,
.video-slot h3,
.product-body h3,
.jobs-grid h3,
.jobs-contact h3,
.why-join h3,
.career-benefits-copy h3,
.press-grid h3,
.production-stats strong,
.zadar-fusion-grid h3 {
  font-size: var(--title-card);
  line-height: 1.24;
}

.platform-deep-dive p,
.feature-card p,
.application-layout p,
.video-slot p,
.product-card p,
.product-specs strong,
.jobs-grid p,
.jobs-note p,
.jobs-contact p,
.why-join p,
.career-benefits-copy p:last-child,
.press-grid p,
.production-stats span,
.mv-card p,
.zadar-fusion-grid p {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.platform-deep-dive span,
.product-body span,
.job-location,
.press-grid span,
.application-video-link,
.zadar-fusion-grid span {
  font-size: var(--text-caption);
  line-height: 1.35;
}

.mv-card h4,
.values-list strong {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: 900;
}

.zadar-relationship h3 {
  font-size: clamp(19px, 1.68vw, 26px);
  line-height: 1.18;
}

.jobs-overview .why-join {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.jobs-overview .why-join article,
.jobs-overview .why-join article:first-child,
.jobs-overview .why-join article:last-child {
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 174px;
  height: auto;
  padding: 22px 24px 20px;
  border: 1px solid rgba(29, 200, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.jobs-overview .why-join h3 {
  display: block;
  min-height: 0;
  margin: 0;
  font-size: var(--title-card);
  line-height: 1.24;
  white-space: nowrap;
}

.jobs-overview .why-join p {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  text-align: left;
}

@media (max-width: 900px) {
  .jobs-overview .why-join {
    grid-template-columns: 1fr;
  }

  .jobs-overview .why-join h3 {
    white-space: normal;
  }
}

.zadar-fusion-grid span {
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.global-map-copy h3 {
  font-size: clamp(19px, 1.92vw, 27px);
  line-height: 1.18;
}

/* Mobile viewport guard: keep dense Chinese headings and scrollable controls
   inside the visible page instead of letting them widen the document. */
@media (max-width: 620px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .brand img {
    width: clamp(108px, 34vw, 132px);
  }

  .header-actions {
    flex-shrink: 0;
    gap: 6px;
    margin-left: auto;
  }

  .icon-button {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  [data-lang-label] {
    display: none;
  }

  .section-nav {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    contain: inline-size;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    gap: 8px;
    scrollbar-width: none;
  }

  .section-nav::-webkit-scrollbar {
    display: none;
  }

  .section-nav a {
    width: max-content;
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .section,
  .page-section,
  .section-heading,
  .product-section .product-toolbar,
  .product-grid,
  .application-layout,
  .jobs-overview,
  .press-grid,
  .contact-grid,
  .contact-band {
    width: auto;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .section {
    padding-inline: 16px;
  }

  .section-heading {
    padding-inline: 0;
  }

  .section-heading h2,
  .philosophy-section .section-heading h2 {
    display: block;
    width: auto;
    max-width: min(100%, calc(100vw - 32px));
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    text-wrap: wrap;
  }

  .section-heading .eyebrow,
  .eyebrow {
    font-size: 21px;
  }

  .product-section .product-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 10px;
    overflow: hidden;
  }

  .product-section .chip {
    width: 100%;
    min-width: 0;
    max-width: 72vw;
    padding-inline: 10px;
    white-space: normal;
  }

  .product-card,
  .application-layout article,
  .press-grid article,
  .contact-grid article {
    max-width: 100%;
    overflow: hidden;
  }

  .chatbot-panel {
    align-items: flex-end;
    padding: 12px;
  }

  .chatbot-float-button {
    right: 14px;
    bottom: 14px;
    min-height: 40px;
    max-width: calc(100vw - 28px);
    padding: 0 12px;
    font-size: 13px;
  }

  .chatbot-shell {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .chatbot-header,
  .chatbot-messages,
  .chatbot-actions,
  .chatbot-input,
  .chatbot-lead-form,
  .chatbot-status {
    margin-inline: 0;
  }

  .chatbot-header {
    padding: 18px 16px 12px;
  }

  .chatbot-messages {
    max-height: 280px;
    padding: 16px;
  }

  .chatbot-actions {
    padding: 0 16px 14px;
  }

  .chatbot-input {
    grid-template-columns: 1fr;
    padding: 0 16px 16px;
  }

  .chatbot-lead-form {
    padding: 0 16px 16px;
  }

  .chatbot-lead-grid {
    grid-template-columns: 1fr;
  }

  .chatbot-lead-grid input {
    grid-column: 1 / -1;
  }

  .chatbot-captcha {
    grid-template-columns: 148px minmax(86px, 1fr) auto;
    gap: 8px;
  }

  .chatbot-captcha button {
    min-width: 56px;
    padding: 0 10px;
  }

  .chatbot-status {
    padding: 0 16px 16px;
  }

  .product-body,
  .application-layout p,
  .press-grid p,
  .contact-grid p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .product-card--wide img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: fill !important;
    object-position: center top !important;
    background: #eef8fc;
  }

  .product-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .product-detail-table,
  .product-detail-table:not(.product-detail-table--two-col),
  .product-detail-table--two-col {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    font-size: clamp(9px, 2.55vw, 11px) !important;
    line-height: 1.28 !important;
  }

  .product-detail-table th,
  .product-detail-table td {
    min-width: 0 !important;
    padding: 6px 3px !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .product-detail-table th:first-child {
    width: 24% !important;
  }

  .product-detail-table--two-col th:first-child,
  .product-detail-table--two-col td {
    width: 50% !important;
  }
}

.product-section .product-card.product-card--wide > img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: fill !important;
  object-position: center top !important;
}

@media (max-width: 620px) {
  .site-header {
    overflow: visible;
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 12px;
    z-index: 60;
    width: min(280px, calc(100vw - 24px));
    padding: 8px;
    border-radius: 8px;
    background: rgba(6, 15, 24, 0.98);
  backdrop-filter: blur(18px);
}

.zadar-fusion-grid span {
  color: var(--cyan);
}

.zadar-fusion-grid p {
  color: rgba(176, 209, 226, 0.82);
}

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav a.active {
    color: #f4fbff;
    background: rgba(29, 200, 255, 0.18);
  }

  .section-nav {
    top: 68px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: initial;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding: 7px 12px;
    overflow: visible;
    background: rgba(3, 14, 25, 0.88);
    border-radius: 0;
    justify-content: stretch;
    contain: none;
  }

  .section-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0 6px;
    border: 1px solid rgba(124, 207, 255, 0.18);
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    background: rgba(255, 255, 255, 0.035);
  }

  .section-nav a:hover,
  .section-nav a.active {
    color: #f4fbff;
    border-color: rgba(29, 200, 255, 0.42);
    background: rgba(29, 200, 255, 0.16);
  }
}


/* ═══════════════════════════════════════════════════════════════
   VISUAL ENHANCEMENTS — Radar Tech Effects  (2026-05-17)
   Appended below all existing rules. No existing rules modified.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Hero radar rings (divs injected by JS) ─────────────── */
.fr-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29, 200, 255, 0.22);
  pointer-events: none;
  z-index: 0;
  width: 60px;
  height: 60px;
  top: 22%;
  right: 12%;
  transform: translate(50%, -50%) scale(1);
  animation: ve-radarExpand 6s ease-out infinite;
}
.fr-radar-ring--2 { animation-delay: 2s; }
.fr-radar-ring--3 { animation-delay: 4s; }

@keyframes ve-radarExpand {
  0%   { transform: translate(50%, -50%) scale(1); opacity: 0.85; }
  100% { transform: translate(50%, -50%) scale(8); opacity: 0;    }
}

/* ── 2. HUD corner brackets on capability + value cards ─────── */
.mv-card,
.platform-deep-dive article {
  position: relative;
}

.mv-card::before,
.platform-deep-dive article::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(29, 200, 255, 0.55);
  border-left: 2px solid rgba(29, 200, 255, 0.55);
  border-radius: 3px 0 0 0;
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mv-card::after,
.platform-deep-dive article::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 13px;
  height: 13px;
  border-bottom: 2px solid rgba(29, 200, 255, 0.55);
  border-right: 2px solid rgba(29, 200, 255, 0.55);
  border-radius: 0 0 3px 0;
  pointer-events: none;
  opacity: 0.62;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.mv-card:hover::before,
.mv-card:hover::after,
.platform-deep-dive article:hover::before,
.platform-deep-dive article:hover::after {
  opacity: 0.92;
}

/* ── 3. CTA primary button sweep shimmer ───────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  pointer-events: none;
  animation: ve-ctaSweep 3.5s ease-in-out infinite;
}

@keyframes ve-ctaSweep {
  0%, 40% { left: -80%; }
  100%     { left: 160%; }
}

/* ── 4. Section h2 gradient text (entry state) ─────────────── */
.section-heading.is-visible h2 {
  background: linear-gradient(
    110deg,
    var(--ink) 0%,
    #a8f0ff 42%,
    var(--ink) 68%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ve-titleGlow 2.8s ease-out 1 forwards;
}

@keyframes ve-titleGlow {
  0%   { background-position: 0%   center; }
  100% { background-position: 220% center; }
}

/* ── 5. Eyebrow draw-in underline ───────────────────────────── */
.section-heading .eyebrow {
  position: relative;
}

.section-heading .eyebrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.section-heading.is-visible .eyebrow::after {
  width: 100%;
}

/* ── prefers-reduced-motion guard ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fr-radar-ring { animation: none; opacity: 0; }

  .mv-card::before,
  .mv-card::after,
  .platform-deep-dive article::before,
  .platform-deep-dive article::after {
    animation: none;
    opacity: 0.35;
  }

  .btn-primary::after { display: none; }

  .section-heading.is-visible h2 {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--ink);
  }

  .section-heading .eyebrow::after { transition: none; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 2 VISUAL EFFECTS
   Loading screen · Custom cursor · Particle canvas · 3D card tilt
   ═══════════════════════════════════════════════════════════════ */

/* ── 6. Loading Screen ─────────────────────────────────────────── */
#fr-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#fr-loader.fr-loader--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#fr-loader.fr-loader--gone {
  display: none;
}
.fr-loader-inner {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr-loader-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  opacity: 0;
  animation: fr-loaderRing 2s ease-out infinite;
}
.fr-loader-ring--1 { width:  44px; height:  44px; animation-delay: 0s; }
.fr-loader-ring--2 { width:  88px; height:  88px; animation-delay: 0.4s; }
.fr-loader-ring--3 { width: 130px; height: 130px; animation-delay: 0.8s; }
@keyframes fr-loaderRing {
  0%   { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(1.3); opacity: 0; }
}
.fr-loader-wordmark {
  position: relative;
  z-index: 1;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--cyan);
  text-transform: uppercase;
  animation: fr-loaderPulse 1.4s ease-in-out infinite alternate;
}
@keyframes fr-loaderPulse {
  from { opacity: 0.3; }
  to   { opacity: 1;   }
}

/* ── 3. Millimeter-Wave Radar Cursor (desktop pointer only) ────── */
body.fr-custom-cursor,
body.fr-custom-cursor * { cursor: none !important; }

.fr-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-200px, -200px, 0) translate(-50%, -50%);
  will-change: transform;
}

.fr-cursor-ring {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(29, 200, 255, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(29, 200, 255, 0.32),
    inset 0 0 8px rgba(29, 200, 255, 0.18);
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.fr-cursor-wave {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(29, 200, 255, 0.34);
  border-radius: 50%;
  opacity: 0;
  animation: frCursorPulse 1.9s ease-out infinite;
}

.fr-cursor-sweep {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background:
    conic-gradient(from -18deg,
      rgba(29, 200, 255, 0.38) 0deg,
      rgba(29, 200, 255, 0.13) 24deg,
      rgba(29, 200, 255, 0) 58deg,
      rgba(29, 200, 255, 0) 360deg);
  filter: blur(0.2px);
  opacity: 0.76;
  animation: frCursorSweep 2.4s linear infinite;
}

.fr-cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(29, 200, 255, 0.95);
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.fr-cursor-axis {
  position: absolute;
  background: rgba(29, 200, 255, 0.5);
  opacity: 0.75;
}

.fr-cursor-axis--h {
  top: 50%;
  left: 6px;
  right: 6px;
  height: 1px;
  transform: translateY(-50%);
}

.fr-cursor-axis--v {
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
}

body.fr-cursor-hover .fr-cursor-ring {
  transform: scale(1.42);
  opacity: 0.74;
  border-color: rgba(29, 200, 255, 0.9);
}

body.fr-cursor-hover .fr-cursor-dot {
  transform: translate(-50%, -50%) scale(1.35);
  opacity: 1;
}

body.fr-cursor-hover .fr-cursor-wave {
  animation-duration: 1.2s;
  border-color: rgba(29, 200, 255, 0.5);
}

body.fr-cursor-hover .fr-cursor-sweep {
  opacity: 0.95;
  animation-duration: 1.7s;
}

@keyframes frCursorPulse {
  0% {
    transform: scale(0.38);
    opacity: 0.78;
  }
  70% {
    opacity: 0.18;
  }
  100% {
    transform: scale(1.58);
    opacity: 0;
  }
}

@keyframes frCursorSweep {
  to { transform: rotate(360deg); }
}

/* ── 4. Particle Constellation Canvas ─────────────────────────── */
.fr-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 720px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.72;
}
/* ensure philosophy-section has stacking context */
.philosophy-section { isolation: isolate; }

/* ── 1. Lightweight Card Lift (desktop hover only) ─────────────── */
.mv-card,
.platform-deep-dive article,
.feature-card,
.product-card,
.application-layout article,
.jobs-grid article,
.why-join article,
.press-grid article,
.contact-grid article,
.jobs-note,
.jobs-contact {
  will-change: transform;
}

/* ── Phase 2 prefers-reduced-motion guard ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #fr-loader { transition: none; }
  .fr-loader-ring  { animation: none; opacity: 0.4; }
  .fr-loader-wordmark { animation: none; opacity: 1; }
  .fr-cursor { display: none; }
  .fr-particles { display: none; }
  .mv-card,
  .platform-deep-dive article,
  .product-card {
    transform: none !important;
    will-change: auto;
  }
}
