﻿:root {
  --green: #0a8f2a;
  --green-2: #18b947;
  --red: #c5162b;
  --red-soft: #fff2f3;
  --red-line: rgba(181, 18, 27, 0.18);
  --red-glow: rgba(181, 18, 27, 0.1);
  --brand-ink: #075f24;
  --ink: #071426;
  --muted: #586575;
  --line: #dfe8e3;
  --soft: #fff5f6;
  --white: #fff;
  --dark: #071b24;
  --shadow: 0 18px 45px rgba(9, 45, 24, 0.12);
  --shadow-soft: 0 12px 28px rgba(7, 20, 38, 0.08);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", "Inter", Arial, Helvetica, sans-serif;
  background: var(--white);
  overflow-x: hidden;
  -webkit-user-select: none;
  user-select: none;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
}
input,
textarea {
  -webkit-user-select: text;
  user-select: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 232, 227, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(7, 20, 38, 0.04);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 260px;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--brand-ink);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 850;
}
.brand-copy em {
  margin-top: 3px;
  color: var(--green);
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
}
.text-only-brand {
  padding-left: 0;
}
.single-line-brand {
  display: block;
}
.single-line-brand strong {
  font-size: 15px;
  color: var(--brand-ink);
  white-space: nowrap;
}
.brand-stack {
  display: grid;
  gap: 4px;
  align-items: start;
}
.infracell-brand {
  width: 166px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.infracell-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  width: max-content;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0.7px;
  color: transparent;
  background: linear-gradient(90deg, #f0702f 0%, #d93b32 42%, #b51642 100%);
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 2px;
}
.infracell-wordmark .energy-word {
  font-size: 0.58em;
  line-height: 1.25;
  letter-spacing: 0.25px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  flex: 1;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1px;
}
.nav-links a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-color: var(--green);
}
.header-cta,
.btn,
.mini-btn,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-weight: 780;
  letter-spacing: 0.1px;
}
.header-cta {
  min-width: 130px;
  padding: 13px 19px;
  color: #fff;
  background: linear-gradient(135deg, #07862a, #075f24);
  font-size: 12px;
  box-shadow: 0 10px 22px rgba(10, 143, 42, 0.18);
}
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(460px, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 430px;
  padding: 42px clamp(22px, 4vw, 70px) 36px;
  background:
    linear-gradient(105deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 48%, rgba(238,249,240,0.82) 100%),
    radial-gradient(circle at 77% 50%, rgba(181, 18, 27, 0.13), transparent 28%);
  overflow: hidden;
}
.hero h1 {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 820;
}
.hero h1 span { color: var(--green); }
.hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #233142;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #07862a, #075f24);
  border-color: var(--green);
}
.btn:hover,
.header-cta:hover,
form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(7, 20, 38, 0.12);
}
.hero-media {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.hero-media::before {
  display: none;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}
.image-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  width: min(100%, 560px);
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,244,245,0.95)),
    radial-gradient(circle at 80% 20%, rgba(10, 143, 42, 0.14), transparent 35%);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.image-fallback strong {
  color: var(--brand-ink);
  font-size: 26px;
  font-weight: 950;
}
.image-fallback span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
img.image-missing {
  display: none !important;
}
.hero-card {
  position: absolute;
  left: -20px;
  bottom: 22px;
  width: min(320px, 75%);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 27, 36, 0.88);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; color: #85f36f; font-size: 17px; }
.hero-card span { display: block; margin-top: 5px; font-size: 12px; line-height: 1.45; font-weight: 700; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1160px, calc(100% - 44px));
  margin: -28px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--red-line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.96)),
    #fff;
  box-shadow: var(--shadow);
}
.trust-strip article {
  min-height: 120px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.trust-strip article:last-child { border-right: 0; }
.trust-strip b {
  display: block;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}
.trust-strip strong { display: block; margin: 10px 0 6px; font-size: 15px; }
.trust-strip p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; font-weight: 650; }

.cell-showcase {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  width: min(1160px, calc(100% - 44px));
  margin: -28px auto 0;
  padding: 28px;
  border: 1px solid var(--red-line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.96)),
    #fff;
  box-shadow: var(--shadow);
}
.cell-showcase .kicker {
  margin-bottom: 7px;
}
.cell-showcase h2 {
  font-size: clamp(24px, 2.5vw, 36px);
}
.cell-showcase p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}
.cell-showcase img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.investor-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 10px;
  background: rgba(181, 18, 27, 0.18);
}
.investor-stat-row article {
  min-height: 118px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,246,247,0.97)),
    #fff;
}
.investor-stat-row strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1.1;
}
.investor-stat-row span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}
.chemistry-highlight {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 26px auto 0;
  padding: 30px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.12), transparent 38%),
    #fff;
  box-shadow: var(--shadow-soft);
}
.chemistry-highlight h2 {
  max-width: 560px;
}
.chemistry-highlight p:last-child {
  margin: 0;
  color: #263342;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 680;
}
.chemistry-highlight::after {
  content: "6,000-8,000 cycles";
  justify-self: start;
  grid-column: 1 / -1;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #07862a, #075f24);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}
.technology-hero {
  display: block;
}
.technology-hero > div {
  max-width: 1180px;
}
.technology-hero h1 {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 8px;
}
.technology-hero p:not(.kicker) {
  max-width: 720px;
  margin-top: 0;
}
.tech-intro-card {
  max-width: 760px;
  padding: 18px 20px;
  border: 1px solid rgba(181, 18, 27, 0.22);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #fff5f6);
  box-shadow: 0 12px 30px rgba(9, 45, 24, 0.08);
}
.tech-intro-card p {
  margin: 0;
  color: #263342;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}
.tech-intro-card strong {
  color: var(--green);
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tech-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(181, 18, 27, 0.22);
  border-radius: 999px;
  color: #0b5f22;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.technology-hero-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
}
.lfp-hero-visual {
  margin: 0;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.lfp-hero-visual img {
  display: block;
  width: 100%;
  max-width: 420px;
  max-height: 250px;
  padding: 18px;
  object-fit: contain;
}
.tech-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 150px 150px;
  gap: 12px;
}
.tech-visual-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(9, 45, 24, 0.08);
}
.tech-visual-grid img:first-child {
  grid-row: span 2;
  object-fit: contain;
  padding: 18px;
}
.tech-card {
  min-height: 245px;
}
.tech-card img {
  height: 132px;
  object-fit: contain;
  padding: 18px 26px;
  background: linear-gradient(135deg, #fff, #fff5f6);
}
.pouch-card img {
  height: 220px;
  object-fit: contain;
  padding: 10px 34px;
  background: #fff;
}
.visual-panel {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 22px;
  align-items: center;
}
.visual-panel img {
  width: 150px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.visual-panel img.process-photo {
  object-fit: contain;
  background: #fff6f7;
  padding: 4px;
}
.no-image-cards .card {
  min-height: 210px;
}
.process-flow {
  display: grid;
  gap: 18px;
}
.flow-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}
.flow-step {
  position: relative;
  min-height: 112px;
  padding: 18px 14px;
  border: 1px solid var(--red-line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.1), transparent 42%);
  box-shadow: 0 12px 28px rgba(9, 45, 24, 0.07);
  overflow: hidden;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--green);
}
.flow-step b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}
.flow-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.25;
}
.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}
.solid-state-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(181, 18, 27, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffffff, #fff3f4),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.1), transparent 42%);
  box-shadow: 0 12px 28px rgba(9, 45, 24, 0.07);
  overflow: hidden;
}
.solid-state-card img {
  width: 120px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
}
.solid-state-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.solid-state-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.section {
  padding: 52px clamp(22px, 4vw, 70px);
}
.section > .section-head,
.section > .card-grid,
.section > .premium-grid,
.section > .roadmap-grid,
.section > .metric-band,
.section > .wide-split,
.section > .contact-grid,
.section > .process-flow,
.section > .roadmap-number-grid,
.section > .featured-product-card,
.section > .why-grid,
.section > .win-grid,
.section > .proof-action-grid,
.section > .visual-roadmap,
.section > .scale-roadmap,
.section > .manufacturing-flow,
.section > .authority-grid,
.section > .funding-ask-card,
.section > .industry-solution-grid,
.section > .timeline {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section.alt {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff0f1 100%);
}
.section-head {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}
.kicker {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 820;
}
.section-head p,
.page-hero p,
.text-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, var(--red-glow), transparent 40%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.compact-thesis-grid {
  align-items: start;
}
.compact-card {
  min-height: 0;
  padding: 18px 20px 20px;
}
.compact-card h3 {
  margin-bottom: 8px;
}
.compact-card p {
  margin-bottom: 0;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(181, 18, 27, 0.24));
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
}
.card:hover,
.premium-panel:hover,
.roadmap-grid article:hover,
.industry-solution-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 20, 38, 0.11);
}
.card h3,
.premium-panel h3,
.roadmap-grid h3,
.industry-solution-grid h3 {
  color: #102033;
}
.capabilities-hero img,
.capabilities-split img {
  object-position: center;
}
.pilot-photo-pair {
  display: grid;
  gap: 12px;
  max-width: 520px;
}
.pilot-photo-pair img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.capability-grid {
  align-items: stretch;
}
.capability-card {
  padding: 0;
  overflow: hidden;
}
.capability-card img {
  height: 185px;
  margin-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}
.capability-card h3,
.capability-card p {
  padding-left: 22px;
  padding-right: 22px;
}
.capability-card h3 {
  padding-top: 20px;
}
.capability-card p {
  padding-bottom: 22px;
}
.card.tech-card > img {
  height: 150px;
  object-fit: contain;
  padding: 14px 24px;
  background: linear-gradient(135deg, #fff, #fff5f6);
}
.card.architecture-card > img {
  height: 230px;
  object-fit: contain;
  object-position: center center;
  padding: 8px 14px;
  background: #fff;
}
.card.cylindrical-card > img {
  height: 245px;
  padding: 8px 10px;
}
.card.pouch-card > img {
  height: 260px;
  object-fit: contain;
  object-position: center center;
  padding: 8px 28px;
  background: #fff;
}
.card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.25; }
.card p, .card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}
.card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.card li { margin: 8px 0; }
.card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
}
.traction-section {
  padding-top: 58px;
  background:
    linear-gradient(105deg, #071426 0%, #102f37 48%, #3c1115 100%);
  color: #fff;
}
.traction-lead {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: end;
  margin: 0 auto 26px;
  max-width: 1160px;
}
.traction-lead .kicker {
  color: #ffb6bb;
}
.traction-lead h2 {
  max-width: 520px;
  color: #fff;
}
.traction-lead p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}
.traction-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
}
.traction-grid article {
  min-height: 164px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.075);
  box-shadow: 0 18px 34px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
}
.traction-grid span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}
.traction-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
}
.traction-grid p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 650;
}
.proof-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1160px;
  margin: 22px auto 0;
}
.proof-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.proof-link-row a:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.trust-badge-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 70px) 0;
  transform: translateY(-1px);
}
.trust-badge-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, rgba(10, 143, 42, 0.09), transparent 38%);
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(7, 20, 38, 0.05);
}
.trust-badge-strip span:first-child {
  border-radius: 12px 0 0 12px;
}
.trust-badge-strip span:last-child {
  border-radius: 0 12px 12px 0;
}
.verification-card-strip {
  gap: 14px;
  padding-top: 38px;
  padding-bottom: 18px;
}
.verification-card-strip span {
  min-height: 112px;
  align-content: start;
  justify-items: start;
  gap: 7px;
  padding: 20px;
  border-radius: 14px !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,244,245,0.95)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.1), transparent 42%);
  box-shadow: 0 18px 40px rgba(7, 20, 38, 0.08);
}
.verification-card-strip span::before {
  content: attr(data-icon);
  width: 34px;
  height: 34px;
  margin-bottom: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--red));
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
}
.verification-card-strip strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}
.proof-validation-section {
  padding-top: 34px;
}
.proof-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.proof-action-grid a {
  min-height: 60px;
  display: grid;
  place-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(10, 143, 42, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #f8fbf9);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.proof-action-grid a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(7, 20, 38, 0.12);
}
.manufacturing-numbers-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}
.roadmap-number-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.roadmap-number-grid article {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 18px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,244,245,0.95)),
    radial-gradient(circle at 100% 0%, rgba(10, 143, 42, 0.09), transparent 38%);
  box-shadow: 0 16px 36px rgba(7, 20, 38, 0.08);
}
.roadmap-number-grid strong {
  color: var(--brand-ink);
  font-size: clamp(20px, 2.15vw, 30px);
  line-height: 1.05;
}
.roadmap-number-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 750;
}
.featured-product-section {
  background:
    linear-gradient(135deg, #fffafa 0%, #fff 42%, rgba(235, 249, 238, 0.68) 100%);
}
.featured-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.95)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.12), transparent 38%);
  box-shadow: 0 24px 58px rgba(7, 20, 38, 0.1);
}
.product-visual-block {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, #f7fbf8);
}
.product-visual-block img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: contain;
  padding: 18px;
}
.product-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.7vw, 38px);
}
.product-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 16px;
}
.spec-grid span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(10, 143, 42, 0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}
.spec-grid b {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}
.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 14px;
}
.spec-label {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.application-tags b {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(10, 143, 42, 0.08);
  font-size: 11px;
  font-weight: 900;
}
.mini-disclaimer {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  border-radius: 8px;
  background: #fff8e6;
  color: #60410d !important;
  font-size: 12px !important;
}
.founder-credibility {
  background:
    linear-gradient(135deg, #fff 0%, #fff6f7 62%, rgba(236, 249, 240, 0.76) 100%);
}
.founder-investor-card {
  position: relative;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.94)),
    radial-gradient(circle at 0% 0%, rgba(10, 143, 42, 0.12), transparent 34%);
  box-shadow: 0 22px 52px rgba(7, 20, 38, 0.12);
  overflow: hidden;
}
.founder-investor-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.founder-investor-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 315px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  box-shadow: none;
}
.founder-investor-card figcaption {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}
.founder-investor-card strong {
  color: var(--ink);
  font-size: 19px;
}
.founder-investor-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}
.wide-split {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(430px, 1fr);
  gap: 46px;
  align-items: center;
}
.wide-split.reverse {
  grid-template-columns: minmax(430px, 1fr) minmax(340px, 0.9fr);
}
.wide-split img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.home-about .wide-split img {
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.text-block h2 { margin-bottom: 18px; }
.bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.bullet-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--red-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff4f5);
  color: #263342;
  font-size: 14px;
  font-weight: 800;
}
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.metric-band article {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    #fff;
  overflow: hidden;
}
.metric-band article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: rgba(181, 18, 27, 0.08);
}
.metric-band strong {
  display: block;
  color: var(--green);
  font-size: 24px;
}
.metric-band span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.premium-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--red-line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,242,243,0.96)),
    radial-gradient(circle at 100% 0%, var(--red-glow), transparent 38%),
    #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.premium-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(181, 18, 27, 0.24));
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.roadmap-grid article {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(181, 18, 27, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,246,247,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.095), transparent 40%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.roadmap-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(181, 18, 27, 0.24));
}
.roadmap-grid b {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}
.roadmap-grid h3 {
  margin: 0 0 10px;
  font-size: 17px;
}
.roadmap-grid p,
.premium-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}
.visual-roadmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.visual-roadmap span {
  position: relative;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,246,247,0.95));
  color: var(--ink);
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}
.visual-roadmap span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.visual-roadmap span:last-child {
  color: #fff;
  background: linear-gradient(135deg, #071426, #0a7d25);
}
.scale-roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.scale-roadmap span {
  position: relative;
  min-height: 100px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,246,247,0.95)),
    radial-gradient(circle at top left, rgba(10,125,37,0.1), transparent 42%);
  color: var(--ink);
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}
.scale-roadmap span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.scale-roadmap span:last-child {
  color: #fff;
  background: linear-gradient(135deg, #071426, #b5121b);
}
.founder-card-small {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.founder-card-small img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: none;
}
.founder-card-small h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.founder-card-small p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}
.story-photo {
  margin: 0;
}
.story-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.story-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.know-how-story {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,247,247,0.94)),
    #fff;
}
.certificate-photo img {
  height: 360px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: transparent;
  border: 0;
}
.evidence-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.evidence-row span {
  min-height: 58px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(181, 18, 27, 0.08), rgba(3, 120, 38, 0.05));
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.china-company-panel {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,244,245,0.94)),
    #fff;
  box-shadow: 0 12px 28px rgba(9, 45, 24, 0.06);
}
.china-company-panel strong,
.china-company-panel span,
.china-company-panel small {
  display: block;
}
.china-company-panel strong {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.china-company-panel span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}
.china-company-panel small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}
.china-role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.china-role-grid b {
  padding: 8px 10px;
  border: 1px solid rgba(10, 143, 42, 0.14);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255,255,255,0.76);
  font-size: 11px;
  font-weight: 900;
}
.target-segments-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}
.segment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.segment-grid article {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 18px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,245,246,0.94)),
    radial-gradient(circle at 100% 0%, rgba(10, 143, 42, 0.1), transparent 38%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.segment-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.segment-grid strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}
.segment-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}
.why-infracell-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,246,247,0.95)),
    radial-gradient(circle at 100% 0%, rgba(10, 143, 42, 0.1), transparent 38%);
  box-shadow: var(--shadow-soft);
}
.why-grid b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--red));
  font-size: 12px;
}
.why-grid h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 17px;
}
.why-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 650;
}
.why-we-win-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(181, 18, 27, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}
.win-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.win-grid article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,247,248,0.96)),
    radial-gradient(circle at top right, rgba(10,125,37,0.1), transparent 44%);
  box-shadow: 0 20px 44px rgba(7, 20, 38, 0.07);
}
.win-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--red));
  font-size: 11px;
  font-weight: 950;
}
.win-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
}
.win-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 650;
}
.process-flow-section {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff0f1 100%);
}
.manufacturing-flow {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 10px;
}
.manufacturing-flow span {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}
.manufacturing-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.manufacturing-flow span:last-child {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #07391d);
}
.visual-authority-section {
  background: #fff;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.authority-grid article {
  padding: 14px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,246,247,0.95));
  box-shadow: var(--shadow-soft);
}
.authority-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,20,38,0.96), rgba(16,47,55,0.94)),
    radial-gradient(circle at 70% 20%, rgba(10,143,42,0.34), transparent 34%);
  font-size: 16px;
  font-weight: 950;
}
.authority-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
}
.authority-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}
.funding-ask-section {
  background:
    linear-gradient(115deg, #071426 0%, #102f37 52%, #3c1115 100%);
  color: #fff;
}
.funding-ask-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr);
  gap: 26px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.12), transparent 38%);
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
}
.funding-ask-card .kicker {
  color: #ffb6bb;
}
.funding-ask-card h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
}
.funding-ask-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}
.funding-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.funding-use-grid span {
  min-height: 58px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 850;
}
.funding-ask-card .hero-actions {
  grid-column: 1 / -1;
}
.funding-ask-card .btn:not(.btn-primary) {
  color: var(--ink);
}
.investor-highlight-band {
  grid-template-columns: repeat(6, 1fr);
}
.strategic-vision-section {
  padding: 70px clamp(22px, 4vw, 70px);
  color: #fff;
  background:
    linear-gradient(115deg, #071426 0%, #102f37 48%, #3c1115 100%),
    radial-gradient(circle at 80% 20%, rgba(10, 143, 42, 0.24), transparent 34%);
}
.strategic-vision-section > div {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.strategic-vision-section .kicker {
  color: #ffb6bb;
}
.strategic-vision-section h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
}
.strategic-vision-section p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}
.investor-data-room-section {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff0f1 100%);
}
.data-room-institutional {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(181, 18, 27, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,246,247,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.11), transparent 38%);
  box-shadow: 0 24px 58px rgba(7, 20, 38, 0.1);
}
.data-room-institutional h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 2.7vw, 38px);
}
.data-room-institutional p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}
.data-room-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.data-room-list span {
  min-height: 62px;
  display: grid;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(10, 143, 42, 0.14);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 850;
}
.investor-disclaimer {
  padding: 18px clamp(22px, 4vw, 70px);
  background: #fff8e6;
  border-top: 1px solid rgba(132, 87, 0, 0.16);
  border-bottom: 1px solid rgba(132, 87, 0, 0.16);
}
.investor-disclaimer p {
  max-width: var(--max);
  margin: 0 auto;
  color: #60410d;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}
.investor-disclaimer strong {
  color: #2c1e08;
}
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 42px clamp(22px, 4vw, 70px);
  color: #fff;
  background: linear-gradient(110deg, #0a7d25, #07391d);
}
.cta-band h2 { margin-bottom: 8px; font-size: clamp(22px, 2vw, 28px); }
.cta-band p { margin: 0; color: rgba(255,255,255,0.82); line-height: 1.6; font-weight: 650; }
.cta-band .btn { color: var(--ink); }
.cta-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.cta-contact-actions .btn {
  min-width: 132px;
  padding: 0 18px;
}

.investor-action-section {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff0f1 100%);
}
.investor-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}
.investor-cta-card {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.95)),
    radial-gradient(circle at 95% 0%, rgba(181, 18, 27, 0.11), transparent 38%);
  box-shadow: 0 20px 44px rgba(7, 20, 38, 0.1);
  overflow: hidden;
}
.investor-cta-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.investor-cta-card h2 {
  max-width: 520px;
}
.investor-cta-card p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}
.investor-cta-card .btn {
  width: max-content;
  margin-top: 8px;
}
.data-room-card {
  color: #fff;
  background:
    linear-gradient(135deg, #071426, #102f37 60%, #3c1115),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.16), transparent 38%);
}
.data-room-card h2,
.data-room-card .kicker {
  color: #fff;
}
.data-room-card p:not(.kicker) {
  color: rgba(255,255,255,0.78);
}
.data-room-card .btn {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255,255,255,0.35);
}

.page-hero {
  padding: 52px clamp(22px, 4vw, 70px);
  background:
    linear-gradient(105deg, #fff 0%, #fff 44%, rgba(235, 249, 238, 0.95) 100%),
    radial-gradient(circle at 78% 30%, rgba(181, 18, 27, 0.1), transparent 28%);
}
.investor-hero {
  background:
    linear-gradient(105deg, #ffffff 0%, #ffffff 45%, rgba(255,242,243,0.94) 100%),
    radial-gradient(circle at 78% 30%, rgba(181, 18, 27, 0.12), transparent 28%);
}
.investor-proof {
  background:
    linear-gradient(180deg, #071426 0%, #102f37 100%);
  color: #fff;
}
.investor-proof .section-head h2,
.investor-proof .section-head p {
  color: #fff;
}
.investor-proof .section-head p {
  color: rgba(255,255,255,0.78);
}
.investor-hero-image {
  object-position: center;
}
.investor-web-photo {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}
.investor-web-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: none;
}
.investor-web-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.investor-hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(181, 18, 27, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,244,245,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.16), transparent 42%),
    #fff;
  box-shadow: var(--shadow-soft);
}
.investor-hero-panel div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(10, 143, 42, 0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
}
.investor-hero-panel span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #07862a, #075f24);
  font-size: 12px;
  font-weight: 900;
}
.investor-hero-panel strong {
  color: var(--ink);
  font-size: 15px;
}
.investor-hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}
.investor-proof-visual {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--red-line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    #fff;
  box-shadow: var(--shadow-soft);
}
.investor-proof-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: none;
}
.investor-proof-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.investor-proof-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--red-line);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.11), transparent 40%),
    #fff;
  box-shadow: var(--shadow-soft);
}
.investor-proof-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 22px;
}
.investor-proof-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.investor-proof-card li {
  padding: 12px 14px;
  border: 1px solid rgba(10, 143, 42, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.74);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.investor-proof-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 820;
}
.page-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.page-hero .lfp-hero-visual img {
  height: auto;
  max-height: 250px;
  object-fit: contain;
  box-shadow: none;
}
.solutions-hero-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 145px 145px;
  gap: 12px;
}
.solutions-hero-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #fff6f7;
}
.solutions-hero-mosaic .mosaic-large {
  grid-row: 1 / span 2;
}
.solutions-hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.solutions-hero-mosaic figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(4, 24, 18, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.solutions-hero-image {
  object-position: center;
}
.solutions-industries {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff0f1 100%);
}
.industry-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-solution-grid article {
  position: relative;
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--red-line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.095), transparent 40%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.industry-solution-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(181, 18, 27, 0.08);
}
.industry-solution-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.industry-solution-grid h3 {
  margin: 0 0 9px;
  font-size: 18px;
}
.industry-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}
.timeline {
  display: grid;
  gap: 20px;
}
.timeline article {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(181, 18, 27, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, var(--red-glow), transparent 40%);
  overflow: hidden;
}
.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(181, 18, 27, 0.24));
}
.timeline h3 { margin: 0 0 10px; color: var(--green); }
.timeline p { margin: 0; color: var(--muted); line-height: 1.7; font-weight: 650; }

.about-timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.about-timeline article {
  min-height: 150px;
  padding: 22px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
}

.about-timeline h3 {
  color: #0a7cff;
  font-size: 24px;
}

.about-timeline p {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
}

.clean-about-timeline {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.clean-about-timeline article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,251,255,0.96));
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 46px rgba(7, 20, 38, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.clean-about-timeline article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(7, 20, 38, 0.13);
}

.clean-about-timeline strong {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #0a7cff;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.clean-about-timeline h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.15;
}

.clean-about-timeline p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.supporting-visual-grid,
.china-image-grid,
.proof-card-grid,
.dark-card-grid {
  max-width: var(--max);
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
}

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

.supporting-visual-grid article,
.china-image-grid figure {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #071426;
  box-shadow: 0 22px 52px rgba(7, 20, 38, 0.14);
}

.supporting-visual-grid img,
.china-image-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.supporting-visual-grid article::after,
.china-image-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3,8,20,0.82));
}

.supporting-visual-grid article:hover img,
.china-image-grid figure:hover img {
  transform: scale(1.045);
}

.supporting-visual-grid strong,
.china-image-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.china-visual-split {
  align-items: center;
}

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

.china-image-grid figure {
  min-height: 190px;
}

.about-dark-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(10,124,255,0.22), transparent 34%),
    linear-gradient(135deg, #030814, #071a33);
}

.about-dark-section .section-head h2,
.about-dark-section .section-head p,
.about-dark-section .kicker {
  color: #fff !important;
}

.about-dark-section .section-head p:not(.kicker) {
  color: rgba(255,255,255,0.72) !important;
}

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

.dark-card-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(18,230,255,0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.dark-card-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(18,230,255,0.42);
}

.dark-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(10,124,255,0.22);
  color: #12e6ff;
  font-weight: 900;
}

.dark-card-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.dark-card-grid p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  font-weight: 650;
}

.proof-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card-grid article {
  min-height: 150px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.proof-card-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #0a7cff;
  font-size: 28px;
  line-height: 1.05;
}

.proof-card-grid span {
  color: #0f172a;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .about-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clean-about-timeline,
  .proof-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .about-timeline {
    grid-template-columns: 1fr;
  }

  .clean-about-timeline,
  .supporting-visual-grid,
  .china-image-grid,
  .dark-card-grid.six,
  .proof-card-grid {
    grid-template-columns: 1fr;
  }

  .clean-about-timeline article,
  .supporting-visual-grid article,
  .china-image-grid figure {
    min-height: 190px;
  }
}

/* Final manufacturing and footer tuning */
.manufacturing-redesign .section {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.manufacturing-hero-clean {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.manufacturing-hero-clean h1 {
  max-width: 780px !important;
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.08 !important;
}

.manufacturing-hero-clean p:not(.kicker) {
  max-width: 700px !important;
  font-size: 16px !important;
}

.manufacturing-roadmap-flow {
  gap: 16px !important;
}

.manufacturing-roadmap-flow article {
  min-height: 132px !important;
  padding: 22px !important;
  border-radius: 20px !important;
}

.manufacturing-roadmap-flow article:not(:last-child)::after {
  right: -22px !important;
  top: 50% !important;
}

.manufacturing-roadmap-flow strong {
  font-size: clamp(24px, 2.4vw, 36px) !important;
}

.manufacturing-process-diagram {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.manufacturing-process-diagram span {
  min-height: 78px !important;
  padding: 10px 8px !important;
  border-radius: 14px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.manufacturing-process-diagram span:not(:last-child)::after {
  right: -8px !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
}

.principle-card-grid article {
  min-height: 112px !important;
  padding: 18px !important;
  border-radius: 18px !important;
}

.capacity-card-grid article {
  min-height: 132px !important;
  padding: 24px !important;
  border-radius: 20px !important;
}

.capacity-card-grid strong {
  font-size: clamp(28px, 3vw, 44px) !important;
}

.footer,
.dark-footer {
  padding: 24px clamp(22px, 4vw, 70px) 14px !important;
  gap: 12px !important;
  align-items: start !important;
}

.footer .footer-institutional,
.dark-footer .footer-institutional {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-top: 0 !important;
  text-align: center !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.footer-links {
  width: 100% !important;
  gap: 18px !important;
  align-items: start !important;
}

.footer-links div {
  gap: 5px !important;
}

.footer-links strong {
  margin-bottom: 4px !important;
  font-size: 12px !important;
}

.footer-links a,
.footer p {
  font-size: 11px !important;
  line-height: 1.35 !important;
}

.footer > p:last-child,
.dark-footer > p:last-child {
  margin: 4px 0 0 !important;
  padding-top: 10px !important;
}

@media (max-width: 900px) {
  .manufacturing-process-diagram {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .manufacturing-process-diagram span:not(:last-child)::after {
    display: none !important;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .manufacturing-redesign .section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .manufacturing-hero-clean {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  .manufacturing-hero-clean h1 {
    max-width: 330px !important;
    font-size: clamp(28px, 8vw, 34px) !important;
  }

  .manufacturing-roadmap-flow article,
  .capacity-card-grid article {
    min-height: 112px !important;
  }

  .footer,
  .dark-footer {
    padding: 22px 18px 12px !important;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(380px, 1fr);
  gap: 28px;
}
.contact-hero-visual {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(181, 18, 27, 0.15);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181, 18, 27, 0.11), transparent 42%);
  box-shadow: var(--shadow-soft);
}
.contact-hero-visual img {
  width: 170px;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: none;
}
.contact-hero-card {
  display: grid;
  gap: 8px;
}
.contact-hero-card strong {
  color: var(--ink);
  font-size: 22px;
}
.contact-hero-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}
.contact-hero-card a,
.contact-hero-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.contact-card,
form {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(181, 18, 27, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,245,246,0.96)),
    radial-gradient(circle at 100% 0%, var(--red-glow), transparent 40%);
  box-shadow: 0 14px 30px rgba(9, 45, 24, 0.075);
  overflow: hidden;
}
.contact-card::before,
form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(181, 18, 27, 0.24));
}
.contact-card span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}
.contact-card span:last-child { border-bottom: 0; }
.contact-card strong { display: block; color: var(--ink); }
form { display: grid; gap: 14px; }
label span {
  display: block;
  margin-bottom: 7px;
  color: #263342;
  font-size: 13px;
  font-weight: 800;
}
label span b {
  color: var(--red);
  font-size: 15px;
  font-weight: 950;
}
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8e5dc;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}
textarea { resize: vertical; min-height: 130px; }
form button {
  min-height: 46px;
  border: 0;
  color: #fff;
  background: var(--green);
  cursor: pointer;
}
.submit-highlight {
  min-height: 54px;
  margin-top: 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0a8f2a, #075f24 60%, #b5121b);
  box-shadow: 0 18px 34px rgba(10, 143, 42, 0.24);
  font-size: 14px;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 44px clamp(22px, 4vw, 70px) 22px;
  color: #fff;
  background: linear-gradient(110deg, #102f37, #071b24);
}
.footer-institutional {
  max-width: 840px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 750;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.footer-links div { display: grid; gap: 8px; align-content: start; }
.footer-links strong { margin-bottom: 8px; font-size: 13px; }
.footer-links a,
.footer p {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.45;
}
.footer p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

/* Institutional homepage upgrade */
.investor-section {
  padding-top: 58px;
  padding-bottom: 58px;
}
.investor-section .section-head {
  margin-bottom: 28px;
}
.investor-section .section-head h2,
.secure-data-room-card h2,
.funding-ask-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}
.investor-hero-upgrade {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.97) 44%, rgba(242,248,245,0.91) 100%),
    radial-gradient(circle at 78% 42%, rgba(197, 22, 43, 0.14), transparent 28%),
    radial-gradient(circle at 55% 78%, rgba(10, 143, 42, 0.12), transparent 30%);
}
.investor-hero-upgrade::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.44;
  background:
    linear-gradient(rgba(7,20,38,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,20,38,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  animation: batteryGridMove 18s linear infinite;
}
.investor-hero-upgrade::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.52;
  background:
    radial-gradient(circle at 22% 30%, rgba(197,22,43,0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 48%, rgba(10,143,42,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 70%, rgba(7,20,38,0.22) 0 1px, transparent 2px);
  background-size: 280px 180px, 240px 160px, 180px 140px;
  animation: energyParticles 14s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.investor-hero-upgrade h1 {
  max-width: 720px;
  font-size: clamp(35px, 4.4vw, 64px);
  line-height: 1.02;
  font-weight: 900;
}
.investor-hero-upgrade p:not(.kicker) {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.68;
}
.investor-hero-upgrade .hero-media {
  min-height: 390px;
}
.investor-hero-upgrade .hero-media::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(7,20,38,0.22), transparent 68%);
  filter: blur(8px);
}
.enterprise-metric-grid article,
.funding-snapshot-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, 0.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(250,252,251,0.96)),
    radial-gradient(circle at 100% 0%, rgba(197,22,43,0.1), transparent 42%);
  box-shadow: 0 18px 46px rgba(7,20,38,0.08);
}
.enterprise-metric-grid article::before,
.funding-snapshot-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--red));
}
.funding-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.funding-snapshot-grid article {
  min-height: 122px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 14px;
}
.funding-snapshot-grid strong {
  color: var(--ink);
  font-size: clamp(21px, 2.25vw, 32px);
  line-height: 1.05;
}
.funding-snapshot-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.market-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.market-card-grid article {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,247,248,0.96)),
    radial-gradient(circle at 100% 0%, rgba(10,143,42,0.12), transparent 38%);
  box-shadow: 0 18px 42px rgba(7,20,38,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.market-card-grid article:hover,
.document-card-grid a:hover,
.execution-visual-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(7,20,38,0.13);
}
.market-card-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--red));
  font-size: 11px;
  font-weight: 950;
}
.market-card-grid strong {
  font-size: 18px;
  line-height: 1.2;
}
.market-bottom-statement {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  border-radius: 12px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 14px 34px rgba(7,20,38,0.06);
  color: #253142;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 760;
}
.institutional-card-grid article {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.institutional-card-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 58px rgba(7,20,38,0.12);
}
.document-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.document-card-grid a {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(7,20,38,0.08);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(249,252,250,0.96)),
    radial-gradient(circle at 100% 0%, rgba(181,18,27,0.11), transparent 42%);
  box-shadow: 0 18px 44px rgba(7,20,38,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.doc-icon {
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px 10px 14px 10px;
  color: #fff;
  background: linear-gradient(145deg, #071426, #0a8f2a);
  font-size: 10px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(7,20,38,0.18);
}
.document-card-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.22;
}
.document-card-grid em {
  align-self: end;
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.founder-premium-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(480px, 1fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.founder-premium-layout .text-block {
  padding: 0;
  background: transparent;
  border: 0;
}
.executive-placeholder {
  position: absolute;
  inset: 18px 18px 104px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255,255,255,0.92);
  background:
    radial-gradient(circle at 30% 20%, rgba(197,22,43,0.45), transparent 34%),
    linear-gradient(135deg, #071426, #0b2a36);
  font-size: 58px;
  font-weight: 950;
}
.founder-credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.founder-credential-grid span {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(181, 18, 27, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,248,249,0.92)),
    radial-gradient(circle at 100% 0%, rgba(10,143,42,0.1), transparent 42%);
  box-shadow: 0 14px 32px rgba(7,20,38,0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}
.founder-credential-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}
.execution-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.execution-visual-grid article {
  overflow: hidden;
  border: 1px solid rgba(7,20,38,0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(7,20,38,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.execution-visual-grid div {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(7,20,38,0.12), transparent 42%),
    radial-gradient(circle at 28% 42%, rgba(10,143,42,0.2), transparent 24%),
    radial-gradient(circle at 70% 30%, rgba(197,22,43,0.18), transparent 26%),
    linear-gradient(135deg, #f8fbf9, #fff5f6);
  position: relative;
}
.execution-visual-grid div::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(7,20,38,0.14);
  border-radius: 12px;
  background:
    linear-gradient(rgba(7,20,38,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,20,38,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}
.execution-visual-grid strong {
  display: block;
  min-height: 72px;
  padding: 18px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
.enterprise-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.enterprise-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--red));
  opacity: 0.45;
}
.enterprise-timeline article {
  position: relative;
  min-height: 148px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(181,18,27,0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(255,247,248,0.95)),
    radial-gradient(circle at 100% 0%, rgba(10,143,42,0.1), transparent 42%);
  box-shadow: 0 18px 42px rgba(7,20,38,0.07);
}
.enterprise-timeline article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(181,18,27,0.25), 0 8px 18px rgba(181,18,27,0.18);
}
.enterprise-timeline b {
  color: var(--red);
  font-size: 26px;
  line-height: 1;
}
.enterprise-timeline strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}
.secure-data-room-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(197,22,43,0.28), transparent 34%),
    linear-gradient(135deg, #071426, #0b2630 58%, #102f37);
  box-shadow: 0 30px 70px rgba(7,20,38,0.24);
}
.secure-data-room-card h2,
.secure-data-room-card p,
.secure-data-room-card .kicker {
  color: #fff;
}
.secure-data-room-card p:not(.kicker) {
  color: rgba(255,255,255,0.78);
}
.secure-data-room-card .data-room-list span {
  border-color: rgba(255,255,255,0.16);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
body.reveal-ready .reveal-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
body.reveal-ready .reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes batteryGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 92px 46px, 46px 92px; }
}
@keyframes energyParticles {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 60px -30px, -50px 40px, 40px 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .investor-hero-upgrade::before,
  .investor-hero-upgrade::after,
  body.reveal-ready .reveal-in {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    min-height: 68px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    min-width: 54px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--green);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .header-cta { display: none; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(223, 232, 227, 0.72);
  }
  .hero,
  .page-hero-inner,
  .technology-hero-wrap,
  .chemistry-highlight,
  .traction-lead,
  .wide-split,
  .wide-split.reverse,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }
  .trust-strip,
  .cell-showcase,
  .chemistry-highlight,
  .investor-stat-row,
  .card-grid,
  .metric-band,
  .premium-grid,
  .traction-grid,
  .roadmap-number-grid,
  .investor-cta-grid,
  .segment-grid,
  .why-grid,
  .win-grid,
  .proof-action-grid,
  .visual-roadmap,
  .scale-roadmap,
  .authority-grid,
  .industry-solution-grid,
  .roadmap-grid,
  .flow-chart,
  .manufacturing-flow,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .investor-highlight-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-room-institutional {
    grid-template-columns: 1fr;
  }
  .featured-product-card {
    grid-template-columns: 1fr;
  }
  .trust-badge-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge-strip span,
  .trust-badge-strip span:first-child,
  .trust-badge-strip span:last-child {
    border-radius: 10px;
  }
  .manufacturing-flow span:not(:last-child)::after {
    display: none;
  }
  .visual-roadmap span:not(:last-child)::after {
    display: none;
  }
  .scale-roadmap span:not(:last-child)::after {
    display: none;
  }
  .cta-band { grid-template-columns: 1fr; }
  .cta-contact-actions {
    justify-content: flex-start;
  }
  .funding-ask-card {
    grid-template-columns: 1fr;
  }
  .tech-visual-grid {
    grid-template-rows: 130px 130px;
  }
  .lfp-hero-visual {
    min-height: 230px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 18px;
  }
  .brand { min-width: 0; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy em { font-size: 12px; }
  .infracell-brand { width: 118px; }
  .infracell-wordmark { font-size: 17px; letter-spacing: 0.35px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 18px 28px;
    gap: 26px;
  }
  .hero h1 {
    font-size: 29px;
    line-height: 1.12;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-actions,
  .cta-band {
    align-items: stretch;
  }
  .hero-actions .btn,
  .cta-band .btn,
  .cta-contact-actions .btn {
    width: 100%;
  }
  .cta-contact-actions {
    width: 100%;
  }
  .hero-media { min-height: 280px; }
  .hero-card { left: 14px; right: 14px; width: auto; }
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .trust-strip,
  .cell-showcase,
  .investor-stat-row,
  .card-grid,
  .metric-band,
  .bullet-list,
  .premium-grid,
  .traction-grid,
  .roadmap-number-grid,
  .investor-cta-grid,
  .segment-grid,
  .why-grid,
  .win-grid,
  .proof-action-grid,
  .visual-roadmap,
  .scale-roadmap,
  .authority-grid,
  .industry-solution-grid,
  .roadmap-grid,
  .flow-chart,
  .manufacturing-flow,
  .contact-hero-visual,
  .solid-state-card,
  .visual-panel,
  .founder-card-small,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .tech-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 140px);
  }
  .tech-visual-grid img:first-child {
    grid-row: auto;
  }
  .visual-panel img {
    width: 100%;
  }
  .founder-card-small img {
    width: 120px;
    height: 120px;
  }
  .founder-investor-card img {
    height: 250px;
  }
  .funding-ask-card {
    padding: 24px 18px;
  }
  .funding-use-grid {
    grid-template-columns: 1fr;
  }
  .data-room-list {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge-strip {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }
  .proof-link-row a {
    width: 100%;
    justify-content: center;
  }
  .investor-cta-card .btn {
    width: 100%;
  }
  .evidence-row {
    grid-template-columns: 1fr;
  }
  .flow-step::after {
    display: none;
  }
  .trust-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip article:last-child { border-bottom: 0; }
  .wide-split img,
  .page-hero img { height: 250px; }
  .certificate-photo img {
    height: 260px;
  }
  .contact-hero-visual img {
    width: 122px;
    height: 138px;
  }
  .solutions-hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 140px 140px;
  }
  .solutions-hero-mosaic .mosaic-large {
    grid-row: auto;
  }
  .solutions-hero-mosaic img {
    height: 100%;
  }
  .page-hero .lfp-hero-visual img {
    height: auto;
    max-height: 220px;
  }
}

/* Reference artwork matched homepage */
.reference-art-site {
  --ref-bg: #020713;
  --ref-panel: rgba(2, 12, 28, 0.84);
  --ref-line: rgba(21, 166, 255, 0.34);
  --ref-blue: #0a7cff;
  --ref-cyan: #1cecff;
  --ref-text: #f6fbff;
  --ref-muted: #a8b6c9;
  margin: 0;
  color: var(--ref-text);
  background:
    radial-gradient(circle at 80% 0%, rgba(10,124,255,0.26), transparent 32%),
    radial-gradient(circle at 16% 34%, rgba(28,236,255,0.12), transparent 30%),
    linear-gradient(180deg, #020713 0%, #031025 52%, #020713 100%);
  font-family: "Inter", "Space Grotesk", "Segoe UI", Arial, Helvetica, sans-serif;
}
.reference-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #020713;
}
.reference-hero img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.02);
}
.reference-hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.hotspot {
  position: absolute;
  display: block;
  overflow: hidden;
  color: transparent;
  border-radius: 999px;
}
.hotspot:focus-visible {
  outline: 2px solid var(--ref-cyan);
  outline-offset: 2px;
}
.hotspot.home { left: 31.7%; top: 3.2%; width: 4.3%; height: 4.2%; }
.hotspot.technology { left: 37.5%; top: 3.2%; width: 8.4%; height: 4.2%; }
.hotspot.manufacturing { left: 46%; top: 3.2%; width: 9.1%; height: 4.2%; }
.hotspot.products { left: 55.5%; top: 3.2%; width: 7.2%; height: 4.2%; }
.hotspot.investors { left: 64.6%; top: 3.2%; width: 6.8%; height: 4.2%; }
.hotspot.about { left: 72.4%; top: 3.2%; width: 7.3%; height: 4.2%; }
.hotspot.contact { left: 80.2%; top: 3.2%; width: 6.9%; height: 4.2%; }
.hotspot.getintouch { left: 86.3%; top: 2.65%; width: 10.8%; height: 5.2%; }
.hotspot.explore { left: 31.8%; top: 54.8%; width: 17.2%; height: 6.6%; }
.hotspot.vision { left: 51.2%; top: 54.8%; width: 16.2%; height: 6.6%; }
.reference-seo-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.reference-panel,
.reference-section {
  position: relative;
  padding: 82px clamp(22px, 5vw, 86px);
  background:
    linear-gradient(rgba(28,236,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,236,255,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3,16,37,0.94), rgba(2,7,19,0.98));
  background-size: 52px 52px, 52px 52px, auto;
}
.reference-panel::before,
.reference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(28,236,255,0.12), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(10,124,255,0.16), transparent 32%);
}
.who-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.62fr) minmax(520px, 1fr);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--ref-line);
}
.reference-panel > *,
.reference-section > * {
  position: relative;
  z-index: 1;
}
.ref-kicker {
  margin: 0 0 12px;
  color: var(--ref-cyan);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 850;
}
.reference-panel h2,
.reference-heading h2,
.reference-split h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(28,236,255,0.18);
}
.reference-panel p,
.reference-split p,
.ref-cta p {
  margin: 0;
  color: var(--ref-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}
.ref-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--ref-line);
  border-radius: 28px;
  background: rgba(2, 12, 28, 0.76);
  box-shadow: inset 0 0 42px rgba(10,124,255,0.1), 0 28px 70px rgba(0,0,0,0.3);
  overflow: hidden;
}
.ref-feature-grid article {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 26px 22px;
  border-right: 1px solid rgba(28,236,255,0.22);
  text-align: center;
}
.ref-feature-grid article:last-child {
  border-right: 0;
}
.ref-feature-grid span,
.ref-card-grid span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(28,236,255,0.52);
  border-radius: 999px;
  color: var(--ref-cyan);
  background: rgba(10,124,255,0.12);
  box-shadow: 0 0 34px rgba(28,236,255,0.22);
  font-size: 13px;
  font-weight: 950;
}
.ref-feature-grid strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}
.ref-feature-grid p {
  font-size: 13px;
  line-height: 1.45;
}
.reference-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}
.ref-card-grid {
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.ref-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.ref-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.ref-card-grid article {
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--ref-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(28,236,255,0.13), transparent 40%),
    linear-gradient(145deg, rgba(3,16,37,0.92), rgba(2,12,28,0.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 22px 60px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ref-card-grid article:hover,
.ref-feature-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(28,236,255,0.62);
  box-shadow: 0 0 42px rgba(28,236,255,0.14), 0 28px 70px rgba(0,0,0,0.35);
}
.ref-card-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
}
.ref-card-grid p {
  margin: 0;
  color: var(--ref-muted);
  font-size: 15px;
  font-weight: 650;
}
.reference-manufacturing {
  background:
    radial-gradient(circle at 82% 36%, rgba(10,124,255,0.18), transparent 30%),
    linear-gradient(180deg, #031025, #020713);
}
.reference-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--ref-line);
  border-radius: 30px;
  background: rgba(2, 12, 28, 0.75);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
}
.ref-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 24px;
  padding: 0 28px;
  border: 1px solid rgba(28,236,255,0.48);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0755ff, #0a7cff 58%, #12e6ff);
  box-shadow: 0 0 30px rgba(10,124,255,0.34);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.ref-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(28,236,255,0.35), 0 26px 58px rgba(0,0,0,0.28);
}
.ref-visual-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}
.ref-visual-stack img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(28,236,255,0.26);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(0,0,0,0.34);
  filter: saturate(1.16) contrast(1.06);
}
.ref-visual-stack img:last-child {
  height: 300px;
  align-self: end;
}
.ref-cta {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 26px;
  border: 1px solid var(--ref-line);
  border-radius: 24px;
  background: rgba(2, 12, 28, 0.76);
  text-align: center;
  box-shadow: 0 22px 60px rgba(0,0,0,0.25);
}
.reference-footer {
  display: grid;
  gap: 24px;
  padding: 46px clamp(22px, 5vw, 86px) 24px;
  border-top: 1px solid var(--ref-line);
  color: #fff;
  background:
    radial-gradient(circle at 78% 0%, rgba(10,124,255,0.18), transparent 36%),
    linear-gradient(135deg, #020713, #031025);
}
.reference-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
}
.reference-footer strong {
  font-size: 20px;
  letter-spacing: 1px;
}
.reference-footer span,
.reference-footer a,
.reference-footer p {
  color: var(--ref-muted);
  font-size: 13px;
  font-weight: 700;
}
.reference-footer p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(28,236,255,0.16);
}
@media (max-width: 1060px) {
  .reference-hero {
    min-height: auto;
  }
  .reference-hero img {
    min-height: 620px;
  }
  .who-panel,
  .reference-split {
    grid-template-columns: 1fr;
  }
  .ref-feature-grid,
  .ref-card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .reference-hero img {
    min-height: 640px;
    object-position: 49% top;
  }
  .hotspot {
    display: none;
  }
  .reference-panel,
  .reference-section {
    padding: 54px 18px;
  }
  .ref-feature-grid,
  .ref-card-grid.three,
  .ref-card-grid.four,
  .ref-visual-stack {
    grid-template-columns: 1fr;
  }
  .ref-feature-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(28,236,255,0.22);
  }
  .ref-feature-grid article:last-child {
    border-bottom: 0;
  }
  .reference-split {
    padding: 22px;
  }
  .ref-visual-stack img,
  .ref-visual-stack img:last-child {
    height: 220px;
  }
}

/* Real coded hero matching the supplied INFRACELL artwork direction */
.coded-reference-site {
  background:
    radial-gradient(circle at 82% 4%, rgba(10,124,255,0.22), transparent 30%),
    linear-gradient(180deg, #030814 0%, #050b18 52%, #020713 100%);
}
.coded-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 88px;
  padding: 12px clamp(20px, 4vw, 74px);
  border: 1px solid rgba(18,230,255,0.28);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: rgba(3, 8, 20, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.38), inset 0 -1px 0 rgba(18,230,255,0.18);
}
.coded-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 310px;
}
.coded-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,230,255,0.5);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18,230,255,0.28), rgba(10,124,255,0.78)),
    #071a33;
  box-shadow: 0 0 30px rgba(18,230,255,0.28);
  font-size: 28px;
  font-weight: 950;
}
.coded-brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.05;
  text-transform: uppercase;
}
.coded-brand em {
  display: block;
  margin-top: 5px;
  color: #c9d5e8;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
}
.coded-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}
.coded-nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.coded-nav a:hover,
.coded-nav a.active {
  color: #12e6ff;
  border-color: #12e6ff;
}
.coded-touch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(18,230,255,0.44);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0755ff, #0a7cff 58%, #12e6ff);
  box-shadow: 0 0 30px rgba(10,124,255,0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.coded-menu-toggle {
  display: none;
}
.coded-hero {
  position: relative;
  min-height: calc(100vh - 24px);
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(440px, 1fr);
  gap: 32px;
  align-items: center;
  padding: 82px clamp(22px, 5vw, 86px) 96px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 32%, rgba(10,124,255,0.26), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(18,230,255,0.08), transparent 34%),
    linear-gradient(90deg, rgba(3,8,20,0.94), rgba(5,11,24,0.72) 45%, rgba(3,8,20,0.94));
}
.coded-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(rgba(18,230,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,230,255,0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
  animation: darkGridDrift 20s linear infinite;
}
.coded-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 24% 22%, rgba(18,230,255,0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 63%, rgba(10,124,255,0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 26%, rgba(255,255,255,0.52) 0 1px, transparent 2px);
  background-size: 240px 180px, 320px 220px, 190px 160px;
  animation: particleFloat 12s ease-in-out infinite alternate;
}
.coded-robot {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3,8,20,0.15), rgba(3,8,20,0.88));
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.15);
}
.coded-light-trails {
  position: absolute;
  inset: auto -8% 10% 20%;
  height: 260px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 68% 54%, rgba(18,230,255,0.52), transparent 18%),
    repeating-linear-gradient(165deg, transparent 0 18px, rgba(18,230,255,0.32) 19px, transparent 21px),
    linear-gradient(110deg, transparent 0 20%, rgba(10,124,255,0.52) 46%, rgba(18,230,255,0.62) 52%, transparent 82%);
  filter: blur(0.4px);
  opacity: 0.76;
  transform: skewY(-5deg);
  animation: lightTrailMove 5s ease-in-out infinite alternate;
}
.coded-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.coded-eyebrow {
  margin: 0 0 16px;
  color: #eaf4ff;
  font-size: clamp(17px, 1.6vw, 28px);
  letter-spacing: 10px;
  font-weight: 850;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(18,230,255,0.3);
}
.coded-hero h1 {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
  font-weight: 760;
}
.coded-infracell-logo {
  display: grid;
  gap: 3px;
  justify-items: center;
  margin: 0 auto 26px;
}
.coded-infracell-logo span {
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #dbe6f7 42%, #7f8ea4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(58px, 8vw, 136px);
  line-height: 0.84;
  letter-spacing: 10px;
  font-weight: 950;
  text-shadow: 0 18px 36px rgba(0,0,0,0.5);
}
.coded-infracell-logo strong {
  color: #12e6ff;
  font-size: clamp(24px, 3vw, 48px);
  letter-spacing: 24px;
  text-shadow: 0 0 26px rgba(18,230,255,0.55);
}
.coded-hero h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 26px);
  letter-spacing: 7px;
  text-transform: uppercase;
}
.coded-hero-copy > p:not(.coded-eyebrow) {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #aab6c8;
  font-size: 17px;
  line-height: 1.7;
}
.coded-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.ref-button.secondary {
  background: rgba(5,15,30,0.7);
}
.coded-proof-line {
  display: flex;
  justify-content: center;
  gap: 14px 30px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.coded-proof-line span {
  position: relative;
  color: #cbd7e8;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.coded-proof-line span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #12e6ff;
  box-shadow: 0 0 12px rgba(18,230,255,0.8);
}
.coded-hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.coded-globe {
  position: absolute;
  right: -5%;
  top: 0;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(18,230,255,0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 53% 42%, rgba(255,255,255,0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 38%, rgba(18,230,255,0.34), transparent 8%),
    radial-gradient(circle at 50% 50%, rgba(10,124,255,0.16), rgba(10,124,255,0.06) 48%, transparent 62%),
    repeating-conic-gradient(from 0deg, rgba(18,230,255,0.28) 0 1deg, transparent 1deg 14deg);
  box-shadow: inset 0 0 70px rgba(10,124,255,0.28), 0 0 70px rgba(10,124,255,0.32);
  animation: orbitPulse 6s ease-in-out infinite alternate;
}
.coded-globe::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px solid rgba(18,230,255,0.22);
  background:
    linear-gradient(70deg, transparent 44%, rgba(18,230,255,0.32) 45% 46%, transparent 47%),
    linear-gradient(115deg, transparent 42%, rgba(10,124,255,0.35) 43% 44%, transparent 45%);
}
.coded-globe span {
  position: absolute;
  top: 39%;
  left: 52%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.coded-battery {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  margin: 130px 0 0;
  padding: 26px;
}
.coded-battery::before {
  content: "";
  position: absolute;
  inset: 16% 4% 0;
  z-index: -1;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(18,230,255,0.45), transparent 58%);
  filter: blur(24px);
}
.coded-battery img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,0.58)) saturate(1.2);
}
.coded-battery figcaption {
  position: absolute;
  right: 12%;
  bottom: 28%;
  display: grid;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(18,230,255,0.6);
}
.coded-battery figcaption span {
  font-size: 18px;
  font-weight: 950;
}
.coded-battery figcaption strong {
  color: #12e6ff;
  font-size: 10px;
  letter-spacing: 5px;
}
@keyframes lightTrailMove {
  from { transform: translateX(-16px) skewY(-5deg); opacity: 0.6; }
  to { transform: translateX(22px) skewY(-5deg); opacity: 0.9; }
}
@media (max-width: 1120px) {
  .coded-topbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .coded-menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    min-width: 54px;
    height: 38px;
    border: 1px solid rgba(18,230,255,0.28);
    border-radius: 8px;
    color: #fff;
    background: rgba(5,15,30,0.72);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .coded-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(18,230,255,0.18);
  }
  .coded-nav.open {
    display: flex;
  }
  .coded-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(18,230,255,0.12);
  }
  .coded-touch {
    display: none;
  }
  .coded-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .coded-topbar {
    border-radius: 0 0 22px 22px;
    padding: 10px 18px;
  }
  .coded-brand {
    min-width: 0;
  }
  .coded-mark {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .coded-brand strong {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  .coded-brand em {
    max-width: 180px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .coded-hero {
    min-height: auto;
    padding: 48px 18px 68px;
  }
  .coded-eyebrow {
    letter-spacing: 4px;
  }
  .coded-infracell-logo span {
    font-size: 43px;
    letter-spacing: 4px;
  }
  .coded-infracell-logo strong {
    font-size: 23px;
    letter-spacing: 12px;
  }
  .coded-hero h2 {
    letter-spacing: 3px;
  }
  .coded-proof-line span:not(:last-child)::after {
    display: none;
  }
  .coded-hero-visual {
    min-height: 360px;
  }
  .coded-globe {
    right: -38%;
    width: 280px;
  }
  .coded-battery {
    margin-top: 40px;
    padding: 8px;
  }
  .coded-light-trails {
    inset: auto -35% 12% -10%;
  }
}

/* Cinematic INFRACELL homepage rebuild */
.cinematic-home {
  --cine-bg: #030814;
  --cine-navy: #071a33;
  --cine-blue: #0a7cff;
  --cine-cyan: #12e6ff;
  --cine-muted: #aab6c8;
  --cine-panel: rgba(5, 15, 30, 0.82);
  color: #fff;
  background:
    radial-gradient(circle at 74% 8%, rgba(10,124,255,0.2), transparent 34%),
    radial-gradient(circle at 18% 38%, rgba(18,230,255,0.09), transparent 34%),
    linear-gradient(180deg, #030814 0%, #050b18 48%, #020713 100%);
  font-family: "Inter", "Space Grotesk", "Segoe UI", Arial, Helvetica, sans-serif;
}
.cinematic-nav {
  position: fixed;
  top: 0;
  left: clamp(10px, 2vw, 22px);
  right: clamp(10px, 2vw, 22px);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  min-height: 86px;
  padding: 12px clamp(18px, 3vw, 42px);
  border: 1px solid rgba(18,230,255,0.24);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(180deg, rgba(3,8,20,0.88), rgba(3,8,20,0.72));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.42), inset 0 -1px 0 rgba(18,230,255,0.18);
}
.cinematic-parent-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}
.cinematic-emblem {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,230,255,0.52);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18,230,255,0.22), rgba(10,124,255,0.82));
  box-shadow: 0 0 32px rgba(18,230,255,0.3);
  font-size: 27px;
  font-weight: 950;
}
.cinematic-parent-brand strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cinematic-parent-brand em {
  display: block;
  margin-top: 6px;
  color: #c7d4e8;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 2px;
}
.cinematic-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}
.cinematic-links a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.cinematic-links a:hover,
.cinematic-links a.active {
  color: var(--cine-cyan);
  border-color: var(--cine-cyan);
}
.cinematic-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid rgba(18,230,255,0.44);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0755ff, #0a7cff 60%, #12e6ff);
  box-shadow: 0 0 34px rgba(10,124,255,0.34);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.cinematic-menu-toggle { display: none; }
.cinematic-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(520px, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 26px;
  padding: 124px clamp(22px, 5vw, 86px) 108px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 75% 38%, rgba(10,124,255,0.32), transparent 32%),
    radial-gradient(circle at 44% 64%, rgba(18,230,255,0.09), transparent 32%),
    linear-gradient(90deg, rgba(3,8,20,0.98), rgba(5,11,24,0.72) 50%, rgba(3,8,20,0.96));
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -6;
  background:
    linear-gradient(rgba(18,230,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,230,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.48;
  animation: darkGridDrift 22s linear infinite;
}
.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.58) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 52%, rgba(18,230,255,0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 22%, rgba(10,124,255,0.72) 0 1px, transparent 2px);
  background-size: 260px 180px, 340px 230px, 210px 160px;
  animation: particleFloat 13s ease-in-out infinite alternate;
}
.energy-streams {
  position: absolute;
  inset: auto -10% 9% 19%;
  z-index: -1;
  height: 310px;
  background:
    radial-gradient(ellipse at 68% 54%, rgba(18,230,255,0.56), transparent 18%),
    repeating-linear-gradient(164deg, transparent 0 18px, rgba(18,230,255,0.26) 19px, transparent 21px),
    linear-gradient(108deg, transparent 0 18%, rgba(10,124,255,0.48) 44%, rgba(18,230,255,0.72) 52%, transparent 84%);
  filter: blur(0.3px);
  opacity: 0.78;
  transform: skewY(-5deg);
  animation: lightTrailMove 5.5s ease-in-out infinite alternate;
}
.hero-machine {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.machine-bg {
  position: absolute;
  inset: 5% -8% auto auto;
  width: min(54vw, 760px);
  height: 460px;
  object-fit: cover;
  border: 1px solid rgba(18,230,255,0.24);
  border-radius: 34px;
  opacity: 0.55;
  filter: saturate(1.18) contrast(1.12);
  box-shadow: 0 36px 90px rgba(0,0,0,0.42), 0 0 70px rgba(10,124,255,0.24);
}
.hero-cell {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: min(30vw, 430px);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.58), 0 0 70px rgba(18,230,255,0.26);
  filter: saturate(1.25) contrast(1.08);
}
.hero-machine::before {
  content: "";
  position: absolute;
  right: -4%;
  top: 5%;
  width: min(40vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(18,230,255,0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(10,124,255,0.16), transparent 48%),
    conic-gradient(from 12deg, transparent, rgba(18,230,255,0.34), transparent 24%, rgba(10,124,255,0.28), transparent 58%);
  box-shadow: inset 0 0 80px rgba(10,124,255,0.16), 0 0 90px rgba(10,124,255,0.18);
}
.hero-brand-stage {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1;
  max-width: 920px;
  text-align: center;
}
.stage-parent {
  margin: 0 0 14px;
  color: #edf6ff;
  font-size: clamp(17px, 1.6vw, 30px);
  letter-spacing: 12px;
  font-weight: 850;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(18,230,255,0.32);
}
.cinematic-hero h1 {
  max-width: 860px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 720;
}
.metal-wordmark {
  display: grid;
  justify-items: center;
  margin: 0 auto 26px;
}
.word-main {
  position: relative;
  color: transparent;
  background:
    linear-gradient(180deg, #ffffff 0%, #e8eef8 35%, #9eaabd 55%, #ffffff 76%, #6d788c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.82;
  letter-spacing: 8px;
  font-weight: 950;
  filter: drop-shadow(0 20px 26px rgba(0,0,0,0.58));
}
.word-main::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18,230,255,0.9), transparent);
  box-shadow: 0 0 16px rgba(18,230,255,0.75);
}
.word-energy {
  margin-top: 16px;
  color: var(--cine-cyan);
  font-size: clamp(24px, 3vw, 50px);
  letter-spacing: 22px;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(18,230,255,0.72);
}
.stage-tagline {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 27px);
  letter-spacing: 8px;
  text-transform: uppercase;
  font-weight: 800;
}
.stage-copy {
  max-width: 690px;
  margin: 0 auto 24px;
  color: var(--cine-muted);
  font-size: 17px;
  line-height: 1.7;
}
.stage-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.stage-actions a,
.poster-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid rgba(18,230,255,0.46);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0755ff, #0a7cff 58%, #12e6ff);
  box-shadow: 0 0 34px rgba(10,124,255,0.34);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.stage-actions a:last-child {
  background: rgba(5,15,30,0.72);
}
.stage-actions a:hover,
.poster-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(18,230,255,0.34), 0 28px 66px rgba(0,0,0,0.34);
}
.hero-bottom-console {
  position: absolute;
  left: clamp(22px, 5vw, 86px);
  right: clamp(22px, 5vw, 86px);
  bottom: 28px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(18,230,255,0.28);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(5,15,30,0.72), rgba(3,8,20,0.54));
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: inset 0 0 42px rgba(10,124,255,0.1), 0 26px 70px rgba(0,0,0,0.32);
}
.hero-bottom-console article {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(18,230,255,0.18);
}
.hero-bottom-console article:last-child { border-right: 0; }
.hero-bottom-console span {
  color: var(--cine-cyan);
  font-size: 11px;
  font-weight: 950;
}
.hero-bottom-console strong {
  color: #fff;
  font-size: 15px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.poster-section {
  position: relative;
  padding: 92px clamp(22px, 5vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(rgba(18,230,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,230,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3,16,37,0.96), rgba(2,7,19,0.98));
  background-size: 56px 56px, 56px 56px, auto;
}
.poster-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(18,230,255,0.13), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(10,124,255,0.17), transparent 34%);
}
.poster-section > * {
  position: relative;
  z-index: 1;
}
.who-we-are {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(560px, 1fr);
  gap: 44px;
  align-items: center;
}
.poster-copy,
.poster-heading {
  max-width: 940px;
}
.poster-heading {
  margin: 0 auto 38px;
  text-align: center;
}
.poster-kicker {
  margin: 0 0 12px;
  color: var(--cine-cyan);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 900;
}
.poster-copy h2,
.poster-heading h2,
.manufacturing-cinema h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.04;
  text-shadow: 0 0 28px rgba(18,230,255,0.16);
}
.poster-copy p,
.manufacturing-cinema p,
.poster-cta p {
  margin: 0;
  color: var(--cine-muted);
  font-size: 16px;
  line-height: 1.75;
}
.poster-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(18,230,255,0.3);
  border-radius: 30px;
  background: var(--cine-panel);
  box-shadow: inset 0 0 44px rgba(10,124,255,0.1), 0 28px 74px rgba(0,0,0,0.32);
  overflow: hidden;
}
.poster-glass-grid article {
  min-height: 220px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 26px 22px;
  border-right: 1px solid rgba(18,230,255,0.2);
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.poster-glass-grid article:hover,
.chemistry-poster-grid article:hover,
.investor-poster-grid article:hover {
  transform: translateY(-5px);
  background-color: rgba(10,124,255,0.1);
}
.poster-glass-grid article:last-child { border-right: 0; }
.poster-glass-grid span,
.chemistry-poster-grid span {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,230,255,0.52);
  border-radius: 999px;
  color: var(--cine-cyan);
  background: rgba(10,124,255,0.12);
  box-shadow: 0 0 34px rgba(18,230,255,0.22);
  font-size: 13px;
  font-weight: 950;
}
.poster-glass-grid strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}
.poster-glass-grid p {
  color: var(--cine-muted);
  font-size: 13px;
  line-height: 1.5;
}
.chemistry-poster-grid,
.investor-poster-grid {
  display: grid;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.chemistry-poster-grid { grid-template-columns: repeat(3, 1fr); }
.investor-poster-grid { grid-template-columns: repeat(4, 1fr); }
.chemistry-poster-grid article,
.investor-poster-grid article {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(18,230,255,0.3);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(18,230,255,0.14), transparent 42%),
    linear-gradient(145deg, rgba(5,15,30,0.9), rgba(7,26,51,0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 64px rgba(0,0,0,0.3);
  color: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.chemistry-poster-grid h3,
.investor-poster-grid article {
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
}
.chemistry-poster-grid p {
  color: var(--cine-muted);
  font-size: 15px;
  font-weight: 650;
}
.manufacturing-cinema {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(18,230,255,0.3);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 46%, rgba(10,124,255,0.22), transparent 42%),
    linear-gradient(135deg, rgba(5,15,30,0.9), rgba(7,26,51,0.72));
  box-shadow: 0 32px 86px rgba(0,0,0,0.36);
}
.manufacturing-cinema figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18,230,255,0.26);
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.36), 0 0 55px rgba(10,124,255,0.18);
}
.manufacturing-cinema img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.06);
}
.poster-cta {
  max-width: 860px;
  margin: 30px auto 0;
  padding: 28px;
  border: 1px solid rgba(18,230,255,0.3);
  border-radius: 26px;
  background: var(--cine-panel);
  text-align: center;
  box-shadow: 0 24px 68px rgba(0,0,0,0.28);
}
.poster-cta p {
  margin: 0 auto 18px;
}
.cinematic-footer {
  display: grid;
  gap: 24px;
  padding: 48px clamp(22px, 5vw, 86px) 24px;
  border-top: 1px solid rgba(18,230,255,0.22);
  background:
    radial-gradient(circle at 78% 0%, rgba(10,124,255,0.18), transparent 36%),
    linear-gradient(135deg, #020713, #031025);
}
.cinematic-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
}
.cinematic-footer strong {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}
.cinematic-footer span,
.cinematic-footer a,
.cinematic-footer p {
  color: var(--cine-muted);
  font-size: 13px;
  font-weight: 700;
}
.cinematic-footer p {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(18,230,255,0.16);
}
@media (max-width: 1120px) {
  .cinematic-nav {
    flex-wrap: wrap;
  }
  .cinematic-menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
    min-width: 54px;
    height: 38px;
    border: 1px solid rgba(18,230,255,0.28);
    border-radius: 8px;
    color: #fff;
    background: rgba(5,15,30,0.72);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
  }
  .cinematic-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(18,230,255,0.18);
  }
  .cinematic-links.open { display: flex; }
  .cinematic-links a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(18,230,255,0.12);
  }
  .cinematic-cta { display: none; }
  .cinematic-hero,
  .who-we-are,
  .manufacturing-cinema {
    grid-template-columns: 1fr;
  }
  .hero-brand-stage,
  .hero-machine {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-machine {
    order: 2;
  }
  .poster-glass-grid,
  .investor-poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .cinematic-nav {
    left: 8px;
    right: 8px;
    min-height: 70px;
    padding: 10px 14px;
    border-radius: 0 0 22px 22px;
  }
  .cinematic-parent-brand {
    min-width: 0;
  }
  .cinematic-emblem {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .cinematic-parent-brand strong {
    font-size: 13px;
    letter-spacing: 0.3px;
  }
  .cinematic-parent-brand em {
    max-width: 180px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .cinematic-hero {
    min-height: auto;
    padding: 110px 18px 38px;
  }
  .stage-parent {
    letter-spacing: 4px;
  }
  .word-main {
    font-size: 43px;
    letter-spacing: 4px;
  }
  .word-energy {
    font-size: 23px;
    letter-spacing: 12px;
  }
  .stage-tagline {
    letter-spacing: 3px;
  }
  .hero-machine {
    min-height: 360px;
  }
  .machine-bg {
    inset: 7% -24% auto -18%;
    width: 132%;
    height: 250px;
  }
  .hero-cell {
    right: 2%;
    bottom: 18%;
    width: 72%;
  }
  .hero-machine::before {
    right: -48%;
    width: 310px;
  }
  .hero-bottom-console {
    position: static;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
  }
  .hero-bottom-console article {
    min-height: 78px;
  }
  .poster-section {
    padding: 54px 18px;
  }
  .poster-glass-grid,
  .chemistry-poster-grid,
  .investor-poster-grid {
    grid-template-columns: 1fr;
  }
  .poster-glass-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(18,230,255,0.2);
  }
  .poster-glass-grid article:last-child {
    border-bottom: 0;
  }
  .manufacturing-cinema {
    padding: 22px;
  }
  .manufacturing-cinema img {
    height: 240px;
  }
}

@media (max-width: 1060px) {
  .investor-hero-upgrade {
    min-height: auto;
  }
  .funding-snapshot-grid,
  .market-card-grid,
  .document-card-grid,
  .execution-visual-grid,
  .enterprise-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-premium-layout,
  .secure-data-room-card {
    grid-template-columns: 1fr;
  }
  .enterprise-timeline::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .investor-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .investor-hero-upgrade h1 {
    font-size: 32px;
  }
  .investor-hero-upgrade p:not(.kicker) {
    font-size: 14px;
  }
  .funding-snapshot-grid,
  .market-card-grid,
  .document-card-grid,
  .execution-visual-grid,
  .enterprise-timeline,
  .founder-credential-grid {
    grid-template-columns: 1fr;
  }
  .market-bottom-statement,
  .secure-data-room-card {
    padding: 22px 18px;
  }
  .execution-visual-grid div {
    height: 150px;
  }
  .enterprise-timeline article {
    min-height: 120px;
  }
}
/* Combined final: Version 15 hero + Version 14 investor sections */
.investor-content-home .cinematic-emblem {
  display: none;
}
.investor-content-home .investor-section,
.investor-content-home .investor-disclaimer,
.investor-content-home .cta-band,
.investor-content-home .footer {
  background-color: #fff;
  color: #475569;
}
.investor-content-home .investor-section.alt {
  background-color: #f5f7fb;
}
.investor-content-home .section-head h2,
.investor-content-home .text-block h2,
.investor-content-home .funding-ask-card h2,
.investor-content-home .cta-band h2 {
  color: #0b1220;
}
.investor-content-home .section-head p,
.investor-content-home .text-block p,
.investor-content-home .funding-ask-card p,
.investor-content-home .cta-band p {
  color: #475569;
}
.investor-content-home .enterprise-metric-grid article,
.investor-content-home .funding-snapshot-grid article,
.investor-content-home .market-card-grid article,
.investor-content-home .institutional-card-grid article,
.investor-content-home .document-card-grid a,
.investor-content-home .segment-grid article,
.investor-content-home .execution-visual-grid article,
.investor-content-home .enterprise-timeline article,
.investor-content-home .data-room-list span {
  border: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 44px rgba(15,23,42,0.07);
}
/* Clean final hero: no image patchwork */
.investor-content-home .cinematic-hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 128px clamp(22px, 6vw, 96px) 88px;
  background:
    radial-gradient(circle at 50% 40%, rgba(18,230,255,0.12), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(10,124,255,0.22), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(10,124,255,0.18), transparent 34%),
    linear-gradient(135deg, #030814 0%, #071a33 48%, #020612 100%);
}
.investor-content-home .cinematic-hero::before {
  background:
    linear-gradient(rgba(18,230,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,230,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.7;
}
.investor-content-home .cinematic-hero::after {
  background:
    linear-gradient(180deg, rgba(3,8,20,0) 72%, #020612 100%),
    radial-gradient(ellipse at center, transparent 34%, rgba(0,0,0,0.42) 100%);
}
.investor-content-home .hero-machine,
.investor-content-home .machine-bg,
.investor-content-home .hero-cell {
  display: none !important;
}
.investor-content-home .energy-streams {
  inset: 20% 0 auto;
  height: 58%;
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent, rgba(18,230,255,0.38), transparent),
    linear-gradient(165deg, transparent 0 41%, rgba(18,230,255,0.64) 41.2% 41.5%, transparent 41.8%),
    linear-gradient(18deg, transparent 0 56%, rgba(10,124,255,0.48) 56.2% 56.5%, transparent 56.8%);
  filter: drop-shadow(0 0 18px rgba(18,230,255,0.5));
}
.investor-content-home .hero-brand-stage {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.investor-content-home .stage-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
/* Final homepage polish: light header, clean hero, premium investor sections */
.investor-content-home .cinematic-nav {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
  min-height: 78px;
  padding: 14px clamp(22px, 4vw, 70px);
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  backdrop-filter: blur(16px);
}
.investor-content-home .cinematic-parent-brand {
  min-width: 250px;
  color: #0b1220;
}
.investor-content-home .cinematic-parent-brand strong {
  color: #0b1220;
  font-size: 18px;
  letter-spacing: 1.1px;
}
.investor-content-home .cinematic-parent-brand em {
  color: #64748b;
  font-size: 11px;
  letter-spacing: 2.2px;
}
.investor-content-home .cinematic-links {
  gap: clamp(16px, 1.8vw, 30px);
}
.investor-content-home .cinematic-links a {
  color: #334155;
  border-color: transparent;
  font-size: 12px;
}
.investor-content-home .cinematic-links a:hover,
.investor-content-home .cinematic-links a.active {
  color: #0a7cff;
  border-color: #0a7cff;
}
.investor-content-home .cinematic-cta {
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  background: #0a7cff;
  border: 1px solid #0a7cff;
  box-shadow: 0 10px 22px rgba(10,124,255,0.22);
}
.investor-content-home .cinematic-menu-toggle {
  color: #0b1220;
  border-color: #cbd5e1;
  background: #fff;
}
.investor-content-home .cinematic-hero {
  min-height: 760px;
  padding: 150px clamp(22px, 6vw, 96px) 110px;
}
.investor-content-home .hero-brand-stage {
  transform: none;
}
.investor-content-home .stage-parent {
  margin-bottom: 12px;
  font-size: clamp(18px, 1.8vw, 32px);
}
.investor-content-home .cinematic-hero h1 {
  margin-bottom: 28px;
  font-size: clamp(25px, 2.5vw, 42px);
  line-height: 1.16;
}
.investor-content-home .word-main {
  font-size: clamp(58px, 8.4vw, 132px);
  line-height: 0.88;
  letter-spacing: clamp(4px, .85vw, 14px);
}
.investor-content-home .word-energy {
  font-size: clamp(24px, 2.9vw, 48px);
}
.investor-content-home .stage-tagline {
  margin-top: 6px;
}
.investor-content-home .stage-actions {
  margin-top: 30px;
}
.investor-content-home .investor-section {
  padding-top: 84px;
  padding-bottom: 84px;
}
.investor-content-home .section-head {
  margin-bottom: 34px;
}
.investor-content-home .section-head h2,
.investor-content-home .text-block h2,
.investor-content-home .funding-ask-card h2 {
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.investor-content-home .enterprise-metric-grid,
.investor-content-home .funding-snapshot-grid,
.investor-content-home .market-card-grid,
.investor-content-home .institutional-card-grid,
.investor-content-home .document-card-grid,
.investor-content-home .segment-grid,
.investor-content-home .funding-use-grid,
.investor-content-home .data-room-list {
  align-items: stretch;
}
.investor-content-home .enterprise-metric-grid article,
.investor-content-home .funding-snapshot-grid article,
.investor-content-home .market-card-grid article,
.investor-content-home .institutional-card-grid article,
.investor-content-home .document-card-grid a,
.investor-content-home .segment-grid article,
.investor-content-home .funding-use-grid span,
.investor-content-home .enterprise-timeline article,
.investor-content-home .data-room-list span {
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(15,23,42,0.07);
}
.investor-content-home .document-card-grid .doc-icon {
  background: #eff6ff;
  color: #0a7cff;
}
.investor-content-home .founder-premium-layout,
.investor-content-home .funding-ask-card,
.investor-content-home .secure-data-room-card {
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
}
.investor-content-home .investor-disclaimer {
  padding: 28px clamp(22px, 4vw, 70px);
}
.investor-content-home .cta-band {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.investor-content-home .footer {
  padding: 38px clamp(22px, 4vw, 70px) 24px;
  background: #0b1220;
}
.investor-content-home .footer-institutional {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  max-width: none;
  color: #fff;
}
.investor-content-home .footer-institutional strong {
  color: #fff;
  font-size: 17px;
}
.investor-content-home .footer-institutional span {
  color: #cbd5e1;
}
.investor-content-home .clean-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.investor-content-home .clean-footer-links a,
.investor-content-home .footer p {
  color: #cbd5e1;
}
@media (max-width: 1060px) {
  .investor-content-home .cinematic-nav {
    align-items: center;
  }
  .investor-content-home .cinematic-links {
    padding-top: 12px;
  }
  .investor-content-home .cinematic-links a {
    color: #334155;
    border-bottom-color: #e2e8f0;
  }
}
@media (max-width: 680px) {
  .investor-content-home .cinematic-hero {
    min-height: 650px;
    padding: 96px 18px 64px;
  }
  .investor-content-home .cinematic-nav {
    min-height: 70px;
    padding: 12px 16px;
  }
  .investor-content-home .word-main {
    font-size: clamp(42px, 14vw, 64px);
    letter-spacing: 2px;
  }
  .investor-content-home .word-energy {
    font-size: 22px;
    letter-spacing: 10px;
  }
  .investor-content-home .investor-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
.investor-content-home .clean-footer-links {
    display: grid;
    gap: 10px;
  }
}
/* Light premium home banner replacement */
.investor-content-home .home-light-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  min-height: 620px;
  padding: clamp(82px, 9vw, 126px) clamp(22px, 6vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(10,124,255,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 54%, #edf6ff 100%);
  border-bottom: 1px solid #e2e8f0;
}
.investor-content-home .home-light-hero::before {
  content: "";
  position: absolute;
  left: clamp(22px, 6vw, 92px);
  top: clamp(54px, 7vw, 86px);
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: #0a7cff;
  box-shadow: 0 0 22px rgba(10,124,255,0.18);
}
.investor-content-home .home-light-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.investor-content-home .home-light-kicker {
  margin: 0 0 18px;
  color: #0a7cff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.investor-content-home .home-light-copy h1 {
  margin: 0;
  color: #0b1220;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 850;
}
.investor-content-home .home-light-copy p:not(.home-light-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}
.investor-content-home .home-light-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.investor-content-home .home-light-actions .btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}
.investor-content-home .home-light-brand-card {
  position: relative;
  z-index: 1;
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(10,124,255,0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.86)),
    radial-gradient(circle at 50% 0%, rgba(10,124,255,0.12), transparent 42%);
  box-shadow: 0 28px 70px rgba(15,23,42,0.12);
}
.investor-content-home .home-light-brand-card::before {
  content: "";
  width: 100%;
  max-width: 260px;
  height: 2px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, #0a7cff, transparent);
}
.investor-content-home .home-light-brand-card span {
  color: #0b1220;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0.08em;
}
.investor-content-home .home-light-brand-card strong {
  display: block;
  margin-top: 12px;
  color: #0a7cff;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}
.investor-content-home .home-light-brand-card em {
  margin-top: 26px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 980px) {
  .investor-content-home .home-light-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .investor-content-home .home-light-brand-card {
    max-width: 520px;
    min-height: 260px;
  }
}
@media (max-width: 640px) {
  .investor-content-home .home-light-hero {
    padding: 76px 18px 56px;
  }
  .investor-content-home .home-light-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .investor-content-home .home-light-actions .btn {
    width: 100%;
  }
  .investor-content-home .home-light-brand-card span {
    font-size: 32px;
  }
}
/* Full home page top navigation */
.investor-content-home .home-full-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(190px, auto) minmax(460px, 1.15fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 14px clamp(22px, 4vw, 70px);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(15,23,42,0.07);
  backdrop-filter: blur(16px);
}
.investor-content-home .home-company-brand {
  color: #0b1220;
}
.investor-content-home .home-company-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1.1px;
  font-weight: 900;
}
.investor-content-home .home-company-brand span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.investor-content-home .home-infracell-brand {
  justify-self: center;
  color: #0b1220;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1;
  letter-spacing: 3px;
  font-weight: 950;
}
.investor-content-home .home-infracell-brand span {
  display: block;
  margin-top: 5px;
  color: #0a7cff;
  font-size: 0.52em;
  letter-spacing: 5px;
  text-align: center;
}
.investor-content-home .home-full-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
}
.investor-content-home .home-full-nav a {
  position: relative;
  padding: 10px 0;
  color: #334155;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
.investor-content-home .home-full-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: #0a7cff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.investor-content-home .home-full-nav a:hover,
.investor-content-home .home-full-nav a.active {
  color: #0a7cff;
}
.investor-content-home .home-full-nav a:hover::after,
.investor-content-home .home-full-nav a.active::after {
  transform: scaleX(1);
}
.investor-content-home .home-menu-toggle {
  display: none;
}
@media (max-width: 1120px) {
  .investor-content-home .home-full-header {
    grid-template-columns: 1fr auto;
  }
  .investor-content-home .home-infracell-brand {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .investor-content-home .home-menu-toggle {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #0b1220;
    font-weight: 850;
  }
  .investor-content-home .home-full-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }
  .investor-content-home .home-full-nav.open {
    display: flex;
  }
  .investor-content-home .home-full-nav a {
    border-bottom: 1px solid #e2e8f0;
  }
}
@media (max-width: 640px) {
  .investor-content-home .home-full-header {
    min-height: 74px;
    padding: 12px 16px;
  }
  .investor-content-home .home-company-brand strong {
    font-size: 13px;
    letter-spacing: 0.6px;
  }
  .investor-content-home .home-company-brand span {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .investor-content-home .home-infracell-brand {
    font-size: 17px;
  }
}

/* Final readability and contrast pass */
body.reveal-ready .reveal-in,
body.reveal-ready .reveal-in.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
body,
.page-hero,
.dark-page-hero,
.section,
.dark-section,
.investor-section,
.reference-home-hero {
  color: #071426;
}
.page-hero h1,
.dark-page-hero h1,
.section-head h2,
.text-block h2,
.card h3,
.institutional-card-grid h3,
.market-card-grid strong,
.segment-grid strong,
.funding-snapshot-grid strong,
.roadmap-number-grid strong,
.enterprise-metric-grid strong,
.reference-home-hero h1 {
  color: #071426 !important;
}
.page-hero p,
.dark-page-hero p,
.section-head p,
.text-block p,
.card p,
.institutional-card-grid p,
.market-bottom-statement,
.segment-grid span,
.funding-snapshot-grid span,
.roadmap-number-grid span,
.enterprise-metric-grid span,
.reference-home-hero p,
.home-hero-proof-strip span {
  color: #233142 !important;
}
.kicker,
.dark-kicker,
.home-light-kicker {
  color: #334155 !important;
}
.card,
.institutional-card-grid article,
.market-card-grid article,
.segment-grid article,
.funding-snapshot-grid article,
.roadmap-number-grid article,
.enterprise-metric-grid article,
.document-card-grid a,
.tech-intro-card,
.contact-card,
.contact-form,
.founder-investor-card,
.home-hero-proof-strip {
  background-color: rgba(255,255,255,0.96) !important;
}
.reference-home-hero {
  background:
    radial-gradient(circle at 86% 42%, rgba(10,143,42,0.08), transparent 30%),
    linear-gradient(100deg, #ffffff 0%, #f8fbff 55%, #f2faf4 100%) !important;
}
.footer,
.dark-footer,
.cta-band,
.strategic-vision-section,
.funding-ask-card,
.secure-data-room-card {
  color: #ffffff;
}
.footer p,
.footer a,
.footer strong,
.footer span,
.dark-footer p,
.dark-footer a,
.cta-band p,
.cta-band h2,
.secure-data-room-card h2,
.secure-data-room-card p,
.funding-ask-card h2,
.funding-ask-card p {
  color: #ffffff !important;
}
.cta-band .btn,
.secure-data-room-card .btn {
  color: #071426 !important;
  background: #ffffff;
}
/* Final anti-overlap polish across pages */
.investor-content-home .home-full-header {
  grid-template-columns: minmax(260px, 1fr) minmax(220px, auto);
  grid-template-areas:
    "company infracell"
    "nav nav";
  row-gap: 12px;
  min-height: 116px;
  align-items: center;
}
.investor-content-home .home-company-brand {
  grid-area: company;
  min-width: 0;
}
.investor-content-home .home-infracell-brand {
  grid-area: infracell;
  justify-self: end;
  white-space: nowrap;
}
.investor-content-home .home-full-nav {
  grid-area: nav;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  min-width: 0;
  padding-top: 2px;
}
.investor-content-home .home-full-nav a {
  white-space: nowrap;
}
.investor-content-home .home-light-hero {
  min-height: 650px;
  padding-top: clamp(76px, 8vw, 112px);
}
.investor-content-home .home-light-copy h1 {
  max-width: 850px;
  text-wrap: balance;
}
.investor-content-home .home-light-brand-card span,
.investor-content-home .home-light-brand-card strong {
  overflow-wrap: anywhere;
}
.site-header {
  gap: 20px;
}
.site-header .brand {
  min-width: 230px;
  flex: 0 1 300px;
}
.site-header .nav-links {
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}
.site-header .nav-links a {
  white-space: nowrap;
}
.page-hero h1,
.section-head h2,
.text-block h2,
.card h3 {
  text-wrap: balance;
}
.card,
.institutional-card-grid article,
.market-card-grid article,
.segment-grid article,
.funding-snapshot-grid article,
.enterprise-metric-grid article,
.document-card-grid a {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (max-width: 1180px) {
  .investor-content-home .home-full-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "company menu"
      "infracell infracell"
      "nav nav";
    min-height: auto;
  }
  .investor-content-home .home-menu-toggle {
    grid-area: menu;
    display: grid;
  }
  .investor-content-home .home-infracell-brand {
    justify-self: start;
  }
  .investor-content-home .home-full-nav {
    display: none;
    justify-content: flex-start;
  }
  .investor-content-home .home-full-nav.open {
    display: flex;
  }
}
@media (max-width: 760px) {
  .investor-content-home .home-light-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .investor-content-home .home-light-brand-card {
    width: 100%;
  }
  .site-header .brand {
    flex-basis: 100%;
  }
}

/* Final micro adjustment 2026-06-03: larger nav, smaller investor snapshot */
.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.investor-content-home .home-full-nav a {
  font-size: 12px !important;
}

.jlt-header-cta,
.header-cta {
  font-size: 12px !important;
  padding: 10px 16px !important;
}

.investment-snapshot-panel {
  max-width: 360px !important;
  padding: 22px !important;
  border-radius: 22px !important;
}

.investment-snapshot-panel .kicker {
  font-size: 10px !important;
  margin-bottom: 12px !important;
}

.snapshot-metric-grid {
  gap: 10px !important;
}

.snapshot-metric-grid article {
  padding: 12px !important;
  min-height: 72px !important;
  border-radius: 14px !important;
}

.snapshot-metric-grid strong {
  font-size: clamp(17px, 1.55vw, 22px) !important;
  margin-bottom: 4px !important;
}

.snapshot-metric-grid span {
  font-size: 10px !important;
  line-height: 1.25 !important;
}

@media (max-width: 760px) {
  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .investor-content-home .home-full-nav a,
  .jlt-header-cta,
  .header-cta {
    font-size: 11px !important;
  }

  .investment-snapshot-panel {
    max-width: none !important;
    padding: 18px !important;
  }
}

/* Home hero artwork spacing */
.investor-content-home .jlt-artwork-panel {
  margin-top: 34px !important;
}

.investor-content-home .jlt-home-artwork {
  display: block;
  margin-top: 10px !important;
}

@media (max-width: 760px) {
  .investor-content-home .jlt-artwork-panel {
    margin-top: 22px !important;
  }

  .investor-content-home .jlt-home-artwork {
    margin-top: 0 !important;
  }
}

/* Final global header text reduction requested 2026-06-03 */
.jlt-brand-text strong,
.brand-copy strong,
.jlt-brand strong,
.dark-brand strong,
.site-brand strong,
.logo-copy strong {
  font-size: 60% !important;
  line-height: 1.15 !important;
}

.jlt-brand-text span,
.brand-copy em,
.jlt-brand span,
.dark-brand span,
.site-brand span,
.logo-copy span {
  font-size: 60% !important;
  line-height: 1.2 !important;
}

.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.jlt-header-cta,
.header-cta {
  font-size: 60% !important;
}

.investor-content-home .reference-home-hero .home-light-copy h1,
.investor-content-home .home-light-copy h1,
.jlt-hero-copy h1,
.page-hero h1,
.dark-page-hero h1,
.manufacturing-redesign .manufacturing-hero-clean h1,
.manufacturing-hero-clean h1,
.technology-hero h1,
.hero h1 {
  font-size: clamp(18px, 1.7vw, 25px) !important;
  line-height: 1.15 !important;
}

.section-title h2,
.section h2,
.cta-band h2,
.text-block h2,
.wide-split h2,
.manufacturing-redesign .section h2 {
  font-size: clamp(18px, 1.65vw, 24px) !important;
  line-height: 1.2 !important;
}

@media (max-width: 760px) {
  .jlt-brand-text strong,
  .brand-copy strong,
  .jlt-brand strong,
  .dark-brand strong,
  .site-brand strong,
  .logo-copy strong {
    font-size: 10px !important;
  }

  .jlt-brand-text span,
  .brand-copy em,
  .jlt-brand span,
  .dark-brand span,
  .site-brand span,
  .logo-copy span {
    font-size: 9px !important;
  }

  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .jlt-header-cta,
  .header-cta {
    font-size: 10px !important;
  }

  .investor-content-home .reference-home-hero .home-light-copy h1,
  .investor-content-home .home-light-copy h1,
  .jlt-hero-copy h1,
  .page-hero h1,
  .dark-page-hero h1,
  .manufacturing-redesign .manufacturing-hero-clean h1,
  .manufacturing-hero-clean h1,
  .technology-hero h1,
  .hero h1 {
    font-size: clamp(17px, 5.5vw, 23px) !important;
  }
}

/* Absolute final polish: nav size, home subtitle, hero art, investor snapshot */
.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.investor-content-home .home-full-nav a {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

.jlt-header-cta,
.header-cta {
  font-size: 13px !important;
  line-height: 1.15 !important;
}

.jlt-subtitle {
  font-size: clamp(13px, 1.05vw, 15px) !important;
  line-height: 1.35 !important;
  margin: 10px 0 12px !important;
}

.investor-content-home .jlt-artwork-panel {
  margin-top: 74px !important;
  align-self: start !important;
}

.investor-content-home .jlt-home-artwork {
  margin-top: 0 !important;
}

.investor-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) !important;
  align-items: center !important;
  column-gap: clamp(32px, 5vw, 78px) !important;
}

.investment-snapshot-panel {
  width: 100% !important;
  max-width: 340px !important;
  justify-self: end !important;
  margin-left: auto !important;
  padding: 20px !important;
  border-radius: 20px !important;
}

.snapshot-metric-grid {
  gap: 9px !important;
}

.snapshot-metric-grid article {
  min-height: 64px !important;
  padding: 11px 12px !important;
  border-radius: 13px !important;
}

.snapshot-metric-grid strong {
  font-size: clamp(15px, 1.35vw, 20px) !important;
  line-height: 1.08 !important;
  margin-bottom: 4px !important;
}

.snapshot-metric-grid span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}

.page-hero-inner,
.wide-split,
.split-section {
  align-items: center !important;
}

.section,
.investor-section,
.dark-section {
  padding-top: clamp(34px, 4.5vw, 62px) !important;
  padding-bottom: clamp(34px, 4.5vw, 62px) !important;
}

.section-head {
  margin-bottom: clamp(18px, 2.5vw, 34px) !important;
}

.section-head p,
.page-hero p,
.jlt-body,
.text-block p {
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .investor-hero .page-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .investment-snapshot-panel {
    justify-self: stretch !important;
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 760px) {
  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .investor-content-home .home-full-nav a {
    font-size: 12px !important;
  }

  .jlt-subtitle {
    font-size: 13px !important;
  }

  .investor-content-home .jlt-artwork-panel {
    margin-top: 28px !important;
  }

  .section,
  .investor-section,
  .dark-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* Sticky navigation panel across all pages */
.jlt-clean-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
}

@media (max-width: 760px) {
  .jlt-clean-header {
    position: sticky !important;
    top: 0 !important;
  }
}

/* Final alignment polish 2026-06-03 */
.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.investor-content-home .home-full-nav a {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

.jlt-header-cta,
.header-cta {
  font-size: 13px !important;
  line-height: 1.15 !important;
}

.jlt-subtitle {
  font-size: clamp(13px, 1.05vw, 15px) !important;
  line-height: 1.35 !important;
  margin: 10px 0 12px !important;
}

.investor-content-home .jlt-artwork-panel {
  margin-top: 74px !important;
  align-self: start !important;
}

.investor-content-home .jlt-home-artwork {
  margin-top: 0 !important;
}

.investor-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) !important;
  align-items: center !important;
  column-gap: clamp(32px, 5vw, 78px) !important;
}

.investment-snapshot-panel {
  width: 100% !important;
  max-width: 340px !important;
  justify-self: end !important;
  margin-left: auto !important;
  padding: 20px !important;
  border-radius: 20px !important;
}

.snapshot-metric-grid {
  gap: 9px !important;
}

.snapshot-metric-grid article {
  min-height: 64px !important;
  padding: 11px 12px !important;
  border-radius: 13px !important;
}

.snapshot-metric-grid strong {
  font-size: clamp(15px, 1.35vw, 20px) !important;
  line-height: 1.08 !important;
  margin-bottom: 4px !important;
}

.snapshot-metric-grid span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}

.page-hero-inner,
.wide-split,
.split-section {
  align-items: center !important;
}

.section,
.investor-section,
.dark-section {
  padding-top: clamp(34px, 4.5vw, 62px) !important;
  padding-bottom: clamp(34px, 4.5vw, 62px) !important;
}

.section-head {
  margin-bottom: clamp(18px, 2.5vw, 34px) !important;
}

.section-head p,
.page-hero p,
.jlt-body,
.text-block p {
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .investor-hero .page-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .investment-snapshot-panel {
    justify-self: stretch !important;
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 760px) {
  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .investor-content-home .home-full-nav a {
    font-size: 12px !important;
  }

  .jlt-subtitle {
    font-size: 13px !important;
  }

  .investor-content-home .jlt-artwork-panel {
    margin-top: 28px !important;
  }

  .section,
  .investor-section,
  .dark-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* Final micro adjustment 2026-06-03: navigation +20%, home image lower */
.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.investor-content-home .home-full-nav a {
  font-size: 14px !important;
}

.jlt-header-cta,
.header-cta {
  font-size: 14px !important;
}

.investor-content-home .jlt-artwork-panel {
  margin-top: 58px !important;
}

.investor-content-home .jlt-home-artwork {
  margin-top: 18px !important;
}

@media (max-width: 760px) {
  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .investor-content-home .home-full-nav a,
  .jlt-header-cta,
  .header-cta {
    font-size: 12px !important;
  }

  .investor-content-home .jlt-artwork-panel {
    margin-top: 30px !important;
  }

  .investor-content-home .jlt-home-artwork {
    margin-top: 4px !important;
  }
}
/* Premium manufacturing-company header */
.investor-content-home .cinematic-nav {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, auto) minmax(310px, 0.9fr) auto;
  column-gap: clamp(22px, 3vw, 48px);
  align-items: center;
  min-height: 82px;
  padding: 16px clamp(26px, 5vw, 86px);
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #dbe4ee;
  box-shadow: none;
}
.investor-content-home .cinematic-parent-brand {
  min-width: 0;
}
.investor-content-home .cinematic-parent-brand strong {
  color: #071426;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1.6px;
  font-weight: 900;
}
.investor-content-home .cinematic-parent-brand em {
  margin-top: 7px;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.investor-content-home .header-infracell-brand {
  justify-self: center;
  color: #071426;
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1;
  letter-spacing: 3.6px;
  font-weight: 950;
  text-transform: uppercase;
}
.investor-content-home .header-infracell-brand span {
  display: block;
  margin-top: 5px;
  color: #0a7cff;
  font-size: 0.52em;
  letter-spacing: 6px;
  text-align: center;
}
.investor-content-home .cinematic-links {
  justify-self: end;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
}
.investor-content-home .cinematic-links a {
  padding: 10px 0;
  color: #1e293b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.investor-content-home .cinematic-links a:hover,
.investor-content-home .cinematic-links a.active {
  color: #0a7cff;
  border-color: #0a7cff;
}
.investor-content-home .cinematic-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  color: #fff;
  background: #071426;
  border: 1px solid #071426;
  border-radius: 2px;
  box-shadow: none;
  font-size: 12px;
  letter-spacing: 0.9px;
}
.investor-content-home .cinematic-cta:hover {
  background: #0a7cff;
  border-color: #0a7cff;
}
@media (max-width: 1120px) {
  .investor-content-home .cinematic-nav {
    grid-template-columns: 1fr auto;
    row-gap: 14px;
  }
  .investor-content-home .header-infracell-brand {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
  .investor-content-home .cinematic-menu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
  }
  .investor-content-home .cinematic-links {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .investor-content-home .cinematic-cta {
    display: none;
  }
}
@media (max-width: 680px) {
  .investor-content-home .cinematic-nav {
    min-height: 76px;
    padding: 13px 18px;
  }
  .investor-content-home .cinematic-parent-brand strong {
    font-size: 14px;
    letter-spacing: 0.9px;
  }
  .investor-content-home .cinematic-parent-brand em {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .investor-content-home .header-infracell-brand {
    font-size: 18px;
    letter-spacing: 2.2px;
  }
}

/* Final visual QA polish: prevent text/button/header clipping */
html,
body {
  max-width: 100%;
}
.investor-content-home .home-light-copy,
.investor-content-home .home-light-brand-card,
.site-header,
.page-hero,
.section,
.footer {
  min-width: 0;
}
.investor-content-home .home-light-actions .btn:not(.btn-primary) {
  color: #0b1220;
  background: #ffffff;
  border-color: #d6e2ee;
}
.investor-content-home .home-light-actions .btn:not(.btn-primary):hover {
  border-color: #0a7cff;
  color: #0a7cff;
}
.investor-content-home .home-light-copy p,
.page-hero p,
.section-head p,
.card p,
.text-block p {
  overflow-wrap: anywhere;
}
.site-header {
  min-height: 82px;
}
.site-header .brand-copy strong,
.site-header .infracell-wordmark {
  overflow-wrap: anywhere;
}
.page-hero-inner,
.split-section,
.founder-premium-layout,
.secure-data-room-card,
.funding-ask-card {
  min-width: 0;
}
@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }
  .site-header .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .investor-content-home .home-full-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 10px;
  }
  .investor-content-home .home-company-brand {
    max-width: calc(100vw - 94px) !important;
  }
  .investor-content-home .home-menu-toggle {
    justify-self: end;
    width: 62px;
    min-width: 62px;
    padding: 0;
  }
  .investor-content-home .home-full-nav.open {
    display: grid;
    width: 100%;
  }
  .investor-content-home .home-full-nav a {
    white-space: normal;
  }
  .investor-content-home .home-light-hero {
    width: 100% !important;
    max-width: 100vw !important;
    grid-template-columns: minmax(0, 1fr) !important;
    box-sizing: border-box;
  }
  .investor-content-home .home-light-copy {
    max-width: calc(100vw - 56px) !important;
    width: calc(100vw - 56px) !important;
  }
  .investor-content-home .home-light-copy p:not(.home-light-kicker),
  .investor-content-home .home-light-copy h1 {
    max-width: calc(100vw - 56px) !important;
  }
  .investor-content-home .home-light-actions {
    width: calc(100vw - 56px) !important;
  }
  .investor-content-home .home-light-actions .btn {
    width: min(100%, 305px) !important;
    max-width: 305px !important;
  }
  .investor-content-home .home-full-header {
    width: 100%;
    overflow: hidden;
  }
  .investor-content-home .home-company-brand,
  .investor-content-home .home-infracell-brand,
  .investor-content-home .home-light-copy,
  .investor-content-home .home-light-copy p,
  .investor-content-home .home-light-copy h1 {
    width: 100%;
    max-width: 100%;
  }
  .investor-content-home .home-infracell-brand {
    white-space: normal;
  }
  .investor-content-home .home-light-hero {
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }
  .investor-content-home .home-light-copy h1 {
    letter-spacing: -0.025em;
  }
  .investor-content-home .home-light-copy p:not(.home-light-kicker) {
    width: min(100%, 305px) !important;
    max-width: 305px !important;
    font-size: 15px;
    line-height: 1.65;
  }
  .investor-content-home .home-light-brand-card {
    padding: 32px 18px;
    border-radius: 18px;
  }
  .investor-content-home .home-light-brand-card em {
    letter-spacing: 0.12em;
  }
}

/* Product and manufacturing page restoration */
.infracell-dark {
  color: #0b1220;
  background: #ffffff;
}
.infracell-dark .dark-header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #dfe8e3;
  box-shadow: 0 8px 24px rgba(7,20,38,0.04);
}
.infracell-dark .brand-mark {
  display: none;
}
.infracell-dark .dark-brand .brand-copy strong {
  color: #075f24;
}
.infracell-dark .dark-brand .brand-copy em {
  display: block;
  margin-top: 4px;
  color: #0a8f2a;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.dark-page-hero {
  padding: 86px clamp(22px, 5vw, 78px) 54px;
  background:
    radial-gradient(circle at 84% 20%, rgba(10,143,42,0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 56%, #eef7f0 100%);
  border-bottom: 1px solid #e2e8f0;
}
.dark-kicker {
  margin: 0 0 18px;
  color: #0a8f2a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dark-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #0b1220;
  font-size: clamp(38px, 4.4vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.dark-page-hero p:not(.dark-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}
.dark-section {
  padding: 70px clamp(22px, 5vw, 78px);
  background: #ffffff;
}
.chemistry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.chemistry-card-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid #dfe8e3;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff),
    radial-gradient(circle at top right, rgba(10,124,255,0.12), transparent 36%);
  box-shadow: 0 18px 45px rgba(7,20,38,0.08);
}
.chemistry-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #0a7cff;
  background: #eaf4ff;
  font-weight: 950;
}
.chemistry-card-grid h3 {
  margin: 0 0 12px;
  font-size: 24px;
}
.chemistry-card-grid p {
  margin: 0;
  color: #475569;
  font-weight: 700;
}
.manufacturing-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.manufacturing-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.manufacturing-panel p {
  color: #475569;
  line-height: 1.75;
}
.manufacturing-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.manufacturing-visual-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dfe8e3;
  background: #f8fbff;
  box-shadow: 0 18px 42px rgba(7,20,38,0.08);
}
.manufacturing-visual-grid figure:first-child {
  grid-column: 1 / -1;
}
.manufacturing-visual-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.manufacturing-visual-grid figure:first-child img {
  height: 330px;
}
@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
    overflow: hidden;
  }
  .site-header .brand,
  .site-header .brand-stack,
  .site-header .brand-copy,
  .site-header .single-line-brand {
    min-width: 0;
    max-width: 100%;
  }
  .site-header .single-line-brand strong {
    white-space: normal;
    font-size: 13px;
    line-height: 1.2;
  }
  .site-header .brand-copy em {
    font-size: 10px;
    line-height: 1.2;
  }
  .page-hero,
  .dark-page-hero,
  .section,
  .dark-section {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }
  .page-hero h1,
  .dark-page-hero h1 {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    font-size: clamp(32px, 10vw, 44px);
    overflow-wrap: anywhere;
  }
  .page-hero p,
  .dark-page-hero p:not(.dark-kicker) {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    overflow-wrap: anywhere;
  }
  .text-block h2,
  .manufacturing-panel h2,
  .section-head h2 {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    overflow-wrap: anywhere;
  }
  .text-block p,
  .manufacturing-panel p,
  .section-head p,
  .tech-intro-card,
  .tech-intro-card p {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
  }
  .page-hero-inner,
  .manufacturing-panel,
  .chemistry-card-grid,
  .manufacturing-visual-grid {
    grid-template-columns: 1fr;
  }
  .manufacturing-visual-grid figure:first-child {
    grid-column: auto;
  }
  .manufacturing-visual-grid img,
  .manufacturing-visual-grid figure:first-child img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }
}

/* Official INFRACELL logo placement */
.infracell-wordmark,
.investor-content-home .home-infracell-brand {
  display: block;
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;
  background-image: url("assets/infracell-logo-official.png");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
.infracell-wordmark {
  width: 230px;
  height: 38px;
  background-position: left center;
}
.infracell-wordmark .energy-word,
.investor-content-home .home-infracell-brand span {
  display: none !important;
}
.investor-content-home .home-infracell-brand {
  width: 300px;
  height: 45px;
  background-position: right center;
}
.investor-content-home .home-light-brand-card {
  min-height: 300px;
}
.investor-content-home .home-light-brand-card::before {
  display: none;
}
.investor-content-home .home-light-brand-card::after {
  content: "";
  display: block;
  width: min(100%, 360px);
  height: 96px;
  background-image: url("assets/infracell-logo-official.png");
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
.investor-content-home .home-light-brand-card > span,
.investor-content-home .home-light-brand-card > strong,
.investor-content-home .home-light-brand-card > em {
  display: none !important;
}
@media (max-width: 760px) {
  .infracell-wordmark {
    width: 190px;
    height: 32px;
  }
  .investor-content-home .home-infracell-brand {
    width: min(100%, 250px);
    height: 38px;
    background-position: left center;
  }
  .investor-content-home .home-light-brand-card {
    min-height: 210px;
  }
  .investor-content-home .home-light-brand-card::after {
    width: min(100%, 270px);
    height: 70px;
  }
}

/* Home page reference layout from supplied front-page sample */
.investor-content-home .home-full-header {
  display: grid !important;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.45fr) auto !important;
  grid-template-areas: "company nav cta" !important;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 122px;
  padding: 20px clamp(28px, 5vw, 74px);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #dbe4ee;
  box-shadow: 0 10px 28px rgba(7,20,38,0.05);
}
.investor-content-home .home-company-brand {
  grid-area: company;
  display: grid;
  gap: 4px;
  justify-items: start;
  width: auto !important;
  max-width: 260px !important;
  color: #075f24;
}
.investor-content-home .home-company-brand strong {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 850;
  text-transform: none;
  color: #075f24;
}
.investor-content-home .home-company-brand span {
  display: none;
}
.investor-content-home .home-brand-logo {
  display: block;
  width: 230px;
  height: 38px;
  background: url("assets/infracell-logo-official.png") left center / contain no-repeat;
}
.investor-content-home .home-full-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 40px);
  padding: 0;
}
.investor-content-home .home-full-nav a {
  color: #0b1220;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1px;
  text-transform: none;
}
.investor-content-home .home-full-nav a.active,
.investor-content-home .home-full-nav a:hover {
  color: #087c27;
  border-color: #087c27;
}
.investor-content-home .home-header-cta {
  grid-area: cta;
  min-width: 150px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #07862a, #075f24);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(7,95,36,0.18);
  font-size: 13px;
  font-weight: 900;
}
.investor-content-home .reference-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
  grid-template-areas:
    "copy visual"
    "proof proof";
  align-items: start;
  gap: 12px clamp(42px, 6vw, 86px);
  min-height: 610px;
  padding: 48px clamp(28px, 5vw, 74px) 0;
  background:
    radial-gradient(circle at 86% 42%, rgba(10,143,42,0.12), transparent 32%),
    linear-gradient(100deg, #ffffff 0%, #f7fbff 52%, #eef8f0 100%);
}
.investor-content-home .reference-home-hero::before {
  display: none;
}
.investor-content-home .reference-home-hero .home-light-copy {
  grid-area: copy;
  max-width: 720px;
}
.investor-content-home .reference-home-hero .home-light-kicker {
  margin-bottom: 20px;
  color: #172033;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.investor-content-home .reference-home-hero .home-light-copy h1 {
  max-width: 610px;
  font-size: clamp(30px, 2.85vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 900;
}
.investor-content-home .reference-home-hero .home-light-copy p:not(.home-light-kicker) {
  max-width: 590px;
  margin-top: 14px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 720;
}
.investor-content-home .reference-home-hero .home-light-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}
.investor-content-home .reference-home-hero .home-light-actions .btn {
  min-width: 220px;
  min-height: 58px;
  border-radius: 8px;
  font-size: 14px;
}
.home-hero-cell-card {
  grid-area: visual;
  margin: -24px 0 0;
  overflow: visible;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
}
.home-hero-cell-card img {
  width: 100%;
  height: clamp(260px, 24vw, 350px);
  object-fit: contain;
  padding: 0;
}
.home-hero-proof-strip {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 0;
  padding: 12px 18px;
  border: 1px solid rgba(181,18,27,0.22);
  border-radius: 10px 10px 0 0;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 -8px 36px rgba(7,20,38,0.05);
}
.home-hero-proof-strip article {
  min-height: 74px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}
.home-hero-proof-strip article:last-child {
  border-right: 0;
}
.home-hero-proof-strip strong {
  color: #a31627;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1;
  font-weight: 950;
}
.home-hero-proof-strip span {
  margin-top: 5px;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
}
@media (max-width: 1180px) {
  .investor-content-home .home-full-header {
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "company menu"
      "nav nav"
      "cta cta" !important;
  }
  .investor-content-home .home-menu-toggle {
    grid-area: menu;
    display: grid;
  }
  .investor-content-home .home-full-nav {
    display: none;
    justify-content: flex-start;
  }
  .investor-content-home .home-full-nav.open {
    display: flex;
  }
  .investor-content-home .home-header-cta {
    justify-self: start;
  }
}
@media (max-width: 1320px) and (min-width: 1181px) {
  .investor-content-home .home-full-header {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.35fr) auto !important;
    grid-template-areas: "company nav cta" !important;
    row-gap: 0;
    min-height: 92px;
  }
  .investor-content-home .home-full-nav {
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
  }
  .investor-content-home .home-header-cta {
    justify-self: end;
    min-width: 130px;
    min-height: 42px;
    padding: 0 19px;
    font-size: 12px;
  }
}
@media (max-width: 860px) {
  .investor-content-home .reference-home-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "proof";
    padding-top: 34px;
  }
  .home-hero-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero-proof-strip article:nth-child(2) {
    border-right: 0;
  }
}

/* Final header collision guard for all pages */
.site-header {
  flex-wrap: wrap;
}
.site-header .header-cta {
  margin-left: auto;
}
@media (max-width: 1240px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    row-gap: 12px;
  }
  .site-header .brand {
    min-width: 0;
  }
  .site-header .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
  }
  .site-header .header-cta {
    justify-self: end;
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .site-header .menu-toggle {
    display: grid;
    justify-self: end;
  }
  .site-header .nav-links {
    display: none;
    justify-content: flex-start;
  }
  .site-header .nav-links.open {
    display: grid;
    gap: 0;
  }
  .site-header .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .site-header .header-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .investor-content-home .home-full-header {
    padding: 16px 18px;
    min-height: auto;
  }
  .investor-content-home .home-company-brand {
    max-width: 230px !important;
  }
  .investor-content-home .home-brand-logo {
    width: 190px;
    height: 32px;
  }
  .investor-content-home .home-header-cta {
    min-width: 140px;
    min-height: 46px;
  }
  .investor-content-home .reference-home-hero {
    padding: 32px 18px 0;
  }
  .investor-content-home .reference-home-hero .home-light-copy,
  .investor-content-home .reference-home-hero .home-light-copy h1,
  .investor-content-home .reference-home-hero .home-light-copy p:not(.home-light-kicker),
  .investor-content-home .reference-home-hero .home-light-actions {
    width: 100% !important;
    max-width: 100% !important;
  }
  .investor-content-home .reference-home-hero .home-light-kicker {
    width: 100%;
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
  .investor-content-home .reference-home-hero .home-light-copy h1 {
    width: 100% !important;
    max-width: 320px !important;
    font-size: clamp(27px, 7.8vw, 34px);
    line-height: 1.12;
  }
  .investor-content-home .reference-home-hero .home-light-copy p:not(.home-light-kicker) {
    width: 100% !important;
    max-width: 320px !important;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.48;
    overflow-wrap: anywhere;
  }
  .investor-content-home .reference-home-hero .home-light-actions {
    margin-top: 16px;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr;
    width: 100% !important;
  }
  .investor-content-home .reference-home-hero .home-light-actions .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
  }
  .home-hero-cell-card img {
    height: auto;
    padding: 6px;
  }
  .home-hero-proof-strip {
    grid-template-columns: 1fr;
    padding: 12px 16px;
  }
  .home-hero-proof-strip article {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .home-hero-proof-strip article:last-child {
    border-bottom: 0;
  }
}

/* Final dark-section contrast guard */
.investor-proof,
.dark-section,
.infracell-dark,
.poster-section,
.investor-highlight-band,
.strategic-vision-section,
.dark-page-hero,
.footer,
.dark-footer {
  color: #f8fbff !important;
}
.investor-proof .section-head h2,
.investor-proof .section-head p,
.investor-proof .kicker,
.dark-section .section-head h2,
.dark-section .section-head p,
.dark-section .kicker,
.infracell-dark h1,
.infracell-dark h2,
.infracell-dark h3,
.infracell-dark p,
.infracell-dark span,
.poster-section h2,
.poster-section p,
.investor-highlight-band h2,
.investor-highlight-band p,
.strategic-vision-section h2,
.strategic-vision-section p,
.dark-page-hero h1,
.dark-page-hero p,
.footer h2,
.footer h3,
.footer p,
.footer a,
.footer span,
.footer strong {
  color: #f8fbff !important;
}
.investor-proof .investor-proof-card,
.investor-proof .proof-action-grid a,
.dark-section .card,
.dark-section .institutional-card-grid article,
.dark-section .market-card-grid article {
  background: rgba(255,255,255,0.97) !important;
  color: #071426 !important;
}
.investor-proof .investor-proof-card h3,
.investor-proof .investor-proof-card p,
.investor-proof .investor-proof-card li,
.investor-proof .proof-action-grid a,
.dark-section .card h3,
.dark-section .card p {
  color: #071426 !important;
}

/* Clean investor-grade home header and hero */
.jlt-clean-header {
  min-height: 96px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.jlt-brand {
  text-decoration: none;
  color: #0b1220;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.jlt-brand img {
  width: 205px;
  height: auto;
  object-fit: contain;
  margin-top: 2px;
  border-radius: 0;
  box-shadow: none;
}

.jlt-brand strong {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.jlt-brand span {
  font-size: 12px;
  color: #64748b;
}

.jlt-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 32px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.jlt-nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.jlt-nav a:hover {
  color: #0a7cff;
}

.jlt-nav a.active {
  position: relative;
  color: #0a7cff !important;
}

.jlt-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: #0a7cff;
}

.jlt-header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: #0a7cff;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(10, 124, 255, 0.22);
}

.jlt-header-cta:hover {
  background: #075fd0;
  color: #ffffff;
}

.jlt-investor-hero {
  padding: 84px 7vw 104px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(10,124,255,0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.jlt-hero-copy,
.jlt-brand-panel {
  min-width: 0;
}

.jlt-kicker {
  color: #0a7cff !important;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 13px;
  margin: 0;
}

.jlt-hero-copy h1 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.14;
  margin: 18px 0;
  color: #07111f;
  max-width: 850px;
  letter-spacing: -0.025em;
}

.jlt-subtitle {
  font-size: 26px;
  color: #0f172a !important;
  font-weight: 600;
  margin: 0 0 18px;
}

.jlt-body {
  font-size: 18px;
  line-height: 1.7;
  color: #475569 !important;
  max-width: 760px;
  margin: 0;
}

.jlt-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.jlt-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.jlt-primary {
  background: #0a7cff;
  color: #ffffff;
}

.jlt-primary:hover {
  background: #075fd0;
  color: #ffffff;
}

.jlt-secondary {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
}

.jlt-secondary:hover {
  border-color: #0a7cff;
  color: #0a7cff;
}

.jlt-brand-panel {
  position: relative;
  transform: translateY(-46px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: clamp(34px, 5vw, 58px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.jlt-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(10,124,255,0.12), transparent 32%),
    linear-gradient(135deg, rgba(10,124,255,0.08), transparent 40%);
  pointer-events: none;
}

.jlt-brand-panel > * {
  position: relative;
  z-index: 1;
}

.jlt-panel-line {
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #0a7cff;
}

.jlt-panel-logo {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  margin: 0 0 30px;
  border-radius: 0;
  box-shadow: none;
}

.jlt-brand-panel strong {
  display: block;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.08em;
  color: #0b1220;
  margin-bottom: 10px;
}

.jlt-brand-panel em {
  display: block;
  color: #0a7cff;
  font-style: normal;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0.42em;
  margin-bottom: 28px;
}

.jlt-brand-panel p {
  color: #0f172a !important;
  font-size: 19px;
  font-weight: 750;
  margin: 0 0 18px;
  line-height: 1.4;
}

.jlt-brand-panel small {
  display: block;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.jlt-brand-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jlt-brand-panel span:not(.jlt-panel-line) {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fbff;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .jlt-clean-header {
    height: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .jlt-brand img {
    width: 190px;
  }

  .jlt-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    width: 100%;
    column-gap: 20px;
    justify-content: flex-start;
    row-gap: 12px;
  }

  .jlt-nav a {
    font-size: 13px;
  }

  .jlt-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
  }

  .jlt-investor-hero {
    display: block;
    padding: 60px 24px 70px;
  }

  .jlt-hero-copy,
  .jlt-brand-panel {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }

  .jlt-hero-copy h1 {
    max-width: min(100%, 330px);
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.15;
    overflow-wrap: normal;
  }

  .jlt-subtitle {
    font-size: 21px;
  }

  .jlt-body {
    font-size: 16px;
    width: min(100%, 330px);
    max-width: 330px;
    overflow-wrap: anywhere;
  }

  .jlt-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .jlt-actions a {
    width: 100%;
    text-align: center;
  }

  .jlt-brand-panel {
    margin-top: 38px;
    transform: none;
    padding: 34px 24px;
  }

  .jlt-panel-logo {
    width: min(100%, 290px);
    margin-bottom: 24px;
  }

  .jlt-brand-panel strong {
    font-size: clamp(36px, 10vw, 48px);
    letter-spacing: 0.06em;
  }

  .jlt-brand-panel em {
    letter-spacing: 0.3em;
  }

  .jlt-brand-panel p {
    font-size: 16px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}

/* Site-wide compact spacing pass */
.site-header {
  min-height: 64px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.site-header .single-line-brand strong {
  font-size: 15px !important;
  line-height: 1.1 !important;
}

.site-header .infracell-wordmark {
  width: 230px !important;
  height: 38px !important;
}

.page-hero,
.section,
.investor-section,
.dark-section {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.page-hero {
  min-height: 0 !important;
}

.page-hero-inner {
  gap: 34px !important;
}

.section-head {
  margin-bottom: 24px !important;
}

.section-head h2 {
  margin-bottom: 10px !important;
}

.card-grid,
.premium-grid,
.roadmap-grid,
.wide-split,
.contact-grid,
.process-flow,
.why-grid,
.win-grid,
.market-card-grid,
.institutional-card-grid,
.roadmap-number-grid,
.enterprise-metric-grid {
  gap: 18px !important;
}

.jlt-clean-header {
  min-height: 76px !important;
  padding: 8px clamp(22px, 4vw, 70px) !important;
  gap: 24px !important;
}

.jlt-brand {
  gap: 3px !important;
}

.jlt-brand strong {
  font-size: 15px !important;
  line-height: 1.08 !important;
  letter-spacing: 0.08em !important;
  color: var(--brand-ink) !important;
}

.jlt-brand span {
  font-size: 12px !important;
  line-height: 1.1 !important;
}

.jlt-brand img {
  width: 230px !important;
  height: 38px !important;
  object-fit: contain !important;
  object-position: left center !important;
  margin-top: 0 !important;
}

.jlt-investor-hero {
  padding-top: 34px !important;
  padding-bottom: 62px !important;
  gap: 44px !important;
}

.jlt-brand-panel {
  transform: translateY(-66px) !important;
  padding: 34px 40px !important;
}

.jlt-panel-logo {
  width: min(100%, 380px) !important;
}

.roadmap-number-grid strong,
.enterprise-metric-grid strong {
  font-size: clamp(24px, 2.1vw, 30px) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.cta-band {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 46px !important;
    padding: 7px 14px !important;
    gap: 8px !important;
  }

  .site-header .single-line-brand strong {
    font-size: 10px !important;
    line-height: 1 !important;
  }

  .site-header .infracell-wordmark {
    width: 128px !important;
    height: 22px !important;
  }

  .site-header .nav-links a {
    font-size: 12px !important;
    padding: 8px 0 !important;
  }

  .site-header .header-cta {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
  }

  .page-hero,
  .section,
  .investor-section,
  .dark-section {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
  }

  .section-head {
    margin-bottom: 18px !important;
  }

  .jlt-clean-header {
    min-height: 0 !important;
    padding: 10px 18px !important;
    gap: 10px !important;
  }

  .jlt-brand strong {
    font-size: 10px !important;
    line-height: 1 !important;
  }

  .jlt-brand span {
    font-size: 9px !important;
  }

  .jlt-brand img {
    width: 128px !important;
    height: 22px !important;
  }

  .jlt-nav {
    column-gap: 14px !important;
    row-gap: 8px !important;
  }

  .jlt-nav a {
    font-size: 11px !important;
  }

  .jlt-header-cta {
    min-height: 34px !important;
    width: min(100%, 240px) !important;
    padding: 0 12px !important;
    font-size: 11px !important;
  }

  .jlt-investor-hero {
    padding-top: 34px !important;
    padding-bottom: 40px !important;
  }

  .jlt-brand-panel {
    transform: none !important;
    margin-top: 26px !important;
    padding: 26px 22px !important;
  }

.jlt-panel-logo {
  width: min(100%, 270px) !important;
}
}

.jlt-artwork-panel {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: transparent !important;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16) !important;
  overflow: hidden !important;
}

.jlt-artwork-panel::before {
  display: none !important;
}

.jlt-home-artwork {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.jlt-panel-metrics {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin-top: 26px;
}

.jlt-panel-metrics span {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-height: 0 !important;
  padding: 12px 0 !important;
  border: 0 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* Home banner color match for PSD battery artwork */
.investor-content-home .jlt-investor-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(17, 91, 214, 0.22), transparent 34%),
    radial-gradient(circle at 70% 48%, rgba(18, 230, 255, 0.10), transparent 38%),
    linear-gradient(110deg, #ffffff 0%, #f8fbff 42%, #eaf4ff 72%, #dceeff 100%) !important;
}

.investor-content-home .jlt-artwork-panel {
  background:
    radial-gradient(circle at 72% 50%, rgba(18, 230, 255, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(3, 8, 20, 0.04), rgba(10, 124, 255, 0.12)) !important;
  box-shadow:
    0 30px 78px rgba(10, 124, 255, 0.18),
    0 10px 28px rgba(3, 8, 20, 0.10) !important;
}

.jlt-panel-metrics strong {
  display: block !important;
  margin: 0 !important;
  color: #071426 !important;
  font-size: clamp(18px, 1.55vw, 22px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.jlt-panel-metrics em {
  display: block !important;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  text-align: right;
}

.jlt-brand {
  flex-direction: column-reverse !important;
  align-items: flex-start;
}

.jlt-brand strong {
  font-size: 12px !important;
  letter-spacing: 0.02em !important;
  color: #64748b !important;
}

.jlt-brand span {
  display: none !important;
}

@media (max-width: 760px) {
  .jlt-panel-metrics {
    margin-top: 20px;
  }

  .jlt-panel-metrics span {
    display: block !important;
    gap: 8px !important;
  }

  .jlt-panel-metrics strong {
    font-size: 17px !important;
  }

  .jlt-panel-metrics em {
    font-size: 11px !important;
    text-align: left !important;
    margin-top: 4px !important;
  }
}

.founder-card-text-only {
  grid-template-columns: 1fr !important;
  align-items: center;
  min-height: 150px;
}

.founder-card-text-only > div {
  max-width: 620px;
  width: 100%;
}

.founder-card-text-only p {
  max-width: 520px;
}

.jlt-brand strong {
  max-width: 310px;
  line-height: 1.25;
}

/* Final About page cleanup */
.founder-quote-band {
  padding: 52px clamp(22px, 5vw, 78px);
  background: #fff;
}

.founder-quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 42px;
  border-left: 5px solid #0a7cff;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248,251,255,0.98), rgba(255,255,255,0.98));
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 850;
}

.founder-quote-band cite {
  display: block;
  margin-top: 18px;
  color: #64748b;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.milestone-proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.milestone-proof-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.milestone-proof-grid strong {
  font-size: clamp(36px, 3.6vw, 54px);
  letter-spacing: -0.03em;
}

.milestone-proof-grid span {
  max-width: 180px;
  font-size: 15px;
}

.execution-roadmap-section {
  background: #fff;
}

.simple-execution-roadmap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.simple-execution-roadmap article {
  position: relative;
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
  text-align: center;
}

.simple-execution-roadmap article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #0a7cff;
  border-right: 3px solid #0a7cff;
  transform: translateY(-50%) rotate(45deg);
}

.simple-execution-roadmap strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
}

.infracell-about-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.infracell-about-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px 52px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.infracell-about-block h2 {
  margin: 8px 0 18px;
  color: #0f172a;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.06;
}

.infracell-about-block p:not(.kicker) {
  max-width: 760px;
  margin: 14px auto 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

body:not(.investor-content-home) .section {
  padding-top: clamp(72px, 7vw, 112px);
  padding-bottom: clamp(72px, 7vw, 112px);
}

@media (max-width: 1100px) {
  .milestone-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .simple-execution-roadmap article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .founder-quote-band {
    padding: 38px 18px;
  }

  .founder-quote-band blockquote {
    padding: 26px 24px;
  }

  .milestone-proof-grid {
    grid-template-columns: 1fr !important;
  }

  .simple-execution-roadmap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .infracell-about-block {
    padding: 32px 22px;
    text-align: left;
  }
}

/* Final cross-page brand header alignment */
.jlt-clean-header .jlt-brand {
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 6px !important;
  max-width: 260px;
}

.jlt-clean-header .jlt-brand strong {
  display: block !important;
  max-width: none !important;
  color: #0f172a !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  letter-spacing: 0.04em !important;
  font-weight: 850 !important;
  white-space: nowrap;
}

.jlt-clean-header .jlt-brand img {
  display: block !important;
  width: 210px !important;
  height: auto !important;
  max-height: 32px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.jlt-clean-header .jlt-nav {
  align-items: center;
}

/* Investors hero snapshot */
.investment-snapshot-panel {
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(10,124,255,0.28), transparent 34%),
    linear-gradient(135deg, #030814, #071a33);
  box-shadow: 0 34px 80px rgba(3, 8, 20, 0.26);
  color: #fff;
}

.investment-snapshot-panel .kicker {
  color: #12e6ff !important;
  margin-bottom: 22px;
}

.snapshot-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.snapshot-metric-grid article {
  min-height: 126px;
  padding: 20px;
  border: 1px solid rgba(18, 230, 255, 0.18);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
}

.snapshot-metric-grid article:last-child {
  grid-column: 1 / -1;
}

.snapshot-metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.snapshot-metric-grid span {
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  line-height: 1.35;
}

/* Manufacturing redesign */
.manufacturing-redesign {
  background: #fff;
  color: #0f172a;
}

.infracell-dark .manufacturing-redesign,
.infracell-dark .manufacturing-redesign .section,
.infracell-dark .manufacturing-redesign .section-head,
.infracell-dark .manufacturing-redesign .manufacturing-hero-clean {
  color: #0f172a !important;
}

.infracell-dark .manufacturing-redesign h1,
.infracell-dark .manufacturing-redesign h2,
.infracell-dark .manufacturing-redesign h3,
.infracell-dark .manufacturing-redesign strong {
  color: #0f172a !important;
}

.infracell-dark .manufacturing-redesign p,
.infracell-dark .manufacturing-redesign span {
  color: #475569 !important;
}

.infracell-dark .manufacturing-redesign .kicker {
  color: #0a7cff !important;
}

.infracell-dark .manufacturing-redesign .manufacturing-roadmap-flow strong,
.infracell-dark .manufacturing-redesign .capacity-card-grid strong {
  color: #0a7cff !important;
}

.infracell-dark .manufacturing-redesign .principle-card-grid article,
.infracell-dark .manufacturing-redesign .principle-card-grid article strong {
  color: #fff !important;
}

.manufacturing-hero-clean {
  padding: clamp(76px, 8vw, 118px) clamp(22px, 7vw, 96px);
  background:
    radial-gradient(circle at 86% 20%, rgba(10,124,255,0.12), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.manufacturing-hero-clean h1 {
  max-width: 920px;
  margin: 10px 0 18px;
  color: #0f172a;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
}

.manufacturing-hero-clean p:not(.kicker) {
  max-width: 780px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 650;
}

.manufacturing-roadmap-flow,
.manufacturing-process-diagram,
.principle-card-grid,
.capacity-card-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.manufacturing-roadmap-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.manufacturing-roadmap-flow article {
  position: relative;
  min-height: 170px;
  padding: 28px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.manufacturing-roadmap-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 20px;
  height: 20px;
  border-top: 3px solid #0a7cff;
  border-right: 3px solid #0a7cff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.manufacturing-roadmap-flow strong {
  display: block;
  margin-bottom: 10px;
  color: #0a7cff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
}

.manufacturing-roadmap-flow span {
  color: #0f172a;
  font-weight: 850;
}

.process-led-section {
  background: #f8fbff;
}

.manufacturing-process-diagram {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.manufacturing-process-diagram span {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  color: #0f172a;
  text-align: center;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.manufacturing-process-diagram span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0a7cff;
  border-right: 2px solid #0a7cff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.manufacturing-principles-section {
  background: #fff;
}

.principle-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.principle-card-grid article {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(10,124,255,0.12), transparent 35%),
    linear-gradient(135deg, #030814, #071a33);
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 58px rgba(3, 8, 20, 0.16);
}

.principle-card-grid strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.capacity-expansion-section {
  background: #f8fbff;
}

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

.capacity-card-grid article {
  min-height: 180px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.capacity-card-grid span {
  display: block;
  margin-bottom: 14px;
  color: #64748b;
  font-weight: 850;
}

.capacity-card-grid strong {
  color: #0f172a;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

@media (max-width: 760px) {
  .jlt-clean-header .jlt-brand {
    max-width: 190px;
  }

  .jlt-clean-header .jlt-brand strong {
    font-size: 10px !important;
    white-space: normal;
  }

  .jlt-clean-header .jlt-brand img {
    width: 160px !important;
    max-height: 26px !important;
  }

  .snapshot-metric-grid,
  .manufacturing-roadmap-flow,
  .manufacturing-process-diagram,
  .principle-card-grid,
  .capacity-card-grid {
    grid-template-columns: 1fr;
  }

  .manufacturing-roadmap-flow article:not(:last-child)::after,
  .manufacturing-process-diagram span:not(:last-child)::after {
    display: none;
  }

  .manufacturing-hero-clean {
    padding: 62px 20px;
  }

  .manufacturing-hero-clean h1 {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    font-size: clamp(32px, 9vw, 40px) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal;
  }

  .manufacturing-hero-clean p:not(.kicker) {
    width: min(100%, 340px) !important;
    max-width: 340px !important;
    font-size: 15px !important;
  }
}

/* Final manufacturing spacing and footer alignment pass */
.manufacturing-redesign .manufacturing-hero-clean {
  padding: 46px clamp(22px, 6vw, 78px) 42px !important;
}

.manufacturing-redesign .manufacturing-hero-clean h1 {
  max-width: 720px !important;
  margin: 8px 0 14px !important;
  font-size: clamp(30px, 3.35vw, 48px) !important;
  line-height: 1.08 !important;
}

.manufacturing-redesign .manufacturing-hero-clean p:not(.kicker) {
  max-width: 680px !important;
  font-size: 15px !important;
  line-height: 1.58 !important;
}

.manufacturing-redesign .section {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.manufacturing-redesign .section-head {
  margin-bottom: 24px !important;
}

.manufacturing-redesign .section-head h2 {
  font-size: clamp(24px, 2.6vw, 34px) !important;
  line-height: 1.12 !important;
}

.manufacturing-redesign .section-head p {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.manufacturing-roadmap-flow {
  gap: 24px !important;
}

.manufacturing-roadmap-flow article {
  min-height: 112px !important;
  padding: 18px !important;
  border-radius: 18px !important;
}

.manufacturing-roadmap-flow article:not(:last-child)::after {
  right: -20px !important;
  width: 16px !important;
  height: 16px !important;
  border-width: 2px !important;
}

.manufacturing-roadmap-flow strong {
  font-size: clamp(22px, 2.1vw, 32px) !important;
}

.manufacturing-process-diagram {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.manufacturing-process-diagram span {
  min-height: 66px !important;
  padding: 8px 6px !important;
  border-radius: 12px !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.manufacturing-process-diagram span:not(:last-child)::after {
  right: -14px !important;
  width: 10px !important;
  height: 10px !important;
  border-width: 2px !important;
}

.manufacturing-process-image {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
}

.manufacturing-process-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 14px;
}

.principle-card-grid {
  gap: 14px !important;
}

.principle-card-grid article {
  min-height: 96px !important;
  padding: 16px !important;
  border-radius: 16px !important;
}

.principle-card-grid strong {
  font-size: 15px !important;
}

.capacity-card-grid {
  gap: 16px !important;
}

.capacity-card-grid article {
  min-height: 118px !important;
  padding: 20px !important;
  border-radius: 18px !important;
}

.capacity-card-grid strong {
  font-size: clamp(26px, 2.6vw, 38px) !important;
}

.footer,
.dark-footer,
.investor-content-home .footer {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  padding: 20px clamp(20px, 4vw, 62px) 12px !important;
  align-items: start !important;
}

.footer .footer-institutional,
.dark-footer .footer-institutional,
.investor-content-home .footer-institutional {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: center !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

.footer-links {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: start !important;
}

.footer-links div {
  display: grid !important;
  gap: 4px !important;
}

.footer-links strong {
  margin-bottom: 3px !important;
  font-size: 11px !important;
}

.footer-links a,
.footer p,
.dark-footer p,
.investor-content-home .footer p {
  font-size: 10.5px !important;
  line-height: 1.32 !important;
}

.footer > p:last-child,
.dark-footer > p:last-child,
.investor-content-home .footer > p:last-child {
  margin: 2px 0 0 !important;
  padding-top: 8px !important;
}

@media (max-width: 980px) {
  .manufacturing-process-diagram {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .manufacturing-process-diagram span:not(:last-child)::after {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .manufacturing-redesign .manufacturing-hero-clean {
    padding: 34px 20px 32px !important;
  }

  .manufacturing-redesign .manufacturing-hero-clean h1 {
    max-width: 330px !important;
    font-size: clamp(24px, 7.2vw, 31px) !important;
  }

  .manufacturing-redesign .section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  .manufacturing-roadmap-flow,
  .manufacturing-process-diagram,
  .principle-card-grid,
  .capacity-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .manufacturing-process-image {
    padding: 10px;
    border-radius: 16px;
  }

  .manufacturing-roadmap-flow article:not(:last-child)::after {
    display: none !important;
  }

  .footer,
  .dark-footer,
  .investor-content-home .footer {
    padding: 18px 18px 10px !important;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

/* Final global header text reduction requested 2026-06-03 - last override */
.jlt-brand-text strong,
.brand-copy strong,
.jlt-brand strong,
.dark-brand strong,
.site-brand strong,
.logo-copy strong {
  font-size: 60% !important;
  line-height: 1.15 !important;
}

.jlt-brand-text span,
.brand-copy em,
.jlt-brand span,
.dark-brand span,
.site-brand span,
.logo-copy span {
  font-size: 60% !important;
  line-height: 1.2 !important;
}

.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.jlt-header-cta,
.header-cta {
  font-size: 60% !important;
}

.investor-content-home .reference-home-hero .home-light-copy h1,
.investor-content-home .home-light-copy h1,
.jlt-hero-copy h1,
.page-hero h1,
.dark-page-hero h1,
.manufacturing-redesign .manufacturing-hero-clean h1,
.manufacturing-hero-clean h1,
.technology-hero h1,
.hero h1 {
  font-size: clamp(18px, 1.7vw, 25px) !important;
  line-height: 1.15 !important;
}

.section-title h2,
.section h2,
.cta-band h2,
.text-block h2,
.wide-split h2,
.manufacturing-redesign .section h2 {
  font-size: clamp(18px, 1.65vw, 24px) !important;
  line-height: 1.2 !important;
}

@media (max-width: 760px) {
  .jlt-brand-text strong,
  .brand-copy strong,
  .jlt-brand strong,
  .dark-brand strong,
  .site-brand strong,
  .logo-copy strong {
    font-size: 10px !important;
  }

  .jlt-brand-text span,
  .brand-copy em,
  .jlt-brand span,
  .dark-brand span,
  .site-brand span,
  .logo-copy span {
    font-size: 9px !important;
  }

  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .jlt-header-cta,
  .header-cta {
    font-size: 10px !important;
  }

  .investor-content-home .reference-home-hero .home-light-copy h1,
  .investor-content-home .home-light-copy h1,
  .jlt-hero-copy h1,
  .page-hero h1,
  .dark-page-hero h1,
  .manufacturing-redesign .manufacturing-hero-clean h1,
  .manufacturing-hero-clean h1,
  .technology-hero h1,
  .hero h1 {
    font-size: clamp(17px, 5.5vw, 23px) !important;
  }
}

/* Absolute final polish 2026-06-03: nav size, subtitle, image alignment, investor snapshot */
.jlt-nav a,
.nav a,
.main-nav a,
.dark-nav a,
.site-nav a,
.investor-content-home .home-full-nav a {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

.jlt-header-cta,
.header-cta {
  font-size: 13px !important;
  line-height: 1.15 !important;
}

.jlt-subtitle {
  font-size: clamp(13px, 1.05vw, 15px) !important;
  line-height: 1.35 !important;
  margin: 10px 0 12px !important;
}

.investor-content-home .jlt-artwork-panel {
  margin-top: 74px !important;
  align-self: start !important;
}

.investor-content-home .jlt-home-artwork {
  margin-top: 0 !important;
}

.investor-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) !important;
  align-items: center !important;
  column-gap: clamp(32px, 5vw, 78px) !important;
}

.investment-snapshot-panel {
  width: 100% !important;
  max-width: 340px !important;
  justify-self: end !important;
  margin-left: auto !important;
  padding: 20px !important;
  border-radius: 20px !important;
}

.snapshot-metric-grid {
  gap: 9px !important;
}

.snapshot-metric-grid article {
  min-height: 64px !important;
  padding: 11px 12px !important;
  border-radius: 13px !important;
}

.snapshot-metric-grid strong {
  font-size: clamp(15px, 1.35vw, 20px) !important;
  line-height: 1.08 !important;
  margin-bottom: 4px !important;
}

.snapshot-metric-grid span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}

.page-hero-inner,
.wide-split,
.split-section {
  align-items: center !important;
}

.section,
.investor-section,
.dark-section {
  padding-top: clamp(34px, 4.5vw, 62px) !important;
  padding-bottom: clamp(34px, 4.5vw, 62px) !important;
}

.section-head {
  margin-bottom: clamp(18px, 2.5vw, 34px) !important;
}

.section-head p,
.page-hero p,
.jlt-body,
.text-block p {
  line-height: 1.55 !important;
}

@media (max-width: 900px) {
  .investor-hero .page-hero-inner {
    grid-template-columns: 1fr !important;
  }

  .investment-snapshot-panel {
    justify-self: stretch !important;
    max-width: none !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 760px) {
  .jlt-nav a,
  .nav a,
  .main-nav a,
  .dark-nav a,
  .site-nav a,
  .investor-content-home .home-full-nav a {
    font-size: 12px !important;
  }

  .jlt-subtitle {
    font-size: 13px !important;
  }

  .investor-content-home .jlt-artwork-panel {
    margin-top: 28px !important;
  }

  .section,
  .investor-section,
  .dark-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* Absolute final sticky navigation panel across all pages */
.jlt-clean-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
}

@media (max-width: 760px) {
  .jlt-clean-header {
    position: sticky !important;
    top: 0 !important;
  }
}

/* Home hero final text balance */
.investor-content-home .jlt-subtitle {
  font-size: clamp(17px, 1.35vw, 20px) !important;
  line-height: 1.35 !important;
  margin: 12px 0 10px !important;
}

.investor-content-home .jlt-body {
  font-size: clamp(12px, 1vw, 14px) !important;
  line-height: 1.5 !important;
  max-width: 620px !important;
}

@media (max-width: 760px) {
  .investor-content-home .jlt-subtitle {
    font-size: 16px !important;
  }

  .investor-content-home .jlt-body {
    font-size: 12px !important;
  }
}
