/* ============================================================
   ZETA LANDINGPAGE — marketing layer on top of colors_and_type.css
   Same DNA as the product (cream, espresso, one orange, Inter),
   bigger stage: larger type scale, generous section rhythm.
   ============================================================ */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

:root {
  /* Marketing type scale (extends the product's 12–30px scale) */
  --lp-h1-max: 64px;
  --lp-h2-max: 40px;
  --lp-lead: 19px;
  --lp-body: 16px;
  --lp-section-pad: 104px;
  --lp-max: 1120px;
}
body[data-scale="gross"] {
  --lp-h1-max: 76px;
  --lp-h2-max: 46px;
  --lp-lead: 21px;
  --lp-body: 17px;
  --lp-section-pad: 128px;
}

body {
  font-size: var(--lp-body);
  line-height: 1.5;
}

.lp-container {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 248 237 / 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--z-border);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--z-text);
}
.lp-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
}
.lp-logo strong {
  font-size: 20px;
  font-weight: var(--z-weight-semibold);
  letter-spacing: -0.01em;
}

/* Logo variants: wordmark (Strido SVG) vs. mark + text */
.lp-logo-mark { display: flex; align-items: center; gap: 10px; }
.lp-logo img.lp-logo-word { height: 20px; width: auto; display: block; border-radius: 0; }
body[data-logo="wortmarke"] .lp-logo-mark { display: none; }
body[data-logo="bildmarke"] .lp-logo-word { display: none; }
.lp-nav {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.lp-nav a {
  font-size: 14px;
  font-weight: var(--z-weight-medium);
  color: var(--z-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--z-radius-sm);
  transition: background var(--z-dur-base) ease, color var(--z-dur-base) ease;
}
.lp-nav a:hover { background: var(--z-surface-warm); color: var(--z-text); }
.lp-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 820px) {
  .lp-nav { display: none; }
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--z-font-sans);
  font-size: 15px;
  font-weight: var(--z-weight-semibold);
  line-height: 1;
  border-radius: var(--z-radius-sm);
  border: 1px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--z-dur-base) ease, border-color var(--z-dur-base) ease;
}
.lp-btn:focus-visible { outline: 2px solid var(--z-primary); outline-offset: 2px; }
.lp-btn-primary { background: var(--z-primary); color: #ffffff; }
.lp-btn-primary:hover { background: var(--z-primary-strong); }
.lp-btn-secondary {
  background: var(--z-surface);
  color: var(--z-text);
  border-color: var(--z-border);
}
.lp-btn-secondary:hover { background: var(--z-surface-warm); }
.lp-btn-ghost { background: transparent; color: var(--z-text); }
.lp-btn-ghost:hover { background: var(--z-surface-warm); }
.lp-btn-lg { padding: 16px 28px; font-size: 16px; }
.lp-btn-sm { padding: 9px 14px; font-size: 14px; }

/* ---------- Hero ---------- */
.lp-hero { padding: 88px 0 72px; }
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--z-weight-semibold);
  color: var(--z-primary-text);
  background: var(--z-surface-warm);
  border: 1px solid var(--z-primary-soft);
  border-radius: var(--z-radius-full);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.lp-h1 {
  font-size: clamp(38px, 5.4vw, var(--lp-h1-max));
  font-weight: var(--z-weight-bold);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 24px;
}
.lp-lead {
  font-size: var(--lp-lead);
  line-height: 1.6;
  color: var(--z-muted);
  text-wrap: pretty;
  max-width: 34em;
  margin-bottom: 32px;
}
.lp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lp-hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--z-muted);
}

/* Centered hero variant */
body[data-hero="zentriert"] .lp-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  justify-items: center;
  text-align: center;
}
body[data-hero="zentriert"] .lp-lead { margin-left: auto; margin-right: auto; }
body[data-hero="zentriert"] .lp-hero-ctas { justify-content: center; }
body[data-hero="zentriert"] .lp-hero-mock { max-width: 720px; width: 100%; }

@media (max-width: 920px) {
  .lp-hero { padding: 56px 0 48px; }
  .lp-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
}

/* ---------- Sections ---------- */
.lp-section { padding: var(--lp-section-pad) 0 0; }
.lp-section-head { max-width: 640px; margin-bottom: 56px; }
.lp-section-head.lp-center { margin-left: auto; margin-right: auto; text-align: center; }
.lp-kicker {
  font-size: 13px;
  font-weight: var(--z-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--z-primary-text);
  margin-bottom: 12px;
}
.lp-h2 {
  font-size: clamp(28px, 3.6vw, var(--lp-h2-max));
  font-weight: var(--z-weight-bold);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 16px;
}
.lp-section-head p {
  color: var(--z-muted);
  font-size: var(--lp-lead);
  line-height: 1.6;
  text-wrap: pretty;
}

/* ---------- Steps (So funktioniert's) ---------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.lp-step {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius-md);
  box-shadow: var(--z-shadow-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-step-illo {
  background: var(--z-surface-warm);
  border-radius: var(--z-radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step-illo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-step h3 {
  font-size: 17px;
  font-weight: var(--z-weight-semibold);
  letter-spacing: -0.01em;
}
.lp-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--z-muted);
  text-wrap: pretty;
}
@media (max-width: 980px) { .lp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .lp-steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Feature rows ---------- */
.lp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}
.lp-feature + .lp-feature { margin-top: var(--lp-section-pad); }
.lp-feature.lp-flip .lp-feature-copy { order: 2; }
.lp-feature.lp-flip .lp-feature-visual { order: 1; }
.lp-feature-copy .lp-h2 { margin-bottom: 20px; }
.lp-feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.lp-feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.lp-feature-list .lp-li-icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: var(--z-radius-sm);
  background: var(--z-surface-warm);
  border: 1px solid var(--z-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-primary);
}
.lp-feature-list .lp-li-icon svg { width: 18px; height: 18px; }
.lp-feature-list strong {
  display: block;
  font-size: 16px;
  font-weight: var(--z-weight-semibold);
  margin-bottom: 2px;
}
.lp-feature-list p { font-size: 14.5px; line-height: 1.6; color: var(--z-muted); text-wrap: pretty; }
@media (max-width: 920px) {
  .lp-feature { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .lp-feature.lp-flip .lp-feature-copy { order: 1; }
  .lp-feature.lp-flip .lp-feature-visual { order: 2; }
}

/* ---------- Dark band (live coaching) ---------- */
.lp-dark-band {
  margin-top: var(--lp-section-pad);
  background: var(--z-night);
  color: #fafaf9;
  padding: var(--lp-section-pad) 0;
}
body[data-live="hell"] .lp-dark-band {
  background: var(--z-surface-warm);
  color: var(--z-text);
}
.lp-dark-band .lp-h2 { color: inherit; }
.lp-dark-band .lp-kicker { color: var(--z-primary-soft); }
body[data-live="hell"] .lp-dark-band .lp-kicker { color: var(--z-primary-text); }
.lp-dark-band .lp-feature-list p { color: rgb(250 250 249 / 0.64); }
body[data-live="hell"] .lp-dark-band .lp-feature-list p { color: var(--z-muted); }
.lp-dark-band .lp-feature-list .lp-li-icon {
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.14);
}
body[data-live="hell"] .lp-dark-band .lp-feature-list .lp-li-icon {
  background: var(--z-surface);
  border-color: var(--z-primary-soft);
}

/* ---------- Audience cards ---------- */
.lp-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.lp-audience-card {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius-lg);
  box-shadow: var(--z-shadow-sm);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.lp-audience-card .lp-li-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--z-radius-sm);
  background: var(--z-surface-warm);
  border: 1px solid var(--z-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-primary);
}
.lp-audience-card .lp-li-icon svg { width: 22px; height: 22px; }
.lp-audience-card h3 {
  font-size: 22px;
  font-weight: var(--z-weight-semibold);
  letter-spacing: -0.01em;
}
.lp-audience-card > p { font-size: 15.5px; line-height: 1.65; color: var(--z-muted); text-wrap: pretty; }
.lp-audience-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.lp-audience-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
}
.lp-audience-points svg { width: 16px; height: 16px; color: var(--z-primary); flex: none; }
@media (max-width: 820px) { .lp-audience { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Final CTA ---------- */
.lp-cta {
  margin-top: var(--lp-section-pad);
  padding-bottom: var(--lp-section-pad);
}
.lp-cta-card {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius-lg);
  box-shadow: var(--z-shadow-card);
  padding: 72px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lp-cta-card img { width: 56px; height: 56px; border-radius: 12px; }
.lp-cta-card .lp-h2 { margin-bottom: 0; }
.lp-cta-card p { color: var(--z-muted); font-size: var(--lp-lead); max-width: 30em; text-wrap: pretty; }

/* ---------- Footer ---------- */
.lp-footer { border-top: 1px solid var(--z-border); padding: 32px 0 48px; }
.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.lp-footer .lp-logo img { width: 24px; height: 24px; border-radius: 6px; }
.lp-footer .lp-logo strong { font-size: 16px; }
.lp-footer .lp-logo img.lp-logo-word { width: auto; height: 16px; }
.lp-footer-tag { font-size: 13px; color: var(--z-muted); }
.lp-footer-links { margin-left: auto; display: flex; gap: 4px; }
.lp-footer-links a {
  font-size: 13px;
  color: var(--z-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--z-radius-sm);
}
.lp-footer-links a:hover { background: var(--z-surface-warm); color: var(--z-text); }
@media (max-width: 640px) {
  .lp-footer-links { margin-left: 0; }
}

/* ============================================================
   PRODUCT MOCKUPS (hand-built UI vignettes)
   ============================================================ */
/* Pseudo-screenshots behave like images: no text selection,
   no click target inside — protects them from direct edits. */
.lp-mock-card, .lp-mock-call {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.lp-mock-card {
  background: var(--z-surface);
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius-lg);
  box-shadow: var(--z-shadow-pop);
  overflow: hidden;
}
.lp-mock-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--z-border);
}
.lp-mock-head .lp-mock-title {
  font-size: 14px;
  font-weight: var(--z-weight-semibold);
}
.lp-mock-head .lp-mock-sub { font-size: 12px; color: var(--z-muted); }
.lp-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: var(--z-weight-semibold);
  border-radius: var(--z-radius-sm);
  padding: 4px 10px;
}
.lp-badge svg { width: 13px; height: 13px; }
.lp-badge-success {
  color: var(--z-success);
  background: var(--z-success-soft);
  border: 1px solid var(--z-success-border);
}
.lp-badge-warm {
  color: var(--z-primary-text);
  background: var(--z-surface-warm);
  border: 1px solid var(--z-primary-soft);
}

/* video player */
.lp-mock-player {
  background: var(--z-night-surface);
  margin: 16px 16px 0;
  border-radius: var(--z-radius-md);
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-play {
  width: 52px;
  height: 52px;
  border-radius: var(--z-radius-full);
  background: var(--z-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-play svg { width: 22px; height: 22px; margin-left: 2px; }
.lp-mock-progress {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 4px;
  border-radius: var(--z-radius-full);
  background: rgb(255 255 255 / 0.22);
}
.lp-mock-progress span {
  position: absolute;
  inset: 0 62% 0 0;
  border-radius: inherit;
  background: var(--z-primary);
}
.lp-mock-progress i {
  position: absolute;
  top: 50%;
  left: 38%;
  width: 12px;
  height: 12px;
  border-radius: var(--z-radius-full);
  background: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: var(--z-shadow-sm);
}
.lp-mock-time {
  position: absolute;
  right: 14px;
  bottom: 22px;
  font-size: 11px;
  font-weight: var(--z-weight-medium);
  color: rgb(255 255 255 / 0.85);
}

/* comments */
.lp-mock-comments { padding: 8px 16px 0; display: flex; flex-direction: column; }
.lp-mock-comment {
  display: flex;
  gap: 12px;
  padding: 12px 2px;
  align-items: flex-start;
}
.lp-mock-comment + .lp-mock-comment { border-top: 1px solid var(--z-border); }
.lp-avatar {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: var(--z-radius-sm);
  background: var(--z-surface-warm);
  border: 1px solid var(--z-primary-soft);
  color: var(--z-primary-text);
  font-size: 12px;
  font-weight: var(--z-weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-comment-body { min-width: 0; }
.lp-mock-comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.lp-mock-comment-meta strong { font-size: 13px; font-weight: var(--z-weight-semibold); }
.lp-timestamp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: var(--z-weight-semibold);
  color: var(--z-primary-text);
}
.lp-timestamp svg { width: 12px; height: 12px; }
.lp-mock-comment-body p { font-size: 13.5px; line-height: 1.7; color: var(--z-text); }
.lp-mock-ai {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--z-muted);
  margin-top: 5px;
}
.lp-mock-ai svg { width: 12px; height: 12px; color: var(--z-primary); }

/* composer */
.lp-mock-composer {
  margin: 8px 16px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--z-border);
  border-radius: var(--z-radius-sm);
  padding: 10px 12px;
  background: var(--z-surface);
}
.lp-mock-composer .lp-timestamp { flex: none; }
.lp-mock-composer span.lp-placeholder { font-size: 13px; color: var(--z-muted); flex: 1; }
.lp-mock-send {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: var(--z-radius-sm);
  background: var(--z-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-send svg { width: 15px; height: 15px; }

/* call-room mockup */
.lp-mock-call {
  background: var(--z-night);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: var(--z-radius-lg);
  box-shadow: var(--z-shadow-drawer);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body[data-live="hell"] .lp-mock-call { border-color: rgb(38 24 15 / 0.2); }
.lp-mock-call-stage {
  position: relative;
  background: var(--z-night-surface);
  border-radius: var(--z-radius-md);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-call-tile-name {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  font-weight: var(--z-weight-medium);
  color: rgb(255 255 255 / 0.85);
  background: rgb(0 0 0 / 0.4);
  border-radius: var(--z-radius-sm);
  padding: 4px 8px;
}
.lp-call-avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--z-radius-md);
  background: var(--z-primary);
  color: #ffffff;
  font-size: 26px;
  font-weight: var(--z-weight-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-call-pip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 27%;
  aspect-ratio: 16 / 10;
  background: #292524;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--z-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-mock-call-pip .lp-call-avatar {
  width: 34px;
  height: 34px;
  font-size: 13px;
  border-radius: var(--z-radius-sm);
  background: var(--z-surface-warm);
  color: var(--z-primary-text);
}
.lp-mock-call-controls { display: flex; justify-content: center; gap: 12px; }
.lp-call-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--z-radius-full);
  background: rgb(255 255 255 / 0.1);
  color: #fafaf9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-call-btn svg { width: 19px; height: 19px; }
.lp-call-btn.lp-call-danger { background: var(--z-danger-solid); }

/* group mockup */
.lp-mock-rows { padding: 4px 16px 16px; }
.lp-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
}
.lp-mock-row + .lp-mock-row { border-top: 1px solid var(--z-border); }
.lp-mock-row .lp-row-name { font-size: 14px; font-weight: var(--z-weight-medium); }
.lp-mock-row .lp-row-meta { font-size: 12px; color: var(--z-muted); }
.lp-mock-row .lp-badge { padding: 3px 9px; }

/* ---------- Reveal on scroll ---------- */
.lp-reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.lp-anim .lp-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 480ms var(--z-ease-standard), transform 480ms var(--z-ease-standard);
  }
  html.lp-anim .lp-reveal.lp-in { opacity: 1; transform: none; }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 720px) {
  :root { --lp-section-pad: 60px; }
  body[data-scale="gross"] { --lp-section-pad: 76px; }
  .lp-container { padding-left: 20px; padding-right: 20px; }
  .lp-hero { padding: 36px 0 32px; }
  .lp-section-head { margin-bottom: 36px; }
  .lp-feature-list { gap: 16px; }
  .lp-mock-player { margin: 12px 12px 0; }
  .lp-mock-comments { padding: 6px 12px 0; }
  .lp-mock-composer { margin: 8px 12px 12px; }
}

@media (max-width: 560px) {
  .lp-header-inner { gap: 12px; }
  .lp-header-actions { gap: 8px; }
  /* drop the secondary "Anmelden" link on phones to keep the bar on one line */
  .lp-header-actions .lp-btn-ghost { display: none; }
  /* hero CTAs become full-width stacked — intentional, not a wrap accident */
  .lp-hero-ctas { flex-direction: column; align-items: stretch; }
  .lp-hero-ctas .lp-btn { width: 100%; }
  .lp-cta-card { padding: 48px 22px; }
}
