/* ============================================================
   ClipReverb — Sektionen
   Jedes Element ist gezeichnet: Farbe, Verlauf, Rahmen, SVG.
   Keine einzige Bilddatei.
   ============================================================ */

/* ============================================================
   1 — Kopfbereich
   ============================================================ */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--announce-h) + clamp(48px, 7vw, 92px));
  padding-bottom: clamp(60px, 8vw, 104px);
  overflow: hidden;
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--accent-text); position: relative; }

/* Der Unterstrich unter „Nachhall" ist eine gezeichnete Welle */
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.06em; height: .1em;
  background: radial-gradient(closest-side, rgba(var(--accent-rgb), .38), transparent);
  border-radius: 50%;
}

.hero-sub { font-size: clamp(17.5px, 1.7vw, 20.5px); color: var(--muted); max-width: 52ch; line-height: 1.5; }
.hero-cta { margin-top: 34px; }
.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: var(--faint); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent-text); flex: none; }

/* Bühne für die Nachhall-Zeichnung */
.hero-stage { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-inline: auto; width: 100%; }

/* Weicher Boden: ohne ihn schweben weiße Kacheln unsichtbar auf weißem Grund */
.hero-stage::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 42% at 50% 58%, rgba(20, 20, 24, .07), transparent 72%),
    radial-gradient(ellipse 40% 30% at 50% 46%, rgba(var(--accent-rgb), .07), transparent 70%);
}
:root[data-theme="dark"] .hero-stage::before {
  background:
    radial-gradient(ellipse 62% 42% at 50% 58%, rgba(0, 0, 0, .45), transparent 72%),
    radial-gradient(ellipse 40% 30% at 50% 46%, rgba(var(--accent-rgb), .1), transparent 70%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .hero-stage::before {
    background:
      radial-gradient(ellipse 62% 42% at 50% 58%, rgba(0, 0, 0, .45), transparent 72%),
      radial-gradient(ellipse 40% 30% at 50% 46%, rgba(var(--accent-rgb), .1), transparent 70%);
  }
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Kleine schwebende Karten über der Zeichnung */
.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.hero-chip svg { width: 17px; height: 17px; flex: none; }
.hero-chip small { display: block; font-size: 11.5px; font-weight: 500; color: var(--faint); }
.hero-chip-1 { top: 11%; right: -4%; }
.hero-chip-2 { bottom: 20%; left: -7%; }
.hero-chip-3 { bottom: 4%; right: 8%; }
@media (max-width: 620px) { .hero-chip-1 { right: 0; } .hero-chip-2 { left: 0; } }

/* Schalter, um die Bewegung anzuhalten */
.motion-toggle {
  position: absolute; right: 10px; bottom: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: var(--r-full);
  background: var(--card); border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; color: var(--muted);
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.motion-toggle:hover { color: var(--accent-text); border-color: var(--accent); }

/* ============================================================
   2 — Plattformband
   ============================================================ */

.plat-bar { padding-block: 30px; border-block: 1px solid var(--line); background: var(--surface); }
.plat-lead { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 700; text-align: center; margin-bottom: 22px; }
.plat-row { display: flex; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 64px); flex-wrap: wrap; }

.plat {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--muted); font-weight: 650; font-size: 16px; letter-spacing: -.015em;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.plat svg { width: 26px; height: 26px; flex: none; }
.plat:hover { color: var(--ink); transform: translateY(-2px); }
.plat em { font-style: normal; font-size: 12px; font-weight: 550; color: var(--faint); }

/* ============================================================
   3 — Problem: der Abend, der draufgeht
   ============================================================ */

.problem { background: var(--surface); }

.tab-storm { position: relative; display: grid; gap: 7px; }
.tab-line {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 15px; border-radius: var(--r-xs);
  background: var(--card); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
}
.tab-line b { color: var(--ink); font-weight: 600; }
.tab-line .t-badge { margin-left: auto; font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.tab-line.is-fail { border-color: rgba(179, 38, 30, .3); }
.tab-line.is-fail .t-badge { color: var(--bad); }
/* Die Liste läuft nach unten ins Nichts — es hört nie auf */
.tab-storm::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 120px;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}

.pain-list { display: grid; gap: 18px; }
.pain-item { display: flex; gap: 15px; align-items: flex-start; }
.pain-item .x {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
  background: rgba(179, 38, 30, .1); color: var(--bad);
}
.pain-item .x svg { width: 12px; height: 12px; }
.pain-item b { display: block; color: var(--ink); font-weight: 650; margin-bottom: 3px; font-size: 16.5px; }
.pain-item span { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   4 — Vorher / Nachher
   ============================================================ */

.flip { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3vw, 44px); align-items: stretch; }
@media (max-width: 860px) { .flip { grid-template-columns: 1fr; } .flip-arrow { transform: rotate(90deg); justify-self: center; } }

.flip-col { padding: 30px; border-radius: var(--r-md); border: 1px solid var(--line); }
.flip-col.before { background: var(--surface-2); }
.flip-col.after { background: var(--card); border-color: rgba(var(--accent-rgb), .3); box-shadow: var(--shadow-md); }
.flip-col h4 { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.flip-col.after h4 { color: var(--accent-text); }
.flip-col li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.flip-col li:first-of-type { border-top: 0; }
.flip-col li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.flip-col.before li svg { color: var(--faint); }
.flip-col.after li svg { color: var(--accent); }
.flip-col.after li { color: var(--ink-2); }
.flip-arrow { align-self: center; color: var(--accent); }

/* ============================================================
   5 — Ablauf in drei Schritten
   ============================================================ */

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .step-link { display: none; } }

.step { position: relative; padding: 32px 28px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); }
.step-n {
  display: inline-flex; align-items: baseline; gap: 3px; margin-bottom: 20px;
  font-size: 13px; font-weight: 700; color: var(--accent-text); letter-spacing: .05em;
}
.step-n b { font-size: 30px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.step h3 { margin-bottom: 11px; }
.step p { font-size: 15.5px; color: var(--muted); line-height: 1.55; }
.step-icon { width: 46px; height: 46px; margin-bottom: 22px; color: var(--accent-text); }

/* Gestrichelte Verbindung zwischen den Karten */
.step-link { position: absolute; top: 74px; right: -22px; width: 44px; z-index: 2; color: var(--line-strong); }

/* ============================================================
   6 — Interaktive Demo
   ============================================================ */

.demo-shell {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); overflow: hidden; box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .demo-shell { grid-template-columns: 1fr; } }

.demo-side { padding: 26px; border-right: 1px solid var(--line); background: var(--surface); }
@media (max-width: 900px) { .demo-side { border-right: 0; border-bottom: 1px solid var(--line); } }

.demo-main { padding: 26px; min-width: 0; }

.demo-label { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); font-weight: 700; margin-bottom: 14px; }

/* Vorschau im Hochformat — reiner CSS-Rahmen, kein Video */
.clip-frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--r-sm);
  background: linear-gradient(165deg, #1c1c24, #0d0d12);
  border: 1px solid var(--line-strong); overflow: hidden;
  display: grid; place-items: center;
}
.clip-frame .cf-glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 40% at 50% 38%, rgba(var(--accent-rgb), .28), transparent 70%);
}
.clip-frame .cf-play { position: relative; width: 44px; height: 44px; color: rgba(255,255,255,.9); }
.clip-frame .cf-meta {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  font-size: 11px; color: rgba(255, 255, 255, .62); font-variant-numeric: tabular-nums;
  display: flex; justify-content: space-between;
}
/* Tonspur als gezeichnete Balkenreihe */
.cf-wave { position: absolute; left: 12px; right: 12px; bottom: 34px; display: flex; align-items: flex-end; gap: 2px; height: 22px; }
.cf-wave i { flex: 1; background: rgba(255, 255, 255, .28); border-radius: 1px; transform-origin: 50% 100%; }

.demo-field { width: 100%; padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 14.5px; resize: none; line-height: 1.5; }
.demo-field:focus { outline: none; border-color: var(--accent); background: var(--card); }

.acct-list { display: grid; gap: 9px; margin-top: 4px; }
.acct {
  display: flex; align-items: center; gap: 13px; width: 100%;
  padding: 13px 15px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--card); text-align: left;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease);
}
.acct:hover { border-color: var(--line-strong); transform: translateX(2px); }
.acct.is-on { border-color: rgba(var(--accent-rgb), .45); background: var(--accent-soft); }
:root[data-theme="dark"] .acct.is-on { background: rgba(var(--accent-rgb), .08); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .acct.is-on { background: rgba(var(--accent-rgb), .08); } }

.acct-av { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: var(--muted); }
.acct.is-on .acct-av { background: var(--accent-btn); color: var(--on-accent); }
.acct-av svg { width: 17px; height: 17px; }
.acct-n { min-width: 0; }
.acct-n b { display: block; font-size: 14px; font-weight: 620; color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.acct-n span { display: block; font-size: 12px; color: var(--faint); }
.acct-check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; color: transparent; transition: all .2s var(--ease); }
.acct.is-on .acct-check { background: var(--accent-btn); border-color: var(--accent-btn); color: var(--on-accent); }
.acct-check svg { width: 11px; height: 11px; }

/* Zeitplan-Spalte */
.sched { display: grid; gap: 9px; }
.sched-row {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px;
}
.sched-row .s-ic { flex: none; width: 30px; height: 30px; border-radius: var(--r-xs); display: grid; place-items: center; background: var(--card); border: 1px solid var(--line); color: var(--muted); }
.sched-row .s-ic svg { width: 15px; height: 15px; }
.sched-row b { color: var(--ink); font-weight: 620; }
.sched-row .s-when { margin-left: auto; text-align: right; font-size: 12.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.sched-row .s-state { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 620; }
.s-state.ok { color: var(--ok); }
.s-state.wait { color: var(--warn); }

.demo-empty { padding: 34px 20px; text-align: center; color: var(--faint); font-size: 14.5px; border: 1px dashed var(--line-strong); border-radius: var(--r-sm); }

.demo-foot { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.demo-hint { font-size: 12.5px; color: var(--faint); }

.quota-warn {
  display: flex; gap: 11px; align-items: flex-start; margin-top: 14px;
  padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(154, 97, 20, .08); border: 1px solid rgba(154, 97, 20, .22);
  font-size: 13px; color: var(--warn); line-height: 1.45;
}
.quota-warn svg { width: 16px; height: 16px; flex: none; margin-top: 1px; }

/* ============================================================
   7 — Merkmale
   ============================================================ */

.feat { padding: 30px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); }
.feat-ic { width: 42px; height: 42px; margin-bottom: 20px; color: var(--accent-text); }
.feat h3 { font-size: 19px; margin-bottom: 10px; }
.feat p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* Breite Karte, die zwei Spalten einnimmt */
.feat-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
@media (max-width: 1000px) { .feat-wide { grid-column: span 2; grid-template-columns: 1fr; } }
@media (max-width: 640px) { .feat-wide { grid-column: span 1; } }

/* ============================================================
   8 — Wie viele Accounts?
   ============================================================ */

.scale-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 66px); align-items: center; }
@media (max-width: 900px) { .scale-wrap { grid-template-columns: 1fr; } }

/* Ein Feld aus kleinen Kacheln — jede ist ein Account */
.acct-field {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(21px, 1fr));
  gap: 6px; padding: 26px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
}
.acct-field i {
  aspect-ratio: 1; border-radius: 5px; background: var(--line);
  transition: background-color .4s var(--ease), transform .4s var(--ease);
}
.acct-field i.on { background: var(--accent); }
.acct-field i.half { background: rgba(var(--accent-rgb), .42); }

.scale-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-size: 13px; color: var(--muted); }
.scale-legend span { display: inline-flex; align-items: center; gap: 8px; }
.scale-legend i { width: 11px; height: 11px; border-radius: 3px; flex: none; }

/* ============================================================
   9 — Kontingente
   ============================================================ */

.quota-card { padding: 28px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); }
.quota-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.quota-head svg { width: 24px; height: 24px; flex: none; }
.quota-head b { font-size: 16.5px; font-weight: 680; color: var(--ink); letter-spacing: -.015em; }

.meter { height: 8px; border-radius: var(--r-full); background: var(--surface-2); overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); transform-origin: 0 50%; }
.meter-row { display: flex; justify-content: space-between; margin-top: 11px; font-size: 13px; color: var(--muted); }
.meter-row b { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 620; }

.quota-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   10 — Vergleich
   ============================================================ */

.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-md); border: 1px solid var(--line); }
.cmp { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--card); }
.cmp th, .cmp td { padding: 17px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: middle; }
.cmp thead th { background: var(--surface); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.cmp thead th.is-us { color: var(--accent-text); background: var(--accent-soft); }
:root[data-theme="dark"] .cmp thead th.is-us { background: rgba(var(--accent-rgb), .1); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .cmp thead th.is-us { background: rgba(var(--accent-rgb), .1); } }
.cmp tbody th { font-weight: 620; color: var(--ink); }
.cmp td { color: var(--muted); }
.cmp td.is-us { color: var(--ink); background: rgba(var(--accent-rgb), .035); font-weight: 550; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }
.cmp .mk { display: inline-flex; align-items: center; gap: 9px; }
.cmp .mk svg { width: 16px; height: 16px; flex: none; }
.cmp .mk.y svg { color: var(--ok); }
.cmp .mk.n svg { color: var(--faint); }

/* ============================================================
   11 — Rechner
   ============================================================ */

.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow-md); }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } }

.calc-in { padding: clamp(26px, 3.4vw, 40px); }
.calc-out { padding: clamp(26px, 3.4vw, 40px); background: var(--surface); border-left: 1px solid var(--line); }
@media (max-width: 820px) { .calc-out { border-left: 0; border-top: 1px solid var(--line); } }

.calc-row + .calc-row { margin-top: 28px; }
.calc-row label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.calc-row label b { font-size: 19px; font-weight: 750; color: var(--accent-text); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: var(--r-full); background: var(--surface-2); outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--card);
  box-shadow: 0 2px 10px -2px rgba(var(--accent-rgb), .6);
  cursor: pointer; transition: transform .15s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--card);
  background: var(--accent); cursor: pointer;
}

.calc-result { text-align: center; padding-block: 8px; }
.calc-big { font-size: clamp(46px, 6vw, 74px); font-weight: 800; letter-spacing: -.045em; color: var(--accent-text); line-height: 1; font-variant-numeric: tabular-nums; }
.calc-unit { font-size: 15px; color: var(--muted); margin-top: 10px; }
.calc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.calc-box { padding: 18px; border-radius: var(--r-sm); background: var(--card); border: 1px solid var(--line); text-align: center; }
.calc-box b { display: block; font-size: 22px; font-weight: 750; color: var(--ink); letter-spacing: -.025em; font-variant-numeric: tabular-nums; }
.calc-box span { display: block; margin-top: 5px; font-size: 12.5px; color: var(--faint); }
.calc-foot { margin-top: 24px; font-size: 12.5px; color: var(--faint); line-height: 1.5; text-align: center; }

/* ============================================================
   12 — Stimmen (Platzhalter bis echte Zitate da sind)
   ============================================================ */

.quote { padding: 32px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; }
.quote-mark { width: 30px; height: 24px; color: rgba(var(--accent-rgb), .3); margin-bottom: 18px; }
.quote p { font-size: 16.5px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.quote-by { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-av { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep); font-weight: 700; font-size: 14px; }
:root[data-theme="dark"] .quote-av { background: rgba(var(--accent-rgb), .12); color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .quote-av { background: rgba(var(--accent-rgb), .12); color: var(--accent); } }
.quote-by b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 620; }
.quote-by span { display: block; font-size: 12.5px; color: var(--faint); }

/* ============================================================
   13 — Preise
   ============================================================ */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
@media (max-width: 950px) { .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.price {
  position: relative; padding: 34px 30px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price.is-best { border-color: var(--accent); box-shadow: var(--shadow-accent); }
.price-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: var(--r-full); background: var(--accent-btn); color: var(--on-accent);
  font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
}
.price h3 { font-size: 19px; margin-bottom: 7px; }
.price > p { font-size: 14.5px; color: var(--muted); min-height: 42px; }
.price-amount { margin: 24px 0 6px; display: flex; align-items: baseline; gap: 5px; }
.price-amount b { font-size: 46px; font-weight: 800; letter-spacing: -.045em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.price-amount span { font-size: 15px; color: var(--muted); }
.price-per { font-size: 13px; color: var(--faint); }
.price ul { margin: 26px 0 30px; display: grid; gap: 12px; }
.price li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--muted); line-height: 1.45; }
.price li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--accent-text); }
.price li.off { color: var(--faint); }
.price li.off svg { color: var(--line-strong); }
.price .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ============================================================
   14 — Abschluss-Aufruf
   ============================================================ */

.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(56px, 7vw, 92px) clamp(28px, 5vw, 72px);
  border-radius: var(--r-lg);
  /* Dunkler als der Markenakzent, damit weiße Schrift darauf 5:1 erreicht */
  background: linear-gradient(135deg, #a83a10, var(--accent-btn));
  text-align: center; color: #fff;
}
.cta-band h2, .cta-band p { color: #fff; position: relative; z-index: 2; }
.cta-band p { margin-top: 18px; font-size: clamp(16.5px, 1.6vw, 19px); opacity: .88; max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { position: relative; z-index: 2; justify-content: center; margin-top: 34px; }
/* Feste Farbe statt Token: das Band ist in beiden Modi orange, also
   muss die Schrift auf dem weißen Knopf in beiden dunkel genug sein. */
.cta-band .btn-primary { background: #fff; color: #a83a10; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .35); }
.cta-band .btn-primary:hover { background: #fff; transform: translateY(-2px); }
.cta-band .btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .42); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.cta-band .ring-field i { border-color: rgba(255, 255, 255, .17); }
.cta-fine { margin-top: 24px; font-size: 13px; opacity: .75; position: relative; z-index: 2; }

/* ============================================================
   15 — Unterseiten-Kopf
   ============================================================ */

.page-head {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + var(--announce-h) + clamp(50px, 6vw, 82px));
  padding-bottom: clamp(38px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(36px, 5vw, 62px); max-width: 18ch; }
.page-head p { margin-top: 20px; font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 58ch; }

.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--faint); margin-bottom: 20px; }
.crumbs a:hover { color: var(--accent); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }

/* Fließtext auf Rechtsseiten */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 52px; margin-bottom: 16px; }
.prose h3 { font-size: 18.5px; margin-top: 34px; margin-bottom: 11px; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { font-size: 16px; line-height: 1.65; color: var(--muted); }
.prose p + p { margin-top: 1em; }
.prose ul { margin: 16px 0; display: grid; gap: 9px; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-btn); }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.prose dl { margin: 16px 0; display: grid; gap: 7px; }
.prose dt { font-weight: 650; color: var(--ink); font-size: 15.5px; }
.prose dd { margin: 0 0 12px; font-size: 15.5px; color: var(--muted); }

/* Hinweiskasten für offene Punkte */
.todo-box {
  padding: 20px 24px; border-radius: var(--r-md);
  background: rgba(154, 97, 20, .07); border: 1px solid rgba(154, 97, 20, .25);
  font-size: 14.5px; color: var(--warn); line-height: 1.6;
}
.todo-box b { color: var(--warn); }

/* Inhaltsverzeichnis, das mitscrollt */
.toc { position: sticky; top: calc(var(--header-h) + var(--announce-h) + 30px); }
.toc h4 { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 700; margin-bottom: 14px; }
.toc a { display: block; padding: 7px 0 7px 14px; border-left: 2px solid var(--line); font-size: 14px; color: var(--muted); transition: all .18s var(--ease); }
.toc a:hover, .toc a.is-here { color: var(--accent-text); border-left-color: var(--accent); }

.side-layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .side-layout { grid-template-columns: 1fr; } .toc { position: static; display: none; } }

/* Kontaktkarten */
.contact-card { padding: 28px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); }
.contact-card .c-ic { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 18px; }
:root[data-theme="dark"] .contact-card .c-ic { background: rgba(var(--accent-rgb), .1); color: var(--accent); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .contact-card .c-ic { background: rgba(var(--accent-rgb), .1); color: var(--accent); } }
.contact-card .c-ic svg { width: 19px; height: 19px; }

/* ============================================================
   Kleine Bildschirme — Nachbesserungen
   ============================================================ */

@media (max-width: 620px) {
  /* Der Aufruf in der Kopfzeile fliegt raus: er schob das Menuesymbol
     aus dem Bild. Unten laeuft ohnehin die Leiste mit demselben Knopf. */
  .header-end .btn-primary { display: none; }
  .header-in { gap: 14px; }
  .logo { font-size: 17px; }
  .logo-mark { width: 27px; height: 27px; }

  /* Die schwebenden Karten lagen uebereinander. Nur noch zwei,
     klar getrennt, und der Schalter rutscht unter die Zeichnung. */
  .hero-stage { margin-top: 12px; padding-bottom: 46px; }
  .hero-chip { font-size: 12px; padding: 9px 12px; }
  .hero-chip-1 { top: 2%; right: 0; }
  .hero-chip-2 { bottom: 16%; left: 0; }
  .hero-chip-3 { display: none; }

  .motion-toggle { right: 50%; transform: translateX(50%); bottom: 0; }

  /* Der Kopfbereich braucht oben weniger Luft, der Text ist schon lang */
  .hero { padding-top: calc(var(--header-h) + var(--announce-h) + 26px); }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 7px 14px; }
}

@media (max-width: 420px) {
  /* Ganz schmal: die Zeichnung bekommt mehr Raum als die Karten */
  .hero-chip-2 { bottom: 10%; }
}

/* ============================================================
   Preise — Umschalter Monat/Jahr und Tagespreis
   ============================================================ */

.price-switch {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border-radius: var(--r-full); background: var(--surface-2);
  border: 1px solid var(--line); margin-inline: auto;
}
.price-switch button {
  padding: 9px 20px; border-radius: var(--r-full);
  font-size: 14.5px; font-weight: 620; color: var(--muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.price-switch button.is-on { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.price-switch .save {
  font-size: 11.5px; font-weight: 700; color: var(--accent-text);
  background: var(--accent-soft); padding: 2px 7px; border-radius: var(--r-full); margin-left: 7px;
}
:root[data-theme="dark"] .price-switch .save { background: rgba(var(--accent-rgb), .13); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .price-switch .save { background: rgba(var(--accent-rgb), .13); } }

.price-day { font-size: 13px; color: var(--accent-text); font-weight: 650; margin-bottom: 4px; }
.price-each {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 13px; color: var(--muted);
}
.price-each b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ============================================================
   Monatsplaner — der Kalender, der die Kernidee zeigt
   Reines Raster aus Farbe und Rahmen, kein Bild.
   ============================================================ */

.planner {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); overflow: hidden; box-shadow: var(--shadow-md);
}

.planner-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--surface);
}
.planner-month { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.planner-sum { margin-left: auto; display: flex; gap: 22px; }
.planner-sum > span { font-size: 12.5px; color: var(--faint); }
.planner-sum b { display: block; font-size: 20px; font-weight: 750; color: var(--ink); letter-spacing: -.025em; font-variant-numeric: tabular-nums; }
@media (max-width: 620px) { .planner-sum { margin-left: 0; width: 100%; gap: 18px; } }

/* Rhythmus umschalten */
.planner-rhythm { display: inline-flex; gap: 3px; padding: 3px; border-radius: var(--r-full); background: var(--surface-2); border: 1px solid var(--line); }
.planner-rhythm button {
  padding: 7px 14px; border-radius: var(--r-full); font-size: 13px; font-weight: 620; color: var(--muted);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.planner-rhythm button.is-on { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }

.planner-body { padding: 20px 26px 26px; }

.planner-dows { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; margin-bottom: 9px; }
.planner-dows span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); text-align: center; }

.planner-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }

.planner-day {
  position: relative; min-height: 74px; padding: 8px 9px;
  border: 1px solid var(--line); border-radius: var(--r-xs);
  background: var(--bg);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.planner-day:hover { border-color: rgba(var(--accent-rgb), .35); transform: translateY(-1px); }
.planner-day.is-pad { background: var(--surface); border-color: transparent; }
.planner-day .d { font-size: 11.5px; font-weight: 620; color: var(--faint); font-variant-numeric: tabular-nums; }
.planner-day.is-weekend .d { color: var(--line-strong); }

.planner-posts { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 7px; }
/* Ein Punkt = ein geplanter Beitrag. Drei Tönungen statt drei Fremdfarben,
   damit die Seite eine Farbfamilie behält. */
.planner-posts i {
  width: 100%; height: 5px; border-radius: 2px; flex: 1 1 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .4s var(--ease-out);
}
.planner-posts i.p-tt { background: var(--ink); }
.planner-posts i.p-ig { background: var(--accent); }
.planner-posts i.p-yt { background: rgba(var(--accent-rgb), .42); }
.planner-day.is-in .planner-posts i { transform: scaleX(1); }

.planner-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.planner-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.planner-legend i { width: 14px; height: 5px; border-radius: 2px; flex: none; }

@media (max-width: 720px) {
  .planner-body { padding: 16px 14px 20px; }
  .planner-head { padding: 18px 16px; }
  .planner-day { min-height: 54px; padding: 6px; }
  .planner-grid, .planner-dows { gap: 4px; }
  .planner-day .d { font-size: 10px; }
}


/* ============================================================
   Demo in zwei Sektionen
   Teil 1 zeigt Video und Kanäle, Teil 2 den entstehenden Plan.
   ============================================================ */

/* Acht Kanäle untereinander machen die Sektion unnötig lang */
.acct-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 640px) { .acct-grid { grid-template-columns: minmax(0, 1fr); } }

/* Der Zeitplan steht jetzt allein und darf breiter atmen */
.sched-wide {
  max-width: 860px; margin-inline: auto;
  padding: 26px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.sched-wide .sched-row { padding: 17px 20px; font-size: 15px; }
.sched-wide .sched-row .s-ic { width: 34px; height: 34px; }
.sched-wide .sched-row .s-ic svg { width: 17px; height: 17px; }
.sched-wide .demo-empty { padding: 44px 24px; font-size: 15.5px; }
@media (max-width: 640px) { .sched-wide { padding: 16px; } }
