/* stimme.ai — globale Styles */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #fafafa;
  --surface-2: #f5f5f3;
  --ink: #111111;
  --muted: #6b6b6b;
  --rule: #e5e5e5;
  --rule-soft: #ececec;
  --accent: #0b7d5c;
  --accent-soft: rgba(11,125,92,0.10);
  --green: var(--accent);
  --pink: var(--accent);
  --violet: var(--accent);
  --blue: var(--accent);
  --amber: var(--muted);
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--ink);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 24px; height: 24px;
  background: var(--ink);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
}
.brand-group {
  display: flex; align-items: center; gap: 12px;
}
.de-badge {
  display: flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink);
  border: 1.5px dashed var(--ink);
  padding: 4px 9px 4px 6px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  white-space: nowrap; user-select: none;
}
.de-flag {
  display: inline-block; width: 17px; height: 12px;
  border-radius: 2px; flex-shrink: 0;
  background: linear-gradient(to bottom, #2d2d2d 0% 33.33%, #cc0000 33.33% 66.66%, #ffce00 66.66% 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  transition: color 150ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-right { display: flex; gap: 8px; align-items: center; }
.nav-login { font-size: 14px; color: var(--muted); padding: 8px 12px; }
.nav-cta {
  padding: 8px 16px;
  background: transparent; color: var(--ink) !important;
  border: 1px solid var(--rule);
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: border-color 150ms ease;
}
.nav-cta:hover { border-color: #aaa; }
.burger { display: none; background: none; border: 0; font-size: 20px; cursor: pointer; }

/* SECTION BASICS */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--accent);
  margin-bottom: 16px; font-weight: 500;
}
h1 {
  font-size: 56px; font-weight: 800;
  line-height: 1.06; letter-spacing: -0.03em;
  margin: 0 0 24px;
}
h2 {
  font-size: 40px; font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 14px;
}
h3 {
  font-size: 18px; font-weight: 600;
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.sec-sub { font-size: 17px; color: var(--muted); margin: 0; }
h1 .muted, h2 .muted { color: var(--muted); font-weight: inherit; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; line-height: 1.6; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 13px 24px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: 15px;
  transition: opacity 150ms ease;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block;
  padding: 13px 24px;
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--radius); font-weight: 500; font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
}
.btn-ghost:hover { border-color: #bbb; }

/* CONTENT WRAPPER (für Subseiten) */
.page-head { padding: 88px 32px 56px; border-bottom: 1px solid var(--rule); }
.page-head-inner { max-width: 960px; margin: 0 auto; }
.page-head h1 { font-size: 48px; margin-bottom: 16px; }
.page-head .lead { margin: 0; }

.content { padding: 80px 32px 96px; }
.content-inner { max-width: 780px; margin: 0 auto; }
.content-inner h2 { font-size: 28px; margin: 56px 0 18px; }
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-size: 19px; margin: 36px 0 10px; }
.content-inner p, .content-inner li { font-size: 16px; line-height: 1.7; color: #222; }
.content-inner ul, .content-inner ol { padding-left: 20px; margin: 0 0 18px; }
.content-inner li { margin-bottom: 8px; }
.content-inner strong { font-weight: 600; color: var(--ink); }

/* CARD (generisch) */
.card-box {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin: 24px 0;
}
.card-box h3 { margin-top: 0; }

/* TRUST-LIST */
.trust-list {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.trust-row {
  padding: 18px 22px;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 14px;
}
.trust-row:last-child { border-bottom: 0; }
.trust-check {
  width: 22px; height: 22px; border-radius: 4px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
}
.trust-text strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; font-size: 15px; }
.trust-text span { color: var(--muted); font-size: 14px; }
.trust-ref { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }

/* COMPARE TABLE (wiederverwendbar) */
.ctable {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
  border-collapse: collapse;
  margin: 24px 0;
}
.ctable th, .ctable td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
  font-size: 14px;
}
.ctable tr:last-child td { border-bottom: 0; }
.ctable th {
  background: var(--surface);
  font-weight: 600; font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ctable th.us { color: var(--ink); }
.ctable td.feat { font-weight: 600; width: 36%; color: var(--ink); }
.ctable td.us { color: var(--ink); font-weight: 500; }
.ctable td.them { color: var(--muted); }
.mark {
  display: inline-block; width: 16px;
  text-align: center;
  font-weight: 600; margin-right: 10px; font-size: 14px;
}
.mark.yes { color: var(--accent); }
.mark.no { color: var(--muted); }
.mark.mid { color: var(--muted); }

/* FORM */
.form-wrap {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit; font-size: 15px;
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid var(--accent); outline-offset: -1px;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-actions { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.form-privacy { font-size: 12px; color: var(--muted); margin-left: auto; max-width: 360px; }

/* CTA */
.cta { padding: 96px 32px; background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.cta h2 { color: var(--ink); margin-bottom: 18px; font-size: 36px; }
.cta p { font-size: 17px; color: var(--muted); margin: 0 0 28px; max-width: 520px; }
.cta .sec-label { color: var(--accent) !important; }
.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-buttons .btn-outline {
  padding: 13px 24px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--radius);
  font-weight: 500; font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
}
.cta-stats {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.cta-stats-item { padding: 14px 0; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.cta-stats-item:last-child { border-bottom: 0; }
.cta-stats-item:first-child { padding-top: 0; }
.cta-stats-item:last-child { padding-bottom: 0; }
.cta-stats-key { color: var(--muted); font-size: 13px; font-family: 'JetBrains Mono', monospace; }
.cta-stats-val { color: var(--ink); font-weight: 600; font-size: 14px; }

/* FOOTER */
footer { padding: 64px 32px 32px; border-top: 1px solid var(--rule); background: var(--bg); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--rule); }
.footer-cols h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin: 0 0 16px; }
.footer-cols a, .footer-cols p { font-size: 13px; color: var(--muted); display: block; line-height: 1.9; margin: 0; }
.footer-cols a:hover { color: var(--ink); }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.footer-bottom { padding-top: 24px; font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-family: 'JetBrains Mono', monospace; align-items: center; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }
.footer-bottom-left { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-member { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.footer-member svg { fill: currentColor; flex-shrink: 0; }
.footer-member:hover { color: var(--ink); }

/* ================================================ */
/* STARTSEITE */
/* ================================================ */

.hero { padding: 88px 32px 72px; border-bottom: 1px solid var(--rule); }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.hero-inner .player { margin-top: 4rem; }
@media (max-width: 980px) {
  .hero-inner .player { margin-top: 0; }
}
.hero-kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 56px; font-weight: 800;
  line-height: 1.06; letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.hero-lead {
  font-size: 15px; color: var(--muted);
  margin: 0 0 28px; max-width: 560px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* PLAYER */
.player {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.player-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
  flex-wrap: wrap; gap: 12px;
}
.player-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.player-title-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.player-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
}
.player-body { padding: 24px; }
.player-intro {
  font-size: 13px; color: var(--muted);
  margin-bottom: 12px;
}
.step-label {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 10px; font-weight: 600;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--ink); color: #fff;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0;
}
.step-hint {
  margin-left: auto;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.textbox-wrap {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 120ms ease;
}
.textbox-wrap:focus-within {
  border-color: var(--ink);
}
.voice-textarea {
  width: 100%;
  min-height: 96px;
  padding: 14px 16px 36px 16px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  font-family: inherit;
  font-size: 15px; line-height: 1.55;
  color: var(--ink); resize: vertical;
  display: block;
}
.voice-textarea:focus { outline: none; }
.voice-textarea::placeholder { color: #a3a3a3; }
.textbox-meta {
  position: absolute; left: 16px; bottom: 8px; right: 14px;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--muted);
  pointer-events: none;
}
.textbox-meta-edit { color: var(--muted); font-weight: 500; }
.side-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.voice-options {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.voice-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 13px; cursor: pointer;
  transition: border-color 120ms ease;
}
.voice-opt:hover { border-color: #c9c9c9; }
.voice-opt.active { border-color: var(--ink); }
.voice-opt-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0;
  background: var(--surface-2);
}
.voice-opt-name { font-weight: 600; }
.voice-opt-tag { margin-left: auto; font-size: 11px; color: var(--muted); }
.btn-play {
  padding: 10px 18px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--radius);
  font-family: inherit; font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: border-color 150ms ease;
}
.btn-play:hover { border-color: #aaa; }
.sample-list { display: flex; flex-direction: column; gap: 8px; }

.sample {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 14px; row-gap: 0;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 150ms ease;
}
.sample:hover { border-color: #c9c9c9; }
.sample.playing { border-color: var(--accent); }

.sample-btn {
  grid-row: 1 / 3; grid-column: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--rule); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 150ms ease, transform 120ms ease, border-color 150ms ease;
}
.sample-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.06); }
.sample.playing .sample-btn { background: var(--accent); color: #fff; border-color: var(--accent); }

.sample-btn .icon-play  { width: 14px; height: 14px; margin-left: 2px; }
.sample-btn .icon-pause { width: 14px; height: 14px; display: none; }
.sample.playing .sample-btn .icon-play  { display: none; }
.sample.playing .sample-btn .icon-pause { display: block; }

.sample-info { grid-column: 2; grid-row: 1; min-width: 0; }
.sample-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.sample-desc { font-size: 12px; color: var(--muted); margin-top: 1px; }

.sample-time {
  grid-column: 3; grid-row: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
  min-width: 28px; text-align: right;
  align-self: center;
}

.sample-track-wrap {
  grid-column: 2 / 4; grid-row: 2;
  padding-top: 8px;
  cursor: pointer;
}
.sample-track {
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.sample-fill {
  height: 100%; width: 0%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 80ms linear;
}
.sample:hover .sample-track { background: #d8d8d8; }

@media (max-width: 520px) {
  .sample { grid-template-columns: 36px 1fr auto; column-gap: 10px; }
  .sample-btn { width: 36px; height: 36px; }
}
.player-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  flex-wrap: wrap; gap: 12px;
}
.player-footer-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
}

/* LOGOS */
.logos { padding: 48px 32px; border-bottom: 1px solid var(--rule); background: var(--surface); }
.logos-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.logos p { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; font-weight: 600; }
.logos-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; font-weight: 700; font-size: 16px; color: #a8a8a8; }

/* USPS BAR */
.usps-bar {
  padding: 32px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}
.usps-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; line-height: 1.5;
}
.usp-dot {
  display: none;
}
.usp-item strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.usp-item span { color: var(--muted); font-size: 13px; }
@media (max-width: 980px) {
  .usps-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 560px) {
  .usps-bar-inner { grid-template-columns: 1fr; }
}

/* PLATFORM */
.platform { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.platform-inner { max-width: 1200px; margin: 0 auto; }
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.04em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.feature-bar {
  display: none;
}
.feature h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.soon-badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.feature-soon { opacity: 0.7; }
.feature p { font-size: 14px; color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.feature-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted);
  display: flex; justify-content: space-between;
}
.feature-meta strong { color: var(--ink); font-weight: 600; }

/* ARCH */
.arch { padding: 96px 32px; background: var(--surface); border-bottom: 1px solid var(--rule); }
.arch-inner { max-width: 1200px; margin: 0 auto; }
.arch-diagram {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; align-items: start;
  position: relative;
}
.arch-col { display: flex; flex-direction: column; gap: 12px; }
.arch-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.arch-node {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
}
.arch-node.core {
  background: var(--surface);
  border-color: var(--rule);
}
.arch-node.core .arch-node-meta { color: var(--muted); }
.arch-node-name { font-weight: 600; }
.arch-node-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.arch-arrow { display: none; }
.arch-hardware {
  max-width: 1200px; margin: 40px auto 0;
  padding: 22px 26px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface-2);
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 24px;
  align-items: start;
}
.arch-hardware-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.arch-hardware p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
@media (max-width: 720px) {
  .arch-hardware { grid-template-columns: 1fr; gap: 8px; }
}

/* COMPARE SECTION */
.compare { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.compare-inner { max-width: 1200px; margin: 0 auto; }

/* MSTRIP */
.mstrip { padding: 80px 32px; background: var(--surface); border-bottom: 1px solid var(--rule); }
.mstrip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mstrip-item {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.mstrip-val { font-family: 'JetBrains Mono', monospace; font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; color: var(--ink); }
.mstrip-val .unit { color: var(--muted); font-size: 14px; font-weight: 500; }
.mstrip-label { font-size: 13px; color: var(--muted); }

/* TIMELINE */
.timeline-sec { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.timeline-sec-inner { max-width: 1080px; margin: 0 auto; }
.timeline { position: relative; padding-left: 32px; margin-top: 32px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--rule);
}
.tl-item { position: relative; padding: 0 0 36px; }
.tl-item::before {
  content: ""; position: absolute; left: -32px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}
.tl-date { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.04em; color: var(--accent); }
.tl-title { font-size: 19px; font-weight: 600; margin: 0 0 6px; }
.tl-desc { font-size: 15px; color: var(--muted); margin: 0; }

/* QUOTE / TESTIMONIAL */
.quote { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.quote-inner { max-width: 880px; margin: 0 auto; }
.quote .sec-label { margin-bottom: 24px; }
.quote blockquote {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: normal;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  quotes: none;
}
.quote-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  padding-left: 26px;
}
@media (max-width: 720px) {
  .quote { padding: 64px 20px; }
  .quote blockquote { font-size: 20px; padding-left: 18px; }
  .quote-source { padding-left: 20px; }
}

/* HYBRID */
.hybrid { padding: 96px 32px; border-bottom: 1px solid var(--rule); background: var(--surface); }
.hybrid-inner { max-width: 1200px; margin: 0 auto; }
.hybrid-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; margin-top: 0;
}
.hybrid-card { padding: 40px; background: var(--bg); }
.hybrid-card + .hybrid-card { border-left: 1px solid var(--rule); }
.hybrid-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.hybrid-card-label.ki { color: var(--accent); }
.hybrid-card-label.human { color: var(--ink); }
.hybrid-card h3 { margin-bottom: 12px; font-size: 18px; }
.hybrid-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }
.hybrid-note {
  margin-top: 16px;
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface-2);
}
.hybrid-nuance {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.hybrid-nuance-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hybrid-nuance p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 72ch;
}
@media (max-width: 720px) {
  .hybrid { padding: 64px 20px; }
  .hybrid-grid { grid-template-columns: 1fr; }
  .hybrid-card + .hybrid-card { border-left: 0; border-top: 1px solid var(--rule); }
}

/* PERSON */
.person { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.person-inner { max-width: 1200px; margin: 0 auto; }
.person-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.person-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 64ch;
}
.person-text p strong { color: var(--ink); font-weight: 600; }
.person-cta {
  margin: 28px 0 24px;
  padding: 20px 24px;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent, #7ab3b8);
  border-radius: var(--radius);
}
.person-cta-line {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.person-cta-phone {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.person-cta-phone:hover { color: var(--accent, #7ab3b8); }
.person-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.person-card {
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: sticky;
  top: 32px;
}
.person-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.person-card-dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 18px;
}
.person-card-dl dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.person-card-dl dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.person-card-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.person-cta-note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.person-portrait-inline {
  float: right;
  margin: 0 0 16px 28px;
  width: 160px;
  text-align: center;
}
.person-portrait-inline img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--surface-2);
  border: 1px solid var(--rule);
}
.person-portrait-inline figcaption {
  margin-top: 8px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.person-portrait-wrap {
  float: right;
  margin: 0 0 24px 32px;
  max-width: 260px;
  text-align: center;
}
.person-portrait {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--rule);
}
.person-portrait-caption {
  margin-top: 10px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--muted);
}
@media (max-width: 820px) {
  .person-grid { grid-template-columns: 1fr; gap: 28px; }
  .person-card { position: static; }
  .person-portrait-inline {
    float: none;
    margin: 0 auto 20px;
    width: 140px;
  }
  .person-portrait-inline img { width: 140px; height: 140px; }
  .person-portrait-wrap {
    float: none;
    margin: 0 auto 24px;
    max-width: 220px;
  }
}
@media (max-width: 720px) {
  .person { padding: 64px 20px; }
}

/* WECHSEL */
.wechsel { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.wechsel-inner { max-width: 1200px; margin: 0 auto; }
.wechsel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.wechsel-item {
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
}
.wechsel-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.wechsel-item h3 { margin-bottom: 10px; font-size: 17px; }
.wechsel-item p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
@media (max-width: 900px) {
  .wechsel-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .wechsel { padding: 64px 20px; }
}

/* TRUST STRIP */
.trust-strip {
  padding: 96px 32px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.trust-block h3 { margin-bottom: 14px; font-size: 20px; }
.trust-block p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.trust-block a { color: var(--ink); text-decoration: underline; }
.trust-links {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.trust-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.04em;
  transition: color 150ms ease;
}
.trust-link:hover { color: var(--accent); }
.trust-note {
  font-size: 12px; color: var(--muted); opacity: 0.75;
  border-left: 2px solid var(--rule); padding-left: 10px;
  font-style: italic;
}
@media (max-width: 720px) {
  .trust-strip { padding: 64px 20px; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* USE-CASE-TEASER GRID */
.uc-teaser { padding: 96px 32px; border-bottom: 1px solid var(--rule); }
.uc-teaser-inner { max-width: 1200px; margin: 0 auto; }
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.uc-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 150ms ease;
}
.uc-card:hover { border-color: #c9c9c9; }
.uc-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.04em; margin-bottom: 14px; font-weight: 600;
}
.uc-card h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.uc-card p { font-size: 14px; color: var(--muted); margin: 0 0 18px; line-height: 1.6; }
.uc-card a { font-size: 14px; font-weight: 500; color: var(--ink); }
.uc-card a:hover { color: var(--accent); }

/* CODE-PANEL (Design-1-Stil, hell) */
.code-panel {
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}
.code-head {
  padding: 12px 18px;
  background: #efefec;
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
}
.code-body {
  padding: 24px; font-family: 'JetBrains Mono', monospace;
  font-size: 13px; line-height: 1.8; color: #222;
  overflow-x: auto; white-space: pre;
}
.c-com { color: #9aa19c; }
.c-key { color: #8c3d8e; }
.c-str { color: var(--accent); }
.c-prop { color: #a35c00; }

/* FAQ */
.faq { padding: 96px 32px; background: var(--surface); border-bottom: 1px solid var(--rule); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  font-size: 16px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 14px;
}
.faq-q::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 22px; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { font-size: 15px; color: var(--muted); margin-top: 12px; display: none; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ================================================ */
/* RESPONSIVE */
/* ================================================ */
@media (max-width: 980px) {
  .hero-inner, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .platform-grid, .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .arch-diagram { grid-template-columns: 1fr; padding: 28px; }
  .arch-arrow { display: none; }
  .mstrip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 2fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-inner { padding: 14px 20px; }
  .de-badge span:last-child { display: none; }
  .de-badge { padding: 5px 6px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 40px; }
  .page-head { padding: 56px 20px 36px; }
  .page-head h1 { font-size: 34px; }
  .content { padding: 56px 20px 64px; }
  .hero { padding: 56px 20px 40px; }
  .platform, .arch, .compare, .timeline-sec, .cta, .mstrip, .uc-teaser, .faq { padding: 64px 20px; }
  .platform-grid, .uc-grid { grid-template-columns: 1fr; }
  .cta h2 { font-size: 28px; }
  footer { padding: 48px 20px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ctable, .ctable tbody, .ctable tr, .ctable td, .ctable th { display: block; width: 100%; }
  .ctable thead { display: none; }
  .ctable tr { border-bottom: 1px solid var(--rule); padding: 4px 0; }
  .ctable td { border-bottom: 1px solid var(--rule-soft); padding: 10px 16px; }
  .ctable td.feat { background: var(--surface); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
  .ctable td.us::before { content: "stimme.ai: "; font-weight: 700; color: var(--accent); }
  .ctable td.them::before { content: "Typischer US-Anbieter: "; font-weight: 700; color: var(--ink); }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-privacy { margin-left: 0; max-width: none; }
}
