:root {
  --n:  #080d18;
  --n2: #0b1220;
  --n3: #0d1628;
  --b:  #1a2d4a;
  --t:  #00d4d4;
  --tg: rgba(0,212,212,0.1);
  --w:  #f0f4f8;
  --m:  #6a8faa;
  --m2: #3a5a7a;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; margin-top: 0 !important; }
#wpadminbar { display: none; }

body {
  background: var(--n);
  color: var(--w);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  overflow-x: hidden;
  margin: 0; padding: 0;
}

/* HIDDEN ELEMENTS */
.sec-lbl       { display: none !important; }
.why-num       { display: none !important; }
.value-row-num { display: none !important; }

/* CUSTOM CURSOR — desktop only */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #3ecfcf;
  border-radius: 50%;
  background: rgba(62,207,207,0.06);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, border-width 0.22s ease, opacity 0.2s ease;
  will-change: transform;
  mix-blend-mode: normal;
}
.custom-cursor--hover {
  width: 42px;
  height: 42px;
  background: rgba(62,207,207,0.18);
}
.custom-cursor--click {
  width: 16px;
  height: 16px;
  background: rgba(62,207,207,0.35);
}
.has-custom-cursor,
.has-custom-cursor * {
  cursor: none !important;
}
/* Keep native cursor on text inputs/textareas so users can see the caret clearly */
.has-custom-cursor input,
.has-custom-cursor textarea {
  cursor: text !important;
}
@media (max-width: 900px) {
  .custom-cursor { display: none !important; }
  .has-custom-cursor,
  .has-custom-cursor * { cursor: auto !important; }
}

/* GLOBAL BODY TEXT SIZE — overrides all individual paragraph rules */
p,
li,
.split-text p,
.why-item p,
.cap-card p,
.bullet-list li,
.card p,
.partner-intro p,
.ip-body,
.contact-card-sub,
.pull-body,
.cta-inner p,
.eq-intro p,
.section-sub,
.hero-sub,
.work-card p,
.pub-item p,
.value-card p,
.mp-row-text,
.mp-status-text,
.job-body > p { font-size: 16px !important; font-weight: 500 !important; line-height: 1.8 !important; }

/* SCROLL PROGRESS BAR */
#prog {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--t), #0088ff);
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,212,212,0.6);
  transition: width 0.08s linear;
}

/* PLASMA BOLT CANVAS */
#cv {
  position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: 500;
  width: 140px;
}

/* PAGE CONTENT OFFSET */
.site-main, .page-content, .entry-content,
.elementor-section-wrap, #content {
  padding-left: 140px !important;
}

/* NAV */
.site-header {
  position: sticky !important; top: 0; z-index: 400;
  background: rgba(8,13,24,0.95) !important;
  border-bottom: 1px solid rgba(26,45,74,0.7);
  backdrop-filter: blur(16px);
  padding: 0 44px;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
}
.ardous-nav {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; padding-left: 115px;
}
.ardous-logo-ph {
  width: 38px; height: 38px;
  background: var(--n3);
  border: 1px dashed rgba(26,45,74,0.9);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.ardous-logo-ph img {
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.3) saturate(1.2);
}
.ardous-logo-ph span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 6px; color: var(--m2); text-align: center;
}
.ardous-navlinks { display: flex; gap: 22px; align-items: center; }
.ardous-navlinks a {
  color: var(--w); font-size: 11px; text-decoration: none;
  letter-spacing: 0.07em; text-transform: uppercase;
  font-weight: 400; opacity: 0.75; transition: opacity 0.2s;
}
.ardous-navlinks a:hover, .ardous-navlinks a.active { opacity: 1; }
.ardous-drop { position: relative; }
.ardous-drop:hover .ardous-ddsub { display: block; }
.ardous-ddsub {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 0;
  background: #09111f;
  border: 1px solid var(--b);
  border-radius: 4px; min-width: 220px;
  padding: 6px 0; z-index: 999;
}
.ardous-ddsub a {
  display: block; padding: 9px 16px;
  color: var(--m); font-size: 11px;
  text-transform: none; white-space: nowrap; opacity: 1;
}
.ardous-ddsub a:hover { color: var(--t); background: rgba(0,212,212,0.04); }
.ardous-nav-cta {
  border: 1px solid rgba(0,212,212,0.45);
  color: var(--t); background: transparent;
  font-size: 10px; padding: 7px 16px; border-radius: 3px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 600;
  text-decoration: none;
}

/* header.php nav overrides */
#ardous-nav {
  position: sticky; top: 0; z-index: 400;
  background: linear-gradient(90deg, #08090e 0%, #090a10 20%, #0b0d16 50%, #090a10 80%, #08090e 100%);
  border-bottom: 1px solid rgba(26,45,74,0.6);
  backdrop-filter: blur(16px);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px 0 115px;
}
.logo-ph {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--m2);
  border: 1.5px dashed rgba(0,212,212,0.3);
  border-radius: 4px; width: 110px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li { position: relative; }
.nav-links a, .nav-links .ni {
  display: flex; align-items: center;
  height: 60px; padding: 0 13px;
  color: rgba(240,244,248,0.72); font-size: 13px;
  text-decoration: none; cursor: pointer;
  transition: color 0.2s; white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.nav-links a:hover, .nav-links .ni:hover,
.nav-links a.active { color: var(--t); }
.dd-wrap { position: relative; }
.dd-menu {
  display: none; position: absolute;
  top: calc(100% + 2px); left: 0;
  background: rgba(11,18,32,0.99);
  border: 1px solid rgba(26,45,74,0.8);
  border-radius: 6px; min-width: 220px;
  padding: 6px 0; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.dd-menu.open { display: block; }
.dd-menu a {
  display: block; height: auto; padding: 10px 16px;
  color: var(--m); font-size: 12px; white-space: nowrap;
}
.dd-menu a:hover { color: var(--t); background: rgba(0,212,212,0.04); }
#mob-toggle { display: none; }
#mob-nav { display: none; }

/* BOLT RAIL (header.php SVG) */
.bolt-rail {
  position: fixed; left: 0; top: 0;
  width: 80px; height: 100vh;
  z-index: 50; pointer-events: none; overflow: hidden;
}

/* SECTION DIVIDERS */
.ardous-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(26,45,74,0.5) 30%,
    rgba(0,212,212,0.3) 50%,
    rgba(26,45,74,0.5) 70%,
    transparent);
  opacity: 0.5; margin: 0;
}

/* SHARED SECTION */
.ardous-sec { padding: 72px 52px; position: relative; }
.ardous-sec.bg2 { background: var(--n2); }
.ardous-sec.bg3 { background: #050a12; }
.sec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; color: var(--t);
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 10px; opacity: 0.7; text-align: center;
}
.sec-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 30px; font-weight: 700; color: var(--w);
  letter-spacing: 0.02em; margin-bottom: 8px; text-align: center;
}
.sec-sub {
  color: var(--m); font-size: 12px; line-height: 1.75;
  max-width: 580px; margin: 0 auto 36px; text-align: center;
}

/* HERO */
.ardous-hero {
  position: relative; min-height: 88vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden;
  background: #050a14;
}
.hero-img-wrap {
  position: absolute; inset: 0;
  background: #050a14;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-ph .ph-box {
  border: 1px dashed rgba(0,212,212,0.18); border-radius: 5px;
  padding: 18px 28px; text-align: center;
  background: rgba(0,212,212,0.015);
}
.hero-img-ph .ph-box .l1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: rgba(0,212,212,0.5);
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px;
}
.hero-img-ph .ph-box .l2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; color: var(--m2);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,212,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,212,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,10,20,0.98) 0%,
    rgba(5,10,20,0.6) 45%,
    rgba(5,10,20,0.12) 100%);
}
.hero-ov2 {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(5,10,20,0.88) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 52px 52px;
}
.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px; color: var(--t);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 18px; display: flex; gap: 12px; opacity: 0.75;
}
.hero-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px; font-weight: 700;
  line-height: 1.08; color: var(--w);
  margin-bottom: 16px; max-width: 730px;
}
.hero-content h1 em {
  font-style: normal; color: #00e5e5;
  text-shadow:
    0 0 25px rgba(0,229,229,0.55),
    0 0 50px rgba(0,229,229,0.25),
    0 0 90px rgba(0,212,212,0.15);
}
.hero-sub {
  color: var(--m); font-size: 13px; line-height: 1.75;
  max-width: 580px; margin-bottom: 12px;
}
.hero-body {
  color: var(--m2); font-size: 12px; line-height: 1.8;
  max-width: 560px; margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 12px; }
.btn-primary {
  background: var(--t); color: #050a14;
  font-size: 11px; padding: 12px 26px; border-radius: 3px;
  font-weight: 700; letter-spacing: 0.1em;
  border: none; cursor: pointer; text-transform: uppercase;
  font-family: 'Inter', sans-serif; text-decoration: none;
  display: inline-block;
}
.btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(0,212,212,0.45);
  color: var(--w); font-size: 11px; padding: 12px 26px;
  border-radius: 3px; cursor: pointer;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 500;
  text-decoration: none; display: inline-block;
}

/* CAPABILITIES */
.caps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
}
.cap-card {
  background: var(--n3);
  border: 1px solid rgba(26,45,74,0.8);
  border-radius: 4px; padding: 22px 18px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s;
}
.cap-card:hover { border-color: rgba(0,212,212,0.35); }
.cap-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--t); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.cap-card:hover::after { transform: scaleX(1); }
.cap-icon {
  width: 36px; height: 36px;
  background: rgba(0,212,212,0.07);
  border: 1px solid rgba(0,212,212,0.18);
  border-radius: 4px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.cap-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--w);
  margin-bottom: 7px; line-height: 1.3;
}
.cap-card p { color: var(--m); font-size: 11px; line-height: 1.75; margin: 0; }

/* WHY ARDOUS */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-check {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,212,212,0.07);
  border: 1px solid rgba(0,212,212,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.why-item h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--w); margin-bottom: 7px;
}
.why-item p { color: var(--m); font-size: 11px; line-height: 1.78; margin: 0; }
.why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 700;
  color: rgba(0,212,212,0.18);
  line-height: 1; margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.why-note {
  color: var(--m2); font-size: 11px; line-height: 1.8;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(26,45,74,0.5);
  text-align: center; font-style: italic;
}

/* EQUATIONS */
.equations-band { background: rgba(0,212,212,0.02); }
.eq-item {
  background: var(--n3);
  border: 1px solid rgba(26,45,74,0.8);
  border-left: 2px solid var(--t);
  border-radius: 4px; padding: 16px 18px;
}
.eq-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 8px;
  color: var(--t); opacity: 0.75;
}
.eq-expr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--w); line-height: 1.7;
}
.eq-layout {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 56px; align-items: start;
}
.eq-intro .sec-label, .eq-intro .sec-title { text-align: left; }
.eq-intro .sec-title { font-size: 26px; margin-bottom: 16px; }
.eq-intro p { color: var(--m); font-size: 12px; line-height: 1.85; margin-bottom: 13px; }
.eq-intro .note { color: var(--m2); font-size: 11px; font-style: italic; line-height: 1.7; margin-top: 14px; }
.eq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.eq-card {
  background: var(--n3);
  border: 1px solid rgba(26,45,74,0.8);
  border-left: 2px solid var(--t);
  border-radius: 4px; padding: 14px;
}
.eq-card.w2 { grid-column: 1/-1; }
.eq-card.or { border-left-color: #ff7700; }
.eq-card.pu { border-left-color: #9966ff; }
.eq-card.gr { border-left-color: #44cc88; }
.eq-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 7px;
  color: var(--t); opacity: 0.75;
}
.eq-card.or .eq-name { color: #ff7700; }
.eq-card.pu .eq-name { color: #9966ff; }
.eq-card.gr .eq-name { color: #44cc88; }
.eq-math {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--w); line-height: 1.7;
}
.eq-math.row { display: flex; gap: 32px; flex-wrap: wrap; }
.eq-desc {
  font-size: 9px; color: var(--m2); margin-top: 6px;
  font-style: italic; line-height: 1.5;
  border-top: 1px solid rgba(26,45,74,0.6); padding-top: 5px;
}

/* REP WORK */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.work-card {
  background: var(--n3);
  border: 1px solid rgba(26,45,74,0.8);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.25s;
}
.work-card:hover { border-color: rgba(0,212,212,0.3); }
.work-img {
  height: 110px; background: #070c16;
  border-bottom: 1px solid rgba(26,45,74,0.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.work-img img { width: 100%; height: 100%; object-fit: cover; }
.work-img .ph-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; color: rgba(0,212,212,0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.work-img .ph-s {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px; color: var(--m2);
}
.work-body { padding: 14px 16px; }
.work-body h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 600; color: var(--w);
  margin-bottom: 5px; line-height: 1.3;
}
.work-body p { color: var(--m); font-size: 10.5px; line-height: 1.65; margin: 0; }
.work-tag {
  display: inline-block;
  background: rgba(0,212,212,0.07);
  border: 1px solid rgba(0,212,212,0.18);
  border-radius: 2px; padding: 2px 7px; margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px; color: var(--t);
}

/* PARTNERING */
.partner-layout {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr;
  gap: 36px; align-items: start;
}
.partner-intro p { color: var(--m); font-size: 12px; line-height: 1.8; margin-bottom: 13px; }
.partner-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 600; color: var(--w);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(26,45,74,0.5);
}
.partner-col ul { list-style: none; padding: 0; margin: 0; }
.partner-col ul li {
  color: var(--m); font-size: 11px; line-height: 1.85;
  padding-left: 14px; position: relative;
}
.partner-col ul li::before {
  content: '—'; position: absolute; left: 0;
  color: rgba(0,212,212,0.35); font-size: 9px; top: 1px;
}
.contract-block {
  background: var(--n3); border: 1px solid rgba(26,45,74,0.8);
  border-radius: 4px; padding: 20px; margin-top: 20px;
}
.contract-block .cb-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; color: var(--t);
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 16px; opacity: 0.7;
}
.cb-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(26,45,74,0.5);
}
.cb-row:last-of-type { border-bottom: none; }
.cb-key { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; color: var(--m2); }
.cb-val { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; color: var(--w); }
.cb-val.teal { color: var(--t); }
.cb-val.green { color: #44cc88; }
.naics-pills { display: flex; gap: 5px; margin-top: 14px; flex-wrap: wrap; }
.naics-pill {
  background: rgba(0,212,212,0.07);
  border: 1px solid rgba(0,212,212,0.18);
  border-radius: 2px; padding: 3px 8px;
  font-size: 7.5px; color: var(--t);
  font-family: 'JetBrains Mono', monospace;
}
.partner-cta {
  background: var(--t); color: #050a14;
  font-size: 10px; padding: 11px 18px; border-radius: 3px;
  font-weight: 700; letter-spacing: 0.1em;
  border: none; cursor: pointer; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-top: 14px; display: block; width: 100%;
  text-align: center; text-decoration: none;
}

/* FOOTER */
.ardous-footer {
  background: #040810;
  border-top: 1px solid rgba(26,45,74,0.5);
  padding: 40px 52px 20px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 36px; margin-bottom: 28px;
}
.foot-logo-ph {
  width: 36px; height: 36px;
  background: var(--n3);
  border: 1px dashed rgba(26,45,74,0.7);
  border-radius: 3px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.foot-logo-ph img {
  width: 100%; height: 100%;
  object-fit: contain; mix-blend-mode: screen;
}
.foot-logo-ph span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 6px; color: var(--m2);
}
.foot-desc { color: var(--m2); font-size: 10px; line-height: 1.75; max-width: 200px; margin-top: 8px; }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; color: var(--t);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 12px; opacity: 0.7;
}
.foot-col a {
  display: block; color: var(--m2); font-size: 10px;
  text-decoration: none; margin-bottom: 7px;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--w); }
.foot-col p { color: var(--m2); font-size: 10px; line-height: 1.9; margin: 0; }
.foot-col p .t { color: var(--t); }
.foot-bottom {
  border-top: 1px solid rgba(26,45,74,0.4);
  padding-top: 14px; display: flex; justify-content: space-between;
}
.foot-bottom p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px; color: var(--m2); margin: 0;
}
.foot-bottom .t { color: var(--t); }

/* FOOTER (footer.php) */
footer {
  background: linear-gradient(90deg, #08090e 0%, #090a10 20%, #0b0d16 50%, #090a10 80%, #08090e 100%);
  border-top: 1px solid rgba(26,45,74,0.6);
  padding: 40px 64px 36px 115px;
}
.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}
.ft-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--t);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 9px; opacity: 0.85;
}
.ft-grid a, .ft-grid p {
  font-size: 12px; color: var(--m);
  line-height: 1.95; display: block; text-decoration: none;
}
.ft-grid a:hover { color: var(--w); }
.ft-bot {
  border-top: 1px solid rgba(26,45,74,0.5);
  padding-top: 14px; font-size: 11px;
  color: rgba(106,143,170,0.4);
  font-family: 'JetBrains Mono', monospace;
  display: flex; justify-content: space-between;
}

/* ══════════════════════════════════════════════════════════
   SHARED PAGE LAYOUT
══════════════════════════════════════════════════════════ */
.section { padding: 60px 64px 60px 115px; position: relative; }
.section.alt  { background: var(--n2); }
.section.dark { background: #050a12; }
.section.tight { padding-top: 32px; padding-bottom: 32px; }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px; font-weight: 700; color: var(--w);
  letter-spacing: 0.02em; margin-bottom: 10px; line-height: 1.1;
}
.section-sub {
  color: var(--m); font-size: 16px; line-height: 1.75;
  max-width: 640px; margin-bottom: 32px;
}

/* PAGE HERO */
.page-hero {
  padding: 72px 64px 60px 115px;
  background: linear-gradient(180deg, #050a12 0%, var(--n2) 100%);
  border-bottom: 1px solid rgba(26,45,74,0.5);
}
.page-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 56px; font-weight: 700; color: var(--w);
  line-height: 1.08; margin-bottom: 16px; max-width: 780px;
}
.page-sub {
  color: var(--m); font-size: 16px; line-height: 1.8;
  margin-bottom: 0;
}

/* HOMEPAGE HERO (index.php) */
.hero {
  padding: 100px 64px 80px 115px;
  background: linear-gradient(160deg, #050a12 0%, #07101e 60%, #080d18 100%);
  border-bottom: 1px solid rgba(26,45,74,0.4);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,212,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,212,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 66px; font-weight: 700; color: var(--w);
  line-height: 1.07; margin-bottom: 18px; max-width: 820px;
}
.hero .hero-sub {
  color: var(--m); font-size: 18px; line-height: 1.8;
  max-width: 620px; margin-bottom: 28px;
}
.hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ENERGY GLOW */
.energy {
  color: #00e5e5;
  text-shadow: 0 0 24px rgba(0,229,229,0.5), 0 0 48px rgba(0,229,229,0.2);
}

/* SECTION LABELS */
.sec-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--t);
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.85; display: block; margin-bottom: 10px;
}

/* BUTTONS */
.btn-p {
  display: inline-block;
  background: var(--t); color: var(--n);
  border: none; border-radius: 5px; padding: 12px 28px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.btn-p:hover { opacity: 0.88; }
.btn-s {
  display: inline-block;
  background: transparent; color: var(--w);
  border: 1px solid rgba(0,212,212,0.45); border-radius: 5px; padding: 12px 28px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-s:hover { border-color: var(--t); color: var(--t); }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.card-grid.four-col {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.card-grid.three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .card-grid.three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid.three-col { grid-template-columns: 1fr; }
}
.home-cap-sub { max-width: 100%; }
.home-cap-grid { grid-template-columns: repeat(2, 1fr); }
.home-cap-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.home-cap-card h3 { font-size: 15px; font-weight: 600; color: #e0e6ec; margin: 0 0 0.5rem; padding: 0 1.25rem; }
.home-cap-card p { font-size: 13px; color: #7d8d9d; line-height: 1.65; margin: 0 0 1rem; padding: 0 1.25rem; flex: 1; }
.home-cap-img { width: 100%; overflow: hidden; background: #060c15; }
.home-cap-img img { width: 100%; height: auto; object-fit: contain; display: block; }
.home-cap-img-chart img { background: #fff; }
.home-cap-card h3 { margin-top: 1rem; }
.home-cap-learn { display: inline-block; margin: 0 1.25rem 1.25rem; font-size: 13px; color: #3ecfcf; text-decoration: none; font-weight: 500; }
.home-cap-learn:hover { color: #fff; }
@media (max-width: 768px) {
  .home-cap-grid { grid-template-columns: 1fr; }
}

/* PROGRAMS WE SUPPORT */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2rem; }
.prog-item { background: #0f1922; border-radius: 10px; border: 1px solid rgba(255,255,255,0.04); padding: 1.5rem; transition: border-color 0.2s; }
.prog-item:hover { border-color: rgba(62,207,207,0.15); }
.prog-item h3 { font-size: 14px; font-weight: 600; color: #e0e6ec; margin-bottom: 0.5rem; line-height: 1.35; }
.prog-item p { font-size: 13px; color: #7d8d9d; line-height: 1.65; margin: 0; }
@media (max-width: 900px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prog-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--n3);
  border: 1px solid rgba(26,45,74,0.8);
  border-radius: 8px; padding: 22px;
  transition: border-color 0.22s, transform 0.18s;
}
.card:hover { border-color: rgba(0,212,212,0.42); transform: translateY(-2px); }
.card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--w);
  margin-bottom: 9px; line-height: 1.2;
}
.card p { color: var(--m); font-size: 12px; line-height: 1.78; margin: 0; }
.card-icon {
  width: 36px; height: 36px;
  background: rgba(0,212,212,0.07); border: 1px solid rgba(0,212,212,0.18);
  border-radius: 6px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--t);
}

/* TAGS */
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: rgba(0,212,212,0.7);
  background: rgba(0,212,212,0.07); border: 1px solid rgba(0,212,212,0.18);
  border-radius: 3px; padding: 3px 7px; letter-spacing: 0.05em;
}

/* IMAGE PLACEHOLDERS */
.img-ph {
  border: 1.5px dashed rgba(0,212,212,0.22); border-radius: 8px;
  background: rgba(13,22,40,0.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.img-ph-icon {
  width: 32px; height: 32px;
  border: 1px dashed rgba(0,212,212,0.22); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,212,212,0.35);
}
.img-ph-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: rgba(0,212,212,0.55);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.img-ph-hint { font-size: 11px; color: var(--m2); text-align: center; }
.hero-img-banner {
  width: 100%; height: 340px;
  border-top: 1px solid rgba(26,45,74,0.5);
  border-bottom: 1px solid rgba(26,45,74,0.5);
  background: rgba(5,10,18,0.8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.banner-ph {
  width: 100%; height: 340px;
  border-top: 1px solid rgba(26,45,74,0.5);
  border-bottom: 1px solid rgba(26,45,74,0.5);
  background: rgba(5,10,18,0.8);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}

/* SPLIT LAYOUTS */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; margin-top: 20px; }
.split.reverse .split-media { order: -1; }
.split-img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: 8px; display: block; min-height: 300px; }
.split-img--contain { object-fit: contain; height: auto; min-height: unset; background: transparent; }
.split-text { display: flex; flex-direction: column; gap: 14px; }
.split-text h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--w); line-height: 1.15; margin: 0;
}
.split-text p { color: var(--m); font-size: 12px; line-height: 1.85; margin: 0; }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, #060c1c 0%, #09152a 100%);
  border-top: 1px solid rgba(26,45,74,0.5);
  border-bottom: 1px solid rgba(26,45,74,0.5);
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--w); margin-bottom: 12px;
}
.cta-inner p { color: var(--m); font-size: 13px; line-height: 1.75; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* GROUP HEADERS */
.group-hdr { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.group-icon {
  width: 32px; height: 32px;
  background: rgba(0,212,212,0.07); border: 1px solid rgba(0,212,212,0.18);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--t); flex-shrink: 0;
}
.group-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--w);
}
.group-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(0,212,212,0.25), transparent); }

/* NAICS BAND */
.naics-band {
  background: var(--n3); border-top: 1px solid rgba(26,45,74,0.6);
  padding: 32px 64px 32px 115px; text-align: center;
}
.naics-band .naics-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.naics-band .naics-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--t);
  border: 1px solid rgba(0,212,212,0.35); border-radius: 20px; padding: 6px 18px;
  background: rgba(0,212,212,0.04);
}

/* TEAL DIVIDER */
.teal-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(0,212,212,0.25) 30%, rgba(0,212,212,0.5) 50%,
    rgba(0,212,212,0.25) 70%, transparent);
  margin: 0;
}

/* BULLET LISTS */
.bullet-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bullet-list li { color: var(--m); font-size: 12px; line-height: 1.7; padding-left: 18px; position: relative; }
.bullet-list li::before { content: '\2014'; position: absolute; left: 0; color: rgba(0,212,212,0.45); font-size: 10px; }

/* INFO ROWS */
.info-rows { display: flex; flex-direction: column; border-top: 1px solid rgba(26,45,74,0.5); margin-top: 20px; padding-top: 4px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(26,45,74,0.4); }
.info-key { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--m2); }
.info-val { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--w); }
.badge-active {
  background: rgba(68,204,136,0.12); border: 1px solid rgba(68,204,136,0.35);
  color: #44cc88; font-family: 'JetBrains Mono', monospace;
  font-size: 9px; padding: 2px 9px; border-radius: 3px;
}

/* ── CAPABILITIES PAGE ──────────────────────────────────── */
.cap-container { max-width: 1080px; margin: 0 auto; padding: 0 2.5rem; }

/* Cinematic hero overrides for capabilities */
.cap-cinematic .hc-overlay {
  background: linear-gradient(to bottom,
    rgba(8,13,24,0.65) 0%,
    rgba(8,13,24,0.25) 35%,
    rgba(8,13,24,0.25) 65%,
    rgba(8,13,24,0.75) 100%
  );
}
.cap-hc-inner {
  margin-left: 0 !important;
  padding-left: 115px !important;
  padding-right: 115px !important;
  max-width: 100% !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding-bottom: 80px !important;
}
.cap-hc-title {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 20px !important;
}
.cap-cinematic .ht-line { width: max-content; }
.cap-cinematic .ht-inner { display: block; }
@media (max-width: 768px) {
  .cap-hc-title { width: auto !important; font-size: clamp(32px, 9vw, 44px) !important; max-width: 100% !important; }
  .cap-cinematic .ht-line { width: auto; max-width: 100%; white-space: normal; }
  .cap-cinematic .ht-inner { white-space: normal; }
}
.cap-hc-sub {
  text-align: center !important;
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #fff !important;
  margin-top: 0 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,1), 0 2px 12px rgba(0,0,0,0.95), 0 0 30px rgba(0,0,0,0.9) !important;
}

/* Info strip below hero */
.cap-info-strip { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.04); background: rgba(8,13,24,0.6); }
.cap-strip-text { font-size: 15px; color: #e8ecf2; line-height: 1.75; margin-bottom: 20px; }
.cap-quick-ref { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cap-qr-badge { font-family: 'IBM Plex Mono', monospace; font-size: 11px; padding: 5px 14px; border-radius: 100px; background: rgba(62,207,207,0.05); border: 1px solid rgba(62,207,207,0.12); color: #3ecfcf; }
.cap-qr-badge-muted { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); color: #6a7d8e; }
.cap-group { padding: 3rem 0 1rem; }
.cap-group-label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #3ecfcf; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }
.cap-group-label::before { content: ''; width: 16px; height: 1px; background: #3ecfcf; }
.cap-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 2rem; }
.cap-card { background: #0f1922; border-radius: 10px; border: 1px solid rgba(255,255,255,0.04); padding: 1.25rem 1.5rem; transition: border-color 0.2s; }
.cap-card:hover { border-color: rgba(62,207,207,0.15); }
.cap-card-with-img { display: grid; grid-template-columns: 1fr 420px; gap: 1.5rem; align-items: center; }
.cap-card-with-img .cap-card-text { min-width: 0; }
.cap-card-img { width: 100%; border-radius: 6px; overflow: hidden; background: #0a1118; }
.cap-card-img img { display: block; width: 100%; height: auto; object-fit: contain; }
.cap-chart-img { border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); background: #fff; padding: 6px; }
.cap-card-img-placeholder { width: 100%; height: 100%; min-height: 160px; border: 1px dashed rgba(62,207,207,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(62,207,207,0.4); text-align: center; padding: 1rem; }
.cap-card-full { grid-column: 1 / -1; }
.cap-card h3 { font-size: 16px; font-weight: 500; color: #e0e6ec; margin-bottom: 0.5rem; line-height: 1.35; }
.cap-card p { font-size: 13.5px; color: #7d8d9d; line-height: 1.65; margin-bottom: 0.75rem; }
.cap-tools-section { padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.04); }
.cap-logo-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-top: 1.5rem; }
.cap-logo-item { width: 120px; height: 70px; background: #0f1922; border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.cap-logo-item:hover { border-color: rgba(62,207,207,0.15); }
.cap-logo-item span { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #5a6a7a; text-align: center; }
.cap-logo-item img { max-width: 90px; max-height: 50px; width: auto; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.2s; }
.cap-logo-item:hover img { opacity: 0.9; }
.cap-logo-solidworks { max-width: 90px !important; max-height: 90px !important; width: 90px !important; height: 90px !important; }
.cap-tools-group + .cap-tools-group { margin-top: 2.5rem; }
.cap-naics-bar { padding: 2rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.04); }
.cap-naics-list { margin-top: 1.5rem; }
.cap-naics-code { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.cap-naics-num { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #b0bcc8; }
.cap-naics-desc { font-size: 13px; color: #5a6a7a; }
.cap-personnel { padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.04); }
.cap-personnel-card { background: #0f1922; border-radius: 10px; border: 1px solid rgba(255,255,255,0.04); padding: 1.5rem 2rem; display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; }
.cap-personnel-initials { width: 56px; height: 56px; border-radius: 50%; background: rgba(62,207,207,0.08); border: 1px solid rgba(62,207,207,0.15); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: #3ecfcf; }
.cap-personnel-photo { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(62,207,207,0.2); flex-shrink: 0; }
.cap-personnel-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* MEET OUR PRINCIPAL ENGINEER */
.mp-section { padding: 3rem 0 3.5rem; border-top: 1px solid rgba(255,255,255,0.04); }
.mp-label { font-family: 'Rajdhani', sans-serif; font-size: 38px; font-weight: 700; color: var(--w); letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 2rem; }
.mp-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
.mp-left { display: flex; flex-direction: column; align-items: center; }
.mp-photo { width: 280px; height: 350px; border-radius: 6px; overflow: hidden; }
.mp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mp-name { font-size: 20px; font-weight: 700; color: #ffffff; text-align: center; margin-top: 1rem; }
.mp-role { font-size: 13px; color: var(--w); text-align: center; margin-top: 4px; }
.mp-right { display: flex; flex-direction: column; gap: 1.25rem; }
.mp-row { border-left: 2px solid #3ecfcf; padding-left: 14px; }
.mp-row-label { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; color: var(--w); line-height: 1.2; margin-bottom: 9px; }
.mp-row-text { color: var(--m); }
.mp-status { display: flex; align-items: center; gap: 10px; padding-top: 4px; }
.mp-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #3ecfcf; flex-shrink: 0; }
.mp-status-text { color: var(--m); }
@media (max-width: 768px) {
  .mp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mp-left { align-items: flex-start; }
  .mp-name, .mp-role { text-align: left; }
}
.cap-personnel-info h3 { font-size: 17px; font-weight: 500; color: #e0e6ec; margin-bottom: 2px; }
.cap-personnel-title { font-size: 13.5px; color: #5a6a7a; margin-bottom: 0.75rem; }
.cap-personnel-details { display: flex; flex-direction: column; gap: 0.5rem; }
.cap-personnel-detail { font-size: 12.5px; color: #7d8d9d; line-height: 1.6; }
.cap-personnel-detail strong { color: #96a5b4; font-weight: 500; }
@media (max-width: 768px) {
  .cap-card-with-img { grid-template-columns: 1fr; }
  .cap-card-img { min-height: 140px; }
  .cap-personnel-card { grid-template-columns: 1fr; }
  .cap-container { padding: 0 1.25rem; }
  .cap-h1 { font-size: 26px; }
}

/* REPRESENTATIVE WORK PAGE */
.work-section { padding: 44px 64px 44px 115px; }

/* ── RW NEW SECTION ─────────────────────────────────────── */
.rw-section { padding: 5rem 0; }
.rw-container { max-width: 1080px; margin: 0 auto; padding: 0 2.5rem; }
.rw-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #3ecfcf; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
.rw-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: #3ecfcf; }
.rw-heading { font-size: 28px; font-weight: 500; color: #e8ecf2; line-height: 1.3; margin-bottom: 1.5rem; }
.rw-summary { color: #7d8d9d; font-size: 15px; line-height: 1.75; margin-bottom: 2rem; }
.rw-findings { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.rw-finding { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.65; color: #96a5b4; }
.rw-finding-icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 4px; background: rgba(62,207,207,0.08); border: 1px solid rgba(62,207,207,0.15); display: flex; align-items: center; justify-content: center; }
.rw-finding-icon svg { width: 10px; height: 10px; }
.rw-finding em { color: #b8c8d6; font-style: italic; }
.rw-body-text { font-size: 14px; line-height: 1.75; color: #8a99a8; margin-bottom: 3rem; }
.rw-body-text em { color: #b8c8d6; font-style: italic; }
.rw-gallery { display: grid; grid-template-columns: 1fr 2fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.rw-card { background: #0f1922; border-radius: 10px; border: 1px solid rgba(255,255,255,0.04); overflow: hidden; transition: border-color 0.2s; }
.rw-card:hover { border-color: rgba(62,207,207,0.15); }
.rw-card-head { padding: 0.4rem 0.7rem; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.015); border-bottom: 1px solid rgba(255,255,255,0.03); }
.rw-card-label { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: #3ecfcf; letter-spacing: 0.02em; }
.rw-card-label em { font-style: italic; }
.rw-card img { display: block; width: 100%; height: auto; }
.rw-card-foot { padding: 0.35rem 0.7rem 0.45rem; font-size: 10.5px; color: #3e5060; line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.03); }
.rw-card-a1 { grid-column: 1; grid-row: 1; }
.rw-card-img-contain { height: 200px; background: #0a1118; display: flex; align-items: center; justify-content: center; padding: 8px; }
.rw-card-img-contain img { width: auto; height: 100%; object-fit: contain; }
.rw-card-a2 { grid-column: 2; grid-row: 1; }
.rw-card-b1 { grid-column: 1; grid-row: 2; }
.rw-card-b1 img { height: 200px; object-fit: contain; background: #0a1118; }
.rw-card-b2 { grid-column: 2; grid-row: 2; }
@media (max-width: 768px) {
  .rw-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .rw-card-a1, .rw-card-a2, .rw-card-b1, .rw-card-b2 { grid-column: 1; grid-row: auto; }
  .rw-card-b1 img { height: auto; }
  .rw-card-img-contain { height: auto; }
  .rw-container { padding: 0 1.25rem; }
  .rw-heading { font-size: 22px; }
}
/* COMING SOON NOTE */
.coming-soon-note { display: flex; justify-content: center; align-items: center; padding: 48px 0; }
.coming-soon-note span { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 600; color: var(--m); letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid rgba(0,212,212,0.2); border-radius: 6px; padding: 14px 32px; }

/* PROJECT CARD — unified box wrapping text + images */
.proj-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: rgba(10,17,32,0.7);
  border: 1px solid rgba(0,212,212,0.22);
  border-radius: 16px;
  padding: 40px 44px;
  margin-top: 8px;
}
.proj-card-text { display: flex; flex-direction: column; gap: 18px; }
.proj-card-text h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: var(--w); line-height: 1.2; margin: 0; }
.proj-card-text p { color: var(--m); font-size: 14px; line-height: 1.8; margin: 0; }
.proj-card-media { display: flex; align-items: flex-start; }

/* PROJECT IMAGE GALLERY */
.proj-gallery { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.proj-gallery-row { display: flex; flex-direction: column; gap: 10px; }
.proj-gallery-lbl { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--t); }
.proj-gallery-img { width: 100%; height: auto; border-radius: 8px; display: block; object-fit: contain; border: 1px solid rgba(0,212,212,0.12); }
.proj-gallery-img--half { max-width: 50%; }

.proj-bullets { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.proj-bullets li { position: relative; padding-left: 18px; color: var(--m); font-size: 14px; line-height: 1.7; }
.proj-bullets li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--t); flex-shrink: 0; }
.work-sub-lbl { display: block; margin-bottom: 18px; }

/* RESEARCH PAGE */
.diss-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 32px 64px 32px 115px;
  background: var(--n2); border-bottom: 1px solid rgba(26,45,74,0.5);
}
.diss-ph { height: 320px; border-radius: 4px; }
.ip-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.ip-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--n3); border: 1px solid rgba(26,45,74,0.8);
  border-radius: 8px; padding: 20px;
}
.ip-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--t); flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 0 8px rgba(0,212,212,0.4);
}
.ip-content { flex: 1; }
.ip-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--t); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 5px; opacity: 0.8;
}
.ip-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--w);
  margin-bottom: 7px; line-height: 1.2;
}
.ip-body { color: var(--m); font-size: 11px; line-height: 1.75; margin: 0 0 10px; }

/* CONTACT PAGE */
.contact-section {
  padding: 52px 64px 52px 115px;
  display: flex; justify-content: center;
}
.contact-card {
  width: 100%; max-width: 640px;
  background: var(--n3); border: 1px solid rgba(26,45,74,0.8);
  border-radius: 8px; padding: 36px;
}
.contact-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--w); margin-bottom: 6px;
}
.contact-card-sub { color: var(--m); font-size: 12px; line-height: 1.75; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--m2); letter-spacing: 0.12em; text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(8,13,24,0.8); border: 1px solid rgba(26,45,74,0.9);
  border-radius: 5px; padding: 10px 13px;
  font-size: 13px; color: var(--w); font-family: 'Inter', sans-serif;
  width: 100%; transition: border-color 0.2s; outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(0,212,212,0.5); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form select option { background: #0b1220; }
.form-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--m2); text-align: center; margin-top: 4px;
}

/* ABOUT PAGE */
.accent-bar { width: 36px; height: 3px; background: var(--t); border-radius: 2px; margin-bottom: 12px; }
.value-card { display: flex; flex-direction: column; gap: 10px; }
.value-icon {
  width: 36px; height: 36px;
  background: rgba(0,212,212,0.07); border: 1px solid rgba(0,212,212,0.18);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--t);
}
.pull-quote-block { max-width: 780px; margin: 0 auto; }
.pull-quote {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--w);
  border-left: 3px solid var(--t); padding: 14px 24px;
  line-height: 1.4; margin-bottom: 18px;
}
.pull-body { color: var(--m); font-size: 13px; line-height: 1.8; margin-bottom: 14px; }
.pull-sig { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--t); opacity: 0.75; }

/* CAREERS PAGE */
.approach-section { padding: 90px 64px 90px 115px; }
.approach-section .sec-lbl { text-align: center; }
.approach-section .section-title {
  font-size: clamp(42px, 5vw, 64px);
  text-align: center;
  margin-bottom: 64px;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.value-row:last-child { margin-bottom: 0; }
.value-row.reverse .value-row-media { order: -1; }
.value-row-num { display: none; }
.value-row-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-row-text::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--t);
  border-radius: 2px;
}
.value-row-text h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  color: var(--w);
  line-height: 1.05;
  margin: 0;
}
.value-row-text p {
  color: var(--m);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
  max-width: 480px;
}
.value-row-img { width: 100%; height: 280px; object-fit: cover; border-radius: 10px; display: block; }
.value-row-img--contain { object-fit: contain; height: auto; background: transparent; }

/* BENEFITS */
.benefits-section { background: var(--n2); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 44px;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.benefit-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0,212,212,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t);
  background: rgba(0,212,212,0.05);
  transition: border-color 0.22s, background 0.22s;
}
.benefit-item:hover .benefit-icon {
  border-color: rgba(0,212,212,0.6);
  background: rgba(0,212,212,0.1);
}
.benefit-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--m);
  line-height: 1.6;
  max-width: 160px;
}

/* JOB CARDS */
.job-card {
  background: var(--n2); border: 1px solid rgba(26,45,74,0.8);
  border-radius: 8px; overflow: hidden; margin-bottom: 14px;
  transition: border-color 0.2s;
}
.job-card:hover { border-color: rgba(0,212,212,0.3); }
.job-hdr {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; cursor: pointer; user-select: none;
}
.job-hdr:hover { background: rgba(0,212,212,0.025); }
.job-hdr-left { flex: 1; }
.job-badge {
  display: inline-block;
  background: rgba(0,212,212,0.1); border: 1px solid rgba(0,212,212,0.3);
  color: var(--t); font-family: 'JetBrains Mono', monospace;
  font-size: 8px; padding: 2px 9px; border-radius: 3px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
.job-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--w); margin-bottom: 8px; line-height: 1.1;
}
.job-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.job-meta-item { display: flex; align-items: center; gap: 5px; color: var(--m); font-size: 11px; }
.job-pay { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--t); font-weight: 500; }
.job-chevron { color: var(--m2); transition: transform 0.25s; flex-shrink: 0; }
.job-card.open .job-chevron { transform: rotate(180deg); }
.job-body {
  display: none;
  padding: 20px 22px 22px;
  border-top: 1px solid rgba(26,45,74,0.5);
}
.job-card.open .job-body { display: block; }
.job-body > p { color: var(--m); font-size: 12px; line-height: 1.8; margin-bottom: 20px; }
.job-section { margin-bottom: 22px; }
.job-sec-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,212,212,0.2);
}
.job-traits { display: flex; gap: 7px; flex-wrap: wrap; margin: 18px 0; }
.job-apply {
  background: rgba(0,212,212,0.04); border: 1px solid rgba(0,212,212,0.15);
  border-radius: 6px; padding: 16px 18px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.apply-note { color: var(--m); font-size: 11px; line-height: 1.6; margin: 0; }

/* hero-img-ph override: when used as standalone block banner (not inside .ardous-hero) */
.img-ph.hero-img-ph {
  position: relative !important; inset: auto !important;
  width: 100%; height: 340px;
  border-radius: 0;
  border-left: none; border-right: none;
  border-top: 1px solid rgba(26,45,74,0.5);
  border-bottom: 1px solid rgba(26,45,74,0.5);
  background: rgba(5,10,18,0.8);
}

/* ═══════════════════════════════════════════════════════════
   CINEMATIC HERO
   ═══════════════════════════════════════════════════════════ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
  border-bottom: none;
}
.hero-cinematic::before { display: none; }

/* Background */
.hc-bg { position: absolute; inset: 0; z-index: 0; }
.hc-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  animation: hcZoom 28s ease-in-out infinite alternate;
}
@keyframes hcZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Dark gradient overlay — light on left to show diamond, moderate on right for text readability */
.hc-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(8,13,24,0.08) 0%,
      rgba(8,13,24,0.12) 40%,
      rgba(8,13,24,0.62) 52%,
      rgba(8,13,24,0.72) 100%
    ),
    linear-gradient(180deg, rgba(8,13,24,0.45) 0%, transparent 28%, rgba(8,13,24,0.55) 100%);
}

/* Scan line */
.hc-scanline {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 1;
}
.hc-scanline::after {
  content: '';
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,212,0.7) 30%, rgba(0,212,212,0.7) 70%, transparent 100%);
  box-shadow: 0 0 28px 6px rgba(0,212,212,0.35);
  animation: hcScan 5s linear infinite;
}
@keyframes hcScan {
  from { top: -4px; }
  to   { top: 100%; }
}

/* Grid overlay */
.hc-grid {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,212,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,212,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0;
  animation: hcGridFade 1.5s 0.3s ease forwards;
}
@keyframes hcGridFade { to { opacity: 1; } }

/* HUD corner brackets */
.hud-corner {
  position: absolute; z-index: 4;
  width: 36px; height: 36px;
  pointer-events: none; opacity: 0;
}
.hud-tl { top: 22px; left: 22px; border-top: 2px solid var(--t); border-left: 2px solid var(--t); animation: hcCorner 0.6s 0.5s ease forwards; }
.hud-tr { top: 22px; right: 22px; border-top: 2px solid var(--t); border-right: 2px solid var(--t); animation: hcCorner 0.6s 0.65s ease forwards; }
.hud-bl { bottom: 22px; left: 22px; border-bottom: 2px solid var(--t); border-left: 2px solid var(--t); animation: hcCorner 0.6s 0.8s ease forwards; }
.hud-br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--t); border-right: 2px solid var(--t); animation: hcCorner 0.6s 0.95s ease forwards; }
@keyframes hcCorner {
  from { opacity: 0; transform: scale(0.3); }
  to   { opacity: 1; transform: scale(1); }
}

/* Floating HUD data labels */
.hud-data {
  position: absolute; z-index: 4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.13em;
  color: rgba(0,212,212,0.5);
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: hcFadeIn 0.8s ease forwards;
}
.hud-d1 { top: 68px; right: 88px; animation-delay: 1.3s; }
.hud-d2 { bottom: 68px; right: 88px; animation-delay: 1.6s; }
.hud-d3 { bottom: 68px; left: 160px; animation-delay: 1.9s; }
@keyframes hcFadeIn { to { opacity: 1; } }

/* Pulsing dot */
.hud-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--t);
  margin-right: 7px;
  vertical-align: middle;
  animation: hcDot 2.2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--t);
}
@keyframes hcDot {
  0%, 100% { opacity: 0.35; transform: scale(0.8); box-shadow: none; }
  50% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 12px var(--t); }
}

/* Hero inner — centered in the open right space */
.hc-inner {
  position: relative; z-index: 3;
  margin-left: 44%;
  padding-left: 24px;
  padding-right: 48px;
  max-width: 680px;
  text-align: center;
}

/* Badge */
.hc-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--t); text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,212,212,0.3);
  display: inline-flex; align-items: center;
  margin-bottom: 30px;
  margin-left: auto; margin-right: auto;
  background: rgba(0,212,212,0.06);
  opacity: 0;
  animation: hcSlideDown 0.7s 0.3s ease forwards;
}
@keyframes hcSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Title with line-by-line reveal */
.hc-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: clamp(42px, 4.8vw, 72px) !important;
  font-weight: 700 !important;
  line-height: 1.0 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 32px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.ht-line { display: block; overflow: hidden; }
.ht-inner {
  display: block; opacity: 0;
  animation: hcLineRise 0.85s ease forwards;
}
.ht-line:nth-child(1) .ht-inner { animation-delay: 0.5s; }
.ht-line:nth-child(2) .ht-inner { animation-delay: 0.72s; }
.ht-line:nth-child(3) .ht-inner { animation-delay: 0.94s; }
@keyframes hcLineRise {
  from { opacity: 0; transform: translateY(110%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sub text */
.hc-sub {
  color: rgba(240,244,248,0.78) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  max-width: 560px !important;
  line-height: 1.75 !important;
  margin-bottom: 36px !important;
  opacity: 0;
  animation: hcFadeUp 0.8s 1.18s ease forwards;
}

/* Buttons */
.hc-btns {
  opacity: 0;
  animation: hcFadeUp 0.8s 1.38s ease forwards;
  margin-bottom: 38px;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* Tech tags */
.hc-doe-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hcFadeUp 0.8s 1.3s ease forwards;
}
.hc-doe-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(0,212,212,0.5);
}
.hc-doe-sep { color: rgba(0,212,212,0.25); font-size: 12px; }
.hc-doe-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(220,235,245,0.75);
}
.hc-tags {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: hcFadeUp 0.8s 1.58s ease forwards;
}
.hc-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(0,212,212,0.65);
  padding: 4px 11px;
  border: 1px solid rgba(0,212,212,0.2);
  background: rgba(0,212,212,0.04);
}

@keyframes hcFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.hc-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  opacity: 0;
  animation: hcFadeIn 1s 2.3s ease forwards;
}
.hc-scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(rgba(0,212,212,0.7), transparent);
  animation: hcScrollBar 2s ease-in-out infinite;
}
@keyframes hcScrollBar {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Mobile override */
@media (max-width: 768px) {
  .hero-cinematic { height: auto; min-height: 100svh; }
  .hc-inner { margin-left: 0 !important; width: 100% !important; max-width: 100% !important; padding-left: 24px !important; padding-right: 24px !important; padding-top: 140px; padding-bottom: 120px; }
  .hud-d1, .hud-d2, .hud-d3 { display: none; }
  .hc-scroll { display: none; }
}

/* ── CAREERS CINEMATIC HERO ─────────────────────────────── */
.careers-cinematic .hc-overlay {
  background:
    linear-gradient(135deg,
      rgba(8,13,24,0.88) 0%,
      rgba(8,13,24,0.70) 40%,
      rgba(8,13,24,0.45) 100%
    ),
    linear-gradient(180deg, rgba(8,13,24,0.55) 0%, transparent 50%, rgba(8,13,24,0.65) 100%);
}
.careers-hc-inner {
  margin-left: 0 !important;
  padding-left: 165px !important;
  padding-right: 40px !important;
  max-width: 700px !important;
  width: auto !important;
  text-align: left !important;
}
.careers-hc-title {
  text-align: center !important;
}
.careers-hc-sub {
  text-align: center !important;
  max-width: 500px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.careers-hc-btns {
  justify-content: center !important;
}
@media (max-width: 768px) {
  .careers-hc-inner { padding-left: 20px !important; padding-right: 20px !important; max-width: 100% !important; }
  .careers-hc-title { font-size: clamp(32px, 9vw, 44px) !important; }
  .careers-cinematic .ht-line { width: auto; max-width: 100%; white-space: normal; }
  .careers-cinematic .ht-inner { white-space: normal; }
}

/* ── PARTNERING CINEMATIC HERO ──────────────────────────── */
.partnering-cinematic .hc-overlay {
  background:
    linear-gradient(135deg,
      rgba(8,13,24,0.92) 0%,
      rgba(8,13,24,0.72) 45%,
      rgba(8,13,24,0.35) 100%
    ),
    linear-gradient(180deg, rgba(8,13,24,0.5) 0%, transparent 50%, rgba(8,13,24,0.65) 100%);
}
/* REPRESENTATIVE WORK HERO */
.repwork-cinematic {
  height: 140vh !important;
  min-height: 900px !important;
  align-items: flex-start !important;
}
.repwork-cinematic .hc-overlay {
  background: linear-gradient(to bottom,
    rgba(8,13,24,0.72) 0%,
    rgba(8,13,24,0.35) 35%,
    rgba(8,13,24,0.35) 70%,
    rgba(8,13,24,0.65) 100%
  );
}
.repwork-hc-inner {
  margin-left: 0 !important;
  padding-left: 115px !important;
  padding-right: 115px !important;
  max-width: 100% !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding-top: 60px !important;
  margin-top: 0 !important;
}
.repwork-hc-title {
  font-size: clamp(40px, 5.5vw, 76px) !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: flex-start !important;
  margin-bottom: 20px !important;
}
.repwork-cinematic .ht-line { width: max-content; }
.repwork-cinematic .ht-inner { display: block; }
.repwork-hc-sub {
  text-align: center !important;
  max-width: 680px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
@media (max-width: 768px) {
  .repwork-hc-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .repwork-hc-title { width: auto !important; max-width: 100% !important; white-space: normal !important; font-size: clamp(32px, 9vw, 44px) !important; }
  .repwork-cinematic .ht-line { width: auto; max-width: 100%; white-space: normal; }
  .repwork-cinematic .ht-inner { white-space: normal; }
}

.partnering-hc-inner {
  margin-left: 0 !important;
  padding-left: 115px !important;
  padding-right: 115px !important;
  max-width: 100% !important;
  width: 100% !important;
  text-align: center !important;
  align-items: center !important;
  margin-top: -80px !important;
}
.partnering-hc-title {
  font-size: clamp(24px, 3.2vw, 48px) !important;
  white-space: nowrap !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: flex-start !important;
}
.partnering-cinematic .ht-line {
  width: max-content;
}
.partnering-cinematic .ht-inner {
  display: block;
}
.partnering-hc-sub {
  text-align: center !important;
  max-width: 640px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.partnering-hc-inner .hc-btns {
  justify-content: center !important;
}
@media (max-width: 768px) {
  .partnering-hc-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .partnering-hc-title { width: auto !important; max-width: 100% !important; white-space: normal !important; font-size: clamp(26px, 8vw, 40px) !important; }
  .partnering-cinematic .ht-line { width: auto; max-width: 100%; white-space: normal; }
  .partnering-cinematic .ht-inner { white-space: normal; }
}

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-page {
  background: var(--n);
  padding-left: 140px;
}

/* Full-width title bar above the split */
.contact-title-bar {
  padding: 64px 56px 40px 56px;
  border-bottom: 1px solid rgba(26,45,74,0.4);
}
.contact-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: var(--w);
  line-height: 1.08;
  margin-bottom: 14px;
}
.contact-sub {
  color: var(--m);
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Centered inquiry form (single column) */
.contact-split {
  display: flex;
  justify-content: center;
  padding: 56px 32px 80px;
}

.contact-form-col {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.contact-card {
  background: rgba(13,22,40,0.7);
  border: 1px solid rgba(26,45,74,0.7);
  border-radius: 6px;
  padding: 44px 40px 40px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-card .contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-card .contact-form .form-field:last-of-type,
.contact-card .contact-form textarea {
  flex: 1;
}
.contact-card .contact-form textarea {
  resize: none;
  min-height: 120px;
}
.contact-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--w); margin-bottom: 6px;
}
.contact-card-sub {
  color: var(--m); font-size: 13px !important;
  margin-bottom: 20px !important;
}

@media (max-width: 900px) {
  .contact-page { padding-left: 0; }
  .contact-title-bar { padding: 40px 24px 28px; text-align: center; }
  .contact-split { padding: 40px 20px 60px; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split, .value-row { grid-template-columns: 1fr; }
  .split.reverse .split-media, .value-row.reverse .value-row-media { order: 1; }
  .split.reverse .split-text, .value-row.reverse .value-row-text { order: 0; }
  .diss-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .caps-grid, .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .bolt-rail, #cv { display: none; }
  #ardous-nav { padding-left: 24px; }
  .section, .page-hero, .hero, .work-section,
  .approach-section, .contact-section, .naics-band {
    padding-left: 24px; padding-right: 24px;
  }
  .diss-grid { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: 46px; }
  .page-title { font-size: 40px; }
  .caps-grid, .why-grid { grid-template-columns: 1fr; }
  #mob-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  #mob-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--w); border-radius: 2px;
  }
  .nav-links { display: none; }
  #mob-nav {
    display: none; position: fixed; inset: 0; top: 60px;
    background: rgba(8,13,24,0.98); z-index: 399;
    flex-direction: column; padding: 24px;
  }
  #mob-nav.open { display: flex; }
  #mob-nav a {
    color: var(--w); font-size: 15px; text-decoration: none;
    padding: 14px 0; border-bottom: 1px solid rgba(26,45,74,0.4);
  }
}
