/* ==========================================================================
   CreaFaber — Teaser One-Pager
   Gestaltung: Werkstatt am Abend. Tiefes Gruenschwarz, das Markenlicht in
   Gruen und Blau als Atmosphaere, weiche runde Flaechen, Slab-Serif fuer
   die Ueberschriften.

   Vollstaendig lokal: keine externen Schriften, kein CDN, keine Tracker.
   Die woff2-Dateien in /fonts/ sind optional. Fehlen sie, greift der
   Fallback-Stack, ohne dass eine externe Anfrage entsteht.
   ========================================================================== */

@font-face { font-family: 'Bitter'; src: url('../fonts/bitter-700.woff2') format('woff2');
             font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bitter'; src: url('../fonts/bitter-800.woff2') format('woff2');
             font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('../fonts/rubik-400.woff2') format('woff2');
             font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('../fonts/rubik-500.woff2') format('woff2');
             font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Rubik'; src: url('../fonts/rubik-600.woff2') format('woff2');
             font-weight: 600; font-style: normal; font-display: swap; }

:root {
  /* Grund: gruenstichiges Dunkel statt neutralem Schwarz */
  --void:    #081310;
  --panel:   #0d1c17;
  --panel-2: #12251e;
  --line:      rgba(163, 216, 194, .14);
  --line-soft: rgba(163, 216, 194, .07);
  --line-hard: rgba(163, 216, 194, .28);

  /* Schrift */
  --ink:   #eefaf4;
  --muted: #a3bcb1;
  --dim:   #86a196;

  /* Marke, unveraendert aus dem Prototyp */
  --green:      #10b981;
  --green-soft: #6ee7c0;
  --blue:       #0ea5e9;
  --grad:  linear-gradient(118deg, #10b981 0%, #0ea5e9 100%);

  --font-display: 'Bitter', 'Rockwell', 'Roboto Slab', Georgia, serif;
  --font-body:    'Rubik', 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1150px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmosphaere: zwei grosse Lichtquellen, fest im Hintergrund */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 38% at 82% -6%, rgba(14,165,233,.14), transparent 70%),
    radial-gradient(52% 44% at 6% 4%, rgba(16,185,129,.16), transparent 70%),
    radial-gradient(40% 34% at 50% 110%, rgba(16,185,129,.08), transparent 70%);
}
body > * { position: relative; z-index: 1; }

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  margin: 0; line-height: 1.14; letter-spacing: -.01em;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
img, svg { max-width: 100%; }
a { color: var(--green-soft); }
a:hover { color: #fff; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green); color: #04120d; padding: .8rem 1.2rem;
  font-weight: 600; text-decoration: none; border-radius: var(--r-sm);
}
.skip:focus { left: .5rem; top: .5rem; color: #04120d; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.4rem; }
.wrap--narrow { max-width: 780px; }
@media (min-width: 768px) { .wrap { padding-inline: 2.2rem; } }

/* ── Knoepfe ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  letter-spacing: .005em; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: var(--r-pill);
  padding: .85rem 1.65rem; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease;
}
.btn--sm { padding: .62rem 1.15rem; font-size: .88rem; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; border-radius: var(--r-sm); }

.btn--brand {
  background-image: var(--grad); color: #04120d;
  box-shadow: 0 10px 26px rgba(16,185,129,.28);
}
.btn--brand:hover { color: #04120d; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(16,185,129,.38); }
.btn--brand:active { transform: none; }

.btn--ghost { color: var(--ink); border-color: var(--line-hard); background: rgba(163,216,194,.05); }
.btn--ghost:hover { color: #fff; border-color: var(--green); background: rgba(16,185,129,.1); }

/* ── Navigation ──────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,19,16,.82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto; padding: 0 1.4rem;
  height: 70px; display: flex; align-items: center; gap: 1.6rem;
}
@media (min-width: 768px) { .nav__inner { padding-inline: 2.2rem; } }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 38px; height: 38px; display: block; flex: none; border-radius: 10px; }
.brand__word {
  font-family: var(--font-display); font-weight: 800; font-size: 1.28rem;
  color: var(--ink); letter-spacing: -.01em;
}

.nav__links { display: none; gap: 1.8rem; }
.nav__links a {
  font-size: .94rem; font-weight: 500; color: var(--muted); text-decoration: none;
  position: relative; padding: .3rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -2px;
  height: 2px; border-radius: 2px; background-image: var(--grad);
  transition: left .22s ease, right .22s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { left: 0; right: 0; }
@media (min-width: 940px) { .nav__links { display: flex; } }

.nav__cta { display: none; }
@media (min-width: 580px) { .nav__cta { display: inline-flex; } }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4rem, 10vw, 8rem) 0 0; }

/* Punktraster statt Linien: weicher, werkstattfern von der Blaupause */
.hero__grid {
  position: absolute; inset: 0; z-index: -3; pointer-events: none;
  background-image: radial-gradient(rgba(163,216,194,.16) 1px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(110% 85% at 50% 0%, #000 20%, transparent 75%);
}
.hero__grid--soft { opacity: .5; }

.hero__glow {
  position: absolute; z-index: -2; pointer-events: none;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: min(1000px, 125%); aspect-ratio: 1.4;
  background:
    radial-gradient(closest-side, rgba(16,185,129,.26), transparent 70%),
    radial-gradient(closest-side, rgba(14,165,233,.22), transparent 70%);
  background-position: 30% 50%, 72% 32%; background-size: 60% 60%, 56% 56%;
  background-repeat: no-repeat; filter: blur(16px);
}

.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__wrap { position: relative; text-align: center; padding-bottom: clamp(3.5rem, 8vw, 6rem); }

.stamp {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .84rem; font-weight: 500; letter-spacing: .04em;
  color: var(--green-soft);
  border: 1px solid rgba(16,185,129,.35); background: rgba(16,185,129,.09);
  border-radius: var(--r-pill); padding: .5rem 1.15rem; margin: 0 0 2rem;
}
.stamp__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 0 rgba(16,185,129,.6);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  70%  { box-shadow: 0 0 0 11px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.hero__title {
  font-size: clamp(2.7rem, 8.4vw, 5.6rem);
  font-weight: 800; letter-spacing: -.02em; margin: 0 auto 1.5rem; max-width: 16ch;
}
.grad { background-image: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero__lead {
  max-width: 44ch; margin: 0 auto 2.4rem;
  font-size: clamp(1.06rem, 2.2vw, 1.24rem); line-height: 1.68; color: var(--muted);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.hero__note { margin: 1.6rem 0 0; font-size: .88rem; color: var(--dim); }

/* Legendenzeile: drei runde Kacheln */
.hero__spec {
  display: grid; gap: .9rem; margin: 3.2rem auto 0; max-width: 880px;
}
@media (min-width: 720px) { .hero__spec { grid-template-columns: repeat(3, 1fr); } }
.hero__spec div {
  background: rgba(163,216,194,.05);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem; text-align: left;
}
.hero__spec dt {
  font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--dim); margin-bottom: .35rem;
}
.hero__spec dd { margin: 0; font-size: .96rem; font-weight: 500; color: var(--ink); }
.hero__spec dd.is-off { color: var(--dim); }

/* Gewerke-Laufband */
.hero__ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(163,216,194,.03); overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 1.8rem; width: max-content;
  padding: 1.05rem 0; animation: slide 50s linear infinite;
}
.ticker__track span {
  font-size: .84rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--dim); white-space: nowrap;
}
.ticker__track i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); opacity: .5; flex: none; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ── Sektionen ───────────────────────────────────────────────────────── */
.sec { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.sec--alt { background: rgba(163,216,194,.025); border-block: 1px solid var(--line-soft); }
.sec--dark { position: relative; isolation: isolate; overflow: hidden; background: var(--panel); }

.label {
  display: flex; align-items: center; gap: .8rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--green-soft); margin: 0 0 1.2rem;
}
.label span { width: 28px; height: 2px; border-radius: 2px; background-image: var(--grad); flex: none; }
.label--light { color: var(--green-soft); }

.sec__title { font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 800; margin: 0 0 1.2rem; max-width: 24ch; }
.sec__title--light { color: var(--ink); }
.sec__lead { max-width: 58ch; color: var(--muted); font-size: 1.07rem; margin: 0 0 3rem; }

/* ── Idee ────────────────────────────────────────────────────────────── */
.cols { display: grid; gap: 2.8rem; margin-top: 2.4rem; }
@media (min-width: 940px) { .cols { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; } }
.col p { color: var(--muted); font-size: 1.05rem; }

.probs { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.probs li {
  display: flex; gap: 1.25rem; padding: 1.35rem 1.5rem;
  background: rgba(163,216,194,.04);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.probs li:hover { border-color: rgba(16,185,129,.45); background: rgba(16,185,129,.06); transform: translateX(4px); }
.probs__n {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: transparent; background-image: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  line-height: 1.5; flex: none;
}
.probs h3 { font-size: 1.08rem; margin: 0 0 .35rem; }
.probs p { font-size: .95rem; color: var(--dim); margin: 0; }

/* ── Funktionen ──────────────────────────────────────────────────────── */
.feats { display: grid; gap: 1.1rem; }
@media (min-width: 640px)  { .feats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .feats { grid-template-columns: repeat(4, 1fr); } }

.feat {
  position: relative; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem 1.8rem;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.feat:hover {
  transform: translateY(-5px); border-color: rgba(16,185,129,.4);
  background: var(--panel-2);
  box-shadow: 0 18px 40px rgba(4, 18, 13, .45);
}

.feat__ico {
  display: grid; place-items: center; width: 50px; height: 50px;
  border-radius: 16px; margin-bottom: 1.25rem;
  background: rgba(16,185,129,.12); color: var(--green-soft);
}
.feat__ico svg { width: 24px; height: 24px; }
.feat h3 { font-size: 1.16rem; margin: 0 0 .55rem; }
.feat p { font-size: .95rem; color: var(--muted); margin: 0; }

.feat--hero {
  background: linear-gradient(160deg, rgba(16,185,129,.16), rgba(14,165,233,.1)), var(--panel-2);
  border-color: rgba(16,185,129,.45);
}
.feat--hero .feat__ico { background-image: var(--grad); color: #04120d; }
.feat__tag {
  margin-top: 1rem !important;
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-soft) !important;
  background: rgba(16,185,129,.14); border-radius: var(--r-pill);
  padding: .3rem .8rem;
}

/* ── Prototyp-Screenshot ─────────────────────────────────────────────── */
.shot { margin: 3rem 0 0; }

.shot__frame {
  border: 1px solid rgba(163,216,194,.14);
  border-radius: var(--r-lg);
  background: rgba(163,216,194,.04);
  padding: .5rem;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
  overflow: hidden;
}
.shot__frame img {
  display: block; width: 100%; height: auto;
  border-radius: calc(var(--r-lg) - .4rem);
}
.shot figcaption {
  margin: 1.1rem 0 0;
  font-size: .9rem; line-height: 1.6; color: var(--dim);
}
@media (min-width: 860px) { .shot { margin-top: 3.4rem; } }

/* ── Warteliste ──────────────────────────────────────────────────────── */
.card {
  position: relative; overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.9rem, 5vw, 3.2rem);
  box-shadow: 0 30px 70px rgba(4, 18, 13, .5);
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background-image: var(--grad);
}
.card__title { font-size: clamp(1.8rem, 4.2vw, 2.5rem); font-weight: 800; margin: 0 0 .9rem; }
.card__lead { color: var(--muted); margin: 0 0 2.2rem; }

.form__row { margin-bottom: 1.25rem; }
.form__grid { display: grid; gap: 1.25rem; }
@media (min-width: 580px) { .form__grid { grid-template-columns: 1fr 210px; } }

.form label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--ink); margin-bottom: .5rem;
}
.req { color: var(--green-soft); }
.opt { font-weight: 400; font-size: .8rem; color: var(--dim); }

.form input[type="email"], .form input[type="text"], .form select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: rgba(8,19,16,.7); border: 1.5px solid var(--line-hard); border-radius: var(--r-sm);
  padding: .9rem 1.05rem; transition: border-color .16s ease, box-shadow .16s ease;
  appearance: none;
}
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23a3bcb1' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.7rem;
}
.form select option { background: var(--panel); color: var(--ink); }
.form input:focus, .form select:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,.16);
}
.form input::placeholder { color: var(--dim); }

/* Honeypot: nicht display:none, damit Bots das Feld ausfuellen */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__check {
  display: flex; gap: .95rem; align-items: flex-start;
  background: rgba(8,19,16,.6); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 1.15rem 1.25rem; margin: 1.6rem 0;
}
.form__check input { flex: none; width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--green); cursor: pointer; }
.form__check label { font-weight: 400; font-size: .92rem; line-height: 1.62; color: var(--muted); margin: 0; cursor: pointer; }
.form__foot { margin: 1.3rem 0 0; font-size: .85rem; color: var(--dim); line-height: 1.65; }

/* Rueckmeldungen aus eintragen.php */
.msg { border: 1px solid; border-radius: var(--r-sm); padding: 1rem 1.2rem; margin: 0 0 1.7rem; font-size: .95rem; line-height: 1.55; }
.msg--err { background: rgba(226,75,74,.09); border-color: rgba(226,75,74,.4); color: #ffb4b3; }
.msg--ok  { background: rgba(16,185,129,.09); border-color: rgba(16,185,129,.4); color: #7ff0cd; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: .9rem; margin-top: 2.4rem; }
.faq details {
  background: rgba(163,216,194,.04);
  border: 1px solid var(--line); border-radius: var(--r-md);
  transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(16,185,129,.4); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 3.2rem 1.25rem 1.5rem; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.07rem;
  color: var(--ink); border-radius: var(--r-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.4rem; top: 50%;
  width: 9px; height: 9px; margin-top: -7px;
  border-right: 2px solid var(--green-soft); border-bottom: 2px solid var(--green-soft);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--green-soft); }
.faq__body { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: .99rem; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); background: var(--panel); color: var(--muted); padding: 3.8rem 0 1.8rem; }
.foot__inner { display: grid; gap: 2.2rem; padding-bottom: 2.6rem; }
@media (min-width: 780px) { .foot__inner { grid-template-columns: 1fr auto; align-items: start; } }
.brand--foot { margin-right: 0; margin-bottom: 1rem; }
.foot__brand p { font-size: .93rem; margin: 0; max-width: 36ch; color: var(--dim); }
.foot__links { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.foot__links a { font-size: .93rem; font-weight: 500; color: var(--muted); text-decoration: none; }
.foot__links a:hover { color: var(--green-soft); }

.foot__base {
  display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.foot__base p { margin: 0; font-size: .83rem; color: var(--dim); }

/* ── Rechtstexte und Statusseiten ───────────────────────────────────── */
.legal { padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem); }
.legal h1 { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800; margin: 0 0 .7rem; }
.legal__meta { font-size: .88rem; color: var(--dim); margin: 0 0 3rem; }
.legal h2 { font-size: 1.28rem; margin: 3rem 0 1rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.04rem; margin: 2rem 0 .6rem; color: var(--green-soft); }
.legal p, .legal li { color: var(--muted); font-size: 1rem; }
.legal ul { padding-left: 1.3rem; margin: 0 0 1.2em; }
.legal li { margin-bottom: .5rem; }
.legal li::marker { color: var(--green-soft); }
.legal address { font-style: normal; line-height: 1.8; color: var(--ink); }
.legal .todo {
  background: rgba(255,176,32,.08); border: 1px solid rgba(255,176,32,.35);
  color: #ffcf7a; border-radius: var(--r-sm);
  padding: 1rem 1.2rem; font-size: .92rem; margin: 0 0 1.6rem;
}
.legal .back { display: inline-block; margin-top: 3.2rem; font-weight: 600; text-decoration: none; }
.legal .back:hover { text-decoration: underline; text-underline-offset: 5px; }

.status { min-height: 64vh; display: grid; place-items: center; padding: 4.5rem 0; }
.status__box { max-width: 640px; text-align: center; }
.status__ico {
  width: 66px; height: 66px; margin: 0 auto 1.7rem; display: grid; place-items: center;
  background-image: var(--grad); color: #04120d; border-radius: 20px;
  box-shadow: 0 12px 30px rgba(16,185,129,.3);
}
.status__ico svg { width: 30px; height: 30px; }
.status__ico--mute {
  background-image: none; background-color: var(--panel-2);
  border: 1px solid var(--line-hard); color: var(--muted); box-shadow: none;
}
.status h1 { font-size: clamp(1.8rem, 4.4vw, 2.5rem); font-weight: 800; margin: 0 0 1rem; }
.status p { color: var(--muted); }

/* ── Bewegung ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); animation: up .8s cubic-bezier(.22,.8,.3,1) forwards; animation-delay: var(--d, 0ms); }
@keyframes up { to { opacity: 1; transform: none; } }

.rise { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.8,.3,1); transition-delay: calc(var(--i, 0) * 70ms); }
.rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .rise { opacity: 1; transform: none; animation: none; transition: none; }
  .btn:hover, .feat:hover, .probs li:hover { transform: none; }
  .stamp__dot { animation: none; }
}

@media print {
  body::before { display: none; }
  .nav, .hero__ticker, .foot__links, .btn { display: none; }
  body { color: #000; background: #fff; }
}
