/* Advanced Installations — graphite and electric blue. */
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 100 1000; font-display: swap; src: url('assets/fonts/dm-sans-latin.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('assets/fonts/space-grotesk-latin.woff2') format('woff2'); }

:root {
  --bg: #121416;
  --surface: #1b1e22;
  --surface-raised: #22262b;
  --text: #f2f2ef;
  --muted: #a4a9b0;
  --blue: #75b3ff;
  --blue-action: #1769e8;
  --blue-action-hover: #0f56c9;
  --line: #34383d;
  --heading: 'Space Grotesk', Arial, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --mono: 'Consolas', 'Courier New', monospace;
  --gutter: clamp(22px, 4.8vw, 80px);
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(ellipse at 95% 15%, #2b405e12, transparent 45%); }
::selection { color: var(--bg); background: var(--blue); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a, input, textarea, select, summary { -webkit-tap-highlight-color: transparent; }
button { color: inherit; cursor: pointer; }
button:disabled { cursor: default; }
img { display: block; max-width: 100%; object-fit: cover; }
svg { flex-shrink: 0; vertical-align: middle; }
button { background: none; border: 0; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 6px; }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-family: var(--heading); font-weight: 500; }
h1 { font-size: clamp(56px, 7.5vw, 114px); letter-spacing: -.065em; line-height: 1.035; }
h2 { font-size: clamp(36px, 4.25vw, 62px); letter-spacing: -.05em; line-height: 1.13; }
h3 { font-size: 25px; letter-spacing: -.035em; line-height: 1.25; }
p { color: var(--muted); }
[hidden] { display: none !important; }
.container { width: min(100% - var(--gutter) * 2, 1440px); margin-inline: auto; }
.section { padding-block: 112px; }
.section-tight { padding-top: 20px; padding-bottom: 100px; }
.eyebrow, .micro { font-family: var(--mono); text-transform: uppercase; font-weight: 400; }
.eyebrow { display: flex; align-items: center; gap: 13px; font-size: 11px; line-height: 1.6; letter-spacing: .13em; color: #c4c8cc; }
.eyebrow > span:not(.status-dot) { color: var(--blue); }
.micro { font-size: 10px; line-height: 1.65; letter-spacing: .08em; color: var(--muted); }
.status-dot { display: inline-block; width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px #75b3ff55; }
.accent { color: var(--blue); }
.muted { color: #8e959e; }
.icon { width: 22px; height: 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 20px; color: var(--bg); background: var(--blue); }
.skip-link:focus { top: 10px; }

/* Navigation */
.site-header { position: sticky; top: 0; z-index: 30; background: #121416ed; border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 5px 30px #0003; }
.header-inner { min-height: 99px; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
/* Blue display treatment also recolours the red details in the original logo. */
.brand-logo { width: 250px; height: auto; object-fit: contain; filter: grayscale(1) sepia(1) saturate(3.5) hue-rotate(175deg) brightness(1.12); }
.primary-navigation { display: flex; align-items: center; gap: clamp(24px, 2.6vw, 42px); margin-left: auto; }
.primary-navigation > a { color: #c8cbd0; font-size: 13px; position: relative; white-space: nowrap; transition: color .2s; }
.primary-navigation > a::after { content: ''; width: 0; position: absolute; bottom: -10px; left: 0; height: 2px; background: var(--blue); transition: width .25s; }
.primary-navigation > a:hover, .primary-navigation > a.is-active { color: #fff; }
.primary-navigation > a:hover::after, .primary-navigation > a.is-active::after { width: 22px; }
.header-actions { display: flex; align-items: center; gap: 25px; }
.icon-button { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid #456b9b; background: #1769e81a; color: var(--blue); font-size: 23px; transition: background .2s, color .2s, border-color .2s; }
.icon-button:hover { color: #fff; border-color: var(--blue-action); background: var(--blue-action); }
.search-button { border: 0; width: 25px; background: transparent; }
.search-button .icon { width: 18px; }
.header-cta { padding: 12px 19px; background: var(--blue-action); color: #fff; display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 650; transition: background .2s, box-shadow .2s; }
.header-cta:hover { background: var(--blue-action-hover); box-shadow: 0 5px 24px #1769e83d; }
.header-cta .icon { width: 16px; }
.menu-toggle { display: none; width: 36px; height: 44px; padding: 8px 3px; }
.menu-toggle span { width: 25px; height: 2px; display: block; background: var(--blue); margin-block: 6px; transition: transform .25s; }
.primary-navigation .mobile-contact { display: none; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 27px; min-height: 53px; padding: 15px 22px; font-size: 13px; line-height: 1.5; font-weight: 650; border: 1px solid transparent; transition: background .25s, border-color .25s, transform .25s, box-shadow .25s; }
.button-primary { background: var(--blue-action); color: #fff; box-shadow: 0 4px 22px #1769e826; }
.button-primary:hover { background: var(--blue-action-hover); box-shadow: 0 7px 30px #1769e84d; transform: translateY(-2px); }
.button-secondary { border-color: #527db5; color: var(--blue); background: #1769e80d; }
.button-secondary:hover { border-color: var(--blue); background: #1769e826; transform: translateY(-2px); }
.button .icon { width: 18px; height: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 24px; padding-block: 8px; font-size: 13px; line-height: 1.5; font-weight: 500; color: var(--text); border-bottom: 1px solid #59616b; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--blue); border-color: var(--blue); }
.text-link .icon { width: 18px; height: 18px; }

/* Landing page */
.hero { padding-top: 35px; padding-bottom: 45px; }
.hero-topline { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 31px; }
.hero-coordinate { font-size: 9px; color: #89929e; }
.hero-layout { display: grid; grid-template-columns: .94fr 1fr; align-items: stretch; gap: clamp(30px, 4vw, 62px); }
.hero-copy { padding-top: 28px; min-width: 0; }
.hero-copy h1 { font-size: clamp(66px, 7.85vw, 120px); position: relative; }
.hero-copy h1 > span:not(.hero-period) { color: var(--blue); }
.hero-period { position: absolute; right: 4px; top: -31px; font-family: var(--body); font-size: 35px; display: inline-block; color: var(--blue); margin: 0; font-weight: 400; animation: asterisk-turn 36s linear infinite; }
.hero-copy > p { margin-top: 29px; max-width: 390px; font-size: 15px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-buttons .button { padding-inline: 20px; gap: 20px; }
.hero-buttons .button-secondary { border-color: transparent; padding-left: 8px; padding-right: 0; }
.hero-buttons .button-secondary .icon { color: var(--blue); }
.hero-footnote { display: flex; align-items: center; margin-top: 60px; gap: 13px; padding-bottom: 14px; }
.hero-footnote p { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; line-height: 1.6; }
.crosshair { font-family: var(--mono); font-size: 30px; line-height: 1; color: var(--blue); }
.scroll-cue { font-size: 24px; margin-left: auto; color: var(--muted); width: 36px; height: 40px; display: grid; place-items: center; animation: scroll-nudge 2.5s ease-in-out infinite; }
.hero-visual { position: relative; min-height: 510px; overflow: hidden; isolation: isolate; clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px)); background: #20272e; }
.hero-photo { position: absolute; width: 100%; height: 100%; object-position: 48% center; filter: saturate(.55); transform: scale(1.045) translate(var(--pointer-x,0px), var(--pointer-y,0px)); transition: transform .65s var(--ease); }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,#111a27aa 0%,#1421360d 40%,#0d172247 60%,#0b111bee 100%); z-index: 1; pointer-events: none; }
.visual-grid { position: absolute; inset: 0; background-image: linear-gradient(#a6c7ec1c 1px,transparent 1px),linear-gradient(90deg,#a6c7ec1c 1px,transparent 1px); background-size: 25% 25%; z-index: 2; pointer-events: none; }
.visual-grid::after { content: ''; position: absolute; top: 0; width: 100%; height: 1px; background: #75b3ff7a; box-shadow: 0 0 24px #75b3ff99; animation: scan 9s ease-in-out infinite; }
.visual-top { position: absolute; top: 26px; left: 25px; right: 30px; display: flex; justify-content: space-between; gap: 20px; color: #e8eff8; font: 9px var(--mono); letter-spacing: .08em; z-index: 3; }
.visual-top .status-dot { width: 5px; height: 5px; margin-right: 7px; background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.visual-caption { position: absolute; left: 31px; right: 30px; bottom: 66px; z-index: 3; }
.visual-caption .micro { color: #b9cfeb; font-size: 8px; }
.visual-caption p { margin-top: 10px; font: 400 clamp(26px, 2.65vw, 41px)/1.13 var(--heading); letter-spacing: -.04em; color: #fff; }
.visual-caption-arrow { position: absolute; bottom: 5px; right: 0; color: var(--blue); border: 1px solid #bdd3ed7d; width: 46px; height: 46px; display: grid; place-items: center; }
.visual-bottom { position: absolute; left: 30px; right: 30px; bottom: 24px; z-index: 3; border-top: 1px solid #a6c7ec50; padding-top: 12px; font: 8px var(--mono); letter-spacing: .07em; color: #c3cfdf; display: flex; justify-content: space-between; }
.target { position: absolute; width: 22px; height: 22px; z-index: 3; border: 1px solid #cee2f385; }
.target::before, .target::after { content: ''; position: absolute; background: #daebfa; }
.target::before { height: 1px; width: 10px; left: 5px; top: 10px; }
.target::after { width: 1px; height: 10px; left: 10px; top: 5px; }
.target-one { top: 29%; left: 48%; }
.target-two { top: 58%; right: 20%; }
.sector-strip { border-block: 1px solid var(--line); }
.sector-strip > div { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 102px; }
.sector-strip .micro { font-size: 8px; min-width: 152px; }
.sector-strip a { display: flex; gap: 28px; align-items: center; font: 400 17px var(--heading); color: #c5cad1; transition: color .2s; }
.sector-strip a:hover { color: var(--blue); }
.sector-strip .icon { width: 12px; color: #6b747e; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 45px; }
.section-heading .eyebrow { margin-bottom: 22px; }
.section-heading > .text-link { margin-bottom: 8px; flex-shrink: 0; }
.solutions-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card { position: relative; padding: 31px 31px 55px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 286px; transition: background .3s; }
.solution-card:hover { background: var(--surface); }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; }
.card-top > .icon { color: var(--blue); width: 30px; height: 30px; }
.card-top .micro { color: #9098a3; }
.solution-card h3 { max-width: 280px; font-size: 24px; }
.solution-card p { margin-top: 15px; font-size: 13px; line-height: 1.8; max-width: 285px; }
.card-arrow { position: absolute; right: 28px; bottom: 24px; color: #8e99a6; transition: transform .3s,color .3s; }
.solution-card:hover .card-arrow { color: var(--blue); transform: translate(3px,-3px); }
.lab-section { background: #1c2025; border-block: 1px solid var(--line); padding-block: 87px; }
.lab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; }
.lab-visual { position: relative; height: 525px; }
.lab-visual img { width: 100%; height: 100%; filter: saturate(.6); }
.lab-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 65%,#0b1424cc); pointer-events: none; }
.image-label { position: absolute; bottom: 23px; left: 24px; right: 24px; color: #fff; font: 9px/1.5 var(--mono); letter-spacing: .1em; z-index: 2; }
.lab-corner { position: absolute; right: -18px; top: 27px; background: var(--blue); color: #152232; width: 70px; height: 70px; display: grid; place-items: center; z-index: 2; }
.lab-corner .icon { width: 30px; height: 30px; }
.lab-copy .eyebrow { margin-bottom: 25px; }
.lab-copy h2 { font-size: clamp(35px,4vw,58px); }
.lab-copy > p:not(.eyebrow) { font-size: 14px; margin-top: 24px; max-width: 440px; }
.check-list { padding: 0; margin: 24px 0 25px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #c5cbd2; margin-bottom: 11px; }
.check-list .icon { color: var(--blue); width: 16px; height: 16px; }
.space-slide { position: relative; height: 530px; overflow: hidden; background: var(--surface); }
.space-slide img { width: 100%; height: 100%; filter: saturate(.7); }
.space-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 25%,#080e19d9); pointer-events: none; }
.space-slide figcaption { position: absolute; bottom: 35px; left: 38px; right: 38px; z-index: 2; }
.space-slide .micro { color: #d1dce9; }
.space-slide h3 { margin-top: 12px; font-size: 38px; max-width: 85%; }
.space-slide figcaption > a { position: absolute; right: 0; bottom: 0; width: 48px; height: 48px; border: 1px solid var(--blue); background: #1769e826; color: var(--blue); display: grid; place-items: center; }
.space-slide figcaption > a:hover { background: var(--blue-action); color: #fff; border-color: var(--blue-action); }
.slider-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 22px; }
.slider-bar > p { font-size: 11px; }
.slider-controls { display: flex; gap: 8px; align-items: center; }
.slider-controls .micro { white-space: nowrap; margin-right: 17px; }
.process-section { background: #171a1e; border-block: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 32px; }
.process-number { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #505c6a; padding-top: 20px; margin-bottom: 31px; color: var(--blue); font-family: var(--mono); font-size: 12px; }
.process-number > span { font-size: 23px; color: #65717e; }
.process-step h3 { font-size: 23px; }
.process-step p { margin-top: 14px; font-size: 13px; max-width: 245px; }
.cta-section { position: relative; overflow: hidden; background: #25292e; }
.cta-inner { position: relative; padding-block: 91px 99px; display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; isolation: isolate; }
.cta-inner .eyebrow { margin-bottom: 28px; }
.cta-inner h2 { font-size: clamp(65px,7.8vw,120px); line-height: 1; letter-spacing: -.065em; }
.cta-inner h2 > span { color: var(--blue); }
.cta-aside { padding-bottom: 6px; max-width: 306px; position: relative; z-index: 1; }
.cta-aside p { margin-bottom: 23px; font-size: 14px; }
.cta-aside > .micro { display: block; font-size: 8px; margin-top: 24px; }
.cta-orbit { position: absolute; width: 490px; height: 490px; border: 1px solid #5a7a9d40; border-radius: 50%; right: 15%; top: -10px; z-index: -1; }
.cta-orbit::before, .cta-orbit::after { content: ''; position: absolute; border: 1px solid #5a7a9d30; border-radius: 50%; }
.cta-orbit::before { inset: 50px; }
.cta-orbit::after { inset: -50px; }

/* Shared footer and search */
.site-footer { padding-top: 64px; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 50px; padding-bottom: 60px; }
.footer-brand .brand-logo { width: 220px; }
.footer-brand > p { font-size: 12px; margin-top: 20px; }
.footer-heading { font: 9px var(--mono); color: #aeb8c5; letter-spacing: .13em; margin: 8px 0 24px; }
.footer-main > div > a:not(.brand) { display: block; font-size: 12px; margin-top: 10px; color: #a4a9b0; }
.footer-main > div > a:not(.brand):hover { color: var(--text); }
.footer-main .icon { width: 13px; height: 13px; margin-left: 8px; }
.footer-location > p:not(.footer-heading) { font-size: 12px; }
.footer-location > .micro { display: block; font-size: 7px; margin-top: 12px; }
.footer-coordinates { color: var(--blue); font: 9px var(--mono); margin-top: 25px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p, .footer-bottom > span, .motion-toggle { font-size: 9px; color: #a0a9b4; }
.footer-bottom > span { font-family: var(--mono); letter-spacing: .12em; }
.motion-toggle { padding: 8px 0; display: flex; gap: 10px; align-items: center; color: var(--blue); }
.motion-toggle:hover { color: var(--blue); }
.search-dialog { background: #1c2025; color: var(--text); padding: 32px; border: 1px solid #697b92; width: min(650px,calc(100% - 32px)); max-height: 80vh; overflow-y: auto; box-shadow: 0 40px 120px #0009; }
.search-dialog::backdrop { background: #050a12cc; backdrop-filter: blur(10px); }
.search-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.search-heading h2 { font-size: 30px; }
.search-dialog label { font-size: 12px; color: #b3bdc9; display: block; margin-bottom: 12px; }
.search-field { position: relative; }
.search-field > .icon { position: absolute; top: 17px; left: 16px; color: var(--blue); }
.search-field input { padding-left: 49px; }
.search-results { margin: 25px 0; }
.search-summary, .search-empty { font-size: 12px; margin-block: 12px; }
.search-result { display: block; border-top: 1px solid var(--line); padding: 15px 10px; }
.search-result:hover { background: #75b3ff0c; }
.search-result strong { display: block; color: #f0f3f7; font: 500 18px var(--heading); }
.search-result span { display: block; color: #b0bac6; font-size: 12px; margin-top: 5px; }

/* Interior pages */
.page-intro { padding-block: 70px 57px; }
.page-intro > .eyebrow { margin-bottom: 31px; }
.page-intro h1 { font-size: clamp(55px,6.9vw,100px); }
.intro-bottom { display: flex; gap: 50px; align-items: flex-end; justify-content: space-between; margin-top: 30px; }
.intro-bottom p { max-width: 580px; font-size: 15px; }
.intro-bottom .micro { font-size: 8px; text-align: right; }
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-block: 23px; border-block: 1px solid var(--line); }
.anchor-nav a { font: 10px/1.6 var(--mono); color: #bac5d3; padding-block: 4px; text-transform: uppercase; }
.anchor-nav a:hover { color: var(--blue); }
.detail-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; padding-block: 84px; border-bottom: 1px solid var(--line); align-items: center; }
.detail-section:nth-of-type(odd) .detail-visual { order: 2; }
.detail-visual { position: relative; min-height: 460px; align-self: stretch; overflow: hidden; background: var(--surface); }
.detail-visual img { width: 100%; height: 100%; position: absolute; filter: saturate(.6); }
.detail-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 60%,#101621e8); }
.detail-copy .eyebrow { color: var(--blue); margin-bottom: 20px; }
.detail-copy h2 { font-size: clamp(31px,3.3vw,48px); }
.detail-copy > p:not(.eyebrow):not(.small-note) { font-size: 14px; margin-top: 22px; }
.feature-list { list-style: none; margin: 24px 0; padding: 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: #c4cbd5; padding-block: 7px; border-bottom: 1px solid #34383d; }
.feature-list .icon { width: 15px; height: 15px; margin-top: 3px; color: var(--blue); }
.small-note { font-size: 11px; line-height: 1.7; color: #a4aebb; margin-block: 18px; }
.note-panel { background: var(--surface); padding: 30px; margin-top: 55px; margin-bottom: 75px; display: grid; grid-template-columns: .7fr 2fr; gap: 50px; }
.note-panel > p:not(.eyebrow) { font-size: 13px; }
.filter-bar { border-block: 1px solid var(--line); display: flex; align-items: center; gap: 10px; padding-block: 15px; margin-bottom: 35px; flex-wrap: wrap; }
.filter-bar button { padding: 10px 17px; font-size: 12px; border: 1px solid transparent; transition: background .2s; }
.filter-bar button:hover { color: var(--blue); }
.filter-bar button[aria-pressed=true] { background: var(--blue-action); color: #fff; }
.filter-bar button span { font: 8px var(--mono); margin-left: 10px; }
.project-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 49px 30px; }
.project-image { aspect-ratio: 1.4; position: relative; display: block; overflow: hidden; }
.project-image img { width: 100%; height: 100%; filter: saturate(.65); transition: transform .7s var(--ease), filter .7s; }
.project-image:hover img { transform: scale(1.035); filter: saturate(1); }
.project-tag { position: absolute; left: 20px; top: 20px; background: #111925e6; color: #d0dced; padding: 8px 12px; font: 9px var(--mono); }
.project-link { position: absolute; bottom: 18px; right: 18px; width: 43px; height: 43px; display: grid; place-items: center; color: #18212e; background: var(--blue); }
.project-meta { margin-top: 21px; }
.project-meta .micro { font-size: 8px; }
.project-meta h2 { font-size: 28px; margin-top: 10px; }
.gallery-note { font-size: 11px; border-top: 1px solid var(--line); padding-top: 25px; margin-top: 45px; }
.about-banner { position: relative; height: 490px; overflow: hidden; }
.about-banner img { width: 100%; height: 100%; filter: saturate(.5) brightness(.65); }
.about-banner > span { position: absolute; left: 45px; bottom: 38px; color: #fff; font: 12px/1.7 var(--mono); letter-spacing: .15em; }
.about-statement .eyebrow { margin-bottom: 30px; }
.about-statement h2 { max-width: 980px; }
.about-statement > div { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 760px; margin: 40px 0 0 auto; }
.about-statement > div p { font-size: 14px; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 60px 1fr 1.25fr; gap: 35px; padding-block: 29px; border-bottom: 1px solid var(--line); align-items: baseline; }
.timeline-item > span { font: 13px var(--mono); color: var(--blue); }
.timeline-item h3 { font-size: 26px; }
.timeline-item p { font-size: 13px; max-width: 450px; }
.sustainability { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: start; }
.sustainability h2 { margin-block: 25px; }
.sustainability > div > p:not(.eyebrow) { font-size: 14px; margin-bottom: 26px; }
.sustainability-points article { position: relative; padding: 28px 0 28px 47px; border-top: 1px solid var(--line); }
.sustainability-points article > span { position: absolute; left: 0; top: 29px; color: var(--blue); font: 11px var(--mono); }
.sustainability-points article h3 { font-size: 25px; }
.sustainability-points article p { font-size: 13px; margin-top: 13px; }
.resource-article { display: grid; grid-template-columns: 160px 1fr; gap: 70px; padding-block: 58px; border-top: 1px solid var(--line); }
.resource-index { font: 500 72px/1 var(--heading); color: #647387; letter-spacing: -.06em; }
.resource-index > span { display: block; color: #a0b0c6; font: 9px var(--mono); margin-top: 16px; letter-spacing: .06em; }
.resource-article h2 { font-size: 40px; }
.resource-article p { margin-top: 17px; font-size: 14px; }
.resource-article ul { padding-left: 20px; margin-block: 25px; font-size: 14px; color: #c4cad3; }
.resource-article li { padding-block: 8px; padding-left: 8px; }
.resource-article li::marker { color: var(--blue); }

/* Contact and project brief */
.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9%; padding-top: 10px; padding-bottom: 40px; }
.contact-aside > .eyebrow { margin-bottom: 22px; }
.contact-aside h2 { font-size: 39px; }
.contact-aside > p:not(.eyebrow) { margin-top: 23px; font-size: 13px; }
.contact-info { margin-top: 39px; }
.contact-info .micro { color: var(--blue); font-size: 9px; }
.contact-info p { color: #e2e7ee; font-size: 15px; margin: 7px 0 23px; overflow-wrap: anywhere; }
.contact-aside .mock-note { color: #9aa7b8; font-size: 10px !important; }
.contact-art { position: relative; height: 180px; border: 1px solid #33445b; margin-top: 36px; overflow: hidden; display: flex; align-items: flex-end; justify-content: space-between; padding: 25px; background: repeating-linear-gradient(0deg,transparent 0 29px,#75b3ff11 29px 30px),repeating-linear-gradient(90deg,transparent 0 29px,#75b3ff11 29px 30px); }
.contact-art > span:first-child { font: 500 100px/.9 var(--heading); letter-spacing: -.1em; color: var(--blue); }
.contact-art > .micro { font-size: 7px; writing-mode: vertical-rl; }
.form-container { padding: 35px; border: 1px solid #424b57; background: #1c2025; }
.form-heading { margin-bottom: 28px; }
.form-heading h2 { font-size: 28px; }
.form-heading p { font-size: 11px; margin-top: 9px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 21px 19px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 11px; color: #d1d7df; display: block; margin-bottom: 9px; }
input, textarea, select { width: 100%; max-width: 100%; min-width: 0; border: 1px solid #46505e; border-radius: 0; background: #161a20; color: var(--text); padding: 13px; min-height: 49px; font-size: 12px; }
input::placeholder, textarea::placeholder { color: #929ba9; opacity: 1; }
input:hover, textarea:hover, select:hover { border-color: #8299b5; }
textarea { resize: vertical; }
select { color-scheme: dark; padding-right: 25px; }
.form-note { font-size: 10px; margin-block: 23px; }
.form-container .button { width: 100%; }
.form-status { font-size: 13px; color: var(--blue); margin-top: 20px; }
.form-status:empty { margin-top: 0; }
.brief-preview { white-space: pre-wrap; overflow-wrap: anywhere; max-height: 320px; overflow-y: auto; border: 1px solid #46505e; padding: 20px; margin-top: 18px; font: 11px/1.7 var(--mono); color: #ccd5e1; }
.brief-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.brief-actions > * { margin-top: 16px; }
.brief-actions .text-link { font-size: 12px; }
.faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.faq-section h2 { font-size: 43px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding-block: 21px; }
.faq-list summary { position: relative; padding-right: 45px; cursor: pointer; list-style: none; font-size: 14px; color: #e1e6ed; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { position: absolute; right: 5px; top: -2px; color: var(--blue); font: 24px/1 var(--body); transition: transform .3s; }
.faq-list details[open] summary > span { transform: rotate(45deg); }
.faq-list details p { font-size: 13px; margin-top: 18px; padding-right: 25px; }

/* Animation is progressive enhancement; all content is visible without JS. */
[data-reveal].is-reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-reveal-ready.is-visible { opacity: 1; transform: translateY(0); }
@keyframes scan { 0%,100% { top: 8%; opacity: 0; } 15% { opacity: .8; } 70% { opacity: .8; } 85% { top: 92%; opacity: 0; } }
@keyframes scroll-nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes asterisk-turn { to { transform: rotate(360deg); } }
.motion-paused *, .motion-paused *::before, .motion-paused *::after { animation-play-state: paused !important; scroll-behavior: auto !important; transition-duration: 0s !important; }
.motion-paused [data-reveal] { opacity: 1 !important; transform: none !important; }
html:has(.motion-paused) { scroll-behavior: auto; }

/* Tablet and mobile */
@media (min-width: 1700px) { .hero { padding-block: 43px 55px; } .hero-visual { min-height: 590px; } .hero-copy { padding-top: 45px; } .hero-footnote { margin-top: 85px; } }
@media (max-width: 1200px) {
  .header-inner { gap: 25px; }
  .primary-navigation { gap: 24px; }
  .header-actions { gap: 16px; }
  .hero-copy h1 { font-size: clamp(66px,7.4vw,94px); }
  .hero-buttons { gap: 7px; }
  .hero-buttons .button { padding-inline: 15px; font-size: 11px; gap: 12px; }
  .hero-visual { min-height: 480px; }
  .hero-footnote { margin-top: 49px; }
  .sector-strip > div { gap: 17px; }
  .sector-strip a { font-size: 14px; gap: 17px; }
  .sector-strip .micro { min-width: 130px; font-size: 7px; }
  .lab-visual { height: 470px; }
  .solution-card { padding: 27px 24px 50px; }
  .footer-main { gap: 32px; }
  .contact-layout { gap: 6%; }
}
@media (max-width: 1100px) {
  .header-inner { min-height: 83px; }
  .primary-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; margin: 0; padding: 26px var(--gutter) 33px; background: #171b20; border-bottom: 1px solid #566b86; box-shadow: 0 15px 35px #0005; }
  .primary-navigation.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .primary-navigation > a { font-family: var(--heading); font-size: 22px; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .primary-navigation > a::after { display: none; }
  .primary-navigation > a.is-active { color: var(--blue); }
  .primary-navigation .mobile-contact { display: flex; justify-content: space-between; color: var(--blue); }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-actions { margin-left: auto; gap: 25px; }
  .hero-visual { min-height: 465px; }
  .hero-copy h1 { font-size: 7.3vw; }
  .hero-period { margin-left: 8px; }
  .hero-copy > p { font-size: 13px; }
  .hero-footnote { margin-top: 42px; }
  .hero-buttons .button { font-size: 10px; }
  .hero-layout { gap: 30px; }
  .sector-strip > div { flex-wrap: wrap; justify-content: flex-start; padding-block: 23px; gap: 18px 26px; }
  .sector-strip > div > .micro { width: 100%; }
  .sector-strip > div > .micro br { display: none; }
  .sector-strip a { flex: 1; justify-content: space-between; gap: 15px; }
  .solutions-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .solution-card { min-height: 270px; }
  .lab-layout { gap: 6%; }
  .lab-visual { height: 460px; }
  .lab-copy h2 { font-size: 39px; }
  .lab-copy > p:not(.eyebrow) { font-size: 12px; }
  .lab-copy .eyebrow { font-size: 9px; }
  .check-list li { font-size: 10px; }
  .section { padding-block: 85px; }
  .process-grid { gap: 22px; }
  .process-step h3 { font-size: 20px; }
  .process-step p { font-size: 12px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-location { display: none; }
  .contact-layout { grid-template-columns: .65fr 1fr; gap: 35px; }
  .form-container { padding: 27px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-aside h2 { font-size: 35px; }
  .faq-section { gap: 40px; }
  .faq-section h2 { font-size: 35px; }
  .detail-section { gap: 6%; }
  .detail-visual { min-height: 500px; }
}
@media (max-width: 760px) {
  :root { --gutter: 24px; }
  .header-inner { min-height: 76px; gap: 20px; }
  .brand-logo { width: 190px; }
  .header-actions { gap: 16px; }
  .header-cta { display: none; }
  .search-button { width: 26px; }
  .eyebrow { font-size: 9px; gap: 10px; }
  .hero { padding-top: 27px; padding-bottom: 30px; }
  .hero-topline { margin-bottom: 18px; }
  .hero-coordinate { display: none; }
  .hero-layout { grid-template-columns: 1fr; gap: 27px; }
  .hero-copy { padding-top: 10px; }
  .hero-copy h1 { font-size: clamp(66px,12.6vw,94px); line-height: 1.02; letter-spacing: -.065em; }
  .hero-period { margin-left: 12px; }
  .hero-copy > p { margin-top: 22px; font-size: 14px; max-width: 370px; }
  .hero-buttons { margin-top: 25px; gap: 17px; }
  .hero-buttons .button { font-size: 12px; gap: 14px; padding-inline: 16px; }
  .hero-buttons .button-secondary { padding-inline: 0; }
  .hero-footnote { margin-top: 25px; padding-bottom: 0; }
  .hero-footnote p { font-size: 8px; }
  .hero-visual { min-height: 385px; }
  .visual-caption p { font-size: 36px; }
  .visual-caption .micro { font-size: 8px; }
  .hero-photo { object-position: 50% 50%; }
  .visual-caption { bottom: 62px; }
  .sector-strip > div { gap: 16px 22px; padding-block: 23px; }
  .sector-strip a { flex: 0 1 auto; font-size: 14px; gap: 19px; }
  .sector-strip .micro { font-size: 7px; }
  .section { padding-block: 68px; }
  .section-tight { padding-bottom: 65px; }
  h2 { font-size: 38px; }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 19px; margin-bottom: 30px; }
  .section-heading .eyebrow { margin-bottom: 18px; }
  .section-heading > .text-link { font-size: 11px; }
  .solutions-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .solution-card { padding: 23px 19px 46px; min-height: 288px; }
  .card-top { margin-bottom: 25px; }
  .card-top > .icon { width: 25px; height: 25px; }
  .solution-card h3 { font-size: 22px; }
  .solution-card p { font-size: 12px; }
  .card-arrow { right: 18px; bottom: 15px; }
  .lab-section { padding-block: 57px; }
  .lab-layout { grid-template-columns: 1fr; gap: 42px; }
  .lab-visual { height: 350px; margin-right: 14px; }
  .lab-corner { width: 56px; height: 56px; }
  .lab-copy h2 { font-size: 41px; }
  .lab-copy > p:not(.eyebrow) { font-size: 14px; }
  .check-list li { font-size: 12px; }
  .space-slide { height: 350px; }
  .space-slide figcaption { left: 24px; right: 24px; bottom: 25px; }
  .space-slide h3 { font-size: 29px; max-width: 77%; }
  .space-slide .micro { font-size: 8px; }
  .slider-bar { align-items: flex-start; gap: 24px; }
  .slider-bar > p { font-size: 10px; max-width: 220px; }
  .slider-controls { flex-shrink: 0; }
  .slider-controls .micro { font-size: 9px; margin-right: 3px; }
  .slider-controls .icon-button { width: 35px; height: 35px; font-size: 19px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .process-number { margin-bottom: 20px; }
  .process-step h3 { font-size: 22px; }
  .process-step p { font-size: 13px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; padding-block: 64px; }
  .cta-inner h2 { font-size: 78px; }
  .cta-aside { max-width: 350px; }
  .cta-aside p { font-size: 14px; }
  .cta-orbit { right: -210px; top: 65px; }
  .site-footer { padding-top: 45px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; padding-bottom: 37px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-brand > p { margin-top: 14px; }
  .footer-heading { margin-bottom: 18px; }
  .footer-bottom { flex-wrap: wrap; gap: 9px 20px; padding-block: 18px; }
  .footer-bottom > span { display: none; }
  .page-intro { padding-block: 46px 38px; }
  .page-intro > .eyebrow { margin-bottom: 25px; }
  .page-intro h1 { font-size: clamp(47px,8.8vw,65px); }
  .intro-bottom { margin-top: 23px; display: block; }
  .intro-bottom p { font-size: 14px; }
  .intro-bottom .micro { display: none; }
  .anchor-nav { gap: 8px 19px; padding-block: 19px; }
  .anchor-nav a { font-size: 8px; }
  .detail-section { grid-template-columns: 1fr; gap: 32px; padding-block: 49px; }
  .detail-section:nth-of-type(odd) .detail-visual { order: 0; }
  .detail-visual { min-height: 300px; }
  .detail-copy h2 { font-size: 37px; }
  .detail-copy .eyebrow { font-size: 9px; }
  .note-panel { grid-template-columns: 1fr; gap: 15px; padding: 25px; margin-bottom: 50px; }
  .filter-bar { gap: 2px; padding-block: 10px; }
  .filter-bar button { font-size: 10px; padding: 9px 12px; }
  .filter-bar button span { display: none; }
  .project-grid { gap: 34px 22px; }
  .project-meta .micro { font-size: 7px; }
  .project-meta h2 { font-size: 23px; }
  .project-image { aspect-ratio: 1; }
  .project-tag { left: 10px; top: 10px; font-size: 7px; padding: 6px 8px; }
  .project-link { bottom: 10px; right: 10px; width: 34px; height: 34px; }
  .about-banner { height: 330px; }
  .about-banner > span { left: 25px; bottom: 25px; font-size: 10px; }
  .about-statement > div { grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
  .timeline-item { grid-template-columns: 30px 1fr; gap: 15px; padding-block: 24px; }
  .timeline-item h3 { font-size: 25px; }
  .timeline-item p { grid-column: 2; }
  .sustainability { grid-template-columns: 1fr; gap: 35px; }
  .resource-article { grid-template-columns: 1fr; gap: 25px; padding-block: 38px; }
  .resource-index { font-size: 48px; }
  .resource-index > span { display: inline; margin-left: 20px; font-size: 9px; }
  .resource-article h2 { font-size: 34px; }
  .resource-article ul { font-size: 13px; padding-left: 14px; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .contact-art { display: none; }
  .contact-info { display: grid; grid-template-columns: 80px 1fr; gap: 12px; margin-top: 27px; align-items: baseline; }
  .contact-info p { margin: 0; font-size: 14px; }
  .form-container { padding: 25px; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 0; }
  .search-dialog { padding: 23px; }
  .search-heading h2 { font-size: 25px; }
}
@media (max-width: 460px) {
  :root { --gutter: 20px; }
  .site-header .brand-logo { width: clamp(150px,44vw,180px); }
  .page-intro h1 { font-size: clamp(39px,12vw,47px); }
  .hero-copy h1 { font-size: 17.2vw; }
  .hero-buttons { gap: 10px; }
  .hero-buttons .button { font-size: 11px; padding-inline: 14px; gap: 9px; }
  .hero-buttons .button-secondary { padding-inline: 0; }
  .hero-copy > p { font-size: 13px; }
  .hero-visual { min-height: 347px; }
  .visual-top { left: 21px; right: 25px; font-size: 8px; }
  .visual-caption { left: 23px; right: 23px; }
  .visual-bottom { left: 23px; right: 23px; font-size: 7px; }
  .hero-footnote { margin-top: 22px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 245px; padding: 26px 25px 43px; }
  .solution-card h3 { font-size: 25px; max-width: 250px; }
  .solution-card p { font-size: 13px; max-width: 290px; }
  .card-top { margin-bottom: 22px; }
  .lab-copy h2 { font-size: 37px; }
  .lab-visual { height: 300px; }
  .slider-bar { flex-direction: column; gap: 15px; }
  .slider-bar > p { max-width: 100%; }
  .slider-controls { align-self: flex-end; }
  .space-slide { height: 310px; }
  .space-slide h3 { font-size: 27px; }
  .process-step h3 { font-size: 21px; }
  .process-step p { font-size: 12px; }
  .cta-inner h2 { font-size: 69px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-image { aspect-ratio: 1.25; }
  .project-meta h2 { font-size: 28px; }
  .project-tag { font-size: 8px; left: 15px; top: 15px; }
  .project-meta .micro { font-size: 8px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-container { padding: 22px; }
  .form-heading h2 { font-size: 26px; }
  .footer-bottom p, .motion-toggle { font-size: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-photo { transform: scale(1.045); }
}
