/* ==========================================================================
   pacely Gestaltungssystem
   Hell, glasig, viel Weißraum, große Typografie.
   Vollstaendig eigenstaendig: keine externen Fonts, kein CDN, keine Tracker.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Flächen */
  --bg:            #fbfbfd;
  --bg-deep:       #f4f4f7;
  --surface:       #ffffff;
  --glass:         rgba(255, 255, 255, 0.62);
  --glass-strong:  rgba(255, 255, 255, 0.82);
  --glass-border:  rgba(255, 255, 255, 0.75);
  --hairline:      rgba(0, 0, 0, 0.08);

  /* Text */
  --ink:           #1d1d1f;
  --ink-2:         #45454a;
  --ink-3:         #6e6e73;
  --ink-4:         #9a9aa0;

  /* Marke */
  --brand:         #0d9488;
  --brand-600:     #0f766e;
  --brand-700:     #115e59;
  --brand-300:     #5eead4;
  --brand-50:      #f0fdfa;
  --accent:        #06b6d4;
  --violet:        #7c6cf0;
  --amber:         #f59e0b;
  --rose:          #f43f5e;

  /* Dunkle Sektion */
  --night:         #08100f;
  --night-2:       #101c1a;

  /* Radien */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-2xl: 46px;
  --r-pill: 999px;

  /* Schatten */
  --sh-1: 0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.04);
  --sh-2: 0 2px 6px rgba(0,0,0,.05), 0 12px 32px rgba(0,0,0,.07);
  --sh-3: 0 8px 24px rgba(0,0,0,.07), 0 32px 64px rgba(0,0,0,.10);
  --sh-brand: 0 10px 30px rgba(13,148,136,.28);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --nav-h: 52px;

  /* Typografie */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial,
          "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(13,148,136,.18); }

/* ---------- Typo-Skala ---------- */
.display {
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.07;
  letter-spacing: -0.038em;
  font-weight: 700;
}
.h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 660;
}
.h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.24;
  letter-spacing: -0.022em;
  font-weight: 640;
}
.lead {
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  line-height: 1.45;
  letter-spacing: -0.018em;
  color: var(--ink-3);
  font-weight: 420;
}
.body   { font-size: 1.0625rem; line-height: 1.6; color: var(--ink-2); }
.small  { font-size: .9375rem; line-height: 1.55; color: var(--ink-3); }
.tiny   { font-size: .8125rem; line-height: 1.5; color: var(--ink-4); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 640;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before {
  content: "";
  width: 15px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  opacity: .55;
}

.gradient-text {
  background: linear-gradient(96deg, #0f766e 0%, #0d9488 38%, #06b6d4 72%, #7c6cf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.balance { text-wrap: balance; }
.pretty  { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 7vw, 5.5rem); }

.center { text-align: center; }
.stack-sm > * + * { margin-top: .6rem; }
.stack   > * + * { margin-top: 1.15rem; }
.stack-lg > * + * { margin-top: 2rem; }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Hintergrund-Blooms (Farbnebel) ---------- */
.bloom-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  will-change: transform;
}
.bloom-1 { width: 62vw; height: 62vw; left: -18vw; top: -22vw;
  background: radial-gradient(circle at 35% 35%, rgba(94,234,212,.75), rgba(94,234,212,0) 68%); }
.bloom-2 { width: 54vw; height: 54vw; right: -16vw; top: -8vw;
  background: radial-gradient(circle at 60% 40%, rgba(124,108,240,.42), rgba(124,108,240,0) 68%); }
.bloom-3 { width: 66vw; height: 66vw; left: 8vw; top: 52vh;
  background: radial-gradient(circle at 50% 50%, rgba(6,182,212,.34), rgba(6,182,212,0) 68%); }
.bloom-4 { width: 46vw; height: 46vw; right: -8vw; top: 92vh;
  background: radial-gradient(circle at 50% 50%, rgba(245,158,11,.22), rgba(245,158,11,0) 68%); }

/* Feines Raster ueber dem Nebel, gibt Tiefe */
.bloom-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.024) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.024) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 20%, transparent 75%);
}

/* ---------- Glas ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(34px) saturate(178%);
  -webkit-backdrop-filter: blur(34px) saturate(178%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
}
.glass-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(44px) saturate(185%);
  -webkit-backdrop-filter: blur(44px) saturate(185%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
}

/* Glanzkante oben, der typische Glasreflex */
.sheen { position: relative; overflow: hidden; }
.sheen::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

/* ---------- Karten ---------- */
.card {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(175%);
  -webkit-backdrop-filter: blur(30px) saturate(175%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  box-shadow: var(--sh-1);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease),
              border-color .4s var(--ease-io);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95) 45%, transparent);
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: rgba(13,148,136,.28);
}
.card-lift { will-change: transform; }

.icon-tile {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, var(--brand) 0%, var(--brand-600) 100%);
  box-shadow: 0 6px 18px rgba(13,148,136,.28), inset 0 1px 0 rgba(255,255,255,.4);
  flex: none;
}
.icon-tile svg { width: 26px; height: 26px; stroke-width: 2.15; }
.it-cyan   { background: linear-gradient(150deg, #22d3ee, #0891b2); box-shadow: 0 6px 18px rgba(8,145,178,.28), inset 0 1px 0 rgba(255,255,255,.4); }
.it-violet { background: linear-gradient(150deg, #a78bfa, #6d5ae8); box-shadow: 0 6px 18px rgba(109,90,232,.28), inset 0 1px 0 rgba(255,255,255,.4); }
.it-amber  { background: linear-gradient(150deg, #fbbf24, #ea8a04); box-shadow: 0 6px 18px rgba(234,138,4,.26), inset 0 1px 0 rgba(255,255,255,.4); }
.it-rose   { background: linear-gradient(150deg, #fb7185, #e11d48); box-shadow: 0 6px 18px rgba(225,29,72,.24), inset 0 1px 0 rgba(255,255,255,.4); }
.it-slate  { background: linear-gradient(150deg, #94a3b8, #475569); box-shadow: 0 6px 18px rgba(71,85,105,.24), inset 0 1px 0 rgba(255,255,255,.4); }
.it-blue   { background: linear-gradient(150deg, #60a5fa, #2563eb); box-shadow: 0 6px 18px rgba(37,99,235,.26), inset 0 1px 0 rgba(255,255,255,.4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  /* min-height statt vertikalem Padding: sorgt für exakt gleiche Höhen und
     eine optisch mittige Beschriftung, auch wenn ein Icon daneben steht. */
  min-height: 46px;
  padding: .6rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: 1.0125rem;
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .25s var(--ease-io), color .25s var(--ease-io);
  border: 1px solid transparent;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: scale(.972); }

.btn-primary {
  background: linear-gradient(140deg, #14a99b 0%, var(--brand) 46%, var(--brand-600) 100%);
  color: #fff;
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-primary:hover { box-shadow: 0 14px 40px rgba(13,148,136,.4), inset 0 1px 0 rgba(255,255,255,.28); }

.btn-glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-color: rgba(0,0,0,.09);
  color: var(--ink);
  box-shadow: var(--sh-1);
}
.btn-glass:hover { background: rgba(255,255,255,.9); }

.btn-ghost { color: var(--brand-600); padding-inline: .6rem; min-height: 0; }
.btn-ghost:hover { color: var(--brand-700); }

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

.btn-lg { min-height: 54px; padding: .7rem 2rem; font-size: 1.075rem; }
.btn-sm { min-height: 36px; padding: .4rem 1.1rem; font-size: .9375rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.center .btn-row,
.hero .btn-row,
.cta-panel .btn-row,
.section-head .btn-row,
.night .btn-row { justify-content: center; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  color: var(--brand-600);
  font-weight: 540;
  font-size: 1.0125rem;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Pills / Badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 560;
  letter-spacing: -.005em;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--sh-1);
  color: var(--ink-2);
}
.pill svg { width: 14px; height: 14px; }
.pill-brand { background: rgba(240,253,250,.85); border-color: rgba(94,234,212,.6); color: var(--brand-700); }
.pill-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(13,148,136,.18);
}

.tag {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 7px;
  font-size: .6875rem;
  font-weight: 680;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(13,148,136,.1);
  color: var(--brand-700);
}
.tag-muted { background: rgba(0,0,0,.055); color: var(--ink-3); }
.tag-amber { background: rgba(245,158,11,.14); color: #92600a; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(251,251,253,.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease-io), border-color .35s var(--ease-io);
}
.nav.scrolled {
  background: rgba(251,251,253,.86);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3125rem;
  font-weight: 620;
  letter-spacing: -.045em;
  text-transform: lowercase;
  flex: none;
  color: var(--ink);
}
.brand-mark {
  width: 27px; height: 27px;
  border-radius: 8px;
  background: linear-gradient(145deg, #14b8a6, #0d9488 55%, #0f766e);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(13,148,136,.34), inset 0 1px 0 rgba(255,255,255,.4);
}
.brand-mark svg { width: 15px; height: 15px; color: #fff; }
/* Wortmarke wird durchgehend klein und in einem Wort gesetzt. */
.brand span.w { font-weight: 620; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-left: auto;
  font-size: .875rem;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 .72rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  font-weight: 480;
  transition: background .25s var(--ease-io), color .25s var(--ease-io);
}
.nav-links a:hover { background: rgba(0,0,0,.05); color: var(--ink); }
.nav-links a.active { color: var(--brand-600); font-weight: 580; }
.nav-cta { margin-left: .5rem; min-height: 34px; padding-block: 0; }

.nav-burger {
  display: none;
  margin-left: auto;
  width: 38px; height: 38px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav-burger:hover { background: rgba(0,0,0,.05); }
.nav-burger svg { width: 21px; height: 21px; }

.nav-sheet {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(251,251,253,.96);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
  padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 1.6rem;
  display: none;
  flex-direction: column;
  gap: .15rem;
  box-shadow: var(--sh-2);
}
.nav-sheet.open { display: flex; animation: sheetDrop .4s var(--ease) both; }
.nav-sheet a {
  padding: .85rem .2rem;
  font-size: 1.0625rem;
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
}
.nav-sheet a:last-of-type { border-bottom: none; }
.nav-sheet .btn { margin-top: .9rem; }

@keyframes sheetDrop {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
}
.hero .display { margin-top: 1.4rem; }
.hero .lead { margin-top: 1.5rem; max-width: 660px; margin-inline: auto; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-note { margin-top: 1.1rem; }

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.4rem;
}

/* ---------- Produkt-Mockups ---------- */
.shot {
  position: relative;
  border-radius: var(--r-2xl);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 18px 50px rgba(0,0,0,.10),
    0 60px 120px -30px rgba(13,148,136,.20);
  padding: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.shot-body {
  background: #fdfdfe;
  border-radius: calc(var(--r-2xl) - 12px);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.055);
}
.shot-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 14px;
  background: rgba(246,246,248,.95);
  border-bottom: 1px solid rgba(0,0,0,.055);
}
.shot-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #dcdce1;
  display: block;
}
.shot-bar i:nth-child(1) { background: #ff5f57; }
.shot-bar i:nth-child(2) { background: #febc2e; }
.shot-bar i:nth-child(3) { background: #28c840; }
.shot-bar span {
  margin-left: auto;
  font-size: .6875rem;
  color: var(--ink-4);
  font-family: var(--mono);
  letter-spacing: -.01em;
}

.hero-shot { margin-top: clamp(2.5rem, 6vw, 4.5rem); }

/* App-Nachbau: Layout */
.ui {
  display: grid;
  grid-template-columns: 186px 1fr;
  min-height: 430px;
  font-size: .8125rem;
  text-align: left;
  color: var(--ink);
}
.ui-side {
  background: #fff;
  border-right: 1px solid rgba(0,0,0,.06);
  padding: 13px 11px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ui-brand {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .35rem 1rem;
  font-weight: 660;
  letter-spacing: -.03em;
  font-size: .9375rem;
}
.ui-brand .brand-mark { width: 22px; height: 22px; border-radius: 7px; }
.ui-brand .brand-mark svg { width: 12px; height: 12px; }
.ui-group {
  font-size: .5625rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: .85rem .5rem .3rem;
}
.ui-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .43rem .55rem;
  border-radius: 9px;
  color: var(--ink-3);
  font-weight: 480;
  font-size: .78125rem;
}
.ui-item svg { width: 15px; height: 15px; flex: none; opacity: .8; }
.ui-item.on {
  background: var(--brand-50);
  color: var(--brand-700);
  font-weight: 620;
  border: 1px solid rgba(94,234,212,.5);
}
.ui-item.lock { color: #cfcfd4; }
.ui-item.lock svg { opacity: .6; }
.ui-item .lk { margin-left: auto; width: 11px; height: 11px; }

.ui-main { padding: 17px 19px; background: #fafafb; overflow: hidden; }
.ui-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 15px;
}
.ui-title { font-size: 1.0625rem; font-weight: 680; letter-spacing: -.028em; }
.ui-sub { font-size: .71875rem; color: var(--ink-4); margin-top: 1px; }
.ui-btn {
  padding: .34rem .72rem;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: .6875rem;
  font-weight: 620;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  box-shadow: 0 2px 7px rgba(13,148,136,.3);
}
.ui-btn svg { width: 11px; height: 11px; }
.ui-btn.sec { background: #fff; color: var(--ink-2); border: 1px solid rgba(0,0,0,.1); box-shadow: none; }

.ui-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 13px;
  padding: 13px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.ui-panel + .ui-panel { margin-top: 11px; }
.ui-panel-t {
  font-size: .625rem;
  font-weight: 740;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 9px;
}

.ui-row { display: flex; gap: 11px; }
.ui-row > * { min-width: 0; }
.ui-col { flex: 1; }

/* Kennzahl-Kacheln */
.ui-kpi {
  border-radius: 12px;
  padding: 11px 12px;
  border: 1px solid;
}
.ui-kpi .k-l {
  font-size: .5625rem;
  font-weight: 740;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: 4px;
}
.ui-kpi .k-l svg { width: 10px; height: 10px; }
.ui-kpi .k-v { font-size: 1.3125rem; font-weight: 720; letter-spacing: -.035em; line-height: 1.1; }
.ui-kpi .k-m { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; font-size: .625rem; font-weight: 620; }
.ui-kpi .k-b { padding: .1rem .38rem; border-radius: 99px; font-size: .5625rem; font-weight: 780; }
.k-amber { background: linear-gradient(150deg, #fff7ed, #ffedd5); border-color: #fed7aa; color: #9a3412; }
.k-amber .k-v { color: var(--ink); }
.k-amber .k-b { background: #fed7aa; color: #7c2d12; }
.k-green { background: linear-gradient(150deg, #f0fdf4, #dcfce7); border-color: #bbf7d0; color: #14532d; }
.k-green .k-v { color: var(--ink); }
.k-green .k-b { background: #bbf7d0; color: #14532d; }
.k-grey  { background: #f8f8fa; border-color: rgba(0,0,0,.06); color: var(--ink-3); }
.k-grey .k-v { color: var(--ink); }
.k-teal  { background: linear-gradient(150deg, #0d9488, #0f766e); border-color: transparent; color: rgba(255,255,255,.82); }
.k-teal .k-v { color: #fff; font-size: 1.75rem; }

/* Tabelle */
.ui-tbl { width: 100%; border-collapse: collapse; font-size: .71875rem; }
.ui-tbl th {
  text-align: left;
  font-size: .5625rem;
  font-weight: 760;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 0 8px 7px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.ui-tbl td { padding: 6px 8px; border-bottom: 1px solid rgba(0,0,0,.035); }
.ui-tbl tr:last-child td { border-bottom: none; }
.ui-tbl .num { font-variant-numeric: tabular-nums; font-weight: 620; }
.ui-tbl .lac { color: var(--brand-600); font-weight: 700; }
.ui-tbl .hr  { color: #e11d48; font-weight: 600; }
.ui-tbl tr.on td { background: rgba(240,253,250,.85); }
.ui-tbl .st {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .5625rem;
  font-weight: 760;
}

/* Zonen-Zeilen */
.zone {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: .6875rem;
  border: 1px solid;
  margin-bottom: 4px;
}
.zone b { font-weight: 700; min-width: 54px; }
.zone span { margin-left: auto; font-variant-numeric: tabular-nums; opacity: .8; font-weight: 560; }
.z1 { background: #f8f8fa; border-color: rgba(0,0,0,.06); color: var(--ink-3); }
.z2 { background: #f0fdf4; border-color: #bbf7d0; color: #14532d; }
.z3 { background: #fefce8; border-color: #fef08a; color: #713f12; }
.z4 { background: #fff7ed; border-color: #fed7aa; color: #9a3412; }
.z5 { background: #fef2f2; border-color: #fecaca; color: #991b1b; }

/* Live-Cockpit */
.cockpit {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 15px;
  padding: 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.cockpit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.live {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #16a34a;
}
.live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 1.9s var(--ease-io) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.82); }
}
.clock {
  background: #0b0b0d;
  color: #fff;
  padding: .16rem .6rem;
  border-radius: 99px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cockpit-big { text-align: center; padding: 6px 0 10px; }
.cockpit-big .cl {
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 2px;
}
.cockpit-big .cv {
  font-size: 2.875rem;
  font-weight: 740;
  letter-spacing: -.055em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cockpit-big .cv i { font-style: normal; font-size: .875rem; color: var(--ink-4); font-weight: 620; margin-left: 3px; }
.cockpit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 10px;
}
.cockpit-grid div { text-align: center; }
.cockpit-grid .gl { font-size: .5rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.cockpit-grid .gv { font-size: .9375rem; font-weight: 720; letter-spacing: -.03em; margin-top: 1px; font-variant-numeric: tabular-nums; }
.cockpit-hr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 10px;
  padding-top: 9px;
}
.cockpit-hr .hl { display: flex; align-items: center; gap: .4rem; font-size: .5rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); }
.cockpit-hr .hi { width: 22px; height: 22px; border-radius: 7px; background: #fef2f2; display: grid; place-items: center; color: #e11d48; }
.cockpit-hr .hi svg { width: 12px; height: 12px; animation: beat 1.5s var(--ease-io) infinite; }
@keyframes beat { 0%,100% { transform: scale(1); } 22% { transform: scale(1.16); } }
.cockpit-hr .hv { font-family: var(--mono); font-size: 1.125rem; font-weight: 720; font-variant-numeric: tabular-nums; }
.cockpit-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
.cbtn {
  border-radius: 11px;
  padding: .5rem;
  text-align: center;
  font-size: .6875rem;
  font-weight: 780;
  letter-spacing: .02em;
  color: #fff;
}
.cbtn.go   { background: linear-gradient(150deg, #10b981, #059669); grid-column: 1 / -1; box-shadow: 0 4px 12px rgba(5,150,105,.28); }
.cbtn.hold { background: linear-gradient(150deg, #fbbf24, #f59e0b); box-shadow: 0 3px 10px rgba(245,158,11,.24); }
.cbtn.stop { background: linear-gradient(150deg, #f87171, #dc2626); box-shadow: 0 3px 10px rgba(220,38,38,.24); }

/* Diagramm-Fläche */
.chart { position: relative; height: 152px; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-legend { display: flex; gap: 1rem; justify-content: center; margin-top: 7px; }
.chart-legend span { display: inline-flex; align-items: center; gap: .3rem; font-size: .625rem; font-weight: 620; color: var(--ink-3); }
.chart-legend i { width: 12px; height: 2.5px; border-radius: 2px; display: block; }

/* Intervall-Balken (Workout-Editor) */
.bars { display: flex; height: 74px; align-items: flex-end; gap: 2px; }
.bars i { display: block; border-radius: 3px 3px 0 0; flex: 1; }
.b-warm { background: #93c5fd; }
.b-act  { background: #fb923c; }
.b-rest { background: #d1d5db; }
.b-cool { background: #5eead4; }

/* Mobile Rahmen (Remote-Diagnostik) */
.phone {
  width: 216px;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(165deg, #f2f2f4, #dfdfe4);
  box-shadow: var(--sh-3), inset 0 1px 0 #fff;
  flex: none;
  margin-inline: auto;
}
.phone-in {
  background: #fff;
  border-radius: 27px;
  overflow: hidden;
  padding: 15px 13px 19px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.05);
}
.phone-notch { width: 52px; height: 4px; border-radius: 99px; background: #e6e6ea; margin: 0 auto 13px; }
.code-box {
  font-family: var(--mono);
  font-size: 1.625rem;
  font-weight: 720;
  letter-spacing: .16em;
  padding: .85rem .3rem;
  border-radius: 15px;
  background: var(--brand-50);
  border: 2px dashed rgba(94,234,212,.75);
  color: var(--brand-700);
}

@media (max-width: 760px) {
  .ui { grid-template-columns: 1fr; min-height: 0; }
  .ui-side { display: none; }
  .ui-row { flex-direction: column; }
}

/* ---------- Feature-Sektionen ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.feature.flip > *:first-child { order: 2; }
@media (max-width: 940px) {
  .feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature.flip > *:first-child { order: 0; }
}
.feature-list { margin-top: 1.6rem; }
.feature-list li {
  display: flex;
  gap: .7rem;
  padding: .42rem 0;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature-list svg { width: 18px; height: 18px; flex: none; color: var(--brand); margin-top: 2px; }

/* ---------- Kennzahlen-Band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.stat {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 1.1rem;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: .45rem;
  font-size: .78125rem;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -.005em;
}

/* ---------- Dunkle Sektion ---------- */
.night {
  background: radial-gradient(ellipse 110% 80% at 22% 0%, #12312d 0%, var(--night-2) 42%, var(--night) 100%);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-3);
}
.night::before {
  content: "";
  position: absolute;
  width: 60%; height: 160%;
  right: -18%; top: -50%;
  background: radial-gradient(circle, rgba(20,184,166,.19), transparent 66%);
  pointer-events: none;
}
.night .h2, .night .display, .night .h1 { color: #fff; }
.night .lead { color: rgba(255,255,255,.7); }
.night .eyebrow { color: var(--brand-300); }
.night-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-md);
  padding: 1.3rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.night-card h4 { font-size: 1rem; font-weight: 620; letter-spacing: -.02em; margin-bottom: .4rem; }
.night-card p { font-size: .9375rem; color: rgba(255,255,255,.62); line-height: 1.55; }
.night-card .icon-tile { margin-bottom: .95rem; }

/* ---------- Preise ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.plan {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(175%);
  -webkit-backdrop-filter: blur(30px) saturate(175%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--sh-1);
  position: relative;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.plan-featured {
  border-color: rgba(13,148,136,.34);
  box-shadow: 0 8px 26px rgba(13,148,136,.14), 0 30px 60px -22px rgba(13,148,136,.24);
  background: rgba(255,255,255,.82);
}
.plan-flag {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(140deg, #14a99b, var(--brand-600));
  color: #fff;
  font-size: .6875rem;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 99px;
  box-shadow: var(--sh-brand);
  white-space: nowrap;
}
.plan h3 { font-size: 1.375rem; font-weight: 680; letter-spacing: -.03em; }
.plan .plan-for { font-size: .875rem; color: var(--ink-3); margin-top: .3rem; min-height: 2.6em; }
.plan-price { margin: 1.3rem 0 1.15rem; padding-bottom: 1.15rem; border-bottom: 1px solid var(--hairline); }
.plan-price b { font-size: 2rem; font-weight: 700; letter-spacing: -.04em; }
.plan-price span { font-size: .875rem; color: var(--ink-3); display: block; margin-top: .25rem; }
.plan ul { display: flex; flex-direction: column; gap: .58rem; margin-bottom: 1.5rem; }
.plan li { display: flex; gap: .55rem; font-size: .9375rem; color: var(--ink-2); line-height: 1.45; }
.plan li svg { width: 16px; height: 16px; flex: none; margin-top: 2.5px; color: var(--brand); }
.plan li.off { color: var(--ink-4); }
.plan li.off svg { color: #d4d4d8; }
.plan .btn { width: 100%; }

/* ---------- Vergleichstabelle ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  -webkit-overflow-scrolling: touch;
}
table.matrix { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .9375rem; }
table.matrix th, table.matrix td { padding: .85rem 1.1rem; text-align: left; }
table.matrix thead th {
  font-size: .6875rem;
  font-weight: 740;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--ink-4);
  background: rgba(248,248,250,.9);
  border-bottom: 1px solid var(--hairline);
  white-space: nowrap;
}
table.matrix tbody tr + tr td { border-top: 1px solid rgba(0,0,0,.05); }
table.matrix tbody tr:hover td { background: rgba(240,253,250,.5); }
table.matrix td:not(:first-child), table.matrix th:not(:first-child) { text-align: center; }
table.matrix td:first-child { font-weight: 520; color: var(--ink); }
.yes { color: var(--brand); }
.no  { color: #d4d4d8; }
.yes svg, .no svg { width: 19px; height: 19px; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: .3rem 0;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.15rem .3rem;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 560;
  letter-spacing: -.018em;
  list-style: none;
  transition: color .25s var(--ease-io);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-600); }
.faq summary .chev {
  width: 20px; height: 20px;
  flex: none;
  color: var(--ink-4);
  transition: transform .4s var(--ease);
}
.faq details[open] summary .chev { transform: rotate(180deg); color: var(--brand); }
.faq .answer {
  padding: 0 2.6rem 1.35rem .3rem;
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.62;
  animation: fadeUp .45s var(--ease) both;
}
.faq .answer a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.faq .answer p + p { margin-top: .7rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- CTA ---------- */
.cta-panel {
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--r-2xl);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(94,234,212,.3), transparent 62%),
    rgba(255,255,255,.7);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--sh-3);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--hairline);
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding-block: clamp(2.6rem, 5vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer h5 {
  font-size: .75rem;
  font-weight: 740;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: .95rem;
}
.footer nav { display: flex; flex-direction: column; gap: .55rem; }
.footer nav a { font-size: .9375rem; color: var(--ink-3); transition: color .2s var(--ease-io); }
.footer nav a:hover { color: var(--brand-600); }
.footer-bar {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Rechtstexte ---------- */
.legal { padding-top: calc(var(--nav-h) + 3.5rem); }
.legal-doc {
  max-width: 760px;
  margin-inline: auto;
}
.legal-doc h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); font-weight: 700; letter-spacing: -.038em; line-height: 1.1; }
.legal-doc > .small { margin-top: .8rem; }
.legal-doc h2 {
  font-size: 1.3125rem;
  font-weight: 660;
  letter-spacing: -.024em;
  margin-top: 2.8rem;
  margin-bottom: .85rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.legal-doc h2:first-of-type { border-top: none; padding-top: 0; }
.legal-doc h3 {
  font-size: 1.0625rem;
  font-weight: 620;
  letter-spacing: -.018em;
  margin-top: 1.7rem;
  margin-bottom: .5rem;
}
.legal-doc p, .legal-doc li {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink-2);
}
.legal-doc p + p { margin-top: .85rem; }
.legal-doc ul, .legal-doc ol { margin: .85rem 0 .85rem 0; display: flex; flex-direction: column; gap: .45rem; }
.legal-doc ul li { padding-left: 1.3rem; position: relative; }
.legal-doc ul li::before {
  content: "";
  position: absolute;
  left: .25rem; top: .68em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .6;
}
.legal-doc ol { counter-reset: li; }
.legal-doc ol > li { padding-left: 1.9rem; position: relative; counter-increment: li; }
.legal-doc ol > li::before {
  content: counter(li) ".";
  position: absolute;
  left: 0; top: 0;
  font-weight: 640;
  color: var(--brand-600);
  font-variant-numeric: tabular-nums;
}
.legal-doc a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 2px; }
.legal-doc strong { font-weight: 620; color: var(--ink); }
.legal-doc table { width: 100%; border-collapse: collapse; font-size: .9375rem; margin: 1.1rem 0; }
.legal-doc table th, .legal-doc table td {
  text-align: left;
  padding: .65rem .8rem;
  border: 1px solid var(--hairline);
  vertical-align: top;
}
.legal-doc table th { background: rgba(248,248,250,.9); font-weight: 620; font-size: .875rem; }

.note {
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-size: .9375rem;
  line-height: 1.6;
  border: 1px solid;
}
.note-info  { background: rgba(240,253,250,.75); border-color: rgba(94,234,212,.55); color: #115e59; }
.note-warn  { background: rgba(255,251,235,.8); border-color: rgba(252,211,77,.6); color: #78350f; }
.note strong { color: inherit; }

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.8rem 0 2.5rem;
}
.toc a {
  font-size: .8125rem;
  font-weight: 540;
  padding: .38rem .8rem;
  border-radius: 99px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--hairline);
  color: var(--ink-2);
  transition: all .25s var(--ease-io);
}
.toc a:hover { border-color: var(--brand-300); color: var(--brand-700); background: var(--brand-50); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-tile { width: 42px; height: 42px; border-radius: 13px; }
.contact-row .icon-tile svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 1rem; font-weight: 600; letter-spacing: -.018em; }
.contact-row p { font-size: .9375rem; color: var(--ink-3); margin-top: .2rem; line-height: 1.5; }
.contact-row a { color: var(--brand-600); }

/* ---------- Scroll-Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

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

/* ---------- Hilfsklassen ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.muted { color: var(--ink-3); }
.nowrap { white-space: nowrap; }
.hide-sm { }
@media (max-width: 620px) { .hide-sm { display: none; } }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 10px 0;
  z-index: 200;
  font-weight: 560;
}
.skip:focus { left: 0; }

@media print {
  .nav, .nav-sheet, .footer, .bloom-field, .btn { display: none !important; }
  body { background: #fff; }
  .legal { padding-top: 0; }
}
