/* Noument — Marketing-Website
   Klar, ruhig, evidenzgeführt. Flache Flächen, starke Typografie, 1px-Hairlines.
   Keine Glows, keine Orbs, keine generischen AI-SaaS-Muster. Display: Schibsted
   Grotesk, Body: Inter (beide self-hosted). Akzent (tiefes Indigo) nur sparsam. */

:root {
  /* Flächen */
  --bg: #ffffff;
  --paper: #fbfbfa;          /* warmes Off-White für ruhige Bänder */
  --bg-alt: #f6f6f4;
  --ink: #131419;            /* dunkler Spotlight + CTA */
  --ink-soft: #1c1e25;       /* Flächen auf Dunkel */

  /* Text */
  --text: #1f2024;
  --text-strong: #0f1014;
  --text-muted: #5c6066;
  --text-subtle: #898e96;
  --text-on-ink: #f3f4f6;
  --text-on-ink-muted: #a6abb4;
  --text-on-ink-subtle: #777d87;

  /* Linien */
  --border: #e6e7e4;
  --border-strong: #d7d9d5;
  --hairline: #eeefec;
  --border-ink: #2b2e36;

  /* Akzent */
  --accent: #34327a;          /* tiefes Indigo */
  --accent-hover: #2b2967;
  --accent-ink: #b8b9ff;      /* Akzent auf Dunkel */
  --success: #157a39;
  --success-ink: #6fdd96;
  --warning: #8a5a00;
  --warning-ink: #e6bd6a;

  /* Maß */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-frame: 16px;
  --radius-sm: 8px;

  --font-display: "Schibsted Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Schatten: weich, geschichtet, „premium“ */
  --shadow-frame:
    0 1px 1px rgba(18, 19, 25, .04),
    0 4px 10px rgba(18, 19, 25, .04),
    0 18px 36px rgba(18, 19, 25, .07),
    0 44px 70px rgba(18, 19, 25, .05);
  --shadow-soft: 0 1px 2px rgba(18,19,25,.05), 0 6px 18px rgba(18,19,25,.06);
}

/* ── Reset / Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text-strong);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  text-wrap: balance;
}
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; color: var(--accent); }
ol, ul, dl, dd { margin: 0; padding: 0; }

::selection { background: rgba(52,50,122,.14); }

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

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--text-strong); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm);
  text-decoration: none; z-index: 100;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ── Reveal-Motion ─────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font: inherit; font-weight: 550; font-size: 15px; line-height: 1;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .12s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(52,50,122,.25), 0 6px 16px rgba(52,50,122,.18); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 2px 4px rgba(52,50,122,.28), 0 10px 24px rgba(52,50,122,.22); }
.btn-primary:active { transform: translateY(0); }

.btn-quiet { border-color: var(--border-strong); color: var(--text-strong); background: var(--bg); }
.btn-quiet:hover { border-color: var(--text-subtle); }

.btn-text { padding: 13px 6px; color: var(--text-strong); }
.btn-text span { transition: transform .2s var(--ease); display: inline-block; }
.btn-text:hover span { transform: translateX(4px); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--hairline); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--text-strong);
  font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em;
}
.wordmark-glyph { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.header-nav > a:not(.btn) { position: relative; text-decoration: none; color: var(--text-muted); font-size: 15px; font-weight: 500; transition: color .16s var(--ease); }
.header-nav > a:not(.btn):hover { color: var(--text-strong); }
.header-nav > a.is-active:not(.btn) { color: var(--text-strong); }
.header-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left center; transition: transform .22s var(--ease); }
.header-nav > a.is-active:not(.btn)::after { transform: scaleX(1); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
}
.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background-color .16s var(--ease), color .16s var(--ease);
}
.language-switch a:hover { color: var(--text-strong); }
.language-switch a[aria-current="page"] { background: var(--accent); color: #fff; }
@media (max-width: 860px) { .header-nav > a:not(.btn) { display: none; } }
@media (max-width: 520px) {
  .header-nav { gap: 8px; }
  .header-nav .btn { padding-inline: 14px; font-size: 14px; }
}
@media (max-width: 380px) {
  .site-header .wordmark span { display: none; }
}

/* ── Bänder / Sektionen ────────────────────────────────────── */
.band { padding-block: clamp(72px, 9vw, 132px); }
.band-paper { background: var(--paper); border-block: 1px solid var(--hairline); }

.kicker { font-size: 13px; font-weight: 600; letter-spacing: 0; color: var(--accent); margin-bottom: 18px; }
.kicker--light { color: var(--accent-ink); }
.section-head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head h2 { font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -0.028em; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding-top: clamp(64px, 8vw, 116px); padding-bottom: clamp(56px, 7vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.034em;
  line-height: 1.02;
  margin-bottom: 26px;
}
.lede { font-size: clamp(17px, 1.35vw, 19px); color: var(--text-muted); max-width: 50ch; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-size: 14px; color: var(--text-subtle); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-demo { order: -1; }
  .hero-copy { max-width: none; }
}

/* ── Frame (geteiltes Produktflächen-System) ───────────────── */
.frame {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-frame);
  box-shadow: var(--shadow-frame);
  overflow: hidden;
}
.frame-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
}
.frame-title { font-size: 13px; font-weight: 600; color: var(--text-strong); }
.frame-meta { font-size: 12px; color: var(--text-subtle); font-weight: 500; margin-left: auto; }
.frame-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.status { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--text-strong); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(21,122,57,.4); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(21,122,57,.32); } 70% { box-shadow: 0 0 0 7px rgba(21,122,57,0); } 100% { box-shadow: 0 0 0 0 rgba(21,122,57,0); } }

/* Listening-Waveform */
.wave { display: inline-flex; align-items: center; gap: 3px; height: 16px; }
.wave i { width: 3px; height: 6px; border-radius: 2px; background: var(--accent); opacity: .55; animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(2) { animation-delay: .15s; } .wave i:nth-child(3) { animation-delay: .3s; }
.wave i:nth-child(4) { animation-delay: .45s; } .wave i:nth-child(5) { animation-delay: .2s; }
.wave i:nth-child(6) { animation-delay: .35s; } .wave i:nth-child(7) { animation-delay: .1s; }
@keyframes wave { 0%, 100% { height: 5px; opacity: .4; } 50% { height: 15px; opacity: .85; } }

.transcript { font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.transcript--muted { color: var(--text-subtle); }
.transcript .speaker { display: inline-block; margin-right: 8px; font-weight: 650; color: var(--text-strong); }

/* „Noument prüft Belege“ */
.thinking { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--text-subtle); font-weight: 500; }
.dots { display: inline-flex; gap: 3px; }
.dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .5; animation: blink 1.2s ease-in-out infinite; }
.dots i:nth-child(2) { animation-delay: .2s; } .dots i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 100% { opacity: .25; } 50% { opacity: .9; } }

/* Insight: 2px-Regel links statt getönter Box */
.insight { border-left: 2px solid var(--text-subtle); padding-left: 15px; }
.insight--decision { border-left-color: var(--accent); }
.insight--risk { border-left-color: var(--warning); }
.insight-text { font-size: 14px; line-height: 1.5; color: var(--text); font-weight: 500; }
.insight-source { margin-top: 7px; font-size: 12px; color: var(--text-subtle); display: flex; align-items: center; gap: 8px; }
.src-tag { font-size: 11px; font-weight: 600; color: var(--accent); border: 1px solid var(--border-strong); border-radius: 5px; padding: 1px 5px; line-height: 1.4; }

/* Badge */
.badge { margin-left: auto; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; line-height: 1.6; }
.badge--ok { color: var(--success); background: rgba(21,122,57,.10); }

/* Beleg-Frame */
.evidence-claim { font-size: 15px; line-height: 1.5; color: var(--text-strong); font-weight: 500; }
.evidence-meta { display: grid; gap: 0; margin-top: 4px; border-top: 1px solid var(--hairline); }
.evidence-meta > div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--hairline); }
.evidence-meta > div:last-child { border-bottom: none; }
.evidence-meta dt { font-size: 12px; color: var(--text-subtle); }
.evidence-meta dd { font-size: 12px; color: var(--text); font-weight: 500; text-align: right; }

/* Protokoll-Frame */
.proto-label { font-size: 11px; font-weight: 600; color: var(--text-subtle); letter-spacing: .02em; text-transform: uppercase; }
.proto-label:not(:first-child) { margin-top: 6px; }
.proto-list { display: flex; flex-direction: column; gap: 9px; }
.proto-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.45; color: var(--text); }
.proto-rule { flex: none; width: 3px; align-self: stretch; border-radius: 2px; background: var(--text-subtle); margin-top: 2px; }
.proto-rule--decision { background: var(--accent); }
.proto-owner { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 10px; font-weight: 650; }

/* Hero-Live: sanft loopende Sequenz, JS-gesteuert über .shown */
.frame-live .anim { opacity: 0; transform: translateY(10px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
.frame-live .anim.shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .frame-live .anim { opacity: 1 !important; transform: none !important; transition: none; } }

/* ── Trust-Strip ───────────────────────────────────────────── */
.trust { border-block: 1px solid var(--hairline); background: var(--bg); }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 22px; padding-block: 20px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.trust-item svg { color: var(--accent); opacity: .9; }
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }
@media (max-width: 640px) { .trust-dot { display: none; } .trust-inner { gap: 12px 20px; } }

/* ── Statement ─────────────────────────────────────────────── */
.statement { padding-block: clamp(80px, 10vw, 140px); }
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.28; font-weight: 500; letter-spacing: -0.022em;
  color: var(--text-strong); max-width: 18ch; max-width: 920px;
}
.statement-text em { color: var(--accent); }

/* ── So funktioniert’s ─────────────────────────────────────── */
.howitworks .section-head h2 { font-size: clamp(28px, 3.8vw, 44px); }
.step {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-block: clamp(36px, 5vw, 60px);
}
.step + .step { border-top: 1px solid var(--hairline); }
.step--reverse .step-copy { order: 2; }
.step-num { display: inline-block; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 16px; }
.step-copy h3 { font-size: clamp(21px, 2.3vw, 28px); margin-bottom: 12px; letter-spacing: -0.02em; }
.step-copy p { color: var(--text-muted); max-width: 44ch; }
.step-figure { max-width: 480px; width: 100%; justify-self: end; }
.step--reverse .step-figure { justify-self: start; }
@media (max-width: 820px) {
  .step { grid-template-columns: 1fr; gap: 28px; }
  .step--reverse .step-copy { order: 0; }
  .step-figure, .step--reverse .step-figure { justify-self: stretch; max-width: 480px; }
}

/* ── Rows / Nutzen ─────────────────────────────────────────── */
.rows { list-style: none; border-top: 1px solid var(--border); }
.row {
  display: grid; grid-template-columns: 48px minmax(0, 1fr) 190px;
  gap: clamp(16px, 4vw, 48px); align-items: start;
  padding-block: clamp(28px, 4vw, 42px);
  border-bottom: 1px solid var(--border);
}
.row-index { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text-subtle); font-variant-numeric: tabular-nums; padding-top: 5px; }
.row-main h3 { font-size: clamp(20px, 2.3vw, 26px); margin-bottom: 10px; letter-spacing: -0.02em; }
.row-main p { color: var(--text-muted); max-width: 56ch; }
.row-aside { color: var(--accent); font-weight: 550; font-size: 15px; padding-top: 5px; }
.section-note { max-width: 620px; margin-top: 26px; color: var(--text-subtle); font-size: 15px; }
@media (max-width: 720px) { .row { grid-template-columns: 36px 1fr; } .row-aside { display: none; } }

/* ── Dark Spotlight ────────────────────────────────────────── */
.spotlight { background: var(--ink); color: var(--text-on-ink); padding-block: clamp(80px, 9vw, 132px); }
.spotlight-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.spotlight-copy h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 20px; letter-spacing: -0.028em; }
.spotlight-copy > p { color: var(--text-on-ink-muted); max-width: 52ch; margin-bottom: 30px; }
@media (max-width: 860px) { .spotlight-grid { grid-template-columns: 1fr; gap: 44px; } }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text); font-size: 15px; }
.checklist li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 13px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); transform-origin: left center; }
.checklist--light li { color: var(--text-on-ink); }
.checklist--light li::before { border-color: var(--accent-ink); }

.frame--dark { background: var(--ink-soft); border-color: var(--border-ink); box-shadow: 0 1px 1px rgba(0,0,0,.3), 0 24px 56px rgba(0,0,0,.45); }
.frame--dark .frame-head { border-bottom-color: var(--border-ink); }
.frame--dark .frame-title { color: var(--text-on-ink); }
.frame--dark .evidence-claim { color: var(--text-on-ink); }
.frame--dark .evidence-meta { border-top-color: var(--border-ink); }
.frame--dark .evidence-meta > div { border-bottom-color: var(--border-ink); }
.frame--dark .evidence-meta dt { color: var(--text-on-ink-subtle); }
.frame--dark .evidence-meta dd { color: var(--text-on-ink); }
.frame--dark .badge--ok { color: var(--success-ink); background: rgba(111,221,150,.12); }

/* ── Prinzipien ────────────────────────────────────────────── */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
.principle { padding: clamp(28px, 3vw, 38px) 30px; border-right: 1px solid var(--border); }
.principle:first-child { padding-left: 0; } .principle:last-child { border-right: none; padding-right: 0; }
.principle h3 { font-size: 19px; margin-bottom: 12px; letter-spacing: -0.018em; }
.principle p { color: var(--text-muted); font-size: 15px; }
@media (max-width: 760px) {
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none; border-bottom: 1px solid var(--border); padding-inline: 0; }
  .principle:last-child { border-bottom: none; }
}

/* ── Sicherheit (ruhige Fakten-Liste) ──────────────────────── */
.section-head .head-lede { color: var(--text-muted); font-size: clamp(16px, 1.3vw, 18px); margin-top: 14px; max-width: 56ch; }
.facts { max-width: 820px; border-top: 1px solid var(--border); }
.facts > div { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 6px 36px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.facts dt { font-weight: 600; color: var(--text-strong); font-size: 15px; }
.facts dd { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.facts-note { margin-top: 22px; font-size: 14px; color: var(--text-subtle); }
.facts-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 640px) { .facts > div { grid-template-columns: 1fr; gap: 4px; } }

/* ── FAQ (nativ, klappt zu) ────────────────────────────────── */
.faq-list { max-width: 820px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-family: var(--font-display); font-size: clamp(17px, 1.5vw, 19px); font-weight: 600; color: var(--text-strong); letter-spacing: -0.012em; transition: color .16s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-chev { flex: none; width: 9px; height: 9px; border-right: 2px solid var(--text-subtle); border-bottom: 2px solid var(--text-subtle); transform: rotate(45deg) translate(-2px, -2px); transition: transform .25s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(-135deg) translate(-2px, -2px); }
.faq-answer { padding: 0 40px 24px 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.7; max-width: 66ch; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta { background: var(--ink); color: var(--text-on-ink); }
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(40px, 6vw, 76px); align-items: end; }
.cta h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); max-width: 17ch; margin-bottom: 18px; letter-spacing: -0.028em; }
.cta-copy > p { color: var(--text-on-ink-muted); max-width: 46ch; }
.cta-direct { margin-top: 22px; font-size: 14px; }
.cta-direct a { color: var(--accent-ink); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent-ink) 40%, transparent); padding-bottom: 1px; transition: border-color .16s var(--ease); }
.cta-direct a:hover { border-bottom-color: var(--accent-ink); }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; } }

.cta-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text-on-ink); margin-bottom: 10px; }
.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field-row { display: flex; gap: 8px; }
.cta-form input[type="email"] {
  flex: 1; min-width: 0; font: inherit; font-size: 15px;
  padding: 13px 15px; border-radius: 10px; border: 1px solid #34373f;
  background: #1a1c22; color: #fff;
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
}
.cta-form input::placeholder { color: #767c86; }
.cta-form input:focus-visible { outline: none; border-color: var(--accent-ink); background: #1f2129; }
.field-hint { margin-top: 13px; font-size: 13px; color: var(--text-on-ink-muted); }
.field-hint[data-state="ok"] { color: var(--accent-ink); }
.field-hint[data-state="err"] { color: #ff9a96; }
.field-consent { margin-top: 9px; font-size: 12.5px; line-height: 1.5; color: var(--text-on-ink-subtle); max-width: 44ch; }
.field-consent a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }

/* ── Rechtsseiten (Impressum / Datenschutz / AGB) ──────────── */
.legal-main { padding-block: clamp(48px, 7vw, 92px) clamp(40px, 6vw, 72px); }
.legal { max-width: 760px; margin-inline: auto; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-muted); text-decoration: none; margin-bottom: 28px; transition: color .16s var(--ease); }
.legal-back:hover { color: var(--text-strong); }
.legal h1 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -0.03em; margin-bottom: 10px; }
.legal-updated { color: var(--text-subtle); font-size: 14px; margin-bottom: 32px; }
.legal-note { margin: 0 0 40px; padding: 16px 18px; border: 1px solid var(--border); border-left: 2px solid var(--warning); border-radius: 12px; background: var(--paper); color: var(--text); font-size: 14px; line-height: 1.6; }
.legal h2 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; margin-top: 48px; margin-bottom: 14px; }
.legal h3 { font-size: 17px; margin-top: 26px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--text-muted); font-size: 15.5px; line-height: 1.72; }
.legal p + p { margin-top: 14px; }
.legal ul, .legal ol { margin: 12px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal ul li { list-style: disc; } .legal ol li { list-style: decimal; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal address { font-style: normal; color: var(--text); line-height: 1.7; }
.legal dl.legal-fields { margin-top: 8px; }
.legal dl.legal-fields > div { display: flex; flex-wrap: wrap; gap: 4px 12px; padding: 7px 0; border-bottom: 1px solid var(--hairline); }
.legal dl.legal-fields dt { min-width: 200px; color: var(--text-subtle); font-size: 14px; }
.legal dl.legal-fields dd { color: var(--text); font-size: 14px; }
.legal .ph { color: var(--text-subtle); font-style: italic; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { padding-block: clamp(48px, 6vw, 72px) 30px; background: var(--bg); }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--hairline); }
.footer-brand p { color: var(--text-subtle); font-size: 14px; margin-top: 12px; max-width: 38ch; }
.wordmark--footer { display: inline-flex; align-items: center; gap: 8px; color: var(--text-strong); font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.wordmark--footer svg { color: var(--accent); }
.footer-nav { display: flex; gap: clamp(16px, 3vw, 30px); flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: var(--text-muted); font-size: 14px; transition: color .16s var(--ease); }
.footer-nav a:hover { color: var(--text-strong); }
.footer-legal { padding-top: 22px; }
.footer-legal p { color: var(--text-subtle); font-size: 13px; }
