/* ============================================================
   E-VECTOR LABS — MASTER STYLESHEET
   Tactical Light Theme
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --black:        #000000;
  --brand-green:  #00bf63;
  --white:        #FFFFFF;
  --off-white:    #F5F5F0;
  --light-gray:   #EBEBEB;
  --mid-gray:     #8A8A8A;
  --dark-gray:    #1A1A1A;
  --green-light:  #E6FFF3;
  --green-mid:    #00a854;
  --green-dark:   #007A3D;
  --green-glow:   rgba(0, 191, 99, 0.12);
  --black-alpha:  rgba(0, 0, 0, 0.06);

  --mono:    'IBM Plex Mono', monospace;
  --sans:    'IBM Plex Sans', sans-serif;
  --display: 'Barlow Condensed', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
}
.cursor svg line { stroke: var(--black); stroke-width: 1.5; }
.cursor.hover svg line { stroke: var(--brand-green); }

@media (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ---- ENGINEERING GRID ---- */
.engineering-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---- LAYOUT ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.page-section { padding: 120px 0; }
@media (max-width: 768px) { .page-section { padding: 80px 0; } }

/* ---- SECTION LABELS & TITLES ---- */
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-green);
}
.section-label--center { justify-content: center; }

.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 400;
}

/* ---- BUTTONS ---- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1.5px solid var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  font-weight: 600;
}
.btn-primary {
  background: var(--brand-green);
  color: var(--black);
  border-color: var(--brand-green);
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--brand-green);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-green);
  border-color: var(--brand-green);
}
.btn-secondary:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--black);
}

/* ---- TACTICAL CARD FRAME ---- */
.tactical-card {
  position: relative;
  border: 1.5px solid var(--light-gray);
  padding: 32px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 4px;
}
.tactical-card::before,
.tactical-card::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--brand-green);
  border-style: solid;
  transition: all 0.3s ease;
}
.tactical-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.tactical-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.tactical-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-3px);
}
.tactical-card:hover::before,
.tactical-card:hover::after {
  width: 24px;
  height: 24px;
}
.tactical-label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  margin-bottom: 12px;
}
.tactical-desc {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ---- STAT BLOCK ---- */
.stat-block  { border-top: 2px solid var(--black); padding-top: 16px; }
.stat-value  {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brand-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  padding: 0 40px;
}
.nav.scrolled { border-bottom-color: var(--brand-green); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nav-logo-evector {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.nav-logo-labs {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-green);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-gray);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand-green);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--black); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--brand-green);
  color: var(--black) !important;
  border: 1.5px solid var(--brand-green);
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--black) !important;
  border-color: var(--black) !important;
  color: var(--brand-green) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  position: relative;
}
.mobile-menu a::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--brand-green);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 0 20px; }
}

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero .engineering-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-green);
}
.page-hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 600px;
}
.page-hero-subtitle {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--dark-gray);
  max-width: 600px;
  line-height: 1.7;
}
.page-hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brand-green);
  opacity: 0.15;
  animation: scanline 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scanline { from { top: 80px; } to { top: 100%; } }

@media (max-width: 900px) {
  .page-hero-title { font-size: clamp(36px, 10vw, 56px); }
}

/* ============================================================
   HOME HERO (full-screen)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero .engineering-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brand-green);
  opacity: 0.2;
  animation: scanline 3s linear infinite;
  pointer-events: none;
  z-index: 2;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-content { position: relative; }
.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}
.hero-headline .word.animate {
  animation: wordReveal 0.6s ease-out forwards;
}
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }

.hero-tagline {
  font-family: var(--mono);
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--brand-green);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero-body {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--dark-gray);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-tactical-overlay {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  margin-top: 40px;
}
.hero-tactical-overlay span { color: var(--brand-green); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thermal-diagram { width: 100%; max-width: 480px; position: relative; }
.thermal-diagram svg { width: 100%; height: auto; }
.spec-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--black);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--light-gray);
  padding: 4px 10px;
  white-space: nowrap;
}
.spec-tag .val { color: var(--brand-green); font-weight: 600; }
.spec-tag-1 { top: 10%; right: -10px; }
.spec-tag-2 { bottom: 30%; right: -20px; }
.spec-tag-3 { bottom: 10%; left: 10%; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(36px, 10vw, 56px); }
}

/* ============================================================
   BRAND STATEMENT BAR
   ============================================================ */
.brand-bar {
  background: var(--black);
  padding: 48px 0;
  overflow: hidden;
}
.brand-bar-inner { text-align: center; }
.brand-bar-headline {
  font-family: var(--mono);
  font-size: clamp(18px, 3vw, 28px);
  color: var(--brand-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-bar-sub {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  margin-top: 24px;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 40px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   PRODUCT ECHELONS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.echelon-card {
  position: relative;
  border: 1px solid var(--black);
  padding: 40px 32px 32px;
  background: var(--white);
  transition: all 0.3s ease;
}
.echelon-card::before,
.echelon-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--brand-green);
  border-style: solid;
  transition: all 0.3s ease;
}
.echelon-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.echelon-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.echelon-card:hover {
  border-left: 3px solid var(--brand-green);
  transform: translateY(-3px);
}
.echelon-card:hover .echelon-num { color: var(--brand-green); }
.echelon-card:hover .echelon-arrow { opacity: 1; transform: translateX(0); }

.echelon-num {
  font-family: var(--mono);
  font-size: 48px; font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.echelon-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.echelon-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.echelon-arrow {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--brand-green);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.echelon-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.echelon-icon svg { width: 100%; height: 100%; }

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

/* ============================================================
   TECHNICAL SPECIFICATIONS
   ============================================================ */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.spec-block { border-top: 2px solid var(--black); padding-top: 24px; }
.spec-metric {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.spec-metric .unit { font-size: 0.5em; color: var(--brand-green); }
.spec-name {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.spec-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}
.spec-mono-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

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

/* ---- Architecture Comparison ---- */
.arch-compare { margin-top: 64px; }
.arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.arch-card {
  position: relative;
  border: 1px solid var(--black);
  padding: 32px;
  background: var(--white);
}
.arch-card::before,
.arch-card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--brand-green);
  border-style: solid;
}
.arch-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.arch-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.arch-res {
  font-family: var(--display);
  font-size: 36px; font-weight: 900;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.arch-focus {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brand-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.arch-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.arch-row-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.arch-row-val {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-gray);
  text-align: right;
}

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

/* ============================================================
   SUPPLY CHAIN SECURITY
   ============================================================ */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.supply-card {
  background: var(--black);
  color: var(--white);
  padding: 40px 32px;
  position: relative;
}
.supply-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-green);
}
.supply-icon { width: 40px; height: 40px; margin-bottom: 20px; }
.supply-icon svg { width: 100%; height: 100%; }
.supply-title {
  font-family: var(--display);
  font-size: 20px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.supply-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.supply-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-top: 16px;
  display: inline-block;
  border: 1px solid var(--brand-green);
  padding: 4px 12px;
}
.supply-tagline {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--brand-green);
  letter-spacing: 0.05em;
  text-align: center;
}

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

/* ============================================================
   INTEROPERABILITY DIAGRAM
   ============================================================ */
.interop-diagram { max-width: 720px; margin: 48px auto 0; position: relative; }
.interop-svg { width: 100%; height: auto; }

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.interop-line { animation: pulse-line 2s ease-in-out infinite; }
.interop-line:nth-child(2) { animation-delay: 0.4s; }
.interop-line:nth-child(3) { animation-delay: 0.8s; }
.interop-line:nth-child(4) { animation-delay: 1.2s; }
.interop-line:nth-child(5) { animation-delay: 1.6s; }

.interop-tagline {
  margin-top: 48px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-green);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 0;
}

/* ============================================================
   END-TO-END CAPABILITY
   ============================================================ */
.e2e-loop { max-width: 800px; margin: 48px auto 0; }
.e2e-loop svg { width: 100%; height: auto; }
.e2e-tags {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.e2e-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
  padding: 8px 20px;
  text-transform: uppercase;
}
.e2e-body {
  text-align: center;
  max-width: 640px;
  margin: 24px auto 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ============================================================
   DEPLOYMENT DOMAINS / RADAR
   ============================================================ */
.deploy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.deploy-radar {
  position: relative;
  width: 360px; height: 360px;
  margin: 0 auto;
}
.radar-circle {
  position: absolute;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
}
.radar-circle-1 { width: 100%; height: 100%; top: 0; left: 0; }
.radar-circle-2 { width: 66%; height: 66%; top: 17%; left: 17%; }
.radar-circle-3 { width: 33%; height: 33%; top: 33.5%; left: 33.5%; }
.radar-center {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radar-sweep {
  position: absolute;
  top: 50%; left: 50%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green), transparent);
  transform-origin: left center;
  animation: radarSweep 4s linear infinite;
}
@keyframes radarSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.radar-crosshair-h,
.radar-crosshair-v { position: absolute; background: var(--light-gray); }
.radar-crosshair-h { width: 100%; height: 1px; top: 50%; left: 0; }
.radar-crosshair-v { width: 1px; height: 100%; left: 50%; top: 0; }

.deploy-cards { display: flex; flex-direction: column; gap: 24px; }
.deploy-card {
  position: relative;
  border: 1px solid var(--light-gray);
  padding: 24px 28px;
  background: var(--white);
  transition: all 0.3s ease;
}
.deploy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--brand-green);
  transition: height 0.3s ease;
}
.deploy-card:hover::before { height: 100%; }
.deploy-card:hover { border-color: var(--brand-green); }
.deploy-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.deploy-card-title {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.deploy-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .deploy-content { grid-template-columns: 1fr; }
  .deploy-radar { width: 280px; height: 280px; }
}

/* Responsive illustration grid */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   THERMAL CONTRAST DEMO
   ============================================================ */
.thermal-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 48px;
  border: 1px solid var(--black);
}
.thermal-panel {
  padding: 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thermal-panel-std { background: #E8E8E8; }
.thermal-panel-adv { background: #0A0A0A; }
.thermal-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thermal-panel-std .thermal-img-placeholder {
  background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 50%, #B0B0B0 100%);
}
.thermal-panel-adv .thermal-img-placeholder {
  background: linear-gradient(135deg, #001a0a 0%, #003d1a 30%, #00bf63 60%, #001a0a 100%);
}
.thermal-panel-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.thermal-panel-std .thermal-panel-label { color: var(--mid-gray); }
.thermal-panel-adv .thermal-panel-label { color: var(--brand-green); }
.thermal-img-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.thermal-panel-std .thermal-img-text { color: var(--mid-gray); }
.thermal-panel-adv .thermal-img-text { color: var(--brand-green); }

.thermal-readout {
  background: var(--black);
  color: var(--brand-green);
  padding: 32px 24px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 2;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.readout-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}
.readout-row { display: flex; gap: 12px; }
.readout-key { color: rgba(255,255,255,0.4); min-width: 100px; }
.readout-val { color: var(--brand-green); }

@media (max-width: 900px) {
  .thermal-split { grid-template-columns: 1fr; }
  .thermal-readout {
    min-width: unset;
    border-left: none; border-right: none;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }
}

/* ============================================================
   STATISTICS STRIP
   ============================================================ */
.stats-strip {
  padding: 80px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%;
  height: 80%; width: 1px;
  background: var(--black);
}
.stats-value {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brand-green);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item:nth-child(2)::after { display: none; }
  .stats-item:nth-child(3),
  .stats-item:nth-child(4) { border-top: 1px solid var(--light-gray); }
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
  position: relative;
}
.cta-section .crosshair-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  pointer-events: none;
}
.cta-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 16px;
}
.cta-sub {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--dark-gray);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-contact {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}
.cta-contact a { color: var(--brand-green); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  border-top: 2px solid var(--brand-green);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .nav-logo-evector { color: var(--white); }
.footer-tagline {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--brand-green); }
.footer-contact-group { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.footer-contact-item a { color: var(--brand-green); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer-chennai { color: var(--brand-green); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-highlight {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--brand-green);
  letter-spacing: 0.05em;
  margin-top: 24px;
}

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.mv-card { padding: 40px 32px; }
.mv-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 16px;
}
.mv-card-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mv-card-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* Capabilities list */
.cap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark-gray);
}
.cap-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cap-item-icon svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS PAGE — DETAILED
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.product-detail-text h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}
.product-detail-text p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-bullet {
  width: 6px; height: 6px;
  background: var(--brand-green);
  flex-shrink: 0;
  margin-top: 8px;
}
.feature-item-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
}
.feature-item-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}
.spec-table-heading {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  padding: 12px 0 6px;
  border-bottom: 2px solid var(--black);
}
.spec-table td {
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
  vertical-align: top;
}
.spec-table td:first-child {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
  white-space: nowrap;
  width: 40%;
}
.spec-table td:last-child {
  font-family: var(--sans);
  color: var(--dark-gray);
}

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

/* ============================================================
   APPLICATIONS PAGE
   ============================================================ */
.applications-page .page-hero-title {
  line-height: 1.05;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.app-card {
  position: relative;
  border: 1px solid var(--light-gray);
  padding: 32px;
  background: var(--white);
  transition: all 0.3s ease;
}
.app-card::before,
.app-card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--brand-green);
  border-style: solid;
  transition: all 0.3s ease;
}
.app-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.app-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.app-card:hover { border-color: var(--brand-green); transform: translateY(-3px); }
.app-card-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.app-card-icon svg { width: 100%; height: 100%; }
.app-card-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.app-card-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .applications-page .page-hero-title {
  }
  .app-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  color: var(--black);
  transition: all 0.25s ease;
  outline: none;
  border-radius: 4px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 191, 99, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-item {}
.contact-info-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--dark-gray);
  line-height: 1.6;
}
.contact-info-value a {
  color: var(--black);
  border-bottom: 1px solid var(--brand-green);
  transition: color 0.2s ease;
}
.contact-info-value a:hover { color: var(--brand-green); }

.contact-coord {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
  padding: 8px 16px;
  display: inline-block;
  margin-top: 8px;
}

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

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}
.why-item:hover { border-color: var(--brand-green); }
.why-check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-check svg { width: 14px; height: 14px; }
.why-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.6;
}

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

/* ============================================================
   RULED DIVIDER
   ============================================================ */
.ruled-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 80px 0;
}
.ruled-divider::before,
.ruled-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--black);
}
.ruled-divider-dot {
  width: 6px; height: 6px;
  background: var(--brand-green);
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.nav-logo-img {
  width: 150px;
  height: auto;
  display: block;
}
.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .footer-logo-img { margin: 0 auto; }
}

/* ============================================================
   PRODUCT IMAGE — TACTICAL FRAME
   ============================================================ */
.product-img-frame {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-frame::before,
.product-img-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--brand-green);
  border-style: solid;
}
.product-img-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.product-img-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.product-img-frame img,
.product-img-frame object,
.product-img-frame svg {
  width: 100%;
  height: auto;
  display: block;
}
.product-img-frame img {
  mix-blend-mode: multiply;
}

/* Corner brackets extra — top-right and bottom-left via inner spans */
.product-img-frame .corner-tr,
.product-img-frame .corner-bl {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--brand-green);
  border-style: solid;
}
.product-img-frame .corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.product-img-frame .corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }

/* Floating HUD overlay on product images */
.product-img-hud {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  text-transform: uppercase;
  pointer-events: none;
}

/* Hero product image — large showcase */
.hero-product-showcase {
  position: relative;
}
.hero-product-showcase img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.hero-product-showcase .crosshair-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.15;
}

/* Product wide banner image */
.product-banner {
  position: relative;
  border: 1px solid var(--light-gray);
  overflow: hidden;
}
.product-banner::before,
.product-banner::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--brand-green);
  border-style: solid;
  z-index: 2;
}
.product-banner::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.product-banner::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.product-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.product-banner-hud {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}

/* Scan line on product images */
.product-img-frame .img-scanline,
.product-banner .img-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brand-green);
  opacity: 0.25;
  animation: scanline 3s linear infinite;
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   SVG ILLUSTRATION FRAMES
   ============================================================ */
.svg-frame {
  position: relative;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  background: #FAFAFA;
}
.svg-frame img,
.svg-frame object {
  width: 100%;
  height: auto;
  display: block;
}
.svg-frame--dark {
  background: #0a0a0a;
  border-color: #222;
}

/* Full-width illustration banner */
.illustration-banner {
  position: relative;
  width: 100%;
  margin: 48px 0;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
}
.illustration-banner--dark {
  border-color: #222;
}
.illustration-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section visual — for side-by-side layout imagery */
.section-visual {
  position: relative;
}
.section-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
}
.section-visual--dark img {
  border-color: #222;
}

/* ============================================================
   REAL PRODUCT IMAGES — DARK BG FRAMES
   ============================================================ */
.product-showcase-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0f1a;
  border: 1px solid #1a2a3a;
}
.product-showcase-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Full-width dark product banner */
.product-dark-banner {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #0a0f1a;
  border: 1px solid #1a2a3a;
}
.product-dark-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tactical green corner accents on dark images */
.product-showcase-img::before,
.product-showcase-img::after,
.product-dark-banner::before,
.product-dark-banner::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--brand-green);
  border-style: solid;
  z-index: 2;
  opacity: 0.6;
}
.product-showcase-img::before,
.product-dark-banner::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.product-showcase-img::after,
.product-dark-banner::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

/* ============================================================
   PRODUCT GALLERY — applications.html
   ============================================================ */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
}
.gallery-img-wrap::before,
.gallery-img-wrap::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--brand-green);
  border-style: solid;
  z-index: 2;
  opacity: 0.7;
}
.gallery-img-wrap::before { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; }
.gallery-img-wrap::after  { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; }
.gallery-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item--wide .gallery-img-wrap img {
  height: 340px;
}
.gallery-img-wrap:hover img {
  transform: scale(1.03);
}
.gallery-item-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
  padding: 10px 4px 4px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .product-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide {
    grid-column: span 1;
  }
  .gallery-img-wrap img,
  .gallery-item--wide .gallery-img-wrap img {
    height: 220px;
  }
}

/* ============================================================
   SECTION WITH SIDE IMAGE — applications.html
   ============================================================ */
.section-with-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.section-side-img img {
  max-height: 300px;
  object-fit: cover;
}
.deploy-img img {
  max-height: 360px;
  object-fit: cover;
}
.application-equivalent-img {
  height: clamp(220px, 28vw, 320px);
  object-fit: contain;
  object-position: center;
  background: #f8f8f8;
}
@media (max-width: 768px) {
  .section-with-img {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .application-equivalent-img {
    height: 220px;
  }
  .brand-bar-inner[style] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}
