/* ============================================================
   ToDo Board — Marketing-Surface
   Eigenständiges CSS für Landing/Legal/Kontakt/Login/404.
   Kein Tailwind. Kein Bootstrap. Self-hosted Inter.
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/static/fonts/inter-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/inter-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/static/fonts/inter-extrabold.woff2') format('woff2');
}

/* Metric-gematchter Fallback (Inter→Arial). Verhindert Layout-Shift wenn
   Inter erst nach First Paint geladen ist. Werte aus Fontaine. */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  ascent-override: 90.20%;
  descent-override: 22.48%;
  line-gap-override: 0%;
  size-adjust: 107.40%;
}

/* B.1.170.0: Layout-Shift-Killer für OAuth-Blocks auf /login. Die zwei
   Blöcke werden per JS aus `hidden` geholt nach `public-config` — ohne
   reservierte Höhe shiftet die Signin-Card. Override `[hidden]` für
   GENAU diese beiden IDs: display bleibt im Layout, visibility hidden +
   pointer-events:none, min-height passt zur Live-Höhe (~110 px je Block,
   gemessen Desktop+Mobile). visibility:hidden hält das Element aus dem
   a11y-Tree und Tab-Order — semantisch äquivalent zum `hidden`-Verhalten. */
#google-login-block[hidden],
#microsoft-login-block[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
  min-height: 110px;
}

/* ---------- Tokens ---------- */
:root {
  --bg-deep:        #1a1a1a;
  --bg:             #2d2d2d;
  --bg-elevate:     #383838;
  --bg-card:        #424242;
  --gold:           #DEA726;
  --gold-hover:     #C9941F;
  --gold-light:     #F0BE4A;
  --text:           #ffffff;
  --text-muted:     #a8a8a8;
  --text-dim:       #6a6a6a;
  --border:         #555555;
  --border-soft:    rgba(222, 167, 38, 0.12);
  --success:        #7CB342;
  --danger:         #E57373;
  --accent-warm:    #FFB74D;
  --accent-blue:    #64B5F6;
  --shadow-card:    0 2px 12px rgba(0,0,0,0.4);
  --shadow-mockup:  0 20px 60px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  --radius:         12px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --container:      1200px;
  --gutter:         24px;
  /* B.1.11.0: Easing & spacing tokens */
  --ease-ui:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-reveal:    cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad-y:    80px;
  --section-pad-y-lg: 80px;
  --hero-pad-y:       80px;
}

@media (min-width: 768px) {
  :root {
    --gutter: 48px;
    --section-pad-y:    128px;
    --section-pad-y-lg: 160px;
    --hero-pad-y:       0px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 2px,
      rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 3px);
}

@media (min-width: 768px) {
  body { font-size: 1.125rem; }
}

img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ---------- Container & Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}
.section--deep    { background: var(--bg-deep); }
.section--lg      { padding-top: var(--section-pad-y-lg); padding-bottom: var(--section-pad-y-lg); }
.section--compact { padding-top: 48px; padding-bottom: 48px; }

@media (min-width: 768px) {
  .section--compact { padding-top: 64px; padding-bottom: 64px; }
}

/* ---------- Typografie (B.1.11.0: größere Skala) ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; margin: 0; }
h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  h1 { font-size: 7rem; }
  h2 { font-size: 3.5rem; }
  h3 { font-size: 1.75rem; }
}

.text-muted { color: var(--text-muted); }
.text-dim   { color: var(--text-dim); }
.text-gold  { color: var(--gold); }
.text-small { font-size: 0.875rem; font-weight: 500; }

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 10;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
}
.brand:hover { color: var(--text); }
.brand__logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.site-header__login {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header__login:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn--primary:hover {
  background: var(--gold-hover);
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 16px rgba(222,167,38,0.25);
}
.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--secondary:hover {
  background: rgba(222, 167, 38, 0.05);
  color: var(--gold-light);
}
.btn--block { width: 100%; }
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ---------- Card ---------- */
.card {
  background: var(--bg-elevate);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.card--hover {
  transition: transform 200ms, box-shadow 200ms;
}
.card--hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* ---------- Form ---------- */
.field { margin-bottom: 16px; }
.field__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field__input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 16px;
  transition: outline 150ms;
}
.field__input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
}
.field__hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}
textarea.field__input {
  font-family: inherit;
  resize: vertical;
  min-height: 140px;
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.field--check input {
  margin-top: 2px;
  accent-color: var(--gold);
}

.field-error {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 8px;
  min-height: 1.25rem;
}

/* Honeypot — vor Bots verstecken */
.field--hp {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Hero ---------- */
/* ===================== HERO — Premium Redesign ===================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* gecappt → auf hohen Screens kein toter Void, Folgesektion lugt rein */
  min-height: min(90vh, 720px);
  padding: 88px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 34%, rgba(222,167,38,0.14) 0%, rgba(222,167,38,0) 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, #161616 100%);
}
@media (min-width: 768px) { .hero { padding: 0; } }
/* feine Punkt-Textur — Atmosphäre statt totem Schwarz */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(100% 80% at 50% 36%, #000 0%, transparent 70%);
  mask-image: radial-gradient(100% 80% at 50% 36%, #000 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* sanfte Vignette für Tiefe */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(135% 120% at 50% 40%, transparent 56%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__pitch {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gold { color: var(--gold); }

/* ---- Typo-first Pitch (kein Fake-Mock; echte Screenshots weiter unten) ---- */
/* .section-eyebrow ist display:inline-block (später im File) → höhere
   Spezifität nötig, damit die 2 Zeilen wirklich stapeln */
.section-eyebrow.hero__eyebrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 20px;
}
.hero__eyebrow-em {
  color: var(--gold-light);
  font-size: 0.86rem;
}
.hero__h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--text);
}
.hero__subhead {
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 0 30px;
  line-height: 1.6;
}
.hero__points {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 660px;
}
.hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 7px 15px 7px 13px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(222,167,38,0.05);
  white-space: nowrap;
}
.hero__points li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.btn--hero {
  padding: 0 32px;
  height: 58px;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 14px 34px -10px rgba(222,167,38,0.55);
  transition: transform .18s var(--ease-ui), box-shadow .18s var(--ease-ui);
}
.btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -10px rgba(222,167,38,0.72);
}
.hero__cta-secondary {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero__cta-secondary:hover { color: var(--gold); }

/* ---- Mobil (Typo-first, kein Mock) ---- */
@media (max-width: 767px) {
  .hero { padding: 64px 0 56px; min-height: 0; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__h1 { font-size: clamp(2.1rem, 9vw, 3rem); margin-bottom: 18px; }
  .hero__subhead { margin-bottom: 26px; }
  .hero__points { margin-bottom: 28px; }
  .hero__points li { white-space: normal; }
}

/* ---------- Story-Pillars (B.1.11.0: vertikal, alternierend) ---------- */
.pillar {
  padding: 64px 0;
  position: relative;
}
@media (min-width: 768px) {
  .pillar { padding: 96px 0; }
}
.pillar--deep { background: var(--bg-deep); }

.pillar__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .pillar__inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
  .pillar--reverse .pillar__inner { flex-direction: row-reverse; }
}

.pillar__visual {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}
@media (min-width: 768px) {
  .pillar__visual { min-height: 320px; }
}

.pillar__content { flex: 1; width: 100%; }
.pillar__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.pillar__content p {
  color: var(--text-muted);
  margin: 0;
  max-width: 480px;
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-elevate);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 250ms;
  color: var(--text-muted);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-out;
  color: var(--text-muted);
}
.faq__item[open] .faq__a { max-height: 500px; }
.faq__a-inner { padding: 0 24px 18px; }
.faq__a-inner .faq__p { margin: 0 0 12px; }
.faq__donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background .18s var(--ease-ui), color .18s var(--ease-ui);
}
.faq__donate:hover { background: rgba(222,167,38,0.12); color: var(--gold-light); }
.faq__donate svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Sign-up-Section ---------- */
.signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.signup h2 { margin-bottom: 16px; }
.signup__sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 32px;
}
.signup__card {
  width: 100%;
  max-width: 440px;
  text-align: left;
  position: relative;
}
.signup__hint {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  padding: 48px var(--gutter) 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.site-footer .brand { justify-content: center; margin-bottom: 12px; }
.site-footer__tag { color: var(--text-dim); margin-bottom: 24px; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 24px;
}
.site-footer__links a { color: var(--text-muted); }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__sep { color: var(--text-dim); }
.site-footer__meta { color: var(--text-dim); font-size: 0.75rem; }

/* ---------- Sign-in-Card (Login + Sign-up reuse) ---------- */
.signin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.signin-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px var(--gutter);
}
.signin-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-elevate);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.signin-card h1 {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.signin-card__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}
.signin-card__alt {
  margin-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.signin-footer {
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.signin-footer a { color: var(--text-muted); margin: 0 8px; }

/* ---------- Lese-Layout (Legal + Kontakt) ---------- */
.prose {
  max-width: 640px;
  margin: 0 auto;
}
.prose h1 { font-size: 2rem; margin-bottom: 16px; color: var(--gold); }
.prose h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.prose h3 { font-size: 1.125rem; margin: 24px 0 8px; }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 16px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose .placeholder {
  background: rgba(222, 167, 38, 0.15);
  color: var(--gold-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}

/* ---------- 404-Page ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.error-page__code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.error-page h1 {
  font-size: 1.75rem;
  margin: 0 0 16px;
}
.error-page p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}

/* B.1.11.0: Pillar 1 — Tag-Karten-Mockup */
.mini-mockup--days {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(280px, 100%);
}
.mini-day {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 16px;
  position: relative;
  transition: opacity 200ms;
}
.mini-day--past   { opacity: 0.4; }
.mini-day--future { opacity: 0.5; min-height: 56px; }
.mini-day--active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(222,167,38,0.15);
  z-index: 2;
}
.mini-day__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.mini-day--active .mini-day__label { color: var(--gold); }

.mini-task {
  font-size: 0.875rem;
  color: var(--text);
  padding: 4px 0;
  position: relative;
}
.mini-task::before {
  content: '○';
  display: inline-block;
  width: 14px;
  margin-right: 6px;
  color: var(--text-dim);
}
.mini-task--done {
  color: var(--text-muted);
  text-decoration: line-through;
}
.mini-task--done::before {
  content: '✓';
  color: var(--success);
}
@keyframes task-roll-down {
  0%, 30%   { transform: translate(0, 0); opacity: 1; }
  55%       { transform: translate(0, 80px); opacity: 0.4; }
  60%, 100% { transform: translate(0, 0); opacity: 1; }
}
.mini-mockup--days .mini-task--rolling {
  animation: task-roll-down 6s var(--ease-reveal) infinite;
}

/* B.1.11.0: Pillar 2 — Two-Boards-Send-Mockup */
.mini-mockup--send {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  width: min(360px, 100%);
  position: relative;
}
.mini-board {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-board__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-bubble {
  font-size: 0.6875rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.mini-task--inbox {
  color: var(--gold);
  position: relative;
  border-radius: 4px;
}
@keyframes bubble-send {
  0%, 10%   { transform: translate(-150%, -50%) scale(0.5); opacity: 0; }
  20%, 30%  { transform: translate(-150%, -50%) scale(1); opacity: 1; }
  60%, 70%  { transform: translate(50%, -50%) scale(1); opacity: 1; }
  85%       { transform: translate(50%, -50%) scale(0.5); opacity: 0; }
  100%      { transform: translate(-150%, -50%) scale(0.5); opacity: 0; }
}
@keyframes inbox-pulse {
  0%, 60%   { box-shadow: none; }
  70%, 80%  { box-shadow: 0 0 0 4px rgba(222,167,38,0.3); }
  100%      { box-shadow: none; }
}
.mini-mockup--send .mini-bubble  { animation: bubble-send 8s var(--ease-ui) infinite; }
.mini-mockup--send .mini-task--inbox { animation: inbox-pulse 8s var(--ease-ui) infinite; }

/* B.1.11.0: Pillar 3 — Phone+Desktop-Sync-Mockup */
.mini-mockup--devices {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(360px, 100%);
}
.mini-device {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}
.mini-device--desktop {
  width: 200px;
  border-radius: 8px;
}
.mini-device--desktop .mini-device__bar {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: rgba(0,0,0,0.4);
}
.mini-device--desktop .mini-device__bar span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.6;
}
.mini-device--phone {
  width: 90px;
  height: 160px;
  border-radius: 14px;
  position: relative;
}
.mini-device--phone .mini-device__notch {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 4px;
  background: #000;
  border-radius: 2px;
  z-index: 2;
}
.mini-device--phone .mini-device__screen { padding-top: 14px; }

.mini-device__screen {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mini-device__day {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.mini-mockup--devices .mini-task { font-size: 0.6875rem; padding: 2px 0; }

@keyframes device-sync-pulse {
  0%, 80%, 100% { box-shadow: 0 0 0 0 rgba(222,167,38,0); }
  85%, 92%      { box-shadow: 0 0 0 3px rgba(222,167,38,0.4); }
}
.mini-mockup--devices .mini-device {
  animation: device-sync-pulse 5s var(--ease-ui) infinite;
}

/* B.1.11.0: Big-Mockup-Sektion */
.big-mockup-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-mockup-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100%);
  height: 600px;
  background: radial-gradient(ellipse, rgba(222,167,38,0.10) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 8s var(--ease-ui) infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.85; }
}
.big-mockup-section__inner {
  position: relative;
  z-index: 1;
}
.big-mockup-section h2 {
  text-align: center;
  margin-bottom: 64px;
}
.big-mockup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-mockup);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  text-align: left;
  will-change: transform;
}
.big-mockup__bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.big-mockup__body { padding: 32px 40px; }
.big-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}
.big-mockup__day {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}
.big-mockup__icons { display: flex; gap: 16px; }
.big-mockup__icon {
  font-size: 1.125rem;
  color: var(--text-muted);
  position: relative;
  cursor: default;
}
.big-mockup__notif {
  position: absolute;
  top: -2px; right: -2px;
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
}
.big-mockup__cat {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0 8px;
}
.big-mockup__cat:first-of-type { margin-top: 0; }
.big-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}
.big-task__check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--text-dim);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-task__check--done {
  background: var(--success);
  border-color: var(--success);
  position: relative;
}
.big-task__check--done::after {
  content: '✓';
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.big-task__title { flex: 1; color: var(--text); }
.big-task__title--done {
  color: var(--text-muted);
  text-decoration: line-through;
}
.big-task__indicator {
  color: var(--text-dim);
  font-size: 0.875rem;
}
.big-task--dragging {
  transform: rotate(0.6deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 2px 4px rgba(0,0,0,0.2);
  border-color: var(--gold);
}
.big-mockup__caption {
  display: block;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
}
.big-mockup__caption:hover { color: var(--gold-light); }

/* B.1.11.0: Scroll-Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-reveal), transform 600ms var(--ease-reveal);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* B.1.11.0: FAQ kompakter, ans Page-Ende */
.faq-section .container { max-width: 760px; }
.faq__title {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-muted);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .faq__title { font-size: 1.75rem; }
}

/* B.1.11.0: Sign-up Refinement */
.signup__sub {
  font-size: 1.0625rem;
  margin: 0 0 48px;
}
.signup__card {
  max-width: 480px;
  background: var(--bg-elevate);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow:
    inset 0 0 0 1px rgba(222,167,38,0.15),
    var(--shadow-card);
  background-image: linear-gradient(135deg,
    rgba(222,167,38,0.04) 0%,
    transparent 60%);
}
.signup__card .field { margin-bottom: 24px; }
.signup__card .field--check {
  margin: 8px 0 24px;
  padding: 16px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 0.9375rem;
}
.signup__card .field__input {
  height: 52px;
  padding: 0 18px;
  font-size: 1rem;
}
.signup__card .field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(222,167,38,0.18);
}
.signup__card .btn--primary {
  height: 56px;
  font-size: 1rem;
  font-weight: 700;
}
.signup__hint { margin-top: 32px; }

/* B.1.11.0: Maskottchen-Blink (nur Header-Logo) */
@keyframes brand-blink {
  0%, 95%, 100% { opacity: 1; }
  97%, 98%      { opacity: 0; }
}
.site-header .brand__logo .brand__eye {
  animation: brand-blink 7s var(--ease-ui) infinite;
}
.site-footer .brand__logo .brand__eye {
  animation: none;
}

/* B.1.11.0: Reduced-Motion-Override für alle Animationen */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Reveal-Defaults sofort sichtbar */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Maskottchen-Augen sichtbar lassen */
  .brand__eye { opacity: 1 !important; animation: none !important; }
}

.signup__form-hint {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0.5rem 0 0 0;
  text-align: center;
}

/* =========================================================================
   B.1.42.0 — Landing Refresh: Feature-Grid, KI-Section, Android-Section,
              Phone-Mockup, Hover-Lifts, Glow-Layer
   ========================================================================= */

/* ---------- Hero-Polish: subtle glow layer ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,167,38,0.10) 0%, rgba(222,167,38,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  bottom: -250px; left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,181,246,0.06) 0%, rgba(100,181,246,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

/* ---------- Hero stat-row (Trust-signals als Badges) ---------- */
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
}
.hero__stat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(222,167,38,0.08);
  border: 1px solid rgba(222,167,38,0.25);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__stat svg { width: 14px; height: 14px; color: var(--gold); }

/* ---------- Warum-Sektion (Laien-Nutzen, reuse .features*) ---------- */
.why {
  padding: var(--section-pad-y) 0;
  background: var(--bg);
}

/* ---------- Feature-Grid (7 Karten) ---------- */
.features {
  padding: var(--section-pad-y) 0;
  background: var(--bg-deep);
}
.features__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
}
.features__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.15;
}
.features__head p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}
/* Flex statt auto-fit-Grid: ungerade Kartenzahl (7) → letzte Reihe
   zentriert statt links-bündig mit Leerslots (kein „schief/krumm") */
.features__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.feature-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-ui), border-color .25s var(--ease-ui), box-shadow .25s var(--ease-ui);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(222,167,38,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(222,167,38,0.1);
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(222,167,38,0.18), rgba(222,167,38,0.05));
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--text);
}
.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.feature-card--accent {
  background: linear-gradient(140deg, rgba(222,167,38,0.10) 0%, var(--bg) 60%);
  border-color: rgba(222,167,38,0.35);
}
.feature-card__badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold);
  color: #2d2d2d;
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* ---------- KI-Import-Highlight (dedicated Section) ---------- */
.ki-highlight {
  padding: var(--section-pad-y) 0;
  background:
    radial-gradient(ellipse at top right, rgba(100,181,246,0.10) 0%, rgba(100,181,246,0) 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.ki-highlight__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .ki-highlight__inner { grid-template-columns: 1fr; gap: 40px; }
}
.ki-highlight__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.ki-highlight__copy h2 .gold { color: var(--gold); }
.ki-highlight__copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.ki-highlight__bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ki-highlight__bullets li {
  display: flex; gap: 12px;
  color: var(--text);
  font-size: 0.97rem;
}
.ki-highlight__bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
.ki-highlight__note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.ki-highlight__note a { color: var(--gold-light); }

.ki-mockup {
  background: linear-gradient(160deg, var(--bg-elevate) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-mockup);
  position: relative;
  overflow: hidden;
}
.ki-mockup::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.6;
}
.ki-mockup__step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.ki-mockup__step:last-child { border-bottom: none; padding-bottom: 0; }
.ki-mockup__step:first-child { padding-top: 0; }
.ki-mockup__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(222,167,38,0.15);
  border: 1px solid rgba(222,167,38,0.4);
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.ki-mockup__step--active .ki-mockup__num {
  background: var(--gold);
  color: #2d2d2d;
  box-shadow: 0 0 0 4px rgba(222,167,38,0.15);
}
.ki-mockup__step strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 4px; }
.ki-mockup__step span { color: var(--text-muted); font-size: 0.9rem; }
.ki-mockup__chip {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 4px 10px;
  background: rgba(222,167,38,0.12);
  border: 1px solid rgba(222,167,38,0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.ki-mockup__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  margin-right: 6px;
  animation: ki-pulse 1.8s ease-in-out infinite;
}
@keyframes ki-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(100,181,246,0.6); opacity: 1; }
  50%      { box-shadow: 0 0 0 8px rgba(100,181,246,0); opacity: 0.6; }
}

/* ---------- Android-App-Section ---------- */
.android-section {
  padding: var(--section-pad-y) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.android-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  bottom: -300px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,167,38,0.06) 0%, rgba(222,167,38,0) 60%);
  pointer-events: none;
}
.android-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  .android-section__inner { grid-template-columns: 1fr; gap: 40px; }
}
.android-section__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 16px;
  line-height: 1.15;
}
.android-section__copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 12px;
}
.android-section__list {
  list-style: none; padding: 0; margin: 16px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.android-section__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.97rem;
  color: var(--text);
}
.android-section__list li svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Phone-Mockup ---------- */
.phone-mockup {
  width: 260px;
  margin: 0 auto;
  position: relative;
  border-radius: 38px;
  background: linear-gradient(160deg, #3a3a3a 0%, #1a1a1a 100%);
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 2px rgba(0,0,0,0.5);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-mockup__screen {
  background: var(--bg-deep);
  border-radius: 26px;
  height: 480px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.phone-mockup__statusbar {
  height: 32px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 18px;
  font-size: 0.7rem;
  color: var(--text);
  font-weight: 600;
}
.phone-mockup__statusbar-icons {
  display: flex; gap: 4px;
  font-size: 0.75rem;
}
.phone-mockup__header {
  padding: 20px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.phone-mockup__title {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}
.phone-mockup__date {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 4px 0 0;
}
.phone-mockup__list {
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.phone-mockup__task {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text);
}
.phone-mockup__task--active {
  border-color: rgba(124, 179, 66, 0.6);
  background: rgba(124, 179, 66, 0.08);
  color: var(--success);
}
.phone-mockup__task--done span:last-child {
  text-decoration: line-through;
  opacity: 0.5;
}
.phone-mockup__check {
  width: 14px; height: 14px;
  border: 1.5px solid var(--text-muted);
  border-radius: 4px;
  flex-shrink: 0;
}
.phone-mockup__task--active .phone-mockup__check {
  border-color: var(--success);
  background: var(--success);
  position: relative;
}
.phone-mockup__task--active .phone-mockup__check::after {
  content: '';
  position: absolute;
  left: 2px; top: 0;
  width: 4px; height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
}

/* Floating Widget-Demo neben dem Phone */
.android-widget-float {
  position: absolute;
  bottom: -20px; right: -10px;
  width: 180px;
  background: var(--bg);
  border: 1px solid rgba(222,167,38,0.4);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 3;
  transform: rotate(-3deg);
}
.android-widget-float::before {
  content: 'HOME-SCREEN-WIDGET';
  position: absolute;
  top: -10px; left: 12px;
  background: var(--gold);
  color: #2d2d2d;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.android-widget-float__title {
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  margin: 0 0 6px;
}
.android-widget-float__item {
  font-size: 0.7rem; color: var(--text-muted); padding: 2px 0;
}

.phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  padding: 20px 0;
}

/* ---------- Play-Store Badge (custom) ---------- */
.play-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #000;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 10px 18px 10px 14px;
  text-decoration: none;
  transition: border-color .2s var(--ease-ui), transform .2s var(--ease-ui);
}
.play-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.play-badge svg { width: 28px; height: 28px; }
.play-badge__text { display: flex; flex-direction: column; line-height: 1.1; }
.play-badge__line1 { font-size: 0.7rem; color: #aaa; }
.play-badge__line2 { font-size: 1.1rem; color: #fff; font-weight: 600; }
.play-badge--soon { opacity: 0.6; pointer-events: none; }
.play-badge--soon::after {
  content: ' (in Kürze)';
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-left: 4px;
}

/* ---------- Polish kleine Klassen ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- Real-Screenshots-Grid (ersetzt das alte big-mockup) ---------- */
.screenshots {
  padding: var(--section-pad-y) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.screenshots::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,167,38,0.06) 0%, rgba(222,167,38,0) 60%);
  pointer-events: none;
}
.screenshots__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.screenshots h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 12px;
  line-height: 1.15;
}
.screenshots__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto 56px;
  max-width: 600px;
}
.screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 1100px) {
  .screenshots__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
  .screenshots__grid { grid-template-columns: 1fr; gap: 32px; max-width: 320px; margin: 0 auto; }
}
.screenshot-card {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .3s var(--ease-ui);
}
.screenshot-card:hover { transform: translateY(-6px); }
.screenshot-frame {
  width: 100%;
  max-width: 260px;
  padding: 10px;
  background: linear-gradient(160deg, #3a3a3a 0%, #1a1a1a 100%);
  border-radius: 28px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 2px rgba(0,0,0,0.5);
  position: relative;
}
.screenshot-frame::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #000;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: var(--bg-deep);
}
.screenshot-card__label {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.screenshot-card__label strong {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
}
.screenshot-card__label span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Screenshots: Mobile/Desktop Toggle ---------- */
.screenshots__toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
  gap: 4px;
}
.screenshots__toggle-wrap {
  display: flex; justify-content: center;
}
.screenshots__toggle button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease-ui), color .2s var(--ease-ui);
  display: inline-flex; align-items: center; gap: 8px;
}
.screenshots__toggle button svg {
  width: 16px; height: 16px;
}
.screenshots__toggle button.is-active {
  background: var(--gold);
  color: #2d2d2d;
}
.screenshots__toggle button:not(.is-active):hover {
  color: var(--text);
}

/* ---------- Desktop-Screenshots-Grid (2x2) ---------- */
.screenshots__grid--desktop {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .screenshots__grid--desktop { grid-template-columns: 1fr; max-width: 540px; }
}

.desktop-frame {
  width: 100%;
  background: linear-gradient(160deg, #3a3a3a 0%, #1a1a1a 100%);
  border-radius: 14px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.desktop-frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #2a2a2a, #232323);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}
.desktop-frame__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.desktop-frame__dot--red    { background: #FF5F57; }
.desktop-frame__dot--yellow { background: #FEBC2E; }
.desktop-frame__dot--green  { background: #28C840; }
.desktop-frame img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--bg-deep);
}

/* Variante in Mobile-Modus: Phone-Grid bleibt 4-spaltig auf Desktop */
.screenshots__grid[data-view="mobile"]  { display: grid; }
.screenshots__grid[data-view="desktop"] { display: none; }
.screenshots[data-view="desktop"] .screenshots__grid[data-view="mobile"]  { display: none; }
.screenshots[data-view="desktop"] .screenshots__grid[data-view="desktop"] { display: grid; }

/* ============================================================
   Marketing-Refresh (B.1.171.0): Hero mit Produkt-Visual,
   „Wo ist der Haken?"-Reassurance, CTA-Anker in der Seitenmitte.
   Rein additiv — keine bestehende Regel angefasst.
   ============================================================ */

/* ---- Hero mit Produkt-Mockup (zweispaltig ab Desktop) ---- */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  /* Mobil: Mockup unter den Pitch, etwas kleiner → CTA bleibt oben sichtbar */
  .hero__visual { margin-top: 36px; }
  .hero__visual .phone-mockup { width: 228px; }
}
@media (min-width: 768px) {
  .hero__inner--split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 56px;
  }
  .hero__inner--split .hero__pitch {
    align-items: flex-start;
    flex: 1 1 auto;
    max-width: 560px;
  }
  .hero__inner--split .section-eyebrow.hero__eyebrow { align-items: flex-start; }
  .hero__inner--split .hero__subhead { margin-left: 0; margin-right: 0; }
  .hero__inner--split .hero__points { justify-content: flex-start; }
  .hero__inner--split .hero__cta { justify-content: flex-start; }
  .hero__inner--split .hero__visual { flex: 0 0 auto; width: auto; }
}

/* ---- „Wo ist der Haken?"-Reassurance-Streifen ---- */
.reassure {
  padding: 24px 0;
  background: rgba(222, 167, 38, 0.05);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.reassure__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
.reassure__icon {
  width: 34px; height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}
.reassure__copy { max-width: 720px; }
.reassure__lead {
  margin: 0 0 3px;
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}
.reassure__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.reassure__text a { color: var(--gold-light); white-space: nowrap; font-weight: 600; }
@media (max-width: 767px) {
  .reassure__inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ---- CTA-Anker in der Seitenmitte ---- */
.cta-strip { padding: 56px 0; }
.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-strip__text {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
  max-width: 600px;
}
