/* =========================================================
   RescueGrid – Stylesheet
   Farbwelt nach Logo: Schwarz / Rot / Silber
   ========================================================= */

:root {
  --bg:        #08090c;
  --bg-soft:   #0d0f14;
  --bg-card:   #12141b;
  --bg-card-2: #161922;
  --line:      #23262f;
  --line-soft: #1a1d25;

  --red:       #e10600;
  --red-bright:#ff2a1f;
  --red-deep:  #a30400;
  --red-glow:  rgba(225, 6, 0, 0.55);

  --silver:    #d7dbe2;
  --silver-2:  #aeb4c0;
  --steel:     #8a909c;
  --muted:     #6b7280;

  --white:     #f4f6fa;

  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1180px;

  --shadow:    0 18px 50px rgba(0,0,0,0.55);
  --grad-red:  linear-gradient(120deg, #ff3b30 0%, var(--red) 55%, var(--red-deep) 100%);
  --grad-steel:linear-gradient(120deg, #ffffff 0%, var(--silver) 45%, var(--steel) 100%);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--silver-2);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { color: var(--white); line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 700; }
p  { font-size: 1rem; }
strong { color: var(--silver); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* Anker-Offset unter der Sticky-Navigation */
section[id], main[id] { scroll-margin-top: 84px; }

/* Sichtbarer Fokus für Tastatur-Navigation */
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(225,6,0,.35); color: #fff; }

/* ===== Scroll-Fortschritt ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  z-index: 200; background: var(--grad-red);
  box-shadow: 0 0 12px var(--red-glow);
}

/* ===== Hintergrund-Effekte ===== */
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.bg-glow {
  position: fixed; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; z-index: -2;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  filter: blur(60px); opacity: 0.4; pointer-events: none;
  transition: transform .2s linear;
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 480px; height: 480px; z-index: -1;
  margin: -240px 0 0 -240px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(225,6,0,0.10) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s ease; will-change: transform;
}

/* ===== Navigation ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(8,9,12,0.9); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: 'Rajdhani', sans-serif; }
.brand-logo {
  display: block; flex: none; width: 40px; height: 40px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 16px rgba(225,6,0,.22);
  transition: box-shadow .3s, transform .3s;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.18); display: block; }
.brand:hover .brand-logo { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 22px rgba(225,6,0,.45); transform: translateY(-1px); }
.brand-text { font-weight: 700; font-size: 1.3rem; letter-spacing: .04em; color: var(--silver); }
.brand-accent { color: var(--red-bright); }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; font-size: .94rem; font-weight: 500; color: var(--silver-2); transition: color .2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-red); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 4px; }
.nav-cta::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--silver); border-radius: 2px; transition: .3s; }

/* ===== Buttons ===== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; white-space: nowrap;
  font-weight: 600; font-size: .96rem; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s, box-shadow .25s, background .25s, border-color .25s;
}
.btn-primary { background: var(--grad-red); color: #fff; box-shadow: 0 8px 26px rgba(225,6,0,.38); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(225,6,0,.5); }
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: rgba(255,255,255,.03); border-color: var(--line); color: var(--silver); }
.btn-ghost:hover { border-color: var(--steel); color: var(--white); transform: translateY(-2px); }

/* ===== Hero ===== */
.hero { position: relative; padding: 84px 0 64px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 28px;
  background: rgba(225,6,0,.08); border: 1px solid rgba(225,6,0,.28);
  color: var(--silver); font-size: .85rem; font-weight: 500; letter-spacing: .02em;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 0 0 var(--red-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--red-glow)} 70%{box-shadow:0 0 0 10px rgba(225,6,0,0)} 100%{box-shadow:0 0 0 0 rgba(225,6,0,0)} }

.hero-title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; letter-spacing: -0.03em; }
.grad { display: inline-block; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { max-width: 540px; margin: 26px 0 0; font-size: 1.13rem; color: var(--silver-2); }
.hero-claim { margin-top: 18px; font-family: 'Rajdhani', sans-serif; font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); }
.hero-claim strong { color: var(--red-bright); }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

/* App-Mockup „Lagebild" */
.hero-visual { display: grid; place-items: center; position: relative; }
.hero-visual::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 92%; height: 86%;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--red-glow), transparent 64%);
  filter: blur(56px); opacity: .42; animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: .34; } 50% { opacity: .55; } }

.app-mock {
  position: relative; z-index: 1; width: 100%; max-width: 480px;
  background: linear-gradient(165deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
  animation: appFloat 7s ease-in-out infinite;
}
@keyframes appFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.app-bar { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(0,0,0,.25); border-bottom: 1px solid var(--line); }
.app-dots { display: flex; gap: 6px; }
.app-dots i { width: 10px; height: 10px; border-radius: 50%; background: #2c303a; }
.app-dots i:first-child { background: #e15b54; }
.app-title { font-size: .8rem; color: var(--steel); font-family: 'Rajdhani', sans-serif; letter-spacing: .03em; }
.app-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--red-bright); }
.app-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); animation: pulse 1.6s infinite; }
.app-body { display: grid; grid-template-columns: 1fr 138px; gap: 0; }
.app-map { border-right: 1px solid var(--line); }
.app-map svg { display: block; width: 100%; height: 100%; }
.app-side { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 10px; background: rgba(0,0,0,.12); }
.side-row { display: flex; align-items: baseline; justify-content: space-between; }
.side-k { font-size: .72rem; color: var(--steel); text-transform: uppercase; letter-spacing: .05em; }
.side-v { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.side-v.hot { color: var(--red-bright); }
.side-prog { margin-top: 4px; }
.side-prog .side-k { display: block; margin-bottom: 6px; }
.bar { height: 7px; border-radius: 4px; background: #1c2029; overflow: hidden; }
.bar span { display: block; height: 100%; width: 0; border-radius: 4px; background: var(--grad-red); animation: fillbar 2.4s var(--ease) forwards; }
@keyframes fillbar { to { width: var(--w); } }
.side-pct { display: block; margin-top: 5px; font-size: .72rem; color: var(--silver-2); text-align: right; }
.side-feed { margin-top: 6px; border-top: 1px solid var(--line); padding-top: 10px; display: flex; flex-direction: column; gap: 7px; }
.side-feed p { font-size: .72rem; color: var(--silver-2); display: flex; align-items: center; gap: 7px; margin: 0; line-height: 1.35; }
.side-feed i { width: 6px; height: 6px; border-radius: 50%; background: var(--steel); flex: none; }
.side-feed i.hot { background: var(--red-bright); box-shadow: 0 0 8px var(--red-bright); }

.scroll-hint { display: grid; place-items: center; margin-top: 46px; }
.scroll-hint span {
  width: 24px; height: 38px; border: 2px solid var(--line); border-radius: 14px; position: relative;
}
.scroll-hint span::before {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; border-radius: 2px; background: var(--red-bright);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0; top:7px} 30%{opacity:1} 60%{opacity:1; top:18px} 100%{opacity:0; top:18px} }

.hero-stats { display: flex; gap: 18px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.stat {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; min-width: 130px; padding: 20px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .25s, transform .25s;
}
.stat:hover { border-color: rgba(225,6,0,.4); transform: translateY(-3px); }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--steel); text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }

.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }

/* ===== Trust-Leiste ===== */
.trust { padding: 40px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-soft); }
.trust-label { text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.trust-row span {
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 1.05rem; letter-spacing: .04em;
  color: var(--steel); transition: color .25s;
}
.trust-row span:hover { color: var(--silver); }

/* ===== Sections ===== */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eyebrow {
  display: inline-block; margin-bottom: 16px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: .9rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-bright);
}
.lead { font-size: 1.12rem; color: var(--silver-2); margin-top: 18px; }
.lead.center { margin-left: auto; margin-right: auto; max-width: 680px; }

/* ===== Grundprinzip ===== */
.principle { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; margin-top: 20px; }
.principle-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.principle-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.principle-card .num { color: var(--red-bright); font-size: 1.5rem; }
.role-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.role-list li {
  padding: 8px 15px; border-radius: 999px; font-size: .9rem; color: var(--silver);
  background: rgba(255,255,255,.03); border: 1px solid var(--line); transition: border-color .2s, color .2s;
}
.role-list li:hover { border-color: var(--red); color: var(--white); }

.principle-visual { display: grid; place-items: center; min-height: 340px; }
.orbit { position: relative; width: 300px; height: 300px; max-width: 78vw; }
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white);
  background: radial-gradient(circle at 35% 30%, #20232c, #0c0e13);
  border: 1px solid var(--red); box-shadow: 0 0 40px rgba(225,6,0,.4), inset 0 0 20px rgba(225,6,0,.15);
  z-index: 2;
}
.orbit::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px dashed var(--line); animation: spin 40s linear infinite; }
.orbit::after { content: ""; position: absolute; inset: 18%; border-radius: 50%; border: 1px dashed var(--line-soft); animation: spin 28s linear infinite reverse; }
.orbit-node {
  position: absolute; padding: 7px 13px; border-radius: 999px; font-size: .82rem; color: var(--silver);
  background: var(--bg-card-2); border: 1px solid var(--line); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.orbit-node.n1 { top: -6px; left: 50%; transform: translateX(-50%); }
.orbit-node.n2 { top: 22%; right: -20px; animation-delay: .5s; }
.orbit-node.n3 { bottom: 22%; right: -16px; animation-delay: 1s; }
.orbit-node.n4 { bottom: -6px; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.orbit-node.n5 { bottom: 22%; left: -10px; animation-delay: 2s; }
.orbit-node.n6 { top: 22%; left: -34px; animation-delay: 2.5s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-7px) } }
.orbit-node.n1, .orbit-node.n4 { animation-name: floatx; }
@keyframes floatx { 0%,100%{ transform: translateX(-50%) translateY(0) } 50%{ transform: translateX(-50%) translateY(-7px) } }

/* ===== Vergleich ===== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.compare-col h3 { margin-bottom: 20px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.compare-col li { position: relative; padding-left: 30px; font-size: .98rem; }
.compare-col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.compare-before { background: var(--bg-card); }
.compare-before li::before { content: "✕"; color: var(--steel); }
.compare-after { background: linear-gradient(160deg, rgba(225,6,0,.07), var(--bg-card)); border-color: rgba(225,6,0,.3); }
.compare-after li::before { content: "✓"; color: var(--red-bright); }

/* ===== Zielgruppen ===== */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.audience-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: border-color .25s, box-shadow .25s; }
.audience-card:hover { border-color: rgba(225,6,0,.4); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.audience-icon { font-size: 2rem; margin-bottom: 14px; }
.audience-card h3 { margin-bottom: 8px; }
.audience-card p { color: var(--steel); font-size: .96rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span { padding: 6px 12px; border-radius: 8px; font-size: .82rem; color: var(--silver-2); background: rgba(255,255,255,.03); border: 1px solid var(--line-soft); transition: border-color .2s, color .2s; }
.tags span:hover { border-color: var(--red); color: var(--white); }
.soon {
  font-size: .62em; vertical-align: middle; margin-left: 6px;
  padding: 3px 8px; border-radius: 6px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--red-bright); background: rgba(225,6,0,.1); border: 1px solid rgba(225,6,0,.3);
  -webkit-text-fill-color: var(--red-bright);
}

/* ===== Module / Cluster ===== */
.cluster { display: grid; grid-template-columns: 320px 1fr; gap: 42px; align-items: start; margin-bottom: 72px; }
.cluster:last-child { margin-bottom: 0; }
.cluster.reverse { grid-template-columns: 1fr 320px; }
.cluster.reverse .cluster-visual { order: 2; }
.cluster.reverse .cluster-main { order: 1; }

.cluster-visual { position: sticky; top: 88px; }
.cl-graphic {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 16px;
  box-shadow: var(--shadow);
}
.cl-graphic::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% 28%, rgba(225,6,0,.10), transparent 62%); }
.cl-graphic svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.cl-caption { margin-top: 14px; font-size: .9rem; color: var(--steel); text-align: center; line-height: 1.5; }

.cluster-title { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; font-size: 1.4rem; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.cluster-idx { font-family: 'Rajdhani', sans-serif; color: var(--red-bright); font-weight: 700; font-size: 1.1rem; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; transition: transform .2s var(--ease), border-color .2s, background .2s, box-shadow .2s; position: relative; overflow: hidden; }
.feature-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-red); transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease); }
.feature-card:hover { border-color: var(--line); background: var(--bg-card-2); box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--steel); }
.feature-card.highlight { background: linear-gradient(160deg, rgba(225,6,0,.08), var(--bg-card)); border-color: rgba(225,6,0,.28); }

/* ===== Timeline ===== */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 20px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--red), var(--line)); }
.tl-item { position: relative; display: flex; gap: 24px; padding: 0 0 34px 0; }
.tl-item:last-child { padding-bottom: 0; }
.tl-marker {
  flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #fff; z-index: 1;
  background: var(--grad-red); box-shadow: 0 0 0 5px var(--bg), 0 0 18px rgba(225,6,0,.4);
}
.tl-content { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; flex: 1; transition: border-color .25s, transform .25s; }
.tl-content:hover { border-color: rgba(225,6,0,.4); transform: translateX(4px); }
.tl-content h4 { margin-bottom: 6px; }
.tl-content p { font-size: .95rem; color: var(--steel); }

/* ===== Technik ===== */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tech-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; transition: border-color .25s, transform .25s; }
.tech-card:hover { border-color: rgba(225,6,0,.35); }
.tech-card h3 { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tech-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tech-card li { position: relative; padding-left: 24px; font-size: .98rem; }
.tech-card li::before { content: "›"; position: absolute; left: 0; color: var(--red-bright); font-weight: 700; }

/* ===== Vision ===== */
.section-vision { text-align: center; background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(225,6,0,.08), transparent 70%); }
.vision-inner { max-width: 820px; margin: 0 auto; }
.vision-inner h2 { margin-top: 8px; font-size: clamp(1.9rem, 4vw, 3rem); }

/* ===== CTA ===== */
.section-cta { padding: 90px 0; }
.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card)); border: 1px solid var(--line); border-radius: 24px; padding: 60px 40px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 420px; height: 320px; background: radial-gradient(circle, var(--red-glow), transparent 65%); filter: blur(50px); opacity: .4; }
.cta-inner h2, .cta-inner .lead, .cta-inner .hero-actions { position: relative; }
.cta-mail { margin-top: 26px; font-family: 'Rajdhani', sans-serif; letter-spacing: .05em; color: var(--steel); position: relative; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 66px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer-about { max-width: 340px; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 120px; height: auto; border-radius: 14px; display: block; }
.footer-claim { color: var(--silver-2); font-size: .92rem; margin-top: 16px; font-family: 'Rajdhani', sans-serif; letter-spacing: .02em; }
.footer-desc { color: var(--steel); font-size: .9rem; margin-top: 12px; line-height: 1.65; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--steel); margin-bottom: 18px; font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.footer-col a { display: block; font-size: .94rem; color: var(--silver-2); padding: 6px 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--red-bright); transform: translateX(3px); }
.footer-op { margin-top: 16px; font-size: .85rem; color: var(--steel); line-height: 1.55; }
.footer-op strong { color: var(--silver); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 26px; font-size: .85rem; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--silver-2); transition: color .2s; }
.footer-legal a:hover { color: var(--red-bright); }

/* ===== To-Top ===== */
.to-top { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; color: var(--white); background: var(--grad-red); box-shadow: 0 8px 24px rgba(225,6,0,.4); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .3s; }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ===== Reveal-Animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 6px; }
  .principle { grid-template-columns: 1fr; }
  .principle-visual { order: -1; }
  .cluster, .cluster.reverse { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .cluster.reverse .cluster-visual, .cluster.reverse .cluster-main { order: 0; }
  .cluster-visual { position: static; max-width: 440px; margin: 0 auto; width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 68px; left: 0; right: 0; padding: 16px 24px 24px; background: rgba(8,9,12,.97); border-bottom: 1px solid var(--line); margin-left: 0; }
  .nav-links.open a { padding: 10px 0; }
  .nav-toggle { display: flex; margin-left: auto; }
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer-about { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 720px) {
  .audience-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .cta-inner { padding: 44px 24px; }
  .cursor-glow { display: none; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== Reduzierte Bewegung ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Rechtsseiten (Impressum / Datenschutz) ===== */
.legal { padding: 60px 0 90px; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal .eyebrow { display: block; text-align: left; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.legal-meta { color: var(--steel); font-size: .92rem; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal h2 { font-size: 1.35rem; margin: 40px 0 14px; padding-top: 6px; }
.legal h3 { font-size: 1.08rem; margin: 26px 0 8px; color: var(--silver); }
.legal p, .legal li { color: var(--silver-2); font-size: 1rem; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: none; margin: 0 0 16px; padding: 0; }
.legal ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal ul li::before { content: "›"; position: absolute; left: 0; color: var(--red-bright); font-weight: 700; }
.legal a { color: var(--red-bright); text-decoration: none; border-bottom: 1px solid rgba(225,6,0,.35); transition: border-color .2s; }
.legal a:hover { border-color: var(--red-bright); }
.legal strong { color: var(--white); }
.legal-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 30px; margin: 18px 0 26px; }
.legal-card p { margin-bottom: 4px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 50px; font-weight: 600; color: var(--silver); border: 0; }
.legal-back:hover { color: var(--red-bright); }
.placeholder { color: var(--red-bright); background: rgba(225,6,0,.08); border: 1px dashed rgba(225,6,0,.4); border-radius: 5px; padding: 1px 7px; font-size: .92em; -webkit-text-fill-color: var(--red-bright); }
.legal-page-nav { display: flex; align-items: center; gap: 24px; height: 68px; }
.legal-page-nav .nav-links { margin-left: auto; }
