/* ============================================================
   Home-Page specific sections
   ============================================================ */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: clamp(120px, 18vh, 200px) 0 clamp(60px, 10vh, 120px);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 900px; height: 900px;
  left: 50%; top: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,255,0.10) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 32px; }
.hero h1 { margin-bottom: 28px; max-width: none; line-height: 1.04; overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
.hero h1 em { font-style: normal; color: var(--accent); position: relative; display: block; margin-top: 0.06em; }
.hero h1 .h-line { display: block; white-space: nowrap; }
/* Auf Mobil: nowrap aufheben — sonst sprengen lange Composita die Zeile */
@media (max-width: 720px) {
  .hero h1 .h-line { white-space: normal; }
}
.hero__sub { margin-bottom: 48px; max-width: 56ch; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.55; }
.hero__form-wrap { display: flex; flex-direction: column; gap: 0; max-width: 520px; }

/* Hero CTA row — primary + secondary link */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__cta-row .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 16px 28px;
  border-radius: 100px;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(0, 230, 200, 0);
}
.hero__cta-row .btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -12px rgba(0, 230, 200, 0.5);
}
.hero__cta-row .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}
.hero__cta-row .btn-secondary span {
  display: inline-block;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.hero__cta-row .btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.4);
}
.hero__cta-row .btn-secondary:hover span {
  transform: translateX(4px);
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  left: var(--gutter); bottom: 40px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-ind__line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}
.scroll-ind__line::after {
  content: '';
  position: absolute;
  left: 0; top: -56px;
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--accent-glow) 100%);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { top: -56px; }
  60%, 100% { top: 56px; }
}
@media (max-width: 720px) { .scroll-ind { display: none; } }

/* Hero floating data card */
.hero__data {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(40px, 8vh, 80px);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 3;
  text-align: right;
  line-height: 1.8;
}
.hero__data-row { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.hero__data-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (max-width: 980px) { .hero__data { display: none; } }

/* ===== Section: Manifest (Warm Grey) ===== */
.manifest {
  background: var(--bg-warm);
  color: var(--text-on-light);
  padding: var(--section-pad) 0;
}
.manifest h2 { color: var(--text-on-light); }
.manifest__head { margin-bottom: 96px; max-width: 24ch; }
.manifest__head h2 { font-size: clamp(40px, 5vw, 64px); }
.manifest__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
@media (max-width: 880px) { .manifest__pillars { grid-template-columns: 1fr; gap: 64px; } }

.pillar {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid rgba(10,22,40,0.12);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-on-light-2);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}
.pillar__num strong { color: var(--bg-deep); font-weight: 500; }
.pillar h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text-on-light);
  margin-bottom: 18px;
}
.pillar h3 em { font-style: normal; color: var(--accent-dim); }
.pillar p { color: var(--text-on-light-2); font-size: 16px; line-height: 1.65; max-width: 38ch; }
.pillar__indicator {
  position: absolute;
  top: -1px; left: 0;
  width: 48px; height: 1px;
  background: var(--accent);
  transition: width 800ms cubic-bezier(.2,.7,.2,1);
}
.pillar.in .pillar__indicator { width: 100%; }

/* ===== Section: Method Loop ===== */
.method {
  padding: var(--section-pad) 0;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 60%),
    var(--bg-primary);
}
.method__head { text-align: center; margin-bottom: 96px; }
.method__head h2 { margin-bottom: 24px; max-width: 20ch; margin-inline: auto; }
.method__head .subline { margin-inline: auto; }

.method__diagram {
  max-width: 1120px; margin: 0 auto;
  position: relative;
}
.method__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) {
  .method__steps { grid-template-columns: 1fr; gap: 24px; }
}

.method-step {
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px 36px;
  position: relative;
  transition: border-color 400ms, transform 400ms;
}
.method-step:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-2px); }
.method-step__id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.method-step__id-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.method-step h3 {
  font-size: 24px; letter-spacing: -0.01em; margin-bottom: 14px;
}
.method-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.method-step__connector {
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 1px;
  background: rgba(0,212,255,0.4);
  z-index: 1;
}
.method-step:last-child .method-step__connector { display: none; }
@media (max-width: 880px) { .method-step__connector { display: none; } }

.method__loop-line {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.method__loop-line svg { color: var(--accent); }
.method__cta { text-align: center; margin-top: 64px; }

.method__outcome {
  margin: 20px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--text-muted, rgba(255,255,255,0.55));
}
.method__outcome strong {
  color: var(--text-secondary, rgba(255,255,255,0.78));
  font-weight: 600;
}
@media (max-width: 600px) {
  .method__outcome { padding: 0 8px; }
}

/* ===== Section: Live Lab ===== */
.lab {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  position: relative;
}
.lab__head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 80px; flex-wrap: wrap; }
.lab__head-left { flex: 1; min-width: 320px; }
.lab__head h2 { margin-bottom: 24px; max-width: 18ch; }
.lab__status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  white-space: nowrap;
}
.lab__status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s ease-in-out infinite; }

.lab__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .lab__kpis { grid-template-columns: repeat(2, 1fr); } }

.kpi {
  background: var(--bg-deep);
  padding: 36px 28px 32px;
  position: relative;
}
.kpi__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.kpi__value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 72px);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
.kpi__value.muted { color: var(--text-muted); }
.kpi__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kpi__sub .accent { color: var(--accent); }

/* Active test card */
.test-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.test-card__head { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.test-id-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 100px;
}
.test-card__status {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-secondary);
  display: inline-flex; align-items: center; gap: 8px;
}
.test-card__status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.test-card__hypo { font-size: clamp(22px, 2vw, 28px); line-height: 1.3; max-width: 50ch; margin-bottom: 32px; letter-spacing: -0.01em; }
.test-card__hypo em { font-style: normal; color: var(--accent); }

.test-card__progress {
  margin-bottom: 28px;
}
.test-card__progress-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 10px;
}
.test-card__progress-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.test-card__progress-fill { height: 100%; background: var(--accent); width: 0; transition: width 1.4s cubic-bezier(.2,.7,.2,1); border-radius: 2px; }

.test-card__variants { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.variant {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 18px 20px;
}
.variant__label { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
.variant__value { font-family: var(--font-mono); font-size: 28px; font-weight: 500; color: var(--text-primary); letter-spacing: -0.02em; }

.lab__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; flex-wrap: wrap; gap: 16px; }
.lab__last-update { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; }

/* ===== Section: Why DACH ===== */
.dach { padding: var(--section-pad) 0; background: var(--bg-primary); }
.dach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .dach__grid { grid-template-columns: 1fr; gap: 48px; } }
.dach__left h2 { margin-bottom: 40px; max-width: 12ch; }
.dach__list { list-style: none; }
.dach__list li {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 24px;
  font-size: 17px; line-height: 1.45;
  color: var(--text-primary);
  align-items: baseline;
}
.dach__list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.dach__list li strong { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.18em; min-width: 32px; font-weight: 500; }

.quote-block {
  position: sticky; top: 120px;
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 32px;
}
.quote-block p { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; color: var(--text-primary); letter-spacing: -0.015em; font-weight: 400; max-width: 24ch; }
.quote-block__attr { margin-top: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); letter-spacing: 0.16em; text-transform: uppercase; }

/* ===== Section: Faceless ===== */
.faceless {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.faceless__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.faceless__inner { position: relative; z-index: 2; }
.faceless__head { margin-bottom: 80px; }
.faceless__head h2 { max-width: 14ch; }

.faceless__statements { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 80px; }
@media (max-width: 880px) { .faceless__statements { grid-template-columns: 1fr; gap: 48px; } }

.statement {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.statement__label { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; }
.statement p { font-size: clamp(20px, 1.7vw, 24px); line-height: 1.4; letter-spacing: -0.01em; max-width: 32ch; color: var(--text-primary); font-weight: 400; }
.statement p em { font-style: normal; color: var(--accent); }

.faceless__visual {
  margin-top: 96px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  background: rgba(0,0,0,0.2);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
.faceless__visual::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 50%, transparent 100%);
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { transform: translateX(0); opacity: 0; }
  50% { opacity: 1; }
}
.code-line { display: block; }
.code-line .c-comment { color: var(--text-muted); }
.code-line .c-key { color: var(--accent); }
.code-line .c-string { color: #f0eee8; }
.code-line .c-num { color: var(--accent-glow); }

.faceless__cta { margin-top: 48px; }

/* ===== Section: Lead-magnet (cyan) ===== */
.cyan-section {
  padding: var(--section-pad) 0;
  background: var(--accent);
  isolation: isolate;
  color: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
/* Grid-Pattern auf Cyan-Section bewusst entfernt — solides Cyan, kein Visual-Bleed */
.cyan-section__inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; text-align: center; }
.cyan-section .eyebrow { color: var(--bg-deep); }
.cyan-section .eyebrow::before { background: var(--bg-deep); }
.cyan-section h2 { color: var(--bg-deep); margin: 28px auto 24px; max-width: 18ch; }
.cyan-section__sub { color: rgba(10,22,40,0.7); font-size: clamp(18px, 1.5vw, 22px); margin: 0 auto 56px; max-width: 50ch; }

.value-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(10,22,40,0.15);
  border: 1px solid rgba(10,22,40,0.15);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 56px;
  text-align: left;
}
@media (max-width: 720px) { .value-stack { grid-template-columns: 1fr; } }
.value-item { background: var(--accent); padding: 24px 28px; }
.value-item__num { font-family: var(--font-mono); font-size: 11px; color: var(--bg-deep); letter-spacing: 0.18em; margin-bottom: 10px; opacity: 0.6; }
.value-item__title { font-size: 17px; font-weight: 600; color: var(--bg-deep); margin-bottom: 6px; letter-spacing: -0.01em; }
.value-item__sub { font-size: 14px; color: rgba(10,22,40,0.7); line-height: 1.45; }

.cyan-section__form { max-width: 520px; margin: 0 auto; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-deep);
  padding: 96px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand-tag {
  font-size: 14px; color: var(--text-secondary);
  margin-top: 18px; max-width: 28ch;
  line-height: 1.5;
}
.footer__col h4 {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { font-size: 14px; color: var(--text-primary); opacity: 0.8; transition: color 200ms, opacity 200ms; }
.footer__col a:hover { color: var(--accent); opacity: 1; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase;
  flex-wrap: wrap;
}

/* ===== Sub-page hero (smaller) ===== */
.subhero {
  padding: clamp(140px, 22vh, 220px) 0 clamp(60px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}
.subhero h1 { font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.03em; line-height: 1; margin: 28px 0 24px; max-width: 18ch; }
.subhero .subline { max-width: 56ch; }

/* ===== /methode page ===== */
.modules { padding: clamp(60px, 10vh, 120px) 0 var(--section-pad); }
.modules__layout { display: grid; grid-template-columns: 240px 1fr; gap: 80px; }
@media (max-width: 980px) { .modules__layout { grid-template-columns: 1fr; gap: 32px; } }

.module-nav {
  position: sticky; top: 96px; align-self: start;
  display: flex; flex-direction: column; gap: 4px;
}
.module-nav__title { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.module-nav a {
  font-size: 14px; color: var(--text-secondary);
  padding: 10px 14px;
  border-left: 1px solid rgba(255,255,255,0.08);
  transition: color 200ms, border-color 200ms;
  display: flex; gap: 14px; align-items: baseline;
}
.module-nav a span { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.module-nav a:hover, .module-nav a.active {
  color: var(--text-primary); border-left-color: var(--accent);
}
.module-nav a.active span { color: var(--accent); }

.module {
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.module:first-child { border-top: 0; padding-top: 0; }
.module__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.18em; margin-bottom: 16px; }
.module h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 24px; letter-spacing: -0.025em; }
.module__sub { color: var(--text-secondary); margin-bottom: 48px; max-width: 56ch; }
.module__stat { display: flex; align-items: baseline; gap: 18px; margin-bottom: 40px; }
.module__stat-value { font-family: var(--font-mono); font-size: clamp(64px, 8vw, 110px); font-weight: 500; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.module__stat-unit { font-family: var(--font-mono); font-size: 14px; color: var(--text-secondary); letter-spacing: 0.14em; text-transform: uppercase; }
.module__body { color: var(--text-secondary); font-size: 17px; line-height: 1.65; max-width: 60ch; margin-bottom: 40px; }
.module__body p { margin-bottom: 16px; }
.module__body strong { color: var(--text-primary); font-weight: 500; }
.module__praxis {
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 14px;
  padding: 28px 32px;
  background: rgba(0,212,255,0.03);
}
.module__praxis-label { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.module__praxis p { font-size: 16px; color: var(--text-primary); line-height: 1.5; }

/* Hook matrix table */
.hook-matrix { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.hook-matrix__row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px; padding: 18px 24px; background: var(--bg-primary); align-items: center; font-size: 14px; }
.hook-matrix__row.head { background: var(--bg-card); font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); letter-spacing: 0.16em; text-transform: uppercase; }
.hook-matrix__row .name { font-weight: 500; }
.hook-matrix__row .desc { color: var(--text-secondary); }
.hook-matrix__row .fit { font-family: var(--font-mono); color: var(--accent); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
@media (max-width: 720px) {
  .hook-matrix__row { grid-template-columns: 1fr; gap: 8px; }
  .hook-matrix__row.head { display: none; }
  .hook-matrix__row .desc, .hook-matrix__row .fit { font-size: 13px; }
}

/* ===== /lab page ===== */
.lab-page { padding: clamp(40px, 6vh, 80px) 0 var(--section-pad); background: var(--bg-deep); }
.lab-block { margin-bottom: 80px; }
.lab-block__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.lab-block__head h3 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.015em; }
.lab-block__meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; }

.lab-grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; }
@media (max-width: 880px) { .lab-grid-8 { grid-template-columns: repeat(2, 1fr); } }

.archive-table { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.archive-row { display: grid; grid-template-columns: 90px 2fr 100px 90px 1fr; gap: 24px; padding: 18px 24px; background: var(--bg-primary); align-items: center; font-size: 13px; }
.archive-row.head { background: var(--bg-card); font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 0.18em; text-transform: uppercase; }
.archive-row .test-id-pill { font-size: 10px; padding: 4px 10px; }
.archive-row.empty { color: var(--text-muted); padding: 32px 24px; text-align: center; font-style: italic; grid-template-columns: 1fr; }
.archive-row .result { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.archive-row .result.won { color: var(--accent); }
.archive-row .result.lost { color: var(--fail); }
.archive-row .result.inc { color: var(--text-muted); }
@media (max-width: 880px) {
  .archive-row { grid-template-columns: 1fr; gap: 8px; }
  .archive-row.head { display: none; }
}

.empty-state {
  padding: 64px 32px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}
.empty-state .label { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.empty-state h4 { font-size: 22px; letter-spacing: -0.01em; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); font-size: 14px; max-width: 44ch; margin: 0 auto; }

/* Friday figures chart */
.ff-chart {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px;
  background: rgba(255,255,255,0.02);
}
.ff-chart__svg { width: 100%; height: 220px; display: block; }

/* ===== /ueber page ===== */
.about-section { padding: clamp(60px, 10vh, 120px) 0; }
.about-section--dark { background: var(--bg-deep); }
.about-section h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; letter-spacing: -0.02em; }
.about-block { max-width: 720px; }
.about-block__quote {
  font-size: clamp(20px, 2vw, 26px); line-height: 1.5; color: var(--text-primary);
  border-left: 2px solid var(--accent); padding: 4px 0 4px 32px; margin: 0 0 24px;
  font-weight: 400; letter-spacing: -0.005em;
}
.about-list { list-style: none; display: grid; gap: 0; }
.about-list li {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: baseline; gap: 24px;
  font-size: 17px;
}
.about-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-list li .num { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.16em; min-width: 28px; }

.about-no { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 720px) { .about-no { grid-template-columns: 1fr; } }
.about-no__item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text-secondary);
}
.about-no__item .x { color: var(--fail); font-family: var(--font-mono); font-weight: 500; }

/* ===== /checkliste page ===== */
.cl-page { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; }
.cl-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cl-inner h1 { font-size: clamp(48px, 7vw, 88px); letter-spacing: -0.03em; line-height: 1; margin: 24px 0; }
.cl-inner h1 em { font-style: normal; color: var(--accent); }
.cl-bullets { list-style: none; display: grid; gap: 0; max-width: 480px; margin: 48px auto; text-align: left; }
.cl-bullets li {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; gap: 20px; align-items: baseline;
  font-size: 17px;
}
.cl-bullets li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.cl-bullets li .num { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.16em; min-width: 24px; }
.cl-trust { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 24px; }
.cl-form { max-width: 480px; margin: 0 auto; }

/* ===== 404 page ===== */
.notfound {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px var(--gutter) 80px; text-align: center;
}
.notfound__hypo {
  font-family: var(--font-mono); font-size: clamp(120px, 20vw, 240px);
  font-weight: 500; color: var(--accent); letter-spacing: -0.05em; line-height: 1;
}
.notfound h1 { font-size: clamp(28px, 3vw, 40px); margin: 24px 0 16px; letter-spacing: -0.015em; }
.notfound .test-result { display: inline-flex; flex-direction: column; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 13px; color: var(--text-secondary); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.notfound .test-result .row { display: flex; gap: 12px; }
.notfound .test-result .label { color: var(--text-muted); }
.notfound .test-result .val { color: var(--text-primary); }
.notfound .test-result .val.fail { color: var(--fail); }

/* ===== Mobile spacing refinements ===== */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .hero { padding: 110px 0 64px; min-height: auto; }
  .hero h1 { font-size: clamp(28px, 8vw, 48px); line-height: 1.04; margin-bottom: 20px; }
  .hero__sub { font-size: 17px; margin-bottom: 32px; }
  .hero__eyebrow { margin-bottom: 24px; font-size: 11px; }
  .email-form { flex-direction: column; padding: 6px; border-radius: 14px; }
  .email-form input { padding: 14px 16px; }
  .email-form button { padding: 14px; border-radius: 10px; }
  .hero__cta-row { gap: 20px; flex-direction: column; align-items: flex-start; }
  .hero__cta-row .btn-primary { width: 100%; padding: 16px; }
  .hero__cta-row .btn-secondary { font-size: 14px; }
  .manifest__head { margin-bottom: 56px; }
  .manifest__pillars { gap: 40px; }
  .pillar h3 { font-size: 24px; }
  .method__head { margin-bottom: 56px; }
  .method__steps { gap: 16px; }
  .method-step { padding: 24px 22px 28px; }
  .method__cta { margin-top: 40px; }
  .lab__head { margin-bottom: 48px; }
  .lab__head h2 { font-size: 36px; }
  .test-card { padding: 24px; }
  .test-card__variants { grid-template-columns: 1fr; gap: 10px; }
  .dach__list li { padding: 16px 0; gap: 16px; font-size: 15px; }
  .quote-block { position: static; padding: 4px 0 4px 20px; }
  .faceless__head { margin-bottom: 48px; }
  .faceless__visual { padding: 24px; font-size: 12px; margin-top: 56px; }
  .cyan-section { padding: 80px 0; }
  .cyan-section h2 { font-size: 36px; }
  .value-stack { margin-bottom: 40px; }
  .value-item { padding: 20px 22px; }
  .footer { padding: 64px 0 24px; }
  .footer__grid { margin-bottom: 48px; gap: 32px; }
  .footer__bottom { font-size: 10px; gap: 12px; }
  .subhero { padding: 110px 0 48px; }
  .subhero h1 { font-size: 44px; }
  .modules__layout { gap: 24px; }
  .module { padding: 40px 0; }
  .module h2 { font-size: 32px; }
  .module__sub { margin-bottom: 32px; }
  .module__stat-value { font-size: 64px; }
  .module-nav { position: static; flex-direction: row; overflow-x: auto; gap: 0; padding-bottom: 8px; margin-bottom: 16px; }
  .module-nav__title { display: none; }
  .module-nav a { padding: 8px 12px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,0.08); white-space: nowrap; font-size: 13px; }
  .module-nav a.active { border-bottom-color: var(--accent); }
  .lab-block { margin-bottom: 56px; }
  .kpi { padding: 24px 20px; }
  .kpi__value { font-size: 44px; }
  .archive-row { padding: 16px 18px; }
  .ff-chart { padding: 20px; }
  .cl-page { padding: 100px 0 64px; }
  .cl-inner h1 { font-size: 44px; }
  .cl-bullets { margin: 32px auto; }
  .cl-bullets li { font-size: 15px; }
  .sticky-cta { padding: 8px; }
}
@media (max-width: 480px) {
  .nav { padding: 14px 18px; }
  .nav__logo-large { font-size: 15px; }
  .nav__logo-small { font-size: 8px; }
  .hero h1 { font-size: clamp(26px, 8vw, 42px); }
  .h-section { font-size: 32px !important; }
  .pillar h3 { font-size: 22px; }
  .test-card__hypo { font-size: 18px; }
  .statement p { font-size: 18px; }
  .module h2 { font-size: 28px; }
  .module__stat-value { font-size: 56px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
/* Toast (form success) */
.toast {
  position: fixed; left: 50%; top: 24px;
  transform: translate(-50%, -120%);
  background: var(--bg-deep);
  border: 1px solid rgba(0,212,255,0.4);
  padding: 14px 22px;
  border-radius: 100px;
  z-index: 200;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.toast.show { transform: translate(-50%, 0); }
.toast .check {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}


/* ==========================================================
   PAIN-REFRAME · Section 2
   3 Pains + Übergangs-Bridge nach unten
   ========================================================== */
.pain {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  position: relative;
}
.pain__head {
  text-align: left;
  max-width: 760px;
  margin-bottom: 72px;
}
.pain__head .h-section {
  margin-inline: 0;
  max-width: 22ch;
}
.pain__head .h-section em {
  font-style: normal;
  color: var(--accent);
}

.pain__bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .pain__bullets { grid-template-columns: 1fr; gap: 28px; }
  .pain__head { margin-bottom: 48px; }
}

.pain__item {
  padding: 32px 28px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  transition: border-color 400ms, transform 400ms;
}
.pain__item:hover {
  border-color: rgba(0, 212, 255, 0.30);
  transform: translateY(-2px);
}
.pain__num {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.pain__h {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-primary);
  line-height: 1.25;
}
.pain__p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.pain__bridge {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
}
.pain__bridge em {
  font-style: italic;
  color: var(--text-primary);
}
.pain__bridge-arrow {
  font-size: 20px;
  color: var(--accent);
  opacity: 0.7;
  animation: painArrow 2.4s ease-in-out infinite;
}
@keyframes painArrow {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(6px); opacity: 1.0; }
}

/* ==========================================================
   METHOD · 3 Prinzipien — kompakte Reihe im Methode-Head
   ========================================================== */
.method__principles {
  list-style: none;
  margin: 0 0 64px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.method__principle {
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.method__principle:first-child {
  border-left: 0;
  padding-left: 0;
}
.method__principle:last-child {
  padding-right: 0;
}
.method__principle-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.method__principle p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 880px) {
  .method__principles {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 48px;
  }
  .method__principle {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
  }
  .method__principle:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
  }
}

/* ==========================================================
   HERO H1 · h-line--small modifier (3rd line, smaller)
   ========================================================== */
.h-hero .h-line--small {
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin-top: 16px;
  display: block;
}
@media (max-width: 720px) {
  .h-hero .h-line--small { font-size: 0.65em; margin-top: 12px; }
}


/* ==========================================================
   HOOK-MATRIX — Table-Semantics + grid-layout (Sprint 5 §8.1)
   ========================================================== */
table.hook-matrix {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.hook-matrix__caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 0 14px;
}
.hook-matrix thead,
.hook-matrix tbody { display: contents; }
.hook-matrix tr.hook-matrix__row { /* keeps existing grid cols */ }
.hook-matrix th,
.hook-matrix td {
  text-align: left;
  font-weight: inherit;
  padding: 0;
  border: 0;
  background: transparent;
}
.hook-matrix th[scope="col"] {
  font-weight: 600;
}

/* ==========================================================
   TEST-CARD inline cross-link → #m2
   ========================================================== */
.test-card__link {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  padding-bottom: 1px;
  transition: border-color 200ms, opacity 200ms;
  white-space: nowrap;
}
.test-card__link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.85;
}

/* ==========================================================
   AUTHORITY-BLOCK · vor Lab (Sprint 3 §6.3)
   Quote-Block-Style mit Cyan-Border
   ========================================================== */
.authority {
  padding: 80px 0;
  background: var(--bg-deep);
  position: relative;
}
.authority__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  border-left: 2px solid var(--accent);
}
.authority__h {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--text-primary);
  margin: 0 0 24px;
  max-width: 32ch;
}
.authority__h em {
  font-style: normal;
  color: var(--accent);
}
@media (max-width: 720px) {
  .authority { padding: 60px 0; }
  .authority__inner { padding-left: 22px; }
}


/* ==========================================================
   FACELESS · Reduced Layout (Sprint 3.2)
   1 Statement + 3 Inline-Tags (statt 4 Karten)
   ========================================================== */
.faceless__head {
  max-width: 880px;
  margin-bottom: 64px;
}
.faceless__statement {
  max-width: 22ch;
  margin: 0 0 36px;
  line-height: 1.2;
}
.faceless__statement em {
  font-style: normal;
  color: var(--accent);
}
.faceless__tags {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.faceless__tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 200ms, background 200ms;
}
.faceless__tag:hover {
  border-color: rgba(0, 212, 255, 0.30);
  background: rgba(0, 212, 255, 0.04);
}
.faceless__tag-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}
@media (max-width: 720px) {
  .faceless__head { margin-bottom: 48px; }
  .faceless__statement { font-size: clamp(28px, 7vw, 36px) !important; }
}


/* ==========================================================
   FAQ · AEO-zitierbar (Sprint 4)
   ========================================================== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-deep);
  position: relative;
}
.faq__inner { max-width: 920px; }
.faq__head { margin-bottom: 64px; }
.faq__head h2 { max-width: 22ch; }
.faq__head h2 em { font-style: normal; color: var(--accent); }

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item details {
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  align-items: baseline;
  gap: 20px;
  padding: 28px 8px 28px 0;
  transition: background 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(0, 212, 255, 0.02); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-item__num {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}
.faq-item__q {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.faq-item__q em { font-style: normal; color: var(--accent); }
.faq-item__icon {
  position: relative;
  width: 16px; height: 16px;
  margin-top: 8px;
  justify-self: end;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__icon::before {
  top: 7px; left: 0; right: 0; height: 2px;
}
.faq-item__icon::after {
  top: 0; bottom: 0; left: 7px; width: 2px;
}
.faq-item details[open] .faq-item__icon::after {
  transform: scaleY(0);
}
.faq-item details[open] summary {
  padding-bottom: 12px;
}
.faq-item__a {
  padding: 0 8px 32px 76px;
  max-width: 64ch;
}
.faq-item__a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.faq-item__a em {
  font-style: normal;
  color: var(--accent);
}
.faq-item__a strong {
  color: var(--text-primary);
  font-weight: 600;
}
@media (max-width: 720px) {
  .faq-item summary {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
    padding: 22px 4px 22px 0;
  }
  .faq-item__num { font-size: 11px; }
  .faq-item__q { font-size: 17px; }
  .faq-item__a { padding: 0 4px 24px 52px; }
  .faq-item__a p { font-size: 15px; }
}

/* ==========================================================
   WEEKLY UPDATE · Inline Newsletter (Sprint 4)
   ========================================================== */
.weekly {
  margin-top: 80px;
  padding: 40px 44px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, rgba(0, 212, 255, 0.01) 100%);
  position: relative;
  overflow: hidden;
}
.weekly::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0.55;
}
.weekly__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.weekly__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 212, 255, 0.30);
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.04);
}
.weekly__pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.weekly__schedule {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.weekly__body { margin-bottom: 28px; max-width: 56ch; }
.weekly__h {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.weekly__h em { font-style: normal; color: var(--accent); font-weight: 500; }
.weekly__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.weekly__form { max-width: 580px; }
.weekly__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: stretch;
}
.weekly__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.weekly__input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 200ms, background 200ms;
  min-width: 0;
}
.weekly__input::placeholder { color: var(--text-muted); }
.weekly__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.04);
}
.weekly__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--bg-deep);
  border: none;
  border-radius: 3px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms, transform 180ms;
  white-space: nowrap;
}
.weekly__submit:hover {
  background: #5DE5FF;
  transform: translateX(2px);
}
.weekly__submit svg { transition: transform 180ms; }
.weekly__submit:hover svg { transform: translateX(2px); }
.weekly__success {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 212, 255, 0.30);
  background: rgba(0, 212, 255, 0.06);
  color: var(--accent);
  font-size: 14px;
  border-radius: 3px;
}
.weekly__legal {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.weekly__legal em { font-style: italic; color: var(--text-secondary); }
.weekly__legal a { color: var(--text-secondary); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.2); }
.weekly__legal a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .weekly { padding: 28px 24px; margin-top: 56px; }
  .weekly__row { grid-template-columns: 1fr; gap: 10px; }
  .weekly__submit { justify-content: center; }
}

/* ==========================================================
   METHODE · 2-COL LAYOUT · Sticky TOC (left) + Module (right)
   Welle B — TOC moved from right-rail to inline left column
   ========================================================== */
.method__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.method__layout-main { min-width: 0; }

@media (max-width: 1023px) {
  .method__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* Hide inline TOC on tablet/mobile — phase-strip takes over */
  .toc--inline { display: none; }
}

/* ==========================================================
   STICKY TOC · Inline left column (Welle B)
   ========================================================== */
.toc--inline {
  position: sticky;
  top: 100px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(20, 22, 30, 0.6);
}
.toc__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.toc__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc__list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: color 180ms;
  border-left: 2px solid transparent;
  padding-left: 8px;
  margin-left: -10px;
}
.toc__list a:hover { color: var(--text-primary); }
.toc__list a.toc--active {
  color: var(--accent);
  border-left-color: var(--accent);
}
.toc__num {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}
.toc__list a.toc--active .toc__num { color: var(--accent); }
.toc__name {
  font-size: 13px;
}
.toc__sep {
  height: 1px;
  margin: 6px 0;
  background: rgba(255,255,255,0.06);
}
@media (max-width: 1023px) {
  /* Inline TOC already hidden via .method__layout breakpoint above */
}


/* ==========================================================
   FOOTER · Pre-Launch Phase Tag (Sprint 1)
   ========================================================== */
.footer__phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 212, 255, 0.30);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.04);
}
.footer__phase-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ==========================================================
   SPRINT 6 · Rubrik-Tag (LAB / INSIGHT / STACK)
   ========================================================== */
.rubrik-tag {
  --rubrik: var(--rubrik-lab);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rubrik) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--rubrik) 24%, transparent);
  color: var(--rubrik);
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.rubrik-tag--lab     { --rubrik: var(--rubrik-lab); }
.rubrik-tag--insight { --rubrik: var(--rubrik-insight); }
.rubrik-tag--stack   { --rubrik: var(--rubrik-stack); }
/* Legacy-Aliase */
.rubrik-tag--lehre { --rubrik: var(--rubrik-insight); }
.rubrik-tag--hack  { --rubrik: var(--rubrik-stack); }

.rubrik-tag__label {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rubrik-tag__num {
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.rubrik-tag__num::before {
  content: "·";
  margin-right: 6px;
  opacity: 0.55;
}
.rubrik-tag--lg {
  height: 32px;
  padding: 0 14px;
  font-size: 13px;
  gap: 10px;
}

/* ==========================================================
   SPRINT 6 · Notes-Filter (Tabs)
   ========================================================== */
.notes-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.notes-filter__btn {
  --rubrik: rgba(255,255,255,0.4);
  appearance: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.notes-filter__btn:hover {
  border-color: rgba(255,255,255,0.18);
  color: var(--text-primary);
}
.notes-filter__btn[data-filter="lab"]     { --rubrik: var(--rubrik-lab); }
.notes-filter__btn[data-filter="insight"] { --rubrik: var(--rubrik-insight); }
.notes-filter__btn[data-filter="stack"]   { --rubrik: var(--rubrik-stack); }

.notes-filter__btn.active {
  background: color-mix(in srgb, var(--rubrik) 16%, transparent);
  border-color: var(--rubrik);
  color: var(--rubrik);
}
.notes-filter__btn[data-filter="all"].active {
  --rubrik: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.32);
  color: var(--text-primary);
}

/* ==========================================================
   SPRINT 6 · Notes-Grid + Note-Card
   ========================================================== */
.notes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.note-card {
  --rubrik: var(--rubrik-lab);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  min-height: 196px;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.note-card[data-rubrik="lab"]     { --rubrik: var(--rubrik-lab); }
.note-card[data-rubrik="insight"] { --rubrik: var(--rubrik-insight); }
.note-card[data-rubrik="stack"]   { --rubrik: var(--rubrik-stack); }

.note-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--rubrik) 50%, transparent);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 8px 24px -12px color-mix(in srgb, var(--rubrik) 60%, transparent);
}
.note-card .rubrik-tag { align-self: flex-start; }
.note-card__h {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.32;
  color: var(--text-primary);
  margin: 0;
}
.note-card__sub {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.note-card__link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rubrik);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: gap 160ms ease;
}
.note-card__link::after {
  content: " →";
  margin-left: 4px;
  transition: margin-left 160ms ease;
}
.note-card:hover .note-card__link::after { margin-left: 8px; }

.note-card.is-hidden { display: none; }

.notes-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .notes-grid { grid-template-columns: 1fr; gap: 12px; }
  .note-card { min-height: 0; padding: 20px; }
}

/* ==========================================================
   SPRINT 6 · Notes-Detail-Page
   ========================================================== */
.note-page {
  padding: clamp(80px, 10vh, 140px) 0 clamp(60px, 8vh, 100px);
  background: var(--bg-deep);
}
.note-page__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.note-page__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 28px;
}
.note-page__crumb:hover { color: var(--accent); }
.note-page__head { margin-bottom: 36px; }
.note-page__head .rubrik-tag { margin-bottom: 18px; }
.note-page h1.note-page__h {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.note-page__meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.note-page__body { font-size: 17px; line-height: 1.66; color: var(--text-primary); }
.note-page__body p { margin: 0 0 18px; }
.note-page__body p:last-child { margin-bottom: 0; }
.note-page__body h2 {
  font-size: 26px;
  letter-spacing: -0.012em;
  margin: 40px 0 14px;
}
.note-page__body h3 {
  font-size: 19px;
  letter-spacing: -0.008em;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.note-page__body strong { font-weight: 500; color: var(--text-primary); }
.note-page__body em { color: var(--accent); font-style: normal; }
.note-page__body ul, .note-page__body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-primary);
}
.note-page__body li { margin-bottom: 8px; }
.note-page__body code {
  font-family: var(--font-mono);
  font-size: 13.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-glow);
}
.note-page__body pre {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 18px 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-primary);
  margin: 0 0 24px;
}
.note-page__body pre code {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.note-page__body blockquote {
  border-left: 2px solid var(--accent);
  margin: 0 0 24px;
  padding: 4px 0 4px 22px;
  color: var(--text-secondary);
  font-style: italic;
}
.note-page__related {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.note-page__related h2 {
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.note-page__related .notes-grid { gap: 12px; }

/* ==========================================================
   SPRINT 6 · Notes-Archive-Page
   ========================================================== */
.notes-archive-page {
  padding: clamp(80px, 10vh, 140px) 0 var(--section-pad);
  background: var(--bg-deep);
}
.notes-archive-page__head {
  max-width: 720px;
  margin: 0 0 40px;
}
.notes-archive-page__head h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 18px 0 14px;
}
.notes-archive-page__sub {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.55;
  max-width: 580px;
}
.notes-archive-page .notes-grid { margin-top: 24px; }
.notes-archive-page__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Hero-Effort-Strip (Sprint 8) — Mono-Beweise unter den CTAs */
.hero__effort-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted, var(--text-secondary));
  opacity: 0.85;
}
.hero__effort-strip span[aria-hidden="true"] {
  color: var(--accent);
  opacity: 0.5;
  font-weight: 400;
}
@media (max-width: 480px) {
  .hero__effort-strip { font-size: 10.5px; gap: 10px; margin-top: 24px; }
}


/* ===== Sprint 6.1 · Drei-Rubriken-Erklärsection (auf /) ===== */
.rubriken {
  padding: 120px 0;
  background: var(--bg-deep);
  position: relative;
}
.rubriken__head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.rubriken__head .eyebrow {
  margin-bottom: 24px;
}
.rubriken__h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
  text-wrap: balance;
}
.rubriken__h em {
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 500;
}

.rubriken__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .rubriken__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.rubrik-card {
  --rubrik: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.rubrik-card[data-rubrik="lab"]     { --rubrik: var(--rubrik-lab); }
.rubrik-card[data-rubrik="insight"] { --rubrik: var(--rubrik-insight); }
.rubrik-card[data-rubrik="stack"]   { --rubrik: var(--rubrik-stack); }

.rubrik-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--rubrik) 50%, transparent);
  background: rgba(255,255,255,0.035);
  box-shadow: 0 12px 32px -16px color-mix(in srgb, var(--rubrik) 60%, transparent);
}

.rubrik-card .rubrik-tag {
  align-self: flex-start;
}

.rubrik-card__h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--rubrik);
  margin: 0;
}

.rubrik-card__body {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.rubrik-card__sep {
  margin: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
  border: none;
}

.rubrik-card__freq {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted, #5a6080);
  text-transform: uppercase;
}

.rubrik-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rubrik);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: auto;
}
.rubrik-card__cta:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rubriken__bottom {
  margin: 56px auto 0;
  text-align: center;
}
.rubriken__bottom .link-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
