.subpage-body {
  background: #061426;
}

.subpage-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, #061426 0%, #07172a 38%, #061426 66%, #05111f 100%);
}

.subpage-content {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
  margin: 0 auto;
}

.about-hero {
  position: relative;
  min-height: clamp(470px, 54svh, 570px);
  overflow: hidden;
  isolation: isolate;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -82px;
  z-index: 2;
  height: clamp(250px, 24svh, 340px);
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0) 0%, rgba(6, 20, 38, 0.26) 28%, rgba(6, 20, 38, 0.92) 72%, rgba(6, 20, 38, 0) 100%);
  pointer-events: none;
}

.about-hero-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 64% 42%, rgba(22, 48, 82, 0.36) 0%, rgba(6, 20, 38, 0) 47%),
    radial-gradient(ellipse at 44% 70%, rgba(194, 37, 48, 0.04) 0%, rgba(194, 37, 48, 0) 37%),
    radial-gradient(ellipse at 36% 24%, rgba(185, 211, 239, 0.035) 0%, rgba(185, 211, 239, 0) 34%),
    linear-gradient(135deg, rgba(4, 16, 30, 0.58) 0%, rgba(6, 20, 38, 0.28) 54%, rgba(6, 20, 38, 0) 100%);
}

.about-ribbons {
  position: absolute;
  right: max(-24px, 2.1vw);
  bottom: -166px;
  width: min(54vw, 760px);
  height: min(78svh, 690px);
  overflow: visible;
  opacity: 1;
  shape-rendering: geometricPrecision;
  transform: translate3d(0, 0, -40px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 58%, rgba(0, 0, 0, 0.42) 76%, transparent 92%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 58%, rgba(0, 0, 0, 0.42) 76%, transparent 92%);
}

.about-band-group {
  transform-box: fill-box;
  transform-origin: 58% 74%;
  will-change: transform;
  animation: about-band-breathe 14s ease-in-out 5.8s infinite;
}

.about-band {
  --line-opacity: 1;
  --draw-duration: 4.8s;
  --draw-delay: 0s;
  --drift-duration: 9.5s;
  --entry-scale: 0.98;
  --entry-y: 18px;
  --drift-x: 12px;
  --drift-y: -8px;
  --drift-rotate: -0.035deg;
  fill: none;
  stroke-width: clamp(17px, 1.42vw, 25px);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-opacity: var(--line-opacity);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.2));
  transform-box: fill-box;
  transform-origin: 58% 72%;
  will-change: transform;
  animation:
    about-band-entry var(--draw-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--draw-delay) forwards,
    about-band-draw var(--draw-duration) cubic-bezier(0.72, 0, 0.2, 1) var(--draw-delay) forwards,
    about-band-drift var(--drift-duration) ease-in-out 5.35s infinite;
}

.about-band-white {
  --line-opacity: 0.94;
  --drift-x: 18px;
  --drift-y: -8px;
  --drift-rotate: -0.045deg;
  --entry-scale: 0.97;
  --entry-y: 18px;
  --draw-duration: 4.7s;
  --drift-duration: 12.8s;
  stroke: url(#about-band-white-main);
}

.about-band-red {
  --line-opacity: 0.9;
  --drift-x: 20px;
  --drift-y: -7px;
  --drift-rotate: -0.04deg;
  --entry-scale: 0.972;
  --entry-y: 16px;
  --draw-duration: 5s;
  --draw-delay: 0.08s;
  --drift-duration: 13.4s;
  stroke: url(#about-band-brand-main);
}

.about-band-soft {
  --line-opacity: 0.68;
  --drift-x: 16px;
  --drift-y: -6px;
  --drift-rotate: -0.034deg;
  --entry-scale: 0.98;
  --entry-y: 14px;
  --draw-duration: 5.25s;
  --draw-delay: 0.16s;
  --drift-duration: 14.2s;
  stroke: url(#about-band-brand-soft);
}

.about-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  min-height: clamp(470px, 54svh, 570px);
  padding-top: clamp(114px, 10svh, 140px);
  padding-bottom: clamp(70px, 6.2svh, 92px);
}

.about-hero h1,
.section-lead h2 {
  max-width: 66rem;
  margin: 0 0 2.1rem;
  color: rgba(238, 244, 250, 0.96);
  font-family: var(--font-display);
  font-feature-settings: "ss04" 1, "liga" 1;
  font-size: clamp(4.2rem, 3vw, 5.15rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-hero .section-eyebrow,
.section-lead .section-eyebrow {
  display: block;
  margin: 0 0 1.4rem;
  color: var(--type-muted);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.about-hero h1 span,
.section-lead h2 span {
  display: block;
}

.about-hero .section-eyebrow {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-copy-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.about-hero h1 .accent {
  display: inline;
  color: var(--ember);
  font: inherit;
  font-family: inherit;
  font-feature-settings: "ss04" 1, "liga" 1;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.about-hero h1 .headline-comma {
  display: inline;
  color: var(--type-strong);
}

.about-hero .headline-line {
  padding: 0 0 0.2em;
  margin-bottom: -0.18em;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  overflow: visible;
  clip-path: none;
  animation: headline-line-in 0.86s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
}

.about-hero .headline-line:nth-child(1) {
  animation-delay: 0.18s;
}

.about-hero .headline-line:nth-child(2) {
  animation-delay: 0.34s;
}

.about-hero .headline-line:nth-child(3) {
  animation-delay: 0.5s;
}

.about-hero-subtitle {
  max-width: 56rem;
  margin: 0;
  color: var(--type-main);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 2.48rem;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: hero-copy-in 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards;
}

.about-principles,
.about-section,
.jobs-section {
  position: relative;
  z-index: 4;
  background: transparent;
}

.about-principles {
  position: relative;
  margin-top: clamp(-16px, -0.9vw, -6px);
  padding: clamp(18px, 1.7vw, 26px) 0 clamp(44px, 4vw, 68px);
  overflow: visible;
}

.about-principles::before {
  content: "";
  position: absolute;
  inset: clamp(-92px, -6vw, -54px) 0 clamp(-24px, -1.8vw, -10px);
  z-index: 0;
  background:
    radial-gradient(ellipse 72% 48% at 54% 30%, rgba(35, 76, 124, 0.1), rgba(6, 20, 38, 0.04) 56%, rgba(6, 20, 38, 0) 84%),
    radial-gradient(ellipse 40% 26% at 18% 56%, rgba(116, 24, 32, 0.022), rgba(116, 24, 32, 0.006) 54%, rgba(6, 20, 38, 0) 82%),
    linear-gradient(180deg, rgba(6, 20, 38, 0) 0%, rgba(8, 24, 43, 0.15) 28%, rgba(7, 21, 39, 0.22) 56%, rgba(6, 20, 38, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 40%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, #000 40%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  pointer-events: none;
}

.about-principles-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  z-index: 1;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
  gap: clamp(18px, 2.3vw, 34px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(18px, 1.7vw, 24px) 0 clamp(8px, 0.8vw, 12px);
}

.about-principle {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 10px;
  padding: 0 clamp(28px, 2.2vw, 36px);
}

.about-principle + .about-principle {
  border-left: 0;
}

.about-principle + .about-principle::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: calc((clamp(18px, 2.3vw, 34px) * -0.5) - 1px);
  width: 1px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.04) 46%, rgba(248, 251, 255, 0));
}

.about-principle strong {
  color: rgba(238, 244, 250, 0.84);
  font-size: clamp(1.34rem, 0.86vw, 1.54rem);
  font-weight: 600;
  line-height: 1.18;
}

.about-principle span {
  max-width: 27ch;
  color: rgba(226, 236, 247, 0.58);
  font-size: clamp(1.16rem, 0.72vw, 1.3rem);
  font-weight: 450;
  line-height: 1.42;
}

.about-principle:first-child {
  padding-left: clamp(28px, 2.2vw, 36px);
}

.about-principle:last-child {
  padding-right: clamp(28px, 2.2vw, 36px);
}

.about-section {
  overflow: visible;
  isolation: isolate;
  padding: clamp(58px, 4.4vw, 86px) 0 clamp(104px, 8vw, 142px);
}

.about-section::before {
  content: none;
}

.jobs-section::before {
  content: "";
  position: absolute;
  inset: clamp(-112px, -8vw, -72px) 0 clamp(-158px, -10vw, -104px);
  z-index: -1;
  background:
    radial-gradient(ellipse 74% 52% at 54% 34%, rgba(35, 76, 124, 0.12), rgba(6, 20, 38, 0.04) 56%, rgba(6, 20, 38, 0) 84%),
    radial-gradient(ellipse 42% 28% at 18% 58%, rgba(116, 24, 32, 0.03), rgba(116, 24, 32, 0.008) 54%, rgba(6, 20, 38, 0) 82%),
    linear-gradient(180deg, rgba(6, 20, 38, 0) 0%, rgba(8, 24, 43, 0.2) 26%, rgba(7, 21, 39, 0.28) 54%, rgba(6, 20, 38, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 16%, #000 40%, rgba(0, 0, 0, 0.8) 74%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 16%, #000 40%, rgba(0, 0, 0, 0.8) 74%, transparent 100%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 840px);
  gap: clamp(40px, 3.8vw, 68px);
  align-items: start;
}

.section-lead {
  display: grid;
  gap: 0;
}

.section-lead h2 {
  max-width: 10ch;
  margin: 0;
  color: rgba(238, 244, 250, 0.88);
  font-size: clamp(3.55rem, 2.52vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-section .section-lead h2 span:first-child,
.jobs-section .section-lead h2 span:first-child {
  color: var(--ember);
}

.section-lead > p:not(.section-eyebrow) {
  max-width: 38ch;
  margin: 0;
  color: rgba(223, 232, 242, 0.56);
  font-size: clamp(1.5rem, 1.1vw, 1.82rem);
  line-height: 1.55;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 1.8vw, 28px);
  max-width: min(100%, 58ch);
  padding-top: 2px;
}

.copy-large {
  grid-column: auto;
  max-width: 38ch;
  margin: 0;
  color: rgba(223, 232, 242, 0.64);
  font-size: clamp(1.58rem, 0.95vw, 1.8rem);
  font-weight: 400;
  line-height: 1.56;
}

.about-profile {
  gap: clamp(18px, 1.7vw, 24px);
  padding-top: 0;
}

.about-profile p:not(.copy-large) {
  max-width: 58ch;
  margin: 0;
  color: rgba(223, 232, 242, 0.58);
  font-size: clamp(1.38rem, 0.84vw, 1.56rem);
  font-weight: 400;
  line-height: 1.62;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: clamp(2px, 0.16vw, 3px);
  aspect-ratio: 16 / 8.45;
  margin-top: clamp(126px, 9vw, 176px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.about-gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: rgba(8, 21, 38, 0.22);
  box-shadow: none;
}

.about-gallery-item--vehicle {
  grid-area: 4 / 1 / 6 / 4;
}

.about-gallery-item--mast {
  grid-area: 6 / 1 / 8 / 4;
}

.about-gallery-item--freimessen {
  grid-area: 5 / 4 / 8 / 8;
}

.about-gallery-item--person {
  grid-area: 1 / 4 / 5 / 8;
}

.about-gallery-item--training {
  grid-area: 1 / 1 / 4 / 4;
}

.about-gallery-item--confined {
  grid-area: 1 / 8 / 4 / 13;
}

.about-gallery-item--psaga {
  display: none;
}

.about-gallery-item--detail {
  display: none;
}

.about-gallery-item--player {
  grid-area: 4 / 8 / 8 / 10;
}

.about-gallery-item--fire {
  grid-area: 4 / 10 / 8 / 13;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.95);
  transform: scale(1.01);
  transition:
    filter 0.52s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.42s ease;
}

.about-gallery-item--vehicle img {
  object-position: 54% 58%;
  filter: saturate(0.94) contrast(1.03) brightness(0.99);
}

.about-gallery-item--mast img {
  object-position: 61% 46%;
  filter: saturate(0.92) contrast(1.04) brightness(0.96);
}

.about-gallery-item--freimessen img {
  object-position: 54% 44%;
  filter: saturate(0.93) contrast(1.03) brightness(0.97);
}

.about-gallery-item--person img {
  object-position: 50% 24%;
  filter: saturate(0.9) contrast(1.02) brightness(0.98);
}

.about-gallery-item--training img {
  object-position: 52% 52%;
  filter: saturate(0.92) contrast(1.02) brightness(1);
}

.about-gallery-item--confined img {
  object-position: 58% 46%;
  filter: saturate(0.88) contrast(1.06) brightness(0.93);
}

.about-gallery-item--psaga img {
  object-position: 48% 50%;
  filter: saturate(0.9) contrast(1.04) brightness(0.96);
}

.about-gallery-item--detail img {
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.03) brightness(0.94);
}

.about-gallery-item--player img {
  object-position: 52% 34%;
  filter: saturate(0.91) contrast(1.03) brightness(0.96);
}

.about-gallery-item--fire img {
  object-position: 50% 50%;
  filter: saturate(0.93) contrast(1.03) brightness(0.99);
}

.about-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 38, 0.008), rgba(6, 20, 38, 0.055)),
    radial-gradient(ellipse at 50% 0%, rgba(238, 244, 250, 0.014), rgba(238, 244, 250, 0) 58%);
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.about-gallery-item:hover img {
  filter: saturate(0.96) contrast(1.03) brightness(1.01);
  transform: scale(1.02);
}

.about-gallery:has(.about-gallery-item:hover) .about-gallery-item:not(:hover) img {
  filter: saturate(0.72) contrast(0.98) brightness(0.76);
  transform: scale(1);
  opacity: 0.74;
}

.about-gallery:has(.about-gallery-item:hover) .about-gallery-item:not(:hover)::after {
  opacity: 0.46;
}

.job-list {
  display: grid;
  border-top: 1px solid rgba(185, 211, 239, 0.13);
}

.job-item strong {
  margin: 0;
  color: rgba(228, 236, 246, 0.72);
  font-size: clamp(2.05rem, 1.44vw, 2.52rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.jobs-section {
  overflow: visible;
  isolation: isolate;
  padding: clamp(146px, 10.2vw, 188px) 0 clamp(116px, 7.8vw, 152px);
}

.jobs-section .section-lead h2 {
  max-width: 11ch;
  color: rgba(238, 244, 250, 0.88);
  font-size: clamp(3.9rem, 3vw, 5.15rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.jobs-section .section-lead > p:not(.section-eyebrow) {
  max-width: 34ch;
  color: rgba(223, 232, 242, 0.56);
  font-size: clamp(1.5rem, 1.1vw, 1.82rem);
  line-height: 1.55;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(520px, 0.62fr);
  gap: clamp(74px, 8.8vw, 128px);
  align-items: start;
}

.job-item {
  position: relative;
  border-bottom: 1px solid rgba(185, 211, 239, 0.11);
  interpolate-size: allow-keywords;
  transition:
    border-color 0.48s ease,
    opacity 0.52s ease,
    transform 0.66s cubic-bezier(0.19, 1, 0.22, 1);
}

.job-item::details-content {
  block-size: 0;
  opacity: 0;
  overflow: clip;
  transition:
    block-size 0.66s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s ease,
    content-visibility 0.66s allow-discrete;
}

.job-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.job-item.is-enhanced::details-content,
.job-item.is-enhanced[open]::details-content {
  block-size: auto;
  opacity: 1;
  overflow: visible;
  transition: none;
}

.job-item summary {
  position: relative;
  display: flex;
  min-height: clamp(74px, 5vw, 90px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 32px);
  padding: clamp(21px, 1.9vw, 28px) 0;
  color: inherit;
  cursor: pointer;
  list-style: none;
}

.job-item summary::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 211, 239, 0.025), rgba(185, 211, 239, 0.13), rgba(185, 211, 239, 0.07), rgba(185, 211, 239, 0.02));
  opacity: 0.62;
  transform: scaleX(0.96);
  transform-origin: center;
  transition:
    opacity 0.38s ease,
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.job-item:hover summary::before,
.job-item[open] summary::before {
  opacity: 1;
  transform: scaleX(1);
}

.job-item summary::-webkit-details-marker {
  display: none;
}

.job-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid rgba(248, 251, 255, 0.18);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.015);
  color: rgba(248, 251, 255, 0.76);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(248, 251, 255, 0.04);
  transition:
    border-color 0.34s ease,
    background 0.34s ease,
    color 0.34s ease,
    transform 0.44s cubic-bezier(0.19, 1, 0.22, 1);
}

.job-item[open] summary::after {
  border-color: rgba(214, 51, 61, 0.34);
  background: rgba(214, 51, 61, 0.055);
  color: rgba(226, 79, 88, 0.88);
  transform: rotate(45deg);
}

.job-item summary span {
  display: grid;
  gap: 8px;
  transition:
    opacity 0.48s ease,
    transform 0.58s cubic-bezier(0.19, 1, 0.22, 1);
}

.job-item small {
  color: rgba(243, 247, 251, 0.46);
  font-size: clamp(1.18rem, 0.76vw, 1.34rem);
  font-weight: 500;
  line-height: 1.15;
}

.job-item[open] strong {
  color: rgba(238, 244, 250, 0.82);
}

.job-list:has(.job-item[open]) .job-item:not([open]) {
  opacity: 1;
}

.job-list:has(.job-item[open]) .job-item:not([open]) summary span {
  opacity: 0.42;
  transform: translateX(-2px);
}

.job-list:has(.job-item[open]) .job-item:not([open]) summary:hover span,
.job-list:has(.job-item[open]) .job-item:not([open]) summary:focus-within span {
  opacity: 0.68;
  transform: none;
}

.job-detail {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  padding: 2px 0 54px;
  animation: about-detail-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.job-item.is-enhanced .job-detail {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  animation: none;
  transition: none;
  will-change: height, opacity, transform;
  contain: layout paint;
}

.job-item.is-enhanced[open] .job-detail {
  height: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.job-item.is-enhanced.is-closing .job-detail {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}

.job-detail-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(260px, 0.42fr);
  gap: clamp(32px, 4.2vw, 58px);
  align-items: start;
}

.job-detail-copy {
  display: grid;
  gap: 0;
}

.job-detail-copy > p {
  max-width: 42ch;
  margin: 0;
  color: rgba(223, 232, 242, 0.6);
  font-size: clamp(1.64rem, 1vw, 1.82rem);
  font-weight: 400;
  line-height: 1.5;
}

.job-facts {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.job-facts p {
  display: grid;
  grid-template-columns: minmax(136px, 0.27fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  margin: 0;
  padding: 16px 0 18px;
  border-top: 1px solid rgba(185, 211, 239, 0.09);
  color: rgba(223, 232, 242, 0.54);
  font-size: clamp(1.24rem, 0.82vw, 1.42rem);
  font-weight: 400;
  line-height: 1.55;
}

.job-facts strong {
  display: block;
  margin: 0;
  color: rgba(238, 244, 250, 0.72);
  font-size: clamp(1.2rem, 0.8vw, 1.38rem);
  font-weight: 600;
  line-height: 1;
}

.job-detail :is(a, button) {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(238, 244, 250, 0.68);
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.34s ease;
}

.job-detail :is(a, button)::before {
  content: "+";
  color: var(--ember);
  font-size: 2rem;
  font-weight: 700;
}

.job-detail :is(a, button):hover,
.job-detail :is(a, button):focus-visible {
  color: rgba(248, 251, 255, 0.9);
}

.job-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  align-self: start;
  margin: 2px 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background:
    radial-gradient(circle at 36% 20%, rgba(248, 251, 255, 0.04), rgba(248, 251, 255, 0) 34%),
    rgba(5, 16, 30, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(248, 251, 255, 0.065),
    inset 0 -24px 38px rgba(3, 12, 22, 0.16),
    0 16px 36px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
}

.job-visual::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(248, 251, 255, 0.055), rgba(248, 251, 255, 0) 36%),
    radial-gradient(circle at 74% 18%, rgba(185, 211, 239, 0.055), rgba(185, 211, 239, 0) 38%);
  mix-blend-mode: screen;
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.job-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(3, 12, 22, 0.08) 0%, rgba(3, 12, 22, 0.16) 54%, rgba(3, 12, 22, 0.26) 100%),
    linear-gradient(90deg, rgba(3, 12, 22, 0.12), rgba(3, 12, 22, 0.04) 46%, rgba(3, 12, 22, 0.14));
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.job-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.84);
  transform: scale(1.02);
  transition:
    filter 0.78s ease,
    transform 0.95s cubic-bezier(0.19, 1, 0.22, 1);
}

.job-visual--monteure img {
  object-position: 54% 44%;
}

.job-visual--trainer img {
  object-position: 50% 46%;
}

.job-visual--initiativ img {
  object-position: 50% 50%;
}

.job-visual:hover img {
  filter: saturate(0.98) contrast(1.05) brightness(0.96);
  transform: scale(1.036);
}

.job-visual:hover::before {
  opacity: 0.28;
}

@keyframes about-band-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes about-band-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(var(--drift-x), var(--drift-y), 0) rotate(var(--drift-rotate));
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes about-band-entry {
  0% {
    transform: translate3d(0, var(--entry-y), 0) scaleY(var(--entry-scale)) rotate(0.02deg);
  }

  48% {
    transform: translate3d(0, calc(var(--entry-y) * -0.18), 0) scaleY(1.018) rotate(-0.035deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scaleY(1) rotate(0deg);
  }
}

@keyframes about-band-breathe {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(14px, -9px, 0) rotate(-0.035deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes about-detail-in {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.text-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.78s ease var(--reveal-delay, 0s),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.text-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer .text-reveal,
.site-footer .text-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-band-group,
  .about-band,
  .about-hero .section-eyebrow,
  .about-hero .headline-line,
  .about-hero-subtitle,
  .job-detail {
    animation: none;
  }

  .about-band,
  .about-hero .section-eyebrow,
  .about-hero-subtitle,
  .about-hero .headline-line {
    opacity: 1;
    transform: none;
  }

  .text-reveal,
  .text-reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-band {
    stroke-dashoffset: 0;
  }

  .job-visual img {
    transition: none;
  }

}

@media (max-width: 1100px) {
  .about-ribbons {
    right: -170px;
    bottom: -154px;
    width: 560px;
    opacity: 0.42;
  }
}

@media (max-width: 980px) {
  .about-hero {
    min-height: 470px;
  }

  .about-hero-content {
    min-height: 470px;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .about-ribbons {
    right: -305px;
    bottom: -162px;
    width: 560px;
    opacity: 0.46;
  }

  .about-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(4rem, 5.8vw, 5.1rem);
  }

  .about-layout,
  .jobs-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-principles-row {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(185, 211, 239, 0.08);
  }

  .about-principle:last-child {
    border-bottom: 0;
  }

  .about-copy {
    padding-top: 0;
  }

  .job-detail-top {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.46fr);
  }

  .job-visual {
    aspect-ratio: 3 / 2;
  }

  .about-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(9, minmax(0, 1fr));
    aspect-ratio: 4 / 4.48;
  }

  .about-gallery-item--vehicle {
    grid-area: 7 / 1 / 10 / 3;
  }

  .about-gallery-item--mast {
    grid-area: 4 / 1 / 7 / 5;
  }

  .about-gallery-item--freimessen {
    grid-area: 7 / 3 / 10 / 7;
  }

  .about-gallery-item--person {
    grid-area: 1 / 5 / 5 / 7;
  }

  .about-gallery-item--confined {
    grid-area: 1 / 7 / 5 / 9;
  }

  .about-gallery-item--psaga {
    display: none;
  }

  .about-gallery-item--detail {
    display: none;
  }

  .about-gallery-item--player {
    grid-area: 7 / 7 / 10 / 9;
  }

  .about-gallery-item--fire {
    grid-area: 5 / 5 / 7 / 9;
  }

  .about-gallery-item--training {
    grid-area: 1 / 1 / 4 / 5;
  }
}

@media (max-width: 620px), (orientation: landscape) and (max-height: 743px) {
  .subpage-content,
  .about-principles-row {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
  }

  .about-hero {
    min-height: 490px;
  }

  .about-hero-content {
    min-height: 490px;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .about-ribbons {
    right: -610px;
    bottom: -146px;
    width: 700px;
    opacity: 0.24;
  }

  .about-hero h1,
  .section-lead h2 {
    max-width: 100%;
    font-size: clamp(3.25rem, 9.4vw, 3.78rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  .about-hero-subtitle,
  .copy-large,
  .section-lead > p {
    max-width: 100%;
    font-size: 1.52rem;
    line-height: 1.52;
  }

  .about-section,
  .jobs-section {
    padding-top: 52px;
    padding-bottom: 84px;
  }

  .about-principles {
    margin-top: -20px;
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .about-principles-row {
    grid-template-columns: 1fr;
  }

  .about-principle,
  .about-principle:first-child,
  .about-principle:last-child {
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(185, 211, 239, 0.08);
  }

  .about-principle:last-child {
    border-bottom: 0;
  }

  .about-layout,
  .jobs-layout {
    gap: 30px;
  }

  .about-copy {
    gap: 16px;
    max-width: 36ch;
  }

  .about-profile p:not(.copy-large) {
    max-width: 36ch;
    font-size: 1.38rem;
    line-height: 1.58;
  }

  .about-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(42px, 12vw, 48px);
    aspect-ratio: auto;
    gap: 2px;
    width: min(100%, 354px);
    margin: 40px auto 0;
    border-radius: 8px;
  }

  .about-gallery-item {
    grid-area: auto;
  }

  .about-gallery-item--training {
    grid-area: 1 / 1 / 5 / 6;
  }

  .about-gallery-item--person {
    grid-area: 1 / 6 / 5 / 9;
  }

  .about-gallery-item--mast {
    grid-area: 5 / 1 / 7 / 4;
  }

  .about-gallery-item--vehicle {
    grid-area: 5 / 4 / 7 / 9;
  }

  .about-gallery-item--fire {
    grid-area: 9 / 6 / 12 / 9;
  }

  .about-gallery-item--player {
    grid-area: 7 / 6 / 9 / 9;
  }

  .about-gallery-item--confined {
    grid-area: 7 / 1 / 10 / 6;
  }

  .about-gallery-item--freimessen {
    grid-area: 10 / 1 / 12 / 6;
  }

  .about-gallery-item--psaga,
  .about-gallery-item--detail {
    display: none;
  }

  .about-gallery-item--training img {
    object-position: 52% 28%;
  }

  .about-gallery-item--person img {
    object-position: 50% 16%;
  }

  .about-gallery-item--player img {
    object-position: 50% 18%;
  }

  .about-gallery-item--fire img {
    object-position: 50% 48%;
  }

  .about-gallery-item--vehicle img {
    object-position: 50% 54%;
  }

  .about-gallery-item--freimessen img {
    object-position: 52% 38%;
  }

  .job-item summary {
    min-height: 100px;
    padding: 26px 0;
  }

  .job-detail {
    gap: 24px;
  }

  .job-detail-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .job-detail-copy > p {
    max-width: none;
  }

  .job-facts {
    grid-template-columns: 1fr;
  }

  .job-facts p {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0 20px;
  }

  .job-visual {
    aspect-ratio: 3 / 2;
  }
}
