/* ------------------------------------------------------------------
   KI-Küchenplanung – Landingpage
   Design-Tokens nach Elephant-Vorbild (Plus Jakarta Sans, Pill-Tags,
   dunkler Gradient-Button, Bento-Karten mit 40px Radius, dunkler Abschluss)
------------------------------------------------------------------- */

:root {
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;

  --black: #000;
  --ink: #272b35;          /* h2 / h3 */
  --ink-2: #394156;        /* Fließtext */
  --ink-3: #6b7280;        /* sekundär */
  --line: rgba(0, 0, 0, .06);
  --bg: #fff;
  --dark: #17191f;

  /* Pill-Tags */
  --pill-1: #446eea;
  --pill-2: #7747ff;
  --pill-3: #fb47ff;

  /* Karten-Töne */
  --c-lavender: #ebe9f0;
  --c-beige: #efe9df;
  --c-sand: #eeece5;
  --c-cloud: #f6f7fa;
  --c-stone: #e5e6e6;
  --c-sage: #dde1d3;
  --c-ice: #dce6e9;
  --c-periwinkle: #dfe4f0;
  --c-mist: #dcdee5;

  /* Stat-Zahlen */
  --n-olive: #8e8364;
  --n-violet: #4f38a9;
  --n-blue: #3860ce;

  --brand-blue: #4a6cf7;

  --radius-xl: 40px;
  --radius-lg: 20px;
  --radius-md: 12px;

  --container: 1200px;
  --gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- Typografie ---------- */
.h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--black);
}
.h2 {
  font-size: clamp(32px, 3.7vw, 47px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.h3-sm { font-size: 28px; }
.lead {
  font-size: 18px;
  line-height: 1.46;
  color: var(--ink-2);
}
.muted { color: var(--ink-3); }
.center { text-align: center; }
.mx { margin-left: auto; margin-right: auto; }
.maxw-640 { max-width: 640px; }
.maxw-760 { max-width: 760px; }

.emoji-badge {
  display: inline-grid;
  place-items: center;
  width: 1.1em;
  height: 1.1em;
  border-radius: .28em;
  font-size: .8em;
  vertical-align: -.12em;
  margin: 0 .08em;
}
.emoji-badge.blue { background: #dfe4f0; }
.emoji-badge.orange { background: #f5e3cf; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #fff;
  border: 0;
  background-image: linear-gradient(#353a47 0%, #272b35 100%);
  box-shadow:
    rgba(255, 255, 255, .3) 0 1px 0 1px inset,
    rgba(0, 0, 0, .6) 0 0 0 1px inset,
    rgba(0, 0, 0, .05) 0 2px 3px 0;
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { font-weight: 700; }

.btn-light {
  background-image: linear-gradient(#fff 0%, #f3f4f6 100%);
  color: var(--ink);
  box-shadow:
    rgba(255, 255, 255, .8) 0 1px 0 1px inset,
    rgba(0, 0, 0, .12) 0 0 0 1px inset,
    rgba(0, 0, 0, .06) 0 2px 3px 0;
}

.btn-ghost {
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  box-shadow: rgba(0, 0, 0, .1) 0 0 0 1px inset;
}

.btn-sm { padding: 10px 14px; font-size: 14px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 1px 0 var(--line); }
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pill-1), var(--pill-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.logo .tld { color: var(--ink-3); font-weight: 600; }
.logo-img-brand { height: 32px; width: auto; display: block; }
.footer .logo-img-brand { height: 28px; }
.logo-on-dark { display: inline-block; background: #fff; border-radius: 10px; padding: 6px 10px; margin-bottom: 20px; }
.header-right { display: flex; align-items: center; gap: 22px; }
.header-note { font-size: 14px; color: var(--ink-3); }
.lbl-short { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 104px 0 24px;
  overflow-x: clip;
}
.hero-inner { text-align: center; }

.pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 20.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.pill-1 { background: var(--pill-1); box-shadow: rgba(71, 112, 255, .4) 0 16px 41px -6px; transform: rotate(-4deg); }
.pill-2 { background: var(--pill-2); box-shadow: rgba(119, 71, 255, .4) 0 16px 41px -6px; transform: rotate(3deg) translateY(4px); }
.pill-3 { background: var(--pill-3); box-shadow: rgba(251, 71, 255, .4) 0 15px 39px -6px; transform: rotate(-3deg); }

.hero .h1 { max-width: 900px; margin: 0 auto 16px; }
.hero .lead { max-width: 620px; margin: 0 auto 14px; }
.hero-cta { margin-bottom: 16px; }
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust span::before { content: "✓"; color: #16a34a; font-weight: 800; margin-right: 6px; }

/* Hero-Bühne: Dateien fliegen links rein, Planungen kommen rechts raus */
.hero-stage {
  position: relative;
  margin: 18px auto 0;
  width: 100%;
  max-width: 1120px;
  height: 430px;
}
.stage-glow {
  position: absolute;
  inset: 0 10% 10% 10%;
  background:
    radial-gradient(55% 60% at 32% 55%, rgba(119, 71, 255, .16), transparent 70%),
    radial-gradient(45% 50% at 66% 45%, rgba(68, 110, 234, .12), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(28px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
  animation: rays-breathe 6s ease-in-out infinite;
}
@keyframes rays-breathe { 0%, 100% { opacity: .5; } 50% { opacity: .62; } }

.prompt-box {
  position: absolute;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  z-index: 6;
  width: min(720px, 100%);
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow:
    0 30px 80px -20px rgba(39, 43, 53, .28),
    0 8px 24px -10px rgba(39, 43, 53, .12);
  padding: 22px 24px 18px;
  text-align: left;
}
.prompt-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 17px;
  color: #9aa0ad;
  margin-bottom: 8px;
}
.prompt-label b { color: #9aa0ad; font-weight: 600; }
.prompt-box textarea {
  width: 100%;
  min-height: 74px;
  margin-bottom: 12px;
  resize: none;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: transparent;
  padding: 0;
}
.prompt-box textarea::placeholder { color: #9aa0ad; transition: color .2s; }
.prompt-box textarea:focus::placeholder { color: #b4b9c5; }
.prompt-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}
.chip {
  border: 1px solid rgba(0, 0, 0, .08);
  background: #f6f7fa;
  color: var(--ink-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: background .15s;
}
.chip:hover { background: #ecedf3; }
.prompt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.attach {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
}
.attach input { display: none; }
.attach-count { font-size: 13px; color: var(--ink-3); margin-left: 10px; }

.avatar {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7747ff url(img/mia.svg) center / cover no-repeat;
  color: transparent;
  font-size: 0;
  flex: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(119, 71, 255, .35);
  overflow: hidden;
}
.avatar.lg { width: 40px; height: 40px; font-size: 15px; }
.avatar.xl { width: 96px; height: 96px; font-size: 34px; box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(119, 71, 255, .5); }

/* Eingabe-Items (links, fliegen in die Box) */
.anim-inputs, .anim-outputs { position: absolute; inset: 0; pointer-events: none; }
.in-item {
  position: absolute;
  width: 96px;
  height: 96px;
  z-index: 5;
  opacity: 0;
  will-change: left, top, opacity, transform;
}
.in-item.photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px -14px rgba(39, 43, 53, .45), 0 0 0 3px #fff;
  background: #eee;
}
.in-item.photo img { width: 100%; height: 100%; object-fit: cover; }
.in-item.doc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px -14px rgba(39, 43, 53, .35), 0 0 0 1px rgba(0,0,0,.05);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-2);
  text-align: center;
  padding: 8px;
}
.in-item.doc .file-ico { width: 36px; height: 36px; border-radius: 9px; font-size: 12px; }
.in-item.doc .dim-tag { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.file-ico {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.file-ico.pdf { background: #e5484d; }
.file-ico.img { background: #16a34a; }
.file-ico.dwg { background: #446eea; }
.file-ico.note { background: #f5a524; }

/* Ausgabe-Karten (rechts, wachsen aus der Box) */
.out-card {
  position: absolute;
  left: 56%;
  top: 40%;
  width: 250px;
  transform-origin: 0% 50%;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 12px;
  box-shadow: 0 24px 60px -20px rgba(39, 43, 53, .4), 0 0 0 1px rgba(0,0,0,.04);
  opacity: 0;
  will-change: transform, opacity;
}
.out-img { border-radius: 10px; overflow: hidden; aspect-ratio: 16 / 10; background: #eee; }
.out-img img { width: 100%; height: 100%; object-fit: cover; }
.out-meta { padding: 10px 4px 0; display: grid; gap: 2px; }
.out-tag { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #9aa0ad; font-weight: 700; }
.out-meta b { font-size: 14px; color: var(--ink); }
.out-sub { font-size: 11px; color: var(--ink-3); }

/* Mini-Grundriss (wird in Feature- und Baustein-Karten genutzt) */
.floorplan {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 22px);
  gap: 3px;
  background: #f6f7fa;
  padding: 8px;
  border-radius: 10px;
}
.floorplan i { display: block; border-radius: 3px; background: #dfe4f0; }
.floorplan i.k { background: #c9d2ee; }
.floorplan i.island { background: #7747ff; opacity: .8; }
.floorplan i.app { background: #446eea; opacity: .8; }
.floorplan i.empty { background: transparent; }

.file-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #f6f7fa;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 12px;
}
.file-pill .file-ico { width: 24px; height: 24px; border-radius: 6px; font-size: 9px; }

/* ---------- Logo-Wand ---------- */
.logos { padding: 64px 0; }
.logos-title { text-align: center; font-size: 14px; color: var(--ink-2); margin-bottom: 26px; }
.logos-title b { color: var(--black); font-weight: 800; }
.logo-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.logo-card {
  height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  color: #2a2e39;
  text-transform: uppercase;
}
.logo-img {
  display: block;
  width: 118px;
  height: 34px;
  background-color: #2a2e39;
  -webkit-mask: var(--logo) center / contain no-repeat;
  mask: var(--logo) center / contain no-repeat;
}

/* ---------- Stats ---------- */
.stats { padding: 96px 0; }
.stats-title { text-align: center; font-size: 17px; color: var(--ink-3); margin-bottom: 44px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.stat .ico { font-size: 34px; margin-bottom: auto; }
.stat .num {
  font-size: clamp(56px, 6.5vw, 89px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin: 24px 0 10px;
}
.stat .lbl { font-size: 15px; color: var(--ink-2); max-width: 220px; }
.stat-1 { background: var(--c-sand); } .stat-1 .num { color: var(--n-olive); }
.stat-2 { background: var(--c-periwinkle); } .stat-2 .num { color: var(--n-violet); }
.stat-3 { background: var(--c-stone); } .stat-3 .num { color: var(--n-blue); }

/* ---------- Sektionen ---------- */
.section { padding: 96px 0; background: #fff; }
.section-sm { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .lead { margin: 18px auto 28px; }

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  border-radius: var(--radius-xl);
  padding: 44px 44px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.card.wide { grid-column: 1 / -1; padding: 56px; }
.card.wide .card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.card .h3 { margin-bottom: 14px; }
.card p { font-size: 15px; line-height: 1.55; color: var(--ink-2); max-width: 420px; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: var(--pill-2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
  align-self: flex-start;
}
.card-visual {
  margin-top: 28px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.card.wide .card-visual { margin-top: 0; }

.c-lavender { --card-bg: var(--c-lavender); background: var(--card-bg); }
.c-beige { --card-bg: var(--c-beige); background: var(--card-bg); }
.c-sand { --card-bg: var(--c-sand); background: var(--card-bg); }
.c-cloud { --card-bg: var(--c-cloud); background: var(--card-bg); }
.c-stone { --card-bg: var(--c-stone); background: var(--card-bg); }
.c-sage { --card-bg: var(--c-sage); background: var(--card-bg); }
.c-ice { --card-bg: var(--c-ice); background: var(--card-bg); }
.c-periwinkle { --card-bg: var(--c-periwinkle); background: var(--card-bg); }
.c-mist { --card-bg: var(--c-mist); background: var(--card-bg); }

/* Visuals faden unten sauber in die Kachelfarbe aus (wie im Original) */
.card-visual { position: relative; }
.card-visual::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: 120px;
  max-height: 55%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--card-bg, #fff) 92%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 70%);
  mask-image: linear-gradient(to bottom, transparent, #000 70%);
}
.card.wide .card-visual::after { height: 90px; }

/* Chat-Mockup */
.chat {
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  box-shadow: 0 -10px 40px -20px rgba(39, 43, 53, .25);
}
.chat.rounded { border-radius: 20px; margin-bottom: 0; }
.msg { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.msg.me { flex-direction: row-reverse; }
.msg .who { font-size: 11px; color: var(--ink-3); margin-bottom: 4px; font-weight: 700; }
.msg .bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
  background: #f3f4f8;
}
.msg.me .bubble { background: var(--pill-2); color: #fff; border-bottom-right-radius: 4px; }
.msg.ai .bubble { border-bottom-left-radius: 4px; }
.me-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #dfe4f0; color: var(--ink);
  display: grid; place-items: center; font-size: 11px; font-weight: 800; flex: none;
}
.progress-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-3); margin-top: 4px;
}
.progress-line .dot { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }
.progress-line .dot.pulse { background: var(--pill-2); animation: pulse 1.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* Option-Grid (Stil/Form) */
.opt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; }
.opt {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  border: 2px solid transparent;
  text-align: center;
}
.opt.sel { border-color: var(--pill-2); }
.opt .sw { height: 42px; border-radius: 8px; margin-bottom: 8px; }

/* Datei-Drop-Mockup */
.drop {
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}
.drop-zone {
  border: 2px dashed #c9cdd8;
  border-radius: 14px;
  padding: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.drop-zone b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.dim-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dim { background: #f6f7fa; border-radius: 10px; padding: 10px; font-size: 12px; }
.dim span { display: block; color: var(--ink-3); font-size: 10px; margin-bottom: 2px; }
.dim b { font-size: 15px; }

/* Plan-Mockup */
.plan {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  font-size: 13px;
}
.plan-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.plan-head b { font-size: 15px; }
.badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #e7f7ec; color: #15803d; }
.plan-section { padding: 10px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; }
.plan-section span:first-child { color: var(--ink-3); }
.plan-section b { color: var(--ink); text-align: right; }

/* Geräte-Liste-Mockup */
.devices { width: 100%; background: #fff; border-radius: 20px 20px 0 0; padding: 20px; }
.dev { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.dev:last-child { border-bottom: 0; }
.dev .ico { width: 36px; height: 36px; border-radius: 10px; background: #f3f4f8; display: grid; place-items: center; font-size: 17px; }
.dev .t { flex: 1; }
.dev .t b { display: block; font-size: 13.5px; }
.dev .t span { color: var(--ink-3); font-size: 12px; }
.dev .p { font-weight: 700; color: var(--ink); }

/* Kosten-Mockup */
.cost { width: 100%; background: #fff; border-radius: 20px 20px 0 0; padding: 22px; }
.cost-total { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.cost-sub { font-size: 12px; color: var(--ink-3); margin-bottom: 14px; }
.cost-bars { display: grid; gap: 8px; }
.cost-bar { display: grid; grid-template-columns: 90px 1fr 60px; align-items: center; gap: 10px; font-size: 12px; }
.cost-bar .track { height: 8px; background: #f0f1f5; border-radius: 4px; overflow: hidden; }
.cost-bar .track i { display: block; height: 100%; border-radius: 4px; }
.cost-bar .v { text-align: right; font-weight: 700; }

/* ---------- Mia-Banner (dunkles Bild) ---------- */
.meet { padding: 64px 0; }
.meet-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
  background:
    linear-gradient(180deg, rgba(23, 25, 31, .55), rgba(23, 25, 31, .75)),
    radial-gradient(120% 80% at 20% 20%, #4b3f6e 0%, transparent 60%),
    radial-gradient(90% 90% at 80% 80%, #3a5aa8 0%, transparent 55%),
    #22252f;
}
.meet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
}
.meet-inner { position: relative; max-width: 620px; }
.meet-inner .avatar { margin: 0 auto 26px; }
.meet-inner .h2 { color: #fff; margin-bottom: 16px; }
.meet-inner p { color: rgba(255, 255, 255, .8); font-size: 16px; margin-bottom: 30px; }

/* ---------- Bausteine-Grid (8 kleine Karten) ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.module {
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.module .vis {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 12px;
  font-size: 11px;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.module h4 { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.module p { font-size: 13px; color: var(--ink-2); line-height: 1.4; }
.mini-line { height: 6px; border-radius: 3px; background: #edeef3; }
.mini-line.short { width: 60%; }
.mini-line.acc { background: linear-gradient(90deg, var(--pill-1), var(--pill-2)); width: 80%; }
.mini-check { display: flex; gap: 6px; align-items: center; }
.mini-check::before { content: "✓"; color: #16a34a; font-weight: 800; }
.mini-num { font-size: 22px; font-weight: 800; color: var(--n-blue); letter-spacing: -.03em; }
.mini-swatches { display: flex; gap: 4px; }
.mini-swatches i { flex: 1; height: 22px; border-radius: 5px; }

.title-pill {
  display: inline-block;
  padding: 4px 18px;
  border-radius: 999px;
  background: var(--pill-2);
  color: #fff;
  font-size: .85em;
  vertical-align: middle;
  transform: rotate(-2deg);
  box-shadow: rgba(119, 71, 255, .4) 0 16px 41px -6px;
}

/* ---------- 4-Karten-Features (kleiner) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature {
  border-radius: var(--radius-xl);
  padding: 40px 40px 0;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.feature .h3-sm { margin-bottom: 10px; }
.feature p { font-size: 15px; color: var(--ink-2); max-width: 400px; margin: 0 auto; }
.feature .card-visual { justify-content: center; }
.feature-visual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 18px;
  box-shadow: 0 -10px 40px -20px rgba(39, 43, 53, .25);
  font-size: 13px;
  text-align: left;
}

/* Form-Icons (Zeile, L, U, Insel) */
.shapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.shape { background: #f6f7fa; border-radius: 12px; padding: 10px; text-align: center; font-size: 11px; font-weight: 700; }
.shape svg { width: 100%; height: 44px; margin-bottom: 6px; }
.shape.sel { outline: 2px solid var(--pill-2); }

/* ---------- Preis-/Gratis-Karte ---------- */
.price-card {
  border-radius: var(--radius-xl);
  background: var(--c-sand);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.price-num {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--n-blue);
  line-height: 1;
}
.price-num small { font-size: 20px; color: var(--ink-3); font-weight: 600; letter-spacing: 0; }
.price-card p { margin-top: 14px; font-size: 15px; color: var(--ink-2); max-width: 420px; }
.price-features { display: grid; gap: 12px; }
.price-features li { display: flex; gap: 10px; align-items: center; font-size: 15px; font-weight: 600; color: var(--ink); }
.check {
  width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: var(--pill-1); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.price-features .btn { margin-top: 10px; justify-self: start; }

/* ---------- Bald verfügbar ---------- */
.soon { padding: 80px 12px; }
.soon-card {
  border-radius: var(--radius-xl);
  background: var(--c-beige);
  padding: 72px 48px;
}
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.soon-item { background: #fff; border-radius: 24px; padding: 28px; }
.soon-item .vis { height: 130px; border-radius: 14px; background: #f6f7fa; margin-bottom: 20px; display: grid; place-items: center; font-size: 40px; }
.soon-item h4 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.soon-item p { font-size: 14px; color: var(--ink-2); }

/* ---------- Blaues Banner ---------- */
.banner { padding: 0 12px 64px; }
.banner-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--brand-blue);
  color: #fff;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.banner-card::before, .banner-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, .08);
  pointer-events: none;
}
.banner-card::before { width: 700px; height: 700px; right: -200px; top: -320px; }
.banner-card::after { width: 460px; height: 460px; right: -80px; top: -200px; border-width: 40px; }
.banner-card h2 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; position: relative; }
.banner-card p { font-size: 14px; color: rgba(255, 255, 255, .85); max-width: 520px; position: relative; }
.banner-card .btn { position: relative; }

/* ---------- FAQ ---------- */
.faq { padding: 112px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.faq .h2 { max-width: 320px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.faq-q .plus {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  border: 1px solid rgba(0, 0, 0, .15);
  display: grid; place-items: center; font-size: 16px; font-weight: 400;
  transition: transform .2s;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 40px 24px 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

/* ---------- Final CTA (dunkel) ---------- */
.final {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  border-radius: 40px 40px 0 0;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 85% 30%, rgba(119, 71, 255, .35), transparent 60%),
    radial-gradient(50% 60% at 70% 90%, rgba(68, 110, 234, .3), transparent 60%);
  pointer-events: none;
}
.final .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}
.final .h2 { color: #fff; margin-bottom: 26px; }
.final-faces { display: flex; margin-bottom: 26px; }
.final-faces .me-avatar { width: 34px; height: 34px; margin-right: -8px; border: 2px solid var(--dark); }
.final-list { display: grid; gap: 12px; margin-bottom: 30px; }
.final-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.final .btn { background-image: linear-gradient(#fff, #f1f2f5); color: var(--ink); box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset; }

.phone-stage { position: relative; height: 460px; }
.phone {
  position: absolute;
  width: 230px;
  height: 460px;
  border-radius: 36px;
  background: #0f1117;
  border: 6px solid #2a2d36;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
  overflow: hidden;
  padding: 18px 14px;
  font-size: 11px;
  color: var(--ink);
}
.phone-1 { left: 20%; top: 40px; transform: rotate(-6deg); background: #fff; }
.phone-2 { left: 48%; top: 0; transform: rotate(4deg); background: linear-gradient(180deg, #7747ff, #446eea); color: #fff; }
.phone .screen-title { font-weight: 800; font-size: 14px; margin-bottom: 10px; }
.phone .line { height: 8px; border-radius: 4px; background: rgba(0, 0, 0, .06); margin-bottom: 8px; }
.phone-2 .line { background: rgba(255, 255, 255, .25); }
.phone .tile { background: rgba(255, 255, 255, .15); border-radius: 12px; padding: 10px; margin-bottom: 8px; }
.phone-1 .tile { background: #f3f4f8; }
.float-badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .6);
}
.fb-1 { background: #16a34a; left: 10%; top: 300px; }
.fb-2 { background: var(--pill-1); right: 0; top: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #fff; padding: 56px 0 28px; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer .logo { color: #fff; margin-bottom: 20px; }
.footer .logo .tld { color: rgba(255, 255, 255, .6); }
.footer h5 { font-size: 13px; color: rgba(255, 255, 255, .6); margin: 0 0 14px; font-weight: 600; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer p { font-size: 13px; color: rgba(255, 255, 255, .6); max-width: 300px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* Shake bei leerer Eingabe */
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.prompt-box textarea.shake { animation: shake .3s ease; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .out-card { width: 210px; }
}
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .hero { padding-top: 100px; }
  .hero-stage { height: auto; margin-top: 32px; }
  .rays, .anim-inputs, .anim-outputs, .stage-glow { display: none; }
  .prompt-box { position: relative; left: auto; top: auto; transform: none; margin: 0 auto; }
  .stats-grid, .bento, .features, .modules, .soon-grid { grid-template-columns: 1fr 1fr; }
  .card.wide .card-body { grid-template-columns: 1fr; }
  .price-card, .banner-card, .faq-grid, .final .container { grid-template-columns: 1fr; }
  .phone-stage { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 16px; }
  .header-note { display: none; }
  .logo-img-brand { height: 26px; }
  .lbl-long { display: none; }
  .lbl-short { display: inline; }
  .pill { font-size: 15px; padding: 6px 12px; }
  .stats-grid, .bento, .features, .modules, .soon-grid { grid-template-columns: 1fr; }
  .card, .feature { padding: 28px 24px 0; min-height: 0; }
  .card.wide { padding: 28px 24px; }
  .price-card { padding: 32px 24px; }
  .price-num { font-size: 56px; }
  .soon-card { padding: 40px 20px; }
  .banner-card { padding: 36px 24px; }
  .banner-card::before, .banner-card::after { display: none; }
  .faq { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { min-height: 220px; padding: 28px; }
  .section { padding: 64px 0; }
  .hero-trust { gap: 10px; }
  .h1 { font-size: 34px; letter-spacing: -.5px; }
  .attach-count { display: none; }
  .prompt-actions .btn { width: 100%; justify-content: center; }
}
