@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&display=swap');
/* ============================================================
   Atlantic Industria Group — Shared Stylesheet
   Design tokens: deep navy + teal/mint (from brand mark),
   engineering-spec-sheet layout language.
   ============================================================ */

:root {
  --navy: #0B2137;
  --navy-soft: #122C46;
  --navy-line: rgba(255,255,255,0.12);
  --teal: #0E9C8E;
  --teal-dark: #0A756A;
  --mint: #8FD6B4;
  --paper: #F7F6F2;
  --paper-alt: #EFECE4;
  --ink: #10202F;
  --slate: #57626C;
  --slate-light: #879198;
  --line: #DAD6CB;
  --white: #FFFFFF;

  --display: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --head: "Archivo", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--display);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Eyebrow / mono labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-dark);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--mint); }
.eyebrow.on-dark::before { background: var(--mint); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--teal);
}
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 13px !important;
}
.nav-toggle { display: none; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 8px 12px;
    font-family: var(--mono);
    font-size: 12px;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 32px;
    gap: 18px;
    z-index: 200;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-family: var(--display);
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline-dark { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-dark:hover { border-color: var(--mint); color: var(--mint); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Section rhythm ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
h1, h2, h3, h4 { font-family: var(--head); margin: 0; color: var(--navy); letter-spacing: -0.015em; }
h2 { font-size: 34px; font-weight: 800; line-height: 1.15; }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0; }
.lede { font-size: 18px; color: var(--slate); margin-top: 14px; }

.on-dark { color: var(--white); }
.on-dark .lede { color: rgba(255,255,255,0.86); }
.bg-navy { background: var(--navy); }
.bg-alt { background: var(--paper-alt); }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--white);
  font-family: var(--head);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.035em;
}
.hero h1 em { color: var(--mint); font-style: normal; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--navy-line);
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Triangle motif — signature element */
.tri-mark {
  position: absolute;
  width: 0; height: 0;
}
.hero-mark {
  position: relative;
  height: 440px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.65);
  border: 1px solid var(--navy-line);
}
.hero-mark svg { width: 100%; height: 100%; }
.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,33,55,0) 45%, rgba(11,33,55,0.55) 85%, rgba(11,33,55,0.85) 100%);
}
.hero-mark-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-mark-badge img { height: 26px; width: auto; }
.hero-mark-badge span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero-mark { height: 300px; }
}

.hero-strip {
  border-top: 1px solid var(--navy-line);
  background: var(--navy-soft);
}
.hero-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 22px 0;
  border-right: 1px solid var(--navy-line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--mint);
}
.hero-stat .label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
}

/* ---------- Cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.card .idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 14.5px; }

.card-dark {
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 28px;
  color: var(--white);
}
.card-dark p { color: rgba(255,255,255,0.82); font-size: 14.5px; }
.card-dark h3 { color: var(--white); }

/* ---------- Entity band (subsidiary rows) ---------- */
.entity {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.entity:last-child { border-bottom: 1px solid var(--line); }
.entity .glyph {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--teal-dark);
  border: 1px solid var(--line);
}
.entity h3 { margin-bottom: 4px; }
.entity p { color: var(--slate); font-size: 14.5px; max-width: 560px; }
.entity .domain {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--slate-light);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .entity { grid-template-columns: 56px 1fr; }
  .entity .domain { grid-column: 2; }
}

/* ---------- Org chart (signature SVG) ---------- */
.org-wrap {
  background: var(--navy);
  border-radius: 6px;
  padding: 56px 32px;
  overflow-x: auto;
}
.org-wrap svg { display: block; margin: 0 auto; min-width: 640px; }

/* ---------- Two column split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.check-list { list-style: none; margin: 20px 0 0; padding: 0; }
.check-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--slate);
  border-top: 1px solid var(--line);
}
.check-list li:first-child { border-top: none; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 2px;
}
.on-dark .check-list li { color: rgba(255,255,255,0.85); border-color: var(--navy-line); }

/* ---------- Timeline / phases ---------- */
.phase-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.phase-row:last-child { border-bottom: 1px solid var(--line); }
.phase-row .when {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--teal-dark);
  padding-top: 3px;
}
.phase-row h3 { margin-bottom: 6px; }
.phase-row p { color: var(--slate); font-size: 14.5px; }

/* ---------- Table ---------- */
table.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.spec th, table.spec td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
table.spec th {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
}
table.spec td { color: var(--slate); }
table.spec tr:hover td { background: var(--paper-alt); }

/* ---------- Stat block ---------- */
.stat-block { text-align: left; }
.stat-block .num {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
}
.stat-block .label { font-size: 14px; color: var(--slate); margin-top: 4px; }

/* ---------- Progress bars (workforce) ---------- */
.bar-row { margin-bottom: 20px; }
.bar-row .top { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.bar-row .top .pct { font-family: var(--mono); font-weight: 700; color: var(--teal-dark); }
.bar-track { height: 8px; background: var(--paper-alt); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--mint)); border-radius: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  border-radius: 8px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: 28px; }
@media (max-width: 700px) { .cta-band { padding: 36px; } }

/* ---------- Footer ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-line);
}
.footer-grid img { height: 30px; margin-bottom: 14px; }
.footer-grid p { font-size: 13.5px; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-bottom: 16px;
}
.footer-col a, .footer-col div { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Sub-brand lockups (Manufacturing / Contracting / Trading) ---------- */
/* Each division page sets --division on <body> to recolor the lockup + accents while the mark stays identical across all entities. */
body[data-division="manufacturing"] { --division: #14B39F; --division-soft: rgba(20,179,159,0.14); }
body[data-division="contracting"]   { --division: #5B8FD9; --division-soft: rgba(91,143,217,0.14); }
body[data-division="trading"]       { --division: #E0A438; --division-soft: rgba(224,164,56,0.16); }

.lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lockup-mark-chip {
  background: var(--paper);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
}
.lockup-mark-chip img { height: 34px; width: auto; display: block; }
.lockup-word {
  font-family: var(--display);
  line-height: 1.05;
}
.lockup-word .l1 { display:block; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
.lockup-word .l2 { display:block; font-size: 26px; font-weight: 800; color: var(--division, var(--mint)); letter-spacing: -0.01em; }

.division-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--division, var(--mint));
  background: var(--division-soft, rgba(255,255,255,0.08));
  border: 1px solid var(--division, rgba(255,255,255,0.25));
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Division-aware accents for buttons / idx / links on subsidiary pages */
[data-division] .btn-primary { background: var(--division); }
[data-division] .btn-primary:hover { filter: brightness(0.9); }
[data-division] .card .idx { color: var(--division); }
[data-division] .breadcrumb { color: var(--division); }
[data-division] .eyebrow { color: var(--division); }
[data-division] .eyebrow::before { background: var(--division); }
[data-division] .when { color: var(--division); }
[data-division] .nav-links a.active { color: var(--navy); }
[data-division] .nav-links a.active::after { background: var(--division); }


.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-head h1 { color: var(--white); font-size: 40px; font-weight: 800; }
.page-head .lede { max-width: 620px; }

.breadcrumb {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mint);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

/* ---------- Image banners & galleries ---------- */
.img-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}
.img-banner img { width: 100%; height: 100%; object-fit: cover; }
.img-banner .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 28px;
  background: linear-gradient(0deg, rgba(11,33,55,0.88), rgba(11,33,55,0));
  color: #fff;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.split img.frame {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: block;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.gallery-card .thumb { height: 190px; overflow: hidden; }
.gallery-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-card .body { padding: 20px; }
.gallery-card .idx { font-family: var(--mono); font-size: 12px; color: var(--teal-dark); margin-bottom: 8px; }
[data-division] .gallery-card .idx { color: var(--division); }
.gallery-card h3 { margin-bottom: 6px; }
.gallery-card p { color: var(--slate); font-size: 14px; }

/* ============================================================
   v2 — GE Vernova-benchmark components
   Mega-menu nav · feature stories · mission band ·
   insights grid · newsletter · social footer · scroll motion
   ============================================================ */

/* ---------- Topbar (utility strip above nav) ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar a { color: rgba(255,255,255,0.7); }
.topbar a:hover { color: var(--mint); }
.topbar .tb-links { display: flex; gap: 22px; }
@media (max-width: 720px){ .topbar .tb-left{ display:none; } }

/* ---------- Mega-menu nav ---------- */
.nav-links .menu-item { position: relative; }
.nav-links .menu-item > a.top,
.nav-links > a {
  display: inline-flex; align-items: center; gap: 6px;
}
.menu-item > a.top::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
  opacity: .6;
}
.menu-item:hover > a.top::after,
.menu-item:focus-within > a.top::after { transform: rotate(-135deg) translateY(-1px); opacity:.9; }

.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 460px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 30px 60px -24px rgba(11,33,55,0.35);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 300;
}
.mega::before { /* hover bridge */
  content:""; position:absolute; top:-16px; left:0; right:0; height:16px;
}
.menu-item:hover > .mega,
.menu-item:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega.single { grid-template-columns: 1fr; min-width: 300px; }
.mega a.mega-link {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  transition: background .15s ease;
}
.mega a.mega-link:hover { background: var(--paper-alt); }
.mega .ml-title {
  font-size: 14px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.mega .ml-title::before {
  content:""; width: 7px; height: 7px; border-radius: 2px;
  background: var(--teal); display:inline-block;
}
.mega .ml-desc { font-size: 12.5px; color: var(--slate); margin-top: 3px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1 !important; transform:none !important; } }

/* ---------- Section head with action (view more) ---------- */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.head-row .section-head { margin-bottom: 0; }
.link-more {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-dark); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.link-more::after { content: "→"; transition: transform .2s ease; }
.link-more:hover::after { transform: translateX(4px); }
[data-division] .link-more { color: var(--division); }

/* ---------- Feature stories (GE Vernova "Feature Stories") ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}
.story {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 300px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--line);
  isolation: isolate;
}
.story.lead { grid-row: span 2; min-height: 520px; }
.story img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .6s ease;
}
.story::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,33,55,0) 30%, rgba(11,33,55,.55) 66%, rgba(11,33,55,.92) 100%);
}
.story:hover img { transform: scale(1.05); }
.story .story-body { padding: 26px; color: #fff; }
.story .cat {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mint); display: block; margin-bottom: 10px;
}
.story h3 { color: #fff; font-size: 19px; line-height: 1.25; }
.story.lead h3 { font-size: 26px; }
.story p { color: rgba(255,255,255,0.82); font-size: 13.5px; margin-top: 8px; }
.story .go { display:inline-flex; align-items:center; gap:8px; margin-top: 14px; font-size: 12.5px; font-family: var(--mono); letter-spacing:.05em; color:#fff; text-transform:uppercase; }
.story .go::after { content:"→"; transition: transform .2s ease; }
.story:hover .go::after { transform: translateX(4px); }
@media (max-width: 900px){ .story-grid{ grid-template-columns:1fr; } .story.lead{ grid-row:auto; min-height:320px; } }

/* ---------- Mission band ---------- */
.mission { text-align: center; }
.mission .eyebrow { justify-content: center; }
.mission h2 {
  color: #fff; font-size: 40px; line-height: 1.16; max-width: 900px; margin: 0 auto;
  font-weight: 800; letter-spacing: -0.02em;
}
.mission h2 em { color: var(--mint); font-style: normal; }
.mission .lede { max-width: 720px; margin-left:auto; margin-right:auto; margin-top: 22px; }
.mission .btn { margin-top: 32px; }
@media (max-width: 700px){ .mission h2{ font-size: 28px; } }

/* ---------- Insights / media cards (article list) ---------- */
.insight {
  display: grid; grid-template-columns: 200px 1fr; gap: 22px;
  padding: 24px 0; border-top: 1px solid var(--line); align-items: center;
}
.insight:last-child { border-bottom: 1px solid var(--line); }
.insight .thumb { height: 130px; border-radius: 8px; overflow: hidden; }
.insight .thumb img { width:100%; height:100%; object-fit: cover; }
.insight .cat { font-family: var(--mono); font-size: 11px; letter-spacing:.1em; text-transform:uppercase; color: var(--teal-dark); }
.insight h3 { margin: 8px 0 6px; font-size: 20px; }
.insight p { color: var(--slate); font-size: 14px; }
.insight .date { font-family: var(--mono); font-size: 12px; color: var(--slate-light); margin-top: 8px; }
[data-division] .insight .cat { color: var(--division); }
@media (max-width: 640px){ .insight{ grid-template-columns:1fr; } }

/* ---------- Newsletter capture ---------- */
.newsletter {
  background: var(--navy-soft);
  border: 1px solid var(--navy-line);
  border-radius: 12px;
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.newsletter h2 { color:#fff; font-size: 28px; }
.newsletter p { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 15px; }
.nl-form { display:flex; gap: 10px; flex-wrap: wrap; }
.nl-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--navy-line);
  border-radius: 4px; padding: 14px 16px; color:#fff; font-size: 14px;
  font-family: var(--display);
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form input:focus { outline: none; border-color: var(--mint); }
.nl-consent { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 14px; }
@media (max-width: 800px){ .newsletter{ grid-template-columns:1fr; padding: 32px; } }

/* ---------- Regions strip ---------- */
.region-row { display:flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.region-chip {
  font-family: var(--mono); font-size: 12px; letter-spacing:.05em;
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; color: var(--slate);
}

/* ---------- Social footer ---------- */
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--navy-line);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); transition: all .2s ease;
}
.social a:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Footer newsletter inline (bottom) ---------- */
.footer-cols-5 { grid-template-columns: 1.6fr 1fr 1fr 1fr; }

/* ---------- Value / capability tiles with icon ---------- */
.icon-tile { display:flex; gap: 16px; align-items:flex-start; }
.icon-tile .ic {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal); color:#fff; display:flex; align-items:center; justify-content:center;
}
.icon-tile .ic svg { width: 22px; height: 22px; stroke: #fff; fill:none; stroke-width:2; }
[data-division] .icon-tile .ic { background: var(--division); }
.icon-tile h3 { font-size: 17px; margin-bottom: 4px; }
.icon-tile p { color: var(--slate); font-size: 14px; }

/* ---------- Mega-menu: mobile (inside open drawer) ---------- */
@media (max-width: 1000px) {
  .nav-links.open .menu-item { width: 100%; }
  .nav-links.open .mega {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; width: 100%; box-shadow: none; border: none; padding: 4px 0 8px;
    grid-template-columns: 1fr; background: transparent;
  }
  .nav-links.open .mega a.mega-link { padding: 10px 12px; }
  .nav-links.open .mega .ml-desc { display: none; }
  .nav-links.open .menu-item > a.top::after { margin-left: auto; }
  .nav-links.open .menu-item > a.top { justify-content: space-between; width: 100%; }
}

/* ---------- Full-bleed feature hero (facility render) ---------- */
.hero.hero-feature { padding: 0; }
.hero-feature .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-feature .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-feature .hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,33,55,.90) 0%, rgba(11,33,55,.66) 34%, rgba(11,33,55,.20) 66%, rgba(11,33,55,.44) 100%),
    linear-gradient(180deg, rgba(11,33,55,.30) 0%, rgba(11,33,55,0) 26%, rgba(11,33,55,.68) 100%);
}
.hero-feature .hero-content .lede { color: #ffffff; }
.hero-feature .hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 108px 0 92px;
}
@media (max-width: 900px) {
  .hero-feature .hero-content .lede { color: #ffffff; }
.hero-feature .hero-content { max-width: none; padding: 76px 0 60px; }
}

/* ============================================================
   v3 — Landing page: GE Vernova-style spotlight, mission &
   vision, guiding principles, careers band
   ============================================================ */

/* ---------- Featured spotlight (flagship highlight under hero) ---------- */
.spotlight {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center;
  border: 1px solid var(--navy-line);
  isolation: isolate;
}
.spotlight img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.spotlight::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(11,33,55,.94) 0%, rgba(11,33,55,.72) 48%, rgba(11,33,55,.20) 82%, rgba(11,33,55,.35) 100%);
}
.spotlight .sp-body { padding: 52px; max-width: 640px; color: #fff; }
.spotlight .sp-body h2 { color: #fff; font-size: 34px; line-height: 1.14; }
.spotlight .sp-body h2 em { color: var(--mint); font-style: normal; }
.spotlight .sp-body p { color: rgba(255,255,255,.86); font-size: 16px; margin-top: 14px; }
.spotlight .sp-body .btn { margin-top: 26px; }
@media (max-width: 700px){ .spotlight .sp-body { padding: 34px; } .spotlight .sp-body h2 { font-size: 26px; } }

/* ---------- Mission & Vision ---------- */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mv-item { padding: 8px 48px; position: relative; }
.mv-item:first-child { padding-left: 0; }
.mv-item:last-child { padding-right: 0; }
.mv-item + .mv-item::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--navy-line);
}
.mv-item .mv-h {
  color: #fff; font-size: 29px; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; margin-top: 12px;
}
.mv-item .mv-h em { color: var(--mint); font-style: normal; }
.mv-item p { color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.62; margin-top: 16px; }
@media (max-width: 820px){
  .mv { grid-template-columns: 1fr; gap: 40px; }
  .mv-item { padding: 0; }
  .mv-item + .mv-item::before { display: none; }
  .mv-item + .mv-item { border-top: 1px solid var(--navy-line); padding-top: 36px; }
}

/* ---------- Guiding principles ---------- */
.principles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 52px; padding-top: 44px; border-top: 1px solid var(--navy-line);
}
.principle .pn { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--mint); }
.principle h4 { color: #fff; font-size: 17px; margin: 10px 0 6px; }
.principle p { color: rgba(255,255,255,.78); font-size: 14px; margin: 0; }
@media (max-width: 820px){ .principles { grid-template-columns: 1fr; gap: 18px; } }

/* ============================================================
   v4 — Group Structure: business-unit cards (no org chart)
   ============================================================ */
.parent-card {
  background: var(--navy); color: #fff;
  border: 1px solid var(--navy-line); border-radius: 14px;
  padding: 32px 38px; margin-bottom: 14px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center;
}
.parent-card .u-mark {
  width: 58px; height: 58px; border-radius: 12px;
  background: var(--teal); color: var(--navy);
  font-family: var(--mono); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.parent-card .pc-role { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); }
.parent-card h3 { color: #fff; font-size: 21px; margin: 5px 0 6px; }
.parent-card p { color: rgba(255,255,255,.82); font-size: 14px; max-width: 560px; }
.parent-badge {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.72); border: 1px solid var(--navy-line); border-radius: 100px;
  padding: 8px 16px; white-space: nowrap;
}
@media (max-width: 820px){ .parent-card{ grid-template-columns: 1fr; } .parent-badge{ justify-self: start; } }

.owns-note {
  text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--slate-light); margin: 20px 0 24px; position: relative;
}
.owns-note::before { content: ""; display: block; width: 1px; height: 22px; background: var(--line); margin: 0 auto 12px; }

.units { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.unit {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.unit:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 22px 44px -26px rgba(11,33,55,.4); }
.unit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.unit .u-mark {
  width: 46px; height: 46px; border-radius: 10px; background: var(--navy); color: var(--mint);
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.unit-role { font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: var(--slate-light); text-align: right; }
.unit h3 { font-size: 17.5px; margin-bottom: 8px; }
.unit > p { color: var(--slate); font-size: 14px; flex: 1; }
.unit-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0; }
.unit-tags span { font-family: var(--mono); font-size: 10px; letter-spacing: .03em; color: var(--teal-dark); background: var(--paper-alt); border-radius: 100px; padding: 5px 10px; }
.unit-foot { font-family: var(--mono); font-size: 12.5px; color: var(--slate-light); border-top: 1px solid var(--line); padding-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.unit:hover .unit-foot { color: var(--teal-dark); }
@media (max-width: 820px){ .units{ grid-template-columns: 1fr; } }

.page-head .lede { color: #ffffff; }

/* ---------- Video-background section (Group Structure) ---------- */
.video-section { position: relative; overflow: hidden; }
.video-bg { position: absolute; inset: 0; z-index: 0; }
.video-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,33,55,.80) 0%, rgba(11,33,55,.86) 55%, rgba(11,33,55,.90) 100%);
}
.video-section > .wrap { position: relative; z-index: 2; }
.video-section .section-head .lede { color: rgba(255,255,255,.92); }
.video-section .owns-note { color: rgba(255,255,255,.80); }
.video-section .owns-note::before { background: rgba(255,255,255,.35); }

/* ---------- Video hero: anchor text to bottom, keep video center clear ---------- */
.page-head.video-hero {
  display: flex; align-items: flex-end;
  min-height: 62vh;
  padding-top: 40px; padding-bottom: 52px;
}
.page-head.video-hero .wrap { width: 100%; }
.page-head.video-hero .lede { max-width: 600px; }
/* lighter in the upper/center area, dark only where the text sits */
.video-hero .video-bg::after {
  background: linear-gradient(180deg,
    rgba(11,33,55,.55) 0%,
    rgba(11,33,55,.18) 30%,
    rgba(11,33,55,.22) 55%,
    rgba(11,33,55,.72) 82%,
    rgba(11,33,55,.94) 100%);
}
@media (max-width: 700px){
  .page-head.video-hero { min-height: 72vh; }
}

/* ---------- Facility counter strip (single-line animated stats) ---------- */
.counter-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter {
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}
.counter:last-child { border-right: none; }
.counter .cnum {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter .cbar {
  width: 26px; height: 2px;
  background: var(--teal);
  margin: 12px 0 10px;
}
[data-division] .counter .cbar { background: var(--division); }
.counter .clabel {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .counter-strip { grid-template-columns: repeat(3, 1fr); }
  .counter:nth-child(3n) { border-right: none; }
  .counter:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .counter-strip { grid-template-columns: repeat(2, 1fr); }
  .counter { border-right: 1px solid var(--line); }
  .counter:nth-child(3n) { border-right: 1px solid var(--line); }
  .counter:nth-child(2n) { border-right: none; }
  .counter:nth-child(n+3) { border-top: 1px solid var(--line); }
  .counter .cnum { font-size: 26px; }
}

/* ---------- Framed video (Careers) ---------- */
video.frame {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: block;
}
@media (max-width: 900px){ video.frame { height: 260px; } }

/* ---------- Industry news source line ---------- */
.card .src { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--teal-dark); margin-top: 14px; }
a.card:hover .src { color: var(--teal); }

/* ---------- Value Proposition (two pillars + outcome pills) ---------- */
.vp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vp-head {
  display: flex; align-items: center; gap: 14px;
  background: var(--teal-dark); color: #fff;
  border-radius: 10px; padding: 15px 20px;
  font-family: var(--head); font-weight: 700; font-size: 16.5px; line-height: 1.2;
}
.vp-head .vp-ic {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 8px;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
}
.vp-head .vp-ic svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.vp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.vp-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 16px 17px;
}
.vp-card h4 { font-size: 13.5px; color: var(--navy); margin-bottom: 6px; line-height: 1.25; }
.vp-card p { font-size: 12.5px; color: var(--slate); line-height: 1.5; }
.vp-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.vp-outcome {
  border: 1.5px solid var(--teal-dark); color: var(--teal-dark);
  border-radius: 100px; padding: 15px 22px; text-align: center;
  font-family: var(--head); font-weight: 700; font-size: 14.5px;
}
@media (max-width: 900px) {
  .vp-grid { grid-template-columns: 1fr; }
  .vp-outcomes { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .vp-cards { grid-template-columns: 1fr; } }

/* ---------- Strategic Partners ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.partner:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 18px 36px -24px rgba(11,33,55,.35); }
.partner-logo {
  height: 40px; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--head); font-weight: 800; font-size: 16px; color: var(--navy); letter-spacing: -0.01em;
  padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--line);
}
.partner-logo img { max-height: 40px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .85; }
.partner:hover .partner-logo img { filter: none; opacity: 1; }
.partner p { font-size: 12.5px; color: var(--slate); line-height: 1.5; flex: 1; }
.partner .plink { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dark); margin-top: 14px; }
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .partners-grid { grid-template-columns: 1fr; } }

/* ---------- Careers: open positions ---------- */
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line);
}
.job:last-child { border-bottom: 1px solid var(--line); }
.job-dept {
  display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal-dark); background: var(--paper-alt);
  border-radius: 100px; padding: 5px 12px; margin-bottom: 12px;
}
.job h3 { font-size: 18px; margin-bottom: 7px; }
.job-meta { font-family: var(--mono); font-size: 12.5px; color: var(--slate-light); }
.job-apply { white-space: nowrap; }
@media (max-width: 640px) {
  .job { grid-template-columns: 1fr; gap: 16px; }
  .job-apply { justify-self: start; }
}

/* ---------- Contact form ---------- */
.contact-form { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: 13px 15px; font-family: var(--display); font-size: 14px; color: var(--ink);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--slate-light); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,156,142,0.12); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.cf-note { font-size: 12.5px; color: var(--slate); }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }

/* ============================================================
   Value Proposition — dark textured redesign
   ============================================================ */
.vp-section { position: relative; background: var(--navy); overflow: hidden; }
/* modern texture: fine blueprint grid, faded toward the edges */
.vp-section::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 55%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 55%, transparent 100%);
}
/* brand-colour glow accents */
.vp-section::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 460px at 10% 4%, rgba(14,156,142,0.22), transparent 62%),
    radial-gradient(640px 440px at 92% 96%, rgba(143,214,180,0.14), transparent 62%);
}
.vp-section > .wrap { position: relative; z-index: 2; }
.vp-section .section-head h2 { color: #fff; }

/* pillar header bar — teal gradient */
.vp-section .vp-head {
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  box-shadow: 0 16px 40px -22px rgba(14,156,142,0.8);
}
/* glass point-cards on dark */
.vp-section .vp-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.vp-section .vp-card:hover { border-color: rgba(143,214,180,0.55); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.vp-section .vp-card h4 { color: #fff; }
.vp-section .vp-card p { color: rgba(255,255,255,0.72); }
/* outcome pills */
.vp-section .vp-outcome {
  border: 1.5px solid rgba(143,214,180,0.7); color: var(--mint);
  background: rgba(143,214,180,0.06);
}

/* ---------- Partner logo image + fallback ---------- */
.partner-logo { height: 52px; }
.partner-logo img { max-height: 46px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .82; transition: opacity .2s ease, filter .2s ease; }
.partner:hover .partner-logo img { filter: none; opacity: 1; }
.partner-logo .pl-text { display: none; font-family: var(--head); font-weight: 800; font-size: 16px; color: var(--navy); letter-spacing: -0.01em; }

/* ---------- Featured news: editorial layout (lead + list) ---------- */
.feature-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 26px; align-items: start; }
.feature-lead {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.feature-lead:hover { box-shadow: 0 26px 50px -30px rgba(11,33,55,.4); border-color: var(--teal); }
.fl-media { position: relative; height: 320px; overflow: hidden; }
.fl-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-lead:hover .fl-media img { transform: scale(1.04); }
.fl-cat {
  position: absolute; left: 16px; top: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: var(--teal-dark); border-radius: 100px; padding: 6px 14px;
}
.fl-body { padding: 26px 28px 28px; }
.fl-body h3 { font-size: 23px; line-height: 1.22; color: var(--navy); }
.fl-body p { color: var(--slate); font-size: 14.5px; margin-top: 12px; }
.fl-body .go {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--teal-dark);
}
.fl-body .go::after { content: "→"; transition: transform .2s ease; }
.feature-lead:hover .fl-body .go::after { transform: translateX(4px); }

.feature-list { display: flex; flex-direction: column; gap: 18px; }
.fl-item {
  display: grid; grid-template-columns: 132px 1fr; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.fl-item:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -26px rgba(11,33,55,.4); border-color: var(--teal); }
.fli-thumb { overflow: hidden; }
.fli-thumb img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; transition: transform .5s ease; }
.fl-item:hover .fli-thumb img { transform: scale(1.05); }
.fli-body { padding: 16px 18px; }
.fli-cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-dark); }
.fli-body h4 { font-size: 16px; line-height: 1.28; color: var(--navy); margin: 7px 0 6px; }
.fli-body p { font-size: 12.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 900px) {
  .feature-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fl-item { grid-template-columns: 1fr; }
  .fli-thumb img { min-height: 170px; }
}

/* ============================================================
   Motion — title reveals (mask + word stagger) · content lift
   GPU-only (transform/opacity); fully disabled for reduced-motion
   ============================================================ */
.anim-title .aw { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.anim-title .awi { display: inline-block; transform: translateY(112%); transition: transform .72s cubic-bezier(.22,1,.36,1); will-change: transform; }
.anim-title.in .awi { transform: none; }
.reveal-title { overflow: hidden; padding-bottom: 0.08em; }
.reveal-title .rt-inner { display: block; transform: translateY(103%); transition: transform .86s cubic-bezier(.22,1,.36,1); will-change: transform; }
.reveal-title.in .rt-inner { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .anim-title .awi, .reveal-title .rt-inner { transform: none !important; transition: none !important; }
}

/* ============================================================
   Justified body text + directional photo reveals
   ============================================================ */
/* Justify prose content (headings, labels, mono and buttons unaffected) */
p, .check-list li {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto; hyphens: auto;
}
/* preserve intentionally centered prose */
.mission .lede { text-align: center; }
.wrap[style*="text-align:center"] p, .wrap[style*="text-align:center"] .lede { text-align: center; }

/* Directional photo reveals — override .reveal's translateY, reuse its observer */
.reveal-r { transform: translateX(48px); }
.reveal-l { transform: translateX(-48px); }
.reveal-r.in, .reveal-l.in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-r, .reveal-l { transform: none !important; }
}

/* ============================================================
   Polish pass — accessibility, anchor offset, selection, perf
   ============================================================ */
:focus:not(:focus-visible) { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
.btn:focus-visible, .card:focus-visible, .unit:focus-visible, .partner:focus-visible,
.mega-link:focus-visible, .nav-links a:focus-visible, .story:focus-visible,
.feature-lead:focus-visible, .fl-item:focus-visible, .link-more:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
/* mint focus ring on dark surfaces */
.on-dark a:focus-visible, .bg-navy a:focus-visible, .hero a:focus-visible,
.topbar a:focus-visible, .site-header .nav-cta:focus-visible, .vp-section a:focus-visible {
  outline-color: var(--mint);
}
/* anchor targets clear the sticky topbar + header */
section[id], [id].page-head { scroll-margin-top: 104px; }
/* brand text selection */
::selection { background: rgba(14,156,142,0.24); color: var(--navy); }
::-moz-selection { background: rgba(14,156,142,0.24); color: var(--navy); }
/* remove mobile tap flash on interactive elements */
a, button, input, textarea { -webkit-tap-highlight-color: transparent; }

/* hero background video fills like the image */
.hero-feature .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; display: block; }

/* ============================================================
   Section titles — larger, bolder, highlighted kicker
   (color matches each section; already animated via title reveal)
   ============================================================ */
h2 { font-size: 42px; line-height: 1.1; letter-spacing: -0.025em; }
.section-head { margin-bottom: 46px; }
.section-head .eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; }
.section-head h2 { font-size: 42px; }
.mission h2 { font-size: 46px; }
@media (max-width: 820px) {
  h2, .section-head h2 { font-size: 32px; }
  .mission h2 { font-size: 33px; }
}
@media (max-width: 560px) {
  h2, .section-head h2 { font-size: 27px; }
  .mission h2 { font-size: 28px; }
}

/* ---------- Value Proposition — balanced pillars, uniform cards ---------- */
.vp-grid { align-items: stretch; }
.vp-pillar { display: flex; flex-direction: column; }
.vp-cards { flex: 1 1 auto; grid-auto-rows: 1fr; align-content: stretch; }
.vp-card { display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 900px) { .vp-cards { grid-auto-rows: auto; } }

/* ============================================================
   Professional upgrade layer
   · never split words at line-ends (no hyphenation)
   · consistent motion, refined depth, button polish
   · prose-link affordance, header elevation on scroll
   ============================================================ */
p, li, .lede, h1, h2, h3, h4, .mv-h, .fl-body h3, .vp-card h4, .job h3 {
  -webkit-hyphens: none; hyphens: none;
  overflow-wrap: normal; word-break: normal;
}
.lede { line-height: 1.6; }

/* consistent, refined easing on interactive surfaces */
.btn, .card, .unit, .partner, .story, .feature-lead, .fl-item, .gallery-card, .nav-cta {
  transition: transform .2s cubic-bezier(.22,1,.36,1), box-shadow .22s ease,
              border-color .2s ease, background-color .2s ease, color .2s ease;
}
/* buttons — subtle depth + lift */
.btn-primary { box-shadow: 0 10px 24px -14px rgba(14,156,142,0.6); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 32px -14px rgba(14,156,142,0.8); }
.btn-outline:hover, .btn-outline-dark:hover { transform: translateY(-1px); }
/* resting depth for surface cards */
.card, .gallery-card, .unit, .partner { box-shadow: 0 1px 2px rgba(11,33,55,0.045); }
/* prose links get a clear, on-brand affordance */
p a:not(.btn), .fl-body a, .card p a {
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(14,156,142,0.5);
}
p a:not(.btn):hover { text-decoration-color: var(--teal); }
/* header gains a soft elevation once the page is scrolled */
.site-header { transition: box-shadow .25s ease, background-color .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px -16px rgba(11,33,55,0.22); background: rgba(247,246,242,0.97); }
h1 { letter-spacing: -0.03em; }

/* counter strip — 3 capacity figures */
.counter-strip { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px){
  .counter-strip { grid-template-columns: 1fr; }
  .counter { border-right: none; border-top: 1px solid var(--line); }
  .counter:first-child { border-top: none; }
}

/* counter strip — 4 capacity figures */
.counter-strip { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){
  .counter-strip { grid-template-columns: repeat(2, 1fr); }
  .counter { border-right: 1px solid var(--line); }
  .counter:nth-child(2n) { border-right: none; }
  .counter:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px){
  .counter-strip { grid-template-columns: 1fr; }
  .counter { border-right: none; border-top: 1px solid var(--line); }
  .counter:first-child { border-top: none; }
}

/* ============================================================
   Menu redesign — clean title-only dropdown lists
   ============================================================ */
.mega {
  left: 0;
  transform: translateY(8px);
  min-width: 236px;
  display: flex; flex-direction: column; gap: 2px;
  grid-template-columns: none;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 24px 48px -22px rgba(11,33,55,0.30);
}
.menu-item:hover > .mega,
.menu-item:focus-within > .mega { transform: translateY(0); }
.mega a.mega-link { padding: 10px 14px; border-radius: 7px; }
.mega .ml-title { font-size: 14px; font-weight: 600; gap: 10px; }
.mega .ml-title::before {
  content: ""; width: 6px; height: 6px; border-radius: 2px;
  background: var(--teal); opacity: .5;
  transition: opacity .15s ease, transform .15s ease;
}
.mega a.mega-link:hover .ml-title::before { opacity: 1; transform: scale(1.15); }
/* refined top-level nav spacing */
.nav-links { gap: 26px; }
@media (max-width: 1000px) {
  .nav-links.open .mega { padding: 2px 0 6px; }
  .nav-links.open .mega a.mega-link { padding: 9px 12px; }
}

/* ---------- Trading system diagram + animated current flow ---------- */
.sys-diagram {
  position: relative; margin: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--navy-line); background: #0a1520;
  aspect-ratio: 1408 / 768;
}
.sys-diagram img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sys-flows { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.flow { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.flow-base { stroke-width: 2; stroke-opacity: .22; }
.flow-pulse {
  stroke-width: 3.4; stroke-dasharray: 15 200; stroke-dashoffset: 0;
  animation: flowdash 2.3s linear infinite;
  filter: drop-shadow(0 0 5px currentColor);
}
@keyframes flowdash { to { stroke-dashoffset: -215; } }
.c-green  { stroke: #74EE74; color: #74EE74; }
.c-blue   { stroke: #56BEFF; color: #56BEFF; }
.c-orange { stroke: #FFAF5A; color: #FFAF5A; }
.c-white  { stroke: #EAF2FF; color: #EAF2FF; }
.sys-cap {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
@media (prefers-reduced-motion: reduce) {
  .flow-pulse { animation: none; stroke-dasharray: none; stroke-opacity: .6; }
}

/* ---------- Trading page-head: system diagram as background ---------- */
.trading-hero { position: relative; overflow: hidden; background: #0a1520; }
.trading-hero .th-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.trading-hero .th-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,33,55,.50) 0%, rgba(11,33,55,.28) 38%, rgba(11,33,55,.72) 80%, rgba(11,33,55,.95) 100%);
}
.trading-hero .sys-flows { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.trading-hero > .wrap { position: relative; z-index: 3; }

/* ---------- Contracting: EPC lifecycle diagram (palette-matched frame) ---------- */
.epc-figure {
  margin: 0;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--navy-line); background: #0a1520;
  box-shadow: 0 30px 60px -34px rgba(11,33,55,.5);
}
.epc-figure img { width: 100%; height: auto; display: block; }
[data-division="contracting"] .epc-figure { border-color: rgba(91,143,217,.38); }
