/* ============================================================================
   FUNKT. – Verkaufsseite
   Gestaltungsidee: Die Seite ist ein Funkgerät. Koralle = gesendetes Signal,
   Grün = empfangenes Signal. Alles baut auf der Kernthese des Buches auf:
   zwischen Absicht und Wirkung liegt eine Übersetzungsschicht.
   Alle Schriften liegen lokal (kein Google-Fonts-Abruf, DSGVO).
   ========================================================================= */

/* ------------------------------------------------------------- Schriften */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Grund */
  --ink:      #0b1220;
  --ink-2:    #111c31;
  --ink-3:    #1a2740;
  --hair:     #24314c;

  /* Signalfarben – tragen Bedeutung, nicht Dekoration */
  --signal:   #ff5470;   /* gesendet  */
  --signal-l: #ff90a4;
  --received: #35e0a1;   /* empfangen */
  --lost:     #ffab4c;   /* falsch verstanden */

  /* Papier-Abschnitte */
  --paper:    #f5f2ef;
  --paper-2:  #ebe6e1;

  /* Text */
  --hi:       #f4f1ee;
  --lo:       #93a0b8;
  --on-paper: #131a28;
  --on-paper-lo: #59617a;

  --display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --shell: 1120px;
  --r:     18px;
  --r-s:   12px;
}

/* ----------------------------------------------------------------- Basis */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: dark;                    /* Formularelemente/Scrollbars dunkel rendern */
  scroll-behavior: smooth;
  scroll-padding-top: 84px;              /* fester Kopf verdeckt keine Sprungziele */
  scroll-padding-bottom: 96px;           /* feste Kaufleiste ebenso wenig */
  -webkit-tap-highlight-color: rgba(255, 84, 112, .18);
}

body {
  margin: 0;
  touch-action: manipulation;            /* keine 300ms-Verzögerung beim Tippen */
  background: var(--ink);
  color: var(--hi);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--signal-l);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(var(--shell), 100% - 44px); margin-inline: auto; }
.shell-narrow { width: min(760px, 100% - 44px); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--signal); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------- Typografie */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--signal); flex: 0 0 auto;
}
.eyebrow.is-centered { justify-content: center; }
/* Koralle ist auf hellem Grund zu kontrastarm – dort eine dunklere Variante */
.band-paper .eyebrow { color: #c62f4b; }
.band-paper .eyebrow::before { background: #c62f4b; }
.parts .roman { color: #c62f4b; }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 700; margin: 0 0 .5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 7.2vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.035em;
}
h2 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}
h3 { font-size: 1.22rem; line-height: 1.25; letter-spacing: -.01em; }

.lede { font-size: clamp(1.02rem, 1.9vw, 1.2rem); color: var(--lo); max-width: 46ch; }

.mark { color: var(--signal); }
.mark-in { color: var(--received); }

/* Unterstrichener Signal-Schwung unter einem Wort */
.stroke {
  position: relative;
  z-index: 0;              /* eigener Stapelkontext für den Balken darunter */
  white-space: nowrap;
}
.stroke::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: .04em; height: .26em;
  background: var(--signal);
  opacity: .28;
  border-radius: 2px;
  z-index: -1;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  padding: 17px 30px;
  border: 0; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease, background .18s ease;
}
.btn-buy {
  background: var(--signal); color: #26060f;
  box-shadow: 0 10px 30px -10px rgba(255, 84, 112, .8);
}
.btn-buy:hover { background: #ff6f88; transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(255, 84, 112, .95); }
.btn-ghost {
  background: transparent; color: var(--hi);
  box-shadow: inset 0 0 0 1.5px var(--hair);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--lo); transform: translateY(-2px); }
.btn-paper { background: var(--on-paper); color: var(--paper); }
.btn-paper:hover { background: #000; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .55; cursor: progress; transform: none; }
.btn-full { width: 100%; }

.btn-note { font-size: .8rem; color: var(--lo); margin: 12px 0 0; }

/* ----------------------------------------------------------------- Kopf */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 18, 32, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.topbar .shell {
  display: flex; align-items: center; gap: 20px;
  height: 68px;
}
.topbar-logo { display: flex; align-items: center; }
.topbar-logo img { height: 26px; width: auto; }
.topbar-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.topbar-nav a {
  font-size: .9rem; color: var(--lo); text-decoration: none;
  transition: color .15s ease;
}
.topbar-nav a:hover { color: var(--hi); }
.topbar .btn { padding: 11px 22px; font-size: .92rem; }

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; padding: 76px 0 92px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 60px; align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin: 34px 0 0; padding: 0; list-style: none;
  font-size: .86rem; color: var(--lo);
}
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--received); flex: 0 0 auto;
}

/* Signatur: das Buch als Sender, Funkwellen gehen von ihm aus */
.transmitter { position: relative; display: grid; place-items: center; min-height: 460px; }
.transmitter-waves {
  position: absolute; inset: 0; display: grid; place-items: center;
  pointer-events: none;
}
.transmitter-waves span {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--signal);
  opacity: 0;
  animation: emit 4.2s cubic-bezier(.2,.6,.4,1) infinite;
}
.transmitter-waves span:nth-child(1) { width: 260px; height: 260px; animation-delay: 0s; }
.transmitter-waves span:nth-child(2) { width: 260px; height: 260px; animation-delay: 1.4s; }
.transmitter-waves span:nth-child(3) { width: 260px; height: 260px; animation-delay: 2.8s; }

@keyframes emit {
  0%   { transform: scale(.55); opacity: 0; }
  14%  { opacity: .55; }
  100% { transform: scale(2.5); opacity: 0; }
}

.book {
  position: relative; z-index: 2;
  width: min(320px, 74%);
  border-radius: 6px 12px 12px 6px;
  transform: rotate(-4deg);
  box-shadow:
    -6px 0 0 rgba(255, 255, 255, .07),
    0 40px 80px -24px rgba(0, 0, 0, .85),
    0 0 90px -20px rgba(255, 84, 112, .45);
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
}
.book:hover { transform: rotate(-1deg) translateY(-8px) scale(1.02); }

.book-badge {
  position: absolute; z-index: 3; right: -6px; bottom: 22px;
  background: var(--received); color: #05271b;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .04em;
  padding: 10px 16px; border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 26px -10px rgba(53, 224, 161, .9);
}

/* --------------------------------------------------------------- Bänder */
.band { padding: 92px 0; position: relative; }
.band-paper { background: var(--paper); color: var(--on-paper); }
.band-paper h1, .band-paper h2, .band-paper h3 { color: var(--on-paper); }
.band-paper .lede { color: var(--on-paper-lo); }
.band-ink2 { background: var(--ink-2); }

.band-head { max-width: 620px; margin-bottom: 52px; }
.band-head.is-centered { margin-inline: auto; text-align: center; }
.band-head.is-centered .lede { margin-inline: auto; }
.band-head h2 { margin-bottom: 16px; }

/* -------------------------------------------- Signatur: Sender/Empfänger */
.translator { max-width: 900px; margin-inline: auto; }

.switch {
  display: inline-flex; padding: 5px; gap: 4px;
  background: var(--ink); border: 1px solid var(--hair);
  border-radius: 999px; margin-bottom: 34px;
}
.band-paper .switch { background: var(--paper-2); border-color: rgba(0,0,0,.1); }

.switch button {
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  padding: 11px 22px; border: 0; border-radius: 999px;
  background: transparent; color: var(--on-paper-lo); cursor: pointer;
  transition: background .22s ease, color .22s ease;
}
.switch button[aria-selected="true"] { background: var(--on-paper); color: var(--paper); }
.switch button[aria-selected="true"].is-received { background: var(--received); color: #05271b; }
.switch button[aria-selected="true"].is-lost { background: var(--signal); color: #26060f; }

.line {
  display: grid; grid-template-columns: 190px 1fr;
  gap: 26px; align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}
.line:last-child { border-bottom: 1px solid rgba(0, 0, 0, .1); }
.line-who {
  font-family: var(--display); font-weight: 500; font-size: .92rem;
  color: var(--on-paper-lo);
}
.line-say {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.24; letter-spacing: -.02em;
  margin: 0;
  transition: color .3s ease, opacity .3s ease, transform .3s ease;
}
.line-say::before { content: "»"; opacity: .35; }
.line-say::after  { content: "«"; opacity: .35; }

.translator[data-view="meant"]   .line-say { color: #1d6b52; }
.translator[data-view="arrived"] .line-say { color: #c0392f; }

.translator.is-swapping .line-say { opacity: 0; transform: translateY(6px); }

.translator-verdict {
  margin: 36px 0 0; padding: 22px 26px;
  background: var(--on-paper); color: var(--paper);
  border-radius: var(--r);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.35;
  letter-spacing: -.02em;
}
.translator-verdict span { color: var(--signal-l); }

/* ------------------------------------------------- Cluster-Regel / Bars */
.clusters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cluster {
  background: var(--ink-2); border: 1px solid var(--hair);
  border-radius: var(--r); padding: 28px 26px;
}
.cluster-count {
  font-family: var(--display); font-weight: 700;
  font-size: 3.4rem; line-height: 1; letter-spacing: -.05em;
  margin-bottom: 6px;
}
.cluster-label {
  font-family: var(--display); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--lo);
  margin-bottom: 22px;
}
.bars { display: flex; gap: 6px; margin-bottom: 20px; height: 34px; align-items: flex-end; }
.bars i {
  flex: 1; border-radius: 3px; background: var(--ink-3);
  height: 100%;
  transform: scaleY(.4);
  transform-origin: bottom;
  transition: transform .5s cubic-bezier(.2,.8,.3,1), background .5s ease;
}
.bars i:nth-child(1) { transition-delay: 0ms; }
.bars i:nth-child(2) { transition-delay: 90ms; }
.bars i:nth-child(3) { transition-delay: 180ms; }
.is-in .bars i.on { background: var(--received); }
.is-in .bars i:nth-child(1).on { transform: scaleY(.55); }
.is-in .bars i:nth-child(2).on { transform: scaleY(.72); }
.is-in .bars i:nth-child(3).on { transform: scaleY(1); }
.cluster p { margin: 0; color: var(--lo); font-size: .95rem; }
.cluster-1 .cluster-count { color: var(--lo); }
.cluster-2 .cluster-count { color: var(--lost); }
.cluster-3 .cluster-count { color: var(--received); }

/* ------------------------------------------------------------- Phasen */
.phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.phase {
  padding: 30px 26px 30px 0;
  border-top: 2px solid var(--hair);
  position: relative;
}
.phase::before {
  content: ""; position: absolute; top: -6px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--signal);
}
.phase-n {
  font-family: var(--display); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; color: var(--signal); margin-bottom: 12px;
}
.phase h3 { margin-bottom: 10px; }
.phase p { margin: 0; color: var(--lo); font-size: .93rem; }
.phase-fail {
  display: block; margin-top: 14px; font-size: .86rem; color: var(--lost);
}

/* --------------------------------------------------------- Buchinhalt */
.contents { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.parts { list-style: none; margin: 0; padding: 0; }
.parts li {
  display: grid; grid-template-columns: 74px 1fr; gap: 18px;
  padding: 20px 0; border-top: 1px solid rgba(0,0,0,.1);
}
.parts li:last-child { border-bottom: 1px solid rgba(0,0,0,.1); }
.parts .roman {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.02em; color: var(--signal);
}
.parts h3 { margin: 0 0 4px; font-size: 1.05rem; }
.parts p { margin: 0; font-size: .92rem; color: var(--on-paper-lo); }

.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.spec {
  background: #fff; border: 1px solid rgba(0,0,0,.09); border-radius: var(--r-s);
  padding: 18px 20px;
}
.spec b {
  display: block; font-family: var(--display); font-size: 1.7rem;
  letter-spacing: -.03em; line-height: 1; margin-bottom: 5px;
}
.spec span { font-size: .84rem; color: var(--on-paper-lo); }

.peek { margin: 0; }
.peek figcaption { font-size: .84rem; color: var(--on-paper-lo); margin-top: 14px; max-width: 46ch; }

/* -------------------------------------------------------------- Player */
.player {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, .6);
}
.player-video { display: block; width: 100%; height: auto; }

.player-btn {
  position: absolute; left: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 13px;
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .06em;
  color: var(--hi);
  background: rgba(11, 18, 32, .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}
.player-btn:hover { background: rgba(11, 18, 32, .92); border-color: var(--signal); }

/* Dreieck = abspielen, zwei Balken = pausieren */
.player-icon {
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--signal);
  margin-left: 2px;
}
.player.is-playing .player-icon {
  width: 10px; height: 12px;
  border: 0; margin-left: 0;
  background: linear-gradient(to right,
    var(--signal) 0 3px, transparent 3px 7px, var(--signal) 7px 10px);
}

/* ------------------------------------------------------------- Gratis */
.freebie {
  background: linear-gradient(135deg, #1a2740 0%, #101a2e 60%);
  border: 1px solid var(--hair);
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr;
}
.freebie-copy { padding: 52px 48px; }
.freebie-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.freebie-copy .lede { max-width: 38ch; }
.freebie-list { list-style: none; margin: 22px 0 0; padding: 0; }
.freebie-list li {
  position: relative; padding-left: 26px; margin-bottom: 9px;
  font-size: .95rem; color: var(--lo);
}
.freebie-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 2px; background: var(--signal);
}
.freebie-form {
  padding: 52px 48px;
  background: rgba(255, 255, 255, .035);
  border-left: 1px solid var(--hair);
}

.field { margin-bottom: 15px; }
.field label {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lo); margin-bottom: 8px;
}
.field input {
  width: 100%; padding: 15px 16px;
  font-family: var(--body); font-size: 1rem; color: var(--hi);
  background: var(--ink); border: 1.5px solid var(--hair); border-radius: var(--r-s);
  transition: border-color .18s ease;
}
.field input::placeholder { color: #55617a; }
.field input:focus { border-color: var(--signal); outline: none; }
.field input:focus-visible { outline: 3px solid rgba(255, 84, 112, .35); outline-offset: 1px; }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 20px 0; font-size: .78rem; line-height: 1.5; color: var(--lo);
}
.consent input {
  flex: 0 0 auto; width: 20px; height: 20px; margin: 2px 0 0;
  accent-color: var(--signal); cursor: pointer;
}
.consent a { color: var(--hi); }

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

.note {
  margin: 16px 0 0; padding: 13px 15px; border-radius: var(--r-s);
  font-size: .9rem; display: none;
}
.note.ok     { display: block; background: rgba(53, 224, 161, .12); border: 1px solid var(--received); color: #8ff0cd; }
.note.fehler { display: block; background: rgba(255, 84, 112, .12); border: 1px solid var(--signal); color: var(--signal-l); }

/* -------------------------------------------------------------- Angebot */
.offer {
  max-width: 620px; margin-inline: auto;
  background: var(--ink-2); border: 1px solid var(--hair);
  border-radius: 26px; padding: 46px 44px; text-align: center;
  position: relative;
}
.offer::before {
  content: ""; position: absolute; inset: -1px; border-radius: 26px;
  padding: 1px; pointer-events: none;
  background: linear-gradient(160deg, rgba(255,84,112,.7), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin: 6px 0 4px; }
.price b {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.4rem); line-height: 1; letter-spacing: -.05em;
}
.price s { color: var(--lo); font-size: 1.2rem; }
.price-sub { color: var(--lo); font-size: .9rem; margin: 0 0 28px; }

.includes { list-style: none; margin: 0 0 30px; padding: 0; text-align: left; }
.includes li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--hair);
  font-size: .95rem;
}
.includes li:last-child { border-bottom: 0; }
.includes li::before { content: "✓"; color: var(--received); font-weight: 700; flex: 0 0 auto; }

.trust {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center;
  margin: 22px 0 0; font-size: .8rem; color: var(--lo);
}

/* ----------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--hair); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 40px 24px 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 22px;
  font-size: 1.5rem; color: var(--signal); line-height: 1;
  transition: transform .25s ease;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 24px; color: var(--lo); font-size: .96rem; max-width: 62ch; }

/* -------------------------------------------------------- Sticky Leiste */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(11, 18, 32, .93);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair);
  transform: translateY(110%);
  transition: transform .32s cubic-bezier(.2,.8,.3,1);
}
.dock.is-up { transform: translateY(0); }
.dock .shell {
  display: flex; align-items: center; gap: 18px;
  padding: 13px 0 calc(13px + env(safe-area-inset-bottom));
}
.dock-text { font-size: .9rem; color: var(--lo); }
.dock-text b { color: var(--hi); font-family: var(--display); }
.dock .btn { margin-left: auto; padding: 13px 26px; font-size: .95rem; white-space: nowrap; }

/* -------------------------------------------------------------- Textseiten */
.page { padding: 60px 0 90px; }
.page h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.page h2 { font-size: 1.35rem; margin: 44px 0 12px; }
.page h3 { font-size: 1.05rem; margin: 28px 0 8px; }
.page p, .page li { color: #c3ccdd; font-size: .97rem; }
.page a { color: var(--signal-l); }
.page ul { padding-left: 20px; }
.page li { margin-bottom: 7px; }
.page .stand { color: var(--lo); font-size: .88rem; margin-bottom: 34px; }
.page .hint {
  background: var(--ink-2); border-left: 3px solid var(--lost);
  padding: 14px 18px; border-radius: 0 var(--r-s) var(--r-s) 0;
  font-size: .88rem; color: var(--lo);
}

/* ------------------------------------------------------------ Statusseiten */
.status { padding: 100px 0 110px; text-align: center; }
.status .dot {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 26px;
  background: rgba(53, 224, 161, .14); border: 1px solid var(--received);
  font-size: 1.7rem;
}
.status .dot.wait { background: rgba(255, 171, 76, .14); border-color: var(--lost); }
.status .dot.err  { background: rgba(255, 84, 112, .14); border-color: var(--signal); }
.status p { color: var(--lo); max-width: 50ch; margin: 0 auto 18px; }
.status .btn { margin-top: 18px; }

/* ------------------------------------------------------------------ Fuß */
.foot { border-top: 1px solid var(--hair); padding: 54px 0 40px; }
.foot .shell { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.foot img { height: 26px; margin-bottom: 14px; }
.foot p { color: var(--lo); font-size: .86rem; margin: 0; max-width: 40ch; }
.foot nav { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; }
.foot nav a { color: var(--lo); font-size: .88rem; text-decoration: none; }
.foot nav a:hover { color: var(--hi); }

/* --------------------------------------------------------- Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1);
}
.reveal-d1.is-in { transition-delay: .08s; }
.reveal-d2.is-in { transition-delay: .16s; }
.reveal-d3.is-in { transition-delay: .24s; }

/* ------------------------------------------------------------- Responsiv */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .transmitter { min-height: 380px; order: -1; }
  .book { width: min(250px, 62%); }
  .contents { grid-template-columns: 1fr; gap: 40px; }
  .freebie { grid-template-columns: 1fr; }
  .freebie-form { border-left: 0; border-top: 1px solid var(--hair); }
  .phases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .shell, .shell-narrow { width: min(100% - 32px, 100%); }
  .band { padding: 66px 0; }
  .hero { padding: 46px 0 66px; }
  .clusters { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .phase { padding-right: 0; }
  .specs { grid-template-columns: 1fr 1fr; }
  .freebie-copy, .freebie-form { padding: 34px 26px; }
  .offer { padding: 34px 24px; }
  .line { grid-template-columns: 1fr; gap: 8px; }
  .topbar-nav a { display: none; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .topbar .btn, .dock .btn { width: auto; }
  .dock-text { display: none; }
  .dock .btn { margin-left: 0; width: 100%; }
  .foot { padding-bottom: 100px; }   /* Platz für die feste Kaufleiste */
}

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