:root {
  color-scheme: light;
  --bg: #eef2f4;
  --surface: #f8fafb;
  --surface-strong: #ffffff;
  --ink: #102a38;
  --muted: #5c707a;
  --line: #cdd7dc;
  --line-strong: #aebdc4;
  --brand: #0b79b5;
  --accent: #e86f2d;
  --accent-hover: #cf5b20;
  --navy: #0c2735;
  --navy-soft: #173d4d;
  --focus: #006fa6;
  --shadow: 0 20px 50px rgb(15 42 56 / 0.12);
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 74px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0d1f28;
  --surface: #122832;
  --surface-strong: #18333f;
  --ink: #edf5f6;
  --muted: #a9bbc2;
  --line: #31505d;
  --line-strong: #496875;
  --brand: #59b7e8;
  --accent: #f18446;
  --accent-hover: #ff9658;
  --navy: #091820;
  --navy-soft: #173d4d;
  --focus: #75c7f1;
  --shadow: 0 20px 50px rgb(0 0 0 / 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Segoe UI", "Noto Sans", Arial, sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; transform: translateY(-160%); background: var(--surface-strong); color: var(--ink); padding: 10px 14px; text-decoration: none; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: #f5f8f9; border-bottom: 1px solid rgb(255 255 255 / 0.23); transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease; }
.site-header.solid { position: relative; background: var(--surface-strong); color: var(--ink); border-color: var(--line); }
.site-header.is-sticky { position: fixed; background: color-mix(in srgb, var(--surface-strong) 94%, transparent); color: var(--ink); border-color: var(--line); backdrop-filter: blur(14px); box-shadow: 0 8px 25px rgb(15 42 56 / 0.08); animation: header-enter 220ms ease both; }
@keyframes header-enter { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-inner { height: var(--header-height); display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 28px; }
.logo { display: inline-flex; width: 162px; height: 43px; align-items: center; background: #ffffff; padding: 6px 10px; text-decoration: none; }
.logo img { width: 142px; height: auto; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 31px; white-space: nowrap; }
.desktop-nav a { position: relative; color: inherit; text-decoration: none; font-size: 14px; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--accent); transition: right 180ms ease; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-tools { display: flex; align-items: center; gap: 8px; }
.tool-button, .menu-button { min-height: 38px; border: 1px solid currentColor; background: transparent; color: inherit; padding: 0 12px; cursor: pointer; font-size: 12px; font-weight: 700; }
.tool-button:hover, .menu-button:hover { background: color-mix(in srgb, currentColor 9%, transparent); }
.locale-control { position: relative; }
.locale-toggle { min-width: 48px; }
.locale-menu { position: absolute; z-index: 60; right: 0; top: calc(100% + 10px); width: 196px; padding: 7px; background: var(--surface-strong); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow); }
.locale-menu button { width: 100%; min-height: 42px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 9px; border: 0; background: transparent; color: inherit; padding: 0 10px; text-align: left; cursor: pointer; }
.locale-menu button:hover, .locale-menu button.active { background: color-mix(in srgb, var(--brand) 12%, var(--surface)); }
.locale-menu button.active { box-shadow: inset 2px 0 0 var(--accent); }
.locale-menu button span { color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .06em; }
.locale-menu button strong { font-size: 13px; font-weight: 650; }
.theme-toggle { min-width: 54px; }
.menu-button { display: none; }
.mobile-nav { display: none; }

.eyebrow { margin: 0 0 19px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 25px; padding: 0 19px; border: 1px solid transparent; text-decoration: none; cursor: pointer; font-size: 14px; font-weight: 750; white-space: nowrap; transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); }
.button-primary { color: #fff; background: var(--accent); border-color: var(--accent); }
.button-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.button-secondary { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.button-ghost { border-color: rgb(255 255 255 / 0.56); color: #fff; background: rgb(10 34 45 / 0.18); }
.button-ghost:hover { background: rgb(255 255 255 / 0.12); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 5px; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 750; border-bottom: 1px solid var(--line-strong); }
.text-link:hover { border-color: var(--accent); }
.section { padding: 112px 0; }
.section-intro { max-width: 760px; margin-bottom: 54px; }
.section-intro.narrow { max-width: 640px; }
.section-intro h2, .story-copy h2, .proof-copy h2, .latam-copy h2, .company-intro h2, .patent-copy h2, .capability-title h2, .company-scope > .shell > h2 { margin: 0; font-size: clamp(38px, 5vw, 67px); line-height: 1.01; letter-spacing: -0.055em; }
.section-intro p, .story-copy > p:not(.eyebrow), .proof-copy > p, .latam-copy > p, .company-intro p, .patent-copy > p { max-width: 620px; margin: 23px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms cubic-bezier(.2,.7,.2,1), transform 650ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.hero-home { position: relative; min-height: 100dvh; overflow: hidden; color: #f7fbfc; display: flex; align-items: center; }
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.hero-scrim { background: linear-gradient(90deg, rgb(5 25 35 / 0.93) 0%, rgb(5 25 35 / 0.78) 43%, rgb(5 25 35 / 0.22) 73%, rgb(5 25 35 / 0.2) 100%), linear-gradient(0deg, rgb(6 29 40 / .36), transparent 60%); }
.hero-home-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 12%; align-items: end; padding-top: 95px; }
.hero-copy { align-self: center; max-width: 680px; }
.hero-copy h1 { margin: 0; max-width: 680px; font-size: clamp(52px, 7.3vw, 98px); line-height: 0.94; letter-spacing: -0.068em; font-weight: 760; }
.hero-lead { max-width: 520px; margin: 25px 0 0; color: #d6e0e3; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-fact { align-self: end; margin-bottom: 18px; padding-left: 26px; border-left: 1px solid rgb(255 255 255 / 0.42); }
.hero-fact strong { display: block; font-size: 18px; line-height: 1.34; }
.hero-fact p { margin: 11px 0 0; color: #c4d1d5; font-size: 14px; line-height: 1.65; }

.client-strip { background: var(--surface-strong); border-bottom: 1px solid var(--line); }
.client-strip .shell { display: grid; grid-template-columns: 210px 1fr; gap: 36px; align-items: center; padding-block: 23px; }
.client-strip p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.client-logos { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; gap: 23px; }
.client-logos img { width: 100%; height: 46px; object-fit: contain; filter: grayscale(1); opacity: .68; mix-blend-mode: multiply; }
html[data-theme="dark"] .client-logos img { mix-blend-mode: normal; filter: grayscale(1) invert(.86); }

.solutions-overview { background: var(--bg); }
.solution-bento { display: grid; grid-template-columns: 1.4fr .75fr .85fr; grid-template-rows: 275px 275px; gap: 15px; }
.solution-tile { position: relative; overflow: hidden; min-height: 0; background: var(--surface-strong); color: var(--ink); text-decoration: none; border: 1px solid var(--line); }
.solution-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.solution-tile:hover img { transform: scale(1.035); }
.solution-tile .tile-copy { position: absolute; inset: auto 0 0; padding: 24px; background: linear-gradient(0deg, rgb(7 28 39 / .94), rgb(7 28 39 / .74) 60%, transparent); color: #f6fafb; }
.tile-copy span { display: block; color: #ff9a63; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tile-copy h3 { margin: 7px 0 0; font-size: 25px; line-height: 1.1; letter-spacing: -.035em; }
.tile-copy p { max-width: 480px; margin: 10px 0 0; color: #cbd9dc; font-size: 13px; }
.tile-main { grid-row: 1 / 3; }
.tile-main .tile-copy { padding: 33px; }
.tile-main .tile-copy h3 { font-size: 35px; }
.tile-wide { grid-column: 2 / 4; }
.tile-tall { grid-column: 3; grid-row: 1; }
.tile-text { background: var(--navy); border-color: var(--navy); }
.tile-text .tile-copy { position: static; height: 100%; display: flex; flex-direction: column; justify-content: center; background: none; }
.tile-text .tile-copy b { margin-top: 30px; color: #fff; font-size: 13px; }

.product-story { background: var(--surface); }
.product-story-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 8%; align-items: center; }
.story-media { background: var(--surface-strong); border: 1px solid var(--line); min-height: 550px; display: grid; place-items: center; padding: 28px; }
.story-media img { width: 100%; height: 500px; object-fit: contain; }
.story-copy h2 { font-size: clamp(41px, 5vw, 65px); }
.feature-definitions { margin: 35px 0; }
.feature-definitions div { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.feature-definitions dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.feature-definitions dd { margin: 0; font-weight: 700; }

.capabilities-section { background: var(--bg); }
.capability-title { max-width: 760px; margin-bottom: 51px; }
.capability-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6%; align-items: stretch; }
.capability-photo img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.capability-list { border-top: 1px solid var(--line-strong); }
.capability-list article { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.capability-list article > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.capability-list h3 { margin: 0; font-size: 22px; letter-spacing: -.025em; }
.capability-list p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.engineering-process { background: var(--surface-strong); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.process-track article { padding: 30px 25px 0 0; min-height: 230px; border-right: 1px solid var(--line); }
.process-track article:not(:first-child) { padding-left: 25px; }
.process-track article:last-child { border-right: 0; }
.process-track b { color: var(--accent); font-size: 13px; }
.process-track h3 { margin: 31px 0 10px; font-size: 20px; line-height: 1.18; }
.process-track p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.proof-section { background: var(--navy); color: #f1f7f7; }
.proof-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10%; align-items: center; }
.proof-copy h2 { color: #f1f7f7; }
.proof-copy > p { color: #afc2c8; }
.proof-copy .text-link { margin-top: 31px; color: #fff; border-color: #55717c; }
.proof-numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #36515c; }
.proof-numbers div { min-height: 220px; background: #122f3c; padding: 29px; display: flex; flex-direction: column; justify-content: space-between; }
.proof-numbers div:last-child { grid-column: 1 / 3; min-height: 150px; flex-direction: row; align-items: end; gap: 30px; }
.proof-numbers strong { color: #fff; font-size: 76px; letter-spacing: -.07em; line-height: .9; }
.proof-numbers span { max-width: 200px; color: #b8c9cd; font-size: 13px; }

.latam-cta { background: var(--bg); }
.latam-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: center; }
.latam-map { min-height: 480px; position: relative; overflow: hidden; background: color-mix(in srgb, var(--brand) 12%, var(--surface-strong)); border: 1px solid var(--line); }
.latam-map::before, .latam-map::after { content: ""; position: absolute; border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent); border-radius: 50%; }
.latam-map::before { width: 580px; height: 580px; left: -120px; top: -90px; }
.latam-map::after { width: 390px; height: 390px; left: -30px; top: 5px; }
.south-america { position: absolute; z-index: 1; width: 185px; height: 327px; left: 36%; top: 14%; background: var(--navy-soft); clip-path: polygon(35% 0, 66% 6%, 78% 19%, 70% 35%, 82% 48%, 68% 66%, 63% 84%, 46% 100%, 37% 80%, 20% 69%, 17% 51%, 0 39%, 12% 23%, 18% 6%); transform: rotate(8deg); }
.map-point { position: absolute; z-index: 2; width: 14px; height: 14px; border: 4px solid var(--accent); background: var(--surface-strong); border-radius: 50%; box-shadow: 0 0 0 7px rgb(232 111 45 / .18); }
.point-br { left: 52%; top: 43%; }.point-uy { left: 49%; top: 68%; }.point-cl { left: 40%; top: 70%; }.point-ar { left: 45%; top: 77%; }
.latam-copy h2 { font-size: clamp(42px, 5vw, 68px); }
.latam-copy .button { margin-top: 30px; }

.site-footer { background: #081c26; color: #d6e1e4; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 7%; padding: 68px 0; }
.footer-brand img { width: 160px; background: #fff; padding: 7px 10px; }
.footer-brand p { max-width: 330px; margin: 23px 0 0; color: #9eb2b9; font-size: 14px; line-height: 1.65; }
.footer-column { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-column h2 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: #8099a2; }
.footer-column a { color: #e6edef; text-decoration: none; font-size: 13px; }
.footer-column a:hover { color: #fff; text-decoration: underline; }
.footer-column span { color: #9eb2b9; font-size: 13px; }
.footer-bottom { padding: 18px 0; border-top: 1px solid #24404b; display: flex; justify-content: space-between; gap: 20px; color: #78929b; font-size: 11px; }

.page-hero { padding: 88px 0 84px; background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 8%; align-items: center; }
.page-hero h1, .company-hero-copy h1, .inquiry-hero h1 { margin: 0; font-size: clamp(48px, 6.4vw, 86px); line-height: .96; letter-spacing: -.065em; }
.page-hero p:not(.eyebrow), .company-hero-copy > p:not(.eyebrow), .inquiry-hero p:not(.eyebrow) { max-width: 590px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.page-hero-media { min-height: 410px; background: var(--surface-strong); border: 1px solid var(--line); padding: 24px; display: grid; place-items: center; }
.page-hero-media img { width: 100%; height: 360px; object-fit: contain; }

.product-catalog { padding-top: 69px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.filter-button { min-height: 42px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); padding: 0 15px; cursor: pointer; font-size: 13px; font-weight: 700; }
.filter-button:hover, .filter-button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.catalog-status { display: flex; align-items: baseline; gap: 5px; color: var(--muted); font-size: 12px; margin-bottom: 28px; }
.catalog-status strong { color: var(--ink); font-size: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { min-width: 0; background: var(--surface-strong); border: 1px solid var(--line); }
.product-card[aria-hidden="true"] { display: none; }
.product-card button { width: 100%; height: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.product-image { aspect-ratio: 1.2; overflow: hidden; background: #e8f3f7; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 450ms cubic-bezier(.2,.7,.2,1); }
.product-card button:hover .product-image img { transform: scale(1.045); }
.product-card-copy { padding: 23px 22px 26px; }
.product-card-copy > span { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-card-copy h2 { margin: 10px 0 8px; font-size: 21px; line-height: 1.18; letter-spacing: -.03em; }
.product-card-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.empty-catalog { padding: 60px 0; text-align: center; }
.catalog-cta, .company-cta { padding-top: 0; }
.compact-cta { padding: 50px; background: var(--surface-strong); border: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.compact-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 47px); line-height: 1.03; letter-spacing: -.045em; }
.compact-cta p { max-width: 650px; margin: 13px 0 0; color: var(--muted); }

.modal { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 28px; }
.modal-backdrop { position: absolute; inset: 0; background: rgb(3 17 24 / .77); backdrop-filter: blur(7px); }
.modal-panel { position: relative; width: min(1040px, 100%); max-height: calc(100dvh - 56px); overflow: auto; background: var(--surface-strong); display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow); }
.modal-close { position: absolute; z-index: 2; right: 15px; top: 15px; min-height: 39px; background: var(--surface-strong); color: var(--ink); border: 1px solid var(--line-strong); cursor: pointer; padding: 0 13px; }
.modal-media { min-height: 610px; background: #e9f2f5; display: grid; place-items: center; padding: 30px; }
.modal-media img { width: 100%; height: 100%; max-height: 550px; object-fit: contain; }
.modal-content { padding: 62px 50px 46px; }
.modal-content > span { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.modal-content h2 { margin: 11px 0 17px; font-size: 39px; line-height: 1.03; letter-spacing: -.045em; }
.modal-content > p { color: var(--muted); line-height: 1.7; }
.modal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 26px 0; }
.modal-features span { padding: 11px; background: var(--surface); border-left: 2px solid var(--accent); color: var(--ink); font-size: 12px; }
.modal-note { padding-top: 17px; border-top: 1px solid var(--line); font-size: 12px; }
.modal-content .button { margin-top: 10px; }
body.modal-open { overflow: hidden; }

.company-hero { min-height: 680px; position: relative; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.company-hero-media, .company-hero-overlay { position: absolute; inset: 0; }
.company-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.company-hero-overlay { background: linear-gradient(90deg, rgb(5 24 33 / .9), rgb(5 24 33 / .45) 65%, rgb(5 24 33 / .2)); }
.company-hero-copy { position: relative; z-index: 1; padding-bottom: 72px; max-width: 850px; }
.company-hero-copy > p:not(.eyebrow) { color: #d1dde0; }
.company-intro-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 10%; }
.company-intro h2 { font-size: clamp(42px, 5.5vw, 75px); }
.company-intro p:first-child { margin-top: 0; }
.values-section { padding-top: 0; }
.values-grid { display: grid; grid-template-columns: 1.5fr .75fr; grid-template-rows: auto auto; gap: 15px; }
.values-grid article { border: 1px solid var(--line); background: var(--surface-strong); padding: 38px; }
.values-grid article > span { color: var(--accent); font-size: 11px; text-transform: uppercase; font-weight: 800; letter-spacing: .09em; }
.value-large { grid-row: 1 / 3; min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; background: var(--navy) !important; color: #fff; border-color: var(--navy) !important; }
.value-large h2 { margin: 100px 0 0; max-width: 680px; font-size: clamp(38px, 5vw, 66px); line-height: 1.03; letter-spacing: -.055em; }
.value-small h3 { margin: 36px 0 0; font-size: 28px; line-height: 1.18; letter-spacing: -.035em; }
.value-list ul { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.value-list li { color: var(--muted); font-size: 13px; }
.engineering-gallery { background: var(--surface); }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr; grid-template-rows: 260px 260px; gap: 15px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; }
.gallery-main { grid-row: 1 / 3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; background: linear-gradient(0deg, rgb(4 23 32 / .84), transparent); color: #fff; padding: 34px 20px 17px; font-size: 13px; }
.patent-section { background: var(--bg); }
.patent-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7%; align-items: center; }
.patent-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 37px; }
.patent-stats div { background: var(--surface-strong); padding: 25px; }
.patent-stats strong { display: block; font-size: 55px; line-height: 1; letter-spacing: -.06em; }
.patent-stats span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.patent-image img { width: 100%; min-height: 390px; object-fit: cover; border: 1px solid var(--line); }
.company-scope { background: var(--surface-strong); }
.company-scope > .shell > h2 { margin-bottom: 50px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.scope-grid article { min-height: 230px; background: var(--surface); padding: 29px; }
.scope-grid span { color: var(--accent); font-size: 12px; font-weight: 800; }
.scope-grid h3 { margin: 38px 0 10px; font-size: 25px; }
.scope-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.inquiry-hero { background: var(--surface); padding: 86px 0; border-bottom: 1px solid var(--line); }
.inquiry-hero-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 8%; align-items: center; }
.inquiry-hero-image { min-height: 400px; background: #e9f2f5; padding: 28px; display: grid; place-items: center; border: 1px solid var(--line); }
.inquiry-hero-image img { width: 100%; height: 350px; object-fit: contain; }
.inquiry-layout { display: grid; grid-template-columns: 310px 1fr; gap: 6%; align-items: start; }
.inquiry-guide { position: sticky; top: 100px; }
.inquiry-guide h2 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.inquiry-guide ol { margin: 26px 0 0; padding-left: 22px; color: var(--muted); }
.inquiry-guide li { padding: 8px 0; }
.privacy-note { margin-top: 35px; padding: 22px; background: var(--surface-strong); border-left: 3px solid var(--accent); }
.privacy-note strong { font-size: 13px; }
.privacy-note p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.brief-showcase { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.brief-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--surface-strong); border: 1px solid var(--line); }
.brief-card-featured { grid-row: 1 / 3; min-height: 534px; background: var(--navy); color: #edf5f6; border-color: var(--navy); }
.brief-card > span { color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.brief-card h2, .brief-card h3 { margin: auto 0 17px; letter-spacing: -.045em; line-height: 1.06; }
.brief-card h2 { max-width: 560px; font-size: clamp(38px, 5vw, 65px); }
.brief-card h3 { font-size: 28px; }
.brief-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.brief-card-featured p { max-width: 520px; color: #afc2c8; font-size: 16px; }
.project-path-section { padding-top: 0; background: var(--surface); }
.project-path { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); }
.project-path article { min-height: 250px; padding: 29px 25px 0; border-right: 1px solid var(--line); }
.project-path article:first-child { padding-left: 0; }
.project-path article:last-child { border-right: 0; }
.project-path strong { color: var(--accent); font-size: 13px; }
.project-path h3 { margin: 50px 0 11px; font-size: 22px; line-height: 1.16; letter-spacing: -.035em; }
.project-path p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.inquiry-form { background: var(--surface-strong); border: 1px solid var(--line); padding: 38px; }
.form-section + .form-section { margin-top: 43px; padding-top: 38px; border-top: 1px solid var(--line); }
.form-section h2 { margin: 0 0 25px; font-size: 25px; }
.form-grid { display: grid; gap: 22px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form label > span { color: var(--ink); font-size: 13px; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); padding: 12px 13px; border-radius: 0; }
.inquiry-form input, .inquiry-form select { min-height: 48px; }
.inquiry-form textarea { resize: vertical; min-height: 135px; }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: color-mix(in srgb, var(--muted) 88%, transparent); opacity: 1; }
.inquiry-form [aria-invalid="true"] { border-color: #b83e2a; }
.field-error { min-height: 16px; color: #b83e2a; font-size: 11px; }
.full-field { margin-top: 22px; }
.form-actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.form-status { width: 100%; margin: 4px 0 0; min-height: 20px; color: var(--muted); font-size: 12px; }
.summary-section { padding-top: 0; }
.summary-card { background: var(--navy); color: #edf5f6; padding: 45px; }
.summary-heading { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.summary-heading h2 { margin: 0; font-size: 34px; }
.summary-heading p { margin: 8px 0 0; color: #a9bbc2; }
.summary-card pre { margin: 35px 0 0; padding: 28px; overflow: auto; background: #0a202b; color: #dfeaec; border: 1px solid #36525e; white-space: pre-wrap; font: 13px/1.75 ui-monospace, "Cascadia Code", monospace; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 820px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button { display: inline-flex; align-items: center; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: var(--header-height); display: grid; gap: 0; background: var(--surface-strong); color: var(--ink); border-bottom: 1px solid var(--line); transform: scaleY(0); transform-origin: top; opacity: 0; pointer-events: none; transition: transform 180ms ease, opacity 180ms ease; }
  .mobile-nav.is-open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .mobile-nav a { padding: 16px 18px; text-decoration: none; border-top: 1px solid var(--line); font-weight: 700; }
  .hero-home-grid { grid-template-columns: 1fr; align-items: center; padding-top: 85px; }
  .hero-fact { display: none; }
  .client-strip .shell { grid-template-columns: 1fr; gap: 18px; }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  .solution-bento { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 260px; }
  .tile-main { grid-column: 1 / 3; grid-row: 1; }
  .tile-wide { grid-column: 1 / 3; grid-row: 3; }
  .tile-tall { grid-column: 2; grid-row: 2; }
  .product-story-grid, .capability-layout, .proof-layout, .latam-cta-grid, .page-hero-grid, .company-intro-grid, .patent-grid, .inquiry-hero-grid { grid-template-columns: 1fr; }
  .story-media { min-height: 440px; }
  .capability-photo img { min-height: 420px; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track article:nth-child(2) { border-right: 0; }
  .process-track article:nth-child(3), .process-track article:nth-child(4) { border-top: 1px solid var(--line); }
  .proof-copy { margin-bottom: 25px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-panel { grid-template-columns: .8fr 1fr; }
  .values-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .value-large { grid-row: auto; min-height: 390px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 400px 240px; }
  .gallery-main { grid-column: 1 / 3; grid-row: 1; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-guide { position: static; }
  .brief-showcase { margin-top: 18px; }
  .project-path { grid-template-columns: 1fr 1fr; }
  .project-path article:nth-child(2) { border-right: 0; }
  .project-path article:nth-child(3), .project-path article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 30px); --header-height: 67px; }
  .logo { width: 139px; height: 39px; padding: 5px 8px; }
  .logo img { width: 122px; }
  .theme-toggle { display: none; }
  .tool-button, .menu-button { min-height: 36px; padding-inline: 10px; }
  .section { padding: 78px 0; }
  .hero-home { min-height: 790px; }
  .hero-scrim { background: linear-gradient(90deg, rgb(5 25 35 / .92), rgb(5 25 35 / .48)), linear-gradient(0deg, rgb(5 25 35 / .68), transparent 70%); }
  .hero-media img { object-position: 57% center; }
  .hero-copy h1 { font-size: clamp(47px, 14vw, 69px); }
  .hero-lead { max-width: 400px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 290px; }
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .solution-bento { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 330px); }
  .tile-main, .tile-wide, .tile-tall { grid-column: 1; grid-row: auto; }
  .tile-main .tile-copy { padding: 24px; }
  .tile-main .tile-copy h3 { font-size: 27px; }
  .story-media { min-height: 350px; padding: 12px; }
  .story-media img { height: 340px; }
  .feature-definitions div { grid-template-columns: 85px 1fr; }
  .capability-photo img { min-height: 330px; }
  .process-track { grid-template-columns: 1fr; }
  .process-track article, .process-track article:not(:first-child) { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-track h3 { margin-top: 16px; }
  .proof-numbers { grid-template-columns: 1fr; }
  .proof-numbers div, .proof-numbers div:last-child { grid-column: auto; min-height: 150px; flex-direction: column; align-items: flex-start; }
  .proof-numbers strong { font-size: 60px; }
  .latam-map { min-height: 380px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 37px 25px; padding: 55px 0; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-column:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; }
  .page-hero, .inquiry-hero { padding: 68px 0; }
  .page-hero h1, .company-hero-copy h1, .inquiry-hero h1 { font-size: clamp(45px, 13vw, 65px); }
  .page-hero-media { min-height: 310px; }
  .page-hero-media img { height: 270px; }
  .product-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; }
  .filter-button { flex: 0 0 auto; }
  .compact-cta { padding: 31px 24px; align-items: flex-start; flex-direction: column; gap: 28px; }
  .modal { padding: 0; place-items: stretch; }
  .modal-panel { width: 100%; max-height: 100dvh; grid-template-columns: 1fr; }
  .modal-media { min-height: 300px; padding: 20px; }
  .modal-media img { max-height: 280px; }
  .modal-content { padding: 38px 23px; }
  .modal-content h2 { font-size: 31px; }
  .modal-features { grid-template-columns: 1fr; }
  .company-hero { min-height: 650px; }
  .company-hero-copy { padding-bottom: 48px; }
  .values-grid article { padding: 28px; }
  .value-large { min-height: 360px; }
  .value-large h2 { margin-top: 60px; font-size: 39px; }
  .value-list ul { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 340px 240px 240px; }
  .gallery-main { grid-column: 1; grid-row: 1; }
  .patent-stats, .scope-grid { grid-template-columns: 1fr; }
  .inquiry-hero-image { min-height: 310px; }
  .inquiry-hero-image img { height: 270px; }
  .locale-menu { position: fixed; top: calc(var(--header-height) - 1px); right: 15px; left: 15px; width: auto; }
  .brief-showcase { grid-template-columns: 1fr; }
  .brief-card, .brief-card-featured { grid-row: auto; min-height: 310px; padding: 25px; }
  .brief-card h2 { font-size: 42px; }
  .project-path { grid-template-columns: 1fr; }
  .project-path article, .project-path article:first-child { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .project-path h3 { margin-top: 19px; }
  .inquiry-form { padding: 25px 19px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .summary-card { padding: 30px 20px; }
  .summary-heading { align-items: flex-start; flex-direction: column; }
}

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