:root {
  --bg: #080d16;
  --bg-2: #101725;
  --ink: #111827;
  --muted: #667085;
  --soft: #eff4fa;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --line: rgba(22, 42, 120, 0.14);
  --line-strong: rgba(22, 42, 120, 0.24);
  --accent: #162a78;
  --accent-bright: #2d7ca5;
  --accent-warm: #b79a63;
  --dark: #101522;
  --dark-2: #172033;
  --light-text: #f7fbff;
  --light-muted: #b9c5d6;
  --danger: #b42318;
  --ok: #14714b;
  --shadow: 0 26px 70px rgba(18, 28, 48, 0.14);
  --shadow-soft: 0 18px 45px rgba(18, 28, 48, 0.08);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 124, 165, 0.26), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(183, 154, 99, 0.12), transparent 22rem),
    linear-gradient(180deg, #080d16 0%, #101725 38%, #eef3f9 38.1%, #f5f8fc 100%);
  font-family: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 21, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 48%, transparent 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(8, 13, 22, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 62px;
  margin: 0 auto;
  padding: 9px 10px 9px 18px;
  background: rgba(11, 18, 30, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--ink);
  border-radius: 50%;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 750;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.primary-nav a:active,
.button:active {
  transform: translateY(1px) scale(0.99);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  background: #101522;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.language-switch a,
.language-switch span {
  min-width: 36px;
  padding: 7px 9px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
}

.language-switch span {
  color: var(--dark);
  background: #ffffff;
}

.language-switch.language-menu {
  position: relative;
  z-index: 20;
}

.language-switch.language-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
}

.language-current {
  min-width: 42px;
  padding: 7px 10px;
  color: #ffffff;
  background: #2fb7bf;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(44px, 1fr));
  gap: 4px;
  min-width: 118px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.12);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu:hover .language-options,
.language-menu:focus-within .language-options,
.language-menu.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options a,
.language-options span {
  min-width: 0;
  padding: 8px 9px;
  color: #243044;
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.language-options a:hover,
.language-options span {
  color: #ffffff;
  background: #2fb7bf;
}

main {
  overflow: hidden;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.52);
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(22, 42, 120, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

main > .section:first-child:not(.hero) {
  position: relative;
  padding-top: 132px;
  color: var(--light-text);
  background:
    radial-gradient(circle at 80% 18%, rgba(45, 124, 165, 0.24), transparent 28rem),
    linear-gradient(135deg, #080d16, #101725 58%, #162a78);
  border-radius: 0 0 34px 34px;
  box-shadow: 0 36px 95px rgba(8, 13, 22, 0.24);
}

main > .section:first-child:not(.hero)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  border-radius: 0 0 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.76) 56%, transparent 100%);
}

main > .section:first-child:not(.hero) .shell {
  position: relative;
  z-index: 1;
}

main > .section:first-child:not(.hero) .lead {
  color: var(--light-muted);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 20px);
  display: grid;
  align-items: center;
  padding: 76px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 16%, rgba(45, 124, 165, 0.34), transparent 26rem),
    linear-gradient(135deg, rgba(8, 13, 22, 0.98), rgba(13, 19, 31, 0.98) 54%, rgba(15, 28, 64, 0.94));
  border-radius: 0 0 34px 34px;
  box-shadow: 0 40px 110px rgba(8, 13, 22, 0.42);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  border-radius: 0 0 34px 34px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.84) 54%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  gap: 64px;
  align-items: center;
}

.hero h1,
.hero .lead {
  color: var(--light-text);
}

.hero .lead {
  color: var(--light-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 70ch;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 58px;
  align-items: start;
}

.intro-grid > * {
  min-width: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 680px;
}

.signal {
  padding: 15px;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.signal span {
  display: block;
  margin-bottom: 6px;
  color: #91c7df;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #24408d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(22, 42, 120, 0.24);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  box-shadow: 0 18px 42px rgba(22, 42, 120, 0.28);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero .button.secondary,
.cta .button.secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero .button.secondary:hover,
.cta .button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.visual-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #101522;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 13, 22, 0.18) 0%, transparent 28%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 44%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
  mix-blend-mode: soft-light;
}

.hero-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(330px, calc(100% - 48px));
  padding: 19px;
  color: var(--ink);
  color: #ffffff;
  background: rgba(8, 13, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 45px rgba(18, 28, 48, 0.14);
  backdrop-filter: blur(18px);
}

.hero-note strong {
  display: block;
  margin-bottom: 4px;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.feature-grid {
  align-items: stretch;
}

.feature-grid .service-card,
.feature-grid .topic-card {
  min-height: 260px;
}

.feature-grid .service-card.wide,
.feature-grid .topic-card.large {
  min-height: 320px;
}

.feature-grid .service-card h3,
.feature-grid .topic-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  max-width: 9em;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 46px;
  align-items: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 1fr;
  gap: 18px;
}

.service-card,
.topic-card,
.value-card,
.job-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before,
.topic-card::before,
.value-card::before,
.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(45, 124, 165, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.topic-card:hover,
.value-card:hover,
.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 124, 165, 0.26);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.topic-card:hover::before,
.value-card:hover::before,
.job-card:hover::before {
  opacity: 1;
}

.service-card.wide {
  grid-column: span 2;
}

.service-card.tall {
  min-height: 270px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--accent);
  background: rgba(22, 42, 120, 0.08);
  border: 1px solid rgba(22, 42, 120, 0.12);
  border-radius: 999px;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.service-card p,
.topic-card p,
.value-card p,
.job-card p,
.contact-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card h3,
.topic-card h3,
.value-card h3,
.job-card h3,
.contact-card h3 {
  position: relative;
}

.company-contact,
.footer-contact {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

.company-contact strong,
.footer-contact strong {
  color: var(--ink);
}

.company-contact span,
.footer-contact span,
.company-contact a,
.footer-contact a {
  overflow-wrap: anywhere;
}

.company-contact a {
  color: var(--accent);
  font-weight: 800;
}

.footer-contact {
  max-width: 520px;
  color: #aebbd0;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact strong,
.footer-contact a {
  color: #ffffff;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.topic-card {
  grid-column: span 2;
  min-height: 220px;
}

.topic-card.large {
  grid-column: span 3;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-item span {
  color: var(--accent);
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-weight: 900;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.media-block {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.media-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 42%);
}

.value-grid,
.job-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.job-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(239, 244, 250, 0.78) 100%);
}

.inline-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.inline-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.inline-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-radius: 50%;
}

.cta {
  margin: 0 20px 64px;
  color: var(--light-text);
  background:
    radial-gradient(circle at 84% 18%, rgba(45, 124, 165, 0.34), transparent 24rem),
    linear-gradient(135deg, #101522, #172033 58%, #162a78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(16, 21, 34, 0.24);
}

.cta .lead,
.cta p {
  color: var(--light-muted);
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 42, 120, 0.14);
  border-radius: 12px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(45, 124, 165, 0.6);
  box-shadow: 0 0 0 4px rgba(45, 124, 165, 0.12);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field small {
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
}

.form-status.error {
  color: var(--danger);
}

.form-status.ok {
  color: var(--ok);
}

.site-footer {
  padding: 48px 0;
  color: #cbd5e1;
  background: #101522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-grid img {
  width: 118px;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  filter: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: end;
}

.footer-links a:hover {
  color: #ffffff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .primary-nav.is-open {
    display: flex;
  }

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

  .hero-grid,
  .intro-grid,
  .split-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .visual-panel {
    min-height: 430px;
  }

  .service-grid,
  .topic-grid,
  .value-grid,
  .job-grid,
  .contact-grid,
  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-card,
  .service-card.wide,
  .topic-card,
  .topic-card.large {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell,
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    gap: 10px;
    padding-left: 14px;
    border-radius: 22px;
  }

  .brand img {
    width: 106px;
  }

  .brand span {
    display: none;
  }

  .language-switch a,
  .language-switch span {
    min-width: 33px;
    padding: 6px 8px;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 40px 0 58px;
  }

  .hero::before,
  .hero::after {
    inset: 16px 10px 24px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .lead {
    font-size: 17px;
  }

  .visual-panel {
    min-height: 330px;
    transform: none;
  }

  .visual-panel img {
    transform: translate(-5%, -4%);
  }

  .hero-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .service-grid,
  .topic-grid,
  .value-grid,
  .job-grid,
  .contact-grid,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .topic-card,
  .value-card,
  .job-card,
  .contact-card {
    padding: 22px;
    border-radius: 18px;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta {
    margin: 0 10px 44px;
    border-radius: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}

/* v4 direction: closer to the bright automotive reference site. */
body {
  color: #182234;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fafc 46%, #eef4f8 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(45, 124, 165, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 124, 165, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, transparent 100%);
}

.site-header {
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 28, 48, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1220px, calc(100% - 56px));
  min-height: 104px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  width: 150px;
  filter: none;
}

.brand span {
  display: none;
}

.primary-nav {
  gap: 20px;
}

.primary-nav > a,
.nav-item > a {
  padding: 8px 0;
  color: #101522;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.09em;
  border-radius: 0;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"],
.nav-item:hover > a,
.nav-item:focus-within > a,
.nav-item:has(a[aria-current="page"]) > a {
  color: #2fb7bf;
  background: transparent;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 18px;
  z-index: 4;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 5;
  min-width: 170px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.12);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu.engineering-menu {
  min-width: 245px;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  color: #101522;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-radius: 6px;
}

.nav-submenu a:hover,
.nav-submenu a[aria-current="page"] {
  color: #2fb7bf;
  background: #eef9fa;
}

.language-switch {
  background: #f1f1f1;
  border: 0;
}

.language-switch a,
.language-switch span {
  color: #243044;
}

.language-switch span {
  color: #ffffff;
  background: #2fb7bf;
}

.language-switch.language-menu .language-options a,
.language-switch.language-menu .language-options span {
  min-width: 0;
  padding: 8px 9px;
  color: #243044;
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.language-switch.language-menu .language-options a:hover,
.language-switch.language-menu .language-options span {
  color: #ffffff;
  background: #2fb7bf;
}

.hero {
  min-height: 660px;
  padding: 0;
  background: #dff6f7;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 660px;
}

.hero-grid > .reveal:first-child {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 56px));
  margin-left: clamp(36px, 7vw, 132px);
  padding: 34px 38px;
  margin-top: 104px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(31, 74, 91, 0.14);
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: #2d374e;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 18px;
}

.hero .lead {
  max-width: 56ch;
  color: #263243;
  font-size: 18px;
}

.hero .eyebrow {
  color: #2fb7bf;
}

.visual-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
}

.visual-panel::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.76) 28%, rgba(255, 255, 255, 0.16) 54%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 52%);
  mix-blend-mode: normal;
}

.hero-note,
.signal-strip {
  display: none;
}

.button {
  min-height: 54px;
  padding: 14px 28px;
  color: #2d374e;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(31, 74, 91, 0.12);
}

.button:hover {
  color: #ffffff;
  background: #2fb7bf;
}

.button.secondary,
.hero .button.secondary,
.cta .button.secondary {
  color: #2d374e;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 183, 191, 0.26);
}

.section {
  padding: 94px 0;
  background: #ffffff;
}

.section.alt {
  background: #f6fafc;
  border-top: 1px solid rgba(18, 28, 48, 0.06);
  border-bottom: 1px solid rgba(18, 28, 48, 0.06);
  box-shadow: none;
}

main > .section:first-child:not(.hero) {
  color: #182234;
  background: linear-gradient(180deg, #ffffff 0%, #eef9fa 100%);
  border-radius: 0;
  box-shadow: none;
}

main > .section:first-child:not(.hero)::after {
  background-image:
    linear-gradient(rgba(47, 183, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 183, 191, 0.08) 1px, transparent 1px);
}

main > .section:first-child:not(.hero) .lead {
  color: #566274;
}

.company-hero {
  min-height: 820px;
  overflow: hidden;
}

.company-hero .shell {
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(0, 0.66fr) minmax(440px, 0.74fr);
  gap: clamp(84px, 9vw, 150px);
  align-items: start;
  padding-right: min(13vw, 190px);
}

.company-hero h1 {
  max-width: 7.2em;
}

.company-hero .shell > .reveal:last-child {
  padding-top: 10px;
  max-width: 620px;
  justify-self: end;
}

.company-hero .button-row {
  margin-top: 30px;
}

.company-hero-visual {
  position: absolute;
  right: max(24px, calc((100vw - 1840px) / 2 + 20px));
  bottom: 86px;
  z-index: 1;
  width: min(42vw, 690px);
  min-width: 500px;
  aspect-ratio: 1.54;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(47, 183, 191, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(18, 28, 48, 0.12);
}

.company-hero-visual::before,
.company-hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.company-hero-visual::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(238, 249, 250, 0.82) 0%, rgba(238, 249, 250, 0.28) 26%, transparent 54%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.78) 100%);
}

.company-hero-visual::after {
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(47, 183, 191, 0.2);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.company-hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 47% 50%;
  transform: scale(1.08);
  filter: saturate(0.95) contrast(1.02);
}

.principles-section {
  position: relative;
}

.principles-intro {
  align-items: center;
}

.principle-summary {
  display: grid;
  gap: 22px;
}

.principle-summary .lead {
  margin-bottom: 0;
}

.principle-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 640px);
  padding: 15px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 183, 191, 0.12), rgba(255, 255, 255, 0.9) 48%),
    linear-gradient(rgba(47, 183, 191, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 183, 191, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 34px 34px, 34px 34px;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.06);
}

.principle-flow::before {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 183, 191, 0.58), transparent);
}

.principle-flow div {
  position: relative;
  z-index: 1;
  min-height: 82px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(47, 183, 191, 0.16);
  border-radius: 6px;
}

.principle-flow span {
  display: block;
  margin-bottom: 8px;
  color: #2fb7bf;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.principle-flow strong {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 1.25;
}

.home-topics-section .intro-grid {
  align-items: start;
}

.topic-summary {
  display: grid;
  gap: 22px;
}

.topic-summary .lead {
  margin-bottom: 0;
}

.home-topic-visual {
  position: relative;
  width: min(100%, 700px);
  aspect-ratio: 2.05;
  overflow: hidden;
  background: #eef9fa;
  border: 1px solid rgba(47, 183, 191, 0.16);
  border-radius: 6px;
  box-shadow: 0 22px 52px rgba(18, 28, 48, 0.08);
}

.home-topic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 250, 252, 0.88) 0%, rgba(246, 250, 252, 0.2) 34%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.45) 100%);
}

.home-topic-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 52%;
  transform: scale(1.03);
}

.sourcing-hero {
  min-height: 720px;
}

.sourcing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.sourcing-hero h1 {
  max-width: 7.15em;
  font-size: clamp(54px, 5.8vw, 84px);
  line-height: 1;
}

.sourcing-hero-panel {
  min-width: 0;
}

.sourcing-hero-panel .lead {
  max-width: 62ch;
}

.sourcing-hero-visual {
  position: relative;
  min-height: 330px;
  margin-top: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 249, 250, 0.94)),
    linear-gradient(90deg, rgba(47, 183, 191, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 183, 191, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(18, 28, 48, 0.1);
}

.sourcing-device-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(47, 183, 191, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(18, 28, 48, 0.12);
}

.sourcing-device-card.primary {
  left: 26px;
  bottom: 26px;
  width: 58%;
}

.sourcing-device-card.secondary {
  right: 24px;
  top: 24px;
  width: 38%;
}

.sourcing-device-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.sourcing-device-card.secondary img {
  height: 150px;
}

.sourcing-device-card figcaption {
  padding: 10px 14px 12px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.sourcing-flow-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  width: 230px;
  padding: 16px;
  background: rgba(17, 24, 39, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.18);
}

.sourcing-flow-card span {
  color: #2fb7bf;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.sourcing-flow-card strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
}

.sourcing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.sourcing-proof div,
.sourcing-category,
.featured-product {
  background: #ffffff;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.06);
}

.sourcing-proof div {
  min-height: 106px;
  padding: 18px;
}

.sourcing-proof span,
.sourcing-category span {
  display: block;
  margin-bottom: 8px;
  color: #2fb7bf;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sourcing-proof strong {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.28;
}

.sourcing-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.sourcing-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 58px;
  align-items: start;
}

.sourcing-section-head > * {
  min-width: 0;
}

.sourcing-portfolio-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 250, 0.98)),
    linear-gradient(90deg, rgba(47, 183, 191, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 183, 191, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border: 1px solid rgba(47, 183, 191, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 28, 48, 0.07);
}

.sourcing-portfolio-visual::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 183, 191, 0.4), transparent);
}

.sourcing-portfolio-visual div {
  position: relative;
  z-index: 1;
  min-height: 126px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(18, 28, 48, 0.05);
}

.sourcing-portfolio-visual span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #2fb7bf;
  background: #eef9fa;
  border: 1px solid rgba(47, 183, 191, 0.18);
  border-radius: 50%;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.sourcing-portfolio-visual strong {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.25;
}

.sourcing-portfolio-visual small {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
  line-height: 1.45;
}

.sourcing-category {
  min-height: 245px;
  padding: 26px;
}

.sourcing-category h3,
.featured-product h3 {
  color: #111827;
}

.sourcing-category p,
.featured-product p {
  color: #667085;
}

.sourcing-category strong {
  display: inline-flex;
  margin-top: 18px;
  color: #111827;
  font-size: 14px;
}

.featured-sourcing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

.adas-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 220px minmax(0, 0.9fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 20px;
  color: #111827;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 250, 0.98)),
    linear-gradient(90deg, rgba(47, 183, 191, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 183, 191, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border: 1px solid rgba(47, 183, 191, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 28, 48, 0.07);
}

.adas-showcase span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #2fb7bf;
  background: #eef9fa;
  border: 1px solid rgba(47, 183, 191, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adas-showcase h3 {
  max-width: 18em;
  margin-bottom: 0;
  color: #111827;
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.08;
}

.adas-showcase figure {
  display: grid;
  place-items: center;
  height: 160px;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(47, 183, 191, 0.14);
  border-radius: 6px;
}

.adas-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.adas-showcase p {
  margin-bottom: 0;
  color: #667085;
  font-size: 16px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
}

.featured-product-media {
  min-height: 310px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #eef9fa 100%);
  border: 1px solid rgba(47, 183, 191, 0.14);
  border-radius: 6px;
}

.featured-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.featured-product dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.featured-product dl div {
  padding: 13px;
  background: #f6fafc;
  border: 1px solid rgba(18, 28, 48, 0.06);
  border-radius: 6px;
}

.featured-product dt {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.featured-product dd {
  margin: 3px 0 0;
  color: #111827;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.owned-products-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 56px;
  align-items: center;
}

.owned-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eef9fa 100%),
    linear-gradient(90deg, rgba(47, 183, 191, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(47, 183, 191, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(18, 28, 48, 0.08);
}

.owned-product-grid div {
  min-height: 282px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.05);
}

.owned-product-grid figure {
  display: grid;
  place-items: center;
  height: 190px;
  margin: 0 0 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(47, 183, 191, 0.13), transparent 9rem),
    linear-gradient(180deg, #ffffff 0%, #f2fbfb 100%);
  border: 1px solid rgba(47, 183, 191, 0.14);
  border-radius: 6px;
}

.owned-product-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  filter: hue-rotate(7deg) saturate(0.92) contrast(1.02);
}

.owned-product-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #2fb7bf;
  font-family: "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.owned-product-grid strong {
  display: block;
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
}

.eyebrow {
  color: #2fb7bf;
}

h1,
h2 {
  color: #111827;
  font-weight: 650;
}

.service-card,
.topic-card,
.value-card,
.job-card,
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.06);
  backdrop-filter: none;
}

.feature-grid .service-card,
.feature-grid .topic-card {
  min-height: 300px;
}

.feature-grid .service-card h3,
.feature-grid .topic-card h3 {
  color: #111827;
  font-size: clamp(24px, 2.5vw, 34px);
}

.card-kicker {
  color: #ffffff;
  background: #2fb7bf;
  border: 0;
}

.media-block {
  background: #eef9fa;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(18, 28, 48, 0.06);
}

.inline-list li {
  background: #ffffff;
  border: 1px solid rgba(18, 28, 48, 0.08);
  border-radius: 6px;
}

.inline-list li::before {
  background: #2fb7bf;
}

.cta {
  margin: 0;
  color: #ffffff;
  background:
    linear-gradient(rgba(17, 24, 39, 0.76), rgba(17, 24, 39, 0.78)),
    url("hero-os-light.png") center/cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cta h2,
.cta .eyebrow {
  color: #ffffff;
}

.site-footer {
  background: #101522;
}

@media (max-width: 1060px) {
  .nav-shell {
    width: min(100% - 32px, 1220px);
    min-height: 82px;
  }

  .primary-nav {
    top: 92px;
    background: rgba(255, 255, 255, 0.98);
  }

  .primary-nav a {
    color: #101522;
  }

  .nav-item {
    display: block;
  }

  .nav-item::after {
    display: none;
  }

  .nav-item > a {
    display: block;
    padding: 13px 14px;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 0 0 6px 14px;
    padding: 4px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: #f6fafc;
    box-shadow: none;
  }

  .nav-item:hover .nav-submenu,
  .nav-item:focus-within .nav-submenu {
    transform: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .hero-grid,
  .intro-grid,
  .sourcing-hero-grid,
  .sourcing-section-head,
  .split-band {
    grid-template-columns: 1fr;
  }

  .company-hero {
    min-height: auto;
  }

  .company-hero .shell {
    padding-right: 0;
  }

  .company-hero-visual {
    display: none;
  }

  .sourcing-proof,
  .sourcing-portfolio-visual,
  .sourcing-category-grid,
  .adas-showcase,
  .featured-product,
  .owned-products-panel,
  .owned-product-grid {
    grid-template-columns: 1fr;
  }

  .sourcing-portfolio-visual::before {
    display: none;
  }

  .sourcing-hero {
    min-height: auto;
  }

  .sourcing-hero h1 {
    max-width: 100%;
  }

  .sourcing-device-card.primary,
  .sourcing-device-card.secondary,
  .sourcing-flow-card {
    position: relative;
    inset: auto;
    width: auto;
  }

  .sourcing-hero-visual {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .sourcing-flow-card {
    width: auto;
  }

  .featured-product-media {
    min-height: 260px;
  }

  .hero-grid > .reveal:first-child {
    margin-left: 24px;
    margin-top: 80px;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 72px;
    padding: 10px 0;
  }

  .brand img {
    width: 106px;
  }

  .hero,
  .hero-grid {
    min-height: 650px;
  }

  .hero-grid > .reveal:first-child {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-top: 28px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(31, 74, 91, 0.14);
    backdrop-filter: blur(12px);
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 48px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero .lead {
    color: #293547;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .button-row {
    gap: 10px;
    margin-top: 22px;
  }

  .hero .button {
    min-height: 48px;
    padding: 12px 18px;
  }

  .visual-panel img {
    object-position: 58% center;
  }

  .visual-panel::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.62) 46%, transparent 100%);
  }

  main > .section:first-child:not(.hero) h1 {
    font-size: clamp(35px, 10.2vw, 44px);
    line-height: 1.06;
    width: min(100%, calc(100vw - 56px));
    max-width: 9.3em;
    overflow-wrap: anywhere;
  }

  .sourcing-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.4vw, 40px);
  }

  .sourcing-hero .lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .company-hero .lead {
    width: min(100%, calc(100vw - 56px));
    max-width: 20rem;
  }

  .sourcing-proof {
    grid-template-columns: 1fr;
  }

  .featured-product {
    padding: 16px;
  }

  .featured-product dl {
    grid-template-columns: 1fr;
  }
}
