:root {
  --navy: #0b2f55;
  --navy-2: #082541;
  --navy-3: #061d34;
  --steel: #587792;
  --red: #c9212d;
  --red-dark: #a71621;
  --ink: #13243a;
  --text: #4b5b6f;
  --muted: #748195;
  --line: #dbe2e9;
  --soft: #f4f7f9;
  --soft-blue: #edf3f7;
  --white: #ffffff;
  --shell: 1200px;
  --shadow: 0 18px 50px rgba(14, 44, 73, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
}
.skip-link:focus { top: 12px; }

.shell { width: min(var(--shell), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { background: var(--navy-2); color: #fff; }

.utility-bar {
  height: 34px;
  display: flex;
  align-items: center;
  background: var(--navy-2);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  letter-spacing: .01em;
}
.utility-inner { display: flex; justify-content: space-between; align-items: center; }
.utility-left, .utility-right { display: flex; align-items: center; gap: 14px; }
.utility-bar a:hover { color: #fff; }
.utility-divider { width: 1px; height: 12px; background: rgba(255,255,255,.25); }
.mini-icon { margin-right: 5px; font-size: 11px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(9,42,76,.08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(9,42,76,.08); }
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 34px; }
.brand { flex: 0 0 auto; }
.brand img { width: 218px; height: auto; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative;
  padding: 32px 0 30px;
  font-size: 13px;
  font-weight: 700;
  color: #314155;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.active::after { width: 100%; }
.header-cta { margin-left: 8px; white-space: nowrap; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; margin: 5px 0; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-red { background: var(--red); color: #fff; }
.button-red:hover { background: var(--red-dark); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.02); }
.button-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.button-white { background: #fff; color: var(--navy); }
.button-white:hover { background: #eef3f7; }
.button-navy { background: var(--navy); color: #fff; }
.button-navy:hover { background: var(--navy-2); }

.hero {
  min-height: 665px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-3);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 56%; }
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,28,51,.96) 0%, rgba(5,30,55,.90) 34%, rgba(5,30,55,.60) 56%, rgba(5,30,55,.18) 100%),
    linear-gradient(180deg, rgba(8,37,65,.18), rgba(8,37,65,.28));
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 1px;
  background: rgba(255,255,255,.20);
  right: 0;
  bottom: 68px;
}
.hero-inner { min-height: 665px; display: flex; align-items: center; }
.hero-copy { width: 680px; color: #fff; padding: 70px 0 74px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow-light { color: #fff; }
.eyebrow-light span { background: var(--red); }
.hero h1 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 780;
}
.hero h1 em { color: #fff; font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 2px; bottom: -7px; width: 68px; height: 4px; background: var(--red); }
.hero-copy > p { max-width: 610px; margin: 28px 0 28px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 58px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 22px; }
.hero-points > div { display: flex; align-items: center; gap: 10px; padding-right: 18px; }
.hero-points > div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-points strong { font-size: 12px; line-height: 1.35; color: rgba(255,255,255,.88); }
.point-mark { font-size: 10px; color: #fff; border: 1px solid rgba(255,255,255,.4); min-width: 28px; height: 28px; display: grid; place-items: center; }

.credibility { position: relative; z-index: 3; margin-top: -35px; }
.credibility-grid { background: #fff; box-shadow: var(--shadow); border: 1px solid #e6ebf0; display: grid; grid-template-columns: repeat(4,1fr); }
.cred-item { min-height: 110px; display: flex; justify-content: center; align-items: center; gap: 14px; padding: 20px 28px; }
.cred-item + .cred-item { border-left: 1px solid var(--line); }
.cred-item strong { font-size: 35px; line-height: 1; letter-spacing: -.04em; color: var(--navy); }
.cred-item span { display: block; font-size: 13px; font-weight: 800; color: var(--ink); }
.cred-item small { display: block; color: var(--muted); font-size: 12px; }
.usa-mark { width: 52px; height: 34px; border: 2px solid var(--navy); color: var(--navy); font-weight: 900; letter-spacing: .08em; display: grid; place-items: center; font-size: 11px; transform: skew(-5deg); }

.split-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 78px; align-items: center; }
.media-frame { position: relative; }
.media-frame img { width: 100%; min-height: 470px; object-fit: cover; }
.media-frame-left::before { content: ""; position: absolute; left: -24px; top: -24px; width: 92px; height: 92px; border-left: 3px solid var(--red); border-top: 3px solid var(--red); z-index: -1; }
.media-tag { position: absolute; right: -24px; bottom: 30px; background: var(--navy); color: #fff; padding: 18px 22px; min-width: 210px; }
.media-tag span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #a8bed1; }
.media-tag strong { font-size: 15px; }
.content-column h2, .section-heading h2, .why-intro h2, .remote-copy h2, .equipment-copy h2, .nationwide-copy h2, .final-cta h2, .spotlight-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 760;
}
.content-column > p, .why-intro p, .remote-copy > p, .equipment-copy > p, .nationwide-copy > p { color: var(--text); margin: 22px 0 0; }
.lead { font-size: 18px; color: #31465d !important; }
.feature-list { margin: 28px 0 28px; border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 48px 1fr; align-items: start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.feature-list span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .09em; padding-top: 3px; }
.feature-list p { margin: 0; color: var(--text); font-size: 14px; }
.feature-list strong { color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); font-size: 13px; font-weight: 800; }
.text-link span { color: var(--red); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.solutions { background: var(--soft); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading-row { max-width: none; display: grid; grid-template-columns: 1fr 370px; gap: 50px; align-items: end; }
.section-heading-row > p { margin: 0 0 7px; color: var(--text); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 320px;
  padding: 30px 30px 26px;
  border: 1px solid #dde4ea;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: #c7d2dc; box-shadow: 0 16px 36px rgba(14,44,73,.07); }
.service-card-featured { border-top: 3px solid var(--red); padding-top: 28px; }
.service-number { position: absolute; top: 24px; right: 26px; color: #a3aeba; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; color: var(--navy); }
.service-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.25; letter-spacing: -.02em; }
.service-card p { margin: 0 0 20px; color: var(--text); font-size: 14px; }
.service-card a { margin-top: auto; color: var(--navy); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.service-card a span { color: var(--red); margin-left: 6px; }
.services-note { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-top: 1px solid #d6dfe6; border-bottom: 1px solid #d6dfe6; color: var(--text); }
.services-note a { color: var(--navy); font-weight: 800; }
.services-note strong { color: var(--red); margin-left: 8px; }

.spotlight { padding: 92px 0; }
.spotlight-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: stretch; }
.spotlight-copy { padding: 34px 70px 34px 0; display: flex; flex-direction: column; justify-content: center; }
.spotlight-copy h2 { color: #fff; }
.spotlight-copy p { color: #c4d0dc; margin: 22px 0 30px; max-width: 500px; }
.spotlight-copy .button { align-self: flex-start; }
.spotlight-visual { min-height: 390px; position: relative; overflow: hidden; }
.spotlight-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.spotlight-caption { position: absolute; left: 24px; bottom: 24px; background: #fff; color: var(--ink); padding: 16px 18px; min-width: 210px; }
.spotlight-caption span { display: block; font-size: 10px; text-transform: uppercase; color: var(--red); letter-spacing: .1em; font-weight: 800; }
.spotlight-caption strong { display: block; margin-top: 2px; }

.why-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 88px; align-items: start; }
.why-intro { position: sticky; top: 130px; }
.why-list { border-top: 1px solid var(--line); }
.why-item { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.why-number { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .09em; }
.why-item h3 { margin: 0 0 6px; font-size: 21px; }
.why-item p { margin: 0; color: var(--text); font-size: 14px; max-width: 620px; }

.remote-section { background: #fff; }
.remote-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 76px; }
.remote-image { position: relative; }
.remote-image::after { content: ""; position: absolute; width: 92px; height: 92px; right: -18px; bottom: -18px; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.remote-image img { width: 100%; }
.remote-points { margin: 28px 0 26px; }
.remote-points > div { padding: 15px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 170px 1fr; gap: 20px; }
.remote-points > div:last-child { border-bottom: 1px solid var(--line); }
.remote-points strong { font-size: 14px; }
.remote-points span { color: var(--text); font-size: 14px; }

.industries-section { background: var(--soft-blue); }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #cdd9e2; border: 1px solid #cdd9e2; }
.industry-card { background: #fff; padding: 34px 28px 32px; min-height: 250px; }
.industry-card span { font-size: 11px; font-weight: 900; color: var(--red); letter-spacing: .1em; }
.industry-card h3 { margin: 42px 0 12px; font-size: 22px; line-height: 1.2; }
.industry-card p { margin: 0; color: var(--text); font-size: 14px; }

.equipment-feature { overflow: hidden; }
.equipment-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.equipment-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 28px; }
.equipment-media { position: relative; background: #2c3a47; }
.equipment-media::before { content: ""; position: absolute; left: -18px; top: -18px; width: 62px; height: 62px; border-left: 3px solid var(--red); border-top: 3px solid var(--red); z-index: 2; }
.equipment-media img { width: 100%; min-height: 420px; object-fit: cover; }

.process-section { background: var(--soft); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfd8e0; border-bottom: 1px solid #cfd8e0; }
.process-step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 28px 28px 28px 0; }
.process-step + .process-step { padding-left: 28px; border-left: 1px solid #cfd8e0; }
.process-step span { width: 38px; height: 38px; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 11px; font-weight: 900; }
.process-step h3 { margin: 0 0 5px; font-size: 18px; }
.process-step p { margin: 0; color: var(--text); font-size: 13px; line-height: 1.55; }

.nationwide-section { background: #fff; }
.nationwide-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; align-items: center; }
.nationwide-copy .button { margin-top: 30px; }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.office-grid > div { padding: 24px; min-height: 125px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.office-grid span { display: block; color: var(--red); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.office-grid strong { display: block; margin: 8px 0 2px; font-size: 17px; }
.office-grid small { color: var(--text); }

.final-cta { background: var(--navy); color: #fff; padding: 76px 0; position: relative; overflow: hidden; }
.final-cta::after { content: "LEXICONUSA"; position: absolute; right: -12px; bottom: -65px; font-size: 130px; font-weight: 900; letter-spacing: -.06em; color: rgba(255,255,255,.035); pointer-events: none; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; position: relative; z-index: 2; }
.final-cta h2 { color: #fff; max-width: 700px; }
.final-cta p { color: #c5d2df; margin: 14px 0 0; max-width: 650px; }
.final-cta-actions { display: flex; align-items: center; gap: 26px; }
.call-link { display: flex; flex-direction: column; line-height: 1.35; }
.call-link small { color: #afc2d4; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.call-link strong { font-size: 18px; color: #fff; }

.site-footer { background: var(--navy-3); color: #c4d0dc; padding: 66px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(4, .9fr); gap: 38px; }
.footer-logo-wrap { display: inline-block; background: #fff; padding: 8px 10px; margin-bottom: 18px; }
.footer-logo-wrap img { width: 190px; }
.footer-brand p { margin: 0; max-width: 320px; font-size: 13px; color: #9fb1c2; }
.footer-column h3 { margin: 0 0 16px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.footer-column a, .footer-column span { display: block; padding: 4px 0; color: #a8b8c7; font-size: 13px; }
.footer-column a:hover { color: #fff; }
.footer-contact a:first-of-type { color: #fff; font-size: 15px; font-weight: 800; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 24px; color: #7f95a8; font-size: 11px; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

@media (max-width: 1100px) {
  .shell { width: min(var(--shell), calc(100% - 42px)); }
  .primary-nav { gap: 18px; }
  .primary-nav a { font-size: 12px; }
  .header-cta { display: none; }
  .split-layout, .remote-grid, .equipment-grid { gap: 46px; }
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 860px) {
  .utility-right { display: none; }
  .utility-inner { justify-content: center; }
  .header-inner { min-height: 74px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(9,42,76,.08);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid #edf1f4; }
  .primary-nav a::after { display: none; }
  .hero, .hero-inner { min-height: 610px; }
  .hero-copy { width: 100%; padding: 66px 0; }
  .hero-media-overlay { background: linear-gradient(90deg, rgba(5,28,51,.96), rgba(5,30,55,.80)); }
  .hero-points { grid-template-columns: 1fr; gap: 12px; }
  .hero-points > div + div { padding-left: 0; border-left: 0; }
  .credibility { margin-top: 0; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .cred-item:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .split-layout, .remote-grid, .equipment-grid, .why-grid, .nationwide-grid, .final-cta-inner, .spotlight-grid { grid-template-columns: 1fr; }
  .media-frame img { min-height: 400px; }
  .media-tag { right: 18px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight-copy { padding: 10px 0 34px; }
  .spotlight-visual { min-height: 340px; }
  .why-intro { position: static; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; border-top: 1px solid #cfd8e0; padding-left: 0; }
  .process-step:nth-child(4) { border-top: 1px solid #cfd8e0; }
  .final-cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 600px) {
  .shell { width: calc(100% - 32px); }
  .utility-bar { height: auto; padding: 8px 0; }
  .utility-left { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .utility-left .utility-divider { display: none; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 16px; }
  .credibility-grid { grid-template-columns: 1fr; }
  .cred-item + .cred-item { border-left: 0; border-top: 1px solid var(--line); }
  .services-grid, .industries-grid, .office-grid, .process-track, .footer-grid { grid-template-columns: 1fr; }
  .office-grid { border-left: 0; border-top: 0; }
  .office-grid > div { border-left: 1px solid var(--line); }
  .process-step + .process-step, .process-step:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid #cfd8e0; }
  .remote-points > div { grid-template-columns: 1fr; gap: 4px; }
  .why-item { grid-template-columns: 48px 1fr; }
  .final-cta-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .media-frame-left::before, .remote-image::after, .equipment-media::before { display: none; }
}
