/* ============================================
   BLACK WAVE DEFENCE — PIXEL-PERFECT MATCH
   Theme: Black & White. Cyan = logo mark only.
   Images: Fully visible, gradient left-fade only.
   ============================================ */

:root {
  --black:      #000000;
  --bg:         #060608;
  --bg2:        #0a0b0e;
  --bg3:        #0e1014;
  --card:       #111318;
  --card2:      #161820;
  --border:     #1c1f26;
  --border2:    #242830;
  --white:      #ffffff;
  --white90:    #e8ecf0;
  --white60:    #8a95a0;
  --white30:    #3d4550;
  --white15:    #1e2228;
  --cyan:       #4fc3f7;   /* used ONLY on logo mark, eyebrow label, underline dash */
  --fh:         'Barlow Condensed', sans-serif;
  --fb:         'Barlow', sans-serif;
  --nh:         90px;
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white60);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── NOISE ─── */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:9998;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ════════════════════════════════
   TYPOGRAPHY
════════════════════════════════ */
.t-hero {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.91;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.t-xl {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.93;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--white);
}
.t-lg {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.t-md {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
/* Eyebrow — cyan text + cyan dash */
.eyebrow {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-dash {
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ════════════════════════════════
   LAYOUT
════════════════════════════════ */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 64px; }
.sec  { padding: 96px 0; }
.sec-sm { padding: 56px 0; }

/* ════════════════════════════════
   BUTTONS  — pure B&W
════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--fh); font-size: 13px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s var(--ease);
  border: none; white-space: nowrap;
}
.btn-border {
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white); background: transparent;
  padding: 12px 24px;
}
.btn-border:hover { background: rgba(255,255,255,0.07); border-color: var(--white); }

.btn-solid {
  background: var(--white); color: var(--black);
  padding: 12px 28px;
}
.btn-solid:hover { background: var(--white90); }

.btn-sm {
  border: 1px solid var(--border2);
  color: var(--white60); background: transparent;
  padding: 9px 18px; font-size: 12px;
}
.btn-sm:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nh); z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
  
}
#navbar.scrolled {
  background: rgba(6,6,8,0.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 64px;
  max-width: 1400px; margin: 0 auto;
}

/* ── Logo PNG image ── */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: auto;
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-family: var(--fh); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--white60); padding: 8px 14px;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 1px; left: 14px; right: 14px; height: 1px;
  background: var(--white); transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* GET IN TOUCH */
.nav-cta {
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
  background: transparent;
  padding: 9px 18px;
  font-family: var(--fh); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
  transition: all 0.2s !important; margin-left: 12px;
}
.nav-cta:hover { background: rgba(255,255,255,0.06) !important; border-color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--white); transition: 0.25s; display: block; }

/* Mobile menu */
.mob-menu {
  position: fixed; top: 0; right: -100%; width: 290px; height: 100vh;
  background: rgba(6,6,8,0.98); backdrop-filter: blur(20px);
  z-index: 1001; padding: 88px 36px 40px;
  transition: right 0.3s var(--ease); border-left: 1px solid var(--border);
}
.mob-menu.open { right: 0; }
.mob-links { display: flex; flex-direction: column; }
.mob-links a {
  font-family: var(--fh); font-size: 26px; font-weight: 800;
  text-transform: uppercase; color: var(--white60);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-links a:hover, .mob-links a.active { color: var(--white); }
.mob-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-close {
  position: absolute; top: 20px; right: 20px; width: 38px; height: 38px;
  background: none; border: 1px solid var(--border2); color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mob-close:hover { border-color: var(--white60); }

/* ════════════════════════════════
   BREADCRUMB
════════════════════════════════ */
.bc {
  font-family: var(--fh); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white30); display: flex; align-items: center; gap: 8px;
}
.bc a:hover { color: var(--white60); }
.bc .sep { opacity: 0.4; }
.bc .cur { color: var(--white60); }

/* ════════════════════════════════
   HOMEPAGE HERO
════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: right center;
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.92) 25%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.0)  80%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: var(--nh);
  width: 100%;
}
.hero-inner {
  padding: 88px 0 88px 0;
  max-width: 580px;
}

.hero-small {
  font-family: var(--fh); font-size: 13px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--white60); margin-bottom: 20px;
}
.hero-tagline {
  font-family: var(--fh); font-size: clamp(14px, 2vw, 22px);
  font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white60); margin-top: 16px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tagline .div { color: var(--white30); }
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--white60); max-width: 420px; margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; }

/* Feature bar */
.feat-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.feat-bar-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feat-pill {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.feat-pill:last-child { border-right: none; }
.fp-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white60);
}
.fp-t { font-family: var(--fh); font-size: 13px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: var(--white); margin-bottom: 3px; }
.fp-d { font-size: 12px; color: var(--white30); }

/* ════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.ph {
  position: relative;
  padding: calc(var(--nh) + 56px) 0 72px;
  background: var(--black); overflow: hidden;
  min-height: 440px;
}
.ph-bg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 80%; z-index: 0;
}
.ph-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ph-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.92) 25%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.0)  80%
  );
  z-index: 1;
}
.ph-content { position: relative; z-index: 2; }

/* Breadcrumb inside page hero */
.ph-content .bc { margin-bottom: 20px; }
.ph-content .eyebrow { margin-bottom: 16px; }
.ph-content h1 { margin-top: 0; }
.ph-content > p,
.ph-content p { margin-top: 20px; }

/* ════════════════════════════════
   STATS BAR
════════════════════════════════ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-row {
  display: flex; align-items: center;
}
.stat-col {
  display: flex; align-items: center; gap: 16px;
  flex: 1; padding: 0 28px;
  border-right: 1px solid var(--border);
}
.stat-col:last-child { border-right: none; }
.stat-circle {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white60);
}
.stat-n {
  font-family: var(--fh); font-size: 42px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-l {
  font-family: var(--fh); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white30); margin-top: 4px;
}

/* ════════════════════════════════
   SOLUTION CARDS
════════════════════════════════ */
.sol-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  border: 1px solid var(--border); border-bottom: none;
}
.sol-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.sol-card:last-child { border-right: none; }
.sol-photo {
  aspect-ratio: 3/4; position: relative;
}
.sol-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.sol-card:hover .sol-photo img { transform: scale(1.04); }
.sol-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, transparent 100%);
}
.sol-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px; z-index: 2;
}
.sol-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; color: var(--white60);
}
.sol-title {
  font-family: var(--fh); font-size: 14px; font-weight: 800;
  text-transform: uppercase; color: var(--white); line-height: 1.15; margin-bottom: 5px;
}
.sol-desc { font-size: 11.5px; color: var(--white60); line-height: 1.45; margin-bottom: 8px; }
.sol-arr {
  font-family: var(--fh); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--white60);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.sol-card:hover .sol-arr { gap: 10px; color: var(--white); }

/* ════════════════════════════════
   PRODUCT CARDS
════════════════════════════════ */
.prod-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border);
}
.prod-card {
  scroll-margin-top: calc(var(--nh) + 20px);
  background: var(--bg2); padding: 0 0 32px 0;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
.prod-card .prod-body { padding: 28px 32px 0; display: flex; flex-direction: column; flex: 1; }
.prod-photo {
  width: 100%; aspect-ratio: 16/11; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #14171d 0%, #0a0b0e 60%, #000 100%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.prod-photo::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.045) 1px, transparent 0);
  background-size: 16px 16px;
}
.prod-photo::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.prod-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.prod-photo-ic {
  position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--border2); background: rgba(10,11,14,0.6);
  display: flex; align-items: center; justify-content: center; color: var(--white30);
  transition: color 0.25s, border-color 0.25s;
}
.prod-card:hover .prod-photo-ic { color: var(--white60); border-color: var(--white30); }
.prod-photo-label {
  position: absolute; bottom: 10px; right: 12px; z-index: 1;
  font-family: var(--fh); font-size: 8.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white30);
}
.prod-card:nth-child(3n) { border-right: none; }
.prod-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--white); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.prod-card:hover { background: var(--card); }
.prod-card:hover::before { transform: scaleX(1); }
.prod-tag {
  font-family: var(--fh); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white60); border: 1px solid var(--border2);
  padding: 3px 9px; display: inline-block; margin-bottom: 14px;
}
.prod-icon-w {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--white60);
  transition: border-color 0.2s;
}
.prod-card:hover .prod-icon-w { border-color: var(--white30); }
.prod-name { font-family: var(--fh); font-size: 24px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.prod-desc { font-size: 13.5px; color: var(--white60); line-height: 1.6; margin-bottom: 22px; }
.prod-specs { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.prod-spec { display: flex; justify-content: space-between; font-size: 13px; }
.sk { color: var(--white30); }
.sv { font-family: var(--fh); font-weight: 700; color: var(--white90); }
.prod-link { display: flex; align-items: center; gap: 6px; font-family: var(--fh); font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--white60); transition: gap 0.2s, color 0.2s; }
.prod-card:hover .prod-link { gap: 11px; color: var(--white); }

/* ════════════════════════════════
   MISSION CARDS (About page)
════════════════════════════════ */
.mission-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--border);
}
.mc {
  background: var(--bg2); padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.mc:last-child { border-right: none; }
.mc-icon {
  width: 44px; height: 44px; border-radius: 0;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--white60);
}
.mc-title { font-family: var(--fh); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.mc-dash { width: 26px; height: 2px; background: var(--cyan); margin-bottom: 12px; }
.mc-text { font-size: 13px; color: var(--white60); line-height: 1.65; }
.mc ul { display: flex; flex-direction: column; gap: 5px; }
.mc ul li { font-size: 13px; color: var(--white60); display: flex; align-items: flex-start; gap: 6px; }
.mc ul li::before { content: '•'; color: var(--white30); flex-shrink: 0; }

/* ════════════════════════════════
   TECH FEATURES 2×2
════════════════════════════════ */
.tech-2col {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.tf {
  background: var(--bg2); padding: 40px 36px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.tf:nth-child(even) { border-right: none; }
.tf-num { font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white60); margin-bottom: 14px; }
.tf-title { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 10px; }
.tf-text { font-size: 13.5px; color: var(--white60); line-height: 1.7; }
.tf-ghost { position: absolute; right: 12px; top: 8px; font-family: var(--fh); font-size: 68px; font-weight: 800; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none; }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 44px 56px; display: flex; align-items: center;
  gap: 40px; justify-content: space-between;
  position: relative;
}
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--white30), transparent 70%);
}
.cta-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white60); }
.cta-copy {}
.cta-title { font-family: var(--fh); font-size: clamp(20px, 2.5vw, 34px); font-weight: 800; color: var(--white); text-transform: uppercase; }
.cta-text { font-size: 14px; color: var(--white60); max-width: 480px; margin-top: 6px; line-height: 1.6; }
.cta-right { flex-shrink: 0; }

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
.gal-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.gal-item { aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gal-item:hover img { transform: scale(1.05); }
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-zoom { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; color: var(--white); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 18px; background: none; border: 1px solid var(--border2); color: var(--white); width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-close:hover { border-color: var(--white60); }

/* ════════════════════════════════
   CONTACT FORM
════════════════════════════════ */
.cf {
  background: var(--bg2); border: 1px solid var(--border); padding: 44px;
}
.cf-h { font-family: var(--fh); font-size: 18px; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 6px; }
.cf-rule { width: 32px; height: 2px; background: var(--cyan); margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1/-1; }
.fl { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white30); }
.fi, .fta, .fsel {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border2);
  color: var(--white); font-family: var(--fb); font-size: 13.5px;
  padding: 11px 14px; transition: border-color 0.2s, background 0.2s;
  outline: none; width: 100%; -webkit-appearance: none;
}
.fi:focus, .fta:focus, .fsel:focus { border-color: var(--white30); background: rgba(255,255,255,0.05); }
.fi::placeholder, .fta::placeholder { color: var(--white30); opacity: 0.7; }
.fta { min-height: 130px; resize: vertical; }
.fsel option { background: #0a0b0e; }

/* Contact info side */
.ci { background: var(--bg2); border: 1px solid var(--border); padding: 36px; }
.ci-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.ci-row:last-child { border-bottom: none; }
.ci-ic { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white60); }
.ci-l { font-family: var(--fh); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white60); margin-bottom: 3px; }
.ci-v { font-size: 13.5px; color: var(--white); line-height: 1.5; }
.ci-v a { color: inherit; text-decoration: none; }
.ci-v a:hover { color: var(--cyan); text-decoration: underline; }
.hrs-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hrs-row:last-child { border-bottom: none; }
.hrs-d { font-family: var(--fh); font-size: 11.5px; font-weight: 700; text-transform: uppercase; color: var(--white); }

/* ════════════════════════════════
   CAREERS — Job Cards
════════════════════════════════ */
.job-card {
  background: var(--bg2); border: 1px solid var(--border);
  padding: 28px 32px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: flex-start; gap: 28px;
  flex-wrap: wrap;
}
.job-card:hover { background: var(--card); border-color: var(--border2); }
.jc-dept {
  font-family: var(--fh); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 6px;
}
.jc-title {
  font-family: var(--fh); font-size: 20px; font-weight: 800;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 10px;
}
.jc-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px;
}
.jc-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--white60);
}
.jc-desc {
  font-size: 13.5px; color: var(--white60); line-height: 1.65;
  max-width: 680px;
}
.jc-apply {
  font-family: var(--fh); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white60); margin-top: 14px;
  transition: color 0.2s;
}
.job-card:hover .jc-apply { color: var(--white); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

/* Footer logo PNG */
.ft-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.ft-name { font-family: var(--fh); font-size: 19px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.ft-wave { color: var(--cyan); }
.ft-sub { display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.ft-rule { flex: 1; height: 1px; background: var(--border2); width: 22px; }
.ft-def { font-family: var(--fh); font-size: 9px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--white30); }
.ft-desc { font-size: 13px; color: var(--white60); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.ft-ci { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--white60); margin-top: 9px; }
.ft-ci svg { color: var(--white30); flex-shrink: 0; }
.ft-ci a { color: inherit; text-decoration: none; }
.ft-ci a:hover { color: var(--white); text-decoration: underline; }
.ft-soc { display: flex; gap: 7px; margin-top: 18px; }
.soc { width: 32px; height: 32px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--white60); transition: 0.2s; }
.soc:hover { border-color: var(--white30); color: var(--white); }
.ft-col-h { font-family: var(--fh); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.ft-lnks { display: flex; flex-direction: column; gap: 7px; }
.ft-lnks a { font-size: 13px; color: var(--white60); transition: color 0.2s, padding-left 0.2s; }
.ft-lnks a:hover { color: var(--white90); padding-left: 5px; }
.ft-bot { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; }
.ft-copy { font-size: 12px; color: var(--white30); }
.ft-leg { display: flex; gap: 20px; }
.ft-leg a { font-size: 12px; color: var(--white30); transition: color 0.2s; }
.ft-leg a:hover { color: var(--white60); }

/* ════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   SECTION HEADER
════════════════════════════════ */
.sh { margin-bottom: 56px; }
.sh .eyebrow { margin-bottom: 14px; }
.sh p { font-size: 15px; color: var(--white60); line-height: 1.75; max-width: 540px; margin-top: 14px; font-weight: 300; }
.sh.c { text-align: center; }
.sh.c p { margin: 14px auto 0; }
.sh.c .eyebrow { justify-content: center; }
.sh.c .eyebrow-dash { display: none; }

/* Cert strip */
.cert-strip { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.cert-item { text-align: center; padding: 0 28px; border-right: 1px solid var(--border); }
.cert-item:last-child { border-right: none; }
.cert-mk { font-family: var(--fh); font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.cert-d { font-family: var(--fh); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white30); margin-top: 2px; line-height: 1.4; }

/* Policy pages */
.policy h2 { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--white); text-transform: uppercase; margin: 36px 0 10px; }
.policy p, .policy li { font-size: 14.5px; color: var(--white60); line-height: 1.8; margin-bottom: 10px; }
.policy ul { padding-left: 20px; list-style: disc; }
.policy a { color: var(--white90); }
.policy table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.policy th { background: var(--bg2); padding: 10px 14px; text-align: left; font-family: var(--fh); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white60); border-bottom: 1px solid var(--border); }
.policy td { padding: 10px 14px; font-size: 13px; color: var(--white60); border-bottom: 1px solid var(--border); }

/* Filter buttons */
.filter-btn { font-family: var(--fh); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 20px; border: 1px solid var(--border2); background: transparent; color: var(--white60); cursor: pointer; transition: 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: rgba(255,255,255,0.35); color: var(--white); background: rgba(255,255,255,0.04); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap { padding: 0 48px; }
  .nav-in { padding: 0 48px; }
  .hero-inner { padding: 88px 0; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .sol-grid { grid-template-columns: repeat(3,1fr); }
  .stats-row { flex-wrap: wrap; }
  .stat-col { flex: 0 0 33.33%; margin-bottom: 16px; padding: 0 20px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .mission-row { grid-template-columns: 1fr 1fr; }
  .mc:nth-child(2) { border-right: none; }
  /* About teaser grid */
  section .wrap > div[style*="grid-template-columns:1fr 1fr"] { gap: 40px !important; }
}
@media (max-width: 900px) {
  /* About teaser: stack vertically */
  section .wrap > div[style*="grid-template-columns:1fr 1fr;gap:80px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
@media (max-width: 768px) {
  :root { --nh: 80px; }
  .wrap { padding: 0 24px; }
  .nav-in { padding: 0 24px; }
  .sec { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 64px 0; max-width: 100%; }
  .prod-grid { grid-template-columns: 1fr; }
  .sol-grid {
    display: flex; overflow-x: auto;
    -webkit-overflow-scrolling: touch; gap: 12px; border: none;
    scrollbar-width: none; padding-bottom: 4px;
  }
  .sol-grid::-webkit-scrollbar { display: none; }
  .sol-card {
    flex: 0 0 72%;
    border: 1px solid var(--border) !important;
  }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .mission-row { grid-template-columns: 1fr; }
  .mc { border-right: none !important; }
  .stats-row { display: grid !important; grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .stat-col { flex: none !important; border-right: none !important; padding: 0 !important; justify-content: center; }
  .feat-bar-grid { grid-template-columns: 1fr; }
  .feat-pill { border-right: none !important; border-bottom: 1px solid var(--border); justify-content: flex-start; padding: 20px 0; }
  .feat-pill:last-child { border-bottom: none; }
  .sol6-grid { grid-template-columns: 1fr !important; }
  .prod-spec { flex-direction: column; align-items: flex-start; gap: 2px; }
  .sv { text-align: left; }
  .tech-2col { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 32px 24px; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bot { flex-direction: column; gap: 12px; text-align: center; }
  .frow { grid-template-columns: 1fr; }
  .cf { padding: 28px 20px; }
  .ci { padding: 24px 20px; }
  section .wrap > div[style*="grid-template-columns:1fr 1fr;gap:24px"] { grid-template-columns: 1fr !important; }
  .t-hero { font-size: clamp(44px, 12vw, 80px); }
  .ph { padding: calc(var(--nh) + 40px) 0 48px; min-height: auto; }
  .ph-bg { width: 100%; opacity: 0.18; }
  .ph-bg::before { background: var(--black); }
  .job-card { padding: 22px 20px; }
  .sh { margin-bottom: 40px; }
  section .wrap > div[style*="grid-template-columns:1fr 1px 1fr"] { grid-template-columns: 1fr !important; }
  section .wrap > div[style*="grid-template-columns:1fr 1px 1fr"] > div[style*="background:var(--border);height:100%"] { display: none; }
  section .wrap > div[style*="grid-template-columns:1fr 1px 1fr"] > div[style*="padding-right:56px"] { padding-right: 0 !important; margin-bottom: 32px; }
  section .wrap > div[style*="grid-template-columns:1fr 1px 1fr"] > div[style*="padding-left:56px"] { padding-left: 0 !important; }
  .wrap > div[style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: 1fr 1fr !important; }
  section .wrap > div[style*="grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border)"] { grid-template-columns: 1fr !important; }
  section .wrap > div[style*="grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border)"] { grid-template-columns: 1fr !important; }
  .cert-strip { display: grid !important; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .cert-item { border-right: none !important; text-align: left !important; padding: 0 !important; }
}
