/* ==========================================================================
   BETTERAI.STUDIO / KANZLEI
   Eigenes System für Steuerberater und Anwaltskanzleien: hell-dominant,
   warmes Papier, Anthrazit, ein Tiefgrün. Newsreader (Serif-Display) +
   Public Sans (Body). Keine Verspieltheit: kein Grain, kein Marquee,
   kein Preloader. Autorität durch Ruhe und Präzision.
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/newsreader-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/publicsans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/publicsans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/publicsans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --paper: #F6F4EE;
  --card: #FFFFFF;
  --ink: #1A1D1B;
  --green: #0B4F3C;
  --green-soft: #A8CFC0;

  --bg: var(--paper);
  --fg: var(--ink);
  --fg-60: rgba(26, 29, 27, 0.64);
  --fg-16: rgba(26, 29, 27, 0.16);
  --acc: var(--green);

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Public Sans', -apple-system, system-ui, sans-serif;
  --gutter: clamp(20px, 3.4vw, 56px);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Tiefgrün invertierte Sektionen */
.deep {
  --bg: var(--green);
  --fg: #F0EFE7;
  --fg-60: rgba(240, 239, 231, 0.68);
  --fg-16: rgba(240, 239, 231, 0.22);
  --acc: var(--green-soft);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-padding-top: 92px; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.deep { background: var(--bg); color: var(--fg); }

::selection { background: var(--green); color: #FFFFFF; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 300;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
}
.skip-link:focus { left: 10px; }

/* ---- Typo-Utilities ---- */
.lbl {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
em, i { font-weight: inherit; }

/* ---- Gerüst ---- */
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(12px, 1.6vw, 24px); }

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--fg);
  margin-bottom: clamp(36px, 6vh, 70px);
}
.sec-head .num { color: var(--acc); }
.sec-head .label { flex: 1; }
.sec-head .hint { color: var(--fg-60); }

section { padding: clamp(76px, 12vh, 150px) 0 clamp(66px, 10vh, 130px); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(246, 244, 238, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--fg-16); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px var(--gutter);
}
.site-header a { text-decoration: none; color: var(--ink); }
.wordmark { font-weight: 600; font-size: 13.5px; letter-spacing: 0.15em; text-transform: uppercase; }
.wordmark span { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px); }
.site-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .back { color: var(--fg-60); }

/* ---- Hero ---- */
.hero {
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--fg-60);
  border-bottom: 1px solid var(--fg-16);
  padding-bottom: 16px;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(52px, 8.6vw, 148px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: clamp(34px, 6vh, 72px);
  max-width: 12ch;
}
.hero-h1 > span { display: block; }
.hero-h1 .l2 { margin-left: clamp(30px, 7vw, 150px); }
.hero-h1 em { font-style: italic; color: var(--green); }
.hero-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: end;
  margin-top: clamp(34px, 7vh, 80px);
}
.hero-lead { grid-column: 1 / 7; font-size: 18px; max-width: 46ch; }
.hero-lead strong { font-weight: 600; }
.hero-links { grid-column: 8 / 13; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-note { grid-column: 1 / 7; color: var(--fg-60); font-size: 14.5px; margin-top: 10px; }

.link-line {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1.5px solid var(--acc);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.link-line:hover { color: var(--acc); }
.link-line.big { font-size: 15.5px; }

/* ---- Statements ---- */
.statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.12;
  max-width: 22ch;
  color: var(--fg);
}
.statement em { font-style: italic; color: var(--acc); }

/* ---- 01 Verschiebung ---- */
.shift-body { margin-top: clamp(32px, 5vh, 60px); }
.shift-body .col-a { grid-column: 6 / 10; }
.shift-body .col-b { grid-column: 10 / 13; color: var(--fg-60); }
.shift-body p { font-size: 17px; max-width: 42ch; }
.shift-body strong { font-weight: 600; color: var(--fg); }

.q-list { list-style: none; margin-top: clamp(40px, 6vh, 76px); border-top: 1px solid var(--fg-16); }
.q-list li {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 19px 0;
  border-bottom: 1px solid var(--fg-16);
}
.q-list .num-q { color: var(--acc); }
.q-list .q { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.3vw, 29px); line-height: 1.25; }
.q-list .src { color: var(--fg-60); text-align: right; font-size: 13px; }

/* ---- 02 Der Unterschied: Chat-Panels ---- */
.answers { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.answer-card {
  grid-column: 1 / 7;
  background: var(--card);
  border: 1px solid var(--fg-16);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(26, 29, 27, 0.05);
}
.answer-card.cited { grid-column: 7 / 13; transform: translateY(clamp(18px, 4vh, 52px)); border-color: var(--green); box-shadow: 0 10px 30px rgba(11, 79, 60, 0.10); }
.answer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--fg-16);
  color: var(--fg-60);
}
.answer-card.cited .answer-head { color: var(--green); border-bottom-color: rgba(11, 79, 60, 0.25); }
.answer-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fg-16); }
.answer-card.cited .answer-head .dot { background: var(--green); }
.answer-body { padding: 22px 18px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.msg { display: flex; gap: 12px; align-items: flex-start; }
.msg.user { flex-direction: row-reverse; }
.avatar {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
}
.avatar.ai { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); border-radius: 4px; }
.answer-card.cited .avatar.ai { border-color: var(--green); color: var(--green); }
.bubble { font-size: 15px; line-height: 1.6; padding: 12px 15px; max-width: 88%; }
.msg.user .bubble { background: var(--ink); color: var(--paper); border-radius: 10px 10px 2px 10px; }
.msg.ai .bubble { border: 1px solid var(--fg-16); border-radius: 10px 10px 10px 2px; }
.bubble strong { font-weight: 600; }
.bubble .cite {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--green);
  color: #FFFFFF;
  padding: 2px 9px;
  border-radius: 3px;
  white-space: nowrap;
  transform: translateY(-1px);
}
.sources {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
  color: var(--fg-60);
  border-top: 1px dashed var(--fg-16);
  padding-top: 14px;
  margin-top: auto;
  font-size: 12.5px;
}
.sources i { font-style: normal; border: 1px solid var(--fg-16); padding: 3px 9px; border-radius: 3px; }
.sources i.hit { border-color: var(--green); color: var(--green); font-weight: 600; }
.answer-verdict { border-top: 1px solid var(--fg-16); padding: 15px 18px; font-size: 15px; color: var(--fg-60); }
.answer-card.cited .answer-verdict { color: var(--ink); }
.demo-note { margin-top: clamp(26px, 5vh, 64px); color: var(--fg-60); font-size: 15px; max-width: 60ch; }

/* ---- 03 Leistungen ---- */
.index-list { list-style: none; border-top: 1px solid var(--fg); }
.index-row { border-bottom: 1px solid var(--fg); }
.index-row-inner {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: baseline;
  padding: clamp(24px, 4vh, 42px) 8px;
  transition: background-color 0.3s ease, padding-left 0.35s var(--ease-out);
}
.index-row .num { color: var(--acc); }
.index-row h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.index-row .meta { text-align: right; color: var(--fg-60); font-size: 13px; }
.index-row .desc { grid-column: 2 / 4; max-width: 58ch; font-size: 16px; color: var(--fg-60); padding-top: 8px; }
@media (hover: hover) and (pointer: fine) {
  .index-row:hover .index-row-inner { background: #FFFFFF; padding-left: 22px; }
}
.index-note { margin-top: 26px; color: var(--fg-60); font-size: 15px; }
.index-note strong { color: var(--fg); font-weight: 600; }

/* ---- 04 Beweis (Tiefgrün) ---- */
.proof-intro { color: var(--fg-60); font-size: 16.5px; max-width: 54ch; margin-top: 18px; }
.proof-intro a { color: var(--fg); }

.compare-wrap { margin: clamp(38px, 6vh, 72px) 0; }
.compare {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fg);
  aspect-ratio: 16 / 9.5;
  --pos: 50%;
  touch-action: pan-y;
  background: #FFFFFF;
}
.compare:focus-within { outline: 2px solid var(--acc); outline-offset: 4px; }
.pane { position: absolute; inset: 0; overflow: hidden; }
.pane-after { clip-path: inset(0 0 0 var(--pos)); }
.pane-label {
  position: absolute;
  bottom: 14px;
  z-index: 5;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  pointer-events: none;
}
.pane-before .pane-label { left: 14px; background: #26292B; color: #FFFFFF; }
.pane-after .pane-label { right: 14px; background: var(--green); color: #FFFFFF; }
.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--green-soft);
  z-index: 6;
  pointer-events: none;
}
.compare-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: #FFFFFF;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare input[type='range'] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 7;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.compare-caption { margin-top: 16px; color: var(--fg-60); font-size: 15px; max-width: 62ch; }

/* Mock: Vorher (verstaubte Kanzlei-Seite) */
.mock { width: 100%; height: 100%; display: flex; flex-direction: column; font-family: 'Times New Roman', Times, serif; }
.mock-before { background: #FFFFFF; color: #333333; }
.mock-before .m-top {
  background: #27415E;
  color: #FFFFFF;
  padding: 2.4% 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(9px, 1.3vw, 15px);
}
.mock-before .m-top small { font-size: clamp(6.5px, 0.85vw, 10px); font-family: Verdana, sans-serif; opacity: 0.85; }
.mock-before .m-nav {
  background: #E8E8E8;
  border-bottom: 2px solid #27415E;
  display: flex;
  gap: 0;
  font-family: Verdana, sans-serif;
  font-size: clamp(6.5px, 0.9vw, 10px);
}
.mock-before .m-nav span { padding: 1.6% 2.4%; border-right: 1px solid #CCCCCC; }
.mock-before .m-nav span:first-child { background: #27415E; color: #FFFFFF; }
.mock-before .m-body { flex: 1; display: grid; grid-template-columns: 2fr 1fr; gap: 3%; padding: 2.6% 3%; min-height: 0; }
.mock-before .m-body h4 { font-size: clamp(9px, 1.3vw, 15px); color: #27415E; margin-bottom: 2%; }
.mock-before .m-body p { font-size: clamp(6.5px, 0.9vw, 10.5px); line-height: 1.5; text-align: justify; color: #444444; }
.mock-before .m-side { background: #F2F2F2; border: 1px solid #DDDDDD; padding: 4%; font-family: Verdana, sans-serif; font-size: clamp(6px, 0.8vw, 9.5px); color: #555555; }
.mock-before .m-side b { display: block; color: #27415E; margin-bottom: 4%; }
.mock-before .m-foot {
  background: #DDDDDD;
  color: #666666;
  font-family: Verdana, sans-serif;
  font-size: clamp(6px, 0.8vw, 9px);
  padding: 1.4% 3%;
  text-align: center;
}
.mock-before .m-cookie {
  background: #333333;
  color: #CCCCCC;
  font-family: Verdana, sans-serif;
  font-size: clamp(6.5px, 0.85vw, 10px);
  display: flex;
  align-items: center;
  gap: 4%;
  justify-content: space-between;
  padding: 1.8% 3%;
}
.mock-before .m-cookie i { background: #7CB342; color: #FFFFFF; font-style: normal; font-weight: 700; padding: 1% 2.6%; border-radius: 3px; white-space: nowrap; }

/* Mock: Nachher (Site-Ästhetik) */
.mock-after { background: #F6F4EE; color: #1A1D1B; padding: 2.6% 3.2%; gap: 2%; font-family: var(--sans); }
.mock-after .m-top {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: clamp(6.5px, 0.85vw, 10px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 29, 27, 0.6);
  border-bottom: 1px solid rgba(26, 29, 27, 0.18);
  padding-bottom: 1.6%;
}
.mock-after .m-main { flex: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 4%; align-items: center; min-height: 0; }
.mock-after .m-h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 2.9vw, 46px); line-height: 1.05; }
.mock-after .m-h1 i { font-style: italic; color: #0B4F3C; }
.mock-after .m-p { margin-top: 4%; font-size: clamp(7px, 1vw, 12px); line-height: 1.55; color: rgba(26, 29, 27, 0.7); max-width: 38ch; }
.mock-after .m-cta {
  display: inline-block;
  margin-top: 5%;
  font-weight: 600;
  font-size: clamp(6.5px, 0.85vw, 10px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid #0B4F3C;
  padding-bottom: 2px;
}
.mock-after .m-list { border-top: 1px solid rgba(26, 29, 27, 0.6); }
.mock-after .m-list div {
  display: flex;
  justify-content: space-between;
  font-size: clamp(6.5px, 0.9vw, 11px);
  padding: 3.5% 0;
  border-bottom: 1px solid rgba(26, 29, 27, 0.16);
}
.mock-after .m-list div b { font-weight: 600; }
.mock-after .m-list div span { color: rgba(26, 29, 27, 0.55); }

/* Report (weißes Objekt auf Tiefgrün) */
.report { background: #FFFFFF; color: var(--ink); margin-top: clamp(28px, 5vh, 52px); }
.report-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(26, 29, 27, 0.5);
}
.report-head .ok { color: var(--green); }
.report-list { list-style: none; }
.report-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(26, 29, 27, 0.12);
  align-items: baseline;
}
.report-list li:last-child { border-bottom: none; }
.report-list .tick { color: var(--green); font-weight: 600; font-size: 14px; }
.report-list b { display: block; font-weight: 600; font-size: 16.5px; }
.report-list span.d { color: rgba(26, 29, 27, 0.64); font-size: 15px; }
.report-foot { padding: 15px 20px; border-top: 1px solid rgba(26, 29, 27, 0.5); color: rgba(26, 29, 27, 0.64); font-size: 14px; }
.report-foot a { color: var(--ink); }

/* ---- 05 Person ---- */
.studio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); align-items: start; }
.studio-photo { grid-column: 1 / 6; }
.studio-photo img { width: 100%; border: 1px solid var(--fg-16); }
.studio-photo .cap { margin-top: 10px; color: var(--fg-60); font-size: 12.5px; }
.studio-text { grid-column: 7 / 13; }
.studio-text .headline {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.1;
  max-width: 16ch;
}
.studio-text .headline em { font-style: italic; color: var(--acc); }
.studio-text p { font-size: 17px; max-width: 50ch; margin-top: 22px; }
.studio-text p.dim { color: var(--fg-60); }
.cred-list { list-style: none; margin-top: 28px; border-top: 1px solid var(--fg-16); }
.cred-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--fg-16);
  font-size: 16px;
  align-items: baseline;
}
.cred-list .n { color: var(--acc); }
.studio-text .out { margin-top: 26px; }

/* ---- 06 FAQ ---- */
.faq-list { border-top: 1px solid var(--fg); max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--fg); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 80px 1fr 30px;
  gap: 16px;
  align-items: baseline;
  padding: 22px 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.2; }
.faq-item summary .fx { color: var(--acc); font-size: 18px; font-weight: 400; text-align: right; transition: transform 0.25s ease; }
.faq-item[open] summary .fx { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 26px; margin-left: 96px; font-size: 16px; color: var(--fg-60); max-width: 58ch; }
.faq-item .faq-a p + p { margin-top: 10px; }

/* ---- Footer (Tiefgrün) ---- */
.stage {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 26px;
  padding-bottom: 26px;
}
.stage-top { display: flex; justify-content: space-between; gap: 14px; color: var(--fg-60); }
.stage-mid .pre { color: var(--fg-60); margin-bottom: 18px; }
.stage-cta {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(52px, 10.5vw, 190px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
  transition: color 0.3s ease;
}
.stage-cta em { font-style: italic; }
.stage-cta:hover { color: var(--green-soft); }
.stage-cta .arr { display: inline-block; transition: transform 0.35s var(--ease-out); }
.stage-cta:hover .arr { transform: translate(0.06em, -0.06em); }
.stage-mid .sub { margin-top: 22px; color: var(--fg-60); font-size: 16px; max-width: 60ch; }
.stage-mid .sub a { color: var(--fg); }
.stage-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--fg-60);
  font-size: 13.5px;
}
.stage-bottom .cols { display: flex; gap: clamp(18px, 3vw, 44px); flex-wrap: wrap; }
.stage-bottom a { color: var(--fg-60); text-decoration: none; }
.stage-bottom a:hover { color: var(--fg); }
.to-top { cursor: pointer; background: none; border: none; font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--fg); }

/* ---- Reveals (nur mit JS) ---- */
html.js .lm { display: block; overflow: hidden; padding-top: 0.14em; margin-bottom: -0.14em; }
html.js .lm > span { display: block; transform: translateY(112%); transition: transform 0.9s var(--ease-out); }
html.js .lm.in > span { transform: translateY(0); }
html.js .lm.in.free { overflow: visible; }
html.js .fade { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
html.js .fade.in { opacity: 1; transform: none; }
html.js .d1 { transition-delay: 0.08s; }
html.js .d2 { transition-delay: 0.16s; }
html.js .d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html.js .lm > span, html.js .fade { transform: none; opacity: 1; transition: none; }
  .stage-cta .arr, .site-nav a::after { transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 108px; }
  .hero-h1 { font-size: clamp(44px, 11.5vw, 100px); margin-top: 30px; }
  .hero-h1 .l2 { margin-left: 6vw; }
  .hero-row { grid-template-columns: 1fr; gap: 24px; margin-top: 38px; }
  .hero-lead, .hero-links, .hero-note { grid-column: auto; }
  .shift-body .col-a { grid-column: 1 / 13; }
  .shift-body .col-b { grid-column: 1 / 13; margin-top: 14px; }
  .answers { grid-template-columns: 1fr; }
  .answer-card, .answer-card.cited { grid-column: 1 / -1; transform: none; }
  .index-row-inner { grid-template-columns: 56px 1fr; }
  .index-row .meta { grid-column: 2; text-align: left; margin-top: 6px; }
  .index-row .desc { grid-column: 2; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-photo { grid-column: 1 / -1; max-width: 440px; }
  .studio-text { grid-column: 1 / -1; }
  .q-list li { grid-template-columns: 56px 1fr; }
  .q-list .src { grid-column: 2; text-align: left; }
  .faq-item summary { grid-template-columns: 52px 1fr 24px; }
  .faq-item .faq-a { margin-left: 68px; }
  .compare { aspect-ratio: 4 / 3.6; }
  .stage { min-height: 76svh; }
  .mock-before .m-nav span:nth-child(n+5) { display: none; }
}
@media (max-width: 560px) {
  .site-nav .nav-anchor { display: none; }
  .hero-meta { flex-direction: column; gap: 4px; }
  .compare { aspect-ratio: 1 / 1.15; }
  .mock-after .m-main { grid-template-columns: 1fr; gap: 3%; }
  .mock-before .m-body { grid-template-columns: 1fr; }
  .mock-before .m-side { display: none; }
  .stage-top { flex-wrap: wrap; }
}
