/* ============================================================
   Marketingjoes · Team Joes — styles.css (V3 "Space")
   Dark-first: Deep Navy · Gold-Glow · Space Grotesk + Inter
   ============================================================ */

:root {
  --bg0: #0A1020;            /* Seite */
  --bg1: #0F1730;            /* Panels */
  --bg2: #141F3D;            /* Panels hover / Akzent */
  --navy: #1F2A44;           /* Brand-Navy (Logo, Akzente) */
  --gold: #D4AF37;
  --gold-bright: #E8C95C;
  --gold-glow: rgba(212, 175, 55, 0.16);
  --gold-soft: rgba(212, 175, 55, 0.42);
  --ink: #111111;
  --text: #E9EDF6;
  --muted: #9AA6C0;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.12);
  --maxw: 1140px;
  --font-head: 'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(31, 42, 68, 0.85) 0%, transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(20, 31, 61, 0.9) 0%, transparent 55%),
    var(--bg0);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
p { margin: 0 0 16px; }
a { color: var(--text); }

.ic { width: 18px; height: 18px; flex: none; }

/* ---------- Glow-Orbs ---------- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.orb-1 { width: 480px; height: 480px; top: -120px; right: -80px; background: rgba(212, 175, 55, 0.13); }
.orb-2 { width: 380px; height: 380px; bottom: -140px; left: -120px; background: rgba(63, 94, 175, 0.22); animation-delay: 3s; }
.orb-3 { width: 420px; height: 420px; top: 10%; right: -160px; background: rgba(63, 94, 175, 0.18); }
.orb-4 { width: 520px; height: 520px; top: -180px; left: 50%; transform: translateX(-50%); background: rgba(212, 175, 55, 0.10); }

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, 24px) scale(1.08); }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }

/* ---------- Marker-Highlight ---------- */
.marker { position: relative; z-index: 0; white-space: nowrap; }
.marker::before {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 5%;
  height: 44%;
  background: var(--gold-soft);
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s var(--ease-out) 0.35s;
}
.in-view .marker::before { transform: scaleX(1); }
.marker-gold::before { background: rgba(212, 175, 55, 0.5); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marker::before { transform: scaleX(1); transition: none; }
  .stat-badge, .orb { animation: none; }
  .marquee-track { animation: none; transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(10, 16, 32, 0.72);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 700 !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5); }
.btn-primary .ic { transition: transform 0.2s ease; }
.btn-primary:hover .ic { transform: translateX(3px); }
.btn-secondary {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-secondary:hover { background: var(--gold); color: var(--ink); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Sektionen, Typo ---------- */
.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 120px) 24px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.section-heading { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-heading.narrow { max-width: 680px; }
.section-sub { color: var(--muted); font-size: 17px; }

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.14;
}

h3 { font-size: 19px; font-weight: 600; }

/* Panels (Basis-Karte) */
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.panel:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(56px, 8vw, 100px);
  overflow: visible;
}

.hero h1 {
  font-size: clamp(36px, 4.35vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero-benefits {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.hero-benefits .ic { color: var(--gold); width: 20px; height: 20px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Founder-Card */
.founder-card { position: relative; margin: 0; z-index: 1; }
.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}
.founder-fallback { display: none; }
.img-missing img { display: none; }
.founder-card.img-missing .founder-fallback,
.team-photo.img-missing .founder-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 28px;
  background:
    radial-gradient(400px 300px at 70% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg2) 0%, var(--bg1) 100%);
  border: 1px solid var(--line-strong);
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}
.founder-card.img-missing .founder-fallback { aspect-ratio: 4 / 5; }
.founder-fallback .brand-mark { width: 56px; height: 56px; font-size: 20px; }
.founder-fallback small { color: rgba(255, 255, 255, 0.4); }

.founder-card figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  padding-left: 6px;
}
.founder-card figcaption strong { color: var(--text); font-size: 16px; }
.founder-card figcaption span { color: var(--muted); font-size: 14px; }

.stat-badge {
  position: absolute;
  top: 22px;
  right: -16px;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 48, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  backdrop-filter: blur(8px);
  animation: badge-float 5s ease-in-out infinite;
}
.stat-badge strong {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}
.stat-badge span { color: var(--muted); font-size: 12.5px; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee i { color: var(--gold); font-style: normal; font-size: 13px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.problem-grid article { padding: 30px 28px; }
.problem-grid h3 { margin-bottom: 10px; }
.problem-grid p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-card { padding: 34px 32px 30px; }
.benefit-num {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.benefit-card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Build / Bento ---------- */
.build-section { position: relative; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.bento-card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.span-3 { grid-column: span 3; }
.span-2 { grid-column: span 2; }
.card-number {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.bento-card h3 { margin-bottom: 10px; }
.bento-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- Unterschied ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.diff-card { border-radius: var(--radius); padding: 36px 34px; }
.diff-card.others {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  opacity: 0.92;
}
.diff-card.us {
  background:
    radial-gradient(420px 260px at 80% 0%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-glow);
}
.diff-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 20px;
  color: var(--text);
}
.diff-card.us .diff-label { color: var(--gold); }
.diff-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.diff-card li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.diff-card li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.diff-card.others li::before { content: '✕'; color: #C46A60; }
.diff-card.us li::before { content: '✓'; color: var(--gold); }
.diff-card.us li { color: var(--text); }

/* ---------- Timeline ---------- */
.timeline { display: grid; max-width: 760px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 42px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), var(--line));
}
.step:last-child::before { display: none; }
.step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  flex: none;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); max-width: 60ch; }

/* ---------- KI ---------- */
.ai-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.ai-copy p:last-child { color: var(--muted); font-size: 16.5px; }
.ai-grid { display: grid; gap: 18px; }
.ai-grid article { padding: 26px 28px; }
.ai-grid article:hover { transform: translateX(6px); }
.ai-grid h3 { margin-bottom: 8px; }
.ai-grid p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Proof ---------- */
.proof-section { overflow: visible; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.metric { padding: 26px 24px; }
.metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.metric > span { color: var(--muted); font-size: 14px; }

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.case-quote {
  margin: 0;
  padding: clamp(28px, 3vw, 40px);
  border-left: 3px solid var(--gold);
}
.case-quote p { font-size: 17px; line-height: 1.75; color: var(--text); }
.case-quote footer { color: var(--muted); font-size: 14px; font-weight: 600; }

/* Video-Slot (16:9) */
.video-frame { display: flex; flex-direction: column; }
.video-slot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.45);
  background:
    radial-gradient(500px 280px at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(165deg, var(--bg2) 0%, var(--bg1) 100%);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), var(--shadow-glow);
  position: relative;
}
.video-slot iframe,
.video-slot video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}
.video-placeholder svg {
  width: 58px;
  height: 58px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  padding: 14px;
}
.video-placeholder small { color: rgba(255, 255, 255, 0.35); }
.video-caption { margin-top: 14px; color: var(--muted); font-size: 14px; }

/* ---------- Story / Über uns ---------- */
.story-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.story-text p { color: var(--muted); font-size: 16.5px; }
.story-stats { display: grid; gap: 18px; margin-top: 24px; }
.story-stats > div { border-left: 3px solid var(--gold); padding-left: 22px; }
.story-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}
.story-stats span { color: var(--muted); font-size: 15px; }

.team-photo { margin: 0; position: sticky; top: 96px; display: grid; gap: 0; }
.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.team-photo.img-missing .founder-fallback { aspect-ratio: 3 / 2; border-radius: 24px; }

/* ---------- Fit-Check ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.fit-card { border-radius: var(--radius); padding: 34px 32px; }
.fit-card.bad { opacity: 0.92; }
.fit-card.bad:hover { transform: none; border-color: var(--line); box-shadow: none; }
.fit-card.good {
  background:
    radial-gradient(420px 260px at 80% 0%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-glow);
}
.fit-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 18px;
}
.fit-card.good .fit-label { color: var(--gold); }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.fit-card li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 15.5px;
}
.fit-card li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.fit-card.bad li::before { content: '✕'; color: #C46A60; }
.fit-card.good li::before { content: '✓'; color: var(--gold); }

/* ---------- Webinar-Analyse-Box ---------- */
.diagnostic-wrap { padding-top: 0; }
.diagnostic-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4vw, 48px);
}
.diagnostic-box:hover { transform: none; }
.diagnostic-box h2 { font-size: clamp(24px, 2.8vw, 32px); }
.diagnostic-box p:last-child { margin: 0; color: var(--muted); max-width: 60ch; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: clamp(96px, 12vw, 150px) 24px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 380px at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  overflow: hidden;
}
.final-inner { position: relative; max-width: 720px; margin: 0 auto; z-index: 1; }
.final-cta h2 {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  max-width: 56ch;
  margin: 0 auto 32px;
}
.cta-note { font-size: 14px !important; color: rgba(255, 255, 255, 0.45) !important; margin-top: 18px !important; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 24px;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; color: var(--muted); font-size: 14.5px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a { color: var(--muted); font-size: 14.5px; text-decoration: none; }
.site-footer nav a:hover { color: var(--text); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .founder-card { max-width: 420px; }
  .stat-badge { right: 14px; }
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  .proof-layout { grid-template-columns: 1fr; }
  .ai-section { grid-template-columns: 1fr; }
  .story-section { grid-template-columns: 1fr; }
  .team-photo { position: static; max-width: 560px; }
}

@media (max-width: 768px) {
  .nav a:not(.nav-cta) { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .span-3, .span-2 { grid-column: auto; }
  .diff-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .diagnostic-box { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-actions .btn { width: 100%; }
  .case-metrics { grid-template-columns: 1fr; }
  .orb { filter: blur(70px); }
}

/* ---------- Legal Pages (Impressum / Datenschutz) ---------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(56px, 7vw, 90px) 24px; }
.legal-wrap h1 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 700; margin-bottom: 12px; }
.legal-lead { color: var(--muted); font-size: 17px; margin-bottom: 44px; }
.legal-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 40px;
}
.legal-card p { margin: 0; color: var(--text); line-height: 1.8; }
.legal-card a { color: var(--gold); }
.legal-wrap h2 { font-size: 21px; font-weight: 700; margin: 44px 0 12px; }
.legal-wrap p { color: var(--muted); font-size: 15.5px; }
.legal-wrap a { color: var(--gold); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
.legal-footer-note { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
