/* ============================================================
   Werkspur — werkspur.at marketing page
   Design tokens + styles per design_handoff_werkspur_website
   (FoundryUI token values, recreated without the library).
   ============================================================ */

/* ---------- Fonts (self-hosted — no Google-Fonts CDN, GDPR) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/jetbrains-mono-latin-600-normal.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --accent: #f97316;
  --a600: #ea580c;
  --a400: #fb8237;
  --a300: #fba474;
  --glow: #fb923c;
  --accent-fg: #ffffff;

  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f4f6f8;
  --surface-3: #eceff2;

  --fg-1: #181d22;
  --fg-2: #3a434c;
  --fg-3: #6b7682;
  --fg-4: #97a1ab;

  --border: #e3e7eb;
  --border-strong: #d7dce1;

  --dark: #0d1115;
  --dark-card: #12171d;
  --dark-card-2: #151b21;

  --ok: #15a05a;
  --ok-bg: #e3f5ea;
  --ok-fg: #0f7a43;
  --warn: #d97706;
  --warn-bg: #fdf0d9;
  --warn-fg: #a65a06;
  --err: #dc2626;
  --err-bg: #fbe3e3;
  --err-fg: #a91d1d;
  --idle: #5b7184;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg-1);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--a600); }
h1, h2, h3, p { margin: 0; }
.lucide { width: 1em; height: 1em; stroke-width: 1.75; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section[id] { scroll-margin-top: 84px; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow--glow { color: var(--glow); }

.h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  max-width: 720px;
}

/* ---------- Buttons (FoundryUI-equivalent) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
}
.btn--sm { min-height: 36px; padding: 6px 14px; font-size: 14px; }
.btn--lg { min-height: 48px; padding: 10px 22px; font-size: 15.5px; }
.btn--primary { background: var(--accent); color: var(--accent-fg); }
.btn--primary:hover { background: var(--a600); color: var(--accent-fg); }
.btn--secondary { background: rgba(255, 255, 255, 0.92); color: var(--fg-1); }
.btn--secondary:hover { background: #fff; color: var(--fg-1); }
.btn--outline { background: var(--surface); color: var(--fg-2); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--fg-4); color: var(--fg-1); }
.btn--default { background: var(--accent); color: var(--accent-fg); }
.btn--default:hover { background: var(--a600); }
.btn--grow { flex: 1; }

/* ---------- Inputs ---------- */
.input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--fg-1);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  outline: none;
}
.input:focus { border-color: var(--accent); }

/* ---------- Badge ---------- */
.badge--ok {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ok-fg);
  background: rgba(21, 160, 90, 0.14);
  border: 1px solid rgba(21, 160, 90, 0.35);
  padding: 2px 10px;
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 50;
  background: rgba(13, 17, 21, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; color: #fff; }
.nav__brand:hover { color: #fff; }
.nav__wordmark { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.nav__chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 2px 6px;
  text-transform: uppercase;
}
.ws-navlinks { display: flex; align-items: center; gap: 28px; font-size: 14.5px; color: rgba(255, 255, 255, 0.72); }
.ws-navlinks a { color: inherit; }
.ws-navlinks a:hover { color: #fff; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .ws-navlinks {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    background: rgba(13, 17, 21, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }
  .ws-navlinks a { padding: 12px 28px; }
  .nav.is-open .ws-navlinks { display: flex; }
  .nav__burger { display: flex; }
}
@media (max-width: 480px) {
  .nav__actions .btn { display: none; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 150px 0 90px;
  overflow: hidden;
}
.blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 66px 66px;
  pointer-events: none;
}
.blueprint--dim {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.hero__inner { position: relative; }
.hero__copy { max-width: 860px; }
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glow);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__h1 {
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.hero__h1 .accent { color: var(--accent); }
.hero__h1 .dim { color: rgba(255, 255, 255, 0.5); }
.hero__lead {
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
  max-width: 660px;
}
.hero__kicker {
  margin: 30px 0 34px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero__kicker .dim { color: rgba(255, 255, 255, 0.5); }
.hero__kicker .accent { color: var(--accent); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Cockpit window */
.cockpit { margin-top: 64px; position: relative; }
.cockpit__frame {
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: var(--dark-card);
}
.cockpit__bar {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  background: #0f141a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cockpit__title { font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.cockpit__shot { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0f1318; }
.cockpit__data {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  background: var(--dark-card);
}
.cockpit__datum {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  min-width: 0;
}
.cockpit__datum + .cockpit__datum { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.cockpit__datum-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.5); }
.cockpit__datum-value { font-family: var(--mono); font-size: 22px; font-weight: 600; color: #fff; }
.cockpit__datum-value--ok { color: #4ade80; }
@media (max-width: 700px) {
  .cockpit__datum { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Image placeholders (replace with <img> — see README) */
.shot-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(150, 160, 172, 0.8);
  border: 1px dashed rgba(150, 160, 172, 0.35);
  border-radius: 10px;
  margin: 14px;
}
.shot-placeholder--light { color: var(--fg-4); border-color: var(--border-strong); }
.shot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ================= SECTIONS (shared) ================= */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--bg { background: var(--bg); }
.section--surface { background: var(--surface); border-top: 1px solid var(--border); }
.section--surface-bordered {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.section--dark .container { position: relative; }

.cards { display: grid; gap: 20px; margin-top: 44px; }
.cards--min300 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

/* ================= PROBLEM ================= */
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
}
.problem-card--warn { border-left: 4px solid var(--warn); }
.problem-card--err { border-left: 4px solid var(--err); }
.problem-card--idle { border-left: 4px solid var(--idle); }
.problem-card__icon { display: inline-flex; font-size: 26px; margin-bottom: 18px; }
.problem-card--warn .problem-card__icon { color: var(--warn); }
.problem-card--err .problem-card__icon { color: var(--err); }
.problem-card--idle .problem-card__icon { color: var(--idle); }
.problem-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.problem-card p { font-size: 15.5px; line-height: 1.6; color: var(--fg-3); }

.punch {
  margin-top: 22px;
  background: var(--dark-card);
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.punch p { font-size: clamp(18px, 2.2vw, 24px); line-height: 1.4; font-weight: 500; max-width: 760px; }
.punch .accent { color: var(--accent); }

/* ================= FUNKTIONEN ================= */
.feature-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.shot-cell {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 0;
}
.shot-cell--wide { grid-column: 1 / -1; }
.shot-cell__frame { border-bottom: 1px solid var(--border); background: var(--surface-3); }
.shot-cell__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}
.shot-cell--wide .shot-cell__frame img { aspect-ratio: 21 / 9; }
.shot-cell figcaption { padding: 22px 28px 26px; }
.shots-note { margin: 14px 0 0; font-family: var(--mono); font-size: 12px; color: var(--fg-4); }
.feature-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 44px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
}
.feature-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.feature-card__icon { display: inline-flex; font-size: 22px; color: var(--accent); }
.feature-card h3 { font-size: 19px; font-weight: 600; }
.feature-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-2);
}
.feature-card li { display: flex; gap: 12px; align-items: flex-start; }
.feature-card li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  background: var(--accent);
  margin-top: 8px;
}

/* ================= BUSINESS CASE ================= */
.bizcase__intro { margin: 20px 0 0; font-size: 18px; line-height: 1.6; color: var(--fg-3); max-width: 720px; }
.bizcase__grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: start;
}
@media (max-width: 860px) { .bizcase__grid { grid-template-columns: 1fr; } }

.roi-inputs { background: var(--bg); border: 1px solid var(--border); padding: 28px; }
.roi-inputs__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 22px;
}
.roi-label { display: block; font-size: 13px; font-weight: 600; color: var(--fg-2); margin-bottom: 8px; }
.roi-label--spaced { margin-top: 20px; }
.roi-shifts { display: flex; gap: 8px; }
.roi-presets-wrap { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.roi-presets-hint { font-size: 12px; color: var(--fg-4); margin-bottom: 10px; }
.roi-presets { display: flex; flex-wrap: wrap; gap: 8px; }

.roi-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 16px; }
.roi-tile { background: var(--bg); border: 1px solid var(--border); padding: 24px; }
.roi-tile__label { font-size: 13px; color: var(--fg-3); margin-bottom: 8px; }
.roi-tile__value {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-1);
}
.roi-tile--ok { background: var(--ok-bg); border-color: rgba(21, 160, 90, 0.28); }
.roi-tile--ok .roi-tile__label, .roi-tile--ok .roi-tile__value { color: var(--ok-fg); }
.roi-tile--dark { background: var(--dark-card); border: none; color: #fff; }
.roi-tile--dark .roi-tile__label { color: rgba(255, 255, 255, 0.6); }
.roi-tile--dark .roi-tile__value { color: var(--glow); }

.roi-warn {
  margin-top: 16px;
  background: var(--warn-bg);
  border: 1px solid rgba(217, 119, 6, 0.28);
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--warn-fg);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.roi-warn .lucide-wrap { display: inline-flex; font-size: 18px; flex: none; margin-top: 1px; }
.roi-warn[hidden] { display: none; }

.bizcase__note { margin: 22px 0 0; font-size: 15px; line-height: 1.6; color: var(--fg-3); }
.bizcase__note strong { color: var(--fg-2); font-weight: 500; }
.bizcase__fineprint { margin: 14px 0 0; font-size: 13px; line-height: 1.55; color: var(--fg-4); }

/* ================= BETRIEB ================= */
.ops-panel {
  margin-top: 44px;
  background: var(--dark-card-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ops-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 6px 28px;
  padding: 18px 24px;
}
.ops-row + .ops-row { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.ops-row h3 { margin: 0; font-size: 16px; font-weight: 600; }
.ops-row p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 700px) {
  .ops-row { grid-template-columns: 1fr; }
}

.audit-strip {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-left: 4px solid var(--ok);
  background: rgba(21, 160, 90, 0.1);
  padding: 16px 20px;
}
.audit-strip .lucide-wrap { display: inline-flex; font-size: 20px; color: #4ade80; }
.audit-strip__title { font-size: 15px; font-weight: 600; color: #d9f2e4; }
.audit-strip .badge--ok { color: #4ade80; background: rgba(74, 222, 128, 0.1); border-color: rgba(74, 222, 128, 0.4); }
.audit-strip__mono { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: rgba(217, 242, 228, 0.75); flex-basis: 100%; }

/* ================= PREISE ================= */
.price-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  grid-column: span 2;
  min-width: 0;
}
@media (max-width: 1000px) { .price-panel { grid-column: span 1; } }
.price-rows { display: flex; flex-direction: column; gap: 2px; }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row__name { font-size: 17px; font-weight: 600; }
.price-row__desc { font-size: 14px; color: var(--fg-3); }
.price-row__price { font-family: var(--mono); font-size: 22px; font-weight: 600; white-space: nowrap; }
.price-row__price small { font-size: 13px; color: var(--fg-4); font-weight: 600; }
.price-row__incl { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--ok-fg); white-space: nowrap; }

.price-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.price-card--dark { background: var(--dark-card); padding: 28px; color: #fff; }
.price-card--pilot { background: var(--surface); border: 1px solid var(--accent); padding: 28px; }
.price-card__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-card--dark .price-card__eyebrow { color: var(--glow); }
.price-card--pilot .price-card__eyebrow { color: var(--accent); }
.price-card__price { font-family: var(--mono); font-size: 28px; font-weight: 600; }
.price-card--dark .price-card__price small { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.price-card--pilot .price-card__price small { font-size: 13px; color: var(--fg-4); }
.price-card--dark p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.6); }
.price-card--pilot p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; color: var(--fg-3); }
.price-footnote { margin: 26px 0 0; font-size: 14.5px; color: var(--fg-3); max-width: 760px; }

/* Pricing-off band (used when showPricing = false) */
.price-alt-band {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.price-alt-band p { font-size: clamp(18px, 2.2vw, 24px); font-weight: 500; max-width: 640px; line-height: 1.4; }

/* ================= ABLAUF ================= */
.steps-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--bg);
  border: 1px solid var(--border);
}
.steps-strip .step { padding: 26px 28px; }
.steps-strip .step + .step { border-left: 1px solid var(--border); }
.step__label { font-family: var(--mono); font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.steps-strip h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
.steps-strip p { font-size: 15px; line-height: 1.6; color: var(--fg-3); }
@media (max-width: 700px) {
  .steps-strip { grid-template-columns: 1fr; }
  .steps-strip .step + .step { border-left: none; border-top: 1px solid var(--border); }
}
.ablauf__cta { margin-top: 32px; }

/* ================= FAQ ================= */
.faq .container { max-width: 860px; }
.faq h2 { margin-bottom: 40px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px 24px;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg-1);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary .marker { color: var(--accent); font-size: 20px; flex: none; }
.faq__list details[open] summary .marker { transform: rotate(45deg); }
.faq__list details p { margin: 14px 0 0; font-size: 15px; line-height: 1.65; color: var(--fg-3); }

/* ================= ÜBER ================= */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 44px;
  align-items: center;
}
.about__h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 20px; }
.about__lead { margin: 0 0 18px; font-size: 17px; line-height: 1.65; color: var(--fg-2); }
.about__sub { font-size: 17px; line-height: 1.65; color: var(--fg-3); }
.about__side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.about__portrait {
  display: block;
  width: 180px; aspect-ratio: 896 / 1088;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface-3);
}
.about__contact { font-family: var(--mono); font-size: 13.5px; line-height: 1.8; color: var(--fg-2); }
.about__contact .name { color: var(--fg-1); font-weight: 600; }
.about__contact .addr { color: var(--fg-3); }

/* ================= FOOTER ================= */
.footer { background: var(--dark); color: #fff; padding: clamp(56px, 8vw, 90px) 0 40px; }
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__cta-copy { max-width: 520px; }
.footer__h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.footer__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.footer__contact { font-family: var(--mono); font-size: 13px; line-height: 1.9; color: rgba(255, 255, 255, 0.55); }
.footer__contact .head { color: #fff; font-weight: 600; margin-bottom: 6px; }
.footer__contact a { color: var(--glow); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.footer__brand { display: flex; align-items: center; gap: 11px; }
.footer__brand .wordmark { font-weight: 600; }
.footer__brand .tag { font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.footer__seo {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 560px;
  text-align: right;
}
.footer__legal { font-family: var(--mono); font-size: 11.5px; }
.footer__legal a { color: rgba(255, 255, 255, 0.4); }
.footer__legal a:hover { color: rgba(255, 255, 255, 0.7); }

/* ================= Mobile swipe rows ================= */
/* Card groups marked .swipe-row become horizontal scroll-snap rows on
   phones: the next card peeks in from the right edge (that peek is the
   swipe affordance). The negative margins let cards bleed to the
   viewport edge; scrolling stays inside the row, not the page.
   Gated on a coarse pointer: with a mouse there is no swipe gesture and
   the scrollbar is hidden, so narrow desktop windows keep the stacked
   grid instead. */
@media (max-width: 700px) {
  .feature-shots { grid-template-columns: 1fr; }
  .shot-cell--wide .shot-cell__frame img { aspect-ratio: 16 / 9; }
}
@media (max-width: 700px) and (pointer: coarse) {
  .swipe-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
    scroll-padding-left: 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .swipe-row::-webkit-scrollbar { display: none; }
  .swipe-row > * { flex: 0 0 85%; min-width: 0; scroll-snap-align: start; }
}

/* ================= Impressum (subpage) ================= */
.legal-page { max-width: 720px; margin: 0 auto; padding: 140px 28px 80px; }
.legal-page h1 { font-size: 32px; letter-spacing: -0.02em; margin-bottom: 24px; }
.legal-page h2 { font-size: 19px; margin: 28px 0 8px; }
.legal-page p { font-size: 15.5px; line-height: 1.7; color: var(--fg-2); margin: 0 0 10px; }
