/* ============================================================================
   Sichtbarkeits-Maschine · Summer-Camp-Design
   Baut auf den :root-Tokens der theme.css auf (Summer-Skin: Creme, Gold,
   Terracotta, warmes Navy · Fraunces + Inter). Nur m-* Klassen + sanfte
   Heading-Overrides für diese Seiten.
   Konzept: "Sommer-Editorial" — großzügige Serif-Typo, warme Flächen,
   Gold als gemeinsamer Faden, Terracotta für alles, was Reibung zeigt.
   ============================================================================ */

/* ---- Typo-Fundament (überschreibt theme-Basics für die Maschine-Seiten) --- */
body { font-size: 17px; line-height: 1.75; }

/* Natives hidden-Attribut hat immer Vorrang (Buttons/Panels togglet maschine.js) */
[hidden] { display: none !important; }

h1, h2, h3 { font-weight: 560; letter-spacing: -0.015em; }
h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.06; }
h2 { font-size: clamp(29px, 4vw, 42px); line-height: 1.12; margin-bottom: 14px; }
h3 { font-size: 23px; font-weight: 560; line-height: 1.25; }

/* ---- Layout ---------------------------------------------------------------- */
.m-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line);
}
.m-header-inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; display: flex; align-items: baseline; gap: 16px; }
.m-wordmark { font-family: var(--font-head); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; color: var(--contrast); }
.m-wordmark::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 5px; border-radius: 50%; background: var(--accent); }
.m-header-title {
  color: var(--text-faint); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding-left: 16px; border-left: 1px solid var(--line-strong);
}

.m-main { min-height: 70vh; }
.m-inner { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.m-inner-narrow { max-width: 640px; }
.m-section { padding: clamp(52px, 8vw, 88px) 0; }
.m-hero + .m-section { padding-top: clamp(20px, 3.5vw, 40px); }

/* Hero mit organischen Glows (Gold + Terracotta, rein dekorativ) */
.m-hero { position: relative; isolation: isolate; overflow: clip; padding: clamp(64px, 10vw, 118px) 0 clamp(16px, 3vw, 30px); }
.m-hero::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 620px; height: 620px; top: -290px; right: -160px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.30), transparent 70%);
}
.m-hero::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 480px; height: 480px; top: 40px; left: -260px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 111, 74, 0.16), transparent 70%);
}
.m-hero .m-inner { position: relative; }
/* Instagram-Glyph in Gold als Hero-Deko (Finn-Feedback 02.07.: statt Kreis) */
.m-hero .m-inner::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: clamp(150px, 22vw, 290px); height: clamp(150px, 22vw, 290px);
  top: -60px; right: -20px; transform: rotate(-8deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(212,175,55,0.45)' stroke-width='1.1' stroke-linecap='round'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5.5'/%3E%3Ccircle cx='12' cy='12' r='4.6'/%3E%3Ccircle cx='17.3' cy='6.7' r='0.9' fill='rgba(212,175,55,0.45)' stroke='none'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
@media (min-width: 900px) {
  .m-hero .m-inner::before { top: -85px; right: 0; }
}
.m-hero h1 { max-width: 17ch; margin-bottom: 22px; }
.m-hero .m-lead { font-size: clamp(17.5px, 2.2vw, 20px); }

.m-footer { margin-top: clamp(40px, 7vw, 72px); background: var(--contrast); color: var(--on-dark-soft); font-size: 14px; padding: 34px 0; border-top: 3px solid var(--accent); }
.m-footer p { margin: 0; }
.m-footer a { color: var(--on-dark); text-decoration-color: rgba(234, 203, 99, 0.5); text-underline-offset: 3px; }
.m-footer a:hover { color: var(--accent-soft); }

.m-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; font-weight: 700;
  color: var(--terra-deep); margin: 0 0 16px;
}
.m-eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.m-eyebrow-gold { color: var(--accent-deep); }
.m-lead { font-size: 18px; line-height: 1.75; color: var(--text-soft); max-width: 60ch; }
.m-marker {
  font-style: italic; font-weight: 600; padding: 0 3px;
  background: linear-gradient(180deg, transparent 60%, var(--marker) 60%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone; border-radius: 2px;
}

/* ---- Karten ------------------------------------------------------------------ */
.m-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: clamp(24px, 3.4vw, 34px);
  box-shadow: var(--shadow-card); margin-top: 24px;
}
.m-card-eyebrow {
  display: flex; align-items: flex-start; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 11.5px; font-weight: 700;
  line-height: 1.5; color: var(--accent-deep); margin: 0 0 12px;
}
.m-card-eyebrow::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: 5.5px; border-radius: 50%; background: var(--accent); }

/* ---- Formulare ----------------------------------------------------------------- */
.m-form .m-label { display: block; font-weight: 600; font-size: 15.5px; line-height: 1.5; margin: 20px 0 8px; color: var(--text); }
.m-form input[type="text"], .m-form input[type="email"], .m-form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-xs);
  font: inherit; font-size: 16px; color: var(--text); background: #FFFEFB;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.m-form input:focus, .m-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}
.m-form textarea { resize: vertical; min-height: 96px; }
.m-form ::placeholder { color: var(--text-faint); }
.m-hint { font-size: 14px; line-height: 1.6; color: var(--text-faint); margin: 8px 0 0; }
.m-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 22px 0 4px; }
.m-consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--cta); flex: none; }
.m-consent a { color: var(--accent-deep); }
.m-form-error {
  color: var(--terra-deep); background: var(--terra-tint); border: 1px solid rgba(201, 111, 74, 0.35);
  border-radius: var(--radius-xs); padding: 12px 16px; font-size: 14.5px; margin-top: 14px;
}

.m-btn {
  display: inline-block; margin-top: 22px; padding: 16px 32px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-deep) 100%);
  color: #FFFCF6; font: 600 16px/1.2 var(--font-body); letter-spacing: 0.01em;
  cursor: pointer; text-decoration: none; text-align: center;
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.24);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease;
}
.m-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(31, 42, 68, 0.32); }
.m-btn:active { transform: scale(0.985); }
.m-btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.m-btn-gold {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
  color: var(--contrast); box-shadow: 0 14px 34px rgba(212, 175, 55, 0.35);
}
.m-btn-gold:hover { box-shadow: 0 18px 42px rgba(212, 175, 55, 0.5); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---- Tabs (Segmented Control) --------------------------------------------------- */
.m-tabs { display: flex; gap: 5px; padding: 5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; }
.m-tab {
  flex: 1; padding: 13px 14px; border: 0; border-radius: 999px; background: transparent;
  font: 600 14.5px var(--font-body); color: var(--text-soft); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.m-tab:hover { color: var(--text); }
.m-tab.is-active { background: var(--surface); color: var(--contrast); box-shadow: var(--shadow-card); }

/* ---- Auswahl-Buttons -------------------------------------------------------------- */
.m-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.m-choices button { padding: 10px 18px; border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--surface); font: 500 14px var(--font-body); color: var(--text-soft); cursor: pointer; }
.m-choices button.is-active { background: var(--contrast); color: var(--on-dark); border-color: var(--contrast); }

/* ---- Spiegel (Säule 1) -------------------------------------------------------------- */
.m-mirror { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 720px) { .m-mirror { grid-template-columns: 1fr; } }
.m-mirror > .m-card { margin-top: 0; }
.m-mirror-left {
  background: radial-gradient(420px 260px at 85% -40px, rgba(212, 175, 55, 0.16), transparent 70%), var(--surface);
  border-color: rgba(212, 175, 55, 0.45);
}
.m-mirror-right { border-top: 3px solid var(--terra); }
.m-mirror-right .m-card-eyebrow { color: var(--terra-deep); }
.m-mirror-right .m-card-eyebrow::before { background: var(--terra); }

.m-strong-quote { font-family: var(--font-head); font-weight: 500; font-style: italic; font-size: clamp(21px, 2.6vw, 26px); line-height: 1.4; letter-spacing: -0.01em; margin: 10px 0 12px; color: var(--contrast); }
blockquote.m-strong-quote { margin-left: 0; margin-right: 0; }
.m-postref { font-size: 12.5px; letter-spacing: 0.04em; color: var(--text-faint); }

.m-slop-mark { padding: 16px 0; border-bottom: 1px dashed var(--line-strong); }
.m-slop-mark:first-of-type { padding-top: 4px; }
.m-slop-mark:last-child { border-bottom: 0; padding-bottom: 0; }
.m-slop-quote {
  margin: 0 0 8px; background: var(--terra-tint); border-left: 3px solid var(--terra);
  border-radius: 4px 10px 10px 4px; padding: 10px 14px; font-size: 15px; line-height: 1.6; color: var(--text);
}
.m-slop-why { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--text-soft); }
.m-tag {
  display: inline-block; background: var(--terra-tint); color: var(--terra-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; margin-right: 6px;
}

.m-score { text-align: left; }
.m-score-bar { height: 12px; border-radius: 999px; background: var(--bg-2); box-shadow: inset 0 1px 3px rgba(93, 62, 24, 0.12); overflow: hidden; margin: 14px 0 10px; }
.m-score-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-soft), var(--accent) 45%, var(--terra)); transition: width 0.9s var(--ease-out); }
.m-score-num { font: 500 clamp(34px, 4vw, 44px)/1.1 var(--font-head); letter-spacing: -0.02em; color: var(--contrast); margin: 0 0 10px; }
.m-score p:last-child { margin-bottom: 0; color: var(--text-soft); }

/* ---- Soll-Ist-Vergleich (Säule 1) ---------------------------------------------------- */
.m-vergleich { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 24px 0 4px; }
@media (max-width: 860px) { .m-vergleich { grid-template-columns: 1fr; } }
.m-v-card { margin-top: 0; }
.m-v-card p { font-size: 15px; line-height: 1.7; color: var(--text-soft); }
.m-v-card p:last-child { margin-bottom: 0; }
.m-v-traegt { border-top: 3px solid var(--accent); }
.m-v-luecke {
  background: radial-gradient(340px 220px at 80% -30px, rgba(201, 111, 74, 0.14), transparent 70%), var(--surface);
  border-top: 3px solid var(--terra);
}
.m-v-luecke .m-card-eyebrow { color: var(--terra-deep); }
.m-v-luecke .m-card-eyebrow::before { background: var(--terra); }
.m-v-hebel { border-top: 3px solid var(--contrast); background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 130%), var(--surface); }
.m-v-hebel .m-card-eyebrow { color: var(--contrast); }
.m-v-hebel .m-card-eyebrow::before { background: var(--contrast); }
.m-v-hebel p { color: var(--text); }

/* ---- Willkommen + 4-Fragen-Sequenz ---------------------------------------------------- */
.m-welcome {
  text-align: left;
  background: radial-gradient(560px 300px at 90% -60px, rgba(212, 175, 55, 0.18), transparent 70%), var(--surface);
  border-color: rgba(212, 175, 55, 0.4);
}
.m-welcome p:last-child { margin-bottom: 0; color: var(--text-soft); }

.m-frage-step { display: none; padding: 10px 0 24px; border-bottom: 1px dashed var(--line-strong); }
.m-frage-step.is-open { display: block; }
.m-frage-step.is-done { border-bottom-style: solid; border-bottom-color: rgba(212, 175, 55, 0.4); }
.m-frage-step.is-done textarea { background: var(--accent-tint); border-color: rgba(212, 175, 55, 0.5); }
.m-frage-nr { text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 700; color: var(--accent-deep); margin: 12px 0 0; }
.m-frage-step .m-label { font-family: var(--font-head); font-weight: 560; font-size: 19px; letter-spacing: -0.01em; margin-top: 10px; }
.m-frage-ok { padding: 11px 26px; margin-top: 14px; font-size: 14.5px; }
.m-btn-final { display: block; width: 100%; }

/* ---- Content-Rad ------------------------------------------------------------------------ */
.m-rad-quadrant { padding: 14px 0 26px; border-bottom: 1px dashed var(--line-strong); }
.m-rad-quadrant:last-of-type { border-bottom: 0; padding-bottom: 4px; }
.m-rad-label { display: flex; align-items: center; gap: 12px; font: 560 21px var(--font-head); letter-spacing: -0.01em; color: var(--contrast); margin: 14px 0 2px; }
.m-rad-nr {
  display: inline-flex; flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent)); color: var(--contrast);
  align-items: center; justify-content: center; font: 700 15px var(--font-body);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4); margin-right: 0;
}
.m-rad-quadrant .m-label { font-weight: 600; margin-top: 12px; }
.m-rad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
@media (max-width: 720px) { .m-rad-grid { grid-template-columns: 1fr; } }
.m-rad-card { margin-top: 0; }
.m-rad-card p { font-size: 15px; color: var(--text-soft); }
.m-rad-card p:last-child { margin-bottom: 0; }

/* ---- Big-Idea-Wahl ------------------------------------------------------------------------ */
.m-posi-option {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px;
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-xs);
  background: #FFFEFB; margin-bottom: 12px; cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.m-posi-option:hover { border-color: var(--accent); }
.m-posi-option:has(input:checked) {
  border-color: var(--accent); background: var(--accent-tint);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.22);
}
.m-posi-option input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--cta); flex: none; }
.m-posi-body { display: block; }
.m-posi-text { display: block; font-family: var(--font-head); font-weight: 560; font-size: 18.5px; line-height: 1.45; letter-spacing: -0.01em; color: var(--contrast); margin-bottom: 6px; }
.m-posi-meta { display: block; font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin-top: 5px; }
.m-posi-meta strong { color: var(--accent-deep); font-weight: 700; }
.m-bigidea-final {
  background: radial-gradient(480px 260px at 90% -40px, rgba(212, 175, 55, 0.2), transparent 70%), var(--surface);
  border-color: rgba(212, 175, 55, 0.5); border-left: 4px solid var(--accent);
}
.m-bigidea-final .m-strong-quote { margin-bottom: 0; }

/* ---- Voice-DNA (Säule 2, warm-dramatische Navy-Sektion) --------------------------------- */
.m-section-dark {
  position: relative; isolation: isolate; overflow: clip;
  background:
    radial-gradient(820px 460px at 82% -80px, rgba(212, 175, 55, 0.20), transparent 62%),
    radial-gradient(640px 420px at -10% 104%, rgba(201, 111, 74, 0.16), transparent 62%),
    linear-gradient(172deg, var(--contrast) 0%, var(--contrast-2) 100%);
  padding: clamp(56px, 8vw, 96px) 0;
  margin: clamp(28px, 5vw, 48px) clamp(10px, 1.8vw, 26px);
  border-radius: clamp(24px, 4vw, 44px);
  box-shadow: 0 34px 80px rgba(31, 42, 68, 0.22);
}
.m-section-dark::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.12;
  background-image: radial-gradient(rgba(234, 203, 99, 0.8) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(620px 380px at 80% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(620px 380px at 80% 0%, #000, transparent 75%);
}
.m-section-dark h2 { color: var(--on-dark); }
.m-section-dark .m-lead { color: var(--on-dark-soft); }
.m-section-dark .m-eyebrow { color: var(--accent-soft); }
.m-section-dark .m-eyebrow::before { background: var(--accent-soft); }

.m-dna-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.m-dna-grid > .m-dna-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 720px) { .m-dna-grid { grid-template-columns: 1fr; } }
.m-dna-card {
  margin-top: 0; background: rgba(255, 252, 246, 0.055);
  border: 1px solid var(--line-dark); box-shadow: none;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.m-dna-card .m-card-eyebrow { color: var(--accent-soft); }
.m-dna-card .m-card-eyebrow::before { background: var(--accent-soft); }
.m-dna-card p { font-size: 15px; line-height: 1.7; margin: 0 0 10px; color: var(--on-dark); }
.m-dna-card p:last-child { margin-bottom: 0; }
.m-section-dark .m-demo-banner { background: rgba(212, 175, 55, 0.14); border-color: rgba(212, 175, 55, 0.4); color: var(--on-dark); }

/* ---- PDF-Karte ----------------------------------------------------------------------------- */
.m-pdf-card {
  background: radial-gradient(520px 280px at 88% -50px, rgba(212, 175, 55, 0.2), transparent 70%), var(--surface);
  border-color: rgba(212, 175, 55, 0.45); border-left: 4px solid var(--accent);
}
.m-pdf-card p { color: var(--text-soft); }
.m-pdf-hint { font-size: 13.5px; color: var(--text-faint); margin-bottom: 0; }

/* ---- Gate: der gemeinsame Moment (Navy-Block mit Gold-Glow) --------------------------------- */
.m-gate-section { padding: clamp(36px, 6vw, 56px) 0 clamp(64px, 9vw, 96px); }
.m-gate {
  position: relative; isolation: isolate; overflow: clip; text-align: center;
  background:
    radial-gradient(560px 320px at 50% -90px, rgba(212, 175, 55, 0.30), transparent 65%),
    linear-gradient(168deg, var(--contrast) 0%, var(--contrast-2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius); padding: clamp(34px, 6vw, 52px) clamp(22px, 5vw, 48px);
  box-shadow: 0 30px 70px rgba(31, 42, 68, 0.3);
}
.m-gate::before {
  content: ""; display: block; width: 12px; height: 12px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 7px rgba(234, 203, 99, 0.18), 0 0 34px 10px rgba(234, 203, 99, 0.45);
}
.m-gate-label { color: var(--on-dark); font: 560 clamp(22px, 3vw, 27px)/1.3 var(--font-head); letter-spacing: -0.01em; margin: 0 0 22px; }
.m-gate-row { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.m-gate input {
  flex: 1; min-width: 0; padding: 15px 22px; border: 1.5px solid var(--line-dark); border-radius: 999px;
  background: rgba(255, 252, 246, 0.08); color: var(--on-dark); font: inherit; font-size: 16px; text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.m-gate input::placeholder { color: rgba(247, 241, 228, 0.45); }
.m-gate input:focus { outline: none; border-color: var(--accent-soft); box-shadow: 0 0 0 4px rgba(234, 203, 99, 0.2); }
.m-gate .m-btn { margin-top: 0; flex: none; }
.m-gate .m-form-error { background: rgba(201, 111, 74, 0.18); border-color: rgba(226, 155, 119, 0.45); color: var(--terra-soft); max-width: 520px; margin: 16px auto 0; }
@media (max-width: 560px) { .m-gate-row { flex-direction: column; } .m-gate .m-btn { width: 100%; } }

/* ---- Warten / Demo / Teaser ------------------------------------------------------------------- */
.m-waiting { text-align: center; padding: clamp(44px, 6vw, 64px) 26px; }
.m-waiting h3 { margin-bottom: 8px; }
.m-waiting p { max-width: 46ch; margin: 0 auto; color: var(--text-soft); }
.m-spinner {
  width: 40px; height: 40px; margin: 0 auto 20px;
  border: 3px solid var(--accent-tint); border-top-color: var(--accent); border-radius: 50%;
  animation: m-spin 0.9s linear infinite;
}
@keyframes m-spin { to { transform: rotate(360deg); } }
.m-demo-banner {
  background: var(--accent-tint); border: 1px dashed rgba(143, 111, 20, 0.4);
  border-radius: var(--radius-xs); padding: 14px 18px; font-size: 14.5px; line-height: 1.6; margin: 18px 0;
}
.m-teaser { border-style: dashed; border-color: var(--line-strong); background: var(--surface-2); box-shadow: none; }
.m-teaser p:last-child { margin-bottom: 0; color: var(--text-soft); }

/* ---- Reveal (nur Kosmetik, Inhalte sind serverseitig frei) ------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .m-score-fill { transition: none; }
  .m-spinner { animation: none; }
}

/* ---- Mobil-Feinschliff --------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .m-inner { padding: 0 18px; }
  .m-header-title { display: none; }
  .m-btn { width: 100%; }
  .m-frage-ok { width: auto; }
  .m-choices button { flex: 1 1 auto; }
  .m-tab { font-size: 13.5px; padding: 12px 8px; }
}

/* ---- Video-Upload (Säule 3, Finn 02.07.: Upload vor Content-Rad) ------------- */
.m-upload-preview { margin-top: 14px; border-radius: var(--radius-xs); overflow: hidden; background: var(--contrast); }
.m-upload-preview video { display: block; width: 100%; max-height: 340px; object-fit: contain; }
.m-upload-progress { height: 8px; border-radius: 999px; background: var(--bg-2); overflow: hidden; margin-top: 14px; }
.m-upload-bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); transition: width 0.2s ease; }
.m-form input[type="file"] { width: 100%; padding: 12px; border: 1.5px dashed var(--line-strong); border-radius: var(--radius-xs); background: var(--surface-2); font: inherit; }

/* ---- Tag-2-CTA ----------------------------------------------------------------- */
.m-tag2-cta { background: var(--contrast); border: 0; color: var(--on-dark); }
.m-tag2-cta h3 { color: var(--accent-soft); }
.m-tag2-cta p { color: var(--on-dark); opacity: 0.92; }
.m-tag2-cta .m-card-eyebrow { color: var(--accent-soft); }
.m-tag2-cta .m-card-eyebrow::before { background: var(--accent-soft); }

/* ---- Säule 4: Split-Screen + Voice-Kern ------------------------------------------ */
.m-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
@media (max-width: 760px) { .m-split { grid-template-columns: 1fr; } }
.m-split-card { margin-top: 0; }
.m-split-ohne { background: var(--bg-2); border-style: dashed; }
.m-split-ohne .m-split-text { color: var(--text-faint); }
.m-split-mit { border-top: 3px solid var(--accent); box-shadow: 0 18px 44px rgba(212, 175, 55, 0.22); }
.m-split-text { white-space: pre-wrap; font-size: 15.5px; line-height: 1.7; }
.m-voicekern { border-left: 4px solid var(--accent); }
.m-steps { padding-left: 20px; margin: 12px 0 4px; }
.m-steps li { margin-bottom: 8px; }
.m-copy-done { display: inline-block; margin-left: 12px; color: var(--accent-deep); font-weight: 600; font-size: 14.5px; }

/* ---- End-Zusammenfassung ------------------------------------------------------------ */
.m-ende-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .m-ende-grid { grid-template-columns: 1fr; } }
.m-ende-grid .m-card { margin-top: 0; }
.m-chip { display: inline-block; background: var(--accent-tint); color: var(--accent-deep); font-size: 13px; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin: 0 4px 6px 0; }

/* ---- Reel-Ergebnisse (Säule 3) --------------------------------------------------- */
.m-reel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 20px; }
@media (max-width: 860px) { .m-reel-grid { grid-template-columns: 1fr; } }
.m-reel-card { margin-top: 0; }
.m-reel-video { border-radius: var(--radius-xs); overflow: hidden; background: var(--contrast); aspect-ratio: 9 / 16; max-height: 480px; margin: 0 auto; }
.m-reel-video video { width: 100%; height: 100%; object-fit: contain; display: block; }
.m-reel-caption { font-size: 14.5px; line-height: 1.65; color: var(--text-soft); white-space: pre-wrap; margin: 12px 0 0; }
.m-btn-small { padding: 11px 20px; font-size: 14px; margin-top: 12px; margin-right: 8px; }

/* ---- Countdown → Calendly ---------------------------------------------------------- */
.m-countdown-card { text-align: center; border-top: 3px solid var(--accent); }
.m-countdown { display: inline-flex; align-items: center; justify-content: center; width: 96px; height: 96px; border-radius: 50%; border: 3px solid var(--accent); margin: 8px 0; }
.m-countdown span { font-family: var(--font-head); font-size: 40px; font-weight: 600; color: var(--contrast); }
.m-btn-big { font-size: 18px; padding: 20px 38px; }
