
/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }
* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.12) transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── TOKENS ─── */
:root {
  --black:      #000000;
  --black-2:    #0a0a0a;
  --black-3:    #111111;
  --black-4:    #191919;
  --white:      #ffffff;
  --gray-1:     #e8e8e8;
  --gray-2:     #8e9291;
  --gray-3:     #6c6e6b;
  --gray-4:     #3a3a3a;
  --gray-5:     #222222;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --blue:       #2463cc;
  --blue-dim:   rgba(36,99,204,0.18);
  --max:        1280px;
  --ease:       cubic-bezier(.25,.46,.45,.94);
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 48px; }

/* ─── TYPE HELPERS ─── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-2);
  display: block;
}
.h-display {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.h-display strong { font-weight: 700; }
.h-section {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.h-section strong { font-weight: 700; }
.body-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-1);
}
.body-sm {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-1);
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.32s; }
.d4 { transition-delay: 0.46s; }
.d5 { transition-delay: 0.60s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--gray-1); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-2);
  border: 1px solid var(--border);
  padding: 10px 24px;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn svg { flex-shrink: 0; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  transition: background 0.4s, border-color 0.4s, transform 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
nav.nav-hidden { transform: translateY(-100%); }
.nav-logo { position: absolute; left: 48px; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-cta-wrap { position: absolute; right: 48px; }

/* ─── NAV ITEMS ─── */
.nav-items {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 100%;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
/* invisible bridge so mouse moving from button → dropdown doesn't break hover */
.nav-item[data-dropdown]::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
.nav-item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: 72px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-item-btn:hover,
.nav-item:hover .nav-item-btn,
.nav-item.open .nav-item-btn { color: var(--white); }
.nav-chevron {
  width: 8px;
  height: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.2s;
  margin-top: 1px;
}
.nav-item:hover .nav-chevron,
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* ─── DROPDOWN PANEL ─── */
nav:has(.nav-item:hover) {
  background: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
}
nav.nav-dd-active {
  background: #000 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
}
.nav-dropdown {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100vw;
  background: #000;
  border-bottom: 1px solid var(--border);
  padding: 52px 48px;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s var(--ease);
  z-index: 490;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}
.nav-dd-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  max-width: 1000px;
}
.nav-dd-desc { max-width: 300px; }
.nav-dd-products-col { flex-shrink: 0; }
.nav-dd-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.nav-dd-contact-email {
  display: block;
  font-size: 13px;
  color: var(--gray-1);
  margin-top: 6px;
  transition: color 0.18s;
}
.nav-dd-contact-email:hover { color: var(--white); }
.nav-dd-social { margin-top: 20px; }
.nav-dd-social-links {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.nav-dd-social-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-2);
  transition: color 0.18s;
}
.nav-dd-social-links a:hover { color: var(--white); }
.nav-dd-left {
  flex: 1;
  padding-right: 64px;
}
.nav-dd-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}
.nav-dd-right {
  width: 300px;
  flex-shrink: 0;
  padding-left: 64px;
}
.nav-dd-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-1);
  font-weight: 600;
  display: block;
  margin-bottom: 25px;
}
.nav-dd-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
}
.nav-dd-desc {
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.65;
  max-width: 480px;
}
.nav-dd-products { list-style: none; }
.nav-dd-products li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0px 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  transition: color 0.18s, gap 0.18s;
}
.nav-dd-products li a:hover { color: var(--white); gap: 22px; }
.nav-dd-plus {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.18s;
}
.nav-dd-products li a:hover .nav-dd-plus { color: var(--white); }

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.45);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.08) 70%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 80px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.3; transform:scale(0.5); }
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title strong { font-weight: 700; display: block; }
.hero-sub {
  font-size: 16px;
  color: var(--gray-2);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(--black);
  backdrop-filter: blur(5px);
}
.hero-stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.hero-stat {
  padding: 24px 0;
  border-right: 0.1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:not(:first-child) { padding-left: 32px; }
.stat-val {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 5px;
}

/* ─── PARTNERS STRIP ─── */
#partners {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.featured-bar {
  display: flex;
  align-items: center;
  height: 68px;
}
.featured-label {
  flex-shrink: 0;
  padding: 0 32px 0 48px;
  border-right: 1px solid var(--border);
  color: var(--gray-3);
  white-space: nowrap;
}
.marquee-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.marquee-outer::after  { right: 0; background: linear-gradient(to left,  #000, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: marquee-scroll 14s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-offset, -50%)); }
}
.marquee-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-logo img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.marquee-logo img.logo-no-filter { filter: none; }
.marquee-logo img.logo-invert {
  filter: invert(1) grayscale(1) contrast(100);
}
.marquee-sep {
  color: var(--gray-5);
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── SECTION BASE ─── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 20px; }
.section-header .h-section { margin-bottom: 20px; }
.section-rule {
  width: 40px; height: 1px;
  background: var(--gray-4);
  margin: 20px 0 24px;
}

/* ─── TECHNOLOGY ─── */
#technology { background: var(--black); }
.tech-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 96px;
  align-items: center;
}
.tech-steps { display: flex; flex-direction: column; margin-top: 40px; }
.tech-step {
  display: flex;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.tech-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-4);
  width: 56px;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-body h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-body p { font-size: 13px; color: var(--gray-2); line-height: 1.65; }
.tech-diagram {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tech-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── PRODUCTS ─── */
#products { background: var(--black-2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.product-card {
  border: 1px solid var(--border);
  border-right: none;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.3s;
  position: relative;
}
.product-card:last-child { border-right: 1px solid var(--border); }
.product-card::after {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover { background: var(--black-3); }
.product-card:hover::after { opacity: 1; }
.product-eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-3);
}
.product-name {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 4px;
}
.product-model {
  font-size: 10px; color: var(--gray-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-img {
  overflow: hidden;
}
.product-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.product-desc { font-size: 13px; color: var(--gray-2); line-height: 1.7; }
.product-kpis {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.product-kpi {
  flex: 1;
  padding: 16px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.product-kpi:last-child { border-right: none; }
.kpi-val {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.kpi-lbl {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray-3);
  margin-top: 4px;
}
.product-specs { display: flex; flex-direction: column; gap: 9px; }
.spec-row { display: flex; justify-content: space-between; gap: 12px; }
.spec-k { font-size: 11px; color: var(--gray-4); letter-spacing: 0.03em; }
.spec-v { font-size: 11px; font-weight: 700; text-align: right; }
.product-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 8px; }

/* ─── ADVANTAGE ─── */
#advantage { background: var(--black); }
.advantage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-cell {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-cell:nth-child(3n) { border-right: 1px solid var(--border); }
.stat-cell.wide {
  grid-column: span 1;
  border-right: 1px solid var(--border);
}
.stat-cell:hover { background: var(--black-3); }
.stat-big {
  font-size: 56px; font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: center;
}
.stat-big .unit { font-size: 22px; font-weight: 300; line-height: 1; }
.stat-desc {
  font-size: 10px; color: var(--gray-2);
  margin-top: 8px; line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.video-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.video-caption-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-3);
}
.video-caption-sep { font-size: 11px; color: var(--gray-3); opacity: 0.5; }
.video-caption-detail { font-size: 11px; color: var(--gray-3); }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-4);
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.cmp-table th:not(:first-child) { text-align: right; }
.cmp-table td {
  font-size: 13px; color: var(--gray-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cmp-table td:not(:first-child) { text-align: right; }
.cmp-table .cable { color: var(--gray-4); }
.cmp-table .sc { color: var(--white); font-weight: 700; }

/* ─── APPLICATIONS ─── */
#applications { background: var(--black-2); }

/* Desktop card grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.app-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.app-card:hover { border-color: rgba(255,255,255,0.2); }
.app-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-bottom: 1px solid var(--border);
  display: block;
  object-fit: cover;
}
.app-card-body { padding: 24px; }
.app-card-tag {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-3); display: block; margin-bottom: 8px;
}
.app-card-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.app-card-desc { font-size: 12px; color: var(--gray-2); line-height: 1.6; }

/* Mobile accordion — hidden on desktop */
.app-accordion { display: none; border-top: 1px solid var(--border); }
.app-acc-item { border-bottom: 1px solid var(--border); }
.app-acc-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  gap: 24px;
  text-align: left;
  color: var(--white);
  font-family: inherit;
  transition: opacity 0.2s;
}
.app-acc-toggle:hover { opacity: 0.7; }
.app-acc-num {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--gray-4);
  width: 32px; flex-shrink: 0;
}
.app-acc-title {
  font-size: 18px; font-weight: 300;
  letter-spacing: -0.01em;
  flex: 1;
  color: var(--white);
}
.app-acc-icon {
  font-size: 20px; font-weight: 300;
  color: var(--gray-3);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  line-height: 1;
}
.app-acc-item.open .app-acc-icon { transform: rotate(45deg); }
.app-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.app-acc-item.open .app-acc-body { grid-template-rows: 1fr; }
.app-acc-body > div { overflow: hidden; }
.app-acc-content {
  display: flex;
  gap: 56px;
  padding-bottom: 36px;
  align-items: flex-start;
}
.app-acc-img-wrap {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
}
.app-acc-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.app-acc-desc {
  font-size: 14px; color: var(--gray-2);
  line-height: 1.75;
  padding-top: 4px;
}

/* ─── COMPANY ─── */
#company { background: var(--black); }
.company-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.achievement-rows { margin-top: 32px; }
.ach-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.ach-row:first-child { border-top: 1px solid var(--border); }
.ach-n {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--gray-4);
  width: 28px; flex-shrink: 0; padding-top: 2px;
}
.ach-text { font-size: 14px; color: var(--gray-2); line-height: 1.65; }
.ach-text strong { color: var(--white); font-weight: 600; }
.funding-panel {
  border: 1px solid var(--border-2);
  padding: 40px;
  margin-bottom: 1px;
}
.funding-amount {
  font-size: 60px; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.funding-sub { font-size: 13px; color: var(--gray-2); margin-bottom: 28px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 5px 12px;
  border: 1px solid var(--border);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-3);
}
.info-panel {
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 1px;
}
.info-panel-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-4); margin-bottom: 14px;
}
.info-panel-names { display: flex; gap: 20px; flex-wrap: wrap; }
.info-panel-names span { font-size: 15px; font-weight: 700; }

/* ─── CAREERS ─── */
#careers { background: var(--black-2); }
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.value-rows { display: flex; flex-direction: column; }
.value-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.value-row:first-child { border-top: 1px solid var(--border); }
.value-n {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--gray-4);
  width: 28px; flex-shrink: 0; padding-top: 2px;
}
.value-body h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.value-body p { font-size: 13px; color: var(--gray-2); line-height: 1.6; }

/* ─── CONTACT ─── */
#contact { background: var(--black); }
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 96px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; margin-top: 40px; }
.contact-row {
  display: flex;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:first-child { border-top: 1px solid var(--border); }
.contact-key {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-4);
  width: 100px; flex-shrink: 0;
  padding-top: 2px;
}
.contact-val { font-size: 14px; color: var(--gray-2); line-height: 1.6; }
.contact-val a { color: var(--white); transition: color 0.2s; }
.contact-val a:hover { color: var(--gray-2); }
form { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.f-group { display: flex; flex-direction: column; background: var(--black); }
.f-group label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-4);
  padding: 14px 16px 0;
}
.f-group input,
.f-group select,
.f-group textarea {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 16px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  transition: background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--gray-4); }
.f-group:focus-within { background: var(--black-3); }
.f-group select option { background: var(--black-3); }
.f-group textarea { resize: vertical; min-height: 100px; }
.f-submit {
  padding: 20px 28px;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-note { font-size: 11px; color: var(--gray-4); }

/* ─── FOOTER ─── */
footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px 0 56px;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 32px; }
.footer-brand img { height: 80px; opacity: 1; }
.footer-contact-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.footer-social-group { display: flex; flex-direction: column; }
.footer-nav {
  display: flex;
  gap: 48px;
}
.footer-col {
  flex: 1;
  min-width: 0;
}
.footer-col-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  font-family: inherit;
  text-align: left;
}
.footer-col-icon { display: none; }
.footer-col h5 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray-3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--gray-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 11px; color: var(--gray-3); }
.footer-legal { font-size: 10px; color: var(--gray-3); opacity: 0.65; line-height: 1.6; text-align: right; }

/* ─── BLUE LINK STYLE ─── */
.link-blue {
  color: var(--blue);
  position: relative;
  text-decoration: none;
}
.link-blue::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.link-blue:hover { color: #4a80e0; }
.link-blue:hover::after { transform: scaleX(1); }

/* ─── APP CELL IMAGE ─── */
.app-img {
  height: 160px;
  overflow: hidden;
  margin: -36px -32px 24px;
}
.app-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(90%);
  transition: transform 0.5s;
}
.app-cell:hover .app-img img {
  transform: scale(1.04);
}

/* ─── OPEN POSITIONS TABLE ─── */
.positions-section { margin-top: 72px; border-top: 1px solid var(--border); padding-top: 48px; }
.positions-label { margin-bottom: 24px; }
.positions-table { width: 100%; border-collapse: collapse; }
.positions-table thead th {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-4);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.positions-table tbody tr {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.positions-table tbody tr:hover { background: var(--black-3); }
.positions-table td {
  padding: 18px 16px 18px 0;
  font-size: 13px; color: var(--gray-2);
  vertical-align: middle;
}
.positions-table td:first-child { color: var(--white); font-weight: 600; }
.positions-table td:last-child { text-align: right; color: var(--blue); padding-right: 0; }
.pos-tag {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--border);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-4);
}
.pos-arrow { font-size: 16px; opacity: 0.6; transition: opacity 0.2s, transform 0.2s; }
.positions-table tbody tr:hover .pos-arrow { opacity: 1; transform: translateX(4px); }

/* ─── HAMBURGER BUTTON ─── */
#nav-hamburger {
  display: none;
  position: absolute;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  gap: 7px;
  z-index: 600;
}
#nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

/* ─── MOBILE MENU OVERLAY ─── */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  overflow: hidden;
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* header bar — always visible, holds ← (hidden by default) and ✕ */
.mm-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  flex-shrink: 0;
}
#mm-back-btn {
  visibility: hidden;
}
.mm-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.mm-close:hover { opacity: 1; }

/* panel clip viewport */
.mm-panels {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* each panel fills the clip container; solid background so sliding panels cover each other */
.mm-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

/* main panel: block layout so items stack naturally */
#mm-main {
  padding: 0 32px 56px;
  transform: translateX(0);
  transition: transform 0.35s var(--ease);
}
#mm-main.slide-out { transform: translateX(-25%); }

/* sub panels */
.mm-sub-panel {
  padding: 0 32px 56px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mm-sub-panel.active { transform: translateX(0); }

/* ── Back button (lives in mm-header, shared across sub-panels) ── */
.mm-back {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px 8px 0;
  opacity: 0.75;
  transition: opacity 0.15s;
  font-family: inherit;
}
.mm-back:hover { opacity: 1; }

/* ── Main panel — nav items ── */
.mm-nav { padding-top: 8px; }
.mm-nav-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.1;
  transition: opacity 0.15s;
}
.mm-nav-item:active { opacity: 0.5; }

/* ── Main panel — footer contact + social ── */
.mm-footer-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mm-footer-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
  margin-bottom: 12px;
}
.mm-footer-email {
  font-size: 17px;
  color: #ccc;
  transition: color 0.15s;
}
.mm-footer-email:hover { color: #fff; }
.mm-footer-social { display: flex; gap: 20px; }
.mm-footer-social a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.15s;
}
.mm-footer-social a:hover { color: #fff; }

/* ── Submenu — label + links + desc (no separate header row) ── */
.mm-sub-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}
.mm-sub-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #fff;
  padding: 16px 0;
  line-height: 1.2;
  font-family: inherit;
  transition: opacity 0.15s, gap 0.15s;
}
.mm-sub-item:hover { opacity: 0.65; gap: 20px; }
.mm-plus {
  color: #666;
  font-size: 16px;
  flex-shrink: 0;
}
.mm-sub-title {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}
.mm-sub-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #888;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .tech-layout, .advantage-layout, .company-layout,
  .careers-layout, .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .products-grid, .app-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { border-right: 1px solid var(--border); }
  .app-cell { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important; }
  .nav-items { display: none; }
  .nav-dropdown { display: none !important; }
  .nav-cta-wrap { display: none; }
  #nav-hamburger { display: flex; }
  .footer-nav { gap: 32px; }
  .footer-legal { text-align: left; }

}
@media (max-width: 640px) {
  .container, .container-narrow { padding: 0 24px; }
  nav { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .hero-stats-inner { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .featured-label { padding: 0 20px 0 24px; }
  .f-row { grid-template-columns: 1fr; }
  .stat-block { grid-template-columns: repeat(3, 1fr); }
  .stat-cell { padding: 20px 10px; }
  .stat-big { font-size: 24px; }
  .stat-big .unit { font-size: 16px; }
  /* Section spacing */
  .section { padding: 48px 0; }
  #vision { padding: 48px 0 !important; }
  #in-action { padding: 48px 0 !important; }
  .section-header { margin-bottom: 32px; }

  /* Hero */
  .hero-stats { display: none; }
  .hero-content { padding-bottom: 56px; }
  .hero-title { line-height: 1.0; }
  .hero-sub { font-size: 15px; max-width: 100%; }

  /* Vision — neutralise inline margin-left */
  #vision .container-narrow { margin-left: 0 !important; }

  /* Technology steps — override inline display:grid */
  .tech-steps { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* In-action — full-width video, hide separators in caption */
  #test-video-wrap { width: 100% !important; }
  .video-caption-sep { display: none; }
  .video-caption { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* News grid — single column */
  .index-news-grid { grid-template-columns: 1fr !important; }

  /* Form inputs — prevent iOS auto-zoom on focus */
  input, textarea, select { font-size: 16px; }

  /* Applications: swap grid→accordion on mobile */
  .apps-grid { display: none; }
  .app-accordion { display: block; }
  .app-acc-content { flex-direction: column; gap: 20px; }
  .app-acc-img-wrap { width: 100%; }
  .app-acc-title { font-size: 16px; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand, .footer-nav { width: 100%; }
  .footer-contact-section { flex-direction: column; gap: 24px; }
  .footer-nav { flex-direction: column; gap: 0; }
  .footer-col { flex: none; width: 100%; }
  .footer-col-toggle {
    cursor: pointer;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .footer-col-toggle h5 { margin-bottom: 0; }
  .footer-col-icon {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-2);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
  }
  .footer-col.open .footer-col-icon { transform: rotate(45deg); }
  .footer-col ul {
    display: none;
    padding: 16px 0 8px;
  }
  .footer-col.open ul { display: flex; }
}

/* ─── COOKIE CONSENT MODAL ─── */
.cookie-modal {
  background: #111;
  border: 1px solid #222;
  border-radius: 4px;
  max-width: 520px;
  width: 100%;
  padding: 40px;
  font-family: inherit;
}
.cookie-modal-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.cookie-modal-desc {
  font-size: 13px;
  color: var(--gray-3);
  line-height: 1.75;
  margin: 0 0 28px;
}
.cookie-modal-link { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid #1e1e1e;
}
.cookie-row-info { display: flex; flex-direction: column; gap: 5px; }
.cookie-row-info strong { font-size: 13px; color: var(--white); font-weight: 500; }
.cookie-row-info span { font-size: 12px; color: var(--gray-3); line-height: 1.55; max-width: 340px; }
.cookie-always-on {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-4);
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #2a2a2a;
  border-radius: 24px;
  transition: background .3s;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #555;
  border-radius: 50%;
  transition: transform .3s, background .3s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  background: #f0f0f0;
  transform: translateX(20px);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid #1e1e1e;
  margin-top: 4px;
}
.cookie-btn-ghost {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: var(--gray-3);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.cookie-btn-ghost:hover { border-color: #555; color: var(--white); }
.cookie-btn-primary {
  padding: 9px 18px;
  background: #f0f0f0;
  border: 1px solid #f0f0f0;
  color: #0a0a0a;
  font-size: 12px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity .2s;
}
.cookie-btn-primary:hover { opacity: .85; }
@media (max-width: 520px) {
  .cookie-modal { padding: 28px 24px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { width: 100%; }
}

/* ─── PRIVACY PAGE ─── */
.privacy-page { background: var(--black); padding: 160px 0 120px; min-height: 100vh; }
.privacy-inner { max-width: 720px; }
.privacy-hero { margin-bottom: 72px; }
.privacy-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-top: 20px;
  margin-bottom: 24px;
}
.privacy-title strong { font-weight: 700; }
.privacy-meta { font-size: 12px; color: var(--gray-4); letter-spacing: 0.06em; }
.privacy-section { padding: 40px 0; border-top: 1px solid var(--border); }
.privacy-section:last-child { border-bottom: 1px solid var(--border); }
.privacy-section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  color: var(--gray-4);
}
.privacy-body { font-size: 14px; color: var(--gray-2); line-height: 1.8; }
.privacy-body p { margin-bottom: 14px; }
.privacy-body p:last-child { margin-bottom: 0; }
.privacy-body ul { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.privacy-body ul li { padding-left: 20px; position: relative; }
.privacy-body ul li::before { content: "—"; color: var(--gray-4); position: absolute; left: 0; }
.privacy-body a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.privacy-body strong { color: var(--white); font-weight: 500; }
.privacy-table { width: 100%; border-collapse: collapse; margin: 16px 0 4px; font-size: 13px; }
.privacy-table th {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-4);
  padding: 0 16px 12px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.privacy-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid #1a1a1a;
  color: var(--gray-2);
  vertical-align: top;
  line-height: 1.65;
}
.privacy-table td:first-child { color: var(--white); font-weight: 500; }
@media (max-width: 680px) { .privacy-page { padding: 130px 0 80px; } }
