/* ═══════════════════════════════════════════════
   RECOMORE — Lunera-inspired design system
   Type: Inter Tight (display+body) · Fragment Mono (labels/data)
   ═══════════════════════════════════════════════ */

:root {
  --ink: #131417;
  --text: #3d3d3d;
  --muted: #6d6d6d;
  --faint: #9a9a9a;

  --bg: #ffffff;
  --surface: #fafafa;
  --card: #f7f7f8;
  --line: #ececec;
  --line-soft: #f1f1f1;

  --blue: #4686fe;
  --blue-2: #659bff;
  --blue-deep: #2f6ce0;
  --blue-pale: #e9f1ff;
  --sky: #b3e2f5;
  --green: #219a58;
  --green-bg: #e5f5eb;
  --star: #ffd000;
  --black: #0a0a0b;

  --r-card: 22px;
  --r-inner: 14px;

  --sh-nav: 0 12px 32px -8px rgba(15, 25, 55, .12);
  --sh-float: 0 30px 60px -18px rgba(15, 30, 70, .18);
  --sh-card: 0 1px 2px rgba(15, 25, 55, .03), 0 8px 24px -12px rgba(15, 25, 55, .06);
  --sh-blue: 0 12px 28px -8px rgba(70, 134, 254, .55);

  --font: "Inter Tight", system-ui, -apple-system, sans-serif;
  --mono: "Fragment Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

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

.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.container--narrow { max-width: 720px; text-align: center; }

/* ── Sections ── */
.section { padding: 130px 0; }
.section--tight { padding: 90px 0; }
.section--tint { background: var(--surface); }

/* ── Type ── */
.h2 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.06;
  margin-top: 18px;
}
.h2--left { text-align: left; }

.sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 18px;
  max-width: 620px;
  margin-inline: auto;
}
.sub--left { margin-inline: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ── Chips ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f1f2;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}
.chip--green { background: var(--green-bg); color: var(--green); }
.chip--blue { background: var(--blue-pale); color: var(--blue-deep); }
.chip em { font-style: normal; font-weight: 400; opacity: .75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #26272c; }

.btn--blue {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn--blue:hover { box-shadow: 0 16px 34px -8px rgba(70, 134, 254, .65); }

.btn--ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: #ddd; }

.btn--big { padding: 17px 36px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--nav { padding: 11px 22px; font-size: 14.5px; }

/* ═══════════ NAV ═══════════ */
.nav-wrap {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: 24px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(760px, 100%);
  padding: 9px 9px 9px 20px;
  /* Liquid glass: translucent gradient + saturated blur so the sky (and the
     page while scrolling) shines through, with bright inner edges that read
     as light refracting on glass. */
  background: linear-gradient(180deg, rgba(255, 255, 255, .60), rgba(255, 255, 255, .38));
  backdrop-filter: blur(22px) saturate(1.7);
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid rgba(255, 255, 255, .60);
  border-radius: 999px;
  box-shadow:
    0 12px 32px -8px rgba(15, 25, 55, .14),
    inset 0 1px 0 rgba(255, 255, 255, .85),
    inset 0 -1px 0 rgba(255, 255, 255, .22);
  transition: box-shadow .4s var(--ease), background .4s;
}
.nav.is-scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .62));
  box-shadow:
    0 16px 40px -10px rgba(15, 25, 55, .18),
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -1px 0 rgba(255, 255, 255, .25);
}

.nav__logo img { height: 26px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { position: relative; transition: opacity .25s; }
.nav__links a:hover { opacity: .55; }
.nav__login { display: none; }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}
.nav__burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  padding-top: 172px;
  overflow: clip;
}

.hero__sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Hero in #0f80c7 — deep brand blue at the top, dissolving to white so the
     transition into the first white section stays seamless. */
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 38%, #b9def2 74%, #fff 94%);
}
.hero__clouds {
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: max(1500px, 108vw);
  transform: translateX(-50%);
  opacity: .55;
  filter: saturate(.68) brightness(1.14) contrast(.92);
  -webkit-mask-image: linear-gradient(180deg, transparent 4%, #000 38%, #000 60%, transparent 97%);
  mask-image: linear-gradient(180deg, transparent 4%, #000 38%, #000 60%, transparent 97%);
}

.hero__inner { text-align: center; }

.hero__title {
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -.042em;
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 2px 24px rgba(8, 60, 96, .18);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero__title .line:nth-child(2) span { animation-delay: .1s; }

@keyframes rise { to { transform: translateY(0); } }

.hero__sub {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  opacity: 0;
  animation: fade .9s var(--ease) .35s forwards;
}

@keyframes fade { to { opacity: 1; } }

/* Stage: phone + floats — masked like Lunera: phone dissolves at the bottom,
   fade edge stays fixed while the phone slides up through it on scroll */
.hero__stage {
  position: relative;
  width: min(1180px, 100%);
  margin: clamp(44px, 5.5vw, 84px) auto 0;
  height: clamp(400px, 40vw, 560px);
  /* Symmetric soft edges: the parallaxing phone FADES OUT over 90px at the
     stage's top (instead of sliding visibly behind the nav/sky above) and
     keeps the same 90px dissolve at the bottom. */
  /* --topfade is scroll-driven (see newpageV1Interactions): 0 at rest so the
     phone starts crisp, growing into a soft dissolve while scrolling. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 var(--topfade, 0px), #000 calc(100% - 90px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 var(--topfade, 0px), #000 calc(100% - 90px), transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero__phone {
  width: clamp(270px, 25.5vw, 470px);
  margin-inline: auto;
  opacity: 0;
  /* Entry uses the separate `translate` property — the scroll parallax writes
     inline `transform`, and a forwards-filled transform animation would
     override it forever. Keeping the channels apart lets both compose. */
  translate: 0 70px;
  animation: phoneIn 1.2s var(--ease) .3s forwards;
  will-change: transform;
}
/* No drop-shadow on the render — the filters hugged the alpha cutout and
   produced dark halos along the phone edges. The 3D render carries its own
   depth; the sky needs nothing extra. */
.hero__phone img { filter: none; }

@keyframes phoneIn { to { opacity: 1; translate: 0 0; } }

.float-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 55px -22px rgba(15, 30, 70, .16);
  text-align: left;
  opacity: 0;
  animation: floatIn 1s var(--ease) forwards;
  will-change: transform;
}
.float-card--left { left: max(1%, 8px); top: 44%; animation-delay: .75s; }
.float-card--right { right: max(1%, 8px); top: 14%; align-items: flex-start; animation-delay: .95s; }

@keyframes floatIn { from { opacity: 0; translate: 0 26px; } to { opacity: 1; translate: 0 0; } }

.float-card__label { font-size: 16px; color: var(--muted); }
.float-card__value {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-card__value--big { font-size: 38px; letter-spacing: -.03em; }
.float-card__row { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--muted); }
.float-card__row .chip, .float-card__value .chip { font-size: 13.5px; padding: 5px 11px; }
.float-card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: #f1f3f6;
  border-radius: 50%;
  margin-bottom: 4px;
}
.float-card__icon svg { width: 25px; height: 25px; }

.badge-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 21px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  box-shadow: 0 18px 36px -12px rgba(10, 12, 20, .45);
  opacity: 0;
  animation: floatIn 1s var(--ease) forwards;
  will-change: transform;
}
.badge-pill svg { width: 16px; height: 16px; }
.badge-pill--left { left: max(7%, 40px); top: 24%; animation-delay: 1.1s; }
.badge-pill--right { right: max(6%, 32px); bottom: 24%; animation-delay: 1.25s; }

/* ═══════════ PROOF ═══════════ */
.proof { padding: 74px 0 96px; text-align: center; }

.proof__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.avatars { display: flex; }
.avatar {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--av, var(--blue));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(15, 25, 55, .12);
}
.avatar + .avatar { margin-left: -10px; }

.proof__meta { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--star); }
.stars--small svg { width: 12px; height: 12px; }
.proof__caption { font-size: 14px; color: var(--muted); }

.proof__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* marquee */
.marquee {
  margin-top: 84px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: scroll 30s linear infinite;
  font-family: var(--mono);
  font-size: 17px;
  color: #b3b3b3;
  letter-spacing: .02em;
}
.marquee__track i { font-style: normal; color: #d8d8d8; }
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══════════ WHY ═══════════ */
/* Head on white; the bento boxes carry the hero's #0f80c7 blue. */
.why { padding-bottom: 110px; }
.why .bento-card {
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 100%);
  border-color: rgba(255, 255, 255, .28);
}

.why__arc {
  position: relative;
  width: min(880px, 92%);
  height: 300px;
  margin: 40px auto 8px;
}
.why__glow {
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: radial-gradient(120% 155% at 50% 118%, rgba(70, 134, 254, .16) 0%, rgba(133, 176, 255, .10) 42%, rgba(133, 176, 255, 0) 72%);
}
.arc-tile {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 68px; height: 68px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 18px 40px -14px rgba(15, 30, 70, .18);
  rotate: var(--r);
  transition: rotate .5s var(--ease), translate .5s var(--ease);
}
.arc-tile:hover { rotate: 0deg; translate: 0 -6px; }
.arc-tile svg { width: 32px; height: 32px; }
.arc-tile--big { width: 82px; height: 82px; border-radius: 23px; }
.arc-tile--big svg { width: 40px; height: 40px; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 58px;
  text-align: left;
}
.why-item { padding: 26px 26px 28px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-card); }
.why-item h3 { font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.why-item p { margin-top: 9px; font-size: 15px; color: var(--muted); line-height: 1.55; }
.why-item__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

.why__kicker {
  margin-top: 54px;
  text-align: center;
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -.025em;
}
.why__kicker em { font-style: normal; color: var(--blue); }

/* ═══════════ BENTO ═══════════ */
.features .container--narrow { margin-bottom: 64px; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  /* Breathing room between the section head (h2 + sub) and the boxes. */
  margin-top: clamp(44px, 5.5vw, 72px);
}
.bento-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px -14px rgba(15, 25, 55, .12); }

.bento-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.bento-card p { margin-top: 9px; font-size: 15px; color: var(--muted); line-height: 1.55; }

.bento-card__visual {
  margin-top: 26px;
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.bento-card--wide { grid-column: span 3; flex-direction: row; align-items: center; gap: 30px; }
.bento-card--wide .bento-card__text { flex: 1; }
.bento-card--wide .bento-card__visual { margin-top: 0; flex: 1.1; }

.bento-card--full { grid-column: span 6; flex-direction: row; align-items: center; gap: 40px; padding: 40px; }
.bento-card--full .bento-card__text { flex: 1; max-width: 430px; }
.bento-card--full .bento-card__visual { margin-top: 0; flex: 1; }

/* mini visuals */
.mini-browser {
  width: 100%;
  max-width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-inner);
  overflow: hidden;
}
.mini-browser__dots { display: flex; gap: 4px; padding: 9px 11px 0; }
.mini-browser__dots i { width: 6px; height: 6px; border-radius: 50%; background: #ddd; }
.mini-browser__url {
  display: block;
  margin: 7px 11px 0;
  padding: 6px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--blue-deep);
  text-align: center;
}
.mini-browser__body { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 16px; }
.mini-avatar {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--av, var(--blue));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
  flex: none;
}
.mini-line { height: 7px; border-radius: 4px; background: #e2e2e4; }
.mini-line--light { background: #ececee; }
.mini-btn {
  margin-top: 4px;
  padding: 7px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.mini-btn--wide { align-self: stretch; text-align: center; }

.link-stack { position: relative; width: 100%; max-width: 250px; display: grid; }
.link-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(15, 25, 55, .14);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
}
.link-chip b { color: var(--ink); font-weight: 400; }
.link-chip__av { width: 26px; height: 26px; font-size: 11px; display: grid; place-items: center; border-radius: 50%; background: var(--av); color: #fff; font-style: normal; font-weight: 600; }
.link-chip--back { position: absolute; inset: auto -14px -34px auto; scale: .92; opacity: .55; z-index: -1; }
.link-stack { padding-bottom: 30px; }

.wa-chat { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 250px; }
.wa-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 92%;
}
.wa-bubble b { color: #0b6e4f; font-weight: 500; }
.wa-bubble--in { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.wa-bubble--out { background: #d9fdd3; border-bottom-right-radius: 4px; align-self: flex-end; }
.wa-chat--card { max-width: 280px; }
.wa-meta { font-size: 11.5px; color: var(--faint); align-self: flex-end; }

.inbox { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.inbox__row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-inner);
}
.inbox__row .mini-avatar { width: 30px; height: 30px; font-size: 12px; }
.inbox__who { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.inbox__who b { font-size: 13.5px; font-weight: 600; }
.inbox__who span { font-size: 12px; color: var(--faint); }

.funnel { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.funnel__step {
  width: var(--w);
  padding: 10px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}
.funnel__step--end { background: var(--blue-pale); border-color: #d3e2fd; color: var(--blue-deep); font-weight: 500; }

.qr-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  max-width: 400px;
  width: 100%;
}
.qr { width: 92px; height: 92px; background: #fff; padding: 9px; border: 1px solid var(--line); border-radius: 12px; }
.qr-card__lines { display: flex; flex-direction: column; gap: 4px; }
.qr-card__lines b { font-size: 16.5px; font-weight: 600; letter-spacing: -.015em; }
.qr-card__lines span { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }

/* ═══════════ STEPS ═══════════ */
.steps__layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.steps__intro { position: sticky; top: 130px; }

.steps__list { display: flex; flex-direction: column; gap: 22px; }

.step-card {
  position: relative;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
}
.step-card__head { display: flex; gap: 17px; align-items: flex-start; }
.step-card__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border-radius: 13px;
  box-shadow: 0 8px 18px -6px rgba(70, 134, 254, .5);
}
.step-card__icon svg { width: 21px; height: 21px; }
.step-card__head h3 { font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.step-card__head p { margin-top: 7px; font-size: 15px; color: var(--muted); line-height: 1.55; max-width: 480px; }

.step-card__visual {
  margin: 24px 0 0 59px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-inner);
  display: grid;
  place-items: center;
}
.step-card__num {
  position: absolute;
  right: 22px; bottom: 18px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--faint);
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.page-mock { display: flex; flex-direction: column; align-items: center; gap: 7px; width: min(240px, 100%); }
.page-mock__av { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 600; }
.page-mock b { font-size: 14.5px; letter-spacing: -.01em; }
.page-mock__note { font-size: 12px; color: var(--faint); }

.chain { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.chain__node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
}
.chain__node .mini-avatar { width: 26px; height: 26px; font-size: 11px; }
.chain__node--you { background: var(--blue-pale); border-color: #d3e2fd; color: var(--blue-deep); padding: 10px 16px; }
.chain__arrow { color: var(--faint); }

/* ═══════════ PAGE SECTION ═══════════ */
.page-sec__layout {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.page-sec__mock {
  background: linear-gradient(160deg, #dcebfa, #f6faff 70%);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 52px);
  overflow: hidden;
}
.page-sec__mock img { filter: drop-shadow(0 30px 50px rgba(15, 30, 70, .16)); }

.page-sec__list { margin-top: 34px; display: flex; flex-direction: column; gap: 26px; }
.page-sec__list li { display: flex; gap: 17px; align-items: flex-start; }
.page-sec__icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}
.page-sec__icon svg { width: 22px; height: 22px; }
.page-sec__list h3 { font-size: 17.5px; font-weight: 600; letter-spacing: -.015em; }
.page-sec__list p { margin-top: 5px; font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ═══════════ ANALYTICS ═══════════ */
.analytics__layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.check-list { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--green-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23219a58" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 13l4 4 10-10"/></svg>') center/11px no-repeat;
}

.dash {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: 0 30px 70px -30px rgba(15, 30, 70, .18);
  padding: 26px;
}
.dash__head { display: flex; justify-content: space-between; align-items: center; }
.dash__head b { font-size: 16.5px; letter-spacing: -.015em; }

.dash__main { margin-top: 20px; padding: 20px 20px 14px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; }
.dash__kpi { display: flex; flex-direction: column; gap: 3px; }
.dash__label { font-size: 12.5px; color: var(--faint); font-family: var(--mono); letter-spacing: .015em; }
.dash__value { font-size: 26px; font-weight: 600; letter-spacing: -.02em; display: flex; align-items: center; gap: 9px; }
.dash__chart { width: 100%; height: 110px; margin-top: 10px; }
.dash__line { stroke-dasharray: 700; stroke-dashoffset: 700; }
.dash.in-view .dash__line { animation: draw 1.8s var(--ease) .3s forwards; }
.dash__area { opacity: 0; }
.dash.in-view .dash__area { animation: fade 1s var(--ease) 1.2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.dash__months { display: flex; justify-content: space-between; margin-top: 8px; font-family: var(--mono); font-size: 11px; color: var(--faint); }

.dash__row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.dash__panel { padding: 16px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; display: flex; flex-direction: column; gap: 10px; }

.leader { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.leader .mini-avatar { width: 24px; height: 24px; font-size: 10px; }
.leader span { min-width: 62px; }
.leader em { flex: 1; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--blue-2), var(--blue)); scale: 0 1; transform-origin: left; transition: scale 1s var(--ease) .5s; width: var(--w); max-width: var(--w); }
.dash.in-view .leader em { scale: 1 1; }
.leader b { font-size: 12.5px; min-width: 18px; text-align: right; }

.device { display: flex; align-items: center; gap: 8px; font-size: 12.5px; }
.device span { min-width: 52px; color: var(--text); }
.device em { flex: 1; height: 6px; border-radius: 3px; background: #e6e6e9; position: relative; overflow: hidden; }
.device em::after { content: ""; position: absolute; inset: 0; width: var(--w); background: var(--ink); border-radius: 3px; scale: 0 1; transform-origin: left; transition: scale 1s var(--ease) .6s; }
.dash.in-view .device em::after { scale: 1 1; }
.device b { font-size: 12px; min-width: 30px; text-align: right; font-weight: 500; }

.heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.heat i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--blue);
  opacity: var(--o, .1);
}
.heat__days { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; color: var(--faint); padding-inline: 2px; }

/* ═══════════ STATS ═══════════ */
.stats { border-top: 1px solid var(--line-soft); }
.stats__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat { padding: 10px 20px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__value {
  display: block;
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: -.035em;
}
.stat__label { display: block; margin-top: 6px; font-size: 15px; color: var(--muted); }

/* ═══════════ PRICING ═══════════ */
.pricing .container--narrow { margin-bottom: 58px; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.plan {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--sh-card);
  padding: 30px;
}
.plan h3 { font-size: 23px; font-weight: 600; letter-spacing: -.02em; }
.plan header p { margin-top: 4px; font-size: 14.5px; color: var(--muted); }
.plan__price { display: flex; align-items: baseline; gap: 7px; margin: 22px 0; }
.plan__amount { font-size: 46px; font-weight: 600; letter-spacing: -.035em; }
.plan__per { color: var(--faint); font-size: 15px; }

.plan__list { margin-top: 26px; display: flex; flex-direction: column; }
.plan__list li {
  position: relative;
  padding: 11px 0 11px 30px;
  font-size: 14.5px;
  color: var(--text);
  border-top: 1px solid var(--line-soft);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 13px;
  width: 16px; height: 16px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236d6d6d" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 13l5 5 11-11"/></svg>') center/contain no-repeat;
}

/* Featured plan — same #0f80c7 blue as the hero and the bento cards. */
.plan--featured {
  position: relative;
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 100%);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .28);
  box-shadow: 0 34px 70px -26px rgba(8, 60, 96, .6);
  padding-top: 62px;
  margin-top: -18px;
}
.plan--featured header p { color: rgba(255, 255, 255, .70); }
.plan--featured .plan__per { color: rgba(255, 255, 255, .65); }
.plan--featured .plan__list li {
  color: rgba(255, 255, 255, .90);
  border-top-color: rgba(255, 255, 255, .12);
}
.plan--featured .plan__list li::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 13l5 5 11-11"/></svg>');
  opacity: .85;
}
.plan--featured .btn--blue {
  background: #fff;
  color: #0f80c7;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .35);
}
.plan--featured .btn--blue:hover { box-shadow: 0 16px 34px -10px rgba(0, 0, 0, .45); }
.plan__ribbon {
  position: absolute;
  inset: 0 0 auto;
  padding: 9px;
  text-align: center;
  background: rgba(255, 255, 255, .96);
  color: #0f80c7;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px 20px 0 0;
}

/* ═══════════ FAQ ═══════════ */
.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
.faq__intro { position: sticky; top: 130px; }
.faq__intro .btn { margin-top: 26px; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  box-shadow: var(--sh-card);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%; height: 1.8px;
  background: var(--faint);
  border-radius: 2px;
  translate: 0 -50%;
  transition: rotate .35s var(--ease);
}
.faq-item__icon::after { rotate: 90deg; }
.faq-item[open] .faq-item__icon::after { rotate: 0deg; }

.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { font-size: 15px; color: var(--muted); line-height: 1.6; max-width: 640px; }

.faq__more { margin-top: 22px; font-size: 14.5px; color: var(--muted); }
.faq__more a { color: var(--blue-deep); font-weight: 500; }
.faq__more a:hover { text-decoration: underline; }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative;
  padding: 150px 0 190px;
  text-align: center;
  overflow: clip;
  /* Mirrors the hero sky — Recomore-blue tint. */
  background: linear-gradient(180deg, #fff 0%, #e9f7fd 48%, #c2eaf8 100%);
}
.cta__sky {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  pointer-events: none;
}
.cta__sky img {
  position: absolute;
  left: 50%;
  bottom: -58%;
  width: max(1500px, 110vw);
  transform: translateX(-50%);
  opacity: .5;
  filter: saturate(.68) brightness(1.14) contrast(.92);
  -webkit-mask-image: linear-gradient(0deg, #000 26%, transparent 88%);
  mask-image: linear-gradient(0deg, #000 26%, transparent 88%);
}
.cta .container { position: relative; }

.cta__title {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.03;
}
.cta__sub { margin-top: 14px; font-size: 19px; color: var(--muted); }
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.cta__trust {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #5f7185;
  letter-spacing: .01em;
}

/* ═══════════ FOOTER ═══════════ */
/* Recomore navy gradient — same tones as the previous homepage footer. */
.footer { background: linear-gradient(180deg, #002654 0%, #001a36 55%, #0f172a 100%); color: #fff; padding: 90px 0 0; }

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: 70px;
}
.footer__logo { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer__tagline { margin-top: 24px; font-size: 22px; letter-spacing: -.02em; line-height: 1.35; color: #e9e9e9; }
.footer__mail { display: inline-block; margin-top: 18px; font-family: var(--mono); font-size: 13.5px; color: #9a9a9a; transition: color .25s; }
.footer__mail:hover { color: #fff; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__head { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer__col a { font-size: 15px; color: #ececec; transition: opacity .25s; width: fit-content; }
.footer__col a:hover { opacity: .6; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 34px;
  border-top: 1px solid #1e1e21;
  font-size: 13.5px;
  color: #8a8a8a;
}

/* ═══════════ REVEAL ═══════════ */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity .9s var(--ease) var(--d, 0s), translate .9s var(--ease) var(--d, 0s);
}
.reveal.in-view { opacity: 1; translate: 0 0; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card { grid-column: span 3; }
  .bento-card--wide { grid-column: span 6; }
  .dash__row { grid-template-columns: 1fr 1fr; }
  .dash__row .dash__panel:first-child { grid-column: span 2; }
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .steps__layout, .faq__layout, .analytics__layout, .page-sec__layout { grid-template-columns: 1fr; }
  .steps__intro, .faq__intro { position: static; }
  .page-sec__mock { max-width: 420px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { margin-top: 0; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { gap: 12px; }
  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--sh-nav);
    padding: 12px;
    opacity: 0;
    translate: 0 -8px;
    pointer-events: none;
    transition: opacity .3s var(--ease), translate .3s var(--ease);
  }
  .nav__links a { padding: 12px 16px; border-radius: 12px; }
  .nav__links a:hover { background: var(--surface); opacity: 1; }
  .nav__login { display: block; }
  .nav.is-open .nav__links { opacity: 1; translate: 0 0; pointer-events: auto; }
  .nav__burger { display: flex; }

  .hero { padding-top: 140px; }
  .hero__stage { height: clamp(340px, 112vw, 470px); }
  .float-card { padding: 14px 17px; gap: 5px; border-radius: 15px; }
  .float-card__value, .float-card__value--big { font-size: 21px; }
  .float-card__label { font-size: 12px; }
  .float-card__row { font-size: 12.5px; }
  .float-card__icon { display: none; }
  .float-card--left { top: auto; bottom: 12%; left: 0; }
  .float-card--right { top: -3%; right: 0; }
  .badge-pill--left { display: none; }
  .badge-pill--right { bottom: 30%; right: 2%; padding: 9px 14px; font-size: 12.5px; }

  .bento-card { grid-column: span 6; }
  .bento-card--wide, .bento-card--full { flex-direction: column; align-items: stretch; gap: 20px; padding: 28px; }
  .bento-card--full .bento-card__text { max-width: none; }
  .qr-card { max-width: none; }
  .why__grid { grid-template-columns: 1fr; }
  .why__arc { height: 220px; }
  .arc-tile { width: 54px; height: 54px; border-radius: 15px; }
  .arc-tile svg { width: 26px; height: 26px; }
  .arc-tile--big { width: 64px; height: 64px; }
  .stats__row { grid-template-columns: 1fr; gap: 34px; }
  .stat + .stat { border-left: 0; }
  .step-card__visual { margin-left: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cta { padding: 110px 0 130px; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; translate: 0 0; }
  .hero__title .line span { transform: none; }
  .hero__sub, .hero__phone, .float-card, .badge-pill, .hero-callout { opacity: 1; transform: none; translate: none; }
  .marquee__track { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ═══ Remodel additions — warum-bento visuals, KMU showcase, team ═══ */

/* Angebots-Karte (bento visual) */
.offer-mini { display: flex; justify-content: center; padding: 8px 0 2px; }
.offer-mini__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-inner);
  padding: 14px 16px; display: flex; flex-direction: column; gap: 6px;
  width: min(240px, 100%); box-shadow: var(--sh-card);
}
.offer-mini__tag {
  font-family: var(--mono); font-size: 11px; color: var(--blue-deep);
  background: var(--blue-pale); border-radius: 999px; padding: 2px 9px; width: fit-content;
}
.offer-mini__card b { font-size: 14.5px; color: var(--ink); }
.offer-mini__price { font-size: 12.5px; color: var(--muted); }
.offer-mini .mini-btn { margin-top: 4px; width: fit-content; }

/* Empfehler-Liste (bento visual) */
.empf-list { display: flex; flex-direction: column; gap: 8px; }
.empf-list__row {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-inner); padding: 9px 12px;
}
.empf-list__who { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.empf-list__who b { font-size: 13px; color: var(--ink); }
.empf-list__who span { font-size: 11.5px; color: var(--muted); }
.empf-bar { width: 86px; height: 6px; border-radius: 999px; background: var(--line-soft); overflow: hidden; flex-shrink: 0; }
.empf-bar i { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); }

/* KMU showcase — live tenant previews in a slim phone, tenant-accent glow.
   Styled here (not Tailwind) because this stylesheet's reset outranks
   Tailwind's layered utilities on this page. */
.kmu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: clamp(44px, 5.5vw, 72px); align-items: stretch; }
.kmu-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 28px 22px 22px; display: flex; flex-direction: column; align-items: center;
  gap: 14px; box-shadow: var(--sh-card);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.kmu-card:hover { transform: translateY(-5px); box-shadow: var(--sh-float); }

.kmu-phone { position: relative; padding: 4px 0 2px; }
.kmu-phone::before {
  content: ''; position: absolute; inset: 14% 4%;
  background: var(--acc, var(--blue)); opacity: .16; filter: blur(40px); border-radius: 50%;
}
.kmu-phone__frame {
  position: relative; background: #0b0f1c; border-radius: 34px; padding: 7px;
  box-shadow: 0 24px 48px -16px rgba(15, 25, 55, .30), inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.kmu-phone__notch {
  position: absolute; top: 13px; left: 50%; translate: -50% 0; z-index: 2;
  width: 74px; height: 15px; background: #0b0f1c; border-radius: 999px;
}
.kmu-phone__screen { position: relative; overflow: hidden; border-radius: 27px; background: #fff; }
.kmu-phone__screen iframe {
  position: absolute; left: 0; top: 0; border: 0; background: #fff;
  transform-origin: top left; pointer-events: none;
}
.kmu-phone__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 64px; pointer-events: none;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, .72), transparent);
}

.kmu-card__meta {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  margin-top: 2px; min-height: 58px;
}
.kmu-card__meta > b {
  font-size: 15.5px; font-weight: 700; color: var(--ink); text-align: center;
  line-height: 1.3; max-width: 250px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.kmu-card__rating {
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 11px; white-space: nowrap;
}
.kmu-card__rating b { color: var(--star); font-weight: 400; }
.kmu-card__btn { width: 100%; justify-content: center; text-align: center; margin-top: auto; }
.kmu__all { display: flex; justify-content: center; margin-top: 30px; }
@media (max-width: 900px) {
  .kmu__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* Team — vier Co-Founder, boxless: portraits sit directly on the page. */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 26px; margin-top: clamp(44px, 5.5vw, 72px); }
.team-card {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 7px;
}
.team-card__photo {
  width: 100%; aspect-ratio: 3 / 4; border-radius: var(--r-card); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--av, var(--surface)); color: #fff;
  font-size: 56px; font-weight: 700; margin-bottom: 12px;
  box-shadow: var(--sh-card);
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); }
.team-card__tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-deep); background: var(--blue-pale); padding: 3px 10px; border-radius: 999px;
}
.team-card h3 { font-size: 19px; color: var(--ink); margin-top: 4px; }
.team-card__role { font-size: 13px; font-weight: 600; color: var(--text); }
.team-card p { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 4px; }
@media (max-width: 1000px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team__grid { grid-template-columns: 1fr; } }

/* ═══ Bento rework — real product visuals, premium depth ═══ */
.bento-card {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border-color: #e9edf3;
  box-shadow: 0 1px 2px rgba(15, 25, 55, .04), 0 22px 44px -26px rgba(15, 25, 55, .12);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(15, 25, 55, .05), 0 32px 64px -28px rgba(15, 25, 55, .18);
}

/* 1 · echte Empfehlungsseite im Browser-Rahmen */
.page-shot {
  border-radius: 14px; border: 1px solid var(--line); overflow: hidden; background: #fff;
  box-shadow: 0 16px 32px -16px rgba(15, 25, 55, .24);
}
.page-shot__bar {
  display: flex; align-items: center; gap: 5px; padding: 9px 12px;
  border-bottom: 1px solid var(--line-soft); background: var(--surface);
}
.page-shot__bar i { width: 7px; height: 7px; border-radius: 999px; background: #e2e6ec; }
.page-shot__url { font-family: var(--mono); font-size: 10.5px; color: var(--muted); margin-left: 5px; }
.page-shot__screen { height: 216px; overflow: hidden; }
.page-shot__screen img { width: 100%; height: auto; display: block; }

/* 2 · echte Angebots-Karte (Bischoff Malerei) */
.offer-real {
  width: min(252px, 100%); margin-inline: auto; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 32px -16px rgba(15, 25, 55, .24);
}
.offer-real > img { width: 100%; height: 116px; object-fit: cover; display: block; }
.offer-real__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 7px; }
.offer-real__body b { font-size: 14px; color: var(--ink); }
.offer-real__price { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.offer-real__cta {
  background: var(--acc, var(--blue)); color: #fff; font-size: 12.5px; font-weight: 700;
  text-align: center; border-radius: 999px; padding: 8px 12px; margin-top: 2px;
}

/* 3 · echte Shop-Mockups: Aufsteller + Visitenkarten, gefächert */
/* width must be explicit — the flex parent gives a box with only
   absolutely-positioned children an intrinsic width of 0. */
.print-fan { position: relative; height: 196px; width: min(300px, 100%); margin-inline: auto; }
.print-fan__poster {
  position: absolute; right: 2%; top: 0; width: 35%; height: auto; border-radius: 8px;
  rotate: 3deg; box-shadow: 0 18px 32px -14px rgba(15, 25, 55, .32);
}
.print-fan__card {
  position: absolute; left: 0; bottom: 2px; width: 76%; height: auto; border-radius: 10px;
  rotate: -3deg; border: 1px solid var(--line-soft);
  box-shadow: 0 20px 36px -14px rgba(15, 25, 55, .34);
}
.print-fan__card--back { left: 12%; bottom: 42px; rotate: 4deg; opacity: .95; }

/* 4/5 · Dashboard-Fenster (Leads + Empfehler) */
.dash-mini {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 38px -18px rgba(15, 25, 55, .24);
}
.dash-mini__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #fbfcfe, #f7f9fc);
}
.dash-mini__bar b { font-size: 12.5px; color: var(--ink); }
.dash-mini__pill {
  font-family: var(--mono); font-size: 10.5px; color: var(--green);
  background: var(--green-bg); border-radius: 999px; padding: 3px 9px;
}
.dash-mini__pill--muted { color: var(--muted); background: var(--surface); border: 1px solid var(--line-soft); }
.dash-mini__rows { display: flex; flex-direction: column; gap: 6px; padding: 10px; }
.dash-mini .inbox__row { border: 1px solid var(--line-soft); border-radius: 10px; background: #fff; }

.leader-row {
  display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line-soft); border-radius: 10px; padding: 8px 11px;
}
.leader-row > i { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--faint); width: 14px; text-align: center; }
.leader-row__who { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.leader-row__who b { font-size: 12.5px; color: var(--ink); }
.leader-bar { display: block; width: 100%; max-width: 150px; height: 5px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.leader-bar i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--blue), var(--blue-2)); border-radius: 999px; }
.leader-row__n { font-family: var(--mono); font-size: 10.5px; color: var(--muted); white-space: nowrap; }

/* ── Hero phone frame — flat screenshot wrapped in a bezel (like .kmu-phone) ── */
.hero-frame {
  position: relative;
  background: #0b0f1c;
  border-radius: clamp(34px, 3.6vw, 50px);
  padding: clamp(7px, .8vw, 11px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.hero-frame__notch {
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 26%;
  height: clamp(13px, 1.4vw, 19px);
  background: #0b0f1c;
  border-radius: 999px;
}
.hero-frame__screen {
  overflow: hidden;
  border-radius: clamp(27px, 2.9vw, 40px);
  background: #fff;
}
.hero-frame__screen img { width: 100%; height: auto; display: block; }

/* ── Hero feature callouts — chips with leader lines toward the phone ── */
.hero-callout {
  position: absolute;
  max-width: 235px;
  padding: 11px 16px;
  background: #0f80c7;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 13px;
  box-shadow: 0 14px 30px -12px rgba(8, 60, 96, .38);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -.01em;
  z-index: 2;
  /* Entry animation comes from the shared .reveal system (transition-based).
     The earlier floatIn keyframe (delay + forwards) intermittently left the
     layer unpainted after compositing — don't reintroduce it. */
}
/* leader line from chip toward the phone… */
.hero-callout::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(36px, 6vw, 104px);
  height: 1.5px;
  pointer-events: none;
}
/* …ending in a small dot next to the phone */
.hero-callout::before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .28);
  pointer-events: none;
}
/* Chips anchor to the CENTER (not the stage edge) so the leader line always
   ends right at the phone, at every viewport width. --dot = distance from
   center to the endpoint dot ≈ the phone's half-width plus a small gap. */
.hero-callout { --dot: clamp(150px, 13.5vw, 238px); --line: 70px; text-align: left; }

.hero-callout--left { left: auto; right: calc(50% + var(--dot) + var(--line)); }
.hero-callout--left::after {
  left: 100%;
  width: var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .75));
}
.hero-callout--left::before { left: calc(100% + var(--line) - 5px); }

.hero-callout--right { right: auto; left: calc(50% + var(--dot) + var(--line)); }
.hero-callout--right::after {
  right: 100%;
  width: var(--line);
  background: linear-gradient(270deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .75));
}
.hero-callout--right::before { right: calc(100% + var(--line) - 5px); }

/* Heights match the features on the phone screen (logo/claim · video ·
   WhatsApp-Formular · Jetzt-empfehlen-Pill). */
.hero-callout--beschrieb { top: 16%; }
.hero-callout--video     { top: 46%; }
.hero-callout--lead      { top: 66%; }
.hero-callout--empfehlen { top: 84%; }

/* Small screens: no room next to the phone — hide the callouts. */
@media (max-width: 880px) {
  .hero-callout { display: none; }
}

/* ── Bento cards in the hero's #0f80c7 blue — white type, white inner mocks ── */
.bento-card {
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 100%);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 1px 2px rgba(8, 60, 96, .10), 0 22px 44px -24px rgba(8, 60, 96, .45);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(8, 60, 96, .12), 0 32px 64px -26px rgba(8, 60, 96, .55);
}
.bento-card h3 { color: #fff; }
.bento-card p { color: rgba(255, 255, 255, .85); }

/* ═══ /kunden — tenant directory in the site design ═══ */
.nav__links .is-current { color: #0f80c7; font-weight: 600; }

.kunden-hero {
  position: relative;
  padding: 168px 24px 64px;
  text-align: center;
  overflow: clip;
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 55%, #b9def2 86%, #fff 100%);
}
.kunden-hero__title {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: #fff;
  text-shadow: 0 2px 24px rgba(8, 60, 96, .18);
}
.kunden-hero__sub {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
}
.kunden-search { position: relative; max-width: 460px; margin: 30px auto 0; }
.kunden-search svg {
  position: absolute; left: 17px; top: 50%; translate: 0 -50%;
  width: 18px; height: 18px; stroke: var(--muted); pointer-events: none;
}
.kunden-search input {
  width: 100%;
  padding: 15px 22px 15px 47px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  box-shadow: 0 14px 34px -14px rgba(8, 60, 96, .35);
  transition: box-shadow .3s var(--ease);
}
.kunden-search input:focus { box-shadow: 0 16px 40px -14px rgba(8, 60, 96, .5), 0 0 0 3px rgba(255, 255, 255, .35); }
.kunden-search input::placeholder { color: var(--faint); }
.kunden-count { margin-top: 18px; font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, .78); }

.kunden-grid-sec { padding: 70px 0 110px; }
.kunden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
@media (max-width: 1020px) { .kunden-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .kunden-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.kunden-empty { text-align: center; color: var(--muted); padding: 60px 0; line-height: 1.8; }

.kunden-cta { text-align: center; padding: 90px 24px 110px; background: var(--surface); }
.kunden-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }

/* Plan-list emphasis: bold = new vs. the next lower tier. */
.plan__list li strong { font-weight: 700; }

/* Hash targets land below the fixed nav — matches the Lenis -80 offset used
   for in-page clicks, and covers cold-load deep-links (/#preise etc.). */
#warum, #kunden, #preise, #team, #faq { scroll-margin-top: 84px; }

/* ═══ /legal — Impressum · Datenschutz · AGB in the site design ═══ */
.legal-hero {
  padding: 158px 24px 58px;
  text-align: center;
  background: linear-gradient(180deg, #0f80c7 0%, #3d97d3 55%, #b9def2 86%, #fff 100%);
}
.legal-hero h1 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 2px 24px rgba(8, 60, 96, .18);
}
.legal-stand { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, .85); }

.legal-body { padding: 30px 24px 100px; }
.legal-article { max-width: 720px; margin: 0 auto; }
.legal-article > :first-child { margin-top: 0; }
.legal-article h2 { font-size: 21px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin: 44px 0 12px; }
.legal-article h3 { font-size: 16.5px; font-weight: 600; color: var(--ink); margin: 28px 0 8px; }
.legal-article p { font-size: 15px; line-height: 1.7; color: var(--text); margin: 0 0 12px; }
.legal-article ul { list-style: disc; margin: 0 0 14px; padding-left: 22px; }
.legal-article li { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.legal-article strong { font-weight: 600; color: var(--ink); }
.legal-article a { color: #0f80c7; text-decoration: none; border-bottom: 1px solid rgba(15, 128, 199, .3); transition: border-color .25s; }
.legal-article a:hover { border-bottom-color: #0f80c7; }

.legal-switch {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-switch a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color .25s, border-color .25s;
}
.legal-switch a:hover { color: var(--ink); border-color: var(--faint); }
.legal-switch a.is-active { color: #0f80c7; border-color: #0f80c7; font-weight: 600; }
