:root {
  --bg: #04111d;
  --bg-deep: #020914;
  --panel: rgba(4, 18, 31, 0.84);
  --panel-strong: rgba(3, 15, 27, 0.93);
  --line: rgba(206, 132, 28, 0.62);
  --line-soft: rgba(206, 132, 28, 0.40);
  --line-subtle: rgba(206, 132, 28, 0.18);
  --gold: #f0a000;
  --gold-soft: #f5c067;
  --gold-bright: #ffd37c;
  --text: #e8eef4;
  --muted: #b9c5cf;
  --muted-2: #8fa1af;
  --container: 1250px;
  --header-h: 48px;
  --header-offset: 48px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  background: var(--bg-deep);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 32%, rgba(10, 50, 79, .48), transparent 31%),
    radial-gradient(circle at 88% 45%, rgba(11, 40, 61, .32), transparent 33%),
    linear-gradient(180deg, #020a14 0%, #041421 48%, #020912 100%);
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
sup { line-height: 0; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #050b13;
  background: var(--gold-bright);
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(2, 11, 19, .97);
  border-bottom: 1px solid rgba(197, 128, 33, .24);
  backdrop-filter: blur(15px);
  transition: box-shadow .18s ease, background-color .18s ease;
}
.site-header.is-scrolled {
  background: rgba(2, 11, 19, .985);
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.company-logo {
  display: inline-block;
  flex: 0 1 auto;
  max-width: 535px;
  color: #fff;
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 900;
  letter-spacing: .105em;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo { display: inline-block; color: #fff; font-weight: 900; text-transform: uppercase; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3.1vw, 44px);
  color: #fff;
  font-size: clamp(8px, .83vw, 12px);
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.primary-nav a {
  opacity: .92;
  transition: color .16s ease, opacity .16s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active { color: var(--gold-soft); opacity: 1; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(206, 132, 28, .38);
  border-radius: 2px;
  background: rgba(5, 21, 36, .68);
  color: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform .16s ease, opacity .16s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section[id] { scroll-margin-top: var(--header-offset); }
.section { padding: clamp(28px, 3.4vw, 50px) 0 0; }
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: clamp(11px, 1.02vw, 14px);
  font-weight: 900;
  letter-spacing: .28em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.section-kicker.align-left { text-align: left; }
.section-title {
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  color: #f2f5f8;
  font-size: clamp(24px, 2.55vw, 38px);
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.15;
  text-align: center;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid rgba(253, 209, 122, .52);
  border-radius: 2px;
  color: #12100a;
  background: linear-gradient(90deg, #ffd988 0%, #e4a143 49%, #ffd57d 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.44), 0 18px 34px rgba(213, 139, 43, .20);
  cursor: pointer;
  font-size: clamp(11px, .98vw, 14px);
  font-weight: 900;
  letter-spacing: .19em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); filter: brightness(1.05); }
.button-secondary {
  color: #f3f6f9;
  background: rgba(3, 15, 27, .62);
  border-color: var(--line-soft);
  box-shadow: none;
}
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--gold-soft); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(3, 13, 23, .995) 0%, rgba(3, 13, 23, .92) 31%, rgba(3, 13, 23, .41) 62%, rgba(3, 13, 23, .07) 100%),
    url("../img/hero-connectivity.webp?v=20260517-a1l1");
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 188, 75, .12), transparent 18%),
    radial-gradient(circle at 42% 58%, rgba(255, 166, 54, .08), transparent 20%),
    linear-gradient(180deg, rgba(4, 17, 29, 0) 60%, rgba(4, 17, 29, .96) 100%);
}
.hero-inner {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  min-height: clamp(438px, 38vw, 502px);
  padding-top: clamp(54px, 5.8vw, 78px);
}
.hero-copy {
  width: min(48%, 605px);
  min-width: 360px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(10px, .92vw, 13px);
  font-weight: 900;
  letter-spacing: .32em;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.25vw, 62px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0,0,0,.42);
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.title-rule {
  display: block;
  width: 126px;
  height: 2px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,192,103,.75) 54%, rgba(245,192,103,0) 100%);
}

/* A1-L1 production hero signature */
.variant-l1 .title-rule { display: none; }
.brand-left-lockup {
  display: block;
  width: min(100%, 520px);
  margin: 18px 0 20px;
  padding-top: 16px;
  border-top: 2px solid rgba(240, 160, 0, .72);
  color: #fff;
  text-transform: uppercase;
}
.brand-left-name {
  display: block;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: .105em;
  line-height: .98;
  text-shadow: 0 12px 28px rgba(0,0,0,.38);
}
.brand-left-tagline {
  display: block;
  margin-top: 7px;
  color: var(--gold-soft);
  font-size: clamp(12px, 1.22vw, 17px);
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1.18;
}
.brand-left-lockup sup {
  position: relative;
  top: -.48em;
  font-size: .54em;
  line-height: 0;
  letter-spacing: 0;
}
.variant-l1 .focus-strip { margin-top: -1px; }
.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #d7e0e8;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.62;
}
.hero-points {
  list-style: none;
  margin: clamp(15px, 1.7vw, 24px) 0 0;
  padding: 0;
  max-width: 620px;
  color: #edf2f6;
  font-size: clamp(12px, .96vw, 15px);
  line-height: 1.48;
}
.hero-points li {
  position: relative;
  margin: 0 0 clamp(8px, .9vw, 13px);
  padding-left: 28px;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .58em;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 178, 51, .76);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(21px, 2.2vw, 32px);
}
.button-primary { width: min(100%, 305px); }
.hero-bars {
  flex: 0 0 auto;
  padding-bottom: clamp(16px, 2.1vw, 30px);
}
.focus-strip {
  width: 100%;
  display: grid;
  min-height: clamp(76px, 7.2vw, 100px);
  grid-template-columns: 238px repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(5, 21, 36, .70), rgba(2, 12, 22, .86));
  box-shadow: inset 0 0 0 1px rgba(255, 209, 112, .015);
}
.focus-heading {
  display: flex;
  align-items: center;
  padding: 0 34px;
  color: var(--gold);
  border-right: 1px solid var(--line-soft);
  font-size: clamp(12px, 1.12vw, 17px);
  font-weight: 900;
  letter-spacing: .28em;
  line-height: 1.28;
  text-transform: uppercase;
}
.focus-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0 clamp(18px, 2.35vw, 38px);
  border-right: 1px solid var(--line-soft);
}
.focus-item:last-child { border-right: 0; }
.focus-item strong {
  display: block;
  color: #fff;
  font-size: clamp(15px, 1.42vw, 21px);
  font-weight: 900;
  line-height: 1.1;
}
.focus-item small {
  display: block;
  margin-top: 5px;
  color: #d8dee5;
  font-size: clamp(11px, 1.04vw, 15px);
  line-height: 1.15;
}

.about-section { background: rgba(2, 12, 22, .15); }
.statement-panel {
  width: min(920px, 100%);
  margin: 0 auto clamp(18px, 2vw, 28px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(5, 22, 37, .78), rgba(2, 13, 24, .88));
  box-shadow: inset 0 0 0 1px rgba(255, 208, 116, .026), 0 14px 32px rgba(0,0,0,.10);
  padding: clamp(22px, 3vw, 34px);
}
.statement-panel p {
  max-width: 790px;
  margin: 0 auto;
  color: #dce5ec;
  font-size: clamp(14px, 1.04vw, 16px);
  line-height: 1.72;
  text-align: center;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.1vw, 16px);
}
.text-card,
.products-panel,
.objectives-panel,
.contact-copy-card,
.contact-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(5, 22, 37, .78), rgba(2, 13, 24, .88));
  box-shadow: inset 0 0 0 1px rgba(255, 208, 116, .026), 0 14px 32px rgba(0,0,0,.10);
}
.compact-card {
  min-height: clamp(118px, 10.4vw, 154px);
  padding: clamp(18px, 2vw, 28px) clamp(15px, 1.9vw, 28px);
  text-align: center;
}
.card-icon,
.industry-icon,
.market-list svg,
.notice-inner svg {
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon {
  width: clamp(34px, 3.7vw, 52px);
  height: clamp(34px, 3.7vw, 52px);
  margin: 0 auto clamp(13px, 1.4vw, 20px);
}
h3 {
  color: var(--gold);
  font-size: clamp(11px, .98vw, 14px);
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1.32;
  text-transform: uppercase;
}
.text-card p {
  margin: 12px 0 0;
  color: #dbe4ea;
  font-size: clamp(11px, .9vw, 13px);
  line-height: 1.62;
}

.objectives-panel {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, .95fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 84% 22%, rgba(240,160,0,.14), transparent 25rem),
    linear-gradient(180deg, rgba(5, 22, 37, .82), rgba(2, 13, 24, .94));
}
.objectives-panel h2,
.products-panel h2,
.contact-copy-card h2 {
  color: #f2f5f8;
  font-size: clamp(25px, 2.65vw, 39px);
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.15;
}
.objectives-copy {
  display: grid;
  gap: 15px;
}
.objectives-copy p,
.products-copy p:not(.section-kicker),
.contact-copy-card p:last-child {
  margin: 0;
  color: #dce5ec;
  font-size: clamp(14px, 1.04vw, 16px);
  line-height: 1.72;
}

.industries-section { padding-top: clamp(34px, 4.1vw, 58px); }
.section-heading {
  max-width: 760px;
  text-align: center;
  margin-bottom: clamp(20px, 2.8vw, 38px);
}
.section-heading p:last-child {
  margin: 0 auto;
  color: #c9d4dd;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.65;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(7px, .85vw, 12px);
}
.industry-card {
  min-height: clamp(324px, 28.8vw, 420px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(3, 15, 27, .87);
  box-shadow: inset 0 0 0 1px rgba(255, 208, 116, .018), 0 14px 32px rgba(0,0,0,.10);
}
.industry-card img {
  width: 100%;
  height: clamp(160px, 14.8vw, 214px);
  object-fit: cover;
  border-bottom: 1px solid rgba(206, 132, 28, .24);
  filter: saturate(.9) contrast(1.06) brightness(.92);
}
.industry-card:nth-child(1) img { object-position: center 50%; }
.industry-card:nth-child(2) img { object-position: center 50%; }
.industry-card:nth-child(3) img { object-position: center 46%; }
.industry-card:nth-child(4) img { object-position: center 50%; }
.industry-card:nth-child(5) img { object-position: center 50%; }
.industry-copy {
  padding: clamp(14px, 1.4vw, 20px) clamp(10px, 1vw, 16px);
}
.industry-icon {
  width: clamp(24px, 2.2vw, 34px);
  height: clamp(24px, 2.2vw, 34px);
  margin-bottom: clamp(12px, 1.2vw, 18px);
}
.industry-copy h3 {
  color: #f5f7fa;
  font-size: clamp(11px, 1.02vw, 15px);
  letter-spacing: .015em;
  line-height: 1.25;
}
.industry-copy p {
  margin: clamp(13px, 1.5vw, 21px) 0 0;
  color: #d6dfe7;
  font-size: clamp(10px, .86vw, 13px);
  line-height: 1.62;
}

.products-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .66fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at right top, rgba(240,160,0,.14), transparent 25rem),
    linear-gradient(180deg, rgba(5, 22, 37, .82), rgba(2, 13, 24, .94));
}
.products-copy p:not(.section-kicker) {
  max-width: 730px;
  margin: 20px 0 0;
}
.market-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.market-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(206,132,28,.30);
  background: rgba(255,255,255,.025);
  color: #eef2f6;
  font-size: clamp(12px, .96vw, 14px);
  font-weight: 900;
}
.market-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.contact-section { padding-bottom: clamp(28px, 4vw, 56px); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: clamp(10px, 1.3vw, 18px);
  align-items: stretch;
}
.contact-copy-card,
.contact-card {
  min-height: clamp(290px, 29.2vw, 420px);
  padding: clamp(26px, 2.5vw, 40px) clamp(23px, 2.3vw, 35px);
}
.contact-copy-card {
  background:
    linear-gradient(90deg, rgba(3, 13, 23, .92), rgba(3, 13, 23, .66)),
    url("../img/hero-connectivity.webp?v=20260517-a1l1") center / cover no-repeat;
}
.contact-copy-card h2 { max-width: 520px; }
.contact-copy-card p:last-child { margin-top: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.field { display: block; }
.field-full { grid-column: 1 / -1; }
.field span {
  display: block;
  margin: 0 0 7px;
  color: #cfd8e0;
  font-size: 10px;
  line-height: 1;
}
.field input,
.field textarea {
  width: 100%;
  min-height: clamp(42px, 4.1vw, 52px);
  border: 1px solid rgba(206,132,28,.29);
  border-radius: 0;
  background: rgba(1, 10, 18, .48);
  color: #eef4f8;
  padding: 0 14px;
  outline: none;
  font-size: clamp(11px, .91vw, 13px);
  line-height: 1.3;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field textarea {
  height: calc(clamp(42px, 4.1vw, 52px) * 2 + 12px);
  padding-top: 13px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: #aebbc6; opacity: 1; }
.field input:focus,
.field textarea:focus {
  border-color: rgba(244, 181, 74, .82);
  background: rgba(2, 10, 18, .74);
  box-shadow: 0 0 0 3px rgba(240,160,0,.10);
}
.submit-button { width: 100%; margin-top: 16px; }
.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
  color: #b9c5cf;
  font-size: clamp(11px, .88vw, 13px);
  line-height: 1.4;
  text-align: center;
}
.security-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.security-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-status {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
}
.form-status.is-success { color: #d5f1dc; }
.form-status.is-error { color: #ffb4a8; }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.notice { padding: clamp(16px, 1.8vw, 26px) 0 0; }
.notice-inner {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 10px clamp(12px, 1.2vw, 18px);
}
.notice-inner svg {
  width: 28px;
  height: 28px;
}
.notice-inner p {
  margin: 0;
  color: #d6dfe7;
  font-size: clamp(10px, .86vw, 12px);
  line-height: 1.5;
}
.site-footer {
  min-height: 52px;
  background: rgba(2, 9, 16, .98);
  border-top: 1px solid rgba(206, 132, 28, .12);
}
.footer-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 900;
  letter-spacing: .105em;
  line-height: 1.18;
  text-transform: uppercase;
}
.footer-brand p {
  margin: 4px 0 0;
  color: #aeb9c2;
  font-size: clamp(9px, .78vw, 12px);
  line-height: 1.1;
}
.footer-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  margin: 0;
  color: #aeb9c2;
  font-size: clamp(9px, .78vw, 12px);
  line-height: 1.35;
  text-align: right;
}
.footer-meta a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }

.privacy-page main { padding: clamp(34px, 5vw, 64px) 0 clamp(54px, 7vw, 96px); }
.privacy-content { max-width: 980px; }
.privacy-content h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.privacy-card {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(5, 22, 37, .78), rgba(2, 13, 24, .88));
  box-shadow: inset 0 0 0 1px rgba(255, 208, 116, .026), 0 14px 32px rgba(0,0,0,.10);
}
.privacy-card h2 {
  margin: 26px 0 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.privacy-card h2:first-child { margin-top: 0; }
.privacy-card p,
.privacy-card li {
  color: #d5dde5;
  font-size: 14px;
  line-height: 1.72;
}
.privacy-card p { margin: 0 0 12px; }
.privacy-card ul { margin: 0 0 12px; padding-left: 18px; }

@media (max-width: 1180px) {
  .industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .industry-card { min-height: 380px; }
}

@media (max-width: 980px) {
  :root { --header-h: 58px; --header-offset: 70px; }
  .container { width: calc(100% - 36px); }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .primary-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line-soft);
    background: rgba(2, 11, 19, .985);
    box-shadow: 0 18px 46px rgba(0,0,0,.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    white-space: normal;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a { padding: 13px 14px; border-bottom: 1px solid rgba(206,132,28,.12); }
  .primary-nav a:last-child { border-bottom: 0; }
  body.nav-open { overflow: hidden; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 13, 23, .99) 0%, rgba(3, 13, 23, .88) 42%, rgba(3, 13, 23, .34) 72%, rgba(3, 13, 23, .12) 100%),
      url("../img/hero-connectivity.webp?v=20260517-a1l1") 64% top / cover no-repeat;
  }
  .hero-inner { min-height: auto; padding: 54px 0 38px; }
  .hero-copy { width: min(100%, 630px); min-width: 0; }
  .hero h1 { max-width: 660px; font-size: clamp(68px, 14vw, 96px); }
  .focus-bar { grid-template-columns: 1fr 1fr; }
  .focus-heading { min-height: 70px; border-bottom: 1px solid var(--line-soft); }
  .focus-item { min-height: 86px; border-bottom: 1px solid var(--line-soft); }
  .focus-item:nth-child(3) { border-right: 0; }
  .focus-item:nth-child(4) { grid-column: 1 / -1; border-bottom: 0; border-right: 0; }
  .brand-line { grid-template-columns: 1fr; }
  .brand-line-label { min-height: 56px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .brand-line p { min-height: 54px; display: flex; align-items: center; }
  .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .objectives-panel,
  .products-panel,
  .contact-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-copy-card,
  .contact-card { min-height: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 15px 0; }
  .footer-meta { justify-items: start; text-align: left; }
}

@media (max-width: 620px) {
  :root { --header-h: 58px; --header-offset: 70px; }
  .container { width: calc(100% - 28px); }
  .logo { font-size: 18px; letter-spacing: .24em; }
  .section { padding-top: 38px; }
  .section-kicker { margin-bottom: 7px; font-size: 10px; letter-spacing: .24em; }
  .section-title,
  .objectives-panel h2,
  .products-panel h2,
  .contact-copy-card h2 { font-size: 26px; line-height: 1.12; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 13, 23, .72) 0%, rgba(3, 13, 23, .88) 38%, rgba(3, 13, 23, .99) 100%),
      url("../img/hero-connectivity.webp?v=20260517-a1l1") 64% top / cover no-repeat;
  }
  .hero-inner { padding: 34px 0 28px; }
  .hero h1 {
    margin-bottom: 7px;
    font-size: clamp(52px, 17vw, 70px);
    letter-spacing: -.05em;
  }
  .hero-subtitle {
    min-height: 38px;
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 12px;
  }
  .hero-lead { font-size: 15px; line-height: 1.58; }
  .hero-points { margin-top: 16px; font-size: 12.8px; }
  .hero-actions { display: grid; gap: 10px; margin-top: 20px; }
  .button { width: 100%; min-height: 44px; font-size: 11px; letter-spacing: .15em; padding: 0 18px; }
  .focus-bar { grid-template-columns: 1fr; }
  .focus-heading,
  .focus-item { min-height: 70px; border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 0 22px; }
  .focus-item:last-child { border-bottom: 0; }
  .focus-item:nth-child(3) { border-right: 0; }
  .focus-item:nth-child(4) { grid-column: auto; }
  .focus-item svg { width: 38px; height: 38px; flex-basis: 38px; }
  .focus-item strong { font-size: 15px; }
  .focus-item small { font-size: 11px; }
  .brand-line-label { padding: 0 22px; }
  .brand-line p { padding: 0 22px; letter-spacing: .15em; }
  .advantage-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .statement-panel,
  .objectives-panel,
  .products-panel,
  .contact-copy-card,
  .contact-card,
  .compact-card { padding: 22px; }
  .statement-panel p { text-align: left; }
  .industry-card { min-height: auto; }
  .industry-card img { height: 205px; }
  .industry-copy { padding: 20px 22px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .notice-inner { align-items: start; grid-template-columns: 28px 1fr; padding-top: 12px; }
  .notice-inner p { font-size: 10px; }
}

@media (max-width: 430px) {
  .logo { font-size: 17px; }
  .hero h1 { font-size: clamp(50px, 15vw, 62px); letter-spacing: .09em; }
  .hero-subtitle { width: 100%; }
  .industry-card img { height: 186px; }
  .privacy-content h1 { font-size: 38px; }
}

@media (max-width: 1180px) {
  .company-logo { max-width: 420px; font-size: 10px; letter-spacing: .075em; }
  .primary-nav { gap: clamp(12px, 2.4vw, 24px); }
  .focus-strip { grid-template-columns: 170px repeat(3, minmax(0, 1fr)); }
  .focus-heading { padding-left: 22px; padding-right: 18px; }
  .focus-item { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 980px) {
  .company-logo { max-width: calc(100% - 58px); white-space: normal; font-size: 9.4px; letter-spacing: .075em; }
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(3, 13, 23, .99) 0%, rgba(3, 13, 23, .88) 42%, rgba(3, 13, 23, .34) 72%, rgba(3, 13, 23, .12) 100%),
      url("../img/hero-connectivity.webp?v=20260517-a1l1");
    background-position: 64% top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-inner { min-height: auto; padding: 48px 0 28px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { max-width: 660px; font-size: clamp(38px, 10.8vw, 64px); letter-spacing: .02em; }
  .focus-strip { grid-template-columns: 1fr; }
  .focus-heading { min-height: 56px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .focus-item { min-height: 68px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .focus-item:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
  .company-logo { max-width: calc(100% - 58px); font-size: 8.9px; letter-spacing: .058em; line-height: 1.22; }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(3, 13, 23, .95) 0%, rgba(3, 13, 23, .87) 56%, rgba(3, 13, 23, .88) 100%),
      url("../img/hero-connectivity.webp?v=20260517-a1l1");
    background-position: 66% top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-inner { padding: 35px 0 26px; }
  .kicker { margin-bottom: 11px; font-size: 10px; letter-spacing: .25em; }
  .hero h1 { font-size: clamp(28px, 8.7vw, 34px); line-height: 1.04; letter-spacing: .005em; }
  .title-rule { margin: 13px 0 14px; width: 84px; }
  .hero-lead { font-size: 13px; line-height: 1.55; }
  .hero-points { margin-top: 14px; font-size: 12px; line-height: 1.42; }
  .hero-points li { padding-left: 22px; margin-bottom: 8px; }
  .hero-points li::before { width: 6px; height: 6px; }
  .hero-actions { gap: 10px; margin-top: 18px; }
  .button { min-height: 42px; width: 100%; padding: 0 18px; font-size: 10.5px; letter-spacing: .16em; }
  .button-secondary { min-width: 0; }
  .hero-bars { padding-bottom: 14px; }
}
@media (max-width: 480px) {
  .site-header { min-height: 52px; }
  .header-inner { min-height: 52px; }
  .primary-nav { top: 62px; left: 14px; right: 14px; }
  .hero { min-height: calc(100svh - 52px); }
  .focus-strip { display: none; }
}

@media (max-width: 980px) {
  .primary-nav {
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    text-align: left;
  }
  .primary-nav a { width: 100%; }
}

@media (max-width: 980px) {
  .primary-nav {
    background: #020b13;
    font-size: 11px;
  }
  .primary-nav a {
    padding: 14px 24px;
  }
}

/* Production QA hardening for A1-L1 first fold */
@media (max-width: 980px) {
  .variant-l1 .hero-copy { width: 100%; min-width: 0; }
  .variant-l1 .brand-left-lockup { width: min(100%, 560px); }
}
@media (max-width: 620px) {
  .variant-l1 .brand-left-lockup {
    margin: 14px 0 15px;
    padding-top: 13px;
  }
  .variant-l1 .brand-left-name {
    font-size: clamp(18px, 6vw, 24px);
    letter-spacing: .09em;
  }
  .variant-l1 .brand-left-tagline {
    margin-top: 5px;
    font-size: clamp(10px, 3.2vw, 12.5px);
    letter-spacing: .045em;
  }
  .variant-l1 .hero h1 span { white-space: nowrap; }
}
@media (max-width: 380px) {
  .variant-l1 .hero h1 { font-size: clamp(27px, 8.2vw, 32px); }
  .variant-l1 .brand-left-name { font-size: clamp(17px, 5.6vw, 21px); }
  .variant-l1 .brand-left-tagline { font-size: clamp(9.5px, 3vw, 11.5px); }
}

/* ======================================================================
   2026-05-17 EEFMG typographic readability patch + production fixes
   Scope: selective readability CSS, industry icon removal, anchor offset.
   No content, layout, image, form or JavaScript changes.
   ====================================================================== */

:root {
  --anchor-clearance: 10px;
  --anchor-offset: calc(var(--header-h) + var(--anchor-clearance));
}

/* Production fix 2: use a single anchor offset source.
   Previous CSS used both scroll-padding-top and scroll-margin-top, which could double the offset. */
html {
  scroll-padding-top: var(--anchor-offset);
}

.section[id],
#about,
#objectives,
#industries,
#products,
#contact {
  scroll-margin-top: 0;
}

.company-logo {
  max-width: 555px;
  font-size: clamp(12px, .88vw, 13px);
  line-height: 1.26;
  letter-spacing: .08em;
}

.primary-nav {
  gap: clamp(16px, 2.5vw, 40px);
  font-size: clamp(11.5px, .86vw, 12.3px);
  line-height: 1.15;
  letter-spacing: .05em;
}

.kicker {
  font-size: clamp(10.8px, .92vw, 13px);
  line-height: 1.28;
  letter-spacing: .28em;
}

.brand-left-tagline {
  font-size: clamp(12.4px, 1.22vw, 17px);
  line-height: 1.22;
}

.hero-lead {
  font-size: clamp(13.4px, 1.05vw, 16px);
  line-height: 1.64;
}

.hero-points {
  font-size: clamp(12.4px, .96vw, 15px);
  line-height: 1.55;
}

.focus-heading {
  font-size: clamp(12.4px, 1.12vw, 17px);
  line-height: 1.32;
  letter-spacing: .24em;
}

.focus-item small {
  font-size: clamp(11.5px, 1.04vw, 15px);
  line-height: 1.25;
}

.text-card h3,
.compact-card h3 {
  font-size: clamp(12px, .98vw, 14px);
  line-height: 1.34;
}

.text-card p {
  font-size: clamp(12.4px, .9vw, 13.2px);
  line-height: 1.62;
}

/* Production fix 1: remove the small sector icons between sector imagery and copy. */
.industry-copy .industry-icon {
  display: none !important;
}

.industry-card {
  min-height: clamp(328px, 29vw, 422px);
}

.industry-copy {
  padding: clamp(16px, 1.45vw, 22px) clamp(12px, 1.05vw, 17px) clamp(17px, 1.55vw, 23px);
}

.industry-copy h3 {
  font-size: clamp(12px, .92vw, 13.4px);
  line-height: 1.32;
  letter-spacing: .015em;
}

.industry-copy p {
  margin-top: clamp(10px, 1vw, 15px);
  font-size: clamp(12.2px, .9vw, 13.2px);
  line-height: 1.62;
}

.market-list li {
  font-size: clamp(12.4px, .96vw, 14px);
  line-height: 1.35;
}

.field span {
  margin-bottom: 7px;
  font-size: clamp(11.5px, .85vw, 12px);
  line-height: 1.25;
}

.field input,
.field textarea {
  font-size: clamp(12.6px, .91vw, 13.5px);
  line-height: 1.4;
}

.security-note {
  font-size: clamp(11.4px, .88vw, 12.5px);
  line-height: 1.45;
}

.notice-inner p {
  font-size: clamp(11.2px, .86vw, 12.2px);
  line-height: 1.55;
}

.footer-brand strong {
  font-size: clamp(10.8px, .86vw, 13px);
  line-height: 1.25;
  letter-spacing: .085em;
}

.footer-brand p,
.footer-meta {
  font-size: clamp(10.5px, .78vw, 11.5px);
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .company-logo {
    max-width: 450px;
    font-size: 11.4px;
    line-height: 1.24;
    letter-spacing: .062em;
  }

  .primary-nav {
    gap: clamp(12px, 2.1vw, 22px);
    font-size: 11.5px;
    line-height: 1.16;
  }

  .industry-card {
    min-height: 382px;
  }
}

@media (max-width: 980px) {
  .company-logo {
    max-width: calc(100% - 62px);
    font-size: clamp(10.8px, 1.55vw, 11.6px);
    line-height: 1.25;
    letter-spacing: .056em;
  }

  .primary-nav {
    font-size: 11.6px;
    line-height: 1.2;
    letter-spacing: .055em;
  }

  .primary-nav a {
    padding: 14px 24px;
  }

  .industry-card,
  .compact-card,
  .products-panel,
  .objectives-panel,
  .contact-copy-card,
  .contact-card {
    height: auto;
  }
}

@media (max-width: 620px) {
  .company-logo {
    max-width: calc(100% - 56px);
    font-size: clamp(10.2px, 2.65vw, 10.8px);
    line-height: 1.26;
    letter-spacing: .04em;
  }

  .kicker {
    font-size: 10.8px;
    line-height: 1.28;
    letter-spacing: .22em;
  }

  .variant-l1 .brand-left-tagline {
    font-size: clamp(11px, 3.2vw, 12.7px);
    line-height: 1.22;
  }

  .hero-lead {
    font-size: 13.4px;
    line-height: 1.6;
  }

  .hero-points {
    font-size: 12.4px;
    line-height: 1.52;
  }

  .industry-card {
    min-height: auto;
  }

  .industry-copy {
    padding: 20px 22px 24px;
  }

  .industry-copy h3 {
    font-size: 12.2px;
    line-height: 1.34;
  }

  .industry-copy p {
    font-size: 12.4px;
    line-height: 1.62;
  }

  .field span {
    font-size: 11.6px;
    line-height: 1.25;
  }

  .field input,
  .field textarea {
    font-size: 13px;
    line-height: 1.4;
  }

  .security-note {
    font-size: 11.4px;
    line-height: 1.45;
  }

  .notice-inner p {
    font-size: 11.4px;
    line-height: 1.55;
  }

  .footer-brand p,
  .footer-meta {
    font-size: 10.5px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  :root {
    --anchor-offset: 66px;
  }
}
