:root {
  --blue: #0047ff;
  --blue-dark: #0034be;
  --ink: #111318;
  --text: #292c33;
  --muted: #68707c;
  --line: #d9dce2;
  --paper: #f7f4ef;
  --white: #fff;
  --footer: #24282e;
  --max: 1320px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

html {
  max-width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

body {
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 clamp(34px, 6vw, 92px);
  border-bottom: 1px solid #d5d7dc;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(0deg, #f4f4f2 0, #f4f4f2 1px, #ececea 2px, #f9f9f8 4px);
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  width: 186px;
  height: 80px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  font-size: 17px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 42px 0 34px;
  text-decoration: none;
}

.site-nav a.active {
  color: var(--blue-dark);
  font-weight: 700;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 92px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle img {
  width: 48px;
  height: 48px;
}

.hero {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(420px, 48%) 1fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 38px 0 32px clamp(36px, 7vw, 94px);
  max-width: 540px;
}

.hero-image,
.page-hero-image {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 19%, rgba(255, 255, 255, 0.02) 48%),
    url("/assets/technical-hero.png") center / cover no-repeat;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 7px 22px 8px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(52px, 4.45vw, 66px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 0 28px;
  background: var(--blue);
}

.rule.center {
  margin: -7px auto 37px;
}

.hero-copy p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.45;
}

.hero-copy .strong {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.location {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  color: var(--muted);
}

.location .icon {
  width: 32px;
  height: 32px;
}

.location strong {
  color: var(--blue-dark);
}

.activity-section {
  padding: 28px clamp(34px, 6vw, 92px) 14px;
}

.activity-section > h2 {
  margin-bottom: 18px;
  color: var(--ink);
  text-align: center;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 800;
}

.activity-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto;
}

.activity-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  min-height: 145px;
  min-width: 0;
  padding: 0 42px 10px;
  border-right: 1px solid var(--line);
}

.activity-card > div {
  min-width: 0;
}

.activity-card:first-child {
  padding-left: 0;
}

.activity-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.activity-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.08;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.activity-card p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.archive-link .icon {
  width: 20px;
  height: 20px;
}

.handoff {
  max-width: calc(var(--max) + 20px);
  display: grid;
  grid-template-columns: 340px 1fr 300px;
  align-items: center;
  gap: 36px;
  margin: 0 auto 26px;
  padding: 14px 30px;
  border: 1px solid rgba(0, 71, 255, 0.28);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(241, 246, 255, 0.78), rgba(255, 255, 255, 0.96));
}

.handoff-logo {
  min-width: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(0, 71, 255, 0.25);
}

.handoff-logo img {
  width: auto;
  max-width: 310px;
  max-height: 88px;
  display: block;
}

.handoff-copy {
  padding-right: 30px;
  border-right: 1px solid rgba(0, 71, 255, 0.25);
}

.handoff h2 {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.handoff h2::after,
.page-hero h2::after,
.content-row h2::after,
.reference-group h2::after {
  content: "";
  display: block;
  width: 39px;
  height: 3px;
  margin-top: 9px;
  background: var(--blue);
}

.handoff p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.handoff-link {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 18px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.handoff-link .icon {
  grid-row: span 2;
}

.handoff-link small {
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
}

.archive-strip {
  display: grid;
  grid-template-columns: 98px 1px minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: 32px;
  min-height: 106px;
  padding: 18px clamp(34px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(250, 248, 244, 0.92), rgba(250, 248, 244, 0.92)),
    repeating-linear-gradient(45deg, #ede5da 0, #ede5da 1px, #faf8f4 5px, #faf8f4 10px);
}

.archive-strip > div:nth-child(2) {
  width: 1px;
  height: 70px;
  background: #766a5b;
}

.archive-strip .icon {
  width: 72px;
  height: 72px;
  justify-self: end;
  filter: sepia(1) saturate(0.3) hue-rotate(350deg);
}

.archive-strip h2 {
  margin-bottom: 9px;
  color: #5b4b39;
  font-size: 28px;
  line-height: 1.1;
}

.archive-strip p {
  margin-bottom: 0;
  color: #625a52;
  font-size: 16px;
  line-height: 1.35;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(430px, 52%) 1fr;
  min-height: 305px;
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.page-hero > div:first-child {
  padding: 54px 0 42px clamp(36px, 7vw, 94px);
}

.page-hero h1 {
  font-size: clamp(54px, 4.8vw, 70px);
}

.page-hero h2 {
  color: var(--blue-dark);
  font-size: 26px;
}

.page-hero p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
}

.content-list,
.reference-group {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(34px, 6vw, 92px);
}

.content-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.content-row h2,
.reference-group h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.content-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 17px;
}

.content-row p,
.reference-rows p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.content-row-content,
.content-row-content > div {
  min-width: 0;
}

.content-row-content-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: start;
  gap: 28px;
}

.profile-photo {
  margin: 0;
}

.profile-photo img {
  display: block;
  width: 190px;
  max-width: 100%;
  aspect-ratio: 190 / 126;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.content-row:first-child .profile-photo img {
  width: 180px;
  aspect-ratio: 180 / 219;
}

.content-row address {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--text);
  font-style: normal;
  font-size: 17px;
  line-height: 1.55;
}

.content-row p + p,
.content-row address + p {
  margin-top: 12px;
}

.content-row a {
  color: var(--blue-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.content-row ul {
  max-width: 760px;
  margin: 0 0 16px;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.5;
}

.content-row li + li {
  margin-top: 6px;
}

.legacy-imprint {
  max-width: 920px;
  min-width: 0;
  margin: 0 auto;
  padding: 28px 0 18px;
}

.legacy-imprint h1 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.12;
}

.legacy-imprint h2 {
  margin: 30px 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.legacy-imprint p {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.legacy-imprint table {
  max-width: 100%;
  border-collapse: collapse;
}

.legacy-imprint td {
  padding: 0 10px 2px 0;
  vertical-align: top;
}

.legacy-imprint a {
  color: var(--blue-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.inline-email-image {
  display: inline-block;
  width: 142px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.reference-group header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.reference-rows {
  border-top: 1px solid var(--line);
}

.reference-rows article {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  gap: 38px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reference-rows h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.reference-rows p {
  margin: 0;
}

.handoff-compact {
  margin-top: 8px;
  margin-bottom: 36px;
}

.site-footer {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 22px clamp(34px, 6vw, 92px);
  color: #f4f5f8;
  background: radial-gradient(circle at 50% 0, #3b4148, var(--footer) 55%);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-brand strong {
  color: var(--blue);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
  color: #ccd0d6;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer a {
  color: #f4f5f8;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 127px;
    padding: 18px 36px 18px 22px;
  }

  .brand img {
    width: 205px;
    height: auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    z-index: 5;
    top: 126px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 36px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav[data-open="true"] {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav a.active::after {
    left: 0;
    bottom: 7px;
    width: 52px;
    transform: none;
  }

  .hero {
    display: block;
    min-height: 0;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 43%, rgba(255, 255, 255, 0.08) 100%),
      url("/assets/technical-hero.png") center top / cover no-repeat;
  }

  .hero-image {
    display: none;
  }

  .hero-copy {
    min-height: 586px;
    padding: 48px 36px 34px;
  }

  .eyebrow {
    margin-bottom: 25px;
    padding: 8px 16px;
    font-size: 14px;
  }

  h1 {
    font-size: 50px;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 20px;
    line-height: 1.42;
  }

  .location {
    margin-top: 25px;
  }

  .activity-section {
    padding: 28px 36px 0;
  }

  .activity-section > h2 {
    text-align: left;
    font-size: 34px;
  }

  .rule.center {
    margin: -6px 0 25px;
  }

  .activity-grid {
    display: block;
  }

  .activity-card {
    grid-template-columns: 78px 1fr 18px;
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .activity-card::after {
    content: "›";
    align-self: center;
    color: var(--blue);
    font-size: 55px;
    font-weight: 300;
  }

  .activity-card h3 {
    font-size: 25px;
  }

  .activity-card p {
    font-size: 18px;
  }

  .archive-link {
    display: none;
  }

  .handoff {
    display: block;
    margin: 0 36px 0;
    padding: 23px 31px 28px;
    border-radius: 7px;
  }

  .handoff-logo,
  .handoff-copy {
    padding: 0;
    border-right: 0;
  }

  .handoff-logo img {
    width: 280px;
    max-width: 100%;
    max-height: none;
    margin-bottom: 22px;
  }

  .handoff h2 {
    font-size: 22px;
  }

  .handoff p {
    font-size: 18px;
    line-height: 1.45;
  }

  .handoff-link {
    grid-template-columns: 40px 1fr;
    margin-top: 24px;
  }

  .handoff-link small {
    display: none;
  }

  .archive-strip {
    grid-template-columns: 100px 1px 1fr;
    gap: 22px;
    padding: 28px 36px;
  }

  .archive-strip h2 {
    font-size: 26px;
  }

  .archive-strip p {
    font-size: 16px;
  }

  .page-hero {
    display: block;
    min-height: 0;
    background:
      linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98)),
      url("/assets/technical-hero.png") center / cover no-repeat;
  }

  .page-hero > div:first-child {
    padding: 50px 36px 42px;
  }

  .page-hero-image {
    display: none;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .page-hero p,
  .content-row p,
  .reference-rows p {
    font-size: 18px;
  }

  .content-list,
  .reference-group {
    padding: 22px 36px;
  }

  .content-row,
  .reference-rows article {
    display: block;
  }

  .content-row-content-with-media {
    display: block;
  }

  .profile-photo {
    margin-top: 18px;
  }

  .profile-photo img,
  .content-row:first-child .profile-photo img {
    width: min(220px, 100%);
  }

  .content-row .icon,
  .reference-group .icon {
    margin-bottom: 14px;
  }

  .legacy-imprint {
    padding-top: 18px;
  }

  .legacy-imprint h1 {
    font-size: 32px;
  }

  .legacy-imprint h2 {
    font-size: 22px;
  }

  .legacy-imprint p {
    font-size: 18px;
  }

  .reference-rows h3 {
    margin-bottom: 7px;
  }

  .site-footer {
    display: block;
    padding: 22px 36px;
  }

  .site-footer p {
    margin: 8px 0 18px;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-right: 24px;
  }

  .brand img {
    width: 178px;
  }

  .hero-copy,
  .activity-section,
  .page-hero > div:first-child,
  .content-list,
  .reference-group,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-copy {
    min-height: 560px;
  }

  h1 {
    font-size: 44px;
  }

  .page-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .activity-card {
    grid-template-columns: 64px 1fr 16px;
    gap: 16px;
  }

  .handoff {
    margin-left: 24px;
    margin-right: 24px;
    padding: 22px;
  }

  .handoff-logo img {
    width: 230px;
    max-width: 100%;
  }

  .archive-strip {
    grid-template-columns: 76px 1px 1fr;
    gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
