@import url("./assets/fonts/fonts.css");

/* ============================================================
   Growth Lab Blueprint — Designsystem
   Siehe DESIGN.md. Tokens zuerst, dann Grundlagen, dann Bausteine,
   dann Abschnitte, zuletzt Bewegung.
   ============================================================ */

:root {
  --bg: #F7F9FC;
  --flaeche: #FFFFFF;
  --rand: #E3E8EF;
  --text: #0A2540;
  --text-leise: #5B6B7F;
  --primaer: #1B5FCC;
  --akzent: #E8F0FE;

  /* Abgeleitete Töne für Tiefe. Nicht neu erfunden, sondern
     Abstufungen der sieben Grundfarben. */
  --primaer-dunkel: #164FA8;
  --rand-zart: #EDF1F7;
  --text-sehr-leise: #8494A8;

  --breite: 1200px;
  --breite-schmal: 68ch;
  --abstand-abschnitt: 140px;
  --radius: 12px;
  --radius-gross: 20px;
  --radius-pill: 999px;

  --schatten-zart: 0 1px 2px rgba(10, 37, 64, 0.04),
                   0 4px 16px rgba(10, 37, 64, 0.04);
  --schatten-mittel: 0 2px 4px rgba(10, 37, 64, 0.04),
                     0 12px 32px rgba(10, 37, 64, 0.07);
  --schatten-tief: 0 4px 8px rgba(10, 37, 64, 0.05),
                   0 24px 56px rgba(10, 37, 64, 0.10);

  --zeit: 0.4s;
  --kurve: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ruhiger Lichtschein im Hintergrund. Ersetzt die frühere leere
   Fläche durch Tiefe, ohne vom Text abzulenken. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(27, 95, 204, 0.10), transparent 62%),
    radial-gradient(46rem 34rem at 4% 12%, rgba(27, 95, 204, 0.06), transparent 60%);
}

h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 500;
}

h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.012em; }

p { margin: 0 0 1.1em; max-width: 65ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--primaer); text-underline-offset: 3px; }

strong { font-weight: 600; color: var(--text); }

::selection { background: var(--akzent); color: var(--text); }

:focus-visible {
  outline: 2px solid var(--primaer);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Bausteine ---------- */

.container {
  width: 100%;
  max-width: var(--breite);
  margin: 0 auto;
  padding: 0 32px;
}

.abschnitt {
  padding: var(--abstand-abschnitt) 0;
  position: relative;
}

/* Haarlinie zwischen den Abschnitten, die zu den Rändern hin ausläuft.
   Gliedert, ohne wie ein Kasten zu wirken. */
.abschnitt + .abschnitt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--breite), calc(100% - 64px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rand) 18%, var(--rand) 82%, transparent);
}

.abschnitt--akzent {
  background: linear-gradient(180deg, var(--akzent), #F1F6FE);
  border-block: 1px solid var(--rand-zart);
}

/* Dunkler Kontrapunkt. Bricht die durchgehend helle Fläche auf und gibt
   der Seite Rhythmus — bewusst genau einmal eingesetzt. */
.abschnitt--dunkel {
  /* Die Bürofassade liegt unter den Verläufen. Sie gibt dem dunklen Band
     Textur, ohne mit dem Text zu konkurrieren — deshalb stark abgedunkelt. */
  background:
    radial-gradient(52rem 30rem at 82% 0%, rgba(27, 95, 204, 0.34), transparent 66%),
    linear-gradient(180deg, rgba(12, 42, 74, 0.94), rgba(10, 37, 64, 0.9) 62%, rgba(8, 29, 52, 0.96)),
    url("./assets/img/ausgangslage.jpg") center / cover no-repeat,
    var(--text);
  color: #C7D5E6;
  overflow: hidden;
}

.abschnitt--dunkel h2 { color: #FFFFFF; }
.abschnitt--dunkel p { color: #B3C4D9; }
.abschnitt--dunkel .label { color: #7FAEF5; }
.abschnitt--dunkel .label::before { background: #7FAEF5; }

/* Feines Punktraster als Textur — nur im dunklen Abschnitt sichtbar. */
.abschnitt--dunkel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 78%);
  opacity: 0.6;
}

.abschnitt--akzent + .abschnitt::before,
.abschnitt--akzent::before,
.abschnitt--dunkel + .abschnitt::before,
.abschnitt--dunkel::before { display: none; }

/* Versal-Label mit vorangestellter Linie — die Wegmarke der Seite. */
.label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primaer);
  margin-bottom: 20px;
}

.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primaer);
  flex: none;
  opacity: 0.55;
}

.knopf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rand);
  background: var(--flaeche);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15.5px;
  box-shadow: var(--schatten-zart);
  transition: transform var(--zeit) var(--kurve),
              box-shadow var(--zeit) var(--kurve),
              border-color var(--zeit) var(--kurve),
              background var(--zeit) var(--kurve);
}

.knopf:hover {
  border-color: var(--primaer);
  transform: translateY(-2px);
  box-shadow: var(--schatten-mittel);
}

.knopf-primaer {
  background: linear-gradient(180deg, #2C6FDB, var(--primaer));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 1px 2px rgba(10, 37, 64, 0.10),
              0 8px 24px rgba(27, 95, 204, 0.28);
}

.knopf-primaer:hover {
  background: linear-gradient(180deg, var(--primaer), var(--primaer-dunkel));
  border-color: transparent;
  box-shadow: 0 2px 4px rgba(10, 37, 64, 0.12),
              0 16px 40px rgba(27, 95, 204, 0.34);
}

.karte {
  position: relative;
  background: var(--flaeche);
  border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  padding: 36px;
  box-shadow: var(--schatten-zart);
  transition: transform var(--zeit) var(--kurve),
              box-shadow var(--zeit) var(--kurve),
              border-color var(--zeit) var(--kurve);
}

.karte:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten-mittel);
  border-color: #D3DCE9;
}

.karte--leise {
  background: transparent;
  box-shadow: none;
  border-style: dashed;
}

.karte--leise:hover { box-shadow: none; }

.liste { margin: 0; padding: 0; list-style: none; }

.liste li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-leise);
}

.liste li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--primaer);
  opacity: 0.6;
}

.liste li:last-child { margin-bottom: 0; }

/* Bildflächen. Der Verlauf ist die Rückfallebene, solange ein Foto fehlt;
   die Überlagerung eint Aufnahmen verschiedener Herkunft zu einer Serie. */
.bild {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-gross);
  background: linear-gradient(135deg, var(--akzent) 0%, #C9DBF7 55%, var(--primaer) 100%);
  box-shadow: var(--schatten-tief);
}

.bild img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

.bild::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primaer);
  opacity: 0.16;
  mix-blend-mode: color;
  pointer-events: none;
}

.raster-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

/* ---------- Kopf ---------- */

.kopf {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.92), rgba(247, 249, 252, 0.72));
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--zeit) var(--kurve);
}

.kopf__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 56px;
}

.marke {
  display: inline-flex;
  align-items: center;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: -0.015em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 6px; }

.nav a {
  position: relative;
  color: var(--text-leise);
  text-decoration: none;
  font-size: 15px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--zeit) var(--kurve), background var(--zeit) var(--kurve);
}

.nav a:hover { color: var(--text); background: rgba(10, 37, 64, 0.045); }

.nav .knopf { margin-left: 10px; color: #fff; padding: 11px 22px; }
.nav .knopf:hover { background: linear-gradient(180deg, var(--primaer), var(--primaer-dunkel)); }

/* ---------- Hero ---------- */

.hero {
  overflow: hidden;
  padding: clamp(72px, 11vw, 128px) 0 clamp(80px, 10vw, 120px);
  position: relative;
}

.hero__inner { max-width: 46rem; position: relative; z-index: 1; }
/* Punkt-Ring neben der Hero-Ueberschrift: sechs konzentrische Ringe aus
   204 einzelnen Punkten, verteilt auf drei Ebenen. Die Ebenen atmen
   versetzt, dadurch laeuft eine Welle von innen nach aussen. Gebaut aus
   box-shadow-Kopien eines winzigen Quadrats — kein Bild, keine Anfrage. */
.hero__ring {
  position: absolute;
  right: clamp(148px, 14vw, 258px);
  top: 50%;
  width: 3.2px;
  height: 3.2px;
  margin-top: -30px;
  border-radius: 50%;
  color: var(--primaer);
  pointer-events: none;
  box-shadow:
    0.0px -30.0px 0 0 currentColor,
    13.0px -27.0px 0 0 currentColor,
    23.5px -18.7px 0 0 currentColor,
    29.2px -6.7px 0 0 currentColor,
    29.2px 6.7px 0 0 currentColor,
    23.5px 18.7px 0 0 currentColor,
    13.0px 27.0px 0 0 currentColor,
    0.0px 30.0px 0 0 currentColor,
    -13.0px 27.0px 0 0 currentColor,
    -23.5px 18.7px 0 0 currentColor,
    -29.2px 6.7px 0 0 currentColor,
    -29.2px -6.7px 0 0 currentColor,
    -23.5px -18.7px 0 0 currentColor,
    -13.0px -27.0px 0 0 currentColor,
    0.0px -90.0px 0 0 currentColor,
    14.8px -88.8px 0 0 currentColor,
    29.2px -85.1px 0 0 currentColor,
    42.8px -79.2px 0 0 currentColor,
    55.3px -71.0px 0 0 currentColor,
    66.2px -61.0px 0 0 currentColor,
    75.3px -49.2px 0 0 currentColor,
    82.4px -36.2px 0 0 currentColor,
    87.2px -22.1px 0 0 currentColor,
    89.7px -7.4px 0 0 currentColor,
    89.7px 7.4px 0 0 currentColor,
    87.2px 22.1px 0 0 currentColor,
    82.4px 36.2px 0 0 currentColor,
    75.3px 49.2px 0 0 currentColor,
    66.2px 61.0px 0 0 currentColor,
    55.3px 71.0px 0 0 currentColor,
    42.8px 79.2px 0 0 currentColor,
    29.2px 85.1px 0 0 currentColor,
    14.8px 88.8px 0 0 currentColor,
    0.0px 90.0px 0 0 currentColor,
    -14.8px 88.8px 0 0 currentColor,
    -29.2px 85.1px 0 0 currentColor,
    -42.8px 79.2px 0 0 currentColor,
    -55.3px 71.0px 0 0 currentColor,
    -66.2px 61.0px 0 0 currentColor,
    -75.3px 49.2px 0 0 currentColor,
    -82.4px 36.2px 0 0 currentColor,
    -87.2px 22.1px 0 0 currentColor,
    -89.7px 7.4px 0 0 currentColor,
    -89.7px -7.4px 0 0 currentColor,
    -87.2px -22.1px 0 0 currentColor,
    -82.4px -36.2px 0 0 currentColor,
    -75.3px -49.2px 0 0 currentColor,
    -66.2px -61.0px 0 0 currentColor,
    -55.3px -71.0px 0 0 currentColor,
    -42.8px -79.2px 0 0 currentColor,
    -29.2px -85.1px 0 0 currentColor,
    -14.8px -88.8px 0 0 currentColor;
  animation: ringatmen 5.2s var(--kurve) infinite;
}

.hero__ring::before,
.hero__ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.2px;
  height: 3.2px;
  margin: -1.6px 0 0 -1.6px;
  border-radius: 50%;
  transform-origin: center;
}

.hero__ring::before {
  opacity: 0.66;
  box-shadow:
    0.0px -50.0px 0 0 currentColor,
    14.1px -48.0px 0 0 currentColor,
    27.0px -42.1px 0 0 currentColor,
    37.8px -32.7px 0 0 currentColor,
    45.5px -20.8px 0 0 currentColor,
    49.5px -7.1px 0 0 currentColor,
    49.5px 7.1px 0 0 currentColor,
    45.5px 20.8px 0 0 currentColor,
    37.8px 32.7px 0 0 currentColor,
    27.0px 42.1px 0 0 currentColor,
    14.1px 48.0px 0 0 currentColor,
    0.0px 50.0px 0 0 currentColor,
    -14.1px 48.0px 0 0 currentColor,
    -27.0px 42.1px 0 0 currentColor,
    -37.8px 32.7px 0 0 currentColor,
    -45.5px 20.8px 0 0 currentColor,
    -49.5px 7.1px 0 0 currentColor,
    -49.5px -7.1px 0 0 currentColor,
    -45.5px -20.8px 0 0 currentColor,
    -37.8px -32.7px 0 0 currentColor,
    -27.0px -42.1px 0 0 currentColor,
    -14.1px -48.0px 0 0 currentColor,
    0.0px -110.0px 0 0 currentColor,
    15.0px -109.0px 0 0 currentColor,
    29.7px -105.9px 0 0 currentColor,
    43.8px -100.9px 0 0 currentColor,
    57.2px -94.0px 0 0 currentColor,
    69.4px -85.3px 0 0 currentColor,
    80.4px -75.1px 0 0 currentColor,
    89.9px -63.4px 0 0 currentColor,
    97.7px -50.6px 0 0 currentColor,
    103.6px -36.8px 0 0 currentColor,
    107.7px -22.4px 0 0 currentColor,
    109.7px -7.5px 0 0 currentColor,
    109.7px 7.5px 0 0 currentColor,
    107.7px 22.4px 0 0 currentColor,
    103.6px 36.8px 0 0 currentColor,
    97.7px 50.6px 0 0 currentColor,
    89.9px 63.4px 0 0 currentColor,
    80.4px 75.1px 0 0 currentColor,
    69.4px 85.3px 0 0 currentColor,
    57.2px 94.0px 0 0 currentColor,
    43.8px 100.9px 0 0 currentColor,
    29.7px 105.9px 0 0 currentColor,
    15.0px 109.0px 0 0 currentColor,
    0.0px 110.0px 0 0 currentColor,
    -15.0px 109.0px 0 0 currentColor,
    -29.7px 105.9px 0 0 currentColor,
    -43.8px 100.9px 0 0 currentColor,
    -57.2px 94.0px 0 0 currentColor,
    -69.4px 85.3px 0 0 currentColor,
    -80.4px 75.1px 0 0 currentColor,
    -89.9px 63.4px 0 0 currentColor,
    -97.7px 50.6px 0 0 currentColor,
    -103.6px 36.8px 0 0 currentColor,
    -107.7px 22.4px 0 0 currentColor,
    -109.7px 7.5px 0 0 currentColor,
    -109.7px -7.5px 0 0 currentColor,
    -107.7px -22.4px 0 0 currentColor,
    -103.6px -36.8px 0 0 currentColor,
    -97.7px -50.6px 0 0 currentColor,
    -89.9px -63.4px 0 0 currentColor,
    -80.4px -75.1px 0 0 currentColor,
    -69.4px -85.3px 0 0 currentColor,
    -57.2px -94.0px 0 0 currentColor,
    -43.8px -100.9px 0 0 currentColor,
    -29.7px -105.9px 0 0 currentColor,
    -15.0px -109.0px 0 0 currentColor;
  animation: ringatmen 5.2s var(--kurve) 0.65s infinite;
}

.hero__ring::after {
  opacity: 0.4;
  box-shadow:
    0.0px -70.0px 0 0 currentColor,
    14.6px -68.5px 0 0 currentColor,
    28.5px -63.9px 0 0 currentColor,
    41.1px -56.6px 0 0 currentColor,
    52.0px -46.8px 0 0 currentColor,
    60.6px -35.0px 0 0 currentColor,
    66.6px -21.6px 0 0 currentColor,
    69.6px -7.3px 0 0 currentColor,
    69.6px 7.3px 0 0 currentColor,
    66.6px 21.6px 0 0 currentColor,
    60.6px 35.0px 0 0 currentColor,
    52.0px 46.8px 0 0 currentColor,
    41.1px 56.6px 0 0 currentColor,
    28.5px 63.9px 0 0 currentColor,
    14.6px 68.5px 0 0 currentColor,
    0.0px 70.0px 0 0 currentColor,
    -14.6px 68.5px 0 0 currentColor,
    -28.5px 63.9px 0 0 currentColor,
    -41.1px 56.6px 0 0 currentColor,
    -52.0px 46.8px 0 0 currentColor,
    -60.6px 35.0px 0 0 currentColor,
    -66.6px 21.6px 0 0 currentColor,
    -69.6px 7.3px 0 0 currentColor,
    -69.6px -7.3px 0 0 currentColor,
    -66.6px -21.6px 0 0 currentColor,
    -60.6px -35.0px 0 0 currentColor,
    -52.0px -46.8px 0 0 currentColor,
    -41.1px -56.6px 0 0 currentColor,
    -28.5px -63.9px 0 0 currentColor,
    -14.6px -68.5px 0 0 currentColor,
    0.0px -130.0px 0 0 currentColor,
    15.1px -129.1px 0 0 currentColor,
    30.0px -126.5px 0 0 currentColor,
    44.5px -122.2px 0 0 currentColor,
    58.3px -116.2px 0 0 currentColor,
    71.4px -108.6px 0 0 currentColor,
    83.6px -99.6px 0 0 currentColor,
    94.6px -89.2px 0 0 currentColor,
    104.3px -77.6px 0 0 currentColor,
    112.6px -65.0px 0 0 currentColor,
    119.4px -51.5px 0 0 currentColor,
    124.5px -37.3px 0 0 currentColor,
    128.0px -22.6px 0 0 currentColor,
    129.8px -7.6px 0 0 currentColor,
    129.8px 7.6px 0 0 currentColor,
    128.0px 22.6px 0 0 currentColor,
    124.5px 37.3px 0 0 currentColor,
    119.4px 51.5px 0 0 currentColor,
    112.6px 65.0px 0 0 currentColor,
    104.3px 77.6px 0 0 currentColor,
    94.6px 89.2px 0 0 currentColor,
    83.6px 99.6px 0 0 currentColor,
    71.4px 108.6px 0 0 currentColor,
    58.3px 116.2px 0 0 currentColor,
    44.5px 122.2px 0 0 currentColor,
    30.0px 126.5px 0 0 currentColor,
    15.1px 129.1px 0 0 currentColor,
    0.0px 130.0px 0 0 currentColor,
    -15.1px 129.1px 0 0 currentColor,
    -30.0px 126.5px 0 0 currentColor,
    -44.5px 122.2px 0 0 currentColor,
    -58.3px 116.2px 0 0 currentColor,
    -71.4px 108.6px 0 0 currentColor,
    -83.6px 99.6px 0 0 currentColor,
    -94.6px 89.2px 0 0 currentColor,
    -104.3px 77.6px 0 0 currentColor,
    -112.6px 65.0px 0 0 currentColor,
    -119.4px 51.5px 0 0 currentColor,
    -124.5px 37.3px 0 0 currentColor,
    -128.0px 22.6px 0 0 currentColor,
    -129.8px 7.6px 0 0 currentColor,
    -129.8px -7.6px 0 0 currentColor,
    -128.0px -22.6px 0 0 currentColor,
    -124.5px -37.3px 0 0 currentColor,
    -119.4px -51.5px 0 0 currentColor,
    -112.6px -65.0px 0 0 currentColor,
    -104.3px -77.6px 0 0 currentColor,
    -94.6px -89.2px 0 0 currentColor,
    -83.6px -99.6px 0 0 currentColor,
    -71.4px -108.6px 0 0 currentColor,
    -58.3px -116.2px 0 0 currentColor,
    -44.5px -122.2px 0 0 currentColor,
    -30.0px -126.5px 0 0 currentColor,
    -15.1px -129.1px 0 0 currentColor;
  animation: ringatmen 5.2s var(--kurve) 1.3s infinite;
}

@keyframes ringatmen {
  0%, 100% { transform: scale(0.93); opacity: 0.48; }
  46%      { transform: scale(1.07); opacity: 1; }
}


.hero h1 { margin-bottom: 28px; }

.hero__lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--text-leise);
  max-width: 40rem;
  margin-bottom: 36px;
}

.hero__hinweis {
  font-size: 14px;
  color: var(--text-sehr-leise);
  margin-top: 22px;
}

/* ---------- Methode ---------- */

/* Fünf Phasen auf sechs Spalten: drei oben, zwei breitere unten.
   So bleibt keine Lücke am Reihenende. */
.phasen {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin: 56px 0;
}

.phase { grid-column: span 2; padding-top: 30px; }
.phase:nth-child(4), .phase:nth-child(5) { grid-column: span 3; }

.phase__nr {
  display: block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primaer);
  opacity: 0.28;
  margin-bottom: 14px;
  transition: opacity var(--zeit) var(--kurve);
}

.phase:hover .phase__nr { opacity: 0.7; }

.methode__bild { aspect-ratio: 16 / 7; margin-top: 56px; }

.begleitung { margin-top: 88px; }

.begleitung__kopf { margin-bottom: 36px; }
.begleitung__kopf h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; }

/* Werkzeuge als eigenständiges Raster mit gemeinsamen Trennlinien.
   Kein Kasten je Eintrag — die Linien tragen die Ordnung. */
.werkzeuge {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--rand);
  border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  overflow: hidden;
  box-shadow: var(--schatten-zart);
}

.werkzeug {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px 28px;
  background: var(--flaeche);
  transition: background var(--zeit) var(--kurve);
}

.werkzeug:hover { background: #FCFDFF; }

.werkzeug h4 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--text);
}

.werkzeug p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-leise);
  flex: 1;
}

/* Kleine Bildmarke je Werkzeug: konzentrische Ringe, die beim
   Überfahren aufgehen. */
.werkzeug__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--primaer);
  position: relative;
  opacity: 0.55;
  transition: opacity var(--zeit) var(--kurve);
}

.werkzeug__mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--primaer);
  transform: scale(0.55);
  transition: transform var(--zeit) var(--kurve);
}

.werkzeug:hover .werkzeug__mark { opacity: 1; }
.werkzeug:hover .werkzeug__mark::after { transform: scale(1); }

.werkzeug__tag {
  align-self: flex-start;
  margin-top: 6px;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background: var(--akzent);
  color: var(--primaer);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.werkzeug--hervor { background: linear-gradient(180deg, #FBFCFF, var(--akzent)); }
.werkzeug--hervor:hover { background: linear-gradient(180deg, #FFFFFF, var(--akzent)); }
.werkzeug--hervor .werkzeug__mark { opacity: 1; }
.werkzeug--hervor .werkzeug__mark::after { transform: scale(1); }
.werkzeug--hervor .werkzeug__tag { background: var(--primaer); color: #fff; }

/* ---------- Preis ---------- */

.paket { display: flex; flex-direction: column; }

.paket--hervor { border-color: rgba(27, 95, 204, 0.32); }

.paket--hervor::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 3px;
  border-radius: var(--radius-gross) var(--radius-gross) 0 0;
  background: linear-gradient(90deg, var(--primaer), #4C8AF0);
}

.paket__preis {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 4px 0 0;
}

.paket__hinweis {
  color: var(--text-sehr-leise);
  font-size: 13.5px;
  margin: 8px 0 24px;
}

.paket .liste { margin-bottom: 26px; }
.paket .knopf { margin-top: auto; align-self: flex-start; }

.kondition {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  border-top: 1px solid var(--rand);
  padding-top: 20px;
  margin: 4px 0 28px;
  font-size: 14.5px;
}

.kondition dt {
  color: var(--text-sehr-leise);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 3px;
}

.kondition dd { margin: 0; color: var(--text-leise); }

.preis__fuss {
  margin-top: 40px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-sehr-leise);
  max-width: 82ch;
}

/* ---------- Über uns ---------- */

.ueber__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.ueber__bild { aspect-ratio: 4 / 5; position: sticky; top: 120px; }

.ueber__text { max-width: 60ch; }

.ueber__haltung {
  position: relative;
  padding-left: 24px;
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--text-leise);
}

.ueber__haltung::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--primaer), rgba(27, 95, 204, 0.15));
}

/* ---------- FAQ ---------- */

.faq { margin-top: 48px; max-width: 78ch; border-top: 1px solid var(--rand); }

.faq__eintrag { border-bottom: 1px solid var(--rand); }

.faq__eintrag summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.06rem;
  list-style: none;
  padding: 24px 44px 24px 0;
  position: relative;
  transition: color var(--zeit) var(--kurve);
}

.faq__eintrag summary:hover { color: var(--primaer); }
.faq__eintrag summary::-webkit-details-marker { display: none; }

.faq__eintrag summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border-right: 1.5px solid var(--primaer);
  border-bottom: 1.5px solid var(--primaer);
  transform: rotate(45deg);
  transition: transform var(--zeit) var(--kurve);
}

.faq__eintrag[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }

.faq__eintrag p {
  margin: 0 0 26px;
  color: var(--text-leise);
  max-width: 70ch;
  animation: aufklappen 0.45s var(--kurve);
}

/* ---------- Kontakt ---------- */

.kontakt__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.kontakt__daten {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--rand);
  font-size: 15px;
}

.kontakt__daten dt {
  color: var(--text-sehr-leise);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 4px;
}

.kontakt__daten dd { margin: 0; color: var(--text-leise); }
.kontakt__bild { aspect-ratio: 4 / 3; }

/* ---------- Fuß ---------- */

.fuss {
  border-top: 1px solid var(--rand);
  padding: 64px 0;
  color: var(--text-sehr-leise);
  font-size: 14.5px;
}

.fuss__marke {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.fuss__traeger { margin: 0; }

.fuss__links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 24px; }
.fuss__links a { color: var(--text-leise); text-decoration: none; }
.fuss__links a:hover { color: var(--primaer); }

/* ---------- Rechtstexte ---------- */

.rechtstext { padding: 72px 0 96px; max-width: var(--breite-schmal); }
.rechtstext h1 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 0.7em; }
.rechtstext h2 { font-size: 1.45rem; margin-top: 2.2em; }
.rechtstext h3 { font-size: 1.1rem; margin-top: 1.6em; }
.rechtstext p, .rechtstext li { color: var(--text-leise); }

/* ============================================================
   Bewegung — ausschließlich CSS, die Seite enthält kein Skript.
   ============================================================ */

@keyframes einblenden {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes aufklappen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@keyframes treiben {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2%, 2%, 0) scale(1.06); }
}

/* Auftritt beim Laden: gestaffelt, damit der Blick geführt wird. */
.hero .label      { animation: einblenden 0.7s var(--kurve) both; }
.hero h1          { animation: einblenden 0.8s var(--kurve) 0.08s both; }
.hero__lead       { animation: einblenden 0.8s var(--kurve) 0.16s both; }
.hero .knopf      { animation: einblenden 0.8s var(--kurve) 0.24s both; }
.hero__hinweis    { animation: einblenden 0.8s var(--kurve) 0.30s both; }

body::before { animation: treiben 26s ease-in-out infinite alternate; }

/* Auftritt beim Scrollen. animation-timeline ist noch nicht überall
   verfügbar; ohne Unterstützung steht der Inhalt einfach sofort da. */
@supports (animation-timeline: view()) {
  .abschnitt .label,
  .abschnitt > .container > h2,
  .abschnitt > .container > p,
  .karte,
  .phase,
  .bild,
  .begleitung,
  .kondition,
  .faq__eintrag,
  .kontakt__daten {
    animation: einblenden linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 22%;
  }
}

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

/* ============================================================
   Schmale Fenster
   ============================================================ */

@media (max-width: 1080px) {
  .werkzeuge { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .ueber__inner,
  .kontakt__inner { grid-template-columns: 1fr; gap: 40px; }
  .ueber__bild { position: static; max-width: 22rem; }
}

@media (max-width: 1000px) {
  .phase, .phase:nth-child(4), .phase:nth-child(5) { grid-column: span 3; }
}

@media (max-width: 860px) {
  .raster-2 { grid-template-columns: 1fr; }
  .phase, .phase:nth-child(4), .phase:nth-child(5) { grid-column: span 6; }
}

@media (max-width: 900px) {
  .hero__ring { display: none; }
}

@media (max-width: 720px) {
  :root { --abstand-abschnitt: 84px; }
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .karte { padding: 26px; }
  .nav a:not(.knopf) { display: none; }
  .nav .knopf { margin-left: 0; }
  .abschnitt + .abschnitt::before { width: calc(100% - 40px); }
}

/* ---------- Bildmarke ---------- */

.marke__zeichen {
  width: 30px;
  height: auto;
  margin-right: 11px;
  vertical-align: -7px;
}

.fuss__logo {
  width: 190px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

/* ---------- Zahlungswege ---------- */

.zahlung {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px 28px;
  margin-top: 40px;
  padding: 22px 28px;
  background: var(--flaeche);
  border: 1px solid var(--rand);
  border-radius: var(--radius-pill);
  box-shadow: var(--schatten-zart);
}

.zahlung__titel {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sehr-leise);
}

.zahlung__wege {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zahlung__wege li {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--akzent);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.zahlung__hinweis {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: var(--text-sehr-leise);
  max-width: none;
}

@media (max-width: 720px) {
  .zahlung {
    grid-template-columns: 1fr;
    border-radius: var(--radius-gross);
    padding: 22px;
  }
}

.fuss__kontakt { margin: 10px 0 0; }
.fuss__kontakt a { color: var(--text-leise); text-decoration: none; }
.fuss__kontakt a:hover { color: var(--primaer); }

.fuss__sozial { display: flex; gap: 12px; margin-top: 20px; }

.fuss__sozial a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rand);
  border-radius: 50%;
  color: var(--text-leise);
  transition: color var(--zeit) var(--kurve),
              border-color var(--zeit) var(--kurve),
              transform var(--zeit) var(--kurve);
}

.fuss__sozial a:hover {
  color: var(--primaer);
  border-color: var(--primaer);
  transform: translateY(-2px);
}
