/* ============ FONTS (eingebettet, kein CDN) ============ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(/assets/fonts/inter.1dc044f4.woff2) format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/geistmono.0e04bb6e.woff2) format('woff2');
}

/* ============ TOKENS ============ */
/* Standard: dunkles Theme. Headlines: Inter Black. Text: Inter Regular. */
:root {
  --purple: #6a0dad;

  --bg: #0a0a0a;             /* Seiten- und Kartengrund */
  --bg-soft: #151515;        /* Panels, Karten-Hover — neutral */
  --line: #262626;           /* Hairlines — neutral */
  --txt: #ffffff;            /* Überschriften, Primärtext */
  --txt-quote: #f2f2f2;      /* Zitat-Text — fast weiß */
  --txt-soft: #ededed;       /* Fließtext — fast weiß, neutral */
  --txt-faint: #8a8a8a;      /* Nur Labels + Metazeilen — neutrales Grau */
  --accent-text: #b07ce8;    /* Violett NUR als Akzent */
  --badge-bg: #1c1029;       /* nur noch für Akzent-Chips (Prozesskette) */
  --badge-line: #45256b;

  /* Invertierte Töne (Abschluss-Panel + Karten-Hover) */
  --inv-bg: #ffffff;
  --inv-txt: #0a0a0a;
  --inv-soft: #5d5668;
  --inv-faint: #9a94a5;
  --inv-txt-quote: #141414;
  --inv-txt-soft: #1f1f1f;
  --inv-txt-faint: #6f6f6f;
  --inv-accent: #6a0dad;
  --inv-line: #d9d9d9;

  /* Primär-Button */
  --btn-bg: #ffffff;
  --btn-txt: #0a0a0a;

  --nav-bg: rgba(10,10,10,0.85);

  /* Mono: Geist Mono (self-hosted, Constantins Wahl 06.07.2026) */
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;
  --sans: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --display: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { overflow-x: clip; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--txt);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

::selection { background: var(--purple); color: #ffffff; }

/* ============ NAV ============ */
/* Startet unsichtbar über dem Hero; Hintergrund + Linie kommen erst mit dem Scrollen.
   Beim Runterscrollen taucht die Leiste weg, beim Hochscrollen kommt sie zurück (script.js). */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    -webkit-backdrop-filter 0.4s ease,
    backdrop-filter 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
nav.scrolled {
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
nav.nav-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) {
  nav { transition: none; }
}

.nav-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  color: var(--txt);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--txt-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a[aria-current="page"] { color: var(--txt); }

.nav-links a.nav-cta {
  white-space: nowrap;
  background: linear-gradient(to top, var(--purple) 50%, var(--btn-bg) 50.2%);
  background-size: 100% 202%;
  background-position: top;
  color: var(--btn-txt);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: background-position 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}
.nav-links a.nav-cta:hover { background-position: bottom; color: #ffffff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--txt);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 48px 100px;
  max-width: 900px; /* trägt die größere H1 (66px), Pointen-Zeile bleibt einzeilig */
  margin: 0 auto;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 36px;
}

h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(41px, 6.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin-bottom: 32px;
}
h1 em {
  font-style: normal;
  font-weight: 300;
  font-family: var(--sans);
  color: var(--txt-soft);
  font-size: 0.94em;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--txt-soft);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 52px;
}
.hero-sub strong { font-weight: 500; color: var(--txt); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to top, var(--purple) 50%, var(--btn-bg) 50.2%);
  background-size: 100% 202%;
  background-position: top;
  color: var(--btn-txt);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-position 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}
.btn-primary:hover { background-position: bottom; color: #ffffff; }

.btn-secondary {
  color: var(--txt-soft);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  /* Grundlinie grau (voll), Akzentlinie wächst beim Hover von links darüber */
  background:
    linear-gradient(var(--accent-text), var(--accent-text)) no-repeat left bottom / 0 1px,
    linear-gradient(var(--line), var(--line)) no-repeat left bottom / 100% 1px;
  padding-bottom: 3px;
  transition: color 0.2s ease, background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-secondary:hover { color: var(--accent-text); background-size: 100% 1px, 100% 1px; }

.hero-meta {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-faint);
}

/* ============ SECTIONS ============ */
/* Jede Sektion ist eine eigene Bühne: ~80 % Viewport, Inhalt vertikal zentriert */
section {
  padding: 96px 48px;
  max-width: 940px;
  margin: 0 auto;
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-bottom: 24px;
}

h2 {
  font-family: var(--display);
  font-weight: 850;
  font-size: clamp(28px, 4.3vw, 41px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 24px;
}

.section-body {
  font-size: 18px;
  font-weight: 400;
  color: var(--txt-soft);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 64px;
}
.section-body strong { font-weight: 500; color: var(--txt); }

/* ============ CARD-GRIDS (Hairline-Raster) ============ */
.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  /* Inversion als Wipe: die Gegenfarbe steigt beim Hover von unten auf */
  background: linear-gradient(to top, var(--inv-bg) 50%, var(--bg) 50.2%);
  background-size: 100% 202%;
  background-position: top;
  color: var(--txt); /* wichtig: Farbe an der Karte auflösen, damit der Hover-Token-Swap auch vererbte Texte (Titel) erfasst */
  padding: 40px;
  transition: background-position 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.card * { transition: color 0.3s ease, border-color 0.3s ease; }

/* Hover: Karte invertiert komplett (inkl. --bg für eingebettete Flächen wie .scn-mini) */
.card:hover {
  background-position: bottom;
  --txt: var(--inv-txt);
  --txt-quote: var(--inv-txt-quote);
  --txt-soft: var(--inv-txt-soft);
  --txt-faint: var(--inv-txt-faint);
  --accent-text: var(--inv-accent);
  --line: var(--inv-line);
  --bg: var(--inv-bg);
}

.card-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--txt-faint);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.card-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card-title-lg {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--txt-soft);
  line-height: 1.7;
}
.card-desc-md {
  font-size: 16px;
  font-weight: 400;
  color: var(--txt-soft);
  line-height: 1.75;
}

.card-hook {
  font-size: 16px;
  font-weight: 500;
  color: var(--txt);
  line-height: 1.55;
  margin-bottom: 12px;
}

.card-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  color: var(--txt-soft);
  text-decoration: none;
  background:
    linear-gradient(var(--accent-text), var(--accent-text)) no-repeat left bottom / 0 1px,
    linear-gradient(var(--line), var(--line)) no-repeat left bottom / 100% 1px;
  padding-bottom: 3px;
  transition: color 0.2s ease, background-size 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.card-link:hover { color: var(--accent-text); background-size: 100% 1px, 100% 1px; }

/* ============ STATEMENT ============ */
.statement { max-width: 840px; }
.statement blockquote {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5.1vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.statement blockquote strong {
  font-weight: 300;
  font-family: var(--sans);
  color: var(--txt-soft);
  letter-spacing: -0.02em;
}
.statement-source {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-faint);
  line-height: 1.7;
}

/* ============ PANEL (getönt) ============ */
.panel {
  background: var(--bg-soft);
  padding: 72px 64px;
}
.panel .section-body { margin-bottom: 40px; }
.about-lines p {
  font-size: 19px;
  font-weight: 400;
  color: var(--txt-quote);
  line-height: 1.75;
  max-width: 600px;
}
.about-lines p + p { margin-top: 18px; }
.about-lines .kicker { font-weight: 500; color: var(--txt); }

/* ============ QUOTES ============ */
.lead-quote {
  border-left: 2px solid var(--line);
  padding-left: 40px;
  margin-bottom: 64px;
}
.lead-quote blockquote {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.quote-source {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-faint);
  line-height: 1.7;
}
.card blockquote {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--txt-quote);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ============ STATEMENT-PROGRESSION (drei Stufen in Typo) ============ */
.progression { display: flex; flex-direction: column; gap: 0.06em; }
.progression .step-1 {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--txt-faint);
  letter-spacing: -0.02em;
}
.progression .step-2 {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--txt-soft);
  letter-spacing: -0.025em;
}
.progression .step-3 {
  font-weight: 900;
  color: var(--txt);
}

/* ============ CHIPS (Content-Filter) ============ */
.chain-chip {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--txt);
  background: var(--bg-soft);
}
.chain-chip.lit {
  border-color: var(--badge-line);
  background: var(--badge-bg);
  color: var(--accent-text);
}
/* ============ PHASEN (große Bild-Bühne, Text läuft über das Bild) ============ */
/* Bricht aus der Inhaltsspalte aus — bis 1240px breit */
.phase-canvas {
  position: relative;
  width: min(1240px, calc(100vw - 96px));
  margin-inline: calc((100% - min(1240px, 100vw - 96px)) / 2);
  aspect-ratio: 16 / 9;
  min-height: 480px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.phase-canvas + .phase-canvas { margin-top: 48px; }

.phase-canvas > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Bühnen-Parallax: Bild leicht überdimensioniert, JS verschiebt beim Scrollen.
   Settle: Bühne startet abgedunkelt + minimal vergrößert (scale via JS),
   „Licht an" (.lit) sobald sie einscrollt — das Bild setzt sich. */
.phase-canvas:not(.no-img) > img {
  height: 114%;
  top: -7%;
  bottom: auto;
  will-change: transform;
  opacity: 0.45;
  transition: opacity 1.1s ease;
}
.phase-canvas.lit > img { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .phase-canvas:not(.no-img) > img { height: 100%; top: 0; transform: none !important; opacity: 1; transition: none; }
}

/* Leichter Schatten über dem ganzen Bild (wie Original: Schwarz, 40 %)
   plus Verlauf zur Textseite für Lesbarkeit */
.phase-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0) 68%),
    rgba(0,0,0,0.38);
}
.phase-canvas .phase-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 64px 72px;
}
.phase-canvas.rev .phase-copy {
  margin-left: auto;
  text-align: right;
}

/* Bühne ohne Bild: gleicher Rahmen, gestrichelt, mit Slot-Markierung */
.phase-canvas.no-img {
  border-style: dashed;
  background:
    linear-gradient(135deg, transparent 48%, #272334 48%, #272334 52%, transparent 52%) center / 32px 32px repeat,
    #0d0b11;
}
.slot-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px dashed rgba(255,255,255,0.28);
  padding: 5px 12px;
  background: rgba(10,10,10,0.7);
}
.phase-canvas.rev .slot-tag { right: auto; left: 20px; }

.phase-canvas h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 37px);
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin-bottom: 20px;
  text-wrap: balance;
  color: #ffffff;
}
.phase-copy p {
  font-size: 16.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
}
.phase-copy p + p { margin-top: 14px; }
.phase-copy p strong { font-weight: 600; color: #ffffff; }
.phase-copy .card-label { margin-bottom: 16px; color: rgba(255,255,255,0.6); }

/* Grafik-Platzhalter */
.media-slot {
  border: 1.5px dashed var(--line);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--txt-faint);
  background:
    linear-gradient(135deg, transparent 48%, var(--line) 48%, var(--line) 52%, transparent 52%) center / 28px 28px repeat,
    transparent;
}
.media-slot svg { opacity: 0.7; }
.media-slot .slot-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg);
  padding: 4px 10px;
}
.media-slot .slot-hint {
  font-size: 12px;
  font-weight: 400;
  background: var(--bg);
  padding: 2px 10px;
}

/* ============ CTA (invertiertes Panel) ============ */
.cta-panel {
  position: relative;
  padding: 0;
}
.cta-panel .section-label { color: var(--txt-faint); }
.cta-panel h2 { color: var(--txt); font-size: clamp(32px, 4.9vw, 47px); }
.cta-panel .section-body { color: var(--txt-soft); margin-bottom: 44px; }
.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: filter 0.15s;
}
.btn-purple { transition: filter 0.3s ease; }
.btn-purple:hover { filter: brightness(1.3); }
.cta-meta {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-faint);
}

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--line);
  max-width: 940px;
  margin: 0 auto;
  padding: 80px 48px 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  color: var(--txt);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.footer-tagline { font-size: 14px; color: var(--txt-faint); line-height: 1.7; }
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-faint);
  margin-bottom: 20px;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-size: 14px;
  color: var(--txt-soft);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col-links a:hover { color: var(--accent-text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-legal { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--txt-faint); }
.footer-legal a { color: var(--txt-faint); text-decoration: none; margin-left: 18px; }
.footer-legal a:first-child { margin-left: 0; }
.footer-legal a:hover { color: var(--accent-text); }


/* ============ PROSE (Rechtstexte, Grounding) ============ */
.hero-compact {
  min-height: 0;
  padding: 170px 48px 30px;
  max-width: 940px; /* bündig mit den Prose-Sektionen */
}
section.prose-section {
  min-height: 0;
  display: block;
  padding-top: 40px;
}
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17.5px; font-weight: 600; margin: 32px 0 10px; }
.prose h4 { font-size: 15.5px; font-weight: 600; margin: 24px 0 8px; }
.prose p, .prose li {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--txt-soft);
  line-height: 1.75;
}
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 20px; }
.prose a { color: var(--accent-text); text-decoration: none; border-bottom: 1px solid var(--badge-line); }
.prose a:hover { border-color: var(--accent-text); }
.prose dl { margin: 20px 0 8px; }
.prose dt {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt-faint);
  padding-top: 14px;
}
.prose dd {
  font-size: 15.5px;
  color: var(--txt-soft);
  line-height: 1.7;
  padding: 4px 0 14px;
  border-bottom: 1px solid var(--line);
}
.page-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--txt-faint);
}

/* ============ CONTENT-LISTE ============ */
.post-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--txt-faint);
  margin-top: 18px;
}
.chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* ============ ANIMATION ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.5s ease both; }
h1            { animation: fadeUp 0.5s ease 0.08s both; }
.hero-sub     { animation: fadeUp 0.5s ease 0.16s both; }
.hero-actions { animation: fadeUp 0.5s ease 0.22s both; }
.hero-meta    { animation: fadeUp 0.5s ease 0.28s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-eyebrow, h1, .hero-sub, .hero-actions, .hero-meta { animation: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .phase-canvas {
    width: calc(100vw - 48px);
    margin-inline: calc((100% - (100vw - 48px)) / 2);
    aspect-ratio: auto;
    min-height: 0;
  }
  .phase-canvas .phase-copy { padding: 220px 28px 40px; max-width: none; }
  .phase-canvas.no-img .phase-copy { padding-top: 96px; }
  .phase-canvas.rev .phase-copy { text-align: left; }
  .phase-scrim {
    background:
      linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.1) 80%),
      rgba(0,0,0,0.3);
  }
  .phase-canvas + .phase-canvas { margin-top: 28px; }
}
/* Burger-Menü schon ab Tablet-Breite — fünf Nav-Punkte + CTA passen darunter nicht mehr */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 22px 24px 28px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 640px) {
  nav { padding: 0 24px; height: 60px; }
  .hero { padding: 110px 24px 70px; }
  section { padding: 72px 24px; }
  .panel { padding: 48px 28px; }
  .lead-quote { padding-left: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 56px 24px 36px; }
  .draft-controls { bottom: 12px; right: 12px; }
}

/* ============ HEADLINE-REVEAL (aktuell nur Home, zur Bewertung) ============ */
.reveal-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.reveal-word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.45s ease;
  transition-delay: var(--rd, 0s);
  will-change: transform;
}
.has-reveal.revealed .reveal-word { transform: translateY(0); opacity: 1; }
h1.has-reveal { animation: none; }
/* Hero-Elemente warten, bis die H1 aufgebaut ist */
.hero:has(h1.has-reveal) .hero-sub    { animation-delay: 0.55s; }
.hero:has(h1.has-reveal) .hero-actions{ animation-delay: 0.72s; }
.hero:has(h1.has-reveal) .hero-meta   { animation-delay: 0.88s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-word { transform: none; opacity: 1; transition: none; }
}

/* ============ ATMOSPHÄRE (aktuell nur Home, zur Bewertung) ============ */
/* Feines Korn über allem — macht aus flachem Schwarz eine Oberfläche */
.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* Violette Lichtauren */
.has-glow { position: relative; }
.glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  aspect-ratio: 1;
}
.glow-cta {
  width: min(1250px, 140vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(106,13,173,0.20), transparent 74%);
}
@media (max-width: 640px) {
  .glow-cta { width: 100%; }
}

/* ============ LAUFBAND (Testimonials) ============ */
.marquee {
  width: min(1240px, calc(100vw - 96px));
  margin-inline: calc((100% - min(1240px, calc(100vw - 96px))) / 2);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 90s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  width: 420px;
  flex: none;
  padding: 32px 36px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.marquee-item blockquote {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--txt-quote);
  line-height: 1.65;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
}
@media (max-width: 640px) {
  .marquee { width: calc(100vw - 48px); margin-inline: calc((100% - (100vw - 48px)) / 2); }
  .marquee-item { width: 300px; padding: 24px 26px; }
}

/* ============ HERO MIT BILD-BACKDROP ============ */
.hero-media {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 78%),
    linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.15) 38%, rgba(10,10,10,0.3) 100%);
}

/* Karten mit mehreren Absätzen */
.card-desc-md + .card-desc-md { margin-top: 12px; }
.card-desc-md + .card-hook { margin-top: 16px; margin-bottom: 0; }

/* ============ SZENARIOSCHMIEDE ============ */
/* Instrument 1: die 2×2-Szenariomatrix — eckig, Hairlines, violetter Ursprung */
.hmx-wrap { max-width: 680px; width: 100%; margin-inline: auto; }
.hmx-frame {
  display: grid;
  grid-template:
    ".    top    .    " auto
    "left matrix right" 1fr
    ".    bottom .    " auto
    / auto 1fr auto;
  gap: 14px;
  align-items: center;
  justify-items: center;
}
.hmx-pole {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  white-space: nowrap;
}
.hmx-pole-top { grid-area: top; }
.hmx-pole-bottom { grid-area: bottom; }
.hmx-pole-left { grid-area: left; writing-mode: vertical-rl; transform: rotate(180deg); }
.hmx-pole-right { grid-area: right; writing-mode: vertical-rl; }
.hmx {
  grid-area: matrix;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 1.15;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(21,21,21,0.85), rgba(10,10,10,0.3) 60%, rgba(21,21,21,0.7));
}
.hmx-axis { position: absolute; background: rgba(255,255,255,0.26); pointer-events: none; z-index: 2; }
.hmx-axis-v { left: 50%; top: 0; bottom: 0; width: 1px; margin-left: -0.5px; }
.hmx-axis-h { top: 50%; left: 0; right: 0; height: 1px; margin-top: -0.5px; }
/* Ursprung: der Punkt, an dem sich die zwei Unsicherheiten kreuzen — glüht violett */
.hmx-origin {
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--accent-text);
  box-shadow: 0 0 14px 3px rgba(106,13,173,0.75);
  pointer-events: none;
  z-index: 2;
}
.q {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  padding: clamp(16px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.q::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 130% at var(--gx) var(--gy), rgba(106,13,173,0.28), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.q:nth-of-type(1) { --gx: 100%; --gy: 100%; }
.q:nth-of-type(2) { --gx: 0%; --gy: 100%; }
.q:nth-of-type(3) { --gx: 100%; --gy: 0%; }
.q:nth-of-type(4) { --gx: 0%; --gy: 0%; }
.q:hover::before, .q:focus-visible::before, .q.open::before { opacity: 1; }
.q:focus-visible { outline: 2px solid var(--accent-text); outline-offset: -4px; }
.q-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  transition: color 0.2s;
}
.q:hover .q-tag, .q.open .q-tag { color: var(--accent-text); }
.q-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--txt);
  text-wrap: balance;
}

/* Volltext-Overlay: der Quadrant wächst beim Hover/Öffnen aus seiner Ecke
   über die gesamte Matrix und wird zur Lesefläche für sein Szenario */
.q:hover, .q:focus-visible, .q.open { z-index: 4; }
.q-full {
  position: absolute;
  z-index: 3;
  padding: clamp(22px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(130% 130% at var(--ox, 0%) var(--oy, 0%), rgba(106,13,173,0.20), transparent 58%),
    #131313;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  overflow-y: auto;
  text-align: left;
  cursor: pointer;
}
.q:nth-of-type(1) .q-full { inset: 0 -100% -100% 0; transform-origin: top left; --ox: 0%; --oy: 0%; }
.q:nth-of-type(2) .q-full { inset: 0 0 -100% -100%; transform-origin: top right; --ox: 100%; --oy: 0%; }
.q:nth-of-type(3) .q-full { inset: -100% -100% 0 0; transform-origin: bottom left; --ox: 0%; --oy: 100%; }
.q:nth-of-type(4) .q-full { inset: -100% 0 0 -100%; transform-origin: bottom right; --ox: 100%; --oy: 100%; }
.q:hover .q-full, .q:focus-visible .q-full, .q.open .q-full {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.qf-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.qf-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--txt);
  text-wrap: balance;
}
.qf-sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--txt);
  line-height: 1.5;
}
.qf-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--txt-soft);
  line-height: 1.65;
  max-width: 56ch;
  margin-top: 4px;
}
.hmx-detail { display: none; }
@media (max-width: 640px) {
  .hmx-frame {
    grid-template:
      ".    top    .    " auto
      "left matrix right" 1fr
      ".    bottom .    " auto
      / 18px minmax(0, 1fr) 18px;
    column-gap: 6px;
    row-gap: 14px;
  }
  .q { padding: 16px 14px; }
  .q-full { display: none; }
  .hmx-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    background:
      radial-gradient(120% 110% at 0% 0%, rgba(106,13,173,0.18), transparent 58%),
      #131313;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hmx-detail[hidden] { display: none; }
  .hmx-detail.open { opacity: 1; transform: none; }
  .hmx-detail .qf-title { font-size: 25px; }
  .hmx-detail .qf-sub { font-size: 15px; }
  .hmx-detail .qf-text { font-size: 15px; line-height: 1.65; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .q-full { transition: none; transform: none; }
  .hmx-detail { transition: none; transform: none; }
}

/* Matrix-Choreografie: baut sich beim Einscrollen auf (script.js setzt html.js + .built) */
.js .hmx-axis-h { transform: scaleX(0); }
.js .hmx-axis-v { transform: scaleY(0); }
.js .hmx-axis { transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.js .hmx-axis-h { transition-delay: 0.15s; }
.js .hmx-axis-v { transition-delay: 0.3s; }
.js .hmx-origin { opacity: 0; transition: opacity 0.5s ease 0.75s; }
.js .hmx-pole { opacity: 0; transition: opacity 0.6s ease 0.85s; }
.js .q .q-tag { opacity: 0; transform: translateY(6px); transition: opacity 0.55s ease var(--bd, 0.9s), transform 0.55s ease var(--bd, 0.9s), color 0.2s; }
.js .q .q-name { opacity: 0; transform: translateY(6px); transition: opacity 0.55s ease var(--bd, 0.9s), transform 0.55s ease var(--bd, 0.9s); }
.hmx-frame.built .hmx-axis { transform: none; }
.hmx-frame.built .hmx-origin, .hmx-frame.built .hmx-pole { opacity: 1; }
.hmx-frame.built .q .q-tag, .hmx-frame.built .q .q-name { opacity: 1; transform: none; }

/* Instrument 2: der Szenariotrichter — rahmenlos auf Schwarz, zeichnet sich beim Einscrollen */
.instrument { max-width: 720px; width: 100%; margin-inline: auto; }
.instrument svg { width: 100%; height: auto; display: block; overflow: visible; }
.inst-cap {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-faint);
  text-align: center;
  margin-top: 24px;
}
.cone text { font-family: var(--mono); }
.cone .yr { fill: var(--txt-faint); font-size: 12px; }
.cone .cap { fill: var(--txt-faint); font-size: 12px; letter-spacing: 1px; }
.cone .today { fill: var(--txt-faint); font-size: 13px; letter-spacing: 1px; }
/* Szenario-Typen am rechten Rand: Best/Base/Worst an den Dots, Wildcards an den gestrichelten Rändern */
.cone .sc-label { fill: var(--txt-soft); font-size: 12px; font-weight: 600; letter-spacing: 1.2px; }
.cone .sc-label.wc { fill: var(--txt-faint); font-size: 11px; }
.js .cone .sc-label { opacity: 0; transition: opacity 0.6s ease 1.15s; }
.cone.drawn .sc-label { opacity: 1; }
.cone .grid-line { stroke: rgba(255,255,255,0.08); stroke-width: 1; }
.cone .fl { stroke: rgba(255,255,255,0.24); stroke-width: 1; stroke-linecap: round; }
.cone .fl-hl { stroke: var(--accent-text); stroke-width: 2; stroke-linecap: round; }
.cone .fl-edge { stroke: #6f6f6f; stroke-width: 1.4; stroke-dasharray: 2 6; stroke-opacity: 0.7; }
.cone .cone-dot { fill: var(--accent-text); }
.js .cone-line { stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 0.61, 0.36, 1); }
.cone.drawn .cone-line { stroke-dashoffset: 0; }
.js .cone-dot { opacity: 0; transition: opacity 0.5s ease; }
.js .fl-edge { opacity: 0; transition: opacity 0.9s ease 0.75s; }
.cone.drawn .cone-dot, .cone.drawn .fl-edge { opacity: 1; }

/* Die fünf Schritte der Werkstatt — Hairline-Liste, Mono-Nummern */
.steps { list-style: none; }
.steps li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 200px 1fr;
  gap: 8px 32px;
  align-items: baseline;
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.st-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--txt-faint);
}
.st-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--txt);
}
.st-note { color: var(--txt-soft); font-size: 15.5px; line-height: 1.7; }
@media (max-width: 640px) {
  .steps li { grid-template-columns: 56px 1fr; }
  .steps .st-note { grid-column: 2; }
}

/* Mini-Möglichkeitsraum in den Szenario-Karten (2×2 der vier Zukünfte) */
.scn-mini {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.scn-mini li {
  background: var(--bg);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--txt-faint);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Breite Karte (Home: 5. Intervention über beide Spalten) */
.card-wide { grid-column: 1 / -1; }

@media (prefers-reduced-motion: reduce) {
  .js .hmx-axis { transition: none; transform: none; }
  .js .hmx-origin, .js .hmx-pole { opacity: 1; transition: none; }
  .js .q .q-tag, .js .q .q-name { opacity: 1; transform: none; transition: color 0.2s; }
  .js .cone-line { transition: none; stroke-dashoffset: 0; }
  .js .cone-dot, .js .fl-edge { opacity: 1; transition: none; }
  .js .cone .sc-label { opacity: 1; transition: none; }
}

/* ============ PAGINATION (Content) ============ */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
}
.page-info {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-faint);
}

/* ============ ARTIKEL ============ */
.toc-list { list-style: none; max-width: 720px; }
.toc-list li { border-bottom: 1px solid var(--line); }
.toc-list a {
  display: block;
  padding: 14px 2px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--txt-soft);
  text-decoration: none;
  transition: color 0.15s, padding-left 0.25s cubic-bezier(0.22,1,0.36,1);
}
.toc-list a:hover { color: var(--accent-text); padding-left: 10px; }
.prose h2 { scroll-margin-top: 96px; }
.prose-lg p, .prose-lg li { font-size: 18px; line-height: 1.85; }
.prose-lg p { margin-bottom: 18px; }
.prose-lg h2 { font-size: 28px; margin: 64px 0 20px; }


/* Feintypografie (Quelle: build_deploy.py, FINETYPO_CSS) */
p, li, .card-desc { text-wrap: pretty; }
.card-title, .read-next-title { text-wrap: balance; }
.prose { hyphens: auto; }


/* Inversions-Feinschliff, abgenommen 08.07.2026 (Quelle: build_deploy.py, HOVER_CSS) */
.card, .read-next-row {
  background: linear-gradient(
    to top,
    var(--inv-bg) 50%,
    var(--purple) 50%,
    var(--purple) calc(50% + 1.5px),
    var(--bg) calc(50% + 2.5px)
  );
  background-size: 100% 202%;
  background-position: top;
}
.card:hover, .read-next-row:hover { background-position: bottom; }
/* Einfahren (Kante steigt): unten zuerst */
.card:hover .card-link { transition-delay: 0.02s; }
.card:hover .card-desc, .card:hover .card-desc-md, .card:hover blockquote, .card:hover cite { transition-delay: 0.1s; }
.card:hover .card-title, .card:hover .card-title-lg, .card:hover .card-hook { transition-delay: 0.18s; }
.card:hover .card-label { transition-delay: 0.26s; }
/* Ausfahren (Kante faellt): oben zuerst */
.card .card-label { transition-delay: 0.02s; }
.card .card-title, .card .card-title-lg, .card .card-hook { transition-delay: 0.1s; }
.card .card-desc, .card .card-desc-md, .card blockquote, .card cite { transition-delay: 0.18s; }
.card .card-link { transition-delay: 0.26s; }
@media (prefers-reduced-motion: reduce) {
  .card *, .card:hover * { transition-delay: 0s; }
}


/* Artikelseiten (Quelle: site/build_articles.py, ARTICLE_CSS) */
.prose img { display: block; width: 100%; height: auto; margin: 28px 0; }
.prose blockquote { margin: 36px 0; font-size: 24px; font-weight: 300; line-height: 1.5; color: var(--txt-soft); }
.prose blockquote p { margin: 0; font-size: inherit; }

/* Feintypografie Artikel: Lead-Absatz + Mono-Kapitelnummern (07.07.2026) */
.prose-lg p.lead { font-size: 21px; font-weight: 300; line-height: 1.7; }
.prose-lg { counter-reset: kapitel; }
.prose-lg h2 { counter-increment: kapitel; }
.prose-lg h2::before {
  content: counter(kapitel, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--txt-faint);
  margin-bottom: 10px;
}
.toc-list { counter-reset: toc; }
.toc-list li { counter-increment: toc; }
.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--txt-faint);
  margin-right: 16px;
}

/* Weiterlesen-Register: typografische Zeilen, Hover = Vollinversions-Wipe wie .card */
.read-next { margin-top: 24px; border-top: 1px solid var(--line); }
.read-next-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--txt);
  background: linear-gradient(to top, var(--inv-bg) 50%, var(--bg) 50.2%);
  background-size: 100% 202%;
  background-position: top;
  transition: background-position 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.read-next-row:hover {
  background-position: bottom;
  --txt: var(--inv-txt);
  --txt-soft: var(--inv-txt-soft);
  --txt-faint: var(--inv-txt-faint);
  --accent-text: var(--inv-accent);
}
.read-next-meta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--txt-faint);
  white-space: nowrap;
}
.read-next-title {
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--txt);
}
.read-next-arrow {
  font-size: 22px;
  font-weight: 300;
  color: var(--txt-faint);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.read-next-row:hover .read-next-arrow { transform: translateX(6px); color: var(--txt); }
@media (max-width: 720px) {
  .read-next-row { grid-template-columns: 1fr auto; gap: 10px 16px; padding: 26px 8px; }
  .read-next-meta { grid-column: 1 / -1; }
  .read-next-title { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .read-next-row, .read-next-arrow { transition: none; }
}
