/* ============================================================
   thesen.css — echte Seitenspezifika für thesen.html
   Globale Typografie, Buttons, Navigation und Footer kommen aus style.css
   
   Verwendete globale Klassen aus style.css (KEIN Override nötig):
   .nav, .nav__inner, .nav__logo, .nav__links, .nav__burger,
   .nav__mobile, .nav__mobile-etsy, .lang-switch, .footer,
   .footer__inner, .footer__logo, .footer__links, .footer__lang,
   .container, .section-padding, .section-label, .section-title,
   .fade-up, .fade-up--delay-*, .btn, .btn--primary, .skip-link,
   .accent-line
   ============================================================ */

/* ============================================================
   1. HERO
   ============================================================ */
.page-thesen .thesen-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: var(--color-bg);
  overflow: hidden;
}
.page-thesen .thesen-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, color-mix(in oklab, var(--color-primary) 7%, transparent), transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, color-mix(in oklab, var(--color-primary) 4%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-thesen .thesen-hero__bg-number {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 40vw, 36rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-surface-dynamic);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  opacity: 0.35;
}
.page-thesen .thesen-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin-inline: auto;
  padding: calc(var(--space-16) + var(--space-16)) var(--space-6) var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.page-thesen .thesen-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: 0;
}
.page-thesen .thesen-hero__eyebrow::before {
  content: "";
  display: block;
  width: var(--space-8);
  height: 2px;
  background: var(--color-primary);
  flex-shrink: 0;
}
.page-thesen .thesen-hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--color-text);
  max-width: 18ch;
}
.page-thesen .thesen-hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}
.page-thesen .thesen-hero__subline {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 54ch;
}

/* ============================================================
   2. STICKY THESEN-NAV
   Klebt direkt unter der Haupt-Nav (position: fixed, ~62px hoch)
   top: 62px hält sie bündig darunter — auch wenn Haupt-Nav scrollt
   ============================================================ */
.page-thesen .thesen-nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  position: sticky;
  top: 0px;
  z-index: 101;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-thesen .thesen-nav::-webkit-scrollbar { display: none; }
.page-thesen .thesen-nav__inner {
  display: flex;
  gap: 0;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.page-thesen .thesen-nav__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-interactive), border-color var(--transition-interactive);
  flex-shrink: 0;
  min-height: 44px;
}
.page-thesen .thesen-nav__item:hover { color: var(--color-text); }
.page-thesen .thesen-nav__item.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.page-thesen .thesen-nav__num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.7;
}

/* ============================================================
   3. THESE-SEKTIONEN — Kapitelstruktur
   ============================================================ */
.page-thesen .these-section {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  position: relative;
}
.page-thesen .these-section--alt {
  background: var(--color-surface);
}
.page-thesen .these-section__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
.page-thesen .these-section__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-16);
  align-items: start;
}
.page-thesen .these-section__meta {
  position: sticky;
  /* Haupt-Nav (62px) + Thesen-Nav (~52px) + Luft (16px) */
  top: calc(62px + 52px + var(--space-4));
}
.page-thesen .these-section__number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--color-surface-dynamic);
  display: block;
  margin-bottom: var(--space-6);
  user-select: none;
}
.page-thesen .these-section--alt .these-section__number {
  color: var(--color-surface-offset-2);
}

.page-thesen .these-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.page-thesen .these-section__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.page-thesen .these-section__prose .body-copy {
  max-width: 66ch;
  margin-bottom: var(--space-5);
}
.page-thesen .these-section__prose .body-copy:last-child { margin-bottom: 0; }

/* ============================================================
   4. KEY-SENTENCE
   ============================================================ */
.page-thesen .these-key {
  position: relative;
  padding: var(--space-8) var(--space-10);
  background: var(--color-surface-offset);
  border-left: 3px solid var(--color-primary);
  margin-block: var(--space-4);
}
.page-thesen .these-section--alt .these-key {
  background: var(--color-surface-offset-2);
}
.page-thesen .these-key__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 52ch;
}

/* ============================================================
   5. MECHANIC-BOX (3-Schritte-Kette)
   ============================================================ */
.page-thesen .these-mechanic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-block: var(--space-4);
}
.page-thesen .these-mechanic__step {
  padding: var(--space-6);
  background: var(--color-surface-offset);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.page-thesen .these-section--alt .these-mechanic__step {
  background: var(--color-bg);
}
.page-thesen .these-mechanic__step::after {
  content: "→";
  position: absolute;
  right: calc(-1 * var(--space-5));
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--color-primary);
  z-index: 1;
  font-weight: 700;
}
.page-thesen .these-mechanic__step:last-child::after { display: none; }
.page-thesen .these-mechanic__num {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.page-thesen .these-mechanic__label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}
.page-thesen .these-mechanic__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   6. FAKTEN-GRID
   ============================================================ */
.page-thesen .these-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-block: var(--space-4);
}
.page-thesen .these-fact {
  padding: var(--space-6);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.page-thesen .these-section--alt .these-fact {
  background: var(--color-bg);
}
.page-thesen .these-fact__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.page-thesen .these-fact__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-primary);
}
.page-thesen .these-fact__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================================
   7. ZUSAMMENFASSUNG
   ============================================================ */
.page-thesen .thesen-summary {
  background: var(--color-bg);
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  border-top: 1px solid var(--color-divider);
}
.page-thesen .thesen-summary__inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.page-thesen .thesen-summary__header {
  margin-bottom: var(--space-16);
}
.page-thesen .thesen-summary__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}
.page-thesen .thesen-summary__item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
  transition: border-color var(--transition-interactive);
}
.page-thesen .thesen-summary__item:first-child {
  border-top: 1px solid var(--color-divider);
}
.page-thesen .thesen-summary__item:hover {
  border-bottom-color: var(--color-primary);
}
.page-thesen .thesen-summary__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.8;
}
.page-thesen .thesen-summary__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ============================================================
   8. BRIDGE / CTA
   ============================================================ */
.page-thesen .thesen-bridge {
  background: #000;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  border-top: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
}
.page-thesen .thesen-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, color-mix(in oklab, var(--color-primary) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.page-thesen .thesen-bridge__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  align-items: center;
}

.page-thesen .thesen-bridge__headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #f0ede8;
  margin-bottom: var(--space-6);
}
.page-thesen .thesen-bridge__body {
  font-size: var(--text-base);
  color: #6a6762;
  line-height: 1.75;
  max-width: 52ch;
}
.page-thesen .thesen-bridge__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  flex-shrink: 0;
}
.page-thesen .thesen-bridge__cta-main {
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
}
.page-thesen .thesen-bridge__cta-main:hover {
  box-shadow: 0 0 40px color-mix(in oklab, var(--color-primary) 35%, transparent);
}
.page-thesen .thesen-bridge__cta-sec {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #4a4742;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition-interactive);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.page-thesen .thesen-bridge__cta-sec:hover { color: #f0ede8; }
.page-thesen .thesen-bridge__cta-sec .arrow {
  transition: transform var(--transition-interactive);
}
.page-thesen .thesen-bridge__cta-sec:hover .arrow { transform: translateX(4px); }

/* ============================================================
   9. RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .page-thesen .these-section__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .page-thesen .these-section__meta {
    position: static;
    display: flex;
    align-items: baseline;
    gap: var(--space-6);
  }

  .page-thesen .these-section__number {
    font-size: clamp(3rem, 12vw, 6rem);
    margin-bottom: 0;
  }

  .page-thesen .thesen-bridge__inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .page-thesen .thesen-bridge__actions {
    width: 100%;
  }

  .page-thesen .thesen-bridge__cta-main {
    width: 100%;
    justify-content: center;
  }

  .page-thesen .these-mechanic {
    grid-template-columns: 1fr;
  }

  .page-thesen .these-mechanic__step::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(-1 * var(--space-5));
    transform: translateX(-50%);
  }

  .page-thesen .these-facts {
    grid-template-columns: 1fr;
  }

  .page-thesen .thesen-nav__item {
    font-size: 0.65rem;
    padding-inline: var(--space-3);
  }
}

@media (max-width: 600px) {
  .page-thesen .thesen-hero__headline {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .page-thesen .thesen-summary__item {
    grid-template-columns: 2.5rem 1fr;
    gap: var(--space-4);
  }

  .page-thesen .thesen-summary__num {
    font-size: var(--text-xl);
  }

  .page-thesen .thesen-summary__text {
    font-size: var(--text-lg);
  }
}
