:root {
  --blau: #2b529e;
  --blau-hell: #5a86cc;
  --alarm: #d93f3f;
  --gruen: #50c878;
  --warn: #f39c12;
  --neutral: #f4f4f9;
  --text: #2c3e50;
  --muted: #5c6b7a;
  --weiss: #ffffff;
  --line: #e4e7ef;
  --font: Inter, "Segoe UI", system-ui, sans-serif;
  --font-display: Poppins, Inter, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --neutral: #0e1624;
    --text: #f3f5f8;
    --muted: #a8b6c7;
    --weiss: #162338;
    --line: #2a3c51;
  }

  body {
    background:
      radial-gradient(ellipse 55% 45% at 50% 38%, rgb(90 134 204 / 18%), transparent 70%),
      var(--neutral);
  }

  a,
  .card a {
    color: #8aaddf;
  }

  .back:hover,
  .legal:hover {
    color: #8aaddf;
  }

  .beta-hint a:hover,
  .beta-hint a:focus-visible {
    color: #8aaddf;
    border-bottom-color: rgb(138 173 223 / 55%);
  }

  .updated,
  .site-footer {
    color: #a8b6c7;
  }

  .sep {
    color: #5c6b7a;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgb(90 134 204 / 28%), transparent 70%),
    var(--neutral);
}

a {
  color: var(--blau);
}

.stage {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(92vw, 36rem);
  margin-inline: auto;
  padding: 2.5rem 1.5rem 1.5rem;
  overflow: auto;
}

.mark-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mark {
  width: min(78vw, 24rem);
  height: auto;
  display: block;
}

.mark.mark--on-light {
  display: block;
}

.mark.mark--on-dark {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .mark.mark--on-light {
    display: none;
  }

  .mark.mark--on-dark {
    display: block;
  }
}

.bar {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.bar span {
  width: 2.25rem;
  height: 0.28rem;
  border-radius: 999px;
  filter: brightness(1);
  transition: filter 0.22s ease, box-shadow 0.22s ease;
}

.bar span.is-lit {
  filter: brightness(1.55);
  transition-duration: 0.08s;
}

.bar span:nth-child(1).is-lit {
  box-shadow: 0 0 10px rgb(80 200 120 / 65%);
}

.bar span:nth-child(2).is-lit {
  box-shadow: 0 0 10px rgb(243 156 18 / 65%);
}

.bar span:nth-child(1) {
  background: var(--gruen);
}

.bar span:nth-child(2) {
  background: var(--warn);
}

.bar span:nth-child(3) {
  background: var(--alarm);
  box-shadow: 0 0 0 0 rgb(217 63 63 / 45%);
  animation: live 2.4s ease-out infinite;
}

@keyframes live {
  70% {
    box-shadow: 0 0 0 8px rgb(217 63 63 / 0%);
  }
}

.note {
  margin: 1.75rem 0 0;
  max-width: 36rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
}

.beta-hint {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: center;
}

.beta-hint a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgb(92 107 122 / 35%);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.beta-hint a:hover,
.beta-hint a:focus-visible {
  color: var(--blau);
  border-bottom-color: var(--blau-hell);
}

.beta-hint a:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 3px;
}

.beta-hint__sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

.sheet {
  flex: 1 1 0;
  min-height: 0;
  overflow: auto;
  width: min(92vw, 40rem);
  margin: 2.5rem auto 1.5rem;
}

.sheet--wide {
  width: min(92vw, 48rem);
}

.back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}

.back:hover {
  color: var(--blau);
}

.card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--blau);
  border-radius: 16px;
  background: var(--weiss);
  box-shadow: 0 10px 30px rgb(43 82 158 / 8%);
  padding: 1.6rem 1.5rem 1.4rem;
}

.card h1 {
  margin: 0 0 1.25rem;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.card h2 {
  margin: 1.35rem 0 0.4rem;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card a {
  color: var(--blau);
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.updated {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.85rem 1.35rem;
  padding: 1rem 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.1rem;
}

.site-footer a,
.site-footer .legal {
  color: inherit;
  text-decoration: none;
}

.version {
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
  font-size: 0.68rem;
}

.env-banner {
  flex-shrink: 0;
  z-index: 100;
  padding: 0.4rem 1rem;
  background: #1e3a73;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 1px 0 rgb(0 0 0 / 12%);
}

.env-banner[hidden] {
  display: none;
}

.legal:hover {
  color: var(--blau);
}

.sep {
  color: #c5ccd4;
}

.credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
}

.brand img {
  height: 1.25rem;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.brand:hover img,
.brand:focus-visible img {
  opacity: 0.85;
  filter: grayscale(0);
}

.brand:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .bar span:nth-child(3),
  .brand img {
    animation: none;
    transition: none;
  }

  .bar span.is-lit {
    filter: none;
    box-shadow: none;
  }
}

/* —— Beta- / Legal-Seiten (scrollbar) —— */

html:has(body.page-beta),
html:has(body.page-legal),
body.page-beta,
body.page-legal {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body.page-beta,
body.page-legal {
  display: block;
}

.page-beta main {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
}

.page-legal .sheet {
  flex: none;
  min-height: 0;
  overflow: visible;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
}

.beta-rail {
  width: min(92vw, 68rem);
  margin-inline: auto;
}

.beta-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 1.75rem);
  background: color-mix(in srgb, var(--neutral) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(196 208 227 / 35%);
}

.beta-top__brand .mark {
  width: min(42vw, 11.5rem);
}

.beta-top__brand.mark-wrap {
  text-decoration: none;
}

.beta-top__brand .bar {
  gap: 0.28rem;
  margin-top: 0.4rem;
}

.beta-top__brand .bar span {
  width: 1.15rem;
  height: 0.2rem;
}

.beta-top__cta {
  flex-shrink: 0;
  color: var(--blau);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.beta-top__cta:hover {
  color: var(--blau-hell);
}

.beta-hero {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
}

.beta-hero__copy {
  max-width: 38rem;
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.beta-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blau);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beta-hero h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.beta-hero__lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.beta-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--blau);
  color: #fff;
}

.btn--primary:hover {
  background: #1e3a73;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--blau-hell);
  color: var(--blau);
}

/* —— Product stage (full-bleed) —— */

.stage-bleed {
  position: relative;
  width: 100%;
  padding: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.stage-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 55% 35%, rgb(43 82 158 / 22%), transparent 65%),
    linear-gradient(180deg, transparent 0%, rgb(14 22 36 / 5%) 45%, rgb(14 22 36 / 12%) 100%);
  pointer-events: none;
}

.product-stage {
  position: relative;
  z-index: 1;
  width: min(100vw - 1.25rem, 92rem);
  margin-inline: auto;
  min-height: clamp(18rem, 52vw, 36rem);
  perspective: 1800px;
}

.product-stage__desk {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(43 82 158 / 16%);
  border-radius: clamp(12px, 1.5vw, 18px);
  background: #0e1624;
  box-shadow:
    0 30px 80px rgb(14 22 36 / 28%),
    0 2px 0 rgb(255 255 255 / 12%) inset;
  cursor: zoom-in;
  transform: rotateX(4deg) rotateY(-3deg) translateY(0);
  transform-origin: 50% 85%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: stage-in 0.9s ease both;
}

.product-stage__desk:hover,
.product-stage__desk:focus-visible {
  transform: rotateX(1deg) rotateY(-0.5deg) translateY(-6px);
  box-shadow:
    0 40px 90px rgb(14 22 36 / 34%),
    0 2px 0 rgb(255 255 255 / 14%) inset;
}

.product-stage__desk:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 4px;
}

.device-desk__bar {
  display: flex;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  background: linear-gradient(180deg, #1a2c40, #162338);
  border-bottom: 1px solid rgb(255 255 255 / 6%);
}

.device-desk__bar i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #5c6b7a;
}

.device-desk__bar i:nth-child(1) {
  background: var(--gruen);
}

.device-desk__bar i:nth-child(2) {
  background: var(--warn);
}

.device-desk__bar i:nth-child(3) {
  background: var(--alarm);
}

.product-stage__desk > img {
  display: block;
  width: 100%;
  height: clamp(16rem, 48vw, 34rem);
  object-fit: cover;
  object-position: top center;
}

.product-stage__phones {
  position: absolute;
  right: clamp(0.5rem, 4vw, 3rem);
  bottom: clamp(-1.5rem, -2vw, -0.5rem);
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  z-index: 2;
  animation: phones-in 1s 0.15s ease both;
}

.product-stage__phone {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  transition: transform 0.28s ease;
}

.product-stage__phone:hover,
.product-stage__phone:focus-visible {
  transform: translateY(-8px) scale(1.03);
}

.product-stage__phone:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 4px;
  border-radius: 28px;
}

.product-stage__phone--back {
  transform: translateY(1.25rem) rotate(-3deg);
  z-index: 1;
}

.product-stage__phone:not(.product-stage__phone--back) {
  transform: rotate(2.5deg);
  z-index: 2;
}

.product-stage__phone:not(.product-stage__phone--back):hover,
.product-stage__phone:not(.product-stage__phone--back):focus-visible {
  transform: translateY(-8px) rotate(2.5deg) scale(1.03);
}

.product-stage__phone--back:hover,
.product-stage__phone--back:focus-visible {
  transform: translateY(0.35rem) rotate(-3deg) scale(1.03);
}

.device-phone {
  display: block;
  width: clamp(6.5rem, 16vw, 11.5rem);
  padding: 0.45rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, #2a3c51, #0e1624);
  box-shadow:
    0 18px 40px rgb(14 22 36 / 40%),
    0 0 0 1px rgb(255 255 255 / 10%) inset;
}

.device-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  background: #fff;
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: rotateX(8deg) rotateY(-4deg) translateY(28px);
  }
  to {
    opacity: 1;
    transform: rotateX(4deg) rotateY(-3deg) translateY(0);
  }
}

@keyframes phones-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.beta-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-top: 1px solid var(--line);
}

.beta-section--showcase {
  border-top: 0;
  padding-top: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, transparent, rgb(43 82 158 / 6%) 30%, transparent 100%);
}

.beta-section--accent {
  padding-inline: clamp(1.1rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, rgb(90 134 204 / 10%), transparent 55%), var(--weiss);
}

.beta-section__intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.beta-section__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.beta-section__intro p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.beta-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.beta-pillars li {
  display: grid;
  gap: 0.35rem;
  padding-left: 1rem;
  border-left: 3px solid var(--blau);
}

.beta-pillars strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
}

.beta-pillars span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.75rem;
}

.feature h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature h3::before {
  content: "";
  flex: 0 0 1.85rem;
  width: 1.85rem;
  height: 0.5rem;
  background:
    radial-gradient(circle closest-side at 0.25rem 50%, var(--gruen) 99%, transparent),
    radial-gradient(circle closest-side at 0.925rem 50%, var(--warn) 99%, transparent),
    radial-gradient(circle closest-side at 1.6rem 50%, var(--alarm) 99%, transparent);
}

.feature p {
  margin: 0;
  padding-left: 2.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— Bento showcase —— */

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: min(100vw - 1.25rem, 92rem);
  margin-inline: auto;
}

.bento__item {
  margin: 0;
}

.bento__item figcaption {
  margin-top: 0.7rem;
  padding-inline: 0.15rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.bento__zoom {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0e1624;
  box-shadow: 0 18px 48px rgb(43 82 158 / 14%);
  cursor: zoom-in;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bento__zoom:hover,
.bento__zoom:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgb(43 82 158 / 22%);
}

.bento__zoom:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 3px;
}

.bento__zoom img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  transition: transform 0.45s ease;
}

.bento__zoom:hover img,
.bento__zoom:focus-visible img {
  transform: scale(1.03);
}

.shot__zoom {
  cursor: zoom-in;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 0;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgb(8 12 20 / 88%);
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem) 1.5rem;
}

.lightbox__img {
  display: block;
  max-width: min(96vw, 110rem);
  max-height: calc(100vh - 5.5rem);
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgb(0 0 0 / 45%);
  background: #0e1624;
  object-fit: contain;
}

.lightbox__caption {
  margin: 0;
  max-width: 42rem;
  color: #d7dee6;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 20px rgb(0 0 0 / 28%);
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--blau);
  color: #fff;
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 2px;
}

body.lightbox-open,
body.page-beta.lightbox-open {
  overflow: hidden;
}

.beta-expect {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.beta-expect li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.beta-expect li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gruen);
}

.beta-expect--warn li::before {
  background: var(--warn);
}

.split-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.split-lists__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* —— Live feed demo —— */

.beta-section--live {
  border-top: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgb(80 200 120 / 10%), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 70%, rgb(217 63 63 / 8%), transparent 50%),
    linear-gradient(180deg, rgb(43 82 158 / 6%), transparent 70%);
}

.live-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--weiss);
  box-shadow: 0 16px 40px rgb(43 82 158 / 10%);
}

.live-panel__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--neutral) 65%, var(--weiss));
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--alarm);
  box-shadow: 0 0 0 0 rgb(217 63 63 / 45%);
  animation: live 2.4s ease-out infinite;
}

.live-panel__label {
  flex: 1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-panel__clock {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.92rem;
  font-weight: 600;
}

.live-feed {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  min-height: 16.5rem;
}

.live-feed__item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgb(196 208 227 / 35%);
  animation: feed-in 0.45s ease both;
}

.live-feed__item:last-child {
  border-bottom: 0;
}

.live-feed__time {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 0.78rem;
}

.live-feed__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.live-feed__text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.live-feed__unit {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
  white-space: nowrap;
}

@keyframes feed-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Flow steps —— */

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.flow-steps li {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.25rem;
  border-top: 2px solid var(--blau);
}

.flow-steps__num {
  color: var(--blau);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-steps strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.flow-steps span:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— Contrast —— */

.contrast {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contrast__col {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
}

.contrast__col--before {
  border: 1px dashed var(--line);
  background: transparent;
}

.contrast__col--after {
  border: 1px solid rgb(43 82 158 / 18%);
  background: linear-gradient(160deg, rgb(90 134 204 / 12%), transparent 60%), var(--weiss);
}

.contrast__col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.contrast__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.contrast__col li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contrast__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #c5ccd4;
}

.contrast__col--after li {
  color: var(--text);
}

.contrast__col--after li::before {
  background: var(--gruen);
}

/* —— FAQ —— */

.faq {
  display: grid;
  gap: 0.55rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--weiss);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--blau);
  font-weight: 500;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.05rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.beta-form {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blau);
  border-radius: 16px;
  background: var(--weiss);
  box-shadow: 0 10px 30px rgb(43 82 158 / 8%);
}

.beta-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--neutral);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blau-hell);
  box-shadow: 0 0 0 3px rgb(90 134 204 / 25%);
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.field--check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--blau);
}

.field--check span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.beta-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 1.35rem;
}

.beta-form__status {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.beta-form__status.is-ok {
  color: #1f7a45;
}

.beta-form__status.is-error {
  color: var(--alarm);
}

.field--hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-form {
  position: relative;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (min-width: 720px) {
  .beta-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .contrast {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .split-lists {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .beta-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-stage__desk > img {
    height: clamp(26rem, 42vw, 38rem);
  }
}

@media (max-width: 719px) {
  .product-stage {
    min-height: 0;
    perspective: none;
    padding-bottom: 1rem;
  }

  .product-stage__desk {
    transform: none;
  }

  .product-stage__desk:hover,
  .product-stage__desk:focus-visible {
    transform: translateY(-4px);
  }

  .product-stage__desk > img {
    height: clamp(12rem, 58vw, 18rem);
  }

  .product-stage__phones {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .product-stage__phone,
  .product-stage__phone--back,
  .product-stage__phone:not(.product-stage__phone--back) {
    transform: none;
  }

  .product-stage__phone:hover,
  .product-stage__phone:focus-visible,
  .product-stage__phone:not(.product-stage__phone--back):hover,
  .product-stage__phone:not(.product-stage__phone--back):focus-visible,
  .product-stage__phone--back:hover,
  .product-stage__phone--back:focus-visible {
    transform: translateY(-6px);
  }

  .device-phone {
    width: clamp(7.5rem, 38vw, 10rem);
  }
}

@media (prefers-color-scheme: dark) {
  .beta-top {
    background: color-mix(in srgb, var(--neutral) 78%, transparent);
    border-bottom-color: rgb(42 60 81 / 80%);
  }

  .btn--primary:hover {
    background: var(--blau-hell);
  }

  .beta-section--accent,
  .beta-form,
  .live-panel,
  .faq__item,
  .contrast__col--after {
    background: var(--weiss);
  }

  .live-panel__meta {
    background: color-mix(in srgb, var(--neutral) 80%, var(--weiss));
  }

  .live-feed__item {
    border-bottom-color: var(--line);
  }

  .lightbox__close {
    background: #162338;
    color: #f3f5f8;
  }

  .field input,
  .field select,
  .field textarea {
    background: #0e1624;
    border-color: var(--line);
  }

  .beta-form__status.is-ok {
    color: var(--gruen);
  }

  .stage-bleed::before {
    background:
      radial-gradient(ellipse 70% 55% at 50% 20%, rgb(90 134 204 / 22%), transparent 70%),
      linear-gradient(180deg, transparent, rgb(0 0 0 / 18%));
  }
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--weiss);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgb(30 58 115 / 12%);
  color: var(--text);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
}

.consent-banner__copy {
  flex: 1 1 16rem;
  min-width: 0;
}

.consent-banner__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.consent-banner__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent-banner__text a {
  color: var(--blau);
  text-underline-offset: 0.12em;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.consent-banner__btn {
  appearance: none;
  margin: 0;
  padding: 0.55rem 1rem;
  border-radius: 0.45rem;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.consent-banner__btn:focus-visible {
  outline: 2px solid var(--blau-hell);
  outline-offset: 2px;
}

.consent-banner__btn--primary {
  background: var(--blau);
  color: #fff;
}

.consent-banner__btn--primary:hover {
  background: #1e3a73;
}

.consent-banner__btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.consent-banner__btn--ghost:hover {
  border-color: var(--blau-hell);
}

button.consent-settings {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

button.consent-settings:hover {
  color: var(--blau);
}

@media (max-width: 640px) {
  .consent-banner__actions {
    width: 100%;
  }

  .consent-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-stage__desk,
  .product-stage__phones,
  .product-stage__phone,
  .bento__zoom,
  .bento__zoom img,
  .live-dot,
  .live-feed__item,
  .btn {
    animation: none;
    transition: none;
  }

  .product-stage__desk,
  .product-stage__desk:hover,
  .product-stage__desk:focus-visible {
    transform: none;
  }
}
