@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&display=swap');

/* ════════════ index.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Smart Animated Site
   ═══════════════════════════════════════════════════════════ */



:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #00d4ff;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

/* ─── ambient noise + glow on body ─── */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(0,212,255,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 12px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 110px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 18px; font-size: 16px; color: var(--text2);
  max-width: 620px; line-height: 1.65;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 220px 0 60px;
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 100px;
  align-items: stretch;
}
.hero-chip {
  display: inline-flex; align-items:center; gap:8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(230,0,126,0.08);
  border: 1px solid rgba(230,0,126,0.22);
  font-size: 11px; font-weight: 800; color: var(--accent);
  letter-spacing: 1.5px; text-transform: uppercase; width: fit-content;
}
.hero-chip::before {
  content:''; width:6px; height:6px; border-radius:50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(34px, 4.4vw, 60px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 24px 0;
}
.hero h1 .rotator {
  display: block; position: relative; color: var(--accent);
  will-change: opacity;
}
.hero h1 .rotator::after {
  content:''; display:inline-block; width:.55ch; height:.85em;
  background: var(--accent); margin-left:4px; vertical-align: -10%;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-sub {
  font-size: 18px; color: var(--text2); line-height: 1.6;
  max-width: 540px;
}
.hero-ctas { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-proof {
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v       { color: var(--accent) !important; }
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent); }
.hp-cell .v.green { color: var(--accent); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }
.hero-proof-note { font-size: 12px; color: var(--text3); font-style: italic; display: block; margin: 0 0 14px; }

/* Hero visual: Bond scene with live Inphera overlays */
.hero-visual {
  position: relative; border-radius: var(--r);
  background: #0a0a0f; border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(230,0,126,.22), 0 30px 60px -20px rgba(0,0,0,.7);
  align-self: stretch;
  min-height: 360px;
  width: 100%;
  aspect-ratio: 16/10;
}
.hv-photo {
  position: absolute; inset: 0;
  background-image: url('../assets/images/img-louedm_20qzk.png');
  background-size: cover; background-position: center;
}
.hv-photo::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.35) 100%);
}
.hv-scanline {
  position:absolute; left:0; right:0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 30px var(--accent);
  animation: scan 5s ease-in-out infinite; z-index: 4;
  pointer-events: none;
}
@keyframes scan {
  0%, 100% { top: 8%; opacity: 1; }
  50% { top: 92%; opacity: .55; }
}

/* Mobile.de ad pill — real ad cropped from source */
.hv-mobile-pill {
  position: absolute; left: 2%; bottom: 6%;
  width: 26%; max-width: 280px; height: auto;
  border-radius: 10px;
  z-index: 6; pointer-events: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.hv-mobile-pill.in { opacity: 1; transform: translateY(0); }

/* Detection bboxes */
.hv-bbox {
  position: absolute; pointer-events: none;
  opacity: 0; transform: scale(1.04);
  transition: opacity .5s ease, transform .5s ease;
  z-index: 5;
}
.hv-bbox.in { opacity: 1; transform: scale(1); }
.bbox-craig { top: 5%; left: 38%; width: 30%; height: 65%; }
.bbox-suit  { top: 28%; left: 42%; width: 24%; height: 38%; }
.bbox-car   { top: 55%; left: 4%; width: 38%; height: 42%; }
.bbox-corner {
  position: absolute; width: 18px; height: 18px;
  border: 2px solid var(--accent);
  filter: drop-shadow(0 0 6px rgba(230,0,126,.6));
}
.bbox-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.bbox-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.bbox-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.bbox-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Pills attached to bboxes */
.hv-pill {
  position: absolute; padding: 5px 12px; border-radius: 999px;
  background: rgba(10,10,18,.85); border: 1px solid rgba(230,0,126,.4);
  font-size: 11px; font-weight: 700; color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
  pointer-events: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.hv-pill .sep { color: var(--text3); }
.hv-pill .seg { color: var(--text); font-weight: 700; }
.hv-pill .seg.active { color: var(--accent); }
.hv-pill .seg.pink { color: var(--accent); font-weight: 800; }
.hv-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.6s infinite;
}
.pill-craig { top: -16px; left: 50%; transform: translateX(-50%); }
.pill-car   { top: -16px; left: 16px; }
.pill-london{ top: 16%; left: 10%; z-index: 6; opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s; }
.pill-london.in { opacity: 1; transform: translateY(0); }

.hv-tag-mini {
  position: absolute; right: -8px; top: 50%; transform: translate(100%, -50%);
  background: rgba(10,10,18,.9); padding: 4px 9px; border-radius: 4px;
  font-size: 10px; font-weight: 800; color: var(--accent);
  border: 1px solid rgba(230,0,126,.5);
  letter-spacing: .3px;
}

/* Shop overlay — uses real BOSS screenshot */
.hv-shop {
  position: absolute; top: 8%; right: 4%;
  width: 28%; max-width: 200px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; overflow: hidden;
  background: #f4f2ed;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  z-index: 7;
  opacity: 0; transform: translateX(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.hv-shop.in { opacity: 1; transform: translateX(0); }
.shop-screenshot {
  width: 100%; height: auto; display: block;
}

.hv-meta {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  z-index: 5;
}
.hv-meta .live { color: var(--accent); }
.hv-meta .live::before {
  content:''; display:inline-block; width:6px;height:6px;border-radius:50%;
  background: var(--accent); margin-right:6px;
  animation: pulse 1.4s infinite;
}

/* ── result modal (legacy, kept empty) ── */

/* ── status quo section ── */
.statusquo {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statusquo-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: center;
}
.statusquo-headline {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: -1.5px; line-height: 1.05;
  margin-top: 20px;
}
.statusquo-headline em { font-style: normal; color: var(--accent); }
.statusquo-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 28px;
}
.statusquo-bullets li {
  position: relative; padding-left: 30px;
  font-size: 17px; color: var(--text2); line-height: 1.55;
}
.statusquo-bullets li::before {
  content: '—'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 900;
}
@media(max-width: 1024px) {
  .statusquo-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── solution card ── */
.solution-card {
  margin-top: 56px; padding: 40px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r);
}
.solution-card-label {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 60px;
}
.solution-item {
  display: grid; grid-template-columns: 24px 1fr; align-items: start; gap: 14px;
  font-size: 15px; color: var(--text2); line-height: 1.55;
}
.solution-arrow {
  color: var(--accent); font-weight: 900; font-size: 18px;
  line-height: 1.4;
}
@media(max-width: 760px) {
  .solution-grid { grid-template-columns: 1fr; gap: 16px; }
  .solution-card { padding: 28px; }
}

/* ── status bullets + action video ── */
.status-bullets {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 820px;
}
.status-bullets li {
  position: relative; padding-left: 28px;
  font-size: 16px; color: var(--text2); line-height: 1.6;
}
.status-bullets li::before {
  content: '—'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 900;
}
.action-section { margin-top: 84px; }
.action-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
}
.action-sub {
  margin-top: 16px; font-size: 16px; color: var(--text2);
  max-width: 620px; line-height: 1.6;
  margin-bottom: 36px;
}
.action-video {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55),
              0 0 0 1px rgba(255,255,255,0.03);
}
.av-chrome {
  background: var(--bg3);
  padding: 11px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.av-chrome .dot { width:10px; height:10px; border-radius: 50%; flex-shrink: 0; }
.av-chrome .dot.r { background: #ff5f57; }
.av-chrome .dot.y { background: #febc2e; }
.av-chrome .dot.g { background: #28c840; }
.av-chrome .av-url {
  margin-left: 12px; flex: 1; max-width: 280px;
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 4px; padding: 4px 14px;
  font-size: 11px; color: var(--text3);
}
.action-video video {
  width: 100%; display: block;
  max-height: 70vh; object-fit: contain; background: #000;
}

/* ══════════════════════════════════════════════
   COMPARATOR (Pre-Roll vs Inphera)
══════════════════════════════════════════════ */
.cmp-wrap {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.cmp-card {
  border-radius: var(--r); border: 1px solid var(--border);
  overflow: hidden; background: var(--bg2);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.cmp-card:hover { transform: translateY(-4px); }
.cmp-card.bad { border-color: rgba(255,77,109,.25); }
.cmp-card.bad:hover { border-color: rgba(255,77,109,.6); box-shadow: 0 30px 60px -20px rgba(255,77,109,.18); }
.cmp-card.good:hover { border-color: rgba(230,0,126,.6); box-shadow: 0 30px 60px -20px rgba(230,0,126,.22); }
.cmp-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; background: var(--bg3); border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.cmp-card.bad .cmp-header .label { color: var(--accent3); }
.cmp-card.good .cmp-header .label { color: var(--accent); }
.cmp-screen {
  position: relative; aspect-ratio: 16/9; background:#000; overflow: hidden;
}

/* Pre-roll mock */
.pre-bg {
  position:absolute; inset:0;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1a4a 50%, #1a0a2e 100%);
  display:flex; flex-direction: column; align-items:center; justify-content:center; gap:14px;
}
.pre-logo {
  background:rgba(255,255,255,.92); padding: 12px 32px; border-radius:6px;
  font-weight: 900; color:#1a0a2e; letter-spacing: 4px; font-size: 14px;
}
.pre-claim { color:rgba(255,255,255,.85); font-weight:700; font-size:14px; }
.pre-skip {
  position:absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.75); color: var(--text2);
  padding: 6px 10px; border-radius: 6px;
  font-size: 11px; border: 1px solid rgba(255,255,255,.15); font-weight:700;
}
.pre-skip .n { color: var(--accent3); margin-left: 4px; font-variant-numeric: tabular-nums; }
.pre-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,77,109,.18); border:1px solid rgba(255,77,109,.4);
  color: var(--accent3); padding: 4px 9px; border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
}
.pre-bar {
  position:absolute; bottom:0; left:0; right:0; height:3px;
  background: rgba(255,255,255,.08);
}
.pre-bar-fill { height:100%; background: var(--accent3); width:100%; transform-origin: left;
  animation: shrink 8s linear infinite; }
@keyframes shrink { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* Inphera mock */
.iph-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 30% 60%, rgba(230,0,126,.12), transparent 50%),
    linear-gradient(180deg, #1c1c2e 0%, #2d3a4a 50%, #1e3020 100%);
}
.iph-figure {
  position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width: 22%; height: 75%;
  background: linear-gradient(180deg, #2a3340 0%, #15181e 100%);
  clip-path: polygon(35% 0, 65% 0, 75% 22%, 78% 100%, 22% 100%, 25% 22%);
  opacity: .7;
}
.iph-overlay {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: linear-gradient(90deg, rgba(10,10,20,.96), rgba(20,10,30,.92));
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--accent); border-radius: 4px;
  padding: 8px 12px; display:flex; align-items:center; gap: 10px;
  z-index: 5; box-shadow: 0 -10px 30px rgba(230,0,126,.15);
}
.iph-overlay .ologo {
  background:#fff; color:#000; padding: 5px 9px; border-radius:3px;
  font-weight: 900; font-size:9px; letter-spacing: 1.5px;
}
.iph-overlay .otxt { flex: 1; min-width: 0; }
.iph-overlay .ob { font-size:9px; color: var(--text3); letter-spacing:1.5px; text-transform:uppercase; font-weight:800; }
.iph-overlay .oc { font-size: 12px; font-weight: 800; }
.iph-overlay .octa {
  background: var(--accent); color:#fff; padding: 6px 11px; border-radius: 4px;
  font-size: 10px; font-weight: 800;
}
.iph-pill {
  position: absolute; padding: 4px 9px; border-radius: 999px;
  background: rgba(10,10,18,.85); border: 1px solid rgba(0,212,255,.4);
  font-size: 10px; font-weight: 700; color: #fff;
  backdrop-filter: blur(6px);
}
.iph-pill .pd { display:inline-block; width:5px; height:5px; border-radius:50%;
  background: var(--accent2); margin-right:5px; vertical-align: middle; }
.iph-pill.p1 { top: 14%; left: 50%; transform: translateX(-50%); }
.iph-pill.p2 { top: 30%; right: 8%; }
.iph-label {
  position:absolute; top: 12px; left: 12px;
  background: rgba(230,0,126,.18); border:1px solid rgba(230,0,126,.4);
  color: var(--accent); padding: 4px 9px; border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
}
.iph-cov {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.7); padding: 4px 9px; border-radius: 4px;
  font-size: 9px; font-weight: 800; letter-spacing: .8px;
  border: 1px solid rgba(0,230,118,.3); color: var(--green);
}
.iph-cov::before {
  content:''; display:inline-block; width:6px;height:6px;border-radius:50%;
  background: var(--green); margin-right:5px; vertical-align: middle;
  animation: pulse 1.6s infinite;
}

.cmp-footer {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; padding: 18px;
}
.cmp-stat .k { font-size: 10px; color: var(--text3); letter-spacing:1.2px; text-transform:uppercase; font-weight:700; }
.cmp-stat .v { font-family: var(--font-head); font-weight: 900; font-size: 22px; margin-top: 4px; letter-spacing: -0.5px; }
.cmp-card.bad .cmp-stat .v { color: var(--accent3); }
.cmp-card.good .cmp-stat .v { color: var(--accent); }

/* ══════════════════════════════════════════════
   SCENE DETECTION DEMO
══════════════════════════════════════════════ */
.demo-shell {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px;
  margin-top: 56px; align-items: stretch;
}
.player {
  position: relative; aspect-ratio: 16/9; border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--border); background:#000;
}
.player-bg {
  position:absolute; inset:0; transition: opacity .6s;
  display:flex; align-items:flex-end; justify-content: center;
}
.player-bg .sky { position:absolute; inset:0; }
.player-bg .ground { position:absolute; bottom:0; left:0; right:0; height: 40%; }
.player-bg .subject {
  position:absolute; bottom: 12%; left: 50%; transform: translateX(-50%);
  width: 18%; height: 60%;
  clip-path: polygon(35% 0, 65% 0, 75% 22%, 78% 100%, 22% 100%, 25% 22%);
  opacity: .75;
}

/* Scene styles */
.scene-1 .sky { background: linear-gradient(180deg, #0d1a2e, #1e3a5f); }
.scene-1 .ground { background: linear-gradient(180deg, #1a3a5f, #0a1a2e); }
.scene-1 .subject { background: linear-gradient(180deg, #6a8aa8, #2a3a4e); }

.scene-2 .sky { background: linear-gradient(180deg, #2e1a0d, #5f3a1e); }
.scene-2 .ground { background: linear-gradient(180deg, #d4a85a, #8a6a30); }
.scene-2 .subject { background: linear-gradient(180deg, #2a2014, #15100a); }

.scene-3 .sky { background: linear-gradient(180deg, #1a2e0d, #2e5f1e); }
.scene-3 .ground { background: linear-gradient(180deg, #1e4d1a, #0a2a0e); }
.scene-3 .subject { background: linear-gradient(180deg, #5a8a4a, #2a4a1a); }

.scene-4 .sky { background: linear-gradient(180deg, #14142a, #2a1a3e); }
.scene-4 .ground { background: linear-gradient(180deg, #1a0a3e, #0a0218); }
.scene-4 .subject { background: linear-gradient(180deg, #8a4ae6, #2a1a4a); }

.player-frame { position:absolute; inset: 22px; border: 1px dashed rgba(230,0,126,.35); border-radius: 8px; pointer-events:none; }
.player-tags {
  position: absolute; inset: 0; pointer-events: none;
}
.p-tag {
  position: absolute; padding: 5px 11px; border-radius: 999px;
  background: rgba(10,10,18,.9); border: 1px solid;
  font-size: 11px; font-weight: 800; letter-spacing:.3px;
  backdrop-filter: blur(4px); white-space: nowrap;
  opacity: 0; transition: opacity .35s, transform .35s;
}
.p-tag.show { opacity: 1; transform: translateY(0) !important; }
.p-tag .d { display:inline-block; width:6px;height:6px;border-radius:50%; margin-right:6px; vertical-align: middle; }
.p-tag.pink { border-color: rgba(230,0,126,.5); color:#fff; }
.p-tag.pink .d { background: var(--accent); }
.p-tag.blue { border-color: rgba(0,212,255,.5); color:#fff; }
.p-tag.blue .d { background: var(--accent2); }
.p-tag.green { border-color: rgba(0,230,118,.5); color:#fff; }
.p-tag.green .d { background: var(--green); }

.player-time {
  position:absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.7); padding: 4px 10px; border-radius:4px;
  font-size: 11px; font-weight:800; letter-spacing:.5px;
  color: var(--text); min-width: 120px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.player-status {
  position:absolute; top:12px; left:12px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform:uppercase;
  color: var(--accent);
}
.player-status::before {
  content:''; display:inline-block; width:6px;height:6px;border-radius:50%;
  background: var(--accent); margin-right:6px;
  animation: pulse 1.4s infinite;
}

/* Timeline */
.timeline {
  margin-top: 14px; padding: 12px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
}
.timeline-track {
  position: relative; height: 32px;
  background: var(--bg3); border-radius: 6px; overflow: hidden;
}
.tl-seg {
  position: absolute; top: 0; bottom: 0;
  border-right: 1px solid var(--bg);
  cursor: pointer; transition: opacity .2s;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.7);
  letter-spacing: .3px;
}
.tl-seg:hover { filter: brightness(1.25); }
.tl-seg.active { box-shadow: inset 0 0 0 2px #fff; color: #fff; }
.tl-playhead {
  position: absolute; top: -4px; bottom: -4px; width: 2px;
  background: #fff; box-shadow: 0 0 10px #fff;
  pointer-events: none;
}
.tl-meta {
  display:flex; justify-content: space-between; margin-top: 8px;
  font-size: 10px; color: var(--text3); letter-spacing: 1px; text-transform: uppercase;
}

/* Side panel */
.demo-side { display:flex; flex-direction: column; gap: 14px; }
.side-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 18px;
}
.side-card h4 {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text3); margin-bottom: 12px;
}
.side-card .scene-name {
  font-family: var(--font-head); font-size: 22px; font-weight: 900;
  letter-spacing: -.5px; line-height: 1.1;
}
.entity-list { display:flex; flex-direction: column; gap: 8px; }
.entity {
  display:flex; align-items:center; justify-content:space-between;
  padding: 9px 12px; background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px;
  transition: all .2s;
}
.entity.new { border-color: rgba(230,0,126,.4); background: rgba(230,0,126,.06); }
.entity .e-name { display:flex; align-items:center; gap: 8px; font-weight: 700; }
.entity .e-name .ed { width:7px;height:7px;border-radius:50%; background: var(--accent); }
.entity .e-conf { font-size: 11px; color: var(--text3); font-variant-numeric: tabular-nums; font-weight: 600; }

/* ══════════════════════════════════════════════
   SEARCH DEMO
══════════════════════════════════════════════ */
.search-shell { margin-top: 48px; }
.search-bar {
  display:flex; align-items:center; gap: 12px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 6px 6px 22px;
  max-width: 720px;
}
.search-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(230,0,126,.1); }
.search-bar svg { flex-shrink: 0; opacity: .5; }
.search-bar input {
  flex: 1; background:none; border:none; color: var(--text);
  font-size: 16px; padding: 14px 0; outline: none;
  font-family: var(--font-body); font-weight: 500;
}
.search-bar input::placeholder { color: var(--text3); }
.search-bar .typing-cursor {
  display:inline-block; width: 2px; height: 18px; background: var(--accent);
  vertical-align: middle; animation: blink 1s steps(2) infinite;
}
.search-suggestions {
  display:flex; gap: 8px; margin-top: 14px; flex-wrap: wrap;
}
.suggestion {
  padding: 7px 14px; border-radius: 999px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--text2);
  cursor: pointer; transition: all .2s;
}
.suggestion:hover { color: var(--accent); border-color: var(--accent); background: rgba(230,0,126,.06); }
.suggestion.active { color: var(--accent); border-color: var(--accent); background: rgba(230,0,126,.1); }

.search-results {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.result {
  aspect-ratio: 16/9; border-radius: 8px; border: 1px solid var(--border);
  overflow: hidden; background: var(--bg3); position: relative;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease, border-color .25s ease;
  cursor: pointer;
}
.result.show { opacity: 1; transform: translateY(0); }
.result:hover { border-color: var(--accent); transform: translateY(-2px) !important; }
.result .r-bg {
  position: absolute; inset: 0;
  transition: filter .45s ease, transform .6s ease;
}
.result.expanded { border-color: var(--accent); }
.result.expanded .r-bg {
  filter: grayscale(1) brightness(.45) contrast(.85);
  transform: scale(1.04);
}
.result .r-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.9));
  padding: 12px;
  transition: opacity .25s ease, transform .25s ease;
}
.result.expanded .r-meta { opacity: 0; transform: translateY(8px); }
.result .r-time { font-size: 10px; font-weight: 800; letter-spacing: .8px; color: var(--accent); }
.result .r-name { font-size: 12px; font-weight: 700; margin-top: 2px; color: #fff; }
.result .r-detail {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 14px 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease .05s;
}
.result.expanded .r-detail { opacity: 1; pointer-events: auto; }
.result .r-detail-head {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-head); font-size: 9px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.result .r-detail-time { color: var(--accent); }
.result .r-detail-conf {
  color: var(--green);
  background: rgba(0,230,118,.15);
  border: 1px solid rgba(0,230,118,.35);
  padding: 2px 7px; border-radius: 4px;
}
.result .r-detail-close {
  margin-left: auto; color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.4); border-radius: 4px;
  padding: 2px 6px; font-size: 10px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.12);
  letter-spacing: 1px;
}
.result .r-detail-name {
  font-family: var(--font-head); font-weight: 900;
  font-size: 15px; line-height: 1.15; letter-spacing: -.3px;
  margin-top: 10px; color: #fff;
}
.result .r-detail-desc {
  margin-top: 6px; font-size: 12px;
  color: rgba(255,255,255,.85); line-height: 1.45;
}
.result .r-conf {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,.7); padding: 3px 7px; border-radius:4px;
  font-size: 9px; font-weight: 800; color: var(--green);
}
.result.empty {
  display:flex; align-items:center; justify-content:center;
  font-size: 11px; color: var(--text3); border-style: dashed;
}

/* ══════════════════════════════════════════════
   PIPELINE
══════════════════════════════════════════════ */
.pipeline {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
  background: var(--border);
}
.step {
  background: var(--bg2); padding: 32px 26px; position: relative;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .25s;
}
.step:hover { background: var(--bg3); }
.step::before {
  content:''; position:absolute; top:0; left:0; right:1px; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.step.active::before { transform: scaleX(1); }
.step .num {
  font-size: 11px; font-weight: 900; letter-spacing: 2px;
  color: var(--accent); font-family: var(--font-head);
}
.step h4 {
  font-family: var(--font-head); font-weight: 900;
  font-size: 18px; letter-spacing: -.3px; line-height: 1.2;
}
.step p {
  font-size: 13px; color: var(--text2); line-height: 1.55;
}
.step-icon {
  height: 56px; display:flex; align-items:center; justify-content:flex-start;
}

/* ══════════════════════════════════════════════
   TWO MODES
══════════════════════════════════════════════ */
.modes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px;
}
.mode {
  position: relative; border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  background: var(--bg2);
  transition: all .3s;
}
.mode:hover { transform: translateY(-4px); }
.mode.perf:hover { border-color: var(--accent); box-shadow: 0 30px 60px -20px rgba(230,0,126,.2); }
.mode.brand:hover { border-color: var(--accent2); box-shadow: 0 30px 60px -20px rgba(0,212,255,.2); }
.mode-preview {
  aspect-ratio: 16/9; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1c1c2e, #2d3a4a, #1e3020);
}
.mode-preview .figure {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 22%; height: 70%; opacity: .7;
  background: linear-gradient(180deg, #2a3340, #15181e);
  clip-path: polygon(35% 0, 65% 0, 75% 22%, 78% 100%, 22% 100%, 25% 22%);
}
.mode.perf .perf-overlay {
  position:absolute; left: 12px; right: 12px; bottom: 12px;
  background: linear-gradient(90deg, rgba(10,10,20,.96), rgba(20,10,30,.92));
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--accent); border-radius: 4px;
  padding: 10px 12px; display:flex; align-items:center; gap: 10px;
}
.mode.perf .perf-overlay .ll { background:#fff; color:#000; padding: 6px 10px; border-radius:3px; font-weight:900; font-size:10px; letter-spacing:1.5px; }
.mode.perf .perf-overlay .tt { flex:1; font-size:11px; font-weight:800; }
.mode.perf .perf-overlay .cc { background: var(--accent); color:#fff; padding:6px 12px; border-radius:4px; font-size:10px; font-weight:800; }
.mode.brand .brand-overlay {
  position:absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(4,4,18,.6) 35%, rgba(4,4,18,.95) 100%);
  padding: 24px 16px 14px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-top: 1px solid rgba(0,212,255,.25);
}
.mode.brand .brand-overlay::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(0,212,255,.15) 0%, transparent 60%);
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity:.4; } 50% { opacity:1; } }
.mode.brand .brand-overlay .row { display:flex; justify-content:space-between; align-items:flex-end; position:relative; z-index:1; }
.mode.brand .brand-overlay .ll { background:#fff; color:#000; padding:6px 12px; border-radius:4px; font-weight:900; font-size:11px; letter-spacing:2px; }
.mode.brand .brand-overlay .tagl { font-weight:800; font-size:12px; color:#fff; max-width:50%; text-align:right; line-height:1.2; }
.mode.brand .brand-overlay .ctx { font-size:9px; color: rgba(255,255,255,.5); letter-spacing:1.5px; text-transform: uppercase; margin-top: 10px; font-weight:800; position:relative; z-index:1; }
.mode-body { padding: 26px; }
.mode-badge {
  display: inline-block; padding: 5px 11px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.mode.perf .mode-badge { background: rgba(230,0,126,.12); color: var(--accent); border: 1px solid rgba(230,0,126,.3); }
.mode.brand .mode-badge { background: rgba(0,212,255,.12); color: var(--accent2); border: 1px solid rgba(0,212,255,.3); }
.mode-body h3 { font-family: var(--font-head); font-size: 26px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
.mode-body p { font-size: 13px; color: var(--text2); line-height: 1.65; }
.mode-specs {
  margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border-radius: 6px; overflow:hidden;
}
.mode-specs .sp { background: var(--bg3); padding: 10px 12px; }
.mode-specs .sp .k { font-size: 9px; color: var(--text3); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 800; }
.mode-specs .sp .v { font-size: 13px; font-weight: 800; margin-top: 3px; }
.mode.perf .mode-specs .sp .v { color: var(--accent); }
.mode.brand .mode-specs .sp .v { color: var(--accent2); }

/* ══════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════ */
.metrics {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border); border:1px solid var(--border);
  border-radius: var(--r); overflow:hidden;
  margin-top: 56px;
}
.metric {
  background: var(--bg2); padding: 26px 20px;
  position: relative; transition: background .25s;
}
.metric::before {
  content:''; position:absolute; top:0; left:0; right:0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.metric:hover::before { transform: scaleX(1); }
.metric:hover { background: var(--bg3); }
.metric .ml { font-size: 10px; color: var(--text3); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; }
.metric .mv {
  font-family: var(--font-head); font-weight: 900;
  font-size: 38px; line-height: 1; letter-spacing: -1.5px;
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.metric .ms { font-size: 12px; color: var(--text2); margin-top: 8px; line-height: 1.4; }

/* ══════════════════════════════════════════════
   ROI
══════════════════════════════════════════════ */
.roi {
  margin-top: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px;
}
.roi-inputs {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px; display: flex; flex-direction: column; gap: 26px;
}
.roi-field .row { display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 8px; }
.roi-field .lab { font-size: 12px; color: var(--text2); font-weight: 600; }
.roi-field .val { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: var(--text); letter-spacing: -.3px; }
.roi-field input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: var(--bg3); outline: none; cursor: pointer;
}
.roi-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none; width: 18px; height: 18px; border-radius:50%;
  background: var(--accent); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(230,0,126,.18);
  transition: transform .15s;
}
.roi-field input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-field input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius:50%;
  background: var(--accent); border: none; cursor: pointer;
}
.roi-field .scale { display:flex; justify-content:space-between; font-size: 10px; color: var(--text3); margin-top: 6px; }

.roi-output {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
  padding: 30px; display:flex; flex-direction: column; gap: 18px;
}
.roi-output h3 { font-size: 10px; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; font-weight: 800; }
.roi-bars { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; }
.roi-bar { }
.roi-bar .label { display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 8px; }
.roi-bar .label .n { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); }
.roi-bar .label .v { font-family: var(--font-head); font-size: 26px; font-weight: 900; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.roi-bar.pre .label .v { color: var(--text3); }
.roi-bar.iph .label .v { color: var(--accent); }
.roi-bar .track {
  height: 14px; background: var(--bg3); border-radius: 7px; overflow: hidden; position: relative;
}
.roi-bar .fill {
  height: 100%; border-radius: 7px;
  transition: width .6s cubic-bezier(.22,1,.36,1);
}
.roi-bar.pre .fill { background: linear-gradient(90deg, #44445a, #5a5a70); }
.roi-bar.iph .fill { background: linear-gradient(90deg, var(--accent), #ff4da3); }

.roi-summary {
  display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px;
}
.roi-sum {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px;
}
.roi-sum .k { font-size: 10px; color: var(--text3); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; }
.roi-sum .v { font-family: var(--font-head); font-size: 28px; font-weight: 900; margin-top: 4px; letter-spacing: -.5px; }
.roi-sum.up .v { color: var(--accent2); }
.roi-sum.green .v { color: var(--green); }
.roi-disclaim { font-size: 11px; color: var(--text3); line-height: 1.5; }

/* ══════════════════════════════════════════════
   CTA + FOOTER
══════════════════════════════════════════════ */
.cta-wrap {
  text-align: center; padding: 110px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap p { color: var(--text2); max-width: none; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .brand img { height: 32px; }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ══════════════════════════════════════════════
   FADE-IN ON SCROLL
══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   LANG
══════════════════════════════════════════════ */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media(max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .cmp-wrap { grid-template-columns: 1fr; }
  .demo-shell { grid-template-columns: 1fr; }
  .search-results { grid-template-columns: repeat(2, 1fr); }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .modes { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .roi { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 10px 16px; gap: 12px; }
  section { padding: 80px 0; }
  .container { padding: 0 18px; }
  .hero { padding-top: 110px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .cmp-footer { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .search-results { grid-template-columns: 1fr 1fr; }
  .roi-summary { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

.cta-wrap .btns a { text-decoration: none; }

/* ════════════ produkt.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #00d4ff;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(0,212,255,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent2); }
.hp-cell .v.green { color: var(--green); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

/* ── 4 Layers grid ── */
  .layers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid var(--border); border-radius: var(--r);
    overflow: hidden; background: var(--border); margin-top: 56px;
  }
  .layer-cell {
    background: var(--bg2); padding: 24px 22px 26px;
    position: relative; display: flex; flex-direction: column; gap: 12px;
    transition: background .25s;
  }
  .layer-cell:hover { background: var(--bg3); }
  .layer-cell::before {
    content:''; position:absolute; top:0; left:0; right:1px; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
  }
  .layer-cell.in::before { transform: scaleX(1); }
  .layer-num {
    font-size: 11px; font-weight: 900; letter-spacing: 2px;
    color: var(--accent); font-family: var(--font-head);
    margin-top: 6px;
  }
  .layer-title {
    font-family: var(--font-head); font-weight: 900;
    font-size: 17px; letter-spacing: -.3px; line-height: 1.2;
  }
  .layer-desc {
    font-size: 13px; color: var(--text2); line-height: 1.6;
  }

  /* ── per-layer animations ── */
  .layer-anim {
    position: relative;
    height: 120px;
    background: linear-gradient(180deg, var(--bg3), var(--bg));
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 6px;
  }

  /* 01 Video Understanding — scanning bounding boxes */
  .anim-understanding .la-frame {
    position: absolute; inset: 12px;
    background:
      radial-gradient(circle at 50% 70%, rgba(230,0,126,.15), transparent 60%),
      linear-gradient(135deg, #1a1825, #0e0e16);
    border-radius: 6px; overflow: hidden;
  }
  .anim-understanding .la-scan {
    position: absolute; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 12px var(--accent);
    animation: la-scan 3s ease-in-out infinite;
  }
  @keyframes la-scan {
    0%,100% { top: 6%; opacity: 1; }
    50%     { top: 90%; opacity: .55; }
  }
  .anim-understanding .la-bbox {
    position: absolute; border: 1.5px solid var(--accent);
    border-radius: 3px; opacity: 0;
    animation: la-pop 4.5s ease-in-out infinite;
  }
  .anim-understanding .la-bbox.bb1 { top: 18%; left: 12%; width: 26%; height: 38%; animation-delay: .4s; }
  .anim-understanding .la-bbox.bb2 { top: 30%; left: 44%; width: 22%; height: 50%; animation-delay: 1.4s; }
  .anim-understanding .la-bbox.bb3 { top: 22%; right: 10%; width: 24%; height: 34%; animation-delay: 2.4s; }
  @keyframes la-pop {
    0%, 10%  { opacity: 0; transform: scale(1.06); }
    15%, 60% { opacity: 1; transform: scale(1); }
    70%,100% { opacity: 0; }
  }
  .anim-understanding .la-tag {
    position: absolute;
    font-family: var(--font-head);
    font-size: 8px; font-weight: 800; letter-spacing: .4px;
    background: rgba(10,10,18,.9);
    border: 1px solid rgba(230,0,126,.45);
    color: #fff;
    padding: 2px 6px; border-radius: 999px;
    opacity: 0;
    animation: la-pop 4.5s ease-in-out infinite;
  }
  .anim-understanding .la-tag.tag1 { top: 8%;  left: 14%;  animation-delay: .55s; }
  .anim-understanding .la-tag.tag2 { top: 86%; left: 46%; animation-delay: 1.55s; }
  .anim-understanding .la-tag.tag3 { top: 12%; right: 12%; animation-delay: 2.55s; }

  /* 02 Video Index & DAM — rows lighting up */
  .anim-index {
    display: flex; flex-direction: column; justify-content: center;
    padding: 14px 14px;
    gap: 8px;
  }
  .anim-index .la-row {
    display: flex; align-items: center; gap: 8px;
  }
  .anim-index .la-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--text3);
    flex-shrink: 0;
    animation: la-dot 3s ease-in-out infinite;
  }
  .anim-index .la-dot.pink { background: var(--accent); }
  .anim-index .la-row:nth-child(1) .la-dot { animation-delay: 0s; }
  .anim-index .la-row:nth-child(2) .la-dot { animation-delay: .35s; }
  .anim-index .la-row:nth-child(3) .la-dot { animation-delay: .7s; }
  .anim-index .la-row:nth-child(4) .la-dot { animation-delay: 1.05s; }
  @keyframes la-dot {
    0%, 60%, 100% { background: var(--text3); box-shadow: none; }
    20%, 40%      { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
  }
  .anim-index .la-line {
    height: 6px; border-radius: 3px;
    background: linear-gradient(90deg, var(--bg4), var(--bg3));
    position: relative; overflow: hidden;
  }
  .anim-index .la-line::after {
    content:''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(230,0,126,.45), transparent);
    transform: translateX(-100%);
    animation: la-line 3s ease-in-out infinite;
  }
  .anim-index .la-row:nth-child(1) .la-line::after { animation-delay: .1s; }
  .anim-index .la-row:nth-child(2) .la-line::after { animation-delay: .45s; }
  .anim-index .la-row:nth-child(3) .la-line::after { animation-delay: .8s; }
  .anim-index .la-row:nth-child(4) .la-line::after { animation-delay: 1.15s; }
  @keyframes la-line {
    0%   { transform: translateX(-100%); }
    50%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
  }
  .anim-index .la-line.w50 { width: 50%; }
  .anim-index .la-line.w60 { width: 60%; }
  .anim-index .la-line.w70 { width: 70%; }
  .anim-index .la-line.w85 { width: 85%; }

  /* 03 Activation Engine — overlay popping in over a player */
  .anim-activation .la-screen {
    position: absolute; inset: 12px;
    background:
      radial-gradient(circle at 40% 65%, rgba(230,0,126,.18), transparent 60%),
      linear-gradient(180deg, #1a1d26 0%, #0e1118 100%);
    border-radius: 6px;
    overflow: hidden;
  }
  .anim-activation .la-figure {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 22%; height: 70%;
    background: linear-gradient(180deg, #2a3340, #15181e);
    clip-path: polygon(35% 0, 65% 0, 75% 22%, 78% 100%, 22% 100%, 25% 22%);
    opacity: .65;
  }
  .anim-activation .la-overlay {
    position: absolute; left: 8px; right: 8px; bottom: 8px;
    background: linear-gradient(90deg, rgba(10,10,20,.95), rgba(20,10,30,.92));
    backdrop-filter: blur(4px);
    border-top: 2px solid var(--accent);
    border-radius: 3px;
    padding: 5px 7px;
    display: flex; align-items: center; gap: 5px;
    transform: translateY(120%);
    animation: la-overlay 3.5s ease-in-out infinite;
  }
  @keyframes la-overlay {
    0%, 25%  { transform: translateY(120%); }
    40%, 80% { transform: translateY(0); }
    95%,100% { transform: translateY(120%); }
  }
  .anim-activation .la-ologo {
    width: 14px; height: 10px; background: #fff; border-radius: 2px;
    flex-shrink: 0;
  }
  .anim-activation .la-otext {
    flex: 1; height: 5px; border-radius: 2px;
    background: linear-gradient(90deg, var(--text2), var(--text3));
  }
  .anim-activation .la-octa {
    font-family: var(--font-head);
    font-size: 7px; font-weight: 800; color: #fff;
    background: var(--accent);
    padding: 3px 6px; border-radius: 2px;
    flex-shrink: 0;
  }

  /* 04 Analytics — bars growing + trend line */
  .anim-analytics {
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px;
    color: var(--accent);
  }
  .anim-analytics .la-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 50%;
  }
  .anim-analytics .la-bar {
    flex: 1; background: linear-gradient(180deg, var(--accent), #ff4da3);
    border-radius: 2px 2px 0 0;
    transform-origin: bottom;
    animation: la-bar 3.5s ease-in-out infinite;
  }
  .anim-analytics .la-bar.b1 { animation-delay: 0s;   height: 40%; }
  .anim-analytics .la-bar.b2 { animation-delay: .2s;  height: 55%; }
  .anim-analytics .la-bar.b3 { animation-delay: .4s;  height: 75%; }
  .anim-analytics .la-bar.b4 { animation-delay: .6s;  height: 88%; }
  .anim-analytics .la-bar.b5 { animation-delay: .8s;  height: 100%; }
  @keyframes la-bar {
    0%, 100% { transform: scaleY(.15); opacity: .4; }
    50%      { transform: scaleY(1);    opacity: 1; }
  }
  .anim-analytics .la-trend {
    width: 100%; height: 32%; margin-top: 8px;
    color: var(--accent2);
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: la-trend 3.5s ease-in-out infinite;
  }
  @keyframes la-trend {
    0%   { stroke-dashoffset: 200; }
    60%  { stroke-dashoffset: 0;   }
    100% { stroke-dashoffset: 0;   }
  }

  @media(max-width: 1024px) { .layers-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width: 640px)  { .layers-grid { grid-template-columns: 1fr; } }

  /* ── Modes ── */
  .modes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px;
  }
  .mode {
    position: relative; border-radius: var(--r);
    border: 1px solid var(--border); overflow: hidden;
    background: var(--bg2); padding: 36px 32px;
    display: flex; flex-direction: column;
    transition: all .3s;
  }
  .mode > * { width: 100%; }
  .mode:hover { transform: translateY(-4px); }
  .mode.perf:hover { border-color: var(--accent); box-shadow: 0 30px 60px -20px rgba(230,0,126,.2); }
  .mode.brand:hover { border-color: var(--accent2); box-shadow: 0 30px 60px -20px rgba(0,212,255,.2); }
  .mode-badge {
    display: inline-block; padding: 5px 12px; border-radius: 999px;
    font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 16px;
  }
  .mode.perf .mode-badge { background: rgba(230,0,126,.12); color: var(--accent); border: 1px solid rgba(230,0,126,.3); }
  .mode.brand .mode-badge { background: rgba(0,212,255,.12); color: var(--accent2); border: 1px solid rgba(0,212,255,.3); }
  .mode h3 { font-family: var(--font-head); font-size: 26px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
  .mode p { font-size: 14px; color: var(--text2); line-height: 1.65; }
  .mode-specs {
    margin-top: auto;
    display: flex; flex-direction: column;
    background: var(--bg3);
    border-radius: 8px;
    padding: 4px 18px;
  }
  .mode p { min-height: 118px; margin-bottom: 24px; }
  .mode-specs .sp {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .mode-specs .sp:last-child { border-bottom: none; }
  .mode-specs .sp .k {
    font-size: 14px; color: var(--text2); font-weight: 500;
    letter-spacing: 0; text-transform: none;
    flex-shrink: 0;
  }
  .mode-specs .sp .v {
    font-family: var(--font-head);
    font-size: 14px; font-weight: 800;
    color: var(--text); text-align: right;
    letter-spacing: -.1px;
  }
  .mode-specs .sp .v.green { color: var(--green); }
  .mode.perf .mode-specs .sp .v.hl { color: var(--accent); }
  .mode.brand .mode-specs .sp .v.hl { color: var(--accent2); }
  @media(max-width: 1024px) { .modes { grid-template-columns: 1fr; } }

  /* ── ROI scenario tabs ── */
  .roi-scenarios {
    margin-top: 36px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  }
  .sc-label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--text3);
  }
  .sc-tabs {
    display: flex; gap: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    overflow: hidden;
  }
  .sc-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 18px;
    font-family: var(--font-head);
    font-size: 12px; font-weight: 800; letter-spacing: .5px;
    color: var(--text2);
    background: transparent;
    border: none; border-radius: 999px;
    cursor: pointer;
    transition: all .2s;
  }
  .sc-tab:hover { color: var(--text); }
  .sc-tab.active {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 14px rgba(230,0,126,.35);
  }
  .sc-tab .sc-tab-meta {
    font-size: 11px; font-weight: 700; opacity: .8;
    padding: 2px 7px; border-radius: 999px;
    background: rgba(255,255,255,.12);
  }
  .sc-tab.active .sc-tab-meta { background: rgba(255,255,255,.22); }
  @media(max-width: 640px) {
    .roi-scenarios { gap: 10px; }
    .sc-tab { padding: 8px 12px; font-size: 11px; }
    .sc-tab .sc-tab-meta { display: none; }
  }

  /* ── ROI ── */
  .roi {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px;
    margin-top: 24px; align-items: start;
  }
  .roi-inputs, .roi-output {
    background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r);
    padding: 30px;
  }
  .roi-inputs { display: flex; flex-direction: column; gap: 26px; }
  .roi-field .row { display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 8px; }
  .roi-field .lab { font-size: 12px; color: var(--text2); font-weight: 600; }
  .roi-field .val { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: var(--text); letter-spacing: -.3px; }
  .roi-field input[type=range] {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px; border-radius: 2px;
    background: var(--bg3); outline: none; cursor: pointer;
  }
  .roi-field input[type=range]::-webkit-slider-thumb {
    -webkit-appearance:none; width: 18px; height: 18px; border-radius:50%;
    background: var(--accent); cursor: pointer;
    box-shadow: 0 0 0 4px rgba(230,0,126,.18);
  }
  .roi-field input[type=range]::-moz-range-thumb {
    width: 18px; height: 18px; border-radius:50%;
    background: var(--accent); border: none; cursor: pointer;
  }
  .roi-field .scale { display:flex; justify-content:space-between; font-size: 10px; color: var(--text3); margin-top: 6px; }

  .roi-bars { display: flex; flex-direction: column; gap: 18px; margin-top: 14px; }
  .roi-bar .label { display:flex; justify-content:space-between; align-items:baseline; margin-bottom: 8px; }
  .roi-bar .label .n { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); }
  .roi-bar .label .v { font-family: var(--font-head); font-size: 26px; font-weight: 900; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
  .roi-bar.pre .label .v { color: var(--text3); }
  .roi-bar.iph .label .v { color: var(--accent); }
  .roi-bar .track { height: 14px; background: var(--bg3); border-radius: 7px; overflow: hidden; position: relative; }
  .roi-bar .fill { height: 100%; border-radius: 7px; transition: width .6s cubic-bezier(.22,1,.36,1); }
  .roi-bar.pre .fill { background: linear-gradient(90deg, #44445a, #5a5a70); }
  .roi-bar.iph .fill { background: linear-gradient(90deg, var(--accent), #ff4da3); }

  .roi-summary {
    display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px;
  }
  .roi-sum {
    background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
    padding: 16px;
  }
  .roi-sum .k { font-size: 10px; color: var(--text3); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; }
  .roi-sum .v { font-family: var(--font-head); font-size: 28px; font-weight: 900; margin-top: 4px; letter-spacing: -.5px; }
  .roi-sum.up .v { color: var(--accent2); }
  .roi-sum.green .v { color: var(--green); }
  .roi-disclaim { font-size: 11px; color: var(--text3); line-height: 1.55; margin-top: 12px; }
  .roi-output h3 { font-size: 11px; color: var(--text3); letter-spacing: 2px; text-transform: uppercase; font-weight: 800; }
  @media(max-width: 1024px) { .roi { grid-template-columns: 1fr; } }

/* ════════════ brands.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #00d4ff;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(0,212,255,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v       { color: var(--accent) !important; }
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent); }
.hp-cell .v.green { color: var(--accent); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }
.hero-proof-note { font-size: 12px; color: var(--text3); font-style: italic; display: block; margin: 14px 0 0; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

/* ── Wie es funktioniert: 3 Steps ── */
  .steps {
    margin-top: 64px;
    display: flex; flex-direction: column;
  }
  .step-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 36px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    align-items: flex-start;
  }
  .step-row:first-of-type { border-top: none; padding-top: 0; }
  .step-row:last-of-type  { padding-bottom: 0; }
  .step-num {
    width: 64px; height: 64px; border-radius: 50%;
    border: 1.5px solid rgba(230,0,126,.55);
    background: rgba(230,0,126,.06);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 22px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    animation: stepPulse 3.5s ease-in-out infinite;
  }
  .step-row:nth-child(2) .step-num { animation-delay: .4s; }
  .step-row:nth-child(3) .step-num { animation-delay: .8s; }
  @keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,0,126,.0), inset 0 0 0 0 rgba(230,0,126,0); }
    50%      { box-shadow: 0 0 0 6px rgba(230,0,126,.08); }
  }
  .step-body { padding-top: 12px; }
  .step-title {
    font-family: var(--font-head); font-weight: 900;
    font-size: 22px; letter-spacing: -.3px; line-height: 1.25;
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 15px; color: var(--text2); line-height: 1.7;
    margin-bottom: 22px;
    max-width: 820px;
  }
  .step-callout {
    position: relative;
    background: linear-gradient(90deg, rgba(230,0,126,.08), rgba(230,0,126,.02) 60%, transparent);
    padding: 16px 20px 16px 24px;
    border-radius: 0 8px 8px 0;
    max-width: 820px;
    overflow: hidden;
  }
  .step-callout::before {
    content:'';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), rgba(230,0,126,.3));
  }
  .step-callout::after {
    content:''; position: absolute; top: 0; bottom: 0; left: -100%; width: 100%;
    background: linear-gradient(90deg, transparent, rgba(230,0,126,.12), transparent);
    animation: calloutShine 6s ease-in-out infinite;
  }
  @keyframes calloutShine {
    0%, 75%, 100% { transform: translateX(0); }
    85%           { transform: translateX(200%); }
  }
  .step-callout .ck {
    color: var(--accent); font-weight: 800;
    margin-right: 6px;
  }
  .step-callout .ct {
    color: var(--text2); font-style: italic;
    font-size: 14px;
  }
  @media(max-width: 760px) {
    .step-row { grid-template-columns: 56px 1fr; gap: 18px; padding: 28px 0; }
    .step-num { width: 48px; height: 48px; font-size: 18px; }
    .step-body { padding-top: 8px; }
    .step-title { font-size: 19px; }
  }

  /* ── Compare Table ── */
  .compare-table {
    width: 100%; border-collapse: collapse;
    margin-top: 40px;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--r); overflow: hidden;
  }
  .compare-table th, .compare-table td {
    padding: 16px 22px; text-align: left;
    font-size: 14px; border-bottom: 1px solid var(--border);
  }
  .compare-table th {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; color: var(--text3);
    text-transform: uppercase; letter-spacing: 1.2px;
    background: var(--bg3);
  }
  .compare-table th.col-iphera { color: var(--accent); }
  .compare-table td:first-child { color: var(--text2); font-weight: 500; }
  .compare-table td.val-bad { color: var(--accent3); font-weight: 700; }
  .compare-table td.val-good { color: var(--accent); font-weight: 800; }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
  @media(max-width: 760px) {
    .compare-table th, .compare-table td { padding: 12px 14px; font-size: 12px; }
  }

  /* ── Use case cards ── */
  .use-case-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 48px;
  }
  .card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 30px 28px;
    transition: all .25s;
  }
  .card:hover {
    border-color: rgba(230,0,126,.4);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(230,0,126,.15);
  }
  .card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(230,0,126,.1); border: 1px solid rgba(230,0,126,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 18px;
  }
  .card-title {
    font-family: var(--font-head);
    font-size: 17px; font-weight: 900; letter-spacing: -.2px;
    margin-bottom: 10px; line-height: 1.25;
  }
  .card-desc {
    font-size: 14px; color: var(--text2); line-height: 1.65;
  }
  @media(max-width: 1024px) { .use-case-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width: 640px)  { .use-case-grid { grid-template-columns: 1fr; } }

/* ════════════ plattformen.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #E6007E;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(230,0,126,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent2); }
.hp-cell .v.green { color: var(--green); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

/* ── value props ── */
  .props-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 40px;
  }
  .prop {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 0 0 28px;
    overflow: hidden;
    transition: all .25s;
  }
  .prop:hover {
    border-color: rgba(230,0,126,.4);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(230,0,126,.18);
  }
  .prop-content { padding: 24px 26px 0; }
  .prop-icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(230,0,126,.1); border: 1px solid rgba(230,0,126,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 14px;
  }

  /* ── prop animations ── */
  .prop-anim {
    position: relative; height: 120px;
    background:
      radial-gradient(circle at 50% 70%, rgba(230,0,126,.12), transparent 60%),
      linear-gradient(180deg, var(--bg3), var(--bg));
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .anim-search { display: flex; flex-direction: column; padding: 14px 16px; gap: 8px; }
  .anim-search .as-bar {
    display: flex; align-items: center; gap: 8px;
    background: rgba(20,20,28,.85);
    border: 1px solid rgba(230,0,126,.25);
    border-radius: 999px; padding: 5px 10px;
  }
  .anim-search .as-bar svg { color: var(--accent); flex-shrink: 0; }
  .anim-search .as-q {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 700; color: var(--text); letter-spacing: .2px;
    white-space: nowrap; overflow: hidden; width: 0;
    animation: asType 6s cubic-bezier(.5,0,.3,1) infinite;
  }
  @keyframes asType {
    0%, 5%    { width: 0; }
    35%, 65%  { width: 13ch; }
    95%, 100% { width: 0; }
  }
  .anim-search .as-cursor {
    width: 1.5px; height: 11px; background: var(--accent);
    animation: asCursor 1s steps(2) infinite; flex-shrink: 0;
  }
  @keyframes asCursor { 50% { opacity: 0; } }
  .anim-search .as-results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .anim-search .as-tile {
    aspect-ratio: 16/10; border-radius: 4px;
    background: linear-gradient(180deg, rgba(230,0,126,.18), rgba(230,0,126,.06));
    border: 1px solid rgba(230,0,126,.25);
    position: relative; opacity: 0;
    animation: asTile 6s ease-in-out infinite;
  }
  .anim-search .as-tile:nth-child(1) { animation-delay: 1.6s;  background: linear-gradient(180deg, rgba(0,212,255,.18), rgba(0,212,255,.05)); }
  .anim-search .as-tile:nth-child(2) { animation-delay: 1.85s; background: linear-gradient(180deg, rgba(230,0,126,.2),  rgba(230,0,126,.05));  }
  .anim-search .as-tile:nth-child(3) { animation-delay: 2.1s;  background: linear-gradient(180deg, rgba(0,230,118,.18), rgba(0,230,118,.05)); }
  .anim-search .as-tile:nth-child(4) { animation-delay: 2.35s; background: linear-gradient(180deg, rgba(230,0,126,.18), rgba(230,0,126,.05)); }
  @keyframes asTile {
    0%, 25%   { opacity: 0; transform: translateY(6px); }
    35%, 80%  { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; }
  }

  .anim-commerce { position: relative; }
  .anim-commerce .ac-player {
    position: absolute; inset: 14px 18px;
    background:
      radial-gradient(circle at 35% 75%, rgba(230,0,126,.16), transparent 60%),
      linear-gradient(180deg, #1c1c2e, #15151e);
    border-radius: 6px; overflow: hidden;
  }
  .anim-commerce .ac-figure {
    position: absolute; bottom: 0; left: 25%; transform: translateX(-50%);
    width: 16%; height: 70%; opacity: .55;
    background: linear-gradient(180deg, #2a3340, #15181e);
    clip-path: polygon(35% 0, 65% 0, 75% 22%, 78% 100%, 22% 100%, 25% 22%);
  }
  .anim-commerce .ac-tag {
    position: absolute; left: 17%; top: 28%;
    font-family: var(--font-head); font-size: 8px; font-weight: 800;
    background: rgba(8,8,14,.85);
    border: 1px solid rgba(230,0,126,.45);
    color: #fff; padding: 2px 6px; border-radius: 999px;
    opacity: 0; animation: acTag 4s ease-in-out infinite;
  }
  @keyframes acTag {
    0%, 10%   { opacity: 0; transform: translateY(4px); }
    25%, 80%  { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; }
  }
  .anim-commerce .ac-tag .ac-dot {
    display: inline-block; width: 5px; height: 5px; border-radius: 50%;
    background: var(--accent); margin-right: 4px; vertical-align: middle;
  }
  .anim-commerce .ac-shop {
    position: absolute; right: 8%; top: 18%;
    background: rgba(8,8,14,.94);
    border: 1px solid rgba(230,0,126,.4);
    border-radius: 6px; padding: 5px 7px;
    display: flex; align-items: center; gap: 6px;
    opacity: 0; animation: acShop 4s ease-in-out infinite;
  }
  @keyframes acShop {
    0%, 25%   { opacity: 0; transform: translateX(10px) scale(.95); }
    40%, 80%  { opacity: 1; transform: translateX(0) scale(1); }
    95%, 100% { opacity: 0; }
  }
  .anim-commerce .ac-thumb {
    width: 14px; height: 14px; border-radius: 3px;
    background: linear-gradient(180deg, #e8e6e0, #c8c4ba); flex-shrink: 0;
  }
  .anim-commerce .ac-meta { display: flex; flex-direction: column; gap: 1px; }
  .anim-commerce .ac-brand {
    font-family: var(--font-head); font-size: 8px; font-weight: 800; letter-spacing: 1px; color: var(--accent);
  }
  .anim-commerce .ac-price { font-size: 8px; color: var(--text); font-weight: 700; }
  .anim-commerce .ac-cta {
    font-family: var(--font-head); font-size: 7px; font-weight: 800; letter-spacing: 1px;
    color: #fff; background: var(--accent); padding: 3px 6px; border-radius: 3px;
  }

  .anim-analytics {
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 14px 18px; color: var(--accent);
  }
  .anim-analytics .aa-bars { display: flex; align-items: flex-end; gap: 6px; height: 55%; }
  .anim-analytics .aa-bar {
    flex: 1; background: linear-gradient(180deg, var(--accent), #ff4da3);
    border-radius: 2px 2px 0 0; transform-origin: bottom;
    animation: aaBar 4s ease-in-out infinite;
  }
  .anim-analytics .aa-bar:nth-child(1) { animation-delay: 0s;   height: 35%; }
  .anim-analytics .aa-bar:nth-child(2) { animation-delay: .15s; height: 55%; }
  .anim-analytics .aa-bar:nth-child(3) { animation-delay: .3s;  height: 42%; }
  .anim-analytics .aa-bar:nth-child(4) { animation-delay: .45s; height: 78%; }
  .anim-analytics .aa-bar:nth-child(5) { animation-delay: .6s;  height: 92%; }
  .anim-analytics .aa-bar:nth-child(6) { animation-delay: .75s; height: 100%; }
  @keyframes aaBar {
    0%, 100% { transform: scaleY(.1); opacity: .35; }
    50%      { transform: scaleY(1);   opacity: 1; }
  }
  .anim-analytics .aa-trend {
    width: 100%; height: 32%; margin-top: 6px; color: var(--accent);
    stroke-dasharray: 200; stroke-dashoffset: 200;
    animation: aaTrend 4s ease-in-out infinite;
  }
  @keyframes aaTrend {
    0%   { stroke-dashoffset: 200; }
    60%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
  }
  .prop-title {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 900; letter-spacing: -.2px;
    margin-bottom: 10px;
  }
  .prop-desc { font-size: 14px; color: var(--text2); line-height: 1.65; }
  @media(max-width: 1024px) { .props-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width: 640px)  { .props-grid { grid-template-columns: 1fr; } }

  /* ── use cases (5 cards) ── */
  .use-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
  }
  .use-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 28px 26px;
    border-top: 3px solid var(--accent2);
    transition: all .25s;
  }
  .use-card.accent { border-top-color: var(--accent); }
  .use-card.green  { border-top-color: var(--accent); grid-column: 1 / -1; }
  .use-card:hover { transform: translateY(-2px); border-color: rgba(230,0,126,.3); }
  .use-card.accent:hover { border-color: rgba(230,0,126,.3); }
  .use-card.green:hover  { border-color: rgba(230,0,126,.3); }
  .use-card-icon { width: 38px; height: 38px; margin-bottom: 14px; }
  .use-card.green .use-card-icon { color: var(--accent); }
  .use-card.accent .use-card-icon { color: var(--accent); }
  .use-card .use-card-icon { color: var(--accent2); }
  .use-card-title {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 900; margin-bottom: 8px;
  }
  .use-card-desc { font-size: 13px; color: var(--text2); line-height: 1.65; }
  @media(max-width: 760px) { .use-grid { grid-template-columns: 1fr; } .use-card.green { grid-column: auto; } }

  /* ── integration steps ── */
  .steps {
    display: flex; flex-direction: column; gap: 0; margin-top: 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px 36px;
  }
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
  }
  .step:first-child { padding-top: 24px; }
  .step:last-child  { border-bottom: none; padding-bottom: 24px; }
  .step-num {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(230,0,126,0.1);
    border: 1px solid rgba(230,0,126,0.3);
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .step-content { min-width: 0; hyphens: manual; }
  .step-content h4 {
    font-family: var(--font-head); font-size: 18px; font-weight: 900;
    margin-bottom: 10px; letter-spacing: -.2px; line-height: 1.25;
  }
  .step-content p {
    font-size: 14px; color: var(--text2); line-height: 1.7;
    max-width: 820px;
    padding-right: 24px;
    hyphens: manual;
    word-break: normal;
    overflow-wrap: break-word;
  }
  @media(max-width: 640px) {
    .step { grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 0; }
    .step-num { width: 36px; height: 36px; font-size: 13px; }
    .step-content h4 { font-size: 16px; }
  }

  /* ── tech pills ── */
  .tech-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px; margin-top: 28px;
  }
  .tech-pill {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: var(--r-sm); padding: 14px 18px;
    font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 12px;
  }
  .tech-pill::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent2); flex-shrink: 0;
  }

/* ════════════ kontakt.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #E6007E;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(230,0,126,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent2); }
.hp-cell .v.green { color: var(--green); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
  }
  @media(max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:32px; } }

  .contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 36px;
  }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--text3); margin-bottom: 8px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    padding: 13px 14px;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230,0,126,.12);
  }
  .form-select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--text2) 50%), linear-gradient(135deg, var(--text2) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
  .form-textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media(max-width:500px) { .form-row { grid-template-columns:1fr; } }

  .form-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
  }
  .success-msg {
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
    display: none;
  }
  .success-msg.show { display: block; }

  .info-side { display: flex; flex-direction: column; gap: 18px; margin-top: 38px; }
  .info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
  }
  .info-card .label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .info-card.accent2 .label { color: var(--accent2); }

  .expect-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .expect-item:last-child { border-bottom: none; padding-bottom: 0; }
  .expect-num {
    width: 28px; height: 28px;
    background: rgba(230,0,126,0.1);
    border: 1px solid rgba(230,0,126,0.3);
    border-radius: 50%;
    color: var(--accent2);
    font-family: var(--font-head);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .expect-text { font-size: 13px; color: var(--text2); line-height: 1.6; padding-top: 3px; }
  .expect-text strong { color: var(--text); font-weight: 800; }

  .mini-mail-card {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .mini-mail-card .ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(230,0,126,0.1); border: 1px solid rgba(230,0,126,0.25);
    color: var(--accent2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .mini-mail-card .info-title {
    font-family: var(--font-head); font-size: 15px; font-weight: 900;
    margin-bottom: 6px;
  }
  .mini-mail-card .info-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }
  .info-link {
    display: inline-block; margin-top: 10px;
    color: var(--accent2); font-weight: 700; font-size: 13px;
    text-decoration: none;
  }
  .info-link:hover { color: var(--accent); }

  .metrics-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: 8px; overflow: hidden;
    margin-top: 12px;
  }
  .metrics-row .m {
    background: var(--bg3); padding: 14px 12px; text-align: center;
  }
  .metrics-row .mk { font-size: 10px; color: var(--text3); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 800; }
  .metrics-row .mv {
    font-family: var(--font-head); font-size: 22px; font-weight: 900;
    margin-top: 4px; letter-spacing: -.3px;
  }
  .metrics-row .mv.pink  { color: var(--accent); }
  .metrics-row .mv.green { color: var(--green); }
  .metrics-row .mv.blue  { color: var(--accent2); }

/* ════════════ impressum.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #E6007E;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(230,0,126,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent2); }
.hp-cell .v.green { color: var(--green); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


  /* ── Impressum / Legal page ── */
  .legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .legal-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 28px;
  }
  .legal-card.wide { grid-column: 1 / -1; }
  .legal-label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .legal-body { display: flex; flex-direction: column; gap: 10px; }
  .legal-body p { font-size: 14px; color: var(--text2); line-height: 1.65; }
  .legal-body p.legal-strong { color: var(--text); font-weight: 800; font-family: var(--font-head); letter-spacing: -.2px; }
  .legal-key {
    color: var(--text3); font-weight: 700; font-size: 13px; margin-right: 4px;
  }
  .legal-link {
    color: var(--accent); font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(230,0,126,.35);
    transition: border-color .15s;
  }
  .legal-link:hover { border-bottom-color: var(--accent); }
  @media(max-width: 760px) {
    .legal-grid { grid-template-columns: 1fr; }
    .legal-card { padding: 22px 20px; }
  }


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
  }
  @media(max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:32px; } }

  .contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 36px;
  }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--text3); margin-bottom: 8px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    padding: 13px 14px;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230,0,126,.12);
  }
  .form-select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--text2) 50%), linear-gradient(135deg, var(--text2) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
  .form-textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media(max-width:500px) { .form-row { grid-template-columns:1fr; } }

  .form-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
  }
  .success-msg {
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
    display: none;
  }
  .success-msg.show { display: block; }

  .info-side { display: flex; flex-direction: column; gap: 18px; }
  .info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
  }
  .info-card .label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .info-card.accent2 .label { color: var(--accent2); }

  .expect-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .expect-item:last-child { border-bottom: none; padding-bottom: 0; }
  .expect-num {
    width: 28px; height: 28px;
    background: rgba(230,0,126,0.1);
    border: 1px solid rgba(230,0,126,0.3);
    border-radius: 50%;
    color: var(--accent2);
    font-family: var(--font-head);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .expect-text { font-size: 13px; color: var(--text2); line-height: 1.6; padding-top: 3px; }
  .expect-text strong { color: var(--text); font-weight: 800; }

  .mini-mail-card {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .mini-mail-card .ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(230,0,126,0.1); border: 1px solid rgba(230,0,126,0.25);
    color: var(--accent2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .mini-mail-card .info-title {
    font-family: var(--font-head); font-size: 15px; font-weight: 900;
    margin-bottom: 6px;
  }
  .mini-mail-card .info-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }
  .info-link {
    display: inline-block; margin-top: 10px;
    color: var(--accent2); font-weight: 700; font-size: 13px;
    text-decoration: none;
  }
  .info-link:hover { color: var(--accent); }

  .metrics-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: 8px; overflow: hidden;
    margin-top: 12px;
  }
  .metrics-row .m {
    background: var(--bg3); padding: 14px 12px; text-align: center;
  }
  .metrics-row .mk { font-size: 10px; color: var(--text3); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 800; }
  .metrics-row .mv {
    font-family: var(--font-head); font-size: 22px; font-weight: 900;
    margin-top: 4px; letter-spacing: -.3px;
  }
  .metrics-row .mv.pink  { color: var(--accent); }
  .metrics-row .mv.green { color: var(--green); }
  .metrics-row .mv.blue  { color: var(--accent2); }

/* ════════════ datenschutz.html ════════════ */
/* ═══════════════════════════════════════════════════════════
   INPHERA 2.0 — Shared subpage styles
   ═══════════════════════════════════════════════════════════ */


:root {
  --bg:      #0a0a0f;
  --bg2:     #111118;
  --bg3:     #1a1a24;
  --bg4:     #22222e;
  --accent:  #E6007E;
  --accent2: #E6007E;
  --accent3: #ff4d6d;
  --text:    #f5f5fa;
  --text2:   #b8b8c8;
  --text3:   #7a7a90;
  --border:  #2a2a38;
  --green:   #00e676;
  --r:       14px;
  --r-sm:    8px;
  --max:     1480px;
  --font-head: 'Montserrat', 'Avenir Next', sans-serif;
  --font-body: 'Montserrat', 'Avenir Next', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); line-height: 1.6;
  min-height: 100vh; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(230,0,126,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(230,0,126,0.06) 0%, transparent 60%);
}
main { position: relative; z-index: 1; }

/* ══ NAV ══ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; padding: 8px 28px; gap: 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
nav.topbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.brand { display:flex; align-items:center; gap:10px; flex-shrink: 0; }
.brand img { height: 164px; width:auto; display:block; flex-shrink: 0; }
.nav-center { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-center a {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 8px 14px;
  color: #2a2a3a; border-radius: 6px; transition: all .15s;
  position: relative;
}
.nav-center a:hover { color: var(--accent); background: rgba(230,0,126,0.05); }
.nav-center a.active { color: var(--accent); background: rgba(230,0,126,0.06); }
.nav-right { display: flex; align-items:center; gap: 12px; }
.lang-toggle {
  display:flex; border:1px solid rgba(0,0,0,0.14); border-radius:6px; overflow:hidden;
}
.lang-toggle button {
  padding: 5px 10px; font-size: 11px; font-weight:700; color: #888;
  letter-spacing:.5px; background: #fff;
}
.lang-toggle button:hover:not(.active) { color: #2a2a3a; }
.lang-toggle button.active { background: var(--accent); color:#fff; }

/* Push content below the white nav */
main { padding-top: 160px; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items:center; gap: 8px;
  padding: 12px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .3px;
  white-space: nowrap; cursor: pointer; transition: all .2s;
}
.btn-primary { background: var(--accent); color:#fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(230,0,126,.4); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-secondary { background: var(--bg3); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg4); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 15px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ══ LAYOUT ══ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 90px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ══ TYPOGRAPHY ══ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.8); }
}
h1.page-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.02;
  margin: 18px 0;
  max-width: 1100px;
}
h1.page-title em { font-style: normal; color: var(--accent); }
h1.page-title .blue { color: var(--accent2); }
h2.title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.05;
  letter-spacing: -1.5px; margin-top: 14px;
  max-width: 980px;
}
h2.title em { font-style:normal; color: var(--accent); }
h2.title .blue { color: var(--accent2); }
.section-sub {
  margin-top: 16px; font-size: 17px; color: var(--text2);
  max-width: 720px; line-height: 1.6;
}
.section-sub.wide { max-width: 1000px; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero proof row (4 KPIs) ── */
.hero-proof {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  max-width: 880px;
}
.hp-cell .v {
  font-family: var(--font-head); font-weight: 900;
  font-size: 36px; line-height: 1; letter-spacing: -1.5px;
}
.hp-cell .v.pink  { color: var(--accent); }
.hp-cell .v.blue  { color: var(--accent2); }
.hp-cell .v.green { color: var(--green); }
.hp-cell .l { font-size: 11px; color: var(--text3); margin-top: 6px; letter-spacing:.3px; }

/* ══ CTA section ══ */
.cta-wrap {
  text-align: center; padding: 100px 28px;
  background: linear-gradient(135deg, var(--bg2), rgba(230,0,126,.06));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(230,0,126,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: -1.5px; line-height: 1.05;
  position: relative;
}
.cta-wrap h2 em { font-style: normal; color: var(--accent); }
.cta-wrap h2 .blue { color: var(--accent2); }
.cta-wrap p { color: var(--text2); max-width: 600px; margin: 18px auto 32px; position: relative; }
.cta-wrap .btns { display:flex; gap:12px; justify-content:center; flex-wrap: wrap; position:relative; }

/* ══ FOOTER ══ */
footer.foot {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 50px 28px 26px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.foot-inner .foot-logo { display: inline-block; }
.foot-inner .foot-logo img { height: 30px; width: auto; display: block; }
.foot-inner .foot-brand { font-family: var(--font-head); font-size: 22px; font-weight: 900; letter-spacing: 2px; color: var(--text); }
.foot-inner .tag { font-size: 13px; color: var(--text2); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.foot-inner .mail { font-size: 13px; color: var(--text3); margin-top: 12px; }
.foot-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 13px; color: var(--text2); margin-bottom: 8px; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--max); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; font-size: 12px; color: var(--text3);
}
.foot-bottom .links { display:flex; gap: 20px; }

/* ── lang system ── */
html.lang-en .de { display: none !important; }
html.lang-de .en { display: none !important; }

/* ══ RESPONSIVE ══ */
@media(max-width: 1024px) {
  .hero-proof { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 860px) {
  nav.topbar { flex-wrap: wrap; }
  .nav-center {
    order: 3; width: 100%;
    justify-content: flex-start;
    gap: 0; padding: 6px 0 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-center a {
    font-size: 11px; padding: 8px 10px; white-space: nowrap;
  }
}
@media(max-width: 640px) {
  nav.topbar { padding: 6px 16px; gap: 10px; }
  .brand img { height: 72px; }
  main { padding-top: 100px; }
  section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
}


  /* ── Impressum / Legal page ── */
  .legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .legal-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 28px;
  }
  .legal-card.wide { grid-column: 1 / -1; }
  .legal-label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .legal-body { display: flex; flex-direction: column; gap: 10px; }
  .legal-body p { font-size: 14px; color: var(--text2); line-height: 1.65; }
  .legal-body p.legal-strong { color: var(--text); font-weight: 800; font-family: var(--font-head); letter-spacing: -.2px; }
  .legal-key {
    color: var(--text3); font-weight: 700; font-size: 13px; margin-right: 4px;
  }
  .legal-link {
    color: var(--accent); font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(230,0,126,.35);
    transition: border-color .15s;
  }
  .legal-link:hover { border-bottom-color: var(--accent); }
  @media(max-width: 760px) {
    .legal-grid { grid-template-columns: 1fr; }
    .legal-card { padding: 22px 20px; }
  }


  .legal-subhead {
    font-family: var(--font-head);
    font-size: 16px; font-weight: 900; letter-spacing: -.2px;
    color: var(--text); margin-top: 18px; margin-bottom: 6px;
  }
  .legal-subhead:first-child { margin-top: 0; }
  .legal-body ul {
    margin: 6px 0 6px 18px;
    color: var(--text2); font-size: 14px; line-height: 1.6;
  }
  .legal-body ul li { margin-bottom: 4px; }
  .legal-toc {
    margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .legal-toc a {
    font-size: 12px; font-weight: 700;
    color: var(--accent);
    background: rgba(230,0,126,.08);
    border: 1px solid rgba(230,0,126,.25);
    border-radius: 999px; padding: 5px 11px;
    transition: all .15s;
    text-decoration: none;
  }
  .legal-toc a:hover { background: var(--accent); color: #fff; }


/* ── Header shrinks on scroll ── */
nav.topbar { transition: padding .25s ease, box-shadow .25s ease; }
.brand img { transition: height .25s ease; }
nav.topbar.scrolled { padding: 4px 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.10); }
nav.topbar.scrolled .brand img { height: 88px; }
@media(max-width: 640px) {
  nav.topbar.scrolled { padding: 4px 16px; }
  nav.topbar.scrolled .brand img { height: 56px; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
  }
  @media(max-width:900px) { .contact-grid { grid-template-columns:1fr; gap:32px; } }

  .contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 36px;
  }
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--text3); margin-bottom: 8px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-body);
    padding: 13px 14px;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230,0,126,.12);
  }
  .form-select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--text2) 50%), linear-gradient(135deg, var(--text2) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
  .form-textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media(max-width:500px) { .form-row { grid-template-columns:1fr; } }

  .form-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
  }
  .success-msg {
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.3);
    border-radius: var(--r-sm);
    padding: 16px 20px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    text-align: center;
    display: none;
  }
  .success-msg.show { display: block; }

  .info-side { display: flex; flex-direction: column; gap: 18px; }
  .info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
  }
  .info-card .label {
    font-family: var(--font-head);
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
  }
  .info-card.accent2 .label { color: var(--accent2); }

  .expect-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .expect-item:last-child { border-bottom: none; padding-bottom: 0; }
  .expect-num {
    width: 28px; height: 28px;
    background: rgba(230,0,126,0.1);
    border: 1px solid rgba(230,0,126,0.3);
    border-radius: 50%;
    color: var(--accent2);
    font-family: var(--font-head);
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .expect-text { font-size: 13px; color: var(--text2); line-height: 1.6; padding-top: 3px; }
  .expect-text strong { color: var(--text); font-weight: 800; }

  .mini-mail-card {
    display: flex; gap: 14px; align-items: flex-start;
  }
  .mini-mail-card .ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(230,0,126,0.1); border: 1px solid rgba(230,0,126,0.25);
    color: var(--accent2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .mini-mail-card .info-title {
    font-family: var(--font-head); font-size: 15px; font-weight: 900;
    margin-bottom: 6px;
  }
  .mini-mail-card .info-desc { font-size: 13px; color: var(--text2); line-height: 1.55; }
  .info-link {
    display: inline-block; margin-top: 10px;
    color: var(--accent2); font-weight: 700; font-size: 13px;
    text-decoration: none;
  }
  .info-link:hover { color: var(--accent); }

  .metrics-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    border-radius: 8px; overflow: hidden;
    margin-top: 12px;
  }
  .metrics-row .m {
    background: var(--bg3); padding: 14px 12px; text-align: center;
  }
  .metrics-row .mk { font-size: 10px; color: var(--text3); letter-spacing: 1.2px; text-transform: uppercase; font-weight: 800; }
  .metrics-row .mv {
    font-family: var(--font-head); font-size: 22px; font-weight: 900;
    margin-top: 4px; letter-spacing: -.3px;
  }
  .metrics-row .mv.pink  { color: var(--accent); }
  .metrics-row .mv.green { color: var(--green); }
  .metrics-row .mv.blue  { color: var(--accent2); }