/* ═══════════════════════════════════════════════════════════════
   AIGENCY — Static Foundation
   Design tokens, typography, utilities, animations, Tally styling.
   ═══════════════════════════════════════════════════════════════ */

/* ─── @font-face: lokal gehostete Fonts ─── */

@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/instrument-serif-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter-tight.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Design-Tokens ─── */

:root {
  /* AIGENCY Design System (HSL-Komponenten, in hsl() einzubetten) */
  --bg: 60 14% 97%;
  --bg-alt: 60 10% 93%;
  --ink: 20 8% 4%;
  --ink-soft: 56 4% 34%;
  --ink-subtle: 53 4% 53%;
  --line: 56 10% 88%;
  --accent: 17 53% 53%;
  --accent-warm: 30 46% 84%;

  /* Shadcn-Mappings (für Konsistenz mit React-Codebase) */
  --background: var(--bg);
  --foreground: var(--ink);
  --card: var(--bg);
  --card-foreground: var(--ink);
  --popover: var(--bg);
  --popover-foreground: var(--ink);
  --primary: var(--ink);
  --primary-foreground: var(--bg);
  --secondary: var(--bg-alt);
  --secondary-foreground: var(--ink);
  --muted: var(--bg-alt);
  --muted-foreground: var(--ink-soft);
  --accent-color: var(--accent);
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: var(--line);
  --input: var(--line);
  --ring: var(--accent);
  --radius: 0.5rem;

  /* Schriften */
  --font-display: 'Instrument Serif', serif;
  --font-body: 'Inter Tight', sans-serif;

  /* Spacing */
  --section-padding-desktop: 120px;
  --section-padding-tablet: 80px;
  --section-padding-mobile: 60px;
  --content-max-width: 1280px;
}

/* ─── Reset / Normalize ─── */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: hsl(var(--bg));
  color: hsl(var(--ink));
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: hsl(var(--accent-warm));
  color: hsl(var(--ink));
}

/* ─── Typografie ─── */

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
}

small {
  font-size: 13px;
  color: hsl(var(--ink-soft));
}

p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

/* ─── Layout-Utilities ─── */

.container {
  width: 100%;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}

.section {
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--section-padding-tablet);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: var(--section-padding-desktop);
  }
}

.section--alt {
  background: hsl(var(--bg-alt));
}

.section--dark {
  background: hsl(var(--ink));
  color: hsl(var(--bg));
}

.section--terra {
  background: hsl(var(--accent));
  color: hsl(var(--ink));
}

/* Body-Text in Terra explizit auf Ink ziehen — globale p/li/small/.lead-Defaults
   setzen sonst --ink-soft (zu wenig Kontrast auf Terra, ~2.85:1). */
.section--terra p,
.section--terra li,
.section--terra small,
.section--terra .lead {
  color: hsl(var(--ink));
}

/* Italic-Akzent: Terra-Section schaltet auf Ink um (sonst verschwinden
   Italic-Wörter in der Terra-Fläche). Dark-Section behält Terra-Akzent. */
.section--terra .italic-accent {
  color: hsl(var(--ink));
}

/* Eyebrow: auf Terra ist Accent-Farbe identisch mit Hintergrund — auf Ink umstellen */
.section--terra .eyebrow-accent {
  color: hsl(var(--ink));
}

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--ink-subtle));
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

/* Visually-hidden helper für a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Animationen ─── */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

.animate-reveal-up {
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Scroll-Reveal: Initialzustand + sichtbar-Zustand,
   getoggelt via JS in scripts.js */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Headline Word-by-Word Reveal (Hebel 4) ─────────────────────
   Container .reveal--words wird in scripts.js in <span class="word">
   tokenisiert. Italic-Akzente (.italic-accent) werden als atomare
   Word-Einheiten gewrappt und bekommen einen Underline-Streich
   (currentColor) beim Reveal-Abschluss. Bei prefers-reduced-motion
   überspringt das JS das Splitting komplett — Headlines erscheinen
   dann als plain HTML ohne Word-Spans. */
.reveal--words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 600ms cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--word-delay, 0ms);
}

.reveal--words.is-visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* Italic-Highlight als Marker-Wash: linearer Gradient füllt die unteren ~65%
   der Inline-Box mit currentColor @ 30% Opacity (via color-mix). Kein
   Pseudo-Element mehr — der Wash sitzt als background INNERHALB der
   Inline-Box, kann mechanisch nicht in Folgezeilen reichen. Animation
   läuft über background-size 0% → 100% (von links), nicht über transform. */
.reveal--words .italic-accent {
  background-image: linear-gradient(
    to top,
    color-mix(in srgb, currentColor 15%, transparent) 0%,
    color-mix(in srgb, currentColor 15%, transparent) 65%,
    transparent 65%
  );
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  background-clip: padding-box;
  padding: 0 0.05em;
  transition: background-size 400ms cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--italic-delay, 0ms);
}

.reveal--words.is-visible .italic-accent {
  background-size: 100% 100%;
}

/* Hero h1 hat eine eigene CSS-fade-up-Animation. Wenn .reveal--words
   aktiv ist, übernimmt der Word-Reveal die Sichtbarkeitslogik. */
.hero-shell h1.reveal--words {
  animation: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Italic-Highlight: sofortiger Endzustand, keine Animation.
     JS splittet bei reduced-motion ohnehin nicht — ohne diese Regel
     bliebe background-size auf 0% und der Wash unsichtbar. */
  .reveal--words .italic-accent {
    background-size: 100% 100%;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Tally Popup — Styling im Seiten-Geist
   1:1-Port aus src/index.css (Phase 1).
   ═══════════════════════════════════════════════════════════════ */

body:has(iframe[src*="tally.so"]) {
  overflow: hidden;
}

body:has(iframe[src*="tally.so"])::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  pointer-events: none;
  animation: aigency-backdrop-fade-in 300ms ease-out forwards;
}

body.tally-closing::before {
  animation: aigency-backdrop-fade-out 250ms ease-in forwards !important;
}

@keyframes aigency-backdrop-fade-in {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@keyframes aigency-backdrop-fade-out {
  from {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}

.tally-popup-overlay {
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body > div:has(> div > div > iframe[src*="tally.so"]) {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

body > div:has(> div > div > iframe[src*="tally.so"]) > div {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.tally-popup {
  background: #FFFFFF !important;
  border-radius: 22px !important;
  padding: 15px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  overflow: hidden !important;
  border: none !important;
  animation: aigency-popup-fade-in 320ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.tally-closing .tally-popup {
  animation: aigency-popup-fade-out 220ms ease-in forwards !important;
}

@keyframes aigency-popup-fade-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes aigency-popup-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.97);
  }
}

.tally-popup-close {
  top: 16px !important;
  right: 16px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background-color: rgba(250, 250, 247, 0.9) !important;
  color: #595954 !important;
  transition: all 0.2s ease !important;
  border: 1px solid rgba(228, 228, 221, 0.8) !important;
}

.tally-popup-close:hover {
  background-color: #FAFAF7 !important;
  color: hsl(var(--ink)) !important;
  transform: scale(1.05) !important;
}

@media (max-width: 768px) {
  .tally-popup {
    border-radius: 16px !important;
    margin: 12px !important;
    max-height: calc(100vh - 24px) !important;
    padding: 10px !important;
  }
}

.tally-popup iframe {
  background-color: #FAFAF7 !important;
  border-radius: 14px !important;
}

/* ═══════════════════════════════════════════════════════════════
   Logo + Buttons
   ═══════════════════════════════════════════════════════════════ */

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  color: hsl(var(--ink));
}

.logo--footer {
  font-size: 32px;
  color: hsl(var(--bg) / 0.9);
}

.logo__roman {
  font-style: normal;
  font-weight: 400;
}

.logo__italic {
  font-style: italic;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  padding: 8px 20px;
  background: hsl(var(--ink));
  color: hsl(var(--bg));
  transition: opacity 200ms ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
}

.btn--ghost {
  background: transparent;
  color: hsl(var(--ink));
  border: 1px solid hsl(var(--line));
}

.btn--ghost:hover {
  background: hsl(var(--bg-alt));
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   Navigation (Header)
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease,
              backdrop-filter 300ms ease,
              -webkit-backdrop-filter 300ms ease,
              border-color 300ms ease;
}

.nav.is-scrolled {
  background: rgba(250, 250, 247, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: hsl(var(--line));
}

.nav__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .nav__inner {
    padding-inline: 40px;
  }
}

.nav__links {
  display: none;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink-soft));
  transition: color 200ms ease;
}

.nav__link:hover {
  color: hsl(var(--ink));
}

.nav__link.is-active {
  color: hsl(var(--accent));
  border-bottom: 2px solid hsl(var(--accent));
  padding-bottom: 2px;
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__hamburger {
  padding: 8px;
  margin-right: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger svg {
  width: 20px;
  height: 20px;
}

.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: hsl(var(--bg));
  padding-top: 56px;
  display: none;
  flex-direction: column;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding-inline: 32px;
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  color: hsl(var(--ink));
  transition: opacity 200ms ease;
}

.nav__mobile-link:hover {
  opacity: 0.7;
}

.nav__mobile-link.is-active {
  color: hsl(var(--accent));
}

.nav__mobile-cta {
  padding-inline: 32px;
  padding-bottom: 48px;
}

.nav__mobile-cta-btn {
  display: block;
  width: 100%;
  background: hsl(var(--ink));
  color: hsl(var(--bg));
  border-radius: 999px;
  padding: 16px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: opacity 200ms ease;
}

.nav__mobile-cta-btn:hover {
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: hsl(var(--ink));
  color: hsl(var(--bg));
}

.footer__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding: 64px 24px;
}

@media (min-width: 768px) {
  .footer__inner {
    padding: 80px 40px;
  }
}

.footer__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__brand {
    grid-column: span 1;
  }
}

.footer__claim {
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--bg) / 0.6);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--bg) / 0.4);
}

.footer__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 14px;
  color: hsl(var(--bg) / 0.6);
  transition: color 200ms ease;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer__link:hover {
  color: hsl(var(--bg));
}

.footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid hsl(var(--bg) / 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: 13px;
  color: hsl(var(--bg) / 0.4);
}

.footer__credit {
  font-size: 13px;
  color: hsl(var(--bg) / 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   Legal Pages (Impressum, Datenschutz)
   ═══════════════════════════════════════════════════════════════ */

.legal-page {
  padding-top: 128px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .legal-page {
    padding-top: 160px;
    padding-bottom: 112px;
  }
}

.legal-page__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .legal-page__inner {
    padding-inline: 40px;
  }
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
  font-weight: 400;
}

.legal-page__sections {
  margin-top: 48px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: hsl(var(--ink-soft));
}

.legal-page__sections > section + section {
  margin-top: 40px;
}

.legal-page__sections h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: hsl(var(--ink));
}

.legal-page__sections h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: hsl(var(--ink));
}

.legal-page__sections p {
  font-size: 15px;
  line-height: 1.8;
  color: hsl(var(--ink-soft));
}

.legal-page__sections ul {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.legal-page__sections a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}

.legal-page__sections a:hover {
  color: hsl(var(--accent));
}

.legal-page__sections strong {
  font-weight: 600;
  color: hsl(var(--ink));
}

.legal-page__sections .mt-3 { margin-top: 12px; }
.legal-page__sections .mt-4 { margin-top: 16px; }
.legal-page__sections .mt-6 { margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════════
   Page Hero (shared by methode + service pages)
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  padding-top: 100px;
  padding-bottom: 60px;
  background: hsl(var(--bg));
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.page-hero__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .page-hero__inner {
    padding-inline: 40px;
  }
}

.page-hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.1s forwards;
}

.page-hero__h1 {
  margin-top: 24px;
  max-width: 900px;
  color: hsl(var(--ink));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.2s forwards;
}

.page-hero__lead {
  margin-top: 32px;
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.35s forwards;
}

@media (min-width: 768px) {
  .page-hero__lead {
    font-size: 19px;
  }
}

.italic-accent {
  font-style: italic;
  color: hsl(var(--accent));
}

/* ═══════════════════════════════════════════════════════════════
   Methode — Principle Sections
   ═══════════════════════════════════════════════════════════════ */

.principle {
  padding-block: var(--section-padding-mobile);
  background: hsl(var(--bg));
}

@media (min-width: 768px) {
  .principle {
    padding-block: var(--section-padding-tablet);
  }
}

@media (min-width: 1024px) {
  .principle {
    padding-block: var(--section-padding-desktop);
  }
}

.principle--alt {
  background: hsl(var(--bg-alt));
}

.principle__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .principle__inner {
    padding-inline: 40px;
  }
}

.principle__num-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: hsl(var(--accent));
}

.principle__headline {
  margin-top: 16px;
  color: hsl(var(--ink));
}

.principle__body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principle__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.methode-closing {
  background: hsl(var(--bg));
  padding-block: 80px;
}

@media (min-width: 768px) {
  .methode-closing {
    padding-block: 100px;
  }
}

.methode-closing__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .methode-closing__inner {
    padding-inline: 40px;
  }
}

.methode-closing__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

/* ═══════════════════════════════════════════════════════════════
   Generic CTA Section
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
  background: hsl(var(--bg-alt));
  padding-block: 80px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding-block: 120px;
  }
}

.cta-section__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .cta-section__inner {
    padding-inline: 40px;
  }
}

.cta-section__buttons {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-section__buttons {
    flex-direction: row;
  }
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: hsl(var(--ink));
  color: hsl(var(--bg));
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 200ms ease;
  cursor: pointer;
}

.btn-arrow:hover {
  opacity: 0.9;
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.link-cta:hover {
  color: hsl(var(--accent));
}

.cta-section--bg {
  background: hsl(var(--bg));
}

/* ═══════════════════════════════════════════════════════════════
   Service Pages (Workshop, Schulung, Keynote)
   ═══════════════════════════════════════════════════════════════ */

/* Hero CTA button (animated entrance) */
.page-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 14px 28px;
  background: hsl(var(--ink));
  color: hsl(var(--bg));
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.5s forwards;
  transition: opacity 200ms ease;
}

.page-hero__cta:hover { opacity: 0.9; }

.page-hero__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Section band: alternating bg-alt / bg, full-width section padding */
.section-band {
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .section-band {
    padding-block: var(--section-padding-tablet);
  }
}

@media (min-width: 1024px) {
  .section-band {
    padding-block: var(--section-padding-desktop);
  }
}

.section-band--alt { background: hsl(var(--bg-alt)); }
.section-band--bg  { background: hsl(var(--bg)); }

.section-band__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .section-band__inner {
    padding-inline: 40px;
  }
}

.section-band__inner--narrow {
  max-width: 900px;
}

/* Eyebrow inside body sections (no animation) */
.eyebrow-accent {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.section-band h2 {
  margin-top: 24px;
  color: hsl(var(--ink));
}

/* Phases grid (Workshop, Schulung): 4 cols desktop, 2 tablet, 1 mobile */
.phases {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .phases {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .phases {
    grid-template-columns: repeat(4, 1fr);
  }
}

.phase {
  border-top: 1px solid hsl(var(--line));
  padding-top: 24px;
}

.phase__num {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: hsl(var(--accent));
}

.phase__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .phase__title { font-size: 28px; }
}

.phase__body {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

/* Criteria list with checkmark badge (Workshop, Schulung) */
.criteria {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.criterion {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid hsl(var(--line));
  padding-top: 24px;
}

.criterion__check {
  margin-top: 4px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent));
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
}

.criterion__text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .criterion__text { font-size: 26px; }
}

/* Price band (Was es kostet / Honorar) */
.price-band {
  padding-block: 60px;
  background: hsl(var(--bg-alt));
}

@media (min-width: 768px) {
  .price-band { padding-block: 80px; }
}

.price-band--bg { background: hsl(var(--bg)); }

.price-band__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .price-band__inner { padding-inline: 40px; }
}

.price-band__statement {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

.price-band__statement .muted {
  color: hsl(var(--ink-soft));
}

/* ═══════════════════════════════════════════════════════════════
   Native FAQ accordion (replaces Radix on Workshop/Schulung/Keynote;
   reused on /faq sub-blocks)
   ═══════════════════════════════════════════════════════════════ */

.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-top: 1px solid hsl(var(--line));
}

.faq-item:last-child {
  border-bottom: 1px solid hsl(var(--line));
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: hsl(var(--ink));
  cursor: pointer;
  list-style: none;
  transition: color 200ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-item summary:hover {
  color: hsl(var(--accent));
}

.faq-item summary svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
  color: hsl(var(--ink-soft));
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding-bottom: 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
  animation: fade-up 0.2s ease-out;
}

/* ═══════════════════════════════════════════════════════════════
   Keynote-specific: Topic cards, Format list, Referenzen-placeholder
   ═══════════════════════════════════════════════════════════════ */

.topics {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .topics {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.topic {
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--line));
  border-radius: 28px;
  padding: 32px;
  transition: transform 300ms ease, border-color 300ms ease;
}

.topic:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent));
}

.topic__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: hsl(var(--accent-warm));
  user-select: none;
}

.topic__title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .topic__title { font-size: 28px; }
}

.topic__body {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.format-list {
  margin-top: 40px;
}

.format-list__item {
  border-top: 1px solid hsl(var(--line));
  padding-block: 20px;
}

.format-list__item:last-child {
  border-bottom: 1px solid hsl(var(--line));
}

.format-list__item p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .format-list__item p { font-size: 26px; }
}

.referenzen-band {
  background: hsl(var(--bg-alt));
  padding-block: 60px;
}

@media (min-width: 768px) {
  .referenzen-band { padding-block: 80px; }
}

.referenzen-band__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .referenzen-band__inner { padding-inline: 40px; }
}

.referenzen-band__quote {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: hsl(var(--ink-subtle));
}

/* ═══════════════════════════════════════════════════════════════
   /faq — Hero, Concerns, Claude-Overview, Cluster Q&As, Heuristik,
   Sources accordion, ghost CTA
   ═══════════════════════════════════════════════════════════════ */

/* Hero with date stamp */
.faq-hero {
  background: hsl(var(--bg));
  padding-top: 120px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .faq-hero {
    padding-top: 160px;
    padding-bottom: 120px;
  }
}

.faq-hero__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .faq-hero__inner { padding-inline: 40px; }
}

.faq-hero h1 {
  max-width: 900px;
  font-family: var(--font-display);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: hsl(var(--ink));
}

.faq-hero__lead {
  margin-top: 40px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

@media (min-width: 768px) {
  .faq-hero__lead { font-size: 20px; }
}

.faq-hero__stand {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: hsl(var(--accent));
}

/* Concern cards — anchor jumps to clusters */
.concerns-band {
  background: hsl(var(--bg));
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .concerns-band { padding-bottom: 120px; }
}

.concerns-band__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .concerns-band__inner { padding-inline: 40px; }
}

.concerns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .concerns {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.concern-card {
  display: block;
  background: hsl(var(--bg-alt));
  border: 1px solid hsl(var(--line));
  border-radius: 16px;
  padding: 32px;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.concern-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.concern-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .concern-card__title { font-size: 32px; }
}

.concern-card__sub {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.concern-card__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--accent));
  transition: transform 200ms ease;
}

.concern-card:hover .concern-card__cta {
  transform: translateX(4px);
}

.concern-card__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Claude-Overview 3-column grid */
.claude-overview {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .claude-overview {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.overview-col__title {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.overview-col__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-col__list--tight { gap: 12px; }

.overview-col__item {
  border-top: 1px solid hsl(var(--line));
  padding-top: 16px;
}

.overview-col__item--tight {
  padding-top: 12px;
}

.overview-col__item-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: hsl(var(--ink));
}

.overview-col__item-note {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.overview-col__item-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.overview-col__title--mt {
  display: block;
  margin-top: 32px;
}

/* FAQ cluster sections */
.faq-cluster {
  padding-block: 80px;
  scroll-margin-top: 96px;
}

@media (min-width: 768px) {
  .faq-cluster { padding-block: 120px; }
}

.faq-cluster--bg { background: hsl(var(--bg)); }
.faq-cluster--alt { background: hsl(var(--bg-alt)); }

.faq-cluster__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .faq-cluster__inner { padding-inline: 40px; }
}

.faq-cluster__intro {
  margin-bottom: 48px;
  max-width: 680px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.faq-cluster__subhead {
  margin-top: 80px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .faq-cluster__subhead { font-size: 34px; }
}

.faq-cluster__group {
  margin-top: 40px;
}

/* Q&A items (visible-by-default articles, mirroring FaqBlock) */
.qa-list { }

.qa-item {
  border-top: 1px solid hsl(var(--line));
  padding-block: 40px;
}

.qa-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.qa-item__q {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .qa-item__q { font-size: 28px; }
}

.qa-item__answer {
  margin-top: 20px;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: hsl(var(--ink-soft));
}

.qa-item__answer > * + * {
  margin-top: 16px;
}

.qa-item__lead {
  font-weight: 600;
  color: hsl(var(--ink));
}

/* Heuristik table (desktop) + cards (mobile) */
.heuristik-band {
  background: hsl(var(--bg-alt));
  padding-block: 80px;
}

@media (min-width: 768px) {
  .heuristik-band { padding-block: 120px; }
}

.heuristik-band__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .heuristik-band__inner { padding-inline: 40px; }
}

.heuristik-band h2 { max-width: 800px; }

.heuristik-band__lead {
  margin-top: 32px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.heuristik-table {
  display: none;
}

@media (min-width: 768px) {
  .heuristik-table {
    display: table;
    margin-top: 56px;
    width: 100%;
    border-collapse: collapse;
  }
}

.heuristik-table thead tr {
  border-bottom: 1px solid hsl(var(--ink) / 0.2);
}

.heuristik-table th {
  padding-block: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.heuristik-table th:first-child { padding-right: 24px; }
.heuristik-table th:last-child  { padding-left: 24px; }

.heuristik-table tbody tr {
  border-bottom: 1px solid hsl(var(--line));
}

.heuristik-table tbody tr:last-child {
  border-bottom: 0;
}

.heuristik-table td {
  padding-block: 20px;
  vertical-align: top;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.heuristik-table td:first-child {
  padding-right: 24px;
  color: hsl(var(--ink));
}

.heuristik-table td:last-child {
  padding-left: 24px;
  color: hsl(var(--ink-soft));
}

.heuristik-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .heuristik-cards { display: none; }
}

.heuristik-card {
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--line));
  border-radius: 16px;
  padding: 24px;
}

.heuristik-card__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.heuristik-card__value {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: hsl(var(--ink));
}

.heuristik-card__label + .heuristik-card__label {
  margin-top: 20px;
}

.heuristik-card__value--soft {
  color: hsl(var(--ink-soft));
  font-size: 15px;
}

/* CTA section variant: ghost + filled buttons */
.faq-cta {
  background: hsl(var(--bg));
  padding-block: 100px;
}

@media (min-width: 768px) {
  .faq-cta { padding-block: 140px; }
}

.faq-cta__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-cta__inner { padding-inline: 40px; }
}

.faq-cta__lead {
  margin-inline: auto;
  margin-top: 32px;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.faq-cta__buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .faq-cta__buttons { flex-direction: row; }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: hsl(var(--ink));
  border: 1px solid hsl(var(--ink));
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.btn-outline:hover {
  background: hsl(var(--ink));
  color: hsl(var(--bg));
}

/* Sources accordion (single, bottom of /faq) */
.sources-accordion {
  margin: 96px auto 0;
  max-width: 760px;
  border-top: 1px solid hsl(var(--line));
  padding-top: 40px;
}

.sources-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.sources-accordion summary::-webkit-details-marker { display: none; }
.sources-accordion summary::marker { content: ""; }

.sources-accordion__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.sources-accordion summary svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: hsl(var(--accent));
  transition: transform 200ms ease;
}

.sources-accordion[open] summary svg {
  transform: rotate(180deg);
}

.sources-accordion__body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fade-up 0.2s ease-out;
}

.sources-group__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--ink));
}

.sources-group__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sources-group__list a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
  text-decoration: underline;
  text-decoration-color: hsl(var(--line));
  text-underline-offset: 4px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}

.sources-group__list a:hover {
  color: hsl(var(--accent));
  text-decoration-color: hsl(var(--accent));
}

.sources-stand {
  padding-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: hsl(var(--ink-subtle));
}

/* ═══════════════════════════════════════════════════════════════
   /ueber-mich — Hero, Vita sections, Pull-quote, Em-list,
   Principles cards, Stiftung split, native FAQ, accent CTA
   ═══════════════════════════════════════════════════════════════ */

.ueber-hero {
  position: relative;
  background: hsl(var(--bg));
  padding-top: 120px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ueber-hero { padding-top: 140px; }
}

.ueber-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ueber-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .ueber-hero__inner { padding-inline: 40px; }
}

.ueber-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: hsl(var(--ink));
}

.ueber-hero__lead {
  margin-top: 24px;
  max-width: 540px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.55;
  color: hsl(var(--ink-subtle));
}

/* Mobile: stacked layout */
.ueber-hero__mobile {
  display: block;
}

.ueber-hero__mobile-portrait {
  display: flex;
  justify-content: center;
  padding: 32px 0 40px;
}

.ueber-hero__mobile-portrait img {
  width: 80%;
  max-width: 320px;
  object-fit: contain;
}

.ueber-hero__mobile-text {
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .ueber-hero__mobile { display: none; }
}

/* Desktop: side-by-side, image docked to bottom */
.ueber-hero__desktop {
  display: none;
}

@media (min-width: 768px) {
  .ueber-hero__desktop {
    display: flex;
    align-items: flex-end;
    gap: 64px;
  }

  .ueber-hero__text {
    flex: 3;
    min-width: 0;
    display: flex;
    align-items: center;
    padding-bottom: 8vh;
  }

  .ueber-hero__portrait {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
  }

  .ueber-hero__portrait img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }
}

@media (min-width: 1024px) {
  .ueber-hero__portrait img { max-width: 460px; }
}

/* Vita sections */
.vita-section {
  padding-block: 60px;
}

@media (min-width: 768px) {
  .vita-section { padding-block: 120px; }
}

.vita-section--bg  { background: hsl(var(--bg)); }
.vita-section--alt { background: hsl(var(--bg-alt)); }
.vita-section--border-top { border-top: 1px solid hsl(var(--line)); }

.vita-section__inner {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .vita-section__inner { padding-inline: 40px; }
}

.vita-section__inner--narrow {
  max-width: 620px;
  text-align: center;
}

.vita-section__inner--wide {
  max-width: 1080px;
}

.vita-section__inner--med {
  max-width: 980px;
}

.section-marker {
  margin-bottom: 40px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: hsl(var(--accent));
}

.vita-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

.vita-section h2.is-small {
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.15;
}

.vita-section h2.is-center {
  text-align: center;
}

.vita-text {
  margin-top: 48px;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: hsl(var(--ink-soft));
}

.vita-text > p + p { margin-top: 24px; }

.vita-text--center { margin-inline: auto; }

.vita-text em.italic { font-style: italic; }

/* Pull-quote */
.pull-quote {
  margin: 80px auto;
  max-width: 720px;
}

.pull-quote__inner {
  border-left: 4px solid hsl(var(--accent));
  padding-left: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.5;
  color: hsl(var(--ink) / 0.9);
}

/* Em-dash list (Sektion III) */
.vita-text--lead {
  margin-top: 32px;
}

.em-list {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}

.em-list__item {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.em-list__dash {
  flex-shrink: 0;
  font-size: 20px;
  color: hsl(var(--accent));
}

.em-list__text {
  color: hsl(var(--ink-soft));
}

.em-list__text strong {
  font-weight: 700;
  color: hsl(var(--ink));
}

/* Centered divider line */
.center-divider {
  margin: 120px auto;
  height: 1px;
  width: 80px;
  background: hsl(var(--ink) / 0.1);
}

/* Three principle cards */
.principles-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.principle-card {
  background: hsl(var(--bg-alt));
  border-radius: 16px;
  padding: 32px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.principle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.principle-card__marker {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: hsl(var(--accent));
}

.principle-card__title {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: hsl(var(--ink));
}

.principle-card__text {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

/* Stiftung Burda — split with decorative year */
.stiftung-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .stiftung-split {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}

.stiftung-year {
  flex-shrink: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .stiftung-year { width: 40%; }
}

.stiftung-year span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: hsl(var(--accent) / 0.2);
}

@media (min-width: 768px) {
  .stiftung-year span { font-size: 160px; }
}

@media (min-width: 768px) {
  .stiftung-content { width: 60%; }
}

.stiftung-content .vita-text { max-width: 580px; }

/* Vita-FAQ (chevron-right that rotates 90° on open) */
.vita-faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vita-faq h2 {
  margin-bottom: 48px;
}

.vita-faq-item summary {
  display: list-item;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.vita-faq-item summary::-webkit-details-marker { display: none; }
.vita-faq-item summary::marker { content: ""; }

.vita-faq-item summary:hover { color: hsl(var(--accent)); }

.vita-faq-item summary > span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vita-faq-item summary svg {
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: hsl(var(--accent));
  transition: transform 200ms ease;
}

.vita-faq-item[open] summary svg {
  transform: rotate(90deg);
}

.vita-faq-item__answer {
  margin-top: 16px;
  padding-left: 32px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: hsl(var(--ink-soft));
  animation: fade-up 0.2s ease-out;
}

/* Closing section with accent CTA */
.ueber-closing {
  background: hsl(var(--bg));
  padding-top: 60px;
  padding-bottom: 160px;
}

@media (min-width: 768px) {
  .ueber-closing { padding-top: 120px; }
}

.ueber-closing__inner {
  max-width: 620px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .ueber-closing__inner { padding-inline: 40px; }
}

.ueber-closing__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.8;
  color: hsl(var(--ink-soft));
}

.ueber-closing__signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: hsl(var(--ink-soft));
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 18px 32px;
  background: hsl(var(--accent));
  color: #FFFFFF;
  border: 0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

.btn-accent:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-accent svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Lightbox (vanilla overlay, used by /case-ats screenshots)
   ═══════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fade-in 0.2s ease-out;
}

@media (min-width: 768px) {
  .lightbox { padding: 32px; }
}

.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: hsl(var(--ink) / 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__close {
  position: absolute;
  top: max(calc(env(safe-area-inset-top, 0px) + 16px), 72px);
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: hsl(var(--bg) / 0.9);
  color: hsl(var(--ink));
  border: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 200ms ease;
}

@media (min-width: 768px) {
  .lightbox__close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

.lightbox__close:hover { opacity: 0.8; }

.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.lightbox__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.lightbox__frame {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.4);
}

.lightbox__img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox__caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: hsl(var(--bg) / 0.8);
}

/* ═══════════════════════════════════════════════════════════════
   /case-ats — Hero, Metrics, Editorial sections, Tools, Views,
   Screenshots, Lessons Learned, Closing quote
   ═══════════════════════════════════════════════════════════════ */

.case-hero {
  position: relative;
  background: hsl(var(--bg));
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .case-hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.case-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.case-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.case-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .case-hero__inner { padding-inline: 40px; }
}

.case-hero h1 {
  margin-top: 24px;
  max-width: 960px;
  color: hsl(var(--ink));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.2s forwards;
}

.case-hero__lead {
  margin-top: 24px;
  max-width: 700px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.3s forwards;
}

@media (min-width: 768px) {
  .case-hero__lead { font-size: 19px; }
}

.case-hero__meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  color: hsl(var(--ink-subtle));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.4s forwards;
}

/* Metrics 3-col band */
.metrics-band {
  background: hsl(var(--bg-alt));
  padding-block: 60px;
}

@media (min-width: 768px) {
  .metrics-band { padding-block: 80px; }
}

.metrics-band__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .metrics-band__inner { padding-inline: 40px; }
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
}

.metric {
  border-top: 1px solid hsl(var(--line));
  padding-top: 24px;
}

.metric__label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--ink-subtle));
}

.metric__value {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

.metric__compare {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: hsl(var(--ink-subtle));
}

/* Editorial sections (max-w 900) */
.editorial {
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .editorial { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .editorial { padding-block: var(--section-padding-desktop); }
}

.editorial--bg  { background: hsl(var(--bg)); }
.editorial--alt { background: hsl(var(--bg-alt)); }

.editorial__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .editorial__inner { padding-inline: 40px; }
}

.editorial h2 {
  margin-top: 24px;
  color: hsl(var(--ink));
}

.editorial__body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editorial__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.editorial__body .quoted {
  font-style: italic;
  color: hsl(var(--ink));
}

/* Tools 2x2 grid (Aufbau section) */
.tools-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

.tool-card {
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--line));
  border-radius: 18px;
  padding: 28px;
}

.tool-card__role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.tool-card__name {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

.tool-card__body {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

/* Sieben Ansichten */
.views-section {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .views-section { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .views-section { padding-block: var(--section-padding-desktop); }
}

.views-section__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .views-section__inner { padding-inline: 40px; }
}

.views-section__intro {
  margin-top: 24px;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.view-part {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .view-part { margin-top: 120px; }
}

.view-part__roman {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--ink-subtle));
}

.view-part__h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .view-part__h3 { font-size: 32px; }
}

.view-part__lead {
  margin-top: 16px;
  max-width: 580px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.view-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .view-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .view-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Screenshot button (lightbox trigger) */
.screenshot {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 40px -15px rgba(10, 10, 10, 0.15);
  transition: box-shadow 300ms ease;
}

.screenshot:hover {
  box-shadow: 0 28px 60px -15px rgba(10, 10, 10, 0.22);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 500ms ease;
}

.screenshot:hover img {
  transform: scale(1.02);
}

.screenshot__caption {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: hsl(var(--ink-subtle));
}

/* Lessons Learned */
.lessons {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lesson {
  border-top: 1px solid hsl(var(--line));
  padding-top: 32px;
}

.lesson__num {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: hsl(var(--accent));
}

.lesson__title {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .lesson__title { font-size: 34px; }
}

.lesson__body {
  margin-top: 16px;
  max-width: 680px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.case-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

/* ═══════════════════════════════════════════════════════════════
   / (Index) — Hero shell, Problem, Studio (Claude-Ökosystem),
   Case teaser, Services, Method teaser, Capabilities, About,
   Tools, Final CTA
   ═══════════════════════════════════════════════════════════════ */

/* Hero shell — full-viewport with watercolor BG + bouncing arrow */
.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 80px;
  background: hsl(var(--bg));
  overflow: hidden;
}

@supports (min-height: 100dvh) {
  .hero-shell { min-height: 100dvh; }
}

@media (min-width: 768px) {
  .hero-shell {
    min-height: 88vh;
    padding-top: 140px;
    padding-bottom: 100px;
  }
  @supports (min-height: 100dvh) {
    .hero-shell { min-height: 88vh; }
  }
}

.hero-shell__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-shell__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shell__inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .hero-shell__inner { padding-inline: 40px; }
}

.hero-shell__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.1s forwards;
}

.hero-shell h1 {
  margin-top: 24px;
  margin-bottom: 0;
  max-width: 960px;
  color: hsl(var(--ink));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.2s forwards;
}

.hero-shell__sub {
  margin-top: 32px;
  max-width: 900px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.4s forwards;
}

@media (min-width: 768px) {
  .hero-shell__sub { font-size: 19px; }
}

.hero-shell__ctas {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.7s ease-out 0.55s forwards;
}

@media (min-width: 640px) {
  .hero-shell__ctas { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero-shell__ctas { margin-top: 40px; }
}

.hero-shell__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  opacity: 0.4;
  animation: bounce-subtle 2s ease-in-out infinite;
  color: hsl(var(--ink));
}

.hero-shell__scroll-indicator svg {
  width: 24px;
  height: 24px;
}

[data-hero-variant][hidden] { display: none; }

/* Problem-Sektion — large display headline + body + closing emphasis */
.home-problem {
  background: hsl(var(--bg-alt));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-problem { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-problem { padding-block: var(--section-padding-desktop); }
}

.home-problem__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-problem__inner { padding-inline: 40px; }
}

.home-problem__headline {
  margin-top: 32px;
  max-width: 1000px;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: hsl(var(--ink));
}

.home-problem__body {
  margin-top: 24px;
  max-width: 800px;
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.home-problem__body p + p { margin-top: 24px; }

.home-problem__closing {
  margin-top: 56px;
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .home-problem__closing { margin-top: 80px; }
}

/* Studio (Claude-Ökosystem) — 6-col grid with mixed bg cards */
.home-studio {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-studio { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-studio { padding-block: var(--section-padding-desktop); }
}

.home-studio__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-studio__inner { padding-inline: 40px; }
}

.home-studio__eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.home-studio h2 {
  margin-top: 24px;
  margin-inline: auto;
  max-width: 900px;
  text-align: center;
  color: hsl(var(--ink));
}

.home-studio__lead {
  margin-top: 32px;
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

@media (min-width: 768px) {
  .home-studio__lead { font-size: 19px; }
}

.studio-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .studio-grid {
    margin-top: 80px;
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-card--md-2 { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .studio-grid { grid-template-columns: repeat(6, 1fr); }
  .studio-card--lg-2 { grid-column: span 2; }
  .studio-card--lg-3 { grid-column: span 3; }
  .studio-card--lg-6 { grid-column: span 6; }
}

.studio-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--bg-alt));
  color: hsl(var(--ink));
  border: 1px solid hsl(var(--line));
  border-radius: 18px;
  padding: 28px;
  transition: transform 300ms ease, border-color 300ms ease;
}

@media (min-width: 768px) {
  .studio-card { padding: 32px; }
}

.studio-card:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--accent));
}

.studio-card--dark {
  background: hsl(var(--ink));
  color: hsl(var(--bg));
  border-color: hsl(var(--bg) / 0.1);
}

.studio-card--accent {
  background: hsl(var(--accent));
  color: hsl(var(--bg));
  border-color: hsl(var(--bg) / 0.1);
}

.studio-card__tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
}

.studio-card__name {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: inherit;
}

@media (min-width: 768px) {
  .studio-card__name { font-size: 32px; }
}

.studio-card__desc {
  margin-top: 12px;
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.8;
}

.studio-card__usecase {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  border-top-width: 1px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.6;
}

/* Case-Teaser — split text + screenshot mockup */
.home-case-teaser {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-case-teaser { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-case-teaser { padding-block: var(--section-padding-desktop); }
}

.home-case-teaser__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-case-teaser__inner { padding-inline: 40px; }
}

.home-case-teaser__split {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .home-case-teaser__split {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

.case-teaser__h2 {
  margin-top: 16px;
  color: hsl(var(--ink));
}

.case-teaser__lead {
  margin-top: 24px;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.case-teaser__metrics {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-teaser__metric {
  border-top: 1px solid hsl(var(--line));
  padding-top: 16px;
}

.case-teaser__metric-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--ink-subtle));
}

.case-teaser__metric-value {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .case-teaser__metric-value { font-size: 32px; }
}

.case-teaser__metric-compare {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  color: hsl(var(--ink-subtle));
}

.case-teaser__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.case-teaser__cta:hover { color: hsl(var(--accent)); }

.case-teaser__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.case-teaser__cta:hover svg { transform: translateX(4px); }

.case-teaser__mockup {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(10, 10, 10, 0.25);
}

.case-teaser__mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.case-teaser__caption {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Services — three rounded service cards with italic numerals */
.home-services {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-services { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-services { padding-block: var(--section-padding-desktop); }
}

.home-services__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-services__inner { padding-inline: 40px; }
}

.home-services h2 {
  margin-top: 24px;
  max-width: 800px;
  color: hsl(var(--ink));
}

.home-services__lead {
  margin-top: 24px;
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .services-grid { margin-top: 80px; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  background: hsl(var(--bg));
  border: 1px solid hsl(var(--line));
  border-radius: 28px;
  padding: 32px;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

@media (min-width: 768px) {
  .service-card { padding: 40px; }
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent));
  box-shadow: 0 24px 48px -16px rgba(10, 10, 10, 0.12);
}

.service-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: hsl(var(--accent-warm));
  user-select: none;
}

.service-card__title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: hsl(var(--ink));
}

@media (min-width: 768px) {
  .service-card__title { font-size: 32px; }
}

.service-card__body {
  margin-top: 16px;
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.service-card__outcome {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid hsl(var(--line));
}

.service-card__outcome-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--ink-subtle));
}

.service-card__outcome-text {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: hsl(var(--ink));
}

.service-card__link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.service-card:hover .service-card__link { color: hsl(var(--accent)); }

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}

.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* Method-Teaser (gekürzte Version, kein Volltext der vier Prinzipien) */
.home-method {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-method { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-method { padding-block: var(--section-padding-desktop); }
}

.home-method__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-method__inner { padding-inline: 40px; }
}

.home-method h2 {
  margin-top: 24px;
  max-width: 700px;
  color: hsl(var(--ink));
}

.home-method__intro {
  margin-top: 32px;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: hsl(var(--ink-soft));
}

.home-method__intro p + p { margin-top: 16px; }

.home-method__principles {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-method__principle {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.home-method__principle-num {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: hsl(var(--accent));
}

.home-method__principle strong {
  font-weight: 600;
  color: hsl(var(--ink));
}

.home-method__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.home-method__cta:hover { color: hsl(var(--accent)); }

.home-method__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.home-method__cta:hover svg { transform: translateX(4px); }

/* Capabilities — 8 square tiles with custom inline-styled colors */
.home-capabilities {
  background: hsl(var(--bg));
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-capabilities { padding-block: var(--section-padding-tablet); }
}

@media (min-width: 1024px) {
  .home-capabilities { padding-block: var(--section-padding-desktop); }
}

.home-capabilities__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-capabilities__inner { padding-inline: 40px; }
}

.home-capabilities h2 {
  margin-top: 24px;
  max-width: 900px;
  color: hsl(var(--ink));
}

.home-capabilities__lead {
  margin-top: 24px;
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.capabilities-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .capabilities-grid { margin-top: 80px; }
}

@media (min-width: 1024px) {
  .capabilities-grid { grid-template-columns: repeat(4, 1fr); }
}

.capability-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  padding: 20px;
  transition: transform 300ms ease;
}

@media (min-width: 768px) {
  .capability-tile { padding: 24px; }
}

.capability-tile:hover { transform: translateY(-4px); }

.capability-tile__icon {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  opacity: 0.35;
  user-select: none;
}

@media (min-width: 768px) {
  .capability-tile__icon { font-size: 52px; }
}

.capability-tile__label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .capability-tile__label { font-size: 16px; }
}

.capability-tile__sub {
  margin-top: 4px;
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

/* About-Sektion (Index variant: split image + blockquote) */
.home-about {
  background: #eeeeec;
  padding-block: var(--section-padding-mobile);
}

@media (min-width: 768px) {
  .home-about { padding-block: 0; }
}

.home-about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-about__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    max-width: none;
    padding-inline: 0;
  }
}

.home-about__photo {
  position: relative;
  width: 224px;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .home-about__photo {
    width: 45%;
    align-self: auto;
    display: block;
  }
}

.home-about__media {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 563;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

@media (min-width: 768px) {
  .home-about__media {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    filter: none;
  }
}

.home-about__media > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-about__media > picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.home-about__content {
  min-width: 0;
  flex: 1;
}

@media (min-width: 768px) {
  .home-about__content {
    max-width: 720px;
    padding-block: var(--section-padding-tablet);
    padding-inline: 32px;
    align-self: center;
  }
}

@media (min-width: 1024px) {
  .home-about__content {
    padding-block: var(--section-padding-desktop);
    padding-inline: 40px;
  }
}

.home-about__quote {
  margin-top: 32px;
}

.home-about__quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
}

.home-about__quote p + p { margin-top: 24px; }

.home-about__signature {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-about__signature-name {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: hsl(var(--ink));
}

.home-about__signature-role {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: hsl(var(--ink-soft));
}

.home-about__cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.home-about__cta:hover { color: hsl(var(--accent)); }

.home-about__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.home-about__cta:hover svg { transform: translateX(4px); }

/* Tools-Sektion (text-only) */
.home-tools {
  background: hsl(var(--bg));
  padding-block: 60px;
}

@media (min-width: 768px) {
  .home-tools { padding-block: 80px; }
}

.home-tools__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .home-tools__inner { padding-inline: 40px; }
}

.home-tools h2 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: hsl(var(--ink));
  font-weight: 400;
}

.home-tools__body {
  margin-top: 32px;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-tools__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

/* Final CTA on Index */
.home-final-cta {
  background: hsl(var(--bg));
  padding-block: 100px;
}

@media (min-width: 768px) {
  .home-final-cta { padding-block: 140px; }
}

@media (min-width: 1024px) {
  .home-final-cta { padding-block: 160px; }
}

.home-final-cta__inner {
  max-width: var(--content-max-width);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .home-final-cta__inner { padding-inline: 40px; }
}

.home-final-cta h2 {
  margin-top: 24px;
  margin-inline: auto;
  max-width: 800px;
  color: hsl(var(--ink));
}

.home-final-cta__lead {
  margin-top: 32px;
  margin-inline: auto;
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: hsl(var(--ink-soft));
}

.home-final-cta__buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .home-final-cta__buttons { flex-direction: row; }
}

/* "So arbeite ich" inline link in hero */
.link-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.link-cta-arrow:hover { color: hsl(var(--accent)); }

.link-cta-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.link-cta-arrow:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   /blog — Coming-Soon-Platzhalter (noindex, ruhig)
   ═══════════════════════════════════════════════════════════════ */

.blog-coming {
  background: hsl(var(--bg));
  padding-block: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

@media (min-width: 768px) {
  .blog-coming { padding-block: 180px; }
}

.blog-coming__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .blog-coming__inner { padding-inline: 40px; }
}

.blog-coming__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--accent));
}

.blog-coming h1 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: hsl(var(--ink));
  font-weight: 400;
}

.blog-coming__lead {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: hsl(var(--ink-soft));
}

.blog-coming__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--ink));
  transition: color 200ms ease;
}

.blog-coming__cta:hover { color: hsl(var(--accent)); }

.blog-coming__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.blog-coming__cta:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   Section-Rhythm — additive Brüche (Hebel 2)
   .home-problem.section--terra        → Terra-Statement-Bruch
   .home-case-teaser.section--dark     → Dark-Vertrauenssignal-Bruch
   Compound-Selektoren überstimmen die Komponenten-eigenen Backgrounds
   (Source-Order-Sicherheit), lassen die Komponenten-Klassen aber unangetastet.
   ═══════════════════════════════════════════════════════════════ */

/* Terra-Bruch auf Problem-Section */
.home-problem.section--terra {
  background: hsl(var(--accent));
}

.home-problem.section--terra .home-problem__headline,
.home-problem.section--terra .home-problem__closing {
  color: hsl(var(--bg));
}

.home-problem.section--terra .home-problem__body {
  color: hsl(var(--ink));
}

/* Dark-Bruch auf Case-Teaser */
.home-case-teaser.section--dark {
  background: hsl(var(--ink));
}

.home-case-teaser.section--dark .case-teaser__h2,
.home-case-teaser.section--dark .case-teaser__metric-value,
.home-case-teaser.section--dark .case-teaser__cta {
  color: hsl(var(--bg));
}

.home-case-teaser.section--dark .case-teaser__lead {
  color: hsl(var(--bg));
  opacity: 0.85;
}

.home-case-teaser.section--dark .case-teaser__metric {
  border-top-color: hsl(var(--ink-soft));
}
