/* ─────────────────────────────────────────────
   TOKENS
   ───────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f6f5f1;
  --ink:         #0f1117;
  --ink-off:     #374151;
  --dim:         #6b7280;
  --dimmer:      #9ca3af;
  --border:      rgba(0, 0, 0, 0.09);
  --border-soft: rgba(0, 0, 0, 0.05);
  --accent:      #4BA8D4;
  --accent-b:    #5BB8DC;
  --pad-x:       60px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Familjen Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.overline {
  font-size: 11px;
  font-weight: 500;
  color: var(--dimmer);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-family: 'Familjen Grotesk', sans-serif;
}

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  height: 68px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.cta { color: var(--accent); }
.nav-links a.cta:hover { color: var(--accent-b); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 30px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--ink); transition: 0.25s; }

/* ─────────────────────────────────────────────
   HERO (index only)
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.08) 100%);
}
.hero-inner {
  position: relative; z-index: 10;
  padding: 0 var(--pad-x) 84px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 22px;
  animation: rise 0.8s ease 0.1s both;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.8vw, 112px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  max-width: 20ch;
  margin-bottom: 28px;
  animation: rise 0.9s ease 0.24s both;
}
.hero-sub {
  max-width: 50ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.72;
  color: rgba(255,255,255,0.68);
  margin-bottom: 42px;
  animation: rise 0.9s ease 0.42s both;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: rise 0.9s ease 0.58s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  padding: 14px 28px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background-color 0.22s, border-color 0.22s, color 0.22s;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-b); border-color: var(--accent-b); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.32); }
.btn-outline:hover { border-color: rgba(255,255,255,0.70); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--border); border-width: 1px; border-style: solid; }
.btn-outline-dark:hover { border-color: var(--ink); }

.video-controls {
  position: absolute; bottom: 28px; right: var(--pad-x); z-index: 20;
  display: flex; gap: 10px;
}
.video-controls #muteBtn {
  display: none;
}
.vc-btn {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.vc-btn:hover { background: rgba(255,255,255,0.22); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.34);
}
.scroll-cue .line {
  width: 1px; height: 30px; background: rgba(255,255,255,0.26);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.28} 50%{opacity:.78} }

/* ─────────────────────────────────────────────
   PAGE HERO (interior pages)
   ───────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  padding: calc(68px + 80px) var(--pad-x) 88px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero .overline {
  color: rgba(255,255,255,0.36);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 7.5vw, 108px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  max-width: 20ch;
  margin-bottom: 28px;
}
.page-hero p {
  max-width: 54ch;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
}
.page-hero .hero-ctas { margin-top: 36px; }

/* ─────────────────────────────────────────────
   SECTION SCAFFOLD
   ───────────────────────────────────────────── */
.section { border-top: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
.section-head { padding: 72px var(--pad-x) 0; }
.section-head .overline {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-off);
  letter-spacing: 0.22em;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 22ch;
}
.section-lede {
  margin-top: 22px;
  max-width: 66ch;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-off);
  line-height: 1.80;
}

/* ─────────────────────────────────────────────
   MISSION
   ───────────────────────────────────────────── */
.mission-block {
  padding: 72px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.mission-statement {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.mission-statement .accent { color: var(--accent); }
.mission-copy p {
  font-size: clamp(15px, 1.15vw, 16.5px);
  color: var(--ink-off);
  line-height: 1.84;
  margin-bottom: 18px;
}
.mission-copy p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   STAT BAR
   ───────────────────────────────────────────── */
.stat-bar {
  display: grid;
  border-top: 1px solid var(--border);
}
.stat-bar.cols-2 { grid-template-columns: repeat(2, 1fr); }
.stat-bar.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat-bar.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat-bar.cols-5 { grid-template-columns: repeat(5, 1fr); }

.stat-cell {
  padding: 48px var(--pad-x);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.stat-cell:hover::after { background: var(--accent); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5.8vw, 80px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.stat-num .u { color: var(--accent); font-size: 0.62em; vertical-align: baseline; }
.stat-label {
  font-size: 11.5px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   MFG BAND
   ───────────────────────────────────────────── */
.mfg-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.mfg-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.mfg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  will-change: transform;
}
.mfg-image:hover img { transform: scale(1.04); }
.mfg-copy {
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
  background: #fff;
}
.section-alt .mfg-copy { background: var(--bg-alt); }
.mfg-copy .overline { margin-bottom: 12px; }
.mfg-copy h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 42px);
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 20px;
}
.mfg-copy p {
  font-size: 15.5px;
  color: var(--ink-off);
  line-height: 1.78;
  max-width: 46ch;
}
.mfg-band.flip .mfg-copy {
  border-left: none;
  border-right: 1px solid var(--border);
  order: -1;
}

/* ─────────────────────────────────────────────
   SUPPLY CHAIN STACK
   ───────────────────────────────────────────── */
.chain-stack { border-top: 1px solid var(--border); }
.chain-row {
  display: grid;
  grid-template-columns: 72px 1fr 1.6fr;
  align-items: center;
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}
.chain-row:last-child { border-bottom: none; }
.chain-row:hover { background: var(--bg-alt); }
.chain-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}
.chain-row:hover::before { width: 3px; }
.cr-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dimmer);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.chain-row:hover .cr-num { color: var(--accent); }
.cr-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  text-transform: uppercase;
  line-height: 1.06;
  color: var(--ink);
  padding-right: 28px;
}
.cr-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.74;
  max-width: 58ch;
}

/* ─────────────────────────────────────────────
   SPEC CARDS
   ───────────────────────────────────────────── */
.spec-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.spec-card {
  background: #fff;
  padding: 44px 40px;
  transition: background 0.22s;
}
.section-alt .spec-card { background: var(--bg-alt); }
.spec-card:hover { background: var(--bg-alt); }
.section-alt .spec-card:hover { background: #fff; }
.sc-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(75,168,212,0.30);
  padding: 3px 8px;
  margin-bottom: 18px;
}
.sc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 13px;
}
.sc-desc {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.76;
}

/* ─────────────────────────────────────────────
   COMPANY SPLIT
   ───────────────────────────────────────────── */
.company-split {
  padding: 72px var(--pad-x) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.company-split h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 68px);
  text-transform: uppercase;
  line-height: 0.96;
  color: var(--ink);
}
.company-split p {
  font-size: 15.5px;
  color: var(--ink-off);
  line-height: 1.82;
  margin-bottom: 16px;
}
.company-split p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   NEWS
   ───────────────────────────────────────────── */
.news-grid {
  padding: 52px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  border: 1px solid var(--border);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.news-card:hover {
  border-color: rgba(75,168,212,0.40);
  box-shadow: 0 4px 28px rgba(0,0,0,0.06);
}
.news-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.22s;
}
.news-card:hover::after { background: var(--accent); }
.news-grid--announcements { grid-template-columns: 1fr 1fr 1fr auto; }
@media (max-width: 767px) {
  .news-grid--announcements {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
}
.news-card-archive {
  border-color: transparent;
}
.news-card-archive:hover {
  border-color: transparent;
  box-shadow: none;
}
.news-card-archive::after,
.news-card-archive:hover::after { background: transparent; }
@media (max-width: 767px) {
  .news-card-archive {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.nc-date {
  font-size: 11px;
  color: var(--dimmer);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.nc-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 23px);
  text-transform: uppercase;
  line-height: 1.14;
  color: var(--ink);
}
.nc-desc {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.72;
  flex: 1;
}
.nc-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
  border: 1px solid var(--border);
  padding: 2px 7px;
  align-self: flex-start;
}
.nc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: 4px;
}
.news-card:hover .nc-link { gap: 10px; }

/* ─────────────────────────────────────────────
   VERTICALS
   ───────────────────────────────────────────── */
.vertical-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 620px;
  scroll-margin-top: 120px;
}
.vertical-strip.flip .vs-ident {
  order: 2;
  border-left: 1px solid var(--border);
  border-right: none;
}
.vs-ident {
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.vs-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 16vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.05);
  position: absolute;
  bottom: -16px;
  right: -8px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}
.vs-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.vs-domain {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  position: relative; z-index: 1;
  margin-bottom: 28px;
}
.vs-ident p {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.82;
  max-width: 48ch;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.vs-body {
  position: relative;
  overflow: hidden;
}
.vs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.vs-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative; z-index: 1;
}
.vs-app-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 12px;
  transition: border-color 0.2s, color 0.2s;
}
.vs-app-tag:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────────
   LEADERSHIP GRID
   ───────────────────────────────────────────── */
.leader-grid {
  padding: 52px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.leader-card {
  background: var(--bg-alt);
  padding: 0 0 32px;
  transition: background 0.22s;
  overflow: hidden;
}
.leader-card:hover { background: #fff; }
.lc-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e4df;
  margin-bottom: 24px;
}
.lc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.72) contrast(0.88) brightness(0.97) sepia(0.14);
  will-change: transform;
}
.leader-card:hover .lc-photo img {
  transform: scale(1.04);
  filter: saturate(0.82) contrast(0.92) brightness(0.99) sepia(0.08);
}
.lc-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--accent);
  letter-spacing: 0.04em;
  background: #eceae6;
}
.lc-text {
  padding: 0 32px;
}
.lc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.lc-title {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.lc-bio {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.74;
}

/* ─────────────────────────────────────────────
   INVESTOR PAGE
   ───────────────────────────────────────────── */
.ticker-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 52px var(--pad-x);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.ticker-symbol {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.ticker-exchange {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.ticker-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}
.ticker-note {
  font-size: 12px;
  color: var(--dimmer);
  max-width: 24ch;
  line-height: 1.68;
}
.ir-section {
  padding: 64px var(--pad-x) 80px;
}
.ir-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
}
.ir-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ir-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ir-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-off);
  vertical-align: middle;
}
.ir-table tr:last-child td { border-bottom: none; }
.ir-table a { color: var(--accent); font-weight: 500; transition: opacity 0.18s; }
.ir-table a:hover { opacity: 0.7; }
.ir-contact {
  padding: 64px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  /* border-top: 1px solid var(--border); */
}
.ir-contact h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.ir-contact p {
  font-size: 15px;
  color: var(--ink-off);
  line-height: 1.80;
  margin-bottom: 10px;
}
.ir-contact a { color: var(--accent); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.50);
  padding: 64px var(--pad-x) 28px;
  border-top: 1px solid var(--border);
}
.f-top {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.f-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.f-logo p {
  max-width: 30ch;
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  line-height: 1.72;
}
.f-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 0 52px;
}
.f-col-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-bottom: 14px;
}
.f-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  padding: 4px 0;
  transition: color 0.18s;
}
.f-col a:hover { color: rgba(255,255,255,0.82); }
.f-newsletter {
  padding: 36px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.f-newsletter-copy .f-col-head { margin-bottom: 4px; }
.f-newsletter-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  line-height: 1.6;
}
.f-newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.f-newsletter-form input[type="email"] {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  color: #fff;
  font-size: 13px;
  padding: 0 14px;
  height: 38px;
  width: 220px;
  outline: none;
  transition: border-color 0.2s;
}
.f-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.28); }
.f-newsletter-form input[type="email"]:focus { border-color: var(--accent); }
.f-newsletter-form button {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  padding: 0 18px;
  height: 38px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.f-newsletter-form button:hover { background: var(--accent-b); border-color: var(--accent-b); }
@media (max-width: 720px) {
  .f-newsletter { flex-direction: column; align-items: flex-start; }
  .f-newsletter-form input[type="email"] { width: 100%; }
  .f-newsletter-form { width: 100%; }
}
.f-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.f-legal { font-size: 12px; color: rgba(255,255,255,0.24); }
.f-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.24);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   REVEAL
   ───────────────────────────────────────────── */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mission-block { grid-template-columns: 1fr; gap: 36px; }
  .mfg-band { grid-template-columns: 1fr; }
  .mfg-copy { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); }
  .mfg-band.flip .mfg-copy { order: 0; }
  .company-split { grid-template-columns: 1fr; gap: 36px; }
  .chain-row { grid-template-columns: 52px 1fr; row-gap: 10px; }
  .cr-desc { grid-column: 1 / -1; }
  .f-nav { grid-template-columns: repeat(2, max-content); gap: 32px 48px; }
  .vertical-strip { grid-template-columns: 1fr; }
  .vertical-strip.flip .vs-ident { order: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .vs-ident { border-right: none !important; }
  .vs-body { min-height: 300px; }
  .ir-contact { grid-template-columns: 1fr; gap: 40px; }
  .ticker-block { gap: 24px; }
  .ticker-divider { display: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border); padding: 8px 0;
  }
  .nav-links.open a { width: 100%; padding: 14px var(--pad-x); }
  .nav-links.open a::after { display: none; }
  .nav-toggle { display: flex; }
  .spec-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .stat-bar.cols-4 { grid-template-columns: 1fr 1fr; }
  .stat-bar.cols-5 { grid-template-columns: 1fr 1fr; }
  .stat-bar.cols-3 { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
  .scroll-cue { display: none; }
}
@media (max-width: 460px) {
  :root { --pad-x: 22px; }
  .stat-bar.cols-4 { grid-template-columns: 1fr; }
  .stat-bar.cols-5 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ─────────────────────────────────────────────
   VERTICALS — OVERVIEW GRID
   ───────────────────────────────────────────── */
.vo-section {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.vo-section-head {
  padding: 52px var(--pad-x) 36px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.vo-section-head .overline { margin-bottom: 0; }
.vo-section-sub {
  font-size: 12px;
  color: var(--dimmer);
  letter-spacing: 0.06em;
}
.vo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
}
.vo-card {
  padding: 40px 30px 36px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.22s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  cursor: pointer;
}
.vo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.25s;
}
.vo-card:hover { background: #fff; }
.vo-card:hover::before { background: var(--accent); }
.vo-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.vo-card-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  min-height: 2em;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}
.vo-domain-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.vo-brief {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.74;
  flex: 1;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.vo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: relative; z-index: 1;
}
.vo-chips span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dimmer);
  border: 1px solid var(--border);
  padding: 3px 8px;
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s;
}
.vo-card:hover .vo-chips span {
  border-color: rgba(75,168,212,0.28);
  color: var(--ink-off);
}
.vo-card-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,0.05);
  position: absolute;
  bottom: -6px;
  right: -4px;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   VERTICALS — DOMAIN NAV (sticky sub-nav)
   ───────────────────────────────────────────── */
.vdom-nav {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: #0a0c12;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vdom-nav::-webkit-scrollbar { display: none; }
.vdn-inner {
  display: flex;
  align-items: stretch;
  padding: 0 var(--pad-x);
  min-width: max-content;
}
.vdn-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  margin-right: 40px;
  color: rgba(255,255,255,0.30);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.vdn-item:last-child { margin-right: 0; }
.vdn-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}
.vdn-item:hover { color: rgba(255,255,255,0.70); }
.vdn-item.active { color: #fff; }
.vdn-item.active::after { background: var(--accent); }
.vdn-sep { color: rgba(255,255,255,0.16); }
.vdn-label { color: var(--accent); }

/* ─────────────────────────────────────────────
   VERTICALS — STRIP ENHANCEMENTS
   ───────────────────────────────────────────── */
.vs-ident { border-top: 3px solid var(--accent); }
.vs-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.vs-seq {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
}
.vs-eyebrow .vs-domain {
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  margin-bottom: 0 !important;
}

/* ─────────────────────────────────────────────
   VERTICALS — RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vo-grid { grid-template-columns: repeat(3, 1fr); }
  .vdn-item { margin-right: 28px; font-size: 12px; }
}
@media (max-width: 900px) {
  .vo-grid { grid-template-columns: repeat(2, 1fr); }
  .vo-section-sub { display: none; }
}
@media (max-width: 720px) {
  .vo-grid { grid-template-columns: repeat(2, 1fr); }
  .vo-section-head { padding: 40px var(--pad-x) 28px; }
}
@media (max-width: 460px) {
  .vo-grid { grid-template-columns: 1fr; }
  .vo-section-head { padding: 32px var(--pad-x) 22px; }
}

/* ─────────────────────────────────────────────
   PLATFORM — CORE MAP (dark band)
   ───────────────────────────────────────────── */
.platform-core {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 84px var(--pad-x) 92px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.platform-core .overline { color: rgba(255,255,255,0.36); margin-bottom: 30px; }
.pc-core-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  position: relative;
}
.pc-core-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.pcb-k {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.pcb-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-b);
  margin-top: 9px;
}
.pc-connector {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--accent), rgba(255,255,255,0.10));
  margin: 0 auto;
}
.pc-nodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 1040px;
  margin: 0 auto;
}
.pc-node {
  background: #13161d;
  padding: 24px 22px;
  min-width: 188px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  transition: background 0.22s;
}
.pc-node:hover { background: #181c24; }
.pc-node-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.pc-node-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   MARKET DETAIL
   ───────────────────────────────────────────── */
.section-head-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  padding-bottom: 52px;
}
.market-body {
  padding: 0 var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.mb-feature .overline { margin-bottom: 14px; color: var(--accent); }
.mb-feature h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 16px;
}
.mb-feature p {
  font-size: 15px;
  color: var(--ink-off);
  line-height: 1.82;
  max-width: 56ch;
  margin-bottom: 16px;
}
.mb-feature p:last-of-type { margin-bottom: 26px; }

/* ── Featured Deployments Grid ──────────────────── */
.fd-section {
  padding: 0 0 88px;
}
.fd-section-head {
  padding: 0 var(--pad-x) 36px;
  text-align: center;
}
.fd-section-head .overline {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
}
.fd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fd-card {
  padding: 52px 48px 52px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fd-card:last-child { border-right: none; }
.fd-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.fd-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.fd-card p {
  font-size: 14px;
  color: var(--ink-off);
  line-height: 1.85;
  max-width: 34ch;
  flex: 1;
  margin-bottom: 32px;
}
.fd-card .btn { align-self: center; }
@media (max-width: 1000px) {
  .fd-card { padding: 44px 32px; }
}
@media (max-width: 900px) {
  .fd-grid { grid-template-columns: 1fr; }
  .fd-card { border-right: none; border-bottom: 1px solid var(--border); }
  .fd-card:last-child { border-bottom: none; }
}
.mb-products {
  background: var(--ink);
  border: none;
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
}
.mb-products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.section-alt .mb-products { background: var(--ink); }
.mb-products .overline {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
}
.product-list {
  list-style: none;
  margin-bottom: 0;
}
.product-list li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.product-list li:last-child { border-bottom: none; }
.product-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  top: -2px;
  opacity: 0.85;
}
.product-list a { color: rgba(255, 255, 255, 0.62); transition: color 0.18s; }
.product-list a:hover { color: #fff; }

/* ─────────────────────────────────────────────
   PRODUCT BLOCK
   ───────────────────────────────────────────── */
.product-block {
  padding: 72px var(--pad-x) 76px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  scroll-margin-top: 90px;
}
.pb-code {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(75,168,212,0.30);
  padding: 4px 10px;
  margin-bottom: 20px;
}
.pb-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 0.96;
  color: var(--ink);
  margin-bottom: 14px;
}
.pb-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 21px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 22px;
  line-height: 1.12;
}
.pb-desc {
  font-size: 15.5px;
  color: var(--ink-off);
  line-height: 1.84;
  margin-bottom: 28px;
  max-width: 54ch;
}
.pb-img {
  width: 100%;
  margin-top: 32px;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  height: 224px;
}
@media (min-width: 768px) {
  .pb-img {
    height: 424px;
  }
}
.pb-panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 34px 32px;
  margin-bottom: 20px;
}
.section-alt .pb-panel { background: #fff; }
.pb-panel:last-child { margin-bottom: 0; }
.pb-panel .overline { margin-bottom: 18px; }
.benefit-list, .series-list { list-style: none; }
.benefit-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.62;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list strong { color: var(--ink); font-weight: 600; }
.bl-mark { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.series-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.6;
}
.series-list li:last-child { border-bottom: none; }
.series-list strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
}

/* ─────────────────────────────────────────────
   CELL-AGNOSTIC SECTION LAYOUT
   ───────────────────────────────────────────── */
.ca-split {
  padding: 72px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ca-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ca-left .overline { margin-bottom: 0; }
.ca-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-off);
  line-height: 1.80;
  max-width: 52ch;
}
.ca-right { display: flex; align-items: center; }
@media (max-width: 900px) {
  .ca-split { grid-template-columns: 1fr; gap: 40px; }
  .ca-right { align-items: stretch; }
}

/* ─────────────────────────────────────────────
   CELL LIBRARY DATA-VIZ
   ───────────────────────────────────────────── */
.cell-lib-dv {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 32px 36px;
  width: 100%;
}
.cldv-header {
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.cldv-hstat { flex: 1; }
.cldv-hstat-right { text-align: right; }
.cldv-hdivider {
  width: 1px; height: 38px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 22px;
}
.cldv-hnum {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cldv-hnum .cu { color: var(--accent); font-size: 0.62em; }
.cldv-hnum-hi { color: var(--accent); }
.cldv-hnum-hi .cu { color: var(--accent-b); }
.cldv-hlabel {
  font-size: 10px;
  color: var(--dimmer);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
}
.cldv-chart-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 10px;
}
.cldv-rows { display: flex; flex-direction: column; }
.cldv-row {
  display: grid;
  grid-template-columns: 88px 1fr 110px;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cldv-row:last-child { border-bottom: none; }
.cldv-rname {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-off);
}
.cldv-rname-hi { color: var(--accent); }
.cldv-rname-dim { color: var(--dim); }
.cldv-rtrack {
  height: 2px;
  background: var(--border);
  position: relative;
}
.cldv-rfill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in .cldv-rfill { width: var(--w); }
.cldv-row:nth-child(1) .cldv-rfill { transition-delay: 0s; }
.cldv-row:nth-child(2) .cldv-rfill { transition-delay: 0.09s; }
.cldv-row:nth-child(3) .cldv-rfill { transition-delay: 0.18s; }
.cldv-row:nth-child(4) .cldv-rfill { transition-delay: 0.27s; }
.cldv-row:nth-child(5) .cldv-rfill { transition-delay: 0.36s; }
.cldv-row:nth-child(6) .cldv-rfill { transition-delay: 0.45s; }
.cldv-rfill-hi {
  background: linear-gradient(to right, var(--accent), var(--accent-b));
}
.cldv-rfill-hi::after {
  content: '';
  position: absolute;
  right: -2px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--accent-b);
  border-radius: 50%;
}
.cldv-rtrack-custom { background: transparent; }
.cldv-rfill-custom {
  position: absolute;
  inset: 0;
  border-top: 1px dashed var(--dimmer);
}
.cldv-rval {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--dimmer);
  text-align: right;
  white-space: nowrap;
}
.cldv-rval-hi { color: var(--accent); font-weight: 700; font-size: 12px; }
.cldv-rval-dim {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  color: var(--dimmer);
  font-style: italic;
  letter-spacing: 0.02em;
}
@media (max-width: 460px) {
  .cldv-row { grid-template-columns: 74px 1fr 88px; gap: 10px; }
  .cldv-rval { font-size: 10px; }
}

/* ─────────────────────────────────────────────
   CTA BAND (dark)
   ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 80px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band-text { max-width: 30ch; }
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 54px);
  text-transform: uppercase;
  line-height: 0.98;
  color: #fff;
}
.cta-band p {
  color: rgba(255,255,255,0.56);
  font-size: 15px;
  line-height: 1.76;
  max-width: 48ch;
  margin-top: 16px;
}
.cta-band .hero-ctas { margin-top: 0; }

/* ─────────────────────────────────────────────
   PLAIN PROSE SECTION (single + two-col)
   ───────────────────────────────────────────── */
.prose-block {
  padding: 64px var(--pad-x) 76px;
  max-width: 74ch;
}
.prose-block p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-off);
  line-height: 1.86;
  margin-bottom: 20px;
}
.prose-block p:last-child { margin-bottom: 0; }
.prose-block .lead {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px);
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.inline-link { color: var(--accent) !important; font-weight: 500; transition: opacity 0.18s; }
.inline-link:hover { opacity: 0.7; }

/* ─────────────────────────────────────────────
   NEW-PAGE RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .section-head-split { grid-template-columns: 1fr; }
  .market-body { gap: 40px; }
  .product-block { grid-template-columns: 1fr; gap: 36px; }
  .pc-node { min-width: 44%; }
  .cta-band { flex-direction: column; align-items: flex-start; gap: 28px; }
}
@media (max-width: 460px) {
  .pc-node { min-width: 100%; }
  .pc-core-badge { width: 150px; height: 150px; }
}

/* ─────────────────────────────────────────────
   CONTACT MODAL
   ───────────────────────────────────────────── */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(15,17,23,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.contact-overlay.open { opacity: 1; pointer-events: all; }
.contact-panel {
  background: var(--bg);
  width: min(560px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.26s ease;
}
.contact-overlay.open .contact-panel { transform: translateY(0); }
.contact-top {
  padding: 36px 44px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.contact-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--dim); font-size: 18px; line-height: 1;
  padding: 6px 8px;
  transition: color 0.2s;
}
.contact-close:hover { color: var(--ink); }
.contact-eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.contact-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  color: var(--ink); line-height: 1.02;
}
.contact-body { padding: 32px 44px 36px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-field { display: flex; flex-direction: column; gap: 7px; }
.contact-field.full { grid-column: 1 / -1; }
.contact-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}
.contact-input,
.contact-textarea {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
  box-sizing: border-box;
}
.contact-input:focus,
.contact-textarea:focus { border-color: var(--accent); }
.contact-input::placeholder,
.contact-textarea::placeholder { color: var(--dimmer); }
.contact-textarea { resize: vertical; min-height: 110px; }
.contact-submit {
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-submit:hover { background: var(--accent-b); }
.contact-submit:disabled { opacity: 0.6; cursor: default; }
.contact-success {
  display: none;
  padding: 20px 0 4px;
  font-size: 14px;
  color: #2a7a4b;
  font-weight: 500;
}
@media (max-width: 560px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-top, .contact-body { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 725px) {
  .page-hero .hero-careers-cta { position: initial; margin-top: 30px; }
}


/* ── Work-for-KULR hero link ──────────────────────── */
.page-hero { position: relative; }
.hero-careers-cta {
  position: absolute;
  bottom: 88px;
  right: var(--pad-x);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50) !important;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 11px 22px;
  transition: color 0.22s, border-color 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-careers-cta:hover { color: #fff; border-color: rgba(255,255,255,0.55); }