@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap');

:root {
  --blue: #2a1584;
  --blue-bright: #5740bd;
  --navy: #19104f;
  --navy-2: #140c43;
  --navy-3: #0f092f;
  --green: #91ad00;
  --ink: #121923;
  --muted: #66717d;
  --line: #dfe5ea;
  --soft: #f2f6f8;
  --white: #fff;
  --topbar: 40px;
  --header: 92px;
  --max: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--white); font-family: Manrope, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open, body.mega-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, .section-heading { font-family: Barlow, Manrope, Arial, sans-serif; }
::selection { color: var(--white); background: var(--blue-bright); }
.skip-link { position: fixed; z-index: 1000; left: 15px; top: -70px; padding: 10px 14px; background: var(--white); }
.skip-link:focus { top: 10px; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.eyebrow { margin: 0 0 12px; color: var(--blue); font-size: 15px; font-weight: 600; }
.eyebrow::before { content: ''; width: 18px; height: 3px; margin-right: 9px; display: inline-block; vertical-align: middle; background: var(--green); }
.eyebrow.light { color: #c9c2f7; }
.section-heading { margin: 0; font-size: clamp(36px, 4vw, 50px); font-weight: 700; line-height: 1.02; letter-spacing: -.015em; }
.section-lead { max-width: 690px; color: var(--muted); font-size: 18px; line-height: 1.75; }

/* Header and DEI-style mega navigation */
.utility-bar { position: fixed; z-index: 130; inset: 0 0 auto; height: var(--topbar); color: var(--white); background: var(--blue); }
.utility-inner { width: min(1400px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: flex-end; gap: 24px; font-size: 12px; }
.utility-inner a { display: inline-flex; align-items: center; gap: 9px; }
.utility-inner a::before { content: ''; width: 7px; height: 7px; border: 1px solid var(--green); background: var(--green); }
.site-header { position: fixed; z-index: 120; inset: var(--topbar) 0 auto; height: var(--header); color: var(--white); background: linear-gradient(180deg, rgba(2,28,49,.72), rgba(2,28,49,.08)); border-bottom: 1px solid rgba(255,255,255,.15); transition: color .25s, background .25s, box-shadow .25s; }
.site-header.scrolled, .site-header.solid { color: var(--navy); background: var(--white); box-shadow: 0 12px 28px rgba(3,47,85,.12); border-color: var(--line); }
.header-inner { position: relative; width: min(1400px, calc(100% - 40px)); height: 100%; margin: auto; display: flex; align-items: center; }
.brand { position: relative; width: 285px; height: 66px; flex: 0 0 285px; }
.brand img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .25s; }
.brand .logo-color { opacity: 0; }
.site-header.scrolled .logo-reversed, .site-header.solid .logo-reversed { opacity: 0; }
.site-header.scrolled .logo-color, .site-header.solid .logo-color { opacity: 1; }
.desktop-nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 28px; }
.nav-item { position: relative; }
.nav-link, .mega-trigger { padding: 34px 0; border: 0; color: inherit; background: transparent; font-size: 14px; font-weight: 500; }
.nav-link { position: relative; display: inline-flex; }
.mega-trigger { display: flex; align-items: center; gap: 7px; }
.mega-trigger::after { content: ''; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.mega-trigger[aria-expanded="true"]::after { transform: translateY(2px) rotate(225deg); }
.nav-link::before, .mega-trigger::before { content: ''; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px; background: var(--green); transition: right .25s ease; }
.nav-link:hover::before, .mega-trigger:hover::before, .mega-trigger[aria-expanded="true"]::before { right: 0; }
.header-actions { margin-left: auto; display: flex; gap: 10px; }
.header-cta { height: 48px; padding: 0 21px; border: 1px solid rgba(255,255,255,.8); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; transition: color .2s, background .2s, border-color .2s; }
.header-cta.primary { border-color: var(--blue); background: var(--blue); color: var(--white); }
.header-cta:hover, .header-cta.primary:hover { border-color: var(--green); color: var(--navy-3); background: var(--green); }
.site-header.scrolled .header-cta:not(.primary), .site-header.solid .header-cta:not(.primary) { border-color: var(--blue); }
.menu-button { display: none; width: 54px; height: 54px; margin-left: auto; border: 0; color: inherit; background: transparent; }
.menu-bars { width: 29px; margin: auto; display: grid; gap: 6px; }
.menu-bars span { height: 2px; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-open .menu-bars span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-bars span:nth-child(2) { opacity: 0; }
.menu-open .menu-bars span:last-child { transform: translateY(-8px) rotate(-45deg); }

.mega-menu { position: fixed; z-index: 115; top: calc(var(--topbar) + var(--header)); left: 0; right: 0; color: var(--ink); background: var(--white); box-shadow: 0 20px 55px rgba(3,35,59,.2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, transform .25s, visibility .25s; }
.mega-open .mega-menu { opacity: 1; visibility: visible; transform: none; }
.mega-panel { display: none; padding: 30px 0 34px; }
.mega-panel.is-active { display: block; }
.mega-grid { width: min(1240px, calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 38px; }
.mega-title { grid-column: 1 / -1; padding: 0; border: 0; }
.mega-title small { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.mega-title h2, .mega-title p { display: none; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; align-content: start; column-gap: 26px; }
.mega-links h3 { grid-column: 1 / -1; margin: 0 0 10px; color: var(--blue); font-family: Manrope, Arial, sans-serif; font-size: 13px; }
.mega-links a { min-height: 68px; padding: 8px 0; border: 0; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 14px; color: var(--ink); font-size: 13px; font-weight: 700; }
.mega-links a:hover { color: var(--blue); }
.menu-icon { width: 48px; height: 48px; padding: 9px; display: block; color: var(--blue); background: #f2f4f5; transition: color .2s, background .2s; }
.mega-links a:hover .menu-icon { color: var(--navy); background: #e8edcf; }
.mega-links a::after { display: none; }
.mega-feature { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #f2f4f5; }
.mega-card { min-height: 205px; position: relative; overflow: hidden; color: var(--navy); background: transparent; }
.mega-card img { position: static; width: 100%; height: 142px; object-fit: cover; opacity: 1; transition: transform .5s; }
.mega-card:hover img { transform: scale(1.04); }
.mega-card span { position: static; display: block; padding: 12px 2px 0; font-size: 12px; font-weight: 800; line-height: 1.4; }
.mega-backdrop { position: fixed; z-index: 110; inset: calc(var(--topbar) + var(--header)) 0 0; background: rgba(1,22,38,.58); opacity: 0; visibility: hidden; transition: .25s; }
.mega-open .mega-backdrop { opacity: 1; visibility: visible; }

.mobile-menu { display: none; }

/* Hero */
.hero { min-height: 930px; position: relative; padding-top: calc(var(--topbar) + var(--header)); color: var(--white); background: var(--navy); overflow: hidden; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,32,56,.95) 0%, rgba(2,42,71,.72) 48%, rgba(3,33,55,.34) 100%), linear-gradient(0deg, rgba(2,28,48,.68), transparent 50%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px)); margin: auto; padding-top: 150px; }
.hero-tags { display: flex; gap: 10px; margin-bottom: 20px; }
.tag { padding: 8px 14px; border: 1px solid rgba(255,255,255,.55); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(52px, 4.5vw, 66px); line-height: .96; letter-spacing: -.025em; font-weight: 700; }
.hero-copy { max-width: 680px; margin: 24px 0 30px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.7; }
.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 1px solid currentColor; color: inherit; font-size: 14px; font-weight: 700; transition: background .2s, border-color .2s; }
.button::after { content: '→'; font-size: 18px; }
.button.primary { color: var(--white); border-color: var(--blue-bright); background: var(--blue-bright); }
.button.primary { box-shadow: inset 0 -3px 0 var(--green); }
.button:hover { border-color: var(--green); background: var(--green); color: var(--navy-3); }
.hero-contact { position: absolute; z-index: 3; right: 0; top: 49%; display: grid; }
.hero-contact a { min-width: 148px; padding: 12px 18px; color: var(--white); background: var(--blue); font-size: 13px; font-weight: 700; }
.hero-contact a + a { margin-top: 2px; background: var(--navy); }

.feature-cards { position: relative; z-index: 5; margin-top: -122px; padding-bottom: 90px; }
.feature-grid { width: min(var(--max), calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.feature-card { min-height: 330px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.38); color: var(--white); background: var(--navy); transition: z-index .01s, transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.feature-card + .feature-card { border-left: 0; }
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card::before { content: ''; position: absolute; z-index: 3; inset: 0 0 auto; height: 4px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.feature-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,9,53,.97) 0%, rgba(15,9,53,.7) 52%, rgba(15,9,53,.14) 100%); transition: background .35s; }
.feature-card:hover, .feature-card:focus-within { z-index: 2; border-color: var(--green); transform: translateY(-8px); box-shadow: 0 24px 45px rgba(15,9,53,.28); }
.feature-card:hover::before, .feature-card:focus-within::before { transform: scaleX(1); }
.feature-card:hover::after, .feature-card:focus-within::after { background: linear-gradient(0deg, rgba(42,21,132,.98) 0%, rgba(42,21,132,.72) 55%, rgba(15,9,53,.18) 100%); }
.feature-card:hover img, .feature-card:focus-within img { transform: scale(1.06); }
.feature-card-content { position: absolute; z-index: 2; inset: auto 28px 26px; transition: transform .35s var(--ease); }
.feature-card:hover .feature-card-content, .feature-card:focus-within .feature-card-content { transform: translateY(-5px); }
.feature-card small { color: #b9cf31; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.feature-card h2 { margin: 7px 0 10px; font-size: 23px; line-height: 1.1; }
.feature-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.card-link { margin-top: 17px; display: inline-flex; gap: 12px; align-items: center; font-size: 13px; font-weight: 700; }
.card-link::after { content: '→'; transition: transform .25s; }
.feature-card:hover .card-link::after, .feature-card:focus-within .card-link::after { transform: translateX(6px); }

.home-intro { padding: 104px 0; background: var(--white); }
.home-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.home-intro-copy { max-width: 570px; }
.home-intro-copy .section-heading { color: var(--navy); }
.home-intro-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.home-intro-links { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 28px; }
.home-intro-media { min-height: 470px; margin: 0; overflow: hidden; position: relative; }
.home-intro-media::after { content: ''; position: absolute; left: 0; bottom: 0; width: 84px; height: 6px; background: var(--green); }
.home-intro-media img { width: 100%; height: 470px; object-fit: cover; }

/* Home sections */
.blue-section { color: var(--white); background: var(--navy); }
.solution-split { min-height: 670px; display: grid; grid-template-columns: 1fr 1.2fr; }
.solution-copy { padding: 95px max(40px, calc((100vw - var(--max))/2)) 80px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.solution-copy p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.solution-visual { min-height: 640px; position: relative; overflow: hidden; background: var(--navy); }
.solution-visual > img { width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.float-product { position: absolute; left: 8%; right: 8%; bottom: -6%; width: 84%; height: 84%; object-fit: contain !important; opacity: 1 !important; filter: drop-shadow(0 30px 28px rgba(0,0,0,.35)); }
.process-section { padding: 105px 0; color: var(--white); background: linear-gradient(135deg, var(--navy-3), var(--navy)); }
.process-head { max-width: 920px; margin: 0 auto 68px; text-align: center; }
.process-head p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.process-step { min-height: 260px; padding: 32px 38px; border: 1px solid rgba(255,255,255,.17); border-right: 0; position: relative; }
.process-step:last-child { border-right: 1px solid rgba(255,255,255,.17); }
.process-step strong { display: block; color: var(--green); font-size: 54px; line-height: 1; }
.process-step h3 { margin: 30px 0 10px; font-size: 22px; }
.process-step p { color: rgba(255,255,255,.62); font-size: 14px; }
.process-step::after { content: '→'; position: absolute; right: -18px; top: 48%; z-index: 2; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--white); background: var(--blue); }
.process-step:last-child::after { display: none; }
.products-section { padding: 105px 0 100px; color: var(--white); background: var(--navy-2); }
.products-head { max-width: 700px; margin-bottom: 50px; }
.products-head p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-grid > a { display: block; height: 100%; }
.product-card { min-height: 480px; position: relative; padding: 24px; display: flex; flex-direction: column; color: var(--white); background: #25146d; overflow: hidden; }
.product-grid > a .product-card { height: 100%; }
.product-card::before { content: attr(data-label); position: absolute; top: 18px; right: 18px; color: #b9cf31; font-size: 11px; font-weight: 700; }
.product-graphic { height: 255px; margin: 20px 0 5px; display: grid; place-items: center; }
.product-graphic img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--ease); }
.product-card:hover .product-graphic img { transform: translateY(-8px) scale(1.02); }
.product-card h3 { margin: auto 0 8px; font-size: 21px; line-height: 1.15; }
.product-card p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; }
.config-section { padding: 110px 0; background: var(--white); }
.config-head { max-width: 850px; margin: 0 auto 58px; text-align: center; }
.config-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.config-card { padding: 30px; border: 1px solid var(--line); background: var(--white); }
.config-card-icon { height: 125px; margin: -4px 0 24px; display: flex; align-items: center; }
.config-card-icon img { width: 170px; height: 115px; object-fit: contain; object-position: left center; }
.config-card h3 { margin: 0 0 18px; font-size: 24px; }
.config-card ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.config-card li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--ink); background: transparent; font-size: 13px; font-weight: 700; }
.config-card li::before { content: ''; width: 6px; height: 6px; margin-right: 9px; display: inline-block; border-radius: 50%; background: var(--green); vertical-align: middle; }
.quality-section { padding: 110px 0; background: var(--soft); }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; }
.quality-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.check-groups { display: grid; gap: 22px; }
.check-card { padding: 26px; background: var(--white); border-left: 4px solid var(--blue); }
.check-card h3 { margin: 0 0 14px; font-size: 18px; }
.check-card ul { margin: 0; padding: 0; list-style: none; }
.check-card li { margin: 9px 0; color: var(--muted); font-size: 14px; }
.check-card li::before { content: '✓'; margin-right: 10px; color: var(--green); font-weight: 800; }
.industries { padding: 110px 0; }
.industries-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.industries-head p { color: var(--muted); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-card { min-height: 330px; position: relative; overflow: hidden; color: var(--white); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,35,57,.94), rgba(3,35,57,.08)); }
.industry-card:hover img { transform: scale(1.04); }
.industry-card-content { position: absolute; z-index: 1; inset: auto 22px 22px; }
.industry-card h3 { margin: 0 0 8px; font-size: 20px; }
.industry-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.cta-section { padding: 105px 0; color: var(--white); background: linear-gradient(120deg, var(--navy), #35239a); text-align: center; }
.cta-section .section-heading { max-width: 800px; margin-inline: auto; }
.cta-section p { max-width: 730px; margin: 20px auto 30px; color: rgba(255,255,255,.72); }
.leadtime-section { min-height: 660px; display: grid; grid-template-columns: 1fr 1fr; }
.leadtime-image img { width: 100%; height: 100%; object-fit: cover; }
.leadtime-copy { padding: 85px max(40px, calc((100vw - var(--max))/2)); display: grid; align-content: center; }
.leadtime-copy p { color: var(--muted); line-height: 1.75; }
.stat-row { margin: 30px 0; display: flex; gap: 35px; }
.stat strong { display: block; color: var(--blue); font-size: 44px; line-height: 1; }
.stat span { color: var(--muted); font-size: 12px; }

/* Interior pages */
.inner-hero { min-height: 610px; position: relative; padding-top: calc(var(--topbar) + var(--header)); color: var(--white); background: var(--navy); overflow: hidden; }
.inner-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.inner-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,32,56,.96), rgba(2,32,56,.32)); }
.inner-hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 48px)); margin: auto; padding-top: 135px; }
.breadcrumbs { margin-bottom: 24px; color: rgba(255,255,255,.66); font-size: 13px; }
.inner-hero h1 { max-width: 850px; margin: 0; font-size: clamp(45px, 4.7vw, 64px); line-height: 1.05; letter-spacing: -.04em; }
.inner-hero p { max-width: 680px; color: rgba(255,255,255,.75); font-size: 18px; }
.hero-service-icon { width: 70px; height: 58px; margin: -6px 0 22px; position: relative; color: var(--white); }
.hero-service-icon::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 26px; height: 3px; background: var(--green); }
.hero-service-icon svg { width: 56px; height: 56px; display: block; }

/* Product and service detail heroes */
body[data-page="services"] .inner-hero,
body[data-page="products"] .inner-hero {
  min-height: 790px;
  background-color: #0f0935;
  background-image:
    linear-gradient(rgba(126,112,196,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,112,196,.07) 1px, transparent 1px);
  background-size: 72px 72px;
}
body[data-page="services"] .inner-hero > img,
body[data-page="products"] .inner-hero > img {
  inset: calc(var(--topbar) + var(--header) + 52px) 0 0 auto;
  width: 52%;
  height: auto;
  opacity: 1;
  object-position: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
body[data-page="services"] .inner-hero::after,
body[data-page="products"] .inner-hero::after {
  background:
    linear-gradient(90deg, #0f0935 0%, #0f0935 43%, rgba(15,9,53,.88) 55%, rgba(15,9,53,.12) 78%),
    linear-gradient(0deg, rgba(15,9,53,.68), transparent 45%);
}
body[data-page="services"] .inner-hero-content,
body[data-page="products"] .inner-hero-content { padding-top: 162px; padding-bottom: 76px; }
body[data-page="services"] .inner-hero h1,
body[data-page="products"] .inner-hero h1 {
  max-width: 690px;
  font-size: clamp(54px, 5.2vw, 72px);
  line-height: .98;
}
body[data-page="services"] .inner-hero p,
body[data-page="products"] .inner-hero p {
  max-width: 600px;
  margin-top: 26px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.65;
}
body[data-page="services"] .hero-service-icon,
body[data-page="products"] .hero-service-icon {
  width: 62px;
  height: 62px;
  margin: 0 0 28px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.24);
  color: #dcd7ff;
  background: rgba(42,21,132,.28);
}
body[data-page="services"] .hero-service-icon::after,
body[data-page="products"] .hero-service-icon::after { left: 9px; bottom: -1px; width: 24px; }
body[data-page="services"] .hero-service-icon svg,
body[data-page="products"] .hero-service-icon svg { width: 42px; height: 42px; }

@media (min-width: 901px) {
  body[data-page="services"] .site-header.solid:not(.scrolled),
  body[data-page="products"] .site-header.solid:not(.scrolled) {
    color: var(--white);
    background: #0f0935;
    box-shadow: none;
    border-color: rgba(255,255,255,.14);
  }
  body[data-page="services"] .site-header.solid:not(.scrolled) .logo-reversed,
  body[data-page="products"] .site-header.solid:not(.scrolled) .logo-reversed { opacity: 1; }
  body[data-page="services"] .site-header.solid:not(.scrolled) .logo-color,
  body[data-page="products"] .site-header.solid:not(.scrolled) .logo-color { opacity: 0; }
  body[data-page="services"] .site-header.solid:not(.scrolled) .header-cta:not(.primary),
  body[data-page="products"] .site-header.solid:not(.scrolled) .header-cta:not(.primary) { border-color: rgba(255,255,255,.76); }
}
.inner-section { padding: 105px 0; }
.inner-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inner-split img { width: 100%; height: 520px; object-fit: cover; }
.inner-copy p { color: var(--muted); line-height: 1.75; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-item { padding: 30px; border: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: 20px; }
.service-icon { width: 54px; height: 54px; border: 1px solid var(--blue); display: grid; place-items: center; color: var(--blue); box-shadow: inset 0 -3px 0 var(--green); font-size: 20px; font-weight: 800; }
.service-item h3 { margin: 0 0 8px; font-size: 20px; }
.service-item p { margin: 0; color: var(--muted); font-size: 14px; }
.service-item-link { color: inherit; }
.service-item-link .service-item { height: 100%; transition: border-color .2s, transform .2s, box-shadow .2s; }
.service-item-link:hover .service-item { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 16px 35px rgba(42,21,132,.1); }
.detail-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: start; }
.detail-copy > p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.detail-aside { padding: 34px; color: var(--white); background: var(--blue); }
.detail-aside h3 { margin: 0 0 14px; font-size: 28px; }
.detail-aside p { color: rgba(255,255,255,.72); }
.detail-aside .button { margin-top: 12px; }
.scope-section { padding: 100px 0; background: var(--soft); }
.scope-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.scope-card { min-height: 210px; padding: 28px; border-top: 3px solid var(--green); background: var(--white); }
.scope-card .material-symbols-rounded { color: var(--blue); font-size: 34px; }
.scope-card h3 { margin: 22px 0 8px; font-size: 24px; }
.scope-card p { margin: 0; color: var(--muted); font-size: 14px; }
.detail-image-band { min-height: 540px; position: relative; display: grid; align-items: end; overflow: hidden; color: var(--white); }
.detail-image-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-image-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,9,47,.94), rgba(15,9,47,.18)); }
.detail-image-band .container { position: relative; z-index: 1; padding-block: 90px; }
.detail-image-band .section-heading { max-width: 720px; }
.material-symbols-rounded { font-family: "Material Symbols Rounded"; font-weight: normal; font-style: normal; line-height: 1; letter-spacing: normal; text-transform: none; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-card { min-height: 460px; position: relative; overflow: hidden; color: var(--white); }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,34,58,.94), rgba(2,34,58,.05)); }
.project-card:hover img { transform: scale(1.04); }
.project-card-content { position: absolute; z-index: 1; inset: auto 30px 28px; }
.project-card small { color: #c9c2f7; font-weight: 700; }
.project-card h2 { margin: 7px 0; font-size: 28px; }
.project-card p { margin: 0; color: rgba(255,255,255,.7); }
.project-card-link { display: block; color: inherit; }
.project-card-link .project-card { height: 100%; }
.project-card-content::after { content: 'View project →'; margin-top: 18px; display: block; color: #b9cf31; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.project-card-link:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.project-index-hero { min-height: 760px; }
.project-index-hero > img { opacity: .64; }
.project-index-hero::after { background: linear-gradient(90deg, rgba(15,9,47,.96) 0%, rgba(15,9,47,.64) 45%, rgba(15,9,47,.12) 100%); }
.project-index-hero .inner-hero-content { padding-top: 205px; padding-bottom: 76px; }
body[data-page="projects"] .inner-hero-content { padding-bottom: 76px; }
.project-index-hero h1 { max-width: 780px; font-size: clamp(58px, 6.8vw, 88px); line-height: .93; letter-spacing: -.035em; }
.project-index-hero .project-hero-kicker { margin: 0 0 22px; color: #b9cf31; font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.project-scroll-link { margin-top: 38px; display: inline-flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 8px; font-size: 13px; font-weight: 700; }
.project-scroll-link span { color: var(--green); font-size: 20px; }
body[data-page="projects"] .site-header.solid:not(.scrolled) { color: var(--white); background: linear-gradient(180deg, rgba(15,9,47,.68), rgba(15,9,47,0)); box-shadow: none; border-color: rgba(255,255,255,.15); }
body[data-page="projects"] .site-header.solid:not(.scrolled) .logo-reversed { opacity: 1; }
body[data-page="projects"] .site-header.solid:not(.scrolled) .logo-color { opacity: 0; }
body[data-page="projects"] .site-header.solid:not(.scrolled) .header-cta:not(.primary) { border-color: rgba(255,255,255,.8); }
.project-index-intro { padding: 110px 0; scroll-margin-top: calc(var(--topbar) + var(--header) + 18px); }
.project-index-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; align-items: end; }
.project-index-intro-grid > div:last-child > p { max-width: 570px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.project-index-facts { margin: 42px 0 0; padding-top: 25px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-index-facts div { min-width: 0; }
.project-index-facts dt { color: var(--blue); font-family: Barlow, sans-serif; font-size: 38px; font-weight: 700; line-height: 1; }
.project-index-facts dd { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .05em; }
.project-feature-section { padding: 0 0 120px; }
.project-feature { display: grid; grid-template-columns: 1.45fr .55fr; min-height: 620px; color: var(--white); background: var(--navy); }
.project-feature-media { position: relative; overflow: hidden; }
.project-feature-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; transition: transform .7s var(--ease); }
.project-feature-media span, .project-entry-media span { position: absolute; top: 20px; left: 20px; width: 50px; height: 50px; display: grid; place-items: center; color: var(--white); background: var(--blue); font-family: Barlow, sans-serif; font-size: 18px; font-weight: 700; box-shadow: inset 0 -3px 0 var(--green); }
.project-feature-copy { padding: 55px 44px; display: flex; flex-direction: column; justify-content: flex-end; }
.project-feature-copy h2 { margin: 12px 0 18px; font-size: 44px; line-height: .98; }
.project-feature-copy > p:not(.project-label):not(.project-meta-line) { color: rgba(255,255,255,.7); line-height: 1.7; }
.project-feature:hover img, .project-entry:hover img { transform: scale(1.035); }
.project-label { margin: 0 0 auto; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-meta-line { margin: 0; color: var(--blue-bright); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.project-feature .project-meta-line { color: #c9c2f7; }
.project-text-link { margin-top: 28px; display: inline-flex; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.project-ledger { padding: 0 0 120px; }
.project-entry { padding: 48px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.project-entry:last-child { border-bottom: 1px solid var(--line); }
.project-entry-media { min-height: 390px; position: relative; overflow: hidden; background: var(--soft); }
.project-entry-media img { width: 100%; height: 390px; object-fit: cover; transition: transform .7s var(--ease); }
.project-entry-media img[src*="sotta-pap-power-distribution/03"], .project-entry-media img[src*="buckreef-33kv-relocation/01"], .project-card img[src*="buckreef-33kv-relocation/01"] { transform: rotate(90deg) scale(1.04); }
.project-entry:hover img[src*="sotta-pap-power-distribution/03"], .project-entry:hover img[src*="buckreef-33kv-relocation/01"], .project-card:hover img[src*="buckreef-33kv-relocation/01"] { transform: rotate(90deg) scale(1.09); }
.project-entry-copy { max-width: 500px; }
.project-entry-copy h2 { margin: 12px 0 16px; color: var(--navy); font-size: 39px; line-height: 1; }
.project-entry-copy > p:not(.project-meta-line) { color: var(--muted); font-size: 15px; line-height: 1.7; }
.project-entry:nth-child(even) { grid-template-columns: .92fr 1.08fr; }
.project-entry:nth-child(even) .project-entry-media { order: 2; }
.project-entry:nth-child(even) .project-entry-copy { justify-self: end; }
.cinematic-projects { background: var(--navy-3); }
.cinematic-project { min-height: clamp(620px, 82vh, 880px); position: relative; overflow: hidden; display: grid; align-items: end; color: var(--white); background: var(--navy); }
.cinematic-project > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s ease; }
.cinematic-project:hover > img { transform: scale(1.025); filter: saturate(1.08); }
.cinematic-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(15,9,47,.96) 0%, rgba(15,9,47,.72) 40%, rgba(15,9,47,.12) 78%), linear-gradient(0deg, rgba(15,9,47,.62), transparent 55%); }
.cinematic-project:nth-child(even) .cinematic-shade { background: linear-gradient(270deg, rgba(15,9,47,.96) 0%, rgba(15,9,47,.72) 40%, rgba(15,9,47,.12) 78%), linear-gradient(0deg, rgba(15,9,47,.62), transparent 55%); }
.cinematic-content { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; padding: 90px 0; position: relative; z-index: 2; }
.cinematic-content > * { max-width: 700px; }
.cinematic-project:nth-child(even) .cinematic-content { text-align: right; }
.cinematic-project:nth-child(even) .cinematic-content > * { margin-left: auto; }
.cinematic-number { width: 56px; height: 56px; margin-bottom: 34px; display: grid; place-items: center; color: var(--white); background: var(--blue); font-family: Barlow, sans-serif; font-size: 20px; font-weight: 700; box-shadow: inset 0 -3px 0 var(--green); }
.cinematic-project:nth-child(even) .cinematic-number { margin-left: auto; }
.cinematic-meta { margin-top: 0; margin-bottom: 14px; color: #c9c2f7; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.cinematic-content h2 { margin: 0; font-size: clamp(45px, 5.2vw, 70px); line-height: .95; letter-spacing: -.025em; }
.cinematic-content h2 + p { margin: 22px 0 0; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.7; }
.cinematic-link { margin-top: 34px; padding-bottom: 7px; border-bottom: 1px solid rgba(145,173,0,.75); display: inline-block; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.cinematic-project-rotated > img { transform: rotate(90deg) scale(1.65); }
.cinematic-project-rotated:hover > img { transform: rotate(90deg) scale(1.7); }
.project-meta { margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.project-meta span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); font-size: 12px; font-weight: 700; }
.case-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.case-copy > p { color: var(--muted); font-size: 17px; line-height: 1.8; }
.project-facts { margin: 0; border-top: 4px solid var(--green); background: var(--navy); color: var(--white); }
.project-facts div { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.project-facts dt { margin-bottom: 5px; color: #b9cf31; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.project-facts dd { margin: 0; font-size: 14px; line-height: 1.5; }
.delivery-section { padding: 100px 0; background: var(--soft); }
.delivery-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.delivery-item { padding: 28px; border-left: 3px solid var(--green); background: var(--white); }
.delivery-item h3 { margin: 0 0 8px; font-size: 24px; }
.delivery-item p { margin: 0; color: var(--muted); font-size: 14px; }
.project-gallery { padding: 105px 0; }
.gallery-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid figcaption { padding: 11px 0; color: var(--muted); font-size: 12px; }
.contact-section { padding: 105px 0; color: var(--white); background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.contact-details h2 { margin-top: 0; font-size: 42px; line-height: 1.1; }
.contact-block { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.18); }
.contact-block span { display: block; margin-bottom: 5px; color: #b9cf31; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.contact-block address { font-style: normal; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; padding: 13px; border: 1px solid rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.06); outline: 0; }
.field select option { color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-bright); }
.form-note { grid-column: 1 / -1; color: rgba(255,255,255,.55); font-size: 12px; }

/* DEI-inspired single-canvas contact page */
.contact-canvas { min-height: 960px; position: relative; padding: calc(var(--topbar) + var(--header) + 96px) 0 78px; overflow: hidden; color: var(--white); background: var(--navy); }
.contact-canvas::before { content: ''; position: absolute; inset: 0; background: url('/assets/images/hero-substation.webp') center / cover no-repeat; opacity: .34; }
.contact-canvas::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,9,47,.98) 0%, rgba(18,12,61,.88) 42%, rgba(6,31,66,.82) 100%); }
body[data-page="contact"] .site-header.solid:not(.scrolled) { color: var(--white); background: linear-gradient(180deg, rgba(15,9,47,.64), rgba(15,9,47,0)); box-shadow: none; border-color: rgba(255,255,255,.15); }
body[data-page="contact"] .site-header.solid:not(.scrolled) .logo-reversed { opacity: 1; }
body[data-page="contact"] .site-header.solid:not(.scrolled) .logo-color { opacity: 0; }
body[data-page="contact"] .site-header.solid:not(.scrolled) .header-cta:not(.primary) { border-color: rgba(255,255,255,.8); }
.contact-canvas-inner { width: min(1400px, calc(100% - 48px)); margin: auto; position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; align-items: end; }
.contact-copy { padding-top: 12px; }
.contact-kicker { color: #b9cf31; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-copy h1 { max-width: 510px; margin: 18px 0 20px; font-size: clamp(50px, 4.7vw, 68px); font-weight: 700; line-height: .95; letter-spacing: -.02em; }
.contact-intro { max-width: 490px; margin: 0 0 32px; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.7; }
.contact-channel-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.contact-channel { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); display: grid; grid-template-columns: 37px 1fr; gap: 12px; align-items: start; }
.contact-channel.location { grid-column: auto; }
.contact-channel strong { display: block; margin-bottom: 8px; font-family: Barlow, Manrope, sans-serif; font-size: 22px; }
.contact-channel a, .contact-channel address { display: block; color: rgba(255,255,255,.72); font-size: 14px; font-style: normal; }
.contact-channel-icon { width: 37px; height: 37px; padding: 7px; display: block; color: var(--blue); background: var(--white); box-shadow: inset 0 -3px 0 var(--green); }
.contact-form-panel { padding: 24px; border: 1px solid rgba(255,255,255,.12); background: rgba(3,17,47,.7); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.contact-form.reference-form { grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form.reference-form .field { gap: 0; }
.contact-form.reference-form .field label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.contact-form.reference-form input, .contact-form.reference-form textarea { min-height: 44px; padding: 0 14px; border: 1px solid rgba(255,255,255,.22); color: var(--white); background: rgba(255,255,255,.1); }
.contact-form.reference-form textarea { min-height: 120px; padding-top: 13px; }
.contact-form.reference-form input::placeholder, .contact-form.reference-form textarea::placeholder { color: rgba(255,255,255,.62); }
.contact-form.reference-form input:focus, .contact-form.reference-form textarea:focus { border-color: var(--green); }
.contact-subjects { grid-column: 1 / -1; padding: 16px 20px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.09); }
.contact-subjects legend { padding: 0 7px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }
.subject-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.subject-option { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); font-size: 13px; }
.subject-option input { min-height: 0 !important; width: 16px !important; height: 16px; accent-color: var(--green); }
.contact-submit { width: 100%; min-height: 50px; border: 0; color: var(--white); background: var(--blue); font-weight: 700; box-shadow: inset 0 -3px 0 var(--green); }
.contact-submit:hover { color: var(--navy-3); background: var(--green); }
.contact-form.reference-form .form-note { margin: -5px 0 0; }

/* Careers */
.careers-hero { min-height: 570px; }
.career-status-section { padding: 115px 0; }
.career-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.career-status-copy { padding-top: 8px; }
.career-status-copy p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.career-status-mark { margin-top: 20px; padding: 12px 16px; border-left: 3px solid var(--green); display: inline-block; color: var(--navy); background: var(--soft); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.career-band { display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--navy); }
.career-band img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.career-band-copy { padding: 90px max(40px, calc((100vw - var(--max))/2)); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.career-band-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); line-height: 1.75; }
.home-projects { background: var(--soft); }
.home-projects .project-grid { grid-template-columns: repeat(3, 1fr); }
.home-projects .project-card { min-height: 390px; }
.home-projects-link { margin: 34px 0 0; text-align: center; }

/* Footer */
.site-footer { position: relative; isolation: isolate; overflow: hidden; color: var(--white); background: #0b0726; }
.site-footer::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  width: 100%;
  height: 760px;
  background: url('/assets/graphics/footer-abstract-bg.svg') center top / cover no-repeat;
  opacity: .48;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-contact { padding: 85px 0; border-bottom: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.footer-contact h2 { margin: 0; font-size: 42px; line-height: 1.08; }
.footer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-details strong { display: block; margin-bottom: 6px; font-size: 16px; }
.footer-details span, .footer-details a { color: rgba(255,255,255,.66); font-size: 14px; }
.footer-enquiry { grid-template-columns: .78fr 1.22fr; align-items: start; padding: 100px 0; }
.footer-kicker { display: block; margin-bottom: 18px; color: #b9cf31; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-enquiry-copy { max-width: 470px; }
.footer-enquiry-copy h2 { max-width: 430px; }
.footer-enquiry-copy > p { margin: 22px 0 34px; color: rgba(255,255,255,.68); line-height: 1.75; }
.footer-contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.footer-contact-list > div { display: grid; grid-template-columns: 37px 1fr; column-gap: 12px; align-items: start; }
.footer-contact-icon { grid-row: 1 / 3; }
.footer-contact-list strong, .footer-contact-list a, .footer-contact-list span { grid-column: 2; }
.footer-contact-list > div:last-child { grid-column: 1 / -1; }
.footer-contact-list strong { display: block; margin-bottom: 6px; font-size: 13px; }
.footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,.65); font-size: 13px; }
.footer-form-panel { padding: 28px; border: 1px solid rgba(255,255,255,.14); background: rgba(20,12,67,.64); box-shadow: inset 0 3px 0 var(--green), 0 24px 60px rgba(0,0,0,.18); }
.footer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.footer-field { display: grid; }
.footer-field.full, .footer-form-note { grid-column: 1 / -1; }
.footer-field label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.footer-form input, .footer-form select, .footer-form textarea { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 0; outline: 0; color: var(--white); background: rgba(255,255,255,.08); }
.footer-form textarea { min-height: 112px; padding-top: 13px; resize: vertical; }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,.55); }
.footer-form select { color: rgba(255,255,255,.72); }
.footer-form select option { color: var(--ink); background: var(--white); }
.footer-form input:focus, .footer-form select:focus, .footer-form textarea:focus { border-color: var(--green); background: rgba(255,255,255,.12); }
.footer-form-note { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.55; }
.footer-submit { min-height: 52px; border: 1px solid var(--blue-bright); color: var(--white); background: var(--blue-bright); font-weight: 800; transition: color .2s, border-color .2s, background .2s; }
.footer-submit span { margin-left: 14px; font-size: 18px; }
.footer-submit:hover { border-color: var(--green); color: var(--navy-3); background: var(--green); }
.footer-main { padding: 70px 0; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 42px; }
.footer-logo { width: 260px; }
.footer-col h3 { margin: 0 0 18px; font-size: 18px; }
.footer-col a { display: block; margin: 8px 0; color: rgba(255,255,255,.65); font-size: 13px; }
.footer-col a:hover { color: #b9cf31; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; color: rgba(255,255,255,.45); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1160px) {
  .desktop-nav { gap: 17px; }
  .brand { width: 235px; flex-basis: 235px; }
  .header-actions { margin-left: auto; }
  .header-cta:first-child { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header: 78px; }
  .utility-inner { justify-content: space-between; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .brand { width: 250px; flex-basis: 250px; height: 58px; }
  .mega-menu, .mega-backdrop { display: none; }
  .mobile-menu { position: fixed; z-index: 118; inset: calc(var(--topbar) + var(--header)) 0 0; display: block; overflow-y: auto; color: var(--white); background: linear-gradient(135deg, rgba(15,9,53,.97), rgba(6,31,66,.94)), url('/assets/graphics/footer-abstract-bg.svg') 70% top / cover no-repeat; box-shadow: inset 0 3px 0 rgba(145,173,0,.9); opacity: 0; visibility: hidden; transform: translateX(100%); transition: opacity .28s ease, visibility .28s ease, transform .38s var(--ease); }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
  .mobile-menu-inner { width: min(100% - 48px, 700px); margin: auto; padding: 26px 0 60px; }
  .mobile-menu-label { margin-bottom: 8px; display: flex; align-items: center; gap: 12px; color: #c5dc42; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
  .mobile-menu-label::after { content: ''; width: 42px; height: 1px; background: rgba(197,220,66,.72); }
  .mobile-group { position: relative; border-bottom: 1px solid rgba(255,255,255,.14); transition: margin .25s ease, padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
  .mobile-group.is-open { margin-inline: -12px; padding-inline: 12px; border-color: rgba(197,220,66,.38); background: rgba(255,255,255,.045); box-shadow: inset 3px 0 0 var(--green); }
  .mobile-group > button, .mobile-direct { width: 100%; padding: 17px 0; border: 0; color: var(--white); background: transparent; display: flex; align-items: center; justify-content: space-between; text-align: left; font-size: 19px; line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
  .mobile-group > button { transition: color .2s ease; }
  .mobile-group > button:focus-visible { outline: 1px solid rgba(197,220,66,.72); outline-offset: -1px; }
  .mobile-group > button::after { content: '+'; width: 27px; height: 27px; flex: 0 0 27px; border: 1px solid rgba(197,220,66,.55); display: grid; place-items: center; color: #c5dc42; font-size: 17px; line-height: 1; transition: color .2s ease, background .2s ease, border-color .2s ease; }
  .mobile-group > button[aria-expanded="true"] { color: #d4e96b; }
  .mobile-group > button[aria-expanded="true"]::after { border-color: var(--green); color: var(--navy-3); background: var(--green); }
  .mobile-group > button[aria-expanded="true"]::after { content: '−'; }
  .mobile-sublinks { max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-6px); transition: max-height .38s ease, opacity .22s ease, transform .3s ease; }
  .mobile-group.is-open .mobile-sublinks { max-height: 450px; padding-bottom: 13px; opacity: 1; transform: none; }
  .mobile-sublinks a { position: relative; display: block; padding: 7px 0 7px 17px; color: rgba(255,255,255,.68); font-size: 13px; }
  .mobile-sublinks a::before { content: ''; position: absolute; left: 0; top: 50%; width: 7px; height: 1px; background: var(--green); }
  .mobile-sublinks a:hover, .mobile-sublinks a:focus-visible { color: var(--white); }
  .mobile-direct { border-bottom: 1px solid rgba(255,255,255,.14); }
  .mobile-direct span { color: #c5dc42; transition: transform .2s ease; }
  .mobile-direct:hover span, .mobile-direct:focus-visible span { transform: translateX(4px); }
  .mobile-cta { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .solution-split, .leadtime-section { grid-template-columns: 1fr; }
  .solution-copy, .leadtime-copy { padding: 80px 30px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid rgba(255,255,255,.17); border-bottom: 0; }
  .process-step:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
  .process-step::after { right: 50%; top: auto; bottom: -18px; transform: translateX(50%) rotate(90deg); }
  .quality-grid, .industries-head, .inner-split, .contact-grid, .footer-contact { grid-template-columns: 1fr; gap: 45px; }
  .contact-canvas-inner, .career-band, .home-intro-grid, .project-index-intro-grid, .career-status-grid { grid-template-columns: 1fr; }
  .home-intro-copy { max-width: 760px; }
  .project-index-intro-grid, .career-status-grid { gap: 45px; }
  .project-feature { grid-template-columns: 1.2fr .8fr; }
  .project-entry { gap: 45px; }
  .contact-canvas { padding-top: calc(var(--topbar) + var(--header) + 60px); }
  .career-grid { grid-template-columns: 1fr 1fr; }
  .case-intro { grid-template-columns: 1fr; gap: 45px; }
  .detail-intro { grid-template-columns: 1fr; gap: 45px; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-logo-wrap { grid-column: 1 / -1; }
  .footer-enquiry-copy { max-width: 680px; }
  body[data-page="services"] .inner-hero,
  body[data-page="products"] .inner-hero { min-height: 850px; }
  body[data-page="services"] .inner-hero > img,
  body[data-page="products"] .inner-hero > img {
    inset: calc(var(--topbar) + var(--header)) 0 auto;
    width: 100%;
    height: 305px;
    clip-path: none;
  }
  body[data-page="services"] .inner-hero::after,
  body[data-page="products"] .inner-hero::after {
    background: linear-gradient(180deg, rgba(15,9,53,0) 22%, rgba(15,9,53,.42) 36%, #0f0935 49%, #0f0935 100%);
  }
  body[data-page="services"] .inner-hero-content,
  body[data-page="products"] .inner-hero-content { padding-top: 340px; }
  body[data-page="services"] .inner-hero h1,
  body[data-page="products"] .inner-hero h1 { max-width: 760px; font-size: clamp(45px, 7.6vw, 61px); }
}

@media (max-width: 640px) {
  :root { --topbar: 42px; --header: 74px; }
  .container, .hero-content, .feature-grid, .inner-hero-content { width: min(100% - 32px, var(--max)); }
  .utility-inner { width: calc(100% - 24px); font-size: 11px; gap: 8px; }
  .utility-inner a { gap: 5px; }
  .utility-inner a::before { display: none; }
  .header-inner { width: calc(100% - 24px); }
  .brand { width: 220px; flex-basis: 220px; height: 52px; }
  .hero { min-height: 850px; }
  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: 43px; line-height: 1.04; }
  .hero-copy { font-size: 16px; }
  .hero-contact { display: none; }
  .hero-tags { flex-wrap: wrap; }
  .feature-cards { margin-top: -95px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 290px; }
  .feature-card + .feature-card { border-left: 1px solid rgba(255,255,255,.38); border-top: 0; }
  .solution-split { min-height: 0; }
  .solution-copy { padding: 70px 20px; }
  .solution-visual { min-height: 460px; }
  .process-section, .products-section, .config-section, .quality-section, .industries, .cta-section, .inner-section, .contact-section, .home-intro { padding: 75px 0; }
  .product-grid, .config-grid, .industry-grid, .service-list, .project-grid, .home-projects .project-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 450px; }
  .quality-grid { gap: 35px; }
  .scope-grid { grid-template-columns: 1fr; }
  .inner-hero { min-height: 560px; }
  .inner-hero-content { padding-top: 105px; }
  .inner-hero h1 { font-size: 43px; }
  body[data-page="services"] .inner-hero,
  body[data-page="products"] .inner-hero { min-height: 820px; }
  body[data-page="services"] .inner-hero > img,
  body[data-page="products"] .inner-hero > img { height: 255px; }
  body[data-page="services"] .inner-hero-content,
  body[data-page="products"] .inner-hero-content { padding-top: 282px; }
  body[data-page="services"] .breadcrumbs,
  body[data-page="products"] .breadcrumbs { margin-bottom: 18px; }
  body[data-page="services"] .hero-service-icon,
  body[data-page="products"] .hero-service-icon { width: 56px; height: 56px; margin-bottom: 22px; padding: 8px; }
  body[data-page="services"] .hero-service-icon svg,
  body[data-page="products"] .hero-service-icon svg { width: 38px; height: 38px; }
  body[data-page="services"] .inner-hero h1,
  body[data-page="products"] .inner-hero h1 { font-size: clamp(38px, 11.4vw, 46px); }
  body[data-page="services"] .inner-hero p,
  body[data-page="products"] .inner-hero p { margin-top: 20px; padding-left: 15px; font-size: 16px; line-height: 1.55; }
  .inner-split img { height: 360px; }
  .service-item { grid-template-columns: 46px 1fr; padding: 22px; }
  .service-icon { width: 44px; height: 44px; }
  .project-card { min-height: 390px; }
  .delivery-grid, .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form.reference-form, .subject-options, .contact-channel-grid { grid-template-columns: 1fr; }
  .contact-channel.location { grid-column: auto; }
  .contact-form-panel { padding: 16px; }
  .contact-copy h1 { font-size: 46px; }
  .project-index-hero { min-height: 650px; }
  .project-index-hero .inner-hero-content { padding-top: 140px; padding-bottom: 56px; }
  body[data-page="projects"] .inner-hero-content,
  body[data-page="services"] .inner-hero-content,
  body[data-page="products"] .inner-hero-content { padding-bottom: 56px; }
  .project-feature { grid-template-columns: 1fr; }
  .project-feature-media img { min-height: 440px; }
  .project-feature-copy { min-height: 380px; }
  .project-entry, .project-entry:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .project-entry:nth-child(even) .project-entry-media { order: initial; }
  .project-entry:nth-child(even) .project-entry-copy { justify-self: initial; }
  .project-entry-media, .project-entry-media img { min-height: 300px; height: 300px; }
  .project-entry-copy h2 { font-size: 32px; }
  .cinematic-project { min-height: 680px; }
  .cinematic-shade, .cinematic-project:nth-child(even) .cinematic-shade { background: linear-gradient(0deg, rgba(15,9,47,.98) 0%, rgba(15,9,47,.7) 47%, rgba(15,9,47,.14) 82%); }
  .cinematic-content { width: min(100% - 32px, var(--max)); padding: 64px 0; }
  .cinematic-project:nth-child(even) .cinematic-content { text-align: left; }
  .cinematic-project:nth-child(even) .cinematic-content > * { margin-left: 0; }
  .cinematic-project:nth-child(even) .cinematic-number { margin-left: 0; }
  .cinematic-number { margin-bottom: 25px; }
  .cinematic-content h2 { font-size: 42px; }
  .footer-contact h2 { font-size: 35px; }
  .footer-details, .footer-main { grid-template-columns: 1fr; }
  .footer-enquiry { padding: 76px 0; }
  .footer-contact-list, .footer-form { grid-template-columns: 1fr; }
  .footer-contact-list > div:last-child, .footer-field.full, .footer-form-note { grid-column: auto; }
  .footer-form-panel { padding: 18px; }
  .footer-logo-wrap { grid-column: auto; }
  .footer-bottom { display: block; }
  .site-footer::before { inset: 0 0 auto; width: 100%; height: 980px; opacity: .42; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
