/* FabCaptain Produktseite. Farbpalette aus Konzept 3.11, keine externen Schriften (Datenschutz). */
:root {
  --navy: #0b1e3f;
  --navy-deep: #071530;
  --navy-accent: #1b3a6b;
  --surface-raised: #10284f;
  --border: #22406e;
  --silver-hi: #f4f6f9;
  --silver: #c3cad4;
  --silver-lo: #7f8a99;
  --status-ok: #2e9e6b;
  --status-warn: #e0a21b;
  --status-alert: #d64545;
  --font: "Montserrat", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--navy);
  color: var(--silver-hi);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--silver-hi); }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }

/* Kopf */
header.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(7, 21, 48, 0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
header.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.brand span { font-size: 1.35rem; letter-spacing: -0.01em; }
.brand b { font-weight: 700; color: var(--silver); }
nav.main a { text-decoration: none; color: var(--silver); margin-left: 22px; font-size: 0.95rem; }
nav.main a:hover { color: var(--silver-hi); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: 1px solid transparent;
}
.btn-primary { background: var(--navy-accent); color: var(--silver-hi); }
.btn-primary:hover { background: #244a85; }
.btn-ghost { border-color: var(--border); color: var(--silver); }
.btn-ghost:hover { background: var(--surface-raised); color: var(--silver-hi); }

/* Hero */
.hero { padding: 96px 0 72px; background: radial-gradient(circle at 30% 20%, #15305f 0, var(--navy-deep) 70%); border-bottom: 1px solid var(--border); }
.hero .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.12; margin: 0 0 20px; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--silver); }
.hero p.lead { font-size: 1.2rem; color: var(--silver); max-width: 56ch; margin: 0 0 32px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .mark { justify-self: center; width: min(320px, 70%); filter: drop-shadow(0 20px 40px rgba(0,0,0,.45)); }
.kicker { display: inline-block; font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--silver-lo); margin-bottom: 18px; }

/* Abschnitte */
section { padding: 80px 0; }
section.alt { background: var(--navy-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 12px; letter-spacing: -0.01em; }
p.sub { color: var(--silver-lo); font-size: 1.05rem; max-width: 64ch; margin: 0 0 40px; }
.grid { display: grid; gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--navy-deep); border: 1px solid var(--border); border-radius: 12px; padding: 26px;
}
section.alt .card { background: var(--navy); }
.card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--silver); font-size: 0.97rem; }
.card .tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-lo); margin-bottom: 12px; }
.ampel { display: flex; gap: 10px; margin-top: 14px; }
.ampel span { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.ok { background: var(--status-ok); } .warn { background: var(--status-warn); } .alert { background: var(--status-alert); }

/* Ablauf */
ol.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
ol.steps li { background: var(--navy-deep); border: 1px solid var(--border); border-radius: 12px; padding: 22px; counter-increment: s; }
ol.steps li::before { content: counter(s); display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy-accent); font-weight: 700; margin-bottom: 12px; }
ol.steps h3 { margin: 0 0 6px; font-size: 1rem; }
ol.steps p { margin: 0; color: var(--silver); font-size: 0.93rem; }

/* Team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person { background: var(--navy); border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.person .photo {
  width: 112px; height: 112px; border-radius: 50%; object-fit: cover; margin-bottom: 16px;
  border: 3px solid var(--border); background: var(--surface-raised);
}
.person .initials {
  width: 112px; height: 112px; border-radius: 50%; margin-bottom: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700; color: var(--silver); background: linear-gradient(135deg, #15305f, var(--navy-deep)); border: 3px solid var(--border);
}
.person h3 { margin: 0 0 4px; font-size: 1.12rem; }
.person .role { color: var(--silver-lo); font-size: 0.88rem; margin: 0 0 14px; min-height: 2.6em; }
.person p.bio { margin: 0; color: var(--silver); font-size: 0.93rem; }
.person details summary { cursor: pointer; color: var(--silver-lo); font-size: 0.85rem; margin-top: 12px; }
.person details p { margin-top: 10px; }

.person .photo.illustration { position: relative; }
.person .photo-wrap { position: relative; width: 112px; margin-bottom: 16px; }
.person .photo-wrap .photo { margin-bottom: 0; }
.person .photo-wrap .note { position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver-lo); background: var(--navy); padding: 1px 8px; border: 1px solid var(--border); border-radius: 999px; white-space: nowrap; }

/* Pilot */
.pilot { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.pilot ul { margin: 0; padding-left: 20px; color: var(--silver); }
.pilot li { margin-bottom: 8px; }

/* Kontakt / Fuss */
.contact .card { text-align: center; padding: 40px; }
footer { border-top: 1px solid var(--border); padding: 32px 0; color: var(--silver-lo); font-size: 0.88rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--silver-lo); }

/* Impressum */
.legal { max-width: 72ch; }
.legal h2 { font-size: 1.3rem; margin-top: 36px; }
.legal p { color: var(--silver); }

@media (max-width: 900px) {
  .hero .wrap, .grid.three, .grid.two, .team, .pilot { grid-template-columns: 1fr; }
  ol.steps { grid-template-columns: 1fr 1fr; }
  .hero { padding: 64px 0 48px; }
  .hero .mark { order: -1; width: 160px; }
  nav.main { display: none; }
}
