/* ==========================================================================
   Pfotenheft – Landingpage
   Design-System aus dem Flyer: Poppins · Ink / Lime / Coral / Violet
   ========================================================================== */

/* ---------- Schriften (lokal, keine Verbindung zu Google) ---------- */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/poppins-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --ink: #121417;
  --ink-2: #1D2126;
  --ink-3: #2A2F36;
  --lime: #CDF564;
  --coral: #FF7A59;
  --violet: #7B61FF;
  --blue: #3A5BFF;
  --soft: #F4F4EF;
  --soft-2: #ECECE5;
  --gray: #6B7075;
  --line: #E4E4DC;
  --mute: #B9BDB5;
  --on-dark: #C9CDD3;
  --on-dark-2: #9AA0A6;

  --font: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --panel-gap: clamp(8px, 1.1vw, 14px);
  --radius-xl: clamp(24px, 3vw, 40px);
  --radius-l: 28px;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-card: 0 1px 0 rgba(18, 20, 23, .03), 0 18px 40px -26px rgba(18, 20, 23, .35);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
strong, b { font-weight: 600; }

::selection { background: var(--lime); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 8px;
}
.on-dark :focus-visible { outline-color: var(--lime); }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.nowrap { white-space: nowrap; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

/* Icons aus dem Sprite */
.i { width: 1em; height: 1em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .95em 1.6em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s, background-color .25s, border-color .25s, color .25s;
}
.btn .i { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 12px 30px -14px rgba(205, 245, 100, .8); }
.btn--lime:hover { box-shadow: 0 18px 38px -14px rgba(205, 245, 100, .95); }
.btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .04); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .5); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { box-shadow: 0 16px 34px -16px rgba(18, 20, 23, .7); }
.btn--sm { padding: .6em 1.15em; font-size: .9rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100% - 24px, 1120px);
  padding: 7px 7px 7px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(18, 20, 23, .72);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  color: #fff;
  transform: translateX(-50%);
  transition: background-color .3s, box-shadow .3s;
}
.page-legal .nav { background: var(--ink); }
.nav.is-scrolled {
  background: rgba(18, 20, 23, .88);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, .45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand__logo {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
}
.brand__logo .i { width: 22px; height: 22px; transition: transform .4s var(--ease-spring); }
.brand:hover .brand__logo .i { transform: rotate(-14deg) scale(1.08); }

.nav__links { display: none; gap: 2px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .75);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav__cta { margin-left: auto; }

@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__links + .nav__cta { margin-left: 6px; }
}

/* ---------- Dunkle Panels (Hero, KI, CTA) ---------- */
.panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: var(--panel-gap);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
}
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  opacity: .09;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.glow {
  position: absolute;
  z-index: -2;
  width: var(--s, 800px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--c) 0%, transparent 100%);
  opacity: var(--o, .55);
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
}
.glow--violet { --c: rgba(123, 97, 255, .95); }
.glow--coral { --c: rgba(255, 122, 89, .9); animation-duration: 26s; animation-delay: -6s; }
.glow--blue { --c: rgba(58, 91, 255, .9); animation-duration: 30s; animation-delay: -12s; }

.ki .glow, .cta .glow { animation: none; }
.hero.is-paused .glow, .hero.is-paused .float-card { animation-play-state: paused; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -3%) scale(1.06); }
  100% { transform: translate(-3%, 4%) scale(.96); }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(112px, 13vw, 156px) 0 clamp(56px, 7vw, 100px); }
.hero .glow--violet { --s: min(1100px, 95vw); --o: .6; right: -22%; top: -30%; }
.hero .glow--coral { --s: min(820px, 80vw); --o: .5; left: 38%; bottom: -46%; }
.hero .glow--blue { --s: min(620px, 70vw); --o: .45; left: -18%; top: -34%; }

.hero__inner {
  display: grid;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: ping 2.4s ease-out 2;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(205, 245, 100, .55); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(205, 245, 100, 0); }
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(2rem, 8.6vw, 3.9rem);
  line-height: 1.04;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--lime); }

.hero__lead {
  max-width: 34em;
  margin-top: 26px;
  color: var(--on-dark);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 300;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--on-dark-2);
  font-size: .9rem;
}
.hero__note .i { width: 18px; height: 18px; color: var(--lime); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.chip-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .25s, color .25s, border-color .25s, transform .25s var(--ease-out);
}
.chip-link:hover { background: var(--lime); border-color: var(--lime); color: var(--ink); transform: translateY(-2px); }

.hero__visual {
  --pw: clamp(250px, 76cqi, 312px);
  position: relative;
  container: hero-visual / inline-size;
  display: flex;
  justify-content: center;
}

/* Schwebende Karten rund ums Hero-Handy */
.float-card {
  position: absolute;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 10px;
  width: min(208px, calc(50cqi - var(--pw) / 2 + 34px));
  padding: 11px 14px 11px 11px;
  border-radius: 18px;
  font-size: .82rem;
  line-height: 1.35;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .55);
  animation: bob 6s ease-in-out infinite;
}
.float-card small { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .02em; }
.float-card__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 11px;
}
.float-card__icon .i { width: 18px; height: 18px; }

.float-card--feedback { right: calc(50% + var(--pw) / 2 - 34px); top: 61%; background: #fff; color: var(--ink); }
.float-card--feedback small { color: var(--violet); }
.float-card--feedback .float-card__icon { background: rgba(123, 97, 255, .12); color: var(--violet); }

.float-card--ki {
  left: calc(50% + var(--pw) / 2 - 34px); top: 13%;
  background: rgba(29, 33, 38, .92);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  animation-delay: -3s;
}
.float-card--ki small { color: var(--lime); }
.float-card--ki .float-card__icon { background: var(--lime); color: var(--ink); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@container hero-visual (min-width: 570px) {
  .float-card { display: flex; }
}

@media (min-width: 1080px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
  .hero h1 { font-size: clamp(2.8rem, 4.1vw, 3.7rem); }
}

/* ---------- Sektionen & Überschriften ---------- */
.section { padding-block: clamp(84px, 11vw, 150px); }
.section--tight-top { padding-top: clamp(56px, 7vw, 96px); }

.section-head { max-width: 880px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(205, 245, 100, .35);
}

.title {
  margin-top: 18px;
  font-size: clamp(2.05rem, 4.6vw, 3.7rem);
}
.title span { display: block; }

.lead {
  max-width: 44em;
  margin-top: 22px;
  color: var(--gray);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
}

/* Lime-Textmarker hinter einer Headline-Zeile (wie im Flyer) */
.hl {
  padding: 0 .14em;
  margin: 0 -.14em;
  border-radius: .16em;
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-position: 0 58%;
  background-size: 100% 88%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.title .hl { display: inline; }
.js .reveal .hl { background-size: 0% 88%; transition: background-size 1.1s .35s cubic-bezier(.65, 0, .25, 1); }
.js .reveal.is-in .hl { background-size: 100% 88%; }

/* ---------- Bento (Vorteile) ---------- */
.bento {
  display: grid;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(18, 20, 23, .4); }
.bento-card__head { display: flex; align-items: center; gap: 16px; }
.bento-card h3 { font-size: clamp(1.2rem, 1.7vw, 1.4rem); letter-spacing: -.02em; }
.bento-card p { color: var(--gray); font-size: 1rem; }

.icon-tile {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px; height: 52px;
  border-radius: 16px;
  transition: transform .5s var(--ease-spring);
}
.icon-tile .i { width: 24px; height: 24px; }
.icon-tile--lime { background: var(--lime); color: var(--ink); }
.icon-tile--coral { background: var(--coral); color: #fff; }
.icon-tile--violet { background: var(--violet); color: #fff; }
.icon-tile--ink { background: var(--ink); color: #fff; }
.bento-card:hover .icon-tile { transform: rotate(-8deg) scale(1.08); }

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.more-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.more-link .i { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.bento-card:hover .more-link .i { transform: translateX(4px); }

@media (min-width: 760px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Feature-Zeilen ---------- */
.features {
  display: grid;
  gap: clamp(88px, 11vw, 150px);
  margin-top: clamp(56px, 7vw, 100px);
}
.feature {
  display: grid;
  gap: 36px 64px;
  align-items: center;
  scroll-margin-top: 90px;
}
.feature__text { max-width: 580px; }

.feature__meta { display: flex; align-items: center; gap: 12px; }
.feature__num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}
.feature__role {
  color: var(--gray);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.feature h3 { margin-top: 18px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.feature__text > p { margin-top: 16px; color: var(--gray); }

/* Schrittliste – synchron zur Animation, anklickbar */
.steps {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 2px 14px;
  width: 100%;
  padding: 14px 18px 18px 14px;
  border: 1px solid transparent;
  border-radius: 20px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color .35s, border-color .35s, box-shadow .35s;
}
.step:hover { background: rgba(255, 255, 255, .55); }
.step.is-active { background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); }

.step__num {
  position: relative;
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 36px; height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: var(--gray);
  font-size: .9rem;
  font-weight: 700;
  transition: background-color .35s, border-color .35s, color .35s;
}
.step__num .i { position: absolute; width: 16px; height: 16px; opacity: 0; transform: scale(.4); transition: opacity .3s, transform .4s var(--ease-spring); }
.step.is-active .step__num { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.step.is-done .step__num { background: var(--ink); border-color: var(--ink); color: transparent; }
.step.is-done .step__num .i { color: var(--lime); opacity: 1; transform: none; }

.step__title { align-self: center; font-weight: 600; line-height: 1.35; }
.step__desc { color: var(--gray); font-size: .94rem; line-height: 1.55; }

.step__bar {
  position: absolute;
  left: 64px; right: 20px; bottom: 9px;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--line);
  opacity: 0;
  transition: opacity .3s;
}
.step__bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}
.step.is-active .step__bar { opacity: 1; }
.is-static .step__bar { display: none; }

@media (min-width: 1120px) {
  .feature { grid-template-columns: minmax(0, 4.5fr) minmax(0, 7.5fr); }
  .feature--flip { grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr); }
  .feature--flip .feature__text { order: 2; }
}

/* ---------- Bühne (dunkles Panel mit Handy, Pfeilen & Hinweisen) ---------- */
.stage {
  --pw: clamp(236px, 74cqi, 300px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  container: stage / inline-size;
  display: flex;
  justify-content: center;
  padding: clamp(36px, 5vw, 60px) 16px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
}
.stage::before, .stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}
.stage::before { left: -30%; top: -35%; background: radial-gradient(closest-side, rgba(123, 97, 255, .55), transparent); }
.stage::after { right: -30%; bottom: -35%; background: radial-gradient(closest-side, rgba(255, 122, 89, .42), transparent); }
.feature--flip .stage::before { left: auto; right: -30%; background: radial-gradient(closest-side, rgba(255, 122, 89, .45), transparent); }
.feature--flip .stage::after { right: auto; left: -30%; background: radial-gradient(closest-side, rgba(123, 97, 255, .55), transparent); }

.callout {
  position: absolute;
  top: var(--y, 20%);
  z-index: 5;
  display: none;
  align-items: flex-start;
  gap: 10px;
  max-width: min(200px, calc((100cqi - var(--pw)) / 2 - 42px));
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(29, 33, 38, .78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.38;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s, transform .6s var(--ease-out), border-color .4s;
}
.callout--left { left: clamp(12px, 3cqi, 28px); }
.callout--right { right: clamp(12px, 3cqi, 28px); }
.callout.is-shown { opacity: 1; transform: none; }
.callout.is-current { border-color: rgba(205, 245, 100, .55); }
.callout__num {
  display: grid;
  place-items: center;
  flex: none;
  width: 22px; height: 22px;
  margin-top: -1px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
}

.stage__arrows {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: none;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.arrow {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset .8s cubic-bezier(.55, .1, .25, 1), opacity .4s;
}
.arrow--head { opacity: 0; transition: opacity .25s .6s; }
.arrow-group.is-drawn .arrow--head { opacity: 1; }
.arrow-group.is-dim .arrow { opacity: .45; }
.arrow-group.is-gone { opacity: 0; transition: opacity .4s; }
.callout.is-detached { opacity: .55; }

.hotspot {
  position: absolute;
  left: 0; top: 0;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  transform: translate(var(--hx, 0), var(--hy, 0)) scale(0);
  transition: transform .45s var(--ease-spring);
}
.hotspot.is-shown { transform: translate(var(--hx, 0), var(--hy, 0)) scale(1); }
.hotspot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  opacity: 0;
}
.hotspot.is-current::after { animation: hotspot 1.8s ease-out infinite; }
.hotspot span { display: none; }
.stage:not(.is-running) .hotspot::after { animation-play-state: paused; }
@keyframes hotspot {
  0% { opacity: .9; transform: scale(.5); }
  100% { opacity: 0; transform: scale(1.5); }
}

@container stage (min-width: 600px) {
  .callout { display: flex; }
  .stage__arrows { display: block; }
}
@container stage (max-width: 599.98px) {
  .hotspot { width: 22px; height: 22px; margin: -11px 0 0 -11px; box-shadow: 0 4px 12px rgba(0, 0, 0, .3); }
  .hotspot span { display: block; }
}

.stage__toggle {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.stage__toggle:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .3); }
.stage__toggle .i { grid-area: 1 / 1; width: 16px; height: 16px; }
.stage__toggle .i-play, .stage.is-paused .stage__toggle .i-pause { display: none; }
.stage.is-paused .stage__toggle .i-play { display: block; }
.is-static .stage__toggle { display: none; }

.stage--hero {
  --pw: clamp(250px, 76cqi, 312px);
  width: 100%;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  background: none;
}
.stage--hero::before, .stage--hero::after { display: none; }
.stage--hero .stage__toggle { right: 0; bottom: -8px; }

/* ---------- KI-Sektion ---------- */
.ki { padding-block: clamp(84px, 11vw, 150px); }
.ki .glow--violet { --s: min(1000px, 100vw); --o: .5; left: -25%; top: -12%; }
.ki .glow--coral { --s: min(900px, 90vw); --o: .32; right: -25%; bottom: -10%; }

.ki__head {
  display: grid;
  gap: 28px;
  align-items: end;
}
.ki .title .accent { color: var(--lime); }
.ki .lead { color: var(--on-dark); }

.badge-ki {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-ki .i { width: 16px; height: 16px; }

.principle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(205, 245, 100, .28);
  border-radius: 22px;
  background: rgba(205, 245, 100, .07);
  color: var(--lime);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.45;
}
.principle .i { width: 28px; height: 28px; }
.js .reveal.is-in .principle .i { animation: twinkle 1.6s ease-in-out .6s 2; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(.82) rotate(45deg); }
}

.ki .feature__num { background: var(--lime); }
.ki .feature__role { color: var(--on-dark-2); }
.ki .feature__text > p, .ki .step__desc { color: var(--on-dark); }
.ki .step:hover { background: rgba(255, 255, 255, .04); }
.ki .step.is-active { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.ki .step__num { border-color: rgba(255, 255, 255, .22); color: var(--on-dark-2); }
.ki .step.is-active .step__num { color: var(--ink); }
.ki .step.is-done .step__num { background: var(--lime); border-color: var(--lime); }
.ki .step.is-done .step__num .i { color: var(--ink); }
.ki .step__bar { background: rgba(255, 255, 255, .14); }
.ki .step__bar::before { background: var(--lime); }
.ki .stage { background: rgba(255, 255, 255, .035); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }

@media (min-width: 1000px) {
  .ki__head { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
}

/* ---------- Vergleich ---------- */
.compare {
  position: relative;
  isolation: isolate;
  margin-top: clamp(40px, 5vw, 60px);
}
.compare::before {
  content: "";
  position: absolute;
  inset: 16px 0;
  z-index: -1;
  border-radius: var(--radius-l);
  background: #fff;
}
.compare table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: clamp(.84rem, 1.6vw, 1rem);
}
.compare th, .compare td {
  padding: 13px 8px;
  text-align: center;
  vertical-align: middle;
}
.compare thead th {
  padding-top: 32px;
  padding-bottom: 14px;
  color: var(--gray);
  font-size: .8em;
  font-weight: 500;
  line-height: 1.3;
  -webkit-hyphens: manual;
  hyphens: manual;
}
.compare tbody th {
  padding-left: clamp(16px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
.compare tbody tr > * { border-top: 1px solid var(--line); }
.compare .is-us {
  width: clamp(92px, 18%, 190px);
  border-top-color: transparent;
  background: var(--ink);
  color: var(--lime);
}
.compare thead .is-us {
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  padding-top: 30px;
  color: var(--lime);
  font-size: 1em;
  font-weight: 700;
}
.compare tbody tr:last-child .is-us { border-radius: 0 0 var(--radius-l) var(--radius-l); padding-bottom: 30px; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td:not(.is-us) { padding-bottom: 30px; }

.mark-no, .mark-yes, .mark-us { display: inline-grid; place-items: center; vertical-align: middle; }
.mark-no { color: var(--mute); }
.mark-no .i { width: 18px; height: 18px; }
.mark-yes { color: var(--gray); }
.mark-yes .i { width: 20px; height: 20px; }
.mark-part { color: var(--gray); font-size: .82em; }
.mark-us {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}
.mark-us .i { width: 15px; height: 15px; }
.js .compare .mark-us { transform: scale(0); transition: transform .5s var(--ease-spring); transition-delay: calc(var(--i, 0) * 90ms + .3s); }
.js .compare.is-in .mark-us { transform: none; }

.compare-note { margin-top: 14px; color: var(--gray); font-size: .92rem; }

@media (max-width: 559.98px) {
  .compare table { font-size: .8rem; }
  .compare th, .compare td { padding: 11px 3px; }
  .compare tbody th { padding-left: 14px; }
  .compare thead th { font-size: .7em; }
  .compare .is-us { width: 72px; }
  .mark-us { width: 24px; height: 24px; }
}

.focus-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.focus-card { padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-l); }
.focus-card--yes { border: 1px solid var(--line); background: #fff; }
.focus-card--no { background: var(--soft-2); }
.focus-card h3 { font-size: 1.2rem; letter-spacing: -.02em; }
.focus-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.focus-list li { display: flex; align-items: center; gap: 12px; }
.focus-card--no li { color: var(--gray); }
.tick, .nix {
  display: grid;
  place-items: center;
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
}
.tick { background: var(--lime); color: var(--ink); }
.tick .i { width: 13px; height: 13px; }
.nix { border: 1.5px solid var(--mute); color: var(--gray); }
.nix .i { width: 12px; height: 12px; }

@media (min-width: 760px) {
  .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Pilot-Schritte ---------- */
.pilot-steps {
  display: grid;
  gap: 16px;
  margin: clamp(40px, 5vw, 60px) 0 0;
  padding: 0;
  list-style: none;
}
.pilot-step {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
}
.pilot-step__num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.05rem;
  font-weight: 700;
}
.pilot-step h3 { margin-top: 20px; font-size: 1.25rem; letter-spacing: -.02em; }
.pilot-step p { margin-top: 8px; color: var(--gray); }

/* Pfotenspur zwischen den Karten */
.paw-trail {
  position: absolute;
  top: 36px;
  right: -46px;
  z-index: 2;
  display: none;
  width: 36px;
  height: 30px;
  color: var(--violet);
}
.paw-trail .i {
  position: absolute;
  width: 16px; height: 16px;
  opacity: .75;
  transform: rotate(90deg);
}
.paw-trail .i:nth-child(1) { left: 0; top: 13px; }
.paw-trail .i:nth-child(2) { left: 11px; top: 0; }
.paw-trail .i:nth-child(3) { left: 21px; top: 13px; }
.js .paw-trail .i { opacity: 0; transform: rotate(90deg) scale(.4); transition: opacity .3s, transform .4s var(--ease-spring); }
.js .is-in .paw-trail .i { opacity: .75; transform: rotate(90deg); }
.js .is-in .paw-trail .i:nth-child(1) { transition-delay: .6s; }
.js .is-in .paw-trail .i:nth-child(2) { transition-delay: .8s; }
.js .is-in .paw-trail .i:nth-child(3) { transition-delay: 1s; }
.js .is-in .pilot-step:nth-child(2) .paw-trail .i:nth-child(1) { transition-delay: 1.3s; }
.js .is-in .pilot-step:nth-child(2) .paw-trail .i:nth-child(2) { transition-delay: 1.5s; }
.js .is-in .pilot-step:nth-child(2) .paw-trail .i:nth-child(3) { transition-delay: 1.7s; }

.pilot-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 20px;
  background: var(--soft-2);
  color: var(--ink);
  font-weight: 500;
}
.pilot-quote .i { width: 22px; height: 22px; color: var(--violet); }

@media (min-width: 900px) {
  .pilot-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; }
  .paw-trail { display: block; }
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 10px;
  max-width: 880px;
  margin: clamp(40px, 5vw, 56px) auto 0;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: box-shadow .3s;
}
.faq details[open] { box-shadow: var(--shadow-card); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 20px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline-offset: -3px; border-radius: 22px; }
.faq__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--soft);
  transition: transform .35s var(--ease-out), background-color .3s;
}
.faq__icon .i { width: 16px; height: 16px; }
.faq details[open] .faq__icon { background: var(--lime); transform: rotate(45deg); }
.faq__answer { padding: 0 26px 24px; color: var(--gray); }

@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq details::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size .4s var(--ease-out), content-visibility .4s allow-discrete;
  }
  .faq details[open]::details-content { block-size: auto; }
}

/* ---------- Kontakt / CTA ---------- */
.cta { padding-block: clamp(72px, 9vw, 128px); }
.cta .glow--violet { --s: min(900px, 100vw); --o: .5; left: -20%; bottom: -60%; }
.cta .glow--coral { --s: min(800px, 90vw); --o: .38; right: -12%; top: -50%; }

.cta__inner { display: grid; gap: 64px 48px; align-items: center; }
.cta .title { margin-top: 24px; }
.cta__text > p { max-width: 34em; margin-top: 22px; color: var(--on-dark); font-size: 1.12rem; font-weight: 300; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.contact { position: relative; margin-top: 56px; }
.contact-card {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius-l);
  background: var(--lime);
  color: var(--ink);
}
.contact-card__name { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.contact-card__role { color: rgba(18, 20, 23, .7); font-size: .95rem; }
.contact-list { margin: 18px 0 0; padding: 0; list-style: none; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid rgba(18, 20, 23, .12);
  font-weight: 500;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.contact-list .i { width: 18px; height: 18px; }

/* Bruno schaut über die Kontaktkarte */
.peek {
  position: absolute;
  top: -66px;
  right: 34px;
  z-index: 0;
  width: 96px; height: 96px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform .4s var(--ease-spring);
}
.peek svg { width: 100%; height: 100%; }
.peek:hover { transform: translateY(-6px) rotate(-6deg); }
.peek:focus-visible { outline-color: var(--lime); }
.peek.is-wuff svg { animation: wuff .5s var(--ease-spring); }
@keyframes wuff {
  0%, 100% { transform: none; }
  30% { transform: translateY(-8px) rotate(-8deg) scale(1.06); }
  60% { transform: translateY(-2px) rotate(5deg); }
}
.peek__paws {
  position: absolute;
  top: -9px;
  right: 50px;
  z-index: 2;
  display: flex;
  gap: 26px;
  pointer-events: none;
}
.peek__paws i {
  width: 22px; height: 13px;
  border-radius: 50% 50% 40% 40%;
  background: #E9D2B4;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .06);
}
.peek__bubble {
  position: absolute;
  top: -104px;
  right: 118px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 16px 16px 4px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px) scale(.8);
  transform-origin: 100% 100%;
  transition: opacity .25s, transform .35s var(--ease-spring);
}
.peek__bubble.is-on { opacity: 1; transform: none; }

@media (min-width: 980px) {
  .cta__inner { grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); }
  .contact { margin-top: 40px; }
}

/* ---------- Footer ---------- */
.footer { padding: clamp(48px, 6vw, 72px) 0 40px; }
.footer__inner { display: grid; gap: 36px; }
.footer .brand { color: var(--ink); }
.footer .brand__logo { width: 32px; height: 32px; }
.footer__claim { max-width: 26em; margin-top: 16px; color: var(--gray); font-size: .96rem; }
.footer h2 {
  color: var(--gray);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer ul { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: .88rem;
}

@media (min-width: 800px) {
  .footer__inner { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); }
}

/* ---------- Rechtliches (Impressum, Datenschutz) ---------- */
.legal { padding: clamp(120px, 14vw, 160px) 0 clamp(56px, 7vw, 96px); }
.legal__card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: #fff;
}
.legal h1 { margin-top: 18px; font-size: clamp(2rem, 4.2vw, 3rem); }
.legal h2 { margin-top: 44px; font-size: 1.3rem; letter-spacing: -.02em; }
.legal h3 { margin-top: 26px; font-size: 1.05rem; letter-spacing: -.01em; }
.legal p, .legal li { color: #3E4348; }
.legal p { margin-top: 12px; }
.legal ul { margin: 12px 0 0; padding-left: 1.2em; }
.legal li + li { margin-top: 6px; }
.legal address { margin-top: 12px; font-style: normal; line-height: 1.7; }
.legal a { text-underline-offset: 3px; }
.legal .legal__meta { margin-top: 40px; color: var(--gray); font-size: .9rem; }
.notfound { text-align: center; }
.notfound__dog { width: 132px; height: 132px; margin: 0 auto 8px; transform: rotate(-8deg); }
.notfound .eyebrow::before { display: none; }
.notfound .btn { margin-top: 30px; }

.placeholder {
  padding: 1px 6px;
  border-radius: 6px;
  background: #FFF1A8;
  color: #6A5200;
  font-weight: 500;
}

/* ---------- Scroll-Reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

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