:root {
  --ink: #121820;
  --muted: #626b74;
  --line: #dbe0e4;
  --paper: #f5f7f8;
  --white: #fff;
  --blue: #0096dc;
  --blue-dark: #0078b8;
  --cyan: #76d9f4;
  --max: 1280px;
  --sans: "Segoe UI", Arial, sans-serif;
  --display: "Arial", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.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; left: 16px; top: -60px; z-index: 100; padding: 12px 18px; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .25s, color .25s, height .25s, box-shadow .25s;
}
.site-header.scrolled { height: 72px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 8px 30px rgba(14,25,35,.08); backdrop-filter: blur(12px); }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; }
.brand-mark img { display: block; width: 40px; height: auto; }
.brand strong { display: block; font: 800 18px/1 var(--display); letter-spacing: -.02em; }
.brand small { display: block; margin-top: 5px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 30px 0; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--blue); transition: right .2s; }
.primary-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid currentColor; }
.nav-cta span, .button span, .text-link span { margin-left: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 780px; height: 100svh; color: var(--white); display: flex; align-items: center; overflow: hidden; }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(7,15,22,.9) 0%, rgba(7,15,22,.65) 43%, rgba(7,15,22,.1) 77%), linear-gradient(0deg, rgba(7,15,22,.45), transparent 45%); }
.hero-grid { opacity: .16; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 80%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 56px)); margin: 36px auto 0; }
.eyebrow { margin: 0 0 24px; color: var(--blue-dark); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow.light { color: var(--cyan); }
.hero h1 { max-width: 850px; margin: 0; font: 700 clamp(58px, 7.3vw, 110px)/.94 var(--display); letter-spacing: -.065em; }
.hero h1 em { color: var(--cyan); font-style: normal; font-weight: 500; }
.hero-copy { max-width: 610px; margin: 32px 0; color: rgba(255,255,255,.84); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-size: 14px; font-weight: 700; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); }
.button-primary:hover { background: var(--blue-dark); }
.button-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.button-outline:hover { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); }
.hero-facts { position: absolute; z-index: 3; right: max(28px, calc((100vw - var(--max)) / 2)); bottom: 42px; display: flex; background: rgba(6,16,24,.75); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.18); }
.hero-facts div { width: 180px; padding: 20px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font: 700 22px var(--display); font-variant-numeric: tabular-nums; }
.hero-facts span { margin-top: 4px; color: rgba(255,255,255,.6); font-size: 11px; line-height: 1.4; }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 34px; width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.45); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 3px; height: 8px; left: 10px; top: 8px; background: var(--white); border-radius: 3px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 80%,100% { transform: translateY(15px); opacity: 0; } }

.section { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; padding: 130px 0; }
.intro { display: grid; grid-template-columns: 180px 1fr 240px; gap: 7vw; align-items: start; }
.section-kicker { display: flex; gap: 16px; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-kicker span { color: var(--blue); font-family: var(--display); }
.section-kicker p { margin: 0; white-space: nowrap; }
.section-kicker.light { color: rgba(255,255,255,.65); }
.intro h2, .section-heading h2, .heritage h2, .contact h2 { margin: 0; font: 650 clamp(38px, 4.5vw, 67px)/1.08 var(--display); letter-spacing: -.055em; }
.intro-copy > p { max-width: 700px; margin: 30px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.intro-aside { padding-top: 12px; border-top: 1px solid var(--line); }
.intro-aside p { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.section-dark { background: var(--ink); color: var(--white); }
.solutions { padding: 130px max(28px, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: var(--max); margin: 0 auto 70px; }
.section-heading h2 { margin-top: 34px; }
.solution-list { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.solution-card { position: relative; min-height: 545px; padding: 44px 36px; border-right: 1px solid rgba(255,255,255,.18); transition: background .25s; }
.solution-card:last-child { border-right: 0; }
.solution-card:hover { background: rgba(255,255,255,.04); }
.solution-number { position: absolute; right: 28px; top: 28px; color: rgba(255,255,255,.35); font: 600 12px var(--display); }
.solution-icon { height: 86px; color: var(--cyan); font: 300 56px/1 var(--display); }
.solution-card h3 { margin: 22px 0 16px; font: 650 28px/1.15 var(--display); letter-spacing: -.035em; }
.solution-card > p { color: rgba(255,255,255,.62); line-height: 1.65; }
.solution-card ul { padding: 18px 0 12px; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.solution-card li { position: relative; padding: 6px 0 6px 16px; color: rgba(255,255,255,.76); font-size: 13px; }
.solution-card li::before { content: ""; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; background: var(--blue); }
.text-link { display: inline-flex; align-items: center; padding: 0 0 6px; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-weight: 700; cursor: pointer; }
.solution-card .text-link { position: absolute; left: 36px; bottom: 38px; color: var(--cyan); font-size: 13px; }
.proof-strip { overflow: hidden; display: flex; justify-content: space-around; gap: 40px; padding: 20px 28px; background: var(--blue); color: var(--white); font: 700 11px var(--display); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.proof-strip p { margin: 0; }
.proof-strip span { margin-right: 18px; color: var(--cyan); }

.row-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.row-heading > p, .row-heading > .text-link { max-width: 390px; color: var(--muted); line-height: 1.65; }
.products { padding-bottom: 50px; }
.product-intro-actions { max-width: 390px; }
.product-intro-actions p { margin: 0 0 18px; color: var(--muted); line-height: 1.65; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { padding: 16px 16px 24px; border: 1px solid var(--line); background: var(--white); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(17,31,42,.1); }
.product-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.product-image { aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 22px; background: var(--paper); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s; }
.product-card:hover img { transform: scale(1.06); }
.product-meta { display: flex; justify-content: space-between; margin: 20px 0 12px; color: var(--blue-dark); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin: 0 0 10px; font: 650 21px var(--display); letter-spacing: -.03em; }
.product-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-family-links { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-family-links a { min-height: 60px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; transition: background .2s, color .2s; }
.product-family-links a:hover { background: var(--ink); color: var(--white); }

.projects { padding-top: 60px; }
.project-feature { position: relative; height: min(66vw, 720px); min-height: 480px; overflow: hidden; }
.project-feature::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(5,12,18,.8)); }
.project-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.project-feature:hover img { transform: scale(1.025); }
.project-overlay { position: absolute; z-index: 2; left: 46px; right: 46px; bottom: 40px; color: var(--white); }
.project-overlay p, .project-tile span { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-overlay h3 { margin: 10px 0 20px; font: 650 clamp(32px, 4vw, 58px) var(--display); letter-spacing: -.045em; }
.project-tags { display: flex; gap: 8px; }
.project-tags span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.38); font-size: 10px; }
.project-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.project-tile { display: grid; grid-template-columns: 46% 1fr; background: var(--paper); }
.project-tile img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.project-tile div { padding: 32px; align-self: center; }
.project-tile h3 { margin: 12px 0 10px; font: 650 25px/1.15 var(--display); letter-spacing: -.035em; }
.project-tile p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.heritage { padding: 130px max(28px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: center; }
.heritage-copy { max-width: 690px; }
.heritage-copy h2 { margin-top: 34px; }
.heritage-copy > p { margin: 28px 0 36px; color: rgba(255,255,255,.63); font-size: 17px; line-height: 1.75; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.timeline li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.timeline strong { color: var(--cyan); font: 650 18px var(--display); }
.timeline span { color: rgba(255,255,255,.7); line-height: 1.45; }

.contact { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 9vw; }
.contact-lead > p:last-child { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.contact-actions { padding: 32px; background: var(--paper); display: flex; flex-direction: column; gap: 20px; }
.contact-phone { color: var(--blue-dark); font: 650 24px var(--display); }
.representatives { padding: 0 28px 130px; background: var(--white); }
.representatives-inner { width: min(var(--max), 100%); margin: 0 auto; }
.representatives .section-heading { margin-bottom: 42px; }
.representative-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.representative-card { position: relative; padding: 38px; background: var(--paper); border-top: 4px solid var(--blue); }
.representative-country { margin: 0 0 26px; color: var(--blue-dark); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.representative-card h3 { margin: 0 0 18px; font: 650 27px var(--display); letter-spacing: -.035em; }
.representative-card address { min-height: 76px; color: var(--muted); font-size: 13px; font-style: normal; line-height: 1.55; }
.representative-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 24px; }
.representative-links a { color: var(--blue-dark); font-weight: 600; }
.representative-links a:hover { text-decoration: underline; }
.site-footer { padding: 70px max(28px, calc((100vw - var(--max)) / 2)) 28px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; background: #0a0f14; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.footer-brand strong { color: var(--white); font: 700 30px var(--display); }
.footer-brand p { color: var(--cyan); }
.footer-links { display: grid; align-content: start; gap: 5px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; font-size: 11px; }

.solution-dialog { width: min(680px, calc(100% - 32px)); padding: 46px; border: 0; color: var(--ink); box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.solution-dialog::backdrop { background: rgba(8,14,19,.8); backdrop-filter: blur(6px); }
.solution-dialog h2 { margin: 0 0 20px; font: 650 38px var(--display); letter-spacing: -.04em; }
.solution-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.dialog-close { position: absolute; right: 18px; top: 12px; border: 0; background: none; font-size: 34px; cursor: pointer; }
.dialog-specs { margin: 28px 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.dialog-specs div { padding: 18px; border-right: 1px solid var(--line); }
.dialog-specs div:last-child { border: 0; }
.dialog-specs strong, .dialog-specs span { display: block; }
.dialog-specs strong { color: var(--blue-dark); font: 650 20px var(--display); }
.dialog-specs span { margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .hero-facts { left: 28px; right: auto; }
  .intro { grid-template-columns: 160px 1fr; gap: 50px; }
  .intro-aside { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; }
  .solution-card { padding: 38px 24px; }
  .solution-card .text-link { left: 24px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .project-tile { grid-template-columns: 1fr; }
  .heritage { gap: 60px; }
}

@media (max-width: 760px) {
  .site-header { height: 72px; padding-inline: 20px; }
  .brand small { display: none; }
  .menu-toggle { display: block; z-index: 2; color: inherit; }
  .menu-toggle[aria-expanded="true"] { color: var(--white); }
  body.menu-open .site-header { background: transparent; color: var(--white); box-shadow: none; backdrop-filter: none; }
  .primary-nav { position: fixed; inset: 0; padding: 120px 28px 40px; background: var(--ink); color: var(--white); display: flex; flex-direction: column; align-items: flex-start; gap: 0; transform: translateX(100%); transition: transform .3s; }
  body.menu-open .primary-nav { background: var(--ink); color: var(--white); }
  .primary-nav.open { transform: none; }
  .primary-nav > a:not(.nav-cta) { display: block; width: 100%; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); font: 600 28px var(--display); }
  .primary-nav > a::after { display: none; }
  .nav-cta { margin-top: 26px; }
  .hero { min-height: 760px; align-items: flex-start; padding-top: 150px; }
  .hero-content { width: calc(100% - 40px); margin: 0 auto; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-copy { margin: 24px 0; font-size: 16px; }
  .hero-facts { left: 20px; right: 20px; bottom: 24px; }
  .hero-facts div { width: 33.33%; padding: 14px; }
  .hero-facts strong { font-size: 16px; }
  .hero-facts span { font-size: 9px; }
  .scroll-cue { display: none; }
  .section { width: calc(100% - 40px); padding: 88px 0; }
  .intro { grid-template-columns: 1fr; gap: 35px; }
  .intro-aside { grid-column: auto; }
  .intro h2, .section-heading h2, .heritage h2, .contact h2 { font-size: 39px; }
  .solutions { padding: 88px 20px; }
  .solution-list { grid-template-columns: 1fr; }
  .solution-card { min-height: 485px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .solution-card:last-child { border: 0; }
  .proof-strip { justify-content: flex-start; overflow-x: auto; }
  .row-heading { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-family-links { grid-template-columns: 1fr; }
  .projects { padding-top: 20px; }
  .project-feature { height: 590px; }
  .project-feature img { object-position: 46% center; }
  .project-overlay { left: 22px; right: 22px; bottom: 24px; }
  .project-pair { grid-template-columns: 1fr; }
  .heritage { padding: 88px 20px; grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 72px 1fr; }
  .contact { grid-template-columns: 1fr; }
  .representatives { padding: 0 20px 88px; }
  .representative-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 20px 24px; grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .dialog-specs { grid-template-columns: 1fr; }
  .dialog-specs div { border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-dialog { padding: 40px 24px 28px; }
}

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