/* Hallmark · main · theme custom "Rams" · all colour & font values reference tokens.css */
@import url("tokens.css?v=11");

@font-face {
  font-family: 'Aptos';
  src: url('../Files/Schrift/Aptos.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('../Files/Schrift/Aptos-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('../Files/Schrift/Aptos-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aptos';
  src: url('../Files/Schrift/Aptos-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  /* Fluide Root-Schrift: 16px auf Notebooks (≤~1440px CSS-Breite) → skaliert auf
     grossen/hochauflösenden Desktops hoch (4K bei 100% ≈ 3840px → 24px). Alles
     Weitere ist rem/clamp-basiert und skaliert automatisch mit. */
  font-size: clamp(16px, 0.34vw + 11px, 24px);
}
body {
  overflow-x: clip;
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
}

p { margin: 0; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--frame { max-width: 920px; }
.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: var(--space-2xl); }
.section--grey { background: var(--color-paper-2); }
.rule-top { border-top: var(--rule-hair) solid var(--color-rule); }

/* eyebrow / kicker — mono, technical, dezent */
.kicker {
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-3);
  margin: 0 0 var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.kicker::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--color-accent);
  flex: none;
}

.lead {
  font-size: var(--text-2xl);
  line-height: 1.5;
  color: var(--color-ink);
  max-width: var(--measure);
  letter-spacing: -0.01em;
}
.muted { color: var(--color-ink-2); }
.measure { max-width: var(--measure); }

/* arrow link */
.alink {
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              gap var(--dur-fast) var(--ease-out);
}
.alink::after { content: "\2192"; transition: transform var(--dur-fast) var(--ease-out); }
.alink:hover { color: var(--color-accent-ink); border-color: var(--color-accent); gap: 0.75em; }
.alink:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 4px; }

/* ---------- Header / nav (N: minimal systematic bar) ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--color-paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: var(--rule-hair) solid var(--color-rule);
}
.site-head__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg);
  min-height: 80px;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--color-ink);
  display: inline-flex; align-items: center; gap: 2px;
  white-space: nowrap;
}
.brand .dot { color: var(--color-accent); }
.brand small {
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-ink-3);
  margin-left: var(--space-sm);
  text-transform: none;
}
.brand__logo { height: 56px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 2rem); }
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--color-ink-2);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.nav a:hover { color: var(--color-ink); }
.nav a[aria-current="page"] { color: var(--color-ink); border-color: var(--color-accent); }
.nav a:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 4px; }

/* ---------- Hero ---------- */
.hero { padding-top: var(--space-3xl); padding-bottom: var(--space-2xl); }
.hero h1 {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 16ch;
}
.hero .lead { margin-top: var(--space-lg); }

/* ---------- Buttons (shared CTA) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  font-family: var(--font-mono); font-size: var(--text-sm);
  text-transform: uppercase; letter-spacing: 0.08em; line-height: 1;
  padding: var(--space-sm) var(--space-lg); border: var(--rule-hair) solid var(--color-ink);
  background: var(--color-ink); color: var(--color-paper); text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn:hover { background: transparent; color: var(--color-ink); }
.btn--accent { background: var(--color-accent); border-color: var(--color-accent); color:#fff; }
.btn--accent:hover { background: var(--color-accent-ink); border-color: var(--color-accent-ink); color:#fff; }
.btn--ghost { background: transparent; color: var(--color-ink); }
.btn--ghost:hover { background: var(--color-ink); color: var(--color-paper); }
.btn--lg { font-size: var(--text-base); padding: var(--space-md) var(--space-xl); }
.btn__arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* mission-page conversion — the single funnel button + secondary link */
.mission-cta { margin-top: var(--space-2xl); display: flex; gap: var(--space-xl); align-items: center; flex-wrap: wrap; }
.mission-cta__alt { font-size: var(--text-sm); }

/* ---------- Homepage hero header: transparent overlay + hamburger; cockpit reaches the top edge ---------- */
.site-head--hero { position: fixed; top: 0; left: 0; right: 0; z-index: 30; background: transparent; border-bottom: 0;
  transition: background var(--dur-mid) var(--ease-out); }
/* scrolled past the hero → dark backdrop so the white logo + hamburger stay usable on light sections */
.site-head--hero.is-scrolled { background: rgba(8,15,13,0.88); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 10px 30px rgba(0,0,0,0.25); }
.site-head--hero .site-head__inner { position: relative; align-items: center; padding-top: 22px; }   /* breathing room above the 84px logo */
.site-head--hero .brand__logo { height: 84px; filter: drop-shadow(0 1px 5px rgba(0,0,0,0.55)); }   /* homepage logo +50% vs the 56px default */
.navtoggle { display: none; }
.site-head--hero .navtoggle { display: flex; flex-direction: column; justify-content: center; gap: 8px; width: 66px; height: 60px; padding: 13px 12px; margin-left: auto; cursor: pointer;
  background: rgba(8,15,13,0.42); border: 1px solid rgba(255,255,255,0.24); border-radius: 8px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.site-head--hero .navtoggle span { display: block; height: 3px; width: 100%; background: #fff; border-radius: 2px; transition: transform var(--dur), opacity var(--dur); }
.site-head--hero .navtoggle.is-open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.site-head--hero .navtoggle.is-open span:nth-child(2) { opacity: 0; }
.site-head--hero .navtoggle.is-open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
.nav--drawer { position: absolute; top: calc(100% + 10px); right: 0; display: flex; flex-direction: column; gap: 3px; min-width: 300px; z-index: 30;
  background: rgba(8,15,13,0.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 12px;
  opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity var(--dur), transform var(--dur); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.nav--drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav--drawer a { display: block; padding: 14px 18px; color: #e8f2ee; border-radius: 6px; text-decoration: none; font-size: var(--text-lg); font-weight: 600; letter-spacing: 0.01em; }
.nav--drawer a:hover { background: rgba(255,255,255,0.1); }
.nav--drawer a[aria-current="page"] { color: var(--ck-acc, #2fe08a); }

/* ---------- Cockpit hero (instrument cluster — recreates the design-hero Vorlage) ---------- */
.cockpit { position: relative; width: 100%; background: #fff; overflow: hidden; }
/* backdrop = the rendered wireframe-landscape image (Files/Hintergrund.png). The UAV (transparent canvas)
   floats over the flat central plane. A single soft radial mask dissolves the edges into the white page — no hard frame, no line. */
.cockpit__stage { position: relative; width: 100%; height: clamp(540px, 84vh, 1250px); background: #0a1f33 url('/Files/hero-bg.png') center/cover no-repeat; touch-action: none;
  -webkit-mask-image: radial-gradient(132% 142% at 50% 44%, #000 58%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(132% 142% at 50% 44%, #000 58%, rgba(0,0,0,0) 100%); }
.cockpit__stage canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; touch-action: none; background: transparent; }

.cockpit__overlay { position: absolute; inset: 0; pointer-events: none; font-variant-numeric: tabular-nums; --ck-acc: #2fe08a; --ck-acc-ink: #06150f; }
.cockpit__overlay > * { position: absolute; pointer-events: auto; }

/* title — top-left, white on the deep-blue sky */
.ck-title-zone { top: clamp(76px, 11%, 116px); left: clamp(16px, 4vw, 64px); max-width: min(34rem, 86vw);
  /* auf großen Monitoren rückt der Auswahl-Block per Media-Query unten weiter zur Mitte */
  text-shadow: 0 0 3px rgba(2,16,32,0.95), 0 0 9px rgba(2,16,32,0.8), 0 1px 2px rgba(2,16,32,0.95); }
.ck-eyebrow { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: #fff; opacity: 0.82; }
.ck-title { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.16em; line-height: 1.2; color: var(--ck-acc); margin-top: 6px; text-shadow: 0 1px 10px rgba(2,16,32,0.6); }
.ck-hint { font-family: var(--font-mono); font-size: var(--text-xs); color: #fff; opacity: 0.74; margin-top: 8px; letter-spacing: 0.02em; max-width: 34ch; }

/* big platform name floating in the sky at the horizon — semi-transparent, fades in/out in place on model change */
.ck-uav-name { position: absolute; top: 25%; left: 0; right: 0; text-align: center; z-index: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 6.8vw, 6rem); letter-spacing: 0.07em; line-height: 1;
  color: #f0f7ff; white-space: nowrap; opacity: 0; transition: opacity 0.55s ease;
  text-shadow: 0 2px 34px rgba(2,16,32,0.6), 0 1px 3px rgba(2,16,32,0.55); }
.ck-uav-name.is-on { opacity: 0.29; transition: opacity 1.4s ease; }   /* −20% size & −20% opacity vs before → more subtle */

/* fields — instrument-panel style (per the UAV-STATUS reference): semi-transparent dark, green accent, no neon glow */
.ck-f { color: #fff; padding: 0.8rem 1rem; border-radius: 8px;
  background: rgba(8,15,13,0.74); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  border: 1px solid rgba(180,210,200,0.32); box-shadow: 0 8px 26px rgba(0,8,6,0.45); }
.ck-k { display: block; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #c4dbd1; }
.ck-v { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 1.7vw, 1.7rem); letter-spacing: -0.02em; line-height: 1.1; margin-top: 3px; }
.ck-u { font-family: var(--font-mono); font-size: 0.64rem; font-weight: 400; opacity: 0.72; margin-left: 4px; }
.ck-sub { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.02em; opacity: 0.74; margin-top: 4px; }

/* LEFT payload window (mission picker + Payloads2 checklist) */
.ck-pay { width: min(330px, 36vw); top: clamp(86px, 22%, 210px); left: clamp(14px, 3.5vw, 60px); border-left: 3px solid var(--ck-acc); }
.ck-pay .ck-k { font-size: 0.8rem; color: var(--ck-acc); letter-spacing: 0.14em; }
/* mission = direct-select buttons, bigger & present */
.ck-missions { display: flex; flex-direction: column; gap: 6px; margin-top: 9px; }
.ck-mbtn { display: block; width: 100%; text-align: left; cursor: pointer; color: #e8f2ee; font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-lg); letter-spacing: -0.01em; line-height: 1.16; padding: 0.65rem 0.85rem; border-radius: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(180,210,200,0.5); transition: background var(--dur-fast), border-color var(--dur-fast); }
.ck-mbtn:hover { background: rgba(47,224,138,0.16); border-color: var(--ck-acc); }
.ck-mbtn.is-sel { background: var(--ck-acc); border-color: var(--ck-acc); color: var(--ck-acc-ink); }
.ck-mbtn.is-dim { opacity: 0.4; }                       /* non-chosen missions greyed once one is picked */
.ck-mbtn.is-dim:hover { opacity: 0.7; }
/* payload sub-selection — bigger & more present after the mission pre-selection */
.ck-pl-list { margin-top: 12px; display: flex; flex-direction: column; gap: 1px; }
.ck-pl { display: flex; align-items: center; gap: 11px; padding: 7px 3px; cursor: pointer; font-family: var(--font-mono); font-size: 0.82rem;
  border-bottom: 1px dashed rgba(180,210,200,0.22); }
.ck-pl:last-child { border-bottom: 0; }
.ck-pl input[type=checkbox] { accent-color: var(--ck-acc); width: 16px; height: 16px; cursor: pointer; flex: none; }
.ck-pl-n { flex: 1; }
.ck-pl-kg { opacity: 0.74; font-weight: 600; }
.ck-pl.is-out { opacity: 0.32; cursor: not-allowed; }
.ck-pl.is-out input { cursor: not-allowed; }
/* custom "Cargo" payload — free kg entry */
.ck-pl__lab { display: flex; align-items: center; gap: 11px; flex: 1; cursor: pointer; min-width: 0; }
.ck-pl-kgin { width: 58px; flex: none; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.4); color: #fff;
  font: inherit; font-size: 0.78rem; font-weight: 700; padding: 2px 6px; border-radius: 6px; text-align: right; -moz-appearance: textfield; }
.ck-pl-kgin::-webkit-outer-spin-button, .ck-pl-kgin::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ck-pl-kgin:disabled { opacity: 0.4; }
.ck-pay-foot { margin-top: 9px; padding-top: 9px; border-top: 1px dashed rgba(180,210,200,0.28); }
.ck-pay-foot .ck-v b, .ck-pay-foot .ck-u { color: var(--ck-acc); }

/* metric box-fields along the bottom; each is a value picker (no sliders) */
.ck-bottom { left: clamp(14px, 3.5vw, 60px); right: 37%; bottom: 5%; display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.ck-m { position: relative; flex: 1 1 150px; min-width: 138px; transition: opacity var(--dur); }
.ck-m.is-locked { opacity: 0.45; }                      /* still clickable → shows the "choose a mission" hint */
/* once a mission is chosen (unlocked), the metric fields light up — clear "now choose here" cue */
.ck-bottom .ck-m:not(.is-locked) { border-color: rgba(47,224,138,0.45); }
.ck-bottom .ck-m:not(.is-locked) .ck-k { color: var(--ck-acc); }
.ck-toast { position: absolute; z-index: 6; pointer-events: none; white-space: nowrap;
  background: var(--color-accent); color: #fff; font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.02em;
  padding: 9px 15px; border-radius: 9px; box-shadow: 0 12px 32px rgba(150,20,20,0.5); opacity: 0; transform: translateY(6px); transition: opacity var(--dur), transform var(--dur); }
.ck-toast.is-on { opacity: 1; transform: translateY(0); }
@keyframes ckPayPulse { 0%, 100% { box-shadow: 0 8px 26px rgba(0,14,32,0.4); } 50% { box-shadow: 0 0 0 3px var(--color-accent), 0 8px 26px rgba(0,14,32,0.4); } }
.ck-pay.pulse { animation: ckPayPulse 0.5s ease-in-out 3; }
.ck-boxes { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 8px; }
.ck-box { font-family: var(--font-mono); font-size: 0.92rem; font-weight: 700; color: #e8f2ee; cursor: pointer; font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(120,200,160,0.8); border-radius: 6px; padding: 0.35rem 0.6rem; min-width: 2.4rem;
  transition: background var(--dur-fast), border-color var(--dur-fast); }
.ck-box:hover:not(.is-out) { background: rgba(47,224,138,0.18); border-color: var(--ck-acc); }
.ck-box.is-sel { background: var(--ck-acc); border-color: var(--ck-acc); color: var(--ck-acc-ink); }
.ck-box.is-out { opacity: 0.32; cursor: not-allowed; border-style: dashed; border-color: rgba(120,200,160,0.3); }

/* dynamic connector: a live line drawn from the just-chosen field to the next, carrying the question */
.ck-flow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; opacity: 0; transition: opacity var(--dur); }
.ck-flow.is-on { opacity: 1; }
.ck-flow path { fill: none; stroke: var(--color-accent); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 7 8;
  animation: ckDash 0.7s linear infinite; filter: drop-shadow(0 2px 5px rgba(150,20,20,0.5)); }
.ck-flow circle { fill: var(--color-accent); }
@keyframes ckDash { to { stroke-dashoffset: -15; } }
.ck-flow-q { position: absolute; transform: translate(-50%, -50%); pointer-events: none; white-space: nowrap; z-index: 2;
  background: var(--color-accent); color: #fff; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em;
  padding: 6px 11px; border-radius: 9px; box-shadow: 0 8px 22px rgba(150,20,20,0.42); opacity: 0; transition: opacity var(--dur); }
.ck-flow-q__k { display: block; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.78; margin-bottom: 2px; }
.ck-flow-q.is-on { opacity: 1; animation: ckQ 1.8s ease-in-out infinite; }
@keyframes ckQ { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } }

/* candidate UAVs — bottom-right red table; excluded rows grey out, unique → CTA */
.ck-result { bottom: 6%; right: clamp(14px, 3.5vw, 60px); width: min(360px, 36vw); color: #fff; padding: 13px 16px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(150,24,24,0.93), rgba(116,15,15,0.93));
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 14px 44px rgba(120,12,12,0.45); max-height: 62%; overflow-y: auto; }
.ck-result--single { background: linear-gradient(160deg, rgba(182,30,30,0.96), rgba(132,16,16,0.96)); }
.ck-result__head { font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 9px; display: flex; justify-content: space-between; gap: 8px; }
.ck-result__head span { opacity: 0.72; text-transform: none; letter-spacing: 0; }
.ck-result__head--done { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: -0.01em; }
.ck-row { display: grid; grid-template-columns: 1.5fr 1fr 0.7fr 0.8fr; gap: 6px; align-items: baseline; padding: 5px 0; border-top: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-mono); font-size: 0.68rem; font-variant-numeric: tabular-nums; }
.ck-row--h { border-top: 0; opacity: 0.6; font-size: 0.54rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ck-row__name { font-family: var(--font-display); font-weight: 700; font-size: 0.84rem; }
.ck-row.is-out { opacity: 0.34; }
.ck-row.is-out .ck-row__name { text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.5); }
.ck-row[data-model] { cursor: pointer; border-radius: 6px; transition: background var(--dur-fast); }
.ck-row[data-model]:hover { background: rgba(255,255,255,0.14); }
/* ≤2 left: matching modes under the UAV */
.ck-row__modes { grid-column: 1 / -1; font-size: 0.62rem; opacity: 0.9; margin-top: 3px; display: flex; flex-direction: column; gap: 2px; }
.ck-mode { display: inline-block; background: rgba(255,255,255,0.22); border-radius: 4px; padding: 0 5px; margin-right: 6px; font-weight: 700; letter-spacing: 0.04em; }
/* single-UAV detail view */
.ck-result__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -0.03em; line-height: 1; margin: 2px 0 4px; }
.ck-single-sub { font-family: var(--font-mono); font-size: 0.62rem; opacity: 0.86; margin-bottom: 9px; }
.ck-srow { display: grid; grid-template-columns: 2.4em 1fr 0.9fr 0.6fr 0.9fr; gap: 6px; align-items: baseline; padding: 4px 0; border-top: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-mono); font-size: 0.66rem; font-variant-numeric: tabular-nums; }
.ck-srow--h { border-top: 0; opacity: 0.6; font-size: 0.52rem; text-transform: uppercase; letter-spacing: 0.06em; }
.ck-srow .ck-mode { margin: 0; }
.ck-srow__n { opacity: 0.82; }
.ck-back { display: block; margin-top: 9px; background: none; border: 0; color: #fff; opacity: 0.7; font-family: var(--font-mono); font-size: 0.62rem; cursor: pointer; padding: 0; }
.ck-back:hover { opacity: 1; }
.ck-result__cta { display: inline-block; margin-top: 11px; background: #fff; color: var(--color-accent); font-family: var(--font-mono); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.04em; padding: var(--space-sm) var(--space-md); text-decoration: none; line-height: 1.2; border-radius: 8px; }
.ck-result__cta span { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }
.ck-result__cta:hover { background: var(--color-ink); color: #fff; }
.ck-result__cta:hover span { transform: translateX(3px); }

/* laptops / medium screens: keep the overlay but stop the floating panels from colliding */
/* große Monitore: Titel + Mission-Fenster wandern Richtung Mitte — lädt mehr zum Einstieg ein */
@media (min-width: 1900px) {
  .ck-title-zone, .ck-pay { left: clamp(200px, 11vw, 430px); }
}

@media (max-width: 1500px) {
  .ck-title-zone { top: clamp(116px, 15%, 140px); }   /* clears the 84px logo + 22px header padding */
  .ck-title { font-size: 0.95rem; }
  .ck-pay { width: min(258px, 32vw); top: clamp(196px, 26%, 226px); max-height: max(180px, calc(80vh - 320px)); overflow-y: auto; }   /* below the title zone; capped so it never reaches the bottom metric row, scrolls internally */
  .ck-pay .ck-k { font-size: 0.72rem; }
  .ck-hint { max-width: 56ch; }   /* single line on laptops — keeps it clear of the (now opaque) mission panel below */
  .ck-mbtn { font-size: var(--text-sm); padding: 6px 10px; }
  .ck-pl { font-size: 0.74rem; padding: 4px 2px; }
  .ck-f { padding: 9px 12px; }
  /* metric pickers: one full-width row across the bottom, compact */
  .ck-bottom { left: clamp(12px, 3vw, 44px); right: clamp(12px, 3vw, 44px); bottom: 4%; gap: 8px; }
  .ck-m { flex: 1 1 110px; min-width: 104px; }
  .ck-k { font-size: 0.68rem; letter-spacing: 0.08em; }
  .ck-boxes { gap: 4px; margin-top: 6px; }
  .ck-box { font-size: 0.76rem; padding: 4px 8px; min-width: 28px; }
  /* result panel moves to top-right (below the header) so it never collides with the bottom row */
  .ck-result { top: clamp(116px, 15%, 156px); bottom: auto; right: clamp(12px, 3vw, 44px); width: min(300px, 40vw); max-height: 56%; }   /* below the 66×60 hamburger */
}

@media (max-width: 860px) {
  .cockpit__stage { height: 50vh; }
  .cockpit__overlay { position: static; display: flex; flex-direction: column; gap: var(--space-md); padding: var(--space-lg) var(--gutter) var(--space-2xl); background: #0c2a48; }
  .cockpit__overlay > * { position: static; transform: none; max-width: none; }
  .ck-uav-name { display: none; }
  .ck-title-zone { margin-bottom: var(--space-sm); }
  .ck-pay, .ck-bottom, .ck-result { width: auto; }
  .ck-bottom { flex-direction: column; gap: var(--space-md); }
  .ck-result { max-height: none; }
  .ck-guide { position: static; max-width: none; margin-bottom: 8px; animation: none; opacity: 1; transform: none; }
  .ck-guide::after { display: none; }
}
.hero__media {
  margin-top: var(--space-2xl);
  border-top: var(--rule-hair) solid var(--color-rule);
  border-bottom: var(--rule-hair) solid var(--color-rule);
  background: var(--color-paper-2);
}
.hero__media img { width: 100%; object-fit: cover; aspect-ratio: 16 / 7; }

/* caption row under media */
.cap-row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-md);
  padding-top: var(--space-md);
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-ink-3);
  text-transform: uppercase;
}

/* ---------- Section heading block ---------- */
.shead { margin-bottom: var(--space-2xl); }
.shead h2 { font-size: var(--text-4xl); max-width: 22ch; }
.shead .lead { margin-top: var(--space-lg); }

/* ---------- Stat-led product cards ---------- */
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: var(--rule-hair) solid var(--color-rule-2); }
.pcard {
  border-bottom: var(--rule-hair) solid var(--color-rule);
  border-right: var(--rule-hair) solid var(--color-rule);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  display: flex; flex-direction: column; gap: var(--space-md);
  text-decoration: none; color: inherit;
  transition: background var(--dur-fast) var(--ease-out);
}
.pcard:first-child { border-left: var(--rule-hair) solid var(--color-rule); }
.pcard:hover { background: var(--color-paper-2); }
.pcard:focus-visible { outline: 2px solid var(--color-focus); outline-offset: -2px; }
.pcard__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-3xl); letter-spacing: -0.03em; }
.pcard__type { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); }
.pcard__specs { list-style: none; margin: var(--space-sm) 0 0; padding: 0; display: grid; gap: 6px; }
.pcard__specs li { display: flex; justify-content: space-between; gap: var(--space-md); font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-sm); border-top: var(--rule-hair) solid var(--color-rule); padding-top: 6px; }
.pcard__specs .k { color: var(--color-ink-3); }
.pcard__specs .v { color: var(--color-ink); font-weight: 500; }
.pcard__more { margin-top: auto; padding-top: var(--space-md); font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-sm); color: var(--color-accent-ink); }
.pcard:hover .pcard__more { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Generic systematic grid (systems / hangars) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: var(--rule-hair) solid var(--color-rule-2); }
.cell {
  border-bottom: var(--rule-hair) solid var(--color-rule);
  padding: var(--space-xl) var(--space-lg);
}
.grid-2 .cell:nth-child(odd) { border-right: var(--rule-hair) solid var(--color-rule); }
.cell h3 { font-size: var(--text-2xl); margin-bottom: var(--space-xs); }
.cell__tag { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent-ink); margin-bottom: var(--space-md); }
.cell p { color: var(--color-ink-2); }
.cell ul { margin: var(--space-md) 0 0; padding-left: 0; list-style: none; display: grid; gap: var(--space-sm); }
.cell ul li { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-sm); color: var(--color-ink); padding-left: 1.25em; position: relative; }
.cell ul li::before { content: "\2014"; position: absolute; left: 0; color: var(--color-accent); }

/* ---------- Mission / statement ---------- */
.statement { max-width: 30ch; font-size: var(--text-4xl); font-family: var(--font-display); font-weight: 500; letter-spacing: -0.025em; line-height: 1.18; }
.statement .accent { color: var(--color-accent-ink); }

/* ---------- HITBIRD feature band ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }
.feature__body p { font-size: var(--text-lg); }
.feature__body p + p { margin-top: var(--space-md); color: var(--color-ink-2); }

/* point list — systematic, hairline-separated (HITBIRD key points) */
.pts { list-style: none; margin: 0; padding: 0; }
.pts li { padding-block: var(--space-md); border-top: var(--rule-hair) solid var(--color-rule-2); color: var(--color-ink-2); max-width: 46ch; font-size: var(--text-lg); line-height: 1.55; }
.pts li:last-child { border-bottom: var(--rule-hair) solid var(--color-rule-2); }

/* ---------- Spec table (product detail) ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-sm); }
.spec-table caption { text-align: left; font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-ink-3); padding-bottom: var(--space-md); }
.spec-table th, .spec-table td { text-align: left; padding: var(--space-sm) var(--space-md); border-bottom: var(--rule-hair) solid var(--color-rule); }
.spec-table th { font-weight: 500; color: var(--color-ink-2); width: 50%; }
.spec-table td { color: var(--color-ink); font-weight: 500; text-align: right; }
.spec-table tr:first-child th, .spec-table tr:first-child td { border-top: var(--rule-hair) solid var(--color-rule-2); }

/* big number callouts */
.figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; border-top: var(--rule-hair) solid var(--color-rule-2); }
.fig { border-bottom: var(--rule-hair) solid var(--color-rule); border-right: var(--rule-hair) solid var(--color-rule); padding: var(--space-lg); }
.fig .n { font-family: var(--font-display); font-weight: 700; font-size: var(--text-4xl); letter-spacing: -0.04em; line-height: 1; }
.fig .n .u { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-base); font-weight: 400; color: var(--color-ink-3); letter-spacing: 0; }
.fig .l { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); margin-top: var(--space-sm); }

/* range options */
.opts { display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.opt { display: grid; grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: baseline; border-top: var(--rule-hair) solid var(--color-rule); padding-top: var(--space-md); font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-sm); }
.opt .opt__cfg { color: var(--color-accent-ink); }

/* ---------- Page title block ---------- */
.ptitle { padding-block: var(--space-3xl) var(--space-2xl); }
.ptitle h1 { font-size: var(--text-display-s); letter-spacing: -0.035em; }
.ptitle .lead { margin-top: var(--space-lg); }

/* ---------- Career listings ---------- */
.job { border-top: var(--rule-hair) solid var(--color-rule-2); padding-block: var(--space-2xl); }
.job__head { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-lg); align-items: baseline; justify-content: space-between; }
.job h3 { font-size: var(--text-2xl); max-width: 24ch; }
.job__meta { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); }
.job__quote { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: var(--color-accent-ink); margin: var(--space-lg) 0; letter-spacing: -0.01em; }
.cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-xl); margin-top: var(--space-lg); }
.cols h4 { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-ink-3); margin-bottom: var(--space-md); }
.cols ul { margin: 0; padding-left: 1.1em; display: grid; gap: var(--space-xs); color: var(--color-ink-2); font-size: var(--text-sm); }

/* ---------- Framed media band (image-led, low-zoom) ---------- */
.mframe {
  max-width: 920px;
  margin: var(--space-2xl) auto;
  padding-inline: var(--gutter);
}
/* the frame: hairline border + paper mat around the picture */
.mframe__mat {
  border: var(--rule-hair) solid var(--color-rule-2);
  background: var(--color-paper);
  padding: var(--space-sm);
}
.mframe__pic {
  position: relative;
  overflow: hidden;
  background: var(--color-paper-2);
}
.mframe__pic img {
  width: 100%;
  aspect-ratio: 4 / 3;     /* near-square crop → minimal zoom on square sources */
  object-fit: cover;
  object-position: center;
  display: block;
}
/* gradient scrim so overlaid text stays legible */
.mband__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    color-mix(in oklch, var(--color-ink) 78%, transparent) 0%,
    color-mix(in oklch, var(--color-ink) 28%, transparent) 34%,
    transparent 64%);
  pointer-events: none;
}
.mband__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-lg) var(--space-xl);
}
.mband__cap-inner { max-width: var(--maxw); margin-inline: auto; }
.mband__tag {
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-paper);
  display: flex; align-items: center; gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.mband__tag::before { content: ""; width: 7px; height: 7px; background: var(--color-accent); flex: none; }
.mband__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--color-paper);
  max-width: 18ch;
}
.mband__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-2xl);
  margin-top: var(--space-lg);
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: color-mix(in oklch, var(--color-paper) 86%, transparent);
}
.mband__meta b { color: var(--color-paper); font-weight: 600; }
/* mono caption strip beneath an un-overlaid image */
.mband__strip {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-3);
}

/* ---------- Framed block (contact / form) ---------- */
.framebox {
  border: var(--rule-hair) solid var(--color-rule-2);
  background: var(--color-paper);
  padding: clamp(var(--space-xl), 5vw, var(--space-2xl));
}

/* ---------- Contact form ---------- */
.form { display: grid; gap: var(--space-lg); align-content: start; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md) var(--space-lg); }
.form__field { display: grid; gap: var(--space-xs); }
.form__label {
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-3);
}
.form__req { color: var(--color-accent-ink); margin-left: 0.35em; }
.form__input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-ink);
  background: var(--color-paper-2);
  border: var(--rule-hair) solid var(--color-rule-2);
  border-radius: 0;
  padding: var(--space-sm) var(--space-md);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.form__input::placeholder { color: var(--color-ink-3); }
.form__input:focus {
  outline: none;
  background: var(--color-paper);
  border-color: var(--color-accent);
  box-shadow: inset 0 0 0 1px var(--color-accent);
}
.form__textarea { resize: vertical; min-height: 8rem; line-height: 1.6; }

.form__foot {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--space-lg) var(--space-xl);
  margin-top: var(--space-sm);
}
.form__send {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-family: var(--font-mono); font-weight: var(--weight-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-paper);
  background: var(--color-ink);
  border: none; border-radius: 0;
  padding: var(--space-sm) var(--space-lg);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out);
}
.form__send .form__arrow { font-size: 1.15em; transition: transform var(--dur-fast) var(--ease-out); }
.form__send:hover { background: var(--color-accent); }
.form__send:hover .form__arrow { transform: translateX(4px); }
.form__send:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

.form__check {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-ink-2);
  cursor: pointer;
}
.form__check input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; margin: 0; flex: none;
  border: var(--rule-hair) solid var(--color-rule-2);
  background: var(--color-paper);
  border-radius: 0;
  display: grid; place-content: center;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.form__check input::before {
  content: ""; width: 10px; height: 10px;
  transform: scale(0); transform-origin: center;
  background: var(--color-paper);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 22%, 86% 8%, 40% 72%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.form__check input:checked { background: var(--color-accent); border-color: var(--color-accent); }
.form__check input:checked::before { transform: scale(1); }
.form__check input:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
.dl { display: grid; gap: var(--space-lg); }
.dl--row { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.page-slogan {
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-4xl);
  letter-spacing: -0.025em;
  line-height: 1.12;
}
.page-slogan .accent { color: var(--color-accent-ink); }
.dl div { border-top: var(--rule-hair) solid var(--color-rule); padding-top: var(--space-sm); }
.dl dt { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); margin-bottom: 2px; }
.dl dd { margin: 0; font-size: var(--text-lg); }
.dl dd a { color: var(--color-accent-ink); text-decoration: none; }
.dl dd a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
/* footer — compact: tight line-height, minimal gaps (content pages breathe, the footer doesn't) */
.site-foot { border-top: var(--rule-hair) solid var(--color-rule-2); padding-block: var(--space-md); margin-top: var(--space-lg); line-height: 1.35; }
.foot-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: var(--space-md) var(--space-2xl); }
.foot-brand { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); letter-spacing: -0.02em; }
.foot-brand .dot { color: var(--color-accent); }
.foot-brand__logo { height: 26px; width: auto; display: block; }
.site-foot address { font-style: normal; color: var(--color-ink-2); margin-top: var(--space-sm); font-size: var(--text-sm); line-height: 1.45; }
.foot-col h4 { font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-ink-3); margin-bottom: var(--space-2xs); }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.foot-col a { text-decoration: none; color: var(--color-ink-2); font-size: var(--text-sm); line-height: 1.35; display: inline-block; padding: 1px 0; }
.foot-col a:hover { color: var(--color-accent-ink); }
.foot-col a:focus-visible, .site-foot address a:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
.foot-bottom { margin-top: var(--space-md); padding-top: var(--space-xs); border-top: var(--rule-hair) solid var(--color-rule); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm); font-family: var(--font-mono); font-weight: var(--weight-mono); font-size: var(--text-xs); color: var(--color-ink-3); letter-spacing: 0.04em; }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--color-ink); color: var(--color-paper); padding: var(--space-sm) var(--space-md); z-index: 100; }
.skip:focus { left: var(--gutter); top: var(--space-sm); }

/* ---------- Reveal (dezent) ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
/* Text feature blocks: two columns side-by-side on wide 16:9 monitors (>1600px),
   stacked on notebooks / smaller windows (≤1600px, e.g. 14" laptops ~1280–1536px). */
@media (max-width: 1600px) {
  .feature { grid-template-columns: minmax(0, 1fr); gap: var(--space-2xl); }
}

@media (max-width: 860px) {
  .products { grid-template-columns: minmax(0, 1fr); }
  .pcard, .pcard:first-child { border-left: var(--rule-hair) solid var(--color-rule); border-right: var(--rule-hair) solid var(--color-rule); }
  .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .grid-2 .cell:nth-child(odd) { border-right: none; }
  .feature, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-2xl); }
  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .dl--row { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
  .cols { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero__media img { aspect-ratio: 16 / 10; }
  .mframe__pic img { aspect-ratio: 5 / 4; }
  .mband__cap { padding: var(--space-md) var(--space-lg); }
}
@media (max-width: 560px) {
  .nav { gap: var(--space-md); }
  .brand small { display: none; }
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
  .job__head { gap: var(--space-xs); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FUNNEL — Mission → Platform → Configure (shared)
   ============================================================ */
.step-eyebrow {
  font-family: var(--font-mono); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-accent-ink);
  margin-bottom: var(--space-sm);
}

/* Ebene 1 — mission tiles (also reused as in-page selector) */
.mission { margin-bottom: var(--space-xl); }
.mission__cards { display: grid; grid-template-columns: repeat(3, 1fr); border: var(--rule-hair) solid var(--color-rule-2); }
.mission__card {
  text-align: left; font: inherit; color: var(--color-ink); cursor: pointer; text-decoration: none;
  background: var(--color-paper); border: 0; border-right: var(--rule-hair) solid var(--color-rule);
  padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm);
  transition: background var(--dur-fast) var(--ease-out); position: relative;
}
.mission__card:last-child { border-right: 0; }
.mission__card:hover { background: var(--color-paper-2); }
.mission__card[aria-pressed="true"] { background: color-mix(in oklch, var(--color-accent) 6%, var(--color-paper)); }
.mission__card[aria-pressed="true"]::before,
.mission__card:hover::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--color-accent); }
.mission__card[aria-pressed="true"]::before { opacity:1; } .mission__card::before { opacity:0; transition:opacity var(--dur-fast); } .mission__card:hover::before { opacity:1; }
.mission__num { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em; color: var(--color-ink-3); }
.mission__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -0.02em; line-height: 1.05; }
.mission__tag { font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-accent-ink); }
.mission__desc { font-size: var(--text-base); color: var(--color-ink-2); line-height: 1.5; }
.mission__headline { font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl); letter-spacing: -0.02em; color: var(--color-ink); font-variant-numeric: tabular-nums; margin-top: var(--space-2xs); }
.mission__plats { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--color-ink-3); letter-spacing: 0.03em; margin-top: auto; padding-top: var(--space-sm); border-top: var(--rule-hair) solid var(--color-rule); }
.mission__go { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink); display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
.mission__card:hover .mission__go, .mission__card[aria-pressed="true"] .mission__go { color: var(--color-accent-ink); }

/* USP strip — recurring */
.usp { display: flex; align-items: center; gap: var(--space-md); border: var(--rule-hair) solid var(--color-rule-2); background: var(--color-paper-2); padding: var(--space-md) var(--space-lg); }
.usp--attached { border-top: 0; }
.usp__mark { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent-ink); white-space: nowrap; border-right: var(--rule-hair) solid var(--color-rule); padding-right: var(--space-md); }
.usp__txt { font-size: var(--text-sm); color: var(--color-ink-2); line-height: 1.5; }
.usp__txt b { color: var(--color-ink); font-weight: 700; }

/* Ebene 2 / platforms — calm platform card: hard numbers + operating-points table */
.pf-list { display: grid; gap: var(--space-xl); }
.pf-card { border: var(--rule-hair) solid var(--color-rule-2); background: var(--color-paper); }
.pf-card__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--space-md); padding: var(--space-lg); border-bottom: var(--rule-hair) solid var(--color-rule); }
.pf-card__name { font-family: var(--font-display); font-weight: 700; font-size: var(--text-3xl); letter-spacing: -0.03em; line-height: 1; }
.pf-card__badge { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.04em; color: var(--color-ink-2); border: var(--rule-hair) solid var(--color-rule); padding: var(--space-2xs) var(--space-sm); white-space: nowrap; align-self: center; }
.pf-card__for { font-size: var(--text-lg); font-weight: 400; color: var(--color-ink-3); letter-spacing: 0; }   /* "for [Mission]" Zusatz am Plattformnamen (Mission-Seiten) */
.pf-card__specs { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); }
.pf-card__spec { padding: var(--space-md) var(--space-lg); border-right: var(--rule-hair) solid var(--color-rule); }
.pf-card__spec:last-child { border-right: 0; }
.pf-card__spec .k { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); }
.pf-card__spec .v { font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl); letter-spacing: -0.02em; margin-top: var(--space-2xs); font-variant-numeric: tabular-nums; }
.pf-card__spec .v small { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 400; color: var(--color-ink-3); }
.pf-card__ops { padding: var(--space-lg); border-top: var(--rule-hair) solid var(--color-rule); }

/* ---------- UAV detail page (single platform — convergence point of the funnel) ---------- */
.uav { padding-block: var(--space-xl) var(--space-3xl); }
.uav__back { display: inline-block; font-family: var(--font-mono); font-size: var(--text-sm); color: var(--color-ink-2); text-decoration: none; margin-bottom: var(--space-lg); }
.uav__back:hover { color: var(--color-accent-ink); }
.uav__top { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-2xl); align-items: center; }
.uav__stage { position: relative; height: 46vh; min-height: 380px; max-height: 540px; border-radius: 16px; overflow: hidden;
  background: radial-gradient(130% 120% at 50% 38%, #1d3b56 0%, #0d2032 72%); }
.uav__stage canvas { width: 100% !important; height: 100% !important; display: block; touch-action: none; }
.uav__name { font-size: var(--text-4xl); letter-spacing: -0.03em; line-height: 1.0; margin: var(--space-2xs) 0 var(--space-md); }
.uav__intro .lead { margin-bottom: var(--space-lg); }
.uav__key { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border: var(--rule-hair) solid var(--color-rule); border-radius: 12px; overflow: hidden; margin-bottom: var(--space-lg); }
.uav__key .pf-card__spec { border-bottom: var(--rule-hair) solid var(--color-rule); }
.uav__key .pf-card__spec:nth-child(3n) { border-right: 0; }
.uav__cta { margin-top: var(--space-2xs); }
.uav__missions { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--color-ink-3); margin-top: var(--space-lg); }
.uav__missions a { color: var(--color-ink-2); }
.uav__missions a:hover { color: var(--color-accent-ink); }
.uav__ops { margin-top: var(--space-3xl); }

/* ---------- UAV detail — immersive (carries the cockpit world onto the detail page) ----------
   The stage reuses .cockpit__stage (hero-bg + radial mask); the overlay is a flex column:
   head zone (back · eyebrow · lead) on top, instrument spec panels (.ck-f) + CTA at the bottom,
   the platform name floating in the sky behind (.ck-uav-name). */
.uav-hero .cockpit__stage { height: clamp(500px, 78vh, 1200px); }
.uavx { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(130px, 15vh, 190px) var(--gutter) clamp(26px, 5vh, 60px);
  pointer-events: none; font-variant-numeric: tabular-nums; --ck-acc: #2fe08a; --ck-acc-ink: #06150f; }
.uavx > * { pointer-events: auto; }
.uavx__head { max-width: 52ch; }
.uavx__back { display: inline-block; font-family: var(--font-mono); font-size: var(--text-sm); color: #fff; opacity: 0.72;
  text-decoration: none; margin-bottom: var(--space-md); text-shadow: 0 1px 6px rgba(2,16,32,0.7); }
.uavx__back:hover { opacity: 1; }
.uavx__eyebrow { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ck-acc); margin: 0 0 var(--space-sm); text-shadow: 0 1px 8px rgba(2,16,32,0.8); }
.uavx__lead { color: #eef5f1; font-size: var(--text-xl); line-height: 1.5; max-width: 44ch;
  text-shadow: 0 1px 3px rgba(2,16,32,0.8), 0 2px 18px rgba(2,16,32,0.55); }
.uavx__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap; }
.uavx__specs { display: flex; gap: 10px; flex-wrap: wrap; }
.uavx__specs .ck-f { min-width: 8.2rem; }
.uavx__cta-zone { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-sm); }
.uavx__missions { font-family: var(--font-mono); font-size: var(--text-sm); color: #cfe0d8; text-shadow: 0 1px 6px rgba(2,16,32,0.8); }
.uavx__missions a { color: #fff; }
.uavx__missions a:hover { color: var(--ck-acc); }
/* the ops table below the stage — bigger, it is the core data of the page */
.uav__opsx .optable th, .uav__opsx .optable td { font-size: var(--text-lg); padding-block: var(--space-sm); }
.uav__opsx .optable thead th { font-size: var(--text-sm); }

/* ---------- Page hero — immersive intro band for content pages (same world, no 3D) ----------
   The band grows with its content: the stage image is an absolute backdrop, .phx sits in flow
   with a min-height — long leads (e.g. /platforms/) can never overflow the picture. */
.page-hero { position: relative; }
.page-hero .cockpit__stage { position: absolute; inset: 0; height: 100%; }
.phx { position: relative; display: flex; flex-direction: column; justify-content: flex-start;
  min-height: clamp(420px, 56vh, 840px); box-sizing: border-box;
  padding: clamp(130px, 15vh, 190px) var(--gutter) clamp(44px, 7vh, 96px);
  pointer-events: none; --ck-acc: #2fe08a; }
.phx > * { pointer-events: auto; }
.phx__title { color: #fff; font-size: clamp(2.4rem, 3.6vw, 4.2rem); letter-spacing: -0.02em; line-height: 1.04; max-width: 18ch;
  margin: var(--space-sm) 0 0; text-shadow: 0 2px 24px rgba(2,16,32,0.66), 0 1px 3px rgba(2,16,32,0.6); }
.phx__title--acc { color: var(--ck-acc); }   /* green headline variant (mission funnel) */
.phx .uavx__lead { margin-top: var(--space-md); }

/* --- half band for funnel pages: the world stays, the choice cards ride INTO it from below --- */
.page-hero--half { --ov: 110px; }            /* overlap depth — couples band padding and card pull-up */
.page-hero--half .phx { min-height: clamp(280px, 36vh, 480px); justify-content: flex-end;
  padding-top: clamp(120px, 14vh, 160px); padding-bottom: calc(var(--ov) + var(--space-xl)); }
.page-hero--half .phx__title { font-size: clamp(2rem, 3vw, 3.4rem); }
.page-hero--half .uavx__lead { font-size: var(--text-lg); max-width: 52ch; }
.phx__step { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: #2fe08a;
  margin: var(--space-lg) 0 0; text-shadow: 0 1px 8px rgba(2,16,32,0.8); }
/* pulls the following card container up into the band */
.overlap-up { position: relative; z-index: 1; margin-top: calc(-1 * var(--ov, 110px)); }
.overlap-up .mission__cards { background: var(--color-paper); box-shadow: 0 28px 70px rgba(2,16,32,0.35); }
.overlap-up .pf-card { box-shadow: 0 28px 70px rgba(2,16,32,0.3); }
.framebox.overlap-up { box-shadow: 0 28px 70px rgba(2,16,32,0.35); }
@media (max-width: 860px) {
  .page-hero--half { --ov: 56px; }
}

/* ---------- Milestones — dark flight-path timeline (the hero world carried into the story) ----------
   A glowing rail climbs from 1992 (cyan) to today (brand red, pulsing node = HITBIRD). */
.tl-band { position: relative; background: #071322; overflow: hidden; }
.tl-band::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url('/Files/hero-bg.png') center / cover no-repeat fixed; opacity: 0.34; }   /* the hero world, held behind dark glass — parallax on desktop */
.tl-band::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 120% at 50% -30%, rgba(20,64,107,0.55) 0%, rgba(10,31,51,0.55) 50%, rgba(7,19,34,0.92) 100%); }
@media (hover: none) { .tl-band::before { background-attachment: scroll; } }   /* fixed attachment is broken on touch devices */
.tl-band .wrap { position: relative; z-index: 1; }
.tl-band .kicker { color: #2fe08a; }
.tl-band .kicker::before { background: #2fe08a; }
.tl-band__h { color: #fff; text-shadow: 0 2px 24px rgba(2,16,32,0.8); }
.tl-band__acc { color: #2fe08a; text-shadow: 0 0 24px rgba(47,224,138,0.35); }

/* horizontal flight path: years ride a glowing rail left→right, 1992 (cyan) → 2024/2026 (red).
   The band uses the full viewport width; on narrow screens the path scrolls horizontally. */
.tl-band .wrap { max-width: none; }
.tlx { list-style: none; margin: 0; padding: var(--space-lg) 0 var(--space-xs); display: flex; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(53,224,255,0.35) transparent; }
.tlx::-webkit-scrollbar { height: 6px; }
.tlx::-webkit-scrollbar-thumb { background: rgba(53,224,255,0.3); border-radius: 3px; }
.tlx li { position: relative; flex: 1 0 15rem; min-width: 15rem; padding-right: var(--space-lg); }
/* rail segment — each entry carries its stretch of the path */
.tlx li::after { content: ""; position: absolute; left: 0; right: 0; top: 3.4rem; height: 2px;
  background: rgba(53,224,255,0.75); box-shadow: 0 0 14px rgba(53,224,255,0.5); }
.tlx li:first-child::after { background: linear-gradient(90deg, rgba(53,224,255,0.1), rgba(53,224,255,0.75)); }
.tlx li:last-child::after { background: linear-gradient(90deg, rgba(53,224,255,0.75) 0%, #ff4d3d 70%, rgba(255,77,61,0.15) 100%); box-shadow: 0 0 14px rgba(255,77,61,0.45); }
/* node on the rail */
.tlx li::before { content: ""; position: absolute; left: 2px; top: calc(3.4rem - 4px); width: 10px; height: 10px; border-radius: 50%; z-index: 1;
  background: #081527; border: 2px solid #35e0ff; box-shadow: 0 0 12px rgba(53,224,255,0.9); }
.tlx__y { display: block; font-family: var(--font-mono); font-weight: 700; font-size: var(--text-xl); color: #2fe08a;
  font-variant-numeric: tabular-nums; text-shadow: 0 0 14px rgba(47,224,138,0.45); line-height: 1.3; margin-bottom: 2.6rem; white-space: nowrap; }
/* staggered fly-in — the years cascade up the flight path (uses the shared .reveal observer) */
.tlx li.reveal:nth-child(2) { transition-delay: 0.07s; }
.tlx li.reveal:nth-child(3) { transition-delay: 0.14s; }
.tlx li.reveal:nth-child(4) { transition-delay: 0.21s; }
.tlx li.reveal:nth-child(5) { transition-delay: 0.28s; }
.tlx li.reveal:nth-child(6) { transition-delay: 0.35s; }
.tlx li.reveal:nth-child(7) { transition-delay: 0.42s; }
.tlx li.reveal:nth-child(8) { transition-delay: 0.52s; }
.tlx__t { display: block; font-size: var(--text-base); color: #9fb6d4; line-height: 1.5; padding-top: 1.4rem; max-width: 30ch; }
.tlx__t b { color: #fff; font-weight: 600; }
/* the now-node: brand red, pulsing — everything converges on the HITBIRDs */
.tlx li.tlx--now::before { background: var(--color-accent); border-color: #ff4d3d; animation: tlxPulse 2.2s ease-out infinite; }
.tlx li.tlx--now .tlx__y { color: #ff5747; text-shadow: 0 0 14px rgba(255,77,61,0.5); }
.tlx li.tlx--now .tlx__t { color: #eef5f1; font-size: var(--text-lg); font-weight: 600; }
@keyframes tlxPulse { 0% { box-shadow: 0 0 0 0 rgba(255,77,61,0.55); } 100% { box-shadow: 0 0 0 16px rgba(255,77,61,0); } }
@media (prefers-reduced-motion: reduce) { .tlx li.tlx--now::before { animation: none; box-shadow: 0 0 12px rgba(255,77,61,0.8); } }

/* capability groups — heading + hairline point list, 2-up */
.caps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-2xl) var(--space-3xl); }
.caps h3 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
@media (max-width: 860px) {
  .caps { grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); }
}
@media (max-width: 860px) {
  .uav-hero .cockpit__stage { height: 52vh; }
  .uavx { position: static; background: #0c2a48; padding: var(--space-lg) var(--gutter) var(--space-xl); gap: var(--space-lg); }
  .uavx__foot { flex-direction: column; align-items: stretch; }
  .uavx__cta-zone { align-items: flex-start; }
  /* sky name is display:none ≤860 — re-surface it as a normal heading in the head zone */
  .uavx .ck-uav-name { display: block; position: static; opacity: 1; text-align: left; white-space: normal;
    font-size: var(--text-3xl); color: #fff; text-shadow: none; order: -1; margin-bottom: var(--space-sm); }
}
@media (max-width: 860px) {
  .uav__top { grid-template-columns: minmax(0,1fr); gap: var(--space-xl); }
  .uav__stage { height: 40vh; min-height: 300px; }
  .uav__key { grid-template-columns: repeat(2, 1fr); }
  .uav__key .pf-card__spec:nth-child(3n) { border-right: var(--rule-hair) solid var(--color-rule); }
  .uav__key .pf-card__spec:nth-child(2n) { border-right: 0; }
}
.pf-card__ops-cap { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); margin-bottom: var(--space-sm); }
.pf-card__foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); padding: var(--space-lg); border-top: var(--rule-hair) solid var(--color-rule); }

/* Operating-points table — the "one airframe, multiple profiles" proof */
.optable { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.optable th, .optable td { text-align: left; padding: var(--space-xs) var(--space-md) var(--space-xs) 0; border-bottom: var(--rule-hair) solid var(--color-rule); font-size: var(--text-sm); white-space: nowrap; }
.optable thead th { font-family: var(--font-mono); font-size: var(--text-xs); font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-ink-3); }
.optable tbody th { font-family: var(--font-mono); font-weight: 700; color: var(--color-ink); }
.optable tbody td { font-family: var(--font-display); font-weight: 700; color: var(--color-ink); }
.optable__mode { color: var(--color-ink-3); font-weight: 400; margin-left: 5px; letter-spacing: 0; }
.optable tr:last-child th, .optable tr:last-child td { border-bottom: 0; }

/* CTA bar */
.cfg__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); border: var(--rule-hair) solid var(--color-rule-2); border-top: 0; background: var(--color-ink); color: var(--color-paper); padding: var(--space-lg); }
.cfg__cta-txt { font-size: var(--text-sm); color: oklch(82% 0 0); max-width: 52ch; }
.cfg__cta-txt b { font-family: var(--font-display); font-size: var(--text-lg); color: var(--color-paper); display: block; margin-bottom: 2px; }
.cfg__cta-btn { font-family: var(--font-mono); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.08em; background: var(--color-accent); color: #fff; text-decoration: none; padding: var(--space-sm) var(--space-lg); border: 0; white-space: nowrap; display: inline-flex; align-items: center; gap: var(--space-xs); transition: background var(--dur-fast); }
.cfg__cta-btn:hover { background: var(--color-accent-ink); }

/* Stepper bar (configure) */
.stepbar { display: flex; flex-wrap: wrap; gap: 0; border: var(--rule-hair) solid var(--color-rule-2); margin-bottom: var(--space-xl); }
.stepbar__item { flex: 1 1 0; min-width: 140px; padding: var(--space-md) var(--space-lg); border-right: var(--rule-hair) solid var(--color-rule); display: flex; align-items: baseline; gap: var(--space-sm); }
.stepbar__item:last-child { border-right: 0; }
.stepbar__n { font-family: var(--font-mono); font-size: var(--text-xs); width: 1.6em; height: 1.6em; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; border: var(--rule-hair) solid var(--color-rule-2); color: var(--color-ink-3); }
.stepbar__item.is-active .stepbar__n { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.stepbar__lbl { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-ink-3); }
.stepbar__item.is-active .stepbar__lbl { color: var(--color-ink); }

/* Operating-point chips (configure Step 1) */
.opchips { display: flex; flex-wrap: wrap; gap: 0; border: var(--rule-hair) solid var(--color-rule-2); }
.opchip { flex: 1 1 0; min-width: 150px; text-align: left; font: inherit; cursor: pointer; background: var(--color-paper); color: var(--color-ink); border: 0; border-right: var(--rule-hair) solid var(--color-rule); padding: var(--space-md) var(--space-lg); transition: background var(--dur-fast); }
.opchip:last-child { border-right: 0; }
.opchip:hover { background: var(--color-paper-2); }
.opchip[aria-pressed="true"] { background: color-mix(in oklch, var(--color-accent) 7%, var(--color-paper)); box-shadow: inset 0 -3px 0 var(--color-accent); }
.opchip__mode { display: block; font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-ink-3); }
.opchip__v { display: block; font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); letter-spacing: -0.02em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.opchip__sub { display: block; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--color-ink-3); margin-top: 2px; }

/* Summary (configure Step 3) */
.summary { border: var(--rule-hair) solid var(--color-rule-2); background: var(--color-paper); }
.summary__row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-md); padding: var(--space-md) var(--space-lg); border-bottom: var(--rule-hair) solid var(--color-rule); }
.summary__row:last-child { border-bottom: 0; }
.summary__k { font-family: var(--font-mono); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-ink-3); }
.summary__v { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }

@media (max-width: 920px) {
  .mission__cards { grid-template-columns: 1fr; }
  .mission__card { border-right: 0; border-bottom: var(--rule-hair) solid var(--color-rule); }
  .mission__card:last-child { border-bottom: 0; }
  .usp { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }
  .usp__mark { border-right: 0; padding-right: 0; }
  .pf-card__specs { grid-template-columns: repeat(2, 1fr); }
  .pf-card__spec { border-bottom: var(--rule-hair) solid var(--color-rule); }
  .opchip { min-width: 50%; }
}
