/* ============================================================
   auxify — Website-Styles
   Design-Tokens identisch zur bisherigen Version (Farben, Radii,
   Schatten, Dark-Mode). Nur Layout & Inhalt wurden neu aufgebaut.
   ============================================================ */

:root {
  --color-bg: oklch(98.4% 0.004 95);
  --color-subtle: oklch(96.5% 0.006 265);
  --color-surface: #fff;
  --color-ink: oklch(27% 0.027 256);
  --color-muted: oklch(50% 0.02 256);
  --color-primary: oklch(36% 0.13 265);
  --color-primary-2: oklch(46% 0.14 265);
  --color-line: oklch(91% 0.008 256);
  --color-success: #059669;
  /* Highlight-Grün wie in der App (app.auxify.de) — dunkler Text für Kontrast */
  --color-accent: #34d399;
  --color-accent-ink: #04382a;

  --shadow-card: 0 1px 2px 0 oklch(27% 0.027 256 / 0.04), 0 4px 12px -2px oklch(27% 0.027 256 / 0.06);
  --shadow-elevated: 0 8px 24px -6px oklch(36% 0.13 265 / 0.25);
  --shadow-float: 0 30px 60px -20px oklch(27% 0.027 256 / 0.45);

  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;

  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  color-scheme: light;
}

html.dark {
  color-scheme: dark;
  /* Echtes Schwarz, strikt neutral (Chroma 0). Die Flächen liegen dicht
     beieinander — Tiefe entsteht über Kanten, nicht über graue Platten. */
  --color-bg: oklch(0% 0 0);
  --color-subtle: oklch(8.5% 0 0);
  --color-surface: oklch(11.5% 0 0);
  --color-ink: oklch(95% 0 0);
  --color-muted: oklch(68% 0 0);
  /* Blau bleibt der Kern, aber mit weniger Chroma: gesättigtes Indigo auf
     Schwarz ist die auffälligste Signatur generischer KI-Dark-Modes. */
  --color-primary: oklch(66% 0.115 262);
  --color-primary-2: oklch(74% 0.09 262);
  --color-line: oklch(100% 0 0 / 0.1);
  --color-success: #34d399;
  /* Auf Schwarz trägt ein schwarzer Schatten keine Information — er malt nur
     dunkle Flecken auf die Fläche (sichtbar als Halo um Mockups).
     Elevation kommt deshalb aus Hairline und Innenkante. */
  --shadow-card: inset 0 1px 0 0 oklch(100% 0 0 / 0.03);
  --shadow-elevated: 0 0 0 1px oklch(100% 0 0 / 0.08);
  --shadow-float: 0 0 0 1px oklch(100% 0 0 / 0.07), 0 24px 48px -32px oklch(0% 0 0 / 0.9);
}

/* ---------- Reset & Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-behavior: smooth; }
html, body { width: 100%; min-height: 100%; }
body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  transition: background-color 0.3s, color 0.3s;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; letter-spacing: inherit; color: inherit; background: transparent; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-size: inherit; font-weight: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
::placeholder { color: var(--color-muted); opacity: 0.7; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
@media (min-width: 640px) { .container { padding-inline: 32px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  background: transparent;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--color-bg) 80%, transparent);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--color-line);
}
.site-header.solid {
  background: color-mix(in oklab, var(--color-bg) 80%, transparent);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--color-line);
}
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.025em; font-size: 1.25rem; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-2xl);
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff; box-shadow: var(--shadow-elevated);
  box-shadow: var(--shadow-elevated), inset 0 0 0 1px rgb(255 255 255 / 0.15);
}
.brand-mark .icon { width: 18px; height: 18px; }
.brand--lg { font-size: 1.5rem; }
.brand--lg .brand-mark { width: 40px; height: 40px; }
.brand--lg .brand-mark .icon { width: 20px; height: 20px; }

.main-nav { display: none; align-items: center; gap: 28px; }
.main-nav a { font-size: 15px; color: var(--color-muted); transition: color 0.2s; }
.main-nav a:hover { color: var(--color-ink); }
.header-actions { display: none; align-items: center; gap: 12px; }
.header-actions-mobile { display: flex; align-items: center; gap: 4px; }
@media (min-width: 768px) {
  .main-nav, .header-actions { display: flex; }
  .header-actions-mobile .menu-btn { display: inline-flex; }
  .header-actions-mobile { display: none; }
}

.theme-toggle, .menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 9999px;
  border: 1px solid var(--color-line); color: var(--color-ink);
  transition: background-color 0.15s;
}
.header-actions .theme-toggle { width: 40px; height: 40px; }
.theme-toggle:hover, .menu-btn:hover { background: var(--color-subtle); }
.menu-btn { border: 0; border-radius: var(--radius-xl); }
.theme-toggle .icon, .menu-btn .icon { width: 18px; height: 18px; }
.menu-btn .icon { width: 22px; height: 22px; }
html:not(.dark) .theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }

.mobile-menu { overflow: hidden; max-height: 0; transition: max-height 0.3s var(--ease-out); border-bottom: 0 solid var(--color-line); }
.mobile-menu.open {
  max-height: 384px; border-bottom-width: 1px;
  background: color-mix(in oklab, var(--color-bg) 95%, transparent);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.mobile-menu nav { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  min-height: 48px; display: flex; align-items: center; padding-inline: 12px;
  border-radius: var(--radius-xl); transition: background-color 0.15s;
}
.mobile-menu nav a:hover { background: var(--color-subtle); }
.mobile-menu nav .btn { margin-top: 8px; justify-content: center; border-radius: 9999px; }
@media (min-width: 768px) { .mobile-menu { display: none; } }

.header-actions-page { display: flex; align-items: center; gap: 8px; }
.header-actions-page .theme-toggle { width: 40px; height: 40px; }
.btn-back {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding-inline: 16px;
  border-radius: 9999px; border: 1px solid var(--color-line); background: var(--color-surface);
  font-size: 15px; font-weight: 500; transition: background-color 0.15s;
}
.btn-back:hover { background: var(--color-subtle); }
.btn-back .icon { width: 16px; height: 16px; }
.menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.menu-btn[aria-expanded="false"] .icon-close { display: none; }

/* ---------- Buttons & Pills ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding-inline: 28px; border-radius: var(--radius-2xl);
  font-weight: 600; transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-elevated); }
.btn-primary:hover { opacity: 0.95; }
/* Grüner Conversion-CTA — wie die hervorgehobenen Elemente in der App */
.btn-success {
  background: var(--color-accent); color: var(--color-accent-ink);
  box-shadow: 0 8px 24px -6px color-mix(in oklab, var(--color-accent) 50%, transparent);
}
.btn-success:hover { opacity: 0.95; }
.btn-ghost { border: 1px solid var(--color-line); background: var(--color-surface); color: var(--color-ink); }
.fab-app {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding-inline: 24px; border-radius: 9999px;
  background: var(--color-accent); color: var(--color-accent-ink); font-size: 15px; font-weight: 600;
  box-shadow: 0 8px 24px -6px color-mix(in oklab, var(--color-accent) 50%, transparent);
  transition: transform 0.2s, opacity 0.2s;
}
.fab-app:hover { transform: translateY(-2px); opacity: 0.95; }
.fab-app .icon { width: 16px; height: 16px; }
.fab-app--hidden { opacity: 0; transform: translateY(12px) scale(0.96); pointer-events: none; }
@media (min-width: 640px) { .fab-app { right: 24px; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); } }
.btn-ghost:hover { background: var(--color-subtle); }
.btn-sm { min-height: 40px; padding-inline: 20px; border-radius: 9999px; font-size: 15px; }
.btn .icon { width: 18px; height: 18px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--color-line); background: var(--color-surface);
  border-radius: 9999px; padding: 6px 12px; font-size: 0.875rem; font-weight: 500;
}
.pill .dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--color-accent); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid color-mix(in oklab, var(--color-primary) 15%, transparent);
  background: color-mix(in oklab, var(--color-primary) 5%, transparent);
  color: var(--color-primary);
  border-radius: 9999px; padding: 4px 12px; font-size: 13px; font-weight: 500;
}
.badge .icon { width: 14px; height: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
  padding: 4px 12px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.025em;
}

/* ---------- Abschnitte ---------- */
.section { padding-block: 64px; }
@media (min-width: 640px) { .section { padding-block: 96px; } }
.section--subtle { background: var(--color-subtle); }

.section-head { text-align: center; }
.section-head h2 {
  margin-top: 12px; font-size: 1.7rem; font-weight: 600;
  letter-spacing: -0.025em; max-width: 48rem; margin-inline: auto;
  text-wrap: balance;
}
.section-head p { margin-top: 12px; font-size: 15px; color: var(--color-muted); line-height: 1.625; max-width: 42rem; margin-inline: auto; }
@media (min-width: 640px) {
  .section-head h2 { font-size: 2.25rem; }
  .section-head p { font-size: 1rem; }
}

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); will-change: transform; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: 32px 64px; }
@media (min-width: 640px) { .hero { padding-block: 56px 96px; } }
.hero-glow {
  pointer-events: none; position: absolute; top: -128px; right: 0;
  width: 28rem; height: 28rem; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  filter: blur(64px);
}
.hero-grid { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.hero h1 {
  /* 2.2rem statt 2.4rem: darunter passt "Eine Gemeinde ist ein" auf eine Zeile,
     die farbige Antwortzeile bleibt der Bruch — kein "ist ein" als Waise. */
  margin-top: 20px; font-size: 2.2rem; font-weight: 600;
  line-height: 1.06; letter-spacing: -0.02em; text-wrap: balance;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.4rem; } }
.hero h1.hero-brand { font-size: 3.2rem; }
@media (min-width: 640px) { .hero h1.hero-brand { font-size: 4rem; } }
@media (min-width: 1024px) { .hero h1.hero-brand { font-size: 4.6rem; } }
.hero-slogan {
  margin-top: 12px; font-size: 1.25rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--color-primary);
}
@media (min-width: 640px) { .hero-slogan { font-size: 1.5rem; } }
.hero-sub { margin-top: 20px; font-size: 17px; color: var(--color-muted); line-height: 1.625; max-width: 36rem; }
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }
.hero-ctas { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; flex-wrap: wrap; } }
.hero-ctas .btn { white-space: nowrap; }
.hero-pills { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero-phone { display: flex; justify-content: center; }
@media (min-width: 1024px) { .hero-phone { justify-content: flex-end; } }

.scroll-cue {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.scroll-cue:hover { color: var(--color-primary); }
.scroll-cue .icon { width: 16px; height: 16px; animation: cue-bob 2s ease-in-out infinite; }
@keyframes cue-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.hero-answer { display: block; color: var(--color-primary); }

/* ---------- Hero mit Nachbarschafts-Netzwerk ---------- */
.hero--network { padding-block: 24px 56px; }
@media (min-width: 640px) { .hero--network { padding-block: 40px 72px; } }
.hero-intro { text-align: center; }
.hero-intro h1 { max-width: 22ch; margin-inline: auto; }
.hero-intro .hero-sub { margin-inline: auto; max-width: 40rem; }
.hero-intro .hero-ctas,
.hero-intro .hero-pills { justify-content: center; }
@media (max-width: 639px) { .hero-intro .hero-ctas { align-items: stretch; } }
.hero--network .scroll-cue { display: flex; justify-content: center; margin-top: 32px; }

/* Panel mit Straßenkarte, Verbindungen und Nachbarn */
.network {
  position: relative; margin-top: 40px; overflow: hidden;
  height: clamp(480px, 48vw, 620px);
  border-radius: var(--radius-3xl);
  border: 1px solid var(--color-line);
  background:
    radial-gradient(120% 90% at 50% 0%, color-mix(in oklab, var(--color-primary) 6%, transparent), transparent 70%),
    var(--color-surface);
  box-shadow: var(--shadow-card);
}
@media (max-width: 767px) { .network { height: 540px; border-radius: var(--radius-2xl); } }

/* Straßenkarte im Hintergrund — angedeutet, nie dominant */
.net-map {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: var(--color-ink);
  -webkit-mask-image: radial-gradient(125% 105% at 50% 45%, #000 52%, transparent 100%);
  mask-image: radial-gradient(125% 105% at 50% 45%, #000 52%, transparent 100%);
}
.map-roads path { fill: none; stroke: currentColor; stroke-width: 9; stroke-linecap: round; opacity: 0.07; }
.map-roads--minor path { stroke-width: 3.5; opacity: 0.05; }
.map-blocks rect { fill: currentColor; opacity: 0.05; }
.map-water { fill: none; stroke: var(--color-primary); stroke-width: 22; stroke-linecap: round; opacity: 0.09; }
.map-park ellipse { fill: var(--color-accent); opacity: 0.09; }
html.dark .map-roads path { opacity: 0.1; }
html.dark .map-blocks rect { opacity: 0.07; }

/* Verbindungslinien */
.net-links { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-link {
  fill: none; stroke: var(--color-primary); stroke-opacity: 0.3;
  stroke-width: 1.5; stroke-linecap: round; vector-effect: non-scaling-stroke;
}
.net-pulse {
  fill: none; stroke: var(--color-accent); stroke-width: 2.5; stroke-linecap: round;
  vector-effect: non-scaling-stroke; stroke-dasharray: 5 95;
  animation: net-travel 4.5s linear infinite;
}
@keyframes net-travel { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

/* Knoten = Menschen */
.net-nodes { position: absolute; inset: 0; }
.net-node {
  position: absolute; display: flex; align-items: center;
  left: calc(var(--x) * 1%); top: calc(var(--y) * 1%);
  transform: translate(-50%, -50%);
}
.net-dot {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 9999px;
  font-size: 15px; font-weight: 700; color: #fff;
  border: 2px solid var(--color-surface);
  box-shadow: 0 6px 18px -6px oklch(27% 0.027 256 / 0.5);
}
.net-dot::before {
  content: ""; position: absolute; inset: -3px; border-radius: 9999px;
  border: 2px solid currentColor; opacity: 0;
  animation: net-ping 3.2s var(--ease-out) infinite;
}
@keyframes net-ping {
  0% { transform: scale(0.9); opacity: 0.55; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
.net-node[data-role="need"] .net-dot {
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff;
}
.net-node[data-role="help"] .net-dot {
  background: linear-gradient(to bottom right, #4ade80, #10b981);
  color: var(--color-accent-ink);
}
.net-node[data-role="need"] .net-dot::before { border-color: var(--color-primary); }
.net-node[data-role="help"] .net-dot::before { border-color: var(--color-accent); }
.net-node:nth-child(2) .net-dot::before { animation-delay: 0.4s; }
.net-node:nth-child(3) .net-dot::before { animation-delay: 0.9s; }
.net-node:nth-child(4) .net-dot::before { animation-delay: 1.4s; }
.net-node:nth-child(5) .net-dot::before { animation-delay: 1.9s; }
.net-node:nth-child(6) .net-dot::before { animation-delay: 2.3s; }
.net-node:nth-child(7) .net-dot::before { animation-delay: 2.7s; }
.net-node:nth-child(8) .net-dot::before { animation-delay: 3.1s; }

.net-label {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: max-content; max-width: 190px;
  padding: 8px 12px; border-radius: var(--radius-xl);
  border: 1px solid var(--color-line);
  background: color-mix(in oklab, var(--color-surface) 86%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.net-label strong { display: block; font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.net-label span { display: block; margin-top: 1px; font-size: 12px; line-height: 1.35; color: var(--color-muted); }
.net-node[data-side="right"] .net-label { left: calc(100% + 10px); }
.net-node[data-side="left"] .net-label { right: calc(100% + 10px); text-align: right; }

/* Domain-Chip: die Plattform trägt den Namen der Gemeinde */
.net-domain {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px; padding: 7px 14px;
  border: 1px solid color-mix(in oklab, var(--color-primary) 20%, transparent);
  background: color-mix(in oklab, var(--color-surface) 88%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 13px; font-weight: 600; color: var(--color-primary);
  box-shadow: var(--shadow-card);
}
.net-domain .icon { width: 14px; height: 14px; }

.net-legend {
  margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 8px 18px; font-size: 13px; color: var(--color-muted);
}
.net-key { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--color-ink); }
.net-key-dot { width: 10px; height: 10px; border-radius: 9999px; }
.net-key-dot--need { background: var(--color-primary); }
.net-key-dot--help { background: var(--color-accent); }
.net-key-text { flex-basis: 100%; text-align: center; text-wrap: balance; }
@media (min-width: 768px) { .net-key-text { flex-basis: auto; border-left: 1px solid var(--color-line); padding-left: 18px; } }

/* Mobil: weniger Knoten, engere Beschriftung */
@media (max-width: 767px) {
  .net-node { left: calc(var(--mx) * 1%); top: calc(var(--my) * 1%); }
  .net-node--wide { display: none; }
  .net-dot { width: 38px; height: 38px; font-size: 13px; }
  .net-label { max-width: 132px; padding: 6px 9px; }
  .net-label strong { font-size: 12px; }
  .net-label span { font-size: 11px; }
  .net-node[data-side-m="right"] .net-label { left: calc(100% + 8px); right: auto; text-align: left; }
  .net-node[data-side-m="left"] .net-label { right: calc(100% + 8px); left: auto; text-align: right; }
  .net-domain { top: auto; bottom: 12px; left: 50%; right: auto; transform: translateX(-50%); font-size: 12px; }
}

/* ---------- Plattform-Showcase (eigene Domain) ---------- */
.showcase { margin-top: 40px; display: grid; gap: 36px; align-items: center; }
@media (min-width: 640px) { .showcase { margin-top: 56px; } }
@media (min-width: 1024px) { .showcase { grid-template-columns: 1fr 1fr; gap: 56px; } }
.showcase-text h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
@media (min-width: 640px) { .showcase-text h3 { font-size: 1.6rem; } }
.showcase-text p { margin-top: 12px; font-size: 15px; color: var(--color-muted); line-height: 1.625; max-width: 34rem; }
.showcase-text .check-list { margin-top: 22px; }
.showcase-note { margin-top: 14px; text-align: center; font-size: 12px; color: var(--color-muted); }

/* Browser-Mockup: zeigt die Plattform unter der Gemeinde-Domain */
.browser {
  max-width: 30rem; margin-inline: auto; overflow: hidden;
  border-radius: var(--radius-2xl); border: 1px solid var(--color-line);
  box-shadow: var(--shadow-float);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: #e9eaee; border-bottom: 1px solid rgb(0 0 0 / 0.08);
}
html.dark .browser-bar { background: #2b2b2b; border-bottom-color: rgb(255 255 255 / 0.08); }
.browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-dots i { width: 9px; height: 9px; border-radius: 9999px; background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px; background: #fff; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: #374151; letter-spacing: -0.01em;
}
html.dark .browser-url { background: #3a3a3a; color: #e5e5e5; }
.browser-url .icon { width: 11px; height: 11px; color: #059669; }
/* Der Screen zeigt immer die echte (helle) Plattform — unabhängig vom Website-Theme */
.browser-screen {
  --color-bg: #fafaf7;
  --color-subtle: #f3f4f6;
  --color-surface: #ffffff;
  --color-ink: #1f2937;
  --color-muted: #6b7280;
  --color-primary: #1e3a8a;
  --color-primary-2: #2b4aa0;
  --color-line: #e5e7eb;
  --color-success: #059669;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: var(--color-bg); color: var(--color-ink); color-scheme: light;
}
.browser-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--color-surface); border-bottom: 1px solid var(--color-line); }
.browser-crest {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: var(--radius-xl);
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff;
}
.browser-crest .icon { width: 19px; height: 19px; }
.browser-head strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.02em; }
.browser-head span { display: block; font-size: 11px; color: var(--color-muted); }
.browser-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.task-tag {
  flex-shrink: 0; border-radius: 9999px; padding: 3px 9px; font-size: 10px; font-weight: 600;
  background: color-mix(in oklab, var(--color-primary) 10%, transparent); color: var(--color-primary);
}

/* Textspalte neben dem Handy */
.split-title { margin-top: 12px; font-size: 1.7rem; font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
@media (min-width: 640px) { .split-title { font-size: 2.1rem; } }
.split-text { margin-top: 14px; font-size: 16px; color: var(--color-muted); line-height: 1.625; max-width: 34rem; }
.phone-note { margin-top: 32px; text-align: center; font-size: 13px; color: var(--color-muted); }

/* ---------- Phone-Mockup ---------- */
.phone-wrap { position: relative; }
.phone-halo {
  position: absolute; inset: 0; z-index: -1; margin: auto;
  width: 18rem; height: 18rem; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-primary) 15%, transparent);
  filter: blur(64px);
}
.phone-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.phone {
  position: relative; margin-inline: auto; width: 290px; height: 590px;
  border-radius: 44px; background: #14161c; padding: 12px;
  box-shadow: var(--shadow-float), inset 0 0 0 1px rgb(255 255 255 / 0.08);
}
.phone--short { height: 540px; }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 20px; background: #14161c; z-index: 10;
  border-bottom-left-radius: var(--radius-2xl); border-bottom-right-radius: var(--radius-2xl);
}
.phone-screen {
  position: relative; display: flex; flex-direction: column;
  height: 100%; width: 100%; overflow: hidden;
  border-radius: 34px; background: var(--color-bg);
  /* Screen zeigt immer die echte (helle) auxify-App — unabhängig vom Website-Theme */
  --color-bg: #fafaf7;
  --color-subtle: #f3f4f6;
  --color-surface: #ffffff;
  --color-ink: #1f2937;
  --color-muted: #6b7280;
  --color-primary: #1e3a8a;
  --color-primary-2: #2b4aa0;
  --color-line: #e5e7eb;
  --color-success: #059669;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: var(--color-ink); color-scheme: light;
}
.phone-status {
  display: flex; height: 36px; flex-shrink: 0; align-items: center;
  justify-content: space-between; padding-inline: 24px;
  font-size: 11px; font-weight: 600; color: var(--color-ink);
}
.phone-bar {
  flex-shrink: 0; border-bottom: 1px solid var(--color-line);
  background: color-mix(in oklab, var(--color-bg) 90%, transparent);
  padding: 4px 16px 8px;
}
.phone-bar h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.025em; }
.phone-bar p { font-size: 10px; color: var(--color-muted); }
.phone-body { flex: 1; overflow: hidden; padding: 12px 12px 0; display: flex; flex-direction: column; gap: 10px; }
.phone--short .phone-body { padding-bottom: 14px; }
.phone--short .mini-form { height: 100%; }
.phone--short .mini-submit { margin-top: auto; }
.phone-tabs {
  flex-shrink: 0; border-top: 1px solid var(--color-line);
  background: color-mix(in oklab, var(--color-surface) 95%, transparent);
  padding: 6px 8px 12px;
  display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
}
.phone-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 8px; font-weight: 500; color: var(--color-muted); }
.phone-tab .icon { width: 16px; height: 16px; }
.phone-tab.active { color: var(--color-primary); }
.phone-tab-fab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8px; font-weight: 500; color: var(--color-muted);
}
.phone-tab-fab span {
  margin-top: -20px; display: flex; width: 40px; height: 40px;
  align-items: center; justify-content: center; border-radius: 9999px;
  background: var(--color-accent); color: var(--color-accent-ink); box-shadow: var(--shadow-elevated);
}
.phone-tab-fab .icon { width: 20px; height: 20px; }

/* Aufgaben-Karte im Phone — Aufbau wie in der echten App:
   Titel / Beschreibung / Meta (Preis · Ort · Zeit) / Fuß (Avatar+Sterne | Dringlichkeit) */
.task-card {
  border-radius: var(--radius-2xl); border: 1px solid var(--color-line);
  background: var(--color-surface); padding: 12px; box-shadow: var(--shadow-card);
}
.task-card h5 { min-width: 0; font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--color-ink); }
.task-desc { margin-top: 4px; font-size: 11px; line-height: 1.45; color: var(--color-muted); }
.task-meta {
  margin-top: 8px; display: flex; flex-wrap: wrap; align-items: center;
  column-gap: 10px; row-gap: 2px; font-size: 10.5px; color: var(--color-muted);
}
.task-meta .icon { width: 10px; height: 10px; }
.task-price { font-weight: 600; color: var(--color-ink); font-variant-numeric: tabular-nums; }
.task-foot { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.task-who { display: inline-flex; align-items: center; gap: 6px; font-size: 10.5px; color: var(--color-muted); min-width: 0; }
.task-who .avatar-xs {
  display: inline-flex; width: 18px; height: 18px; align-items: center; justify-content: center;
  border-radius: 9999px; background: color-mix(in oklab, var(--color-primary) 12%, transparent);
  color: var(--color-primary); font-size: 8px; font-weight: 700; flex-shrink: 0;
}
.task-who .star { color: #f59e0b; fill: currentColor; width: 10px; height: 10px; }
.task-who .rating { font-weight: 600; color: var(--color-ink); }
.dots { display: flex; gap: 4px; flex-shrink: 0; }
.dots i { width: 5px; height: 5px; border-radius: 9999px; background: var(--color-line); }
.dots i.on { background: var(--color-primary); }

/* Suchfeld-Mock im Phone (wie AufgabenPage der App) */
.phone-search {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--color-line); background: var(--color-surface);
  border-radius: var(--radius-xl); padding: 7px 10px;
  font-size: 11px; color: var(--color-muted);
}
.phone-search .icon { width: 12px; height: 12px; }

/* Formular im Phone */
.mini-form { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.mini-field { border: 1px solid var(--color-line); background: var(--color-surface); border-radius: var(--radius-xl); padding: 8px 10px; }
.mini-field label { display: block; font-size: 9px; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.mini-field .val { margin-top: 2px; font-size: 12px; font-weight: 600; color: var(--color-ink); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-chip {
  display: inline-flex; align-items: center; gap: 4px; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary); font-size: 10px; font-weight: 600; padding: 3px 8px;
}
.mini-note { display: flex; align-items: flex-start; gap: 6px; font-size: 10px; color: var(--color-muted); line-height: 1.4; padding-inline: 2px; }
.mini-note .icon { width: 11px; height: 11px; margin-top: 1px; color: var(--color-success); }
.mini-submit {
  margin-top: 2px; display: flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 40px; border-radius: var(--radius-xl); background: var(--color-accent);
  color: var(--color-accent-ink); font-size: 12px; font-weight: 600; box-shadow: var(--shadow-elevated);
}
.mini-submit .icon { width: 13px; height: 13px; }
.mini-free { font-size: 9px; font-weight: 500; opacity: 0.85; }

/* Chat im Phone */
.chat { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.chat-day { align-self: center; font-size: 9px; color: var(--color-muted); background: var(--color-subtle); border-radius: 9999px; padding: 2px 10px; }
.bubble { max-width: 82%; border-radius: var(--radius-2xl); padding: 8px 10px; line-height: 1.4; box-shadow: var(--shadow-card); }
.bubble-in { align-self: flex-start; background: var(--color-surface); border: 1px solid var(--color-line); border-bottom-left-radius: 6px; }
.bubble-out { align-self: flex-end; background: var(--color-primary); color: #fff; border-bottom-right-radius: 6px; }
.bubble-time { display: block; margin-top: 3px; font-size: 8px; opacity: 0.65; text-align: right; }
.chat-appointment {
  align-self: center; width: 94%; border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--color-success) 30%, transparent);
  background: color-mix(in oklab, var(--color-success) 10%, transparent);
  padding: 10px 12px;
}
.chat-appointment .cap { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; color: var(--color-success); }
.chat-appointment .cap .icon { width: 12px; height: 12px; }
.chat-appointment .when { margin-top: 3px; font-size: 12px; font-weight: 600; color: var(--color-ink); }
.chat-appointment .ok { margin-top: 2px; font-size: 9px; color: var(--color-muted); }
.chat-hint { display: flex; align-items: center; gap: 6px; align-self: center; font-size: 9px; color: var(--color-muted); }
.chat-hint .icon { width: 10px; height: 10px; }

/* ---------- Story / Kapitel ---------- */
.story { position: relative; margin-top: 48px; }
@media (min-width: 640px) { .story { margin-top: 64px; } }
.story-rail {
  position: absolute; top: 0; bottom: 0; left: 19px; width: 2px;
  background: var(--color-line); border-radius: 9999px; overflow: hidden;
}
.story-rail span {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-2));
  transform-origin: top; transform: scaleY(0);
}
@media (min-width: 1024px) { .story-rail { left: 50%; margin-left: -1px; } }

.chapter { position: relative; padding-left: 56px; padding-block: 28px; }
@media (min-width: 1024px) {
  .chapter {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    padding-left: 0; padding-block: 44px;
  }
  .chapter-text { grid-column: 1; grid-row: 1; text-align: right; justify-items: end; display: grid; gap: 0; }
  .chapter-visual { grid-column: 2; grid-row: 1; justify-self: start; }
  .chapter:nth-of-type(even) .chapter-text { grid-column: 2; text-align: left; justify-items: start; }
  .chapter:nth-of-type(even) .chapter-visual { grid-column: 1; justify-self: end; }
  .chapter-text .chapter-perks { justify-content: flex-end; }
  .chapter:nth-of-type(even) .chapter-text .chapter-perks { justify-content: flex-start; }
}
.chapter-marker {
  position: absolute; left: 0; top: 34px;
  display: flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: 9999px; background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-elevated);
  border: 3px solid var(--color-bg);
}
@media (min-width: 1024px) { .chapter-marker { left: 50%; top: 50%; transform: translate(-50%, -50%); } }
.chapter-time {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px; background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary); font-size: 12px; font-weight: 700; padding: 4px 12px;
  letter-spacing: 0.025em;
}
.chapter-time .icon { width: 12px; height: 12px; }
.chapter h3 { margin-top: 12px; font-size: 1.35rem; font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
@media (min-width: 640px) { .chapter h3 { font-size: 1.6rem; } }
.chapter p { margin-top: 10px; font-size: 15px; color: var(--color-muted); line-height: 1.625; max-width: 34rem; }
.chapter-perks { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.perk {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px; padding: 6px 12px; font-size: 13px; font-weight: 600;
  background: color-mix(in oklab, var(--color-success) 10%, transparent);
  color: var(--color-success);
  border: 1px solid color-mix(in oklab, var(--color-success) 30%, transparent);
}
.perk .icon { width: 13px; height: 13px; }
.chapter-visual { margin-top: 24px; }
@media (min-width: 1024px) { .chapter-visual { margin-top: 0; } }

/* Visual-Karten in Kapiteln */
.scene-card {
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-surface); padding: 24px; box-shadow: var(--shadow-card);
  max-width: 26rem;
}
.scene-card h4 { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.scene-card h4 .icon { width: 16px; height: 16px; color: var(--color-muted); }
.option-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.option {
  display: flex; align-items: flex-start; gap: 10px; border-radius: var(--radius-2xl);
  border: 1px solid var(--color-line); background: var(--color-bg); padding: 12px 14px;
}
.option .icon { width: 16px; height: 16px; margin-top: 2px; color: var(--color-muted); }
.option strong { display: block; font-size: 14px; font-weight: 600; }
.option span { font-size: 13px; color: var(--color-muted); line-height: 1.45; }
.option--bad strong { text-decoration: line-through; text-decoration-thickness: 1.5px; text-decoration-color: color-mix(in oklab, var(--color-muted) 60%, transparent); }
.option--good {
  border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
  background: color-mix(in oklab, var(--color-primary) 5%, transparent);
}
.option--good .icon { color: var(--color-primary); }
.option--good strong { color: var(--color-primary); }

/* Quittung */
.receipt {
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-surface); box-shadow: var(--shadow-card);
  padding: 28px; max-width: 26rem; margin-inline: auto;
}
.receipt h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.receipt h4 .icon { width: 16px; height: 16px; color: var(--color-muted); }
.receipt-group { margin-top: 18px; }
.receipt-group + .receipt-group { border-top: 1px dashed var(--color-line); padding-top: 18px; }
.receipt-group .who { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted); }
.receipt-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 8px; font-size: 14px; }
.receipt-row .lbl { color: var(--color-muted); }
.receipt-row .amt { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.receipt-row .amt.zero { color: var(--color-success); }
.receipt-row .amt.plus { color: var(--color-success); }
.receipt-note { margin-top: 14px; font-size: 13px; color: var(--color-muted); line-height: 1.5; }
.receipt-total {
  margin-top: 18px; border-top: 2px solid var(--color-line); padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center; font-weight: 700;
}
.receipt-total .amt { color: var(--color-success); font-size: 1.1rem; }

/* Bewertungs-Karten */
.rating-cards { display: flex; flex-direction: column; gap: 14px; max-width: 26rem; }
.rating-card {
  border-radius: var(--radius-2xl); border: 1px solid var(--color-line);
  background: var(--color-surface); padding: 16px 18px; box-shadow: var(--shadow-card);
}
.rating-card .top { display: flex; align-items: center; gap: 10px; }
.avatar {
  display: flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 9999px; background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary); font-size: 14px; font-weight: 700;
}
.rating-card .who strong { display: block; font-size: 14px; font-weight: 600; }
.rating-card .who span { font-size: 12px; color: var(--color-muted); }
.stars { margin-left: auto; display: flex; gap: 2px; color: #fbbf24; }
.stars .icon { width: 14px; height: 14px; fill: currentColor; }
.rating-card blockquote { margin-top: 10px; font-size: 14px; color: var(--color-muted); line-height: 1.5; }

/* Zahlung / Null-Provision-Visual */
.zero-fee {
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-surface); box-shadow: var(--shadow-card);
  padding: 28px; max-width: 26rem; text-align: center;
}
.zero-fee .flow { display: flex; align-items: center; justify-content: center; gap: 14px; }
.zero-fee .end { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.zero-fee .end .avatar { width: 44px; height: 44px; font-size: 16px; }
.zero-fee .arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--color-muted); }
.zero-fee .arrow .amount { font-size: 1.25rem; font-weight: 700; color: var(--color-ink); font-variant-numeric: tabular-nums; }
.zero-fee .arrow .icon { width: 22px; height: 22px; color: var(--color-primary); }
.zero-fee .cut {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  border-radius: 9999px; padding: 8px 16px; font-size: 14px; font-weight: 700;
  background: color-mix(in oklab, var(--color-success) 10%, transparent);
  color: var(--color-success);
  border: 1px solid color-mix(in oklab, var(--color-success) 30%, transparent);
}
.zero-fee .cut .icon { width: 15px; height: 15px; }
.zero-fee .note { margin-top: 12px; font-size: 13px; color: var(--color-muted); line-height: 1.5; }

/* Epilog */
.epilog {
  margin-top: 40px; border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklab, var(--color-primary) 15%, transparent);
  background: color-mix(in oklab, var(--color-primary) 5%, transparent);
  padding: 32px; text-align: center;
}
@media (min-width: 640px) { .epilog { padding: 40px; } }
.epilog h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
.epilog p { margin-top: 10px; color: var(--color-muted); line-height: 1.625; max-width: 38rem; margin-inline: auto; }
.epilog .btn { margin-top: 24px; }

/* ---------- Vorteils-Grid ---------- */
.feature-grid { margin-top: 40px; display: grid; gap: 16px; }
@media (min-width: 640px) { .feature-grid { margin-top: 56px; gap: 20px; } }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  height: 100%; background: var(--color-surface); border-radius: var(--radius-3xl);
  border: 1px solid var(--color-line); padding: 24px; box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 640px) { .feature-card { padding: 28px; } }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.feature-icon {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  border-radius: var(--radius-2xl);
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff; box-shadow: var(--shadow-elevated), inset 0 0 0 1px rgb(255 255 255 / 0.15);
}
.feature-icon .icon { width: 22px; height: 22px; }
.feature-card h3 { margin-top: 16px; font-size: 17px; font-weight: 600; }
.feature-card p { margin-top: 8px; font-size: 15px; color: var(--color-muted); line-height: 1.625; }

/* ---------- Über-uns-Faktenkarte (Unterseite) ---------- */
.about-card {
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-subtle); padding: 24px;
}
@media (min-width: 640px) { .about-card { padding: 28px; } }
.about-card ul { display: flex; flex-direction: column; gap: 20px; }
.about-card li { display: flex; flex-direction: column; gap: 4px; padding-left: 16px; border-left: 2px solid var(--color-primary); }
.about-card strong { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--color-ink); }
.about-card strong .icon { width: 16px; height: 16px; color: var(--color-primary); }
.about-card li span { font-size: 14px; color: var(--color-muted); line-height: 1.55; }

/* ---------- Preise ---------- */
/* Versprechen-Banner: 0 % Provision & keine Gebühren — grün hervorgehoben */
.promise {
  margin-top: 32px; max-width: 60rem; margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--radius-2xl);
  border: 2px solid var(--color-accent);
  background: color-mix(in oklab, var(--color-accent) 10%, transparent);
  padding: 16px 24px; text-align: center;
}
.promise .icon { width: 20px; height: 20px; color: var(--color-success); }
.promise strong { font-size: 17px; font-weight: 700; color: var(--color-success); }
.promise span { font-size: 14px; color: var(--color-muted); }
.price-grid { margin-top: 40px; display: grid; gap: 16px; max-width: 44rem; margin-inline: auto; }
@media (min-width: 640px) { .price-grid { margin-top: 56px; gap: 20px; } }
@media (min-width: 768px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  position: relative; height: 100%; display: flex; flex-direction: column;
  background: var(--color-surface); border-radius: var(--radius-3xl);
  border: 1px solid var(--color-line); padding: 28px; box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s; overflow: hidden;
}
@media (min-width: 640px) { .price-card { padding: 32px; } }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
/* Grün hervorgehobene Karte — das Conversion-Angebot (Anzeigen gratis) */
.price-card--free { border: 2px solid color-mix(in oklab, var(--color-accent) 70%, transparent); box-shadow: var(--shadow-elevated); }
.price-card--free::before {
  content: ""; pointer-events: none; position: absolute; top: -40px; right: -40px;
  width: 144px; height: 144px; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-accent) 14%, transparent);
  filter: blur(64px);
}
.price-top { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.price-top .kind { font-size: 0.875rem; color: var(--color-muted); }
.price-top .price { margin-top: 8px; font-size: 2.25rem; font-weight: 600; letter-spacing: -0.025em; }
.price-top .per { margin-top: 4px; font-size: 0.875rem; color: var(--color-muted); }
.price-flag {
  display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.price-flag--success { background: color-mix(in oklab, var(--color-success) 10%, transparent); color: var(--color-success); }
.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
/* Kein Flex auf dem <li>: sonst würde jedes Inline-Element im Text (z. B. <strong>)
   zu einem eigenen Flex-Item und aus dem Satz herausbrechen. Hängender Einzug stattdessen. */
.check-list li { position: relative; padding-left: 32px; font-size: 15px; line-height: 1.625; }
.check-list .tick {
  position: absolute; left: 0; top: 2px;
  display: flex; width: 20px; height: 20px;
  align-items: center; justify-content: center; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-success) 15%, transparent);
  color: var(--color-success);
}
.check-list .tick .icon { width: 13px; height: 13px; }
.price-note { margin-top: 24px; text-align: center; font-size: 0.875rem; color: var(--color-muted); }

/* Ablauf: wie auxify in die Kommune kommt */
.steps {
  margin-top: 48px; max-width: 44rem; margin-inline: auto; text-align: center;
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-surface); padding: 28px; box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .steps { padding: 36px; } }
.steps h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.025em; }
.step-list { margin-top: 24px; display: flex; flex-direction: column; gap: 18px; text-align: left; }
.step-list li { display: flex; align-items: flex-start; gap: 14px; }
.step-num {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 9999px;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  color: #fff; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-elevated);
}
.step-list strong { display: block; font-size: 15px; font-weight: 600; }
.step-list span:last-child { display: block; margin-top: 3px; font-size: 14px; color: var(--color-muted); line-height: 1.55; }
.steps .btn { margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; max-width: 48rem; margin-inline: auto; }
@media (min-width: 640px) { .faq-list { margin-top: 48px; } }
.faq-item { background: var(--color-surface); border-radius: var(--radius-2xl); border: 1px solid var(--color-line); box-shadow: var(--shadow-card); overflow: hidden; }
.faq-q {
  width: 100%; min-height: 60px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left; padding: 16px 20px; transition: background-color 0.15s;
}
@media (min-width: 640px) { .faq-q { padding-inline: 24px; } }
.faq-q:hover { background: color-mix(in oklab, var(--color-subtle) 60%, transparent); }
.faq-q span { font-size: 1rem; font-weight: 600; }
@media (min-width: 640px) { .faq-q span { font-size: 17px; } }
.faq-q .plus {
  display: inline-flex; width: 36px; height: 36px; flex-shrink: 0;
  align-items: center; justify-content: center; border-radius: 9999px;
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary); transition: transform 0.3s;
}
.faq-q .plus .icon { width: 18px; height: 18px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-out); }
.faq-a > div { padding: 0 20px 20px; font-size: 15px; color: var(--color-muted); line-height: 1.625; }
@media (min-width: 640px) { .faq-a > div { padding-inline: 24px; } }

/* ---------- CTA-Banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; border-radius: 2rem;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-2));
  padding: 56px 32px; text-align: center; box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) { .cta-banner { padding-block: 80px; } }
.cta-banner .blob { pointer-events: none; position: absolute; border-radius: 9999px; background: rgb(255 255 255 / 0.1); filter: blur(64px); }
.cta-banner .blob-1 { top: -64px; left: -64px; width: 16rem; height: 16rem; }
.cta-banner .blob-2 { right: -64px; bottom: -80px; width: 18rem; height: 18rem; }
.cta-banner h2 { position: relative; font-size: 1.8rem; font-weight: 600; letter-spacing: -0.025em; color: #fff; text-wrap: balance; }
@media (min-width: 640px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p { position: relative; margin-top: 12px; color: rgb(255 255 255 / 0.85); line-height: 1.625; max-width: 36rem; margin-inline: auto; }
.cta-banner .btn {
  position: relative; margin-top: 32px; min-height: 54px; padding-inline: 32px;
  background: var(--color-accent); color: var(--color-accent-ink); box-shadow: var(--shadow-float);
}

/* ---------- Steuer-Hinweis ---------- */
.tax-note {
  border-radius: var(--radius-3xl); border: 1px solid var(--color-line);
  background: var(--color-subtle); padding: 24px; font-size: 13px;
  color: var(--color-muted); line-height: 1.625;
}
@media (min-width: 640px) { .tax-note { padding: 32px; } }
.tax-note h3 { display: flex; align-items: center; gap: 8px; color: var(--color-ink); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.tax-note h3 .icon { width: 16px; height: 16px; color: var(--color-muted); }
.tax-note a {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 40px; border-radius: 9999px;
  background: var(--color-surface); border: 1px solid var(--color-line);
  color: var(--color-primary); font-size: 13px; font-weight: 500;
  transition: background-color 0.15s;
}
.tax-note a:hover { background: color-mix(in oklab, var(--color-primary) 5%, transparent); }
.tax-note a .icon { width: 14px; height: 14px; }

/* ---------- SEO-/Regionen-Info ---------- */
.seo-info { border-top: 1px solid var(--color-line); padding-block: 48px; }
.seo-info .container { max-width: 60rem; }
.seo-info h2 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.015em; }
.seo-info-grid { margin-top: 20px; display: grid; gap: 28px; }
@media (min-width: 768px) { .seo-info-grid { grid-template-columns: repeat(3, 1fr); } }
.seo-info h3 { font-size: 0.95rem; font-weight: 600; }
.seo-info p { margin-top: 8px; font-size: 14px; color: var(--color-muted); line-height: 1.625; }
.seo-info a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-line); padding: 48px 0 32px; }
@media (min-width: 640px) { .site-footer { padding-top: 64px; } }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-about p { margin-top: 16px; font-size: 15px; color: var(--color-muted); line-height: 1.625; max-width: 20rem; }
.footer-about address { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--color-muted); }
.footer-about address a, .footer-about address p { display: inline-flex; align-items: flex-start; gap: 8px; }
.footer-about address .icon { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-about address a:hover { color: var(--color-primary); }
.footer-col h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 15px; color: var(--color-muted); transition: color 0.15s; }
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom { margin-top: 40px; border-top: 1px solid var(--color-line); padding-top: 24px; text-align: center; font-size: 0.875rem; color: var(--color-muted); }
.footer-bottom a:hover { color: var(--color-primary); }

/* ---------- Unterseiten (Impressum etc.) ---------- */
.page { max-width: 48rem; margin-inline: auto; padding: 48px 20px 64px; }
@media (min-width: 640px) { .page { padding: 64px 32px 96px; } }
.page h1 { font-size: 2rem; font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
@media (min-width: 640px) { .page h1 { font-size: 2.25rem; } }
.page-intro { margin-top: 16px; font-size: 17px; color: var(--color-muted); line-height: 1.625; }
.page-body { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; font-size: 15px; line-height: 1.625; }
.page-body section > h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.025em; }
.page-body section > * + * { margin-top: 8px; }
.page-body section p, .page-body section div, .page-body section ul { color: var(--color-muted); }
.page-body section ul { margin: 8px 0 0; padding-left: 20px; list-style: disc; }
.page-body section li + li { margin-top: 4px; }
.page-body a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.ph {
  border-radius: 0.25rem; background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  padding: 2px 6px; font-size: 0.95em; font-weight: 500; color: var(--color-primary);
}
.team-photo {
  margin-top: 12px; width: 100%; aspect-ratio: 16 / 9;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border: 2px dashed var(--color-line); border-radius: var(--radius-2xl);
  background: var(--color-subtle); color: var(--color-muted);
  font-size: 14px; font-weight: 500;
}
.team-photo .icon { width: 28px; height: 28px; }
.team-caption { margin-top: 12px; font-size: 14px; color: var(--color-muted); text-align: center; }
.team-grid { margin-top: 20px; display: grid; gap: 12px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-member {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  border: 1px solid var(--color-line); border-radius: var(--radius-2xl);
  background: var(--color-surface); padding: 20px 16px; box-shadow: var(--shadow-card);
}
.team-member .member-photo {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 9999px; margin-bottom: 6px;
  border: 2px dashed var(--color-line); background: var(--color-subtle); color: var(--color-muted);
}
.team-member .member-photo .icon { width: 22px; height: 22px; }
.team-member strong { font-size: 15px; font-weight: 600; color: var(--color-ink); }
.team-member span:last-child { font-size: 13px; color: var(--color-muted); line-height: 1.5; }
.page-stand {
  margin-top: 48px; border-radius: var(--radius-2xl); border: 1px solid var(--color-line);
  background: var(--color-subtle); padding: 16px 20px; font-size: 13px;
  color: var(--color-muted); line-height: 1.625;
}

/* Kontaktformular */
.contact-form { margin-top: 8px; display: flex; flex-direction: column; gap: 16px; border-radius: var(--radius-2xl); border: 1px solid var(--color-line); background: var(--color-surface); padding: 20px; box-shadow: var(--shadow-card); }
@media (min-width: 640px) { .contact-form { padding: 24px; } }
.form-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form label span { margin-bottom: 6px; display: block; font-size: 13px; font-weight: 600; color: var(--color-ink); }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--color-line);
  background: var(--color-surface); padding: 12px 14px; font-size: 15px; color: var(--color-ink);
  outline: none; transition: border-color 0.15s;
}
.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form textarea:focus { border-color: var(--color-primary); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-muted); }
.consent input { margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--color-primary); }
.form-error { font-size: 14px; color: oklch(57.7% 0.245 27.325); }
.form-error a { color: inherit; }
.form-ok {
  border-radius: var(--radius-2xl); padding: 20px;
  border: 1px solid color-mix(in oklab, var(--color-success) 30%, transparent);
  background: color-mix(in oklab, var(--color-success) 10%, transparent);
}
.form-ok strong { display: block; font-size: 15px; font-weight: 600; color: var(--color-success); }
.form-ok p { margin-top: 4px; font-size: 15px; color: var(--color-muted); }
.contact-form button[type="submit"] { align-self: flex-start; min-height: 48px; }
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: default; }
.honeypot { display: none !important; }

/* ---------- Sichtbarkeit / Utility ---------- */
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Dark-Mode-Feinschliff
   Ziel: der generische "dunkles Blau-Schwarz mit Neon-Glow"-Look
   verschwindet. Regeln: Licht kommt von oben und ist neutral,
   Farbe nur da, wo sie etwas bedeutet, kein Element leuchtet.
   ============================================================ */

/* 1) Statt blauer Nebelwolke ein neutrales Oberlicht über dem Hero */
html.dark .hero-glow {
  top: -22%; right: auto; left: 50%; transform: translateX(-50%);
  width: 140%; height: 55%; border-radius: 0;
  background: radial-gradient(closest-side, oklch(100% 0 0 / 0.055), transparent 100%);
  filter: none;
}
html.dark .phone-halo {
  background: radial-gradient(closest-side, oklch(100% 0 0 / 0.05), transparent 100%);
  filter: none;
}
/* Grüner Nebel hinter der Lizenzkarte: raus */
html.dark .price-card--free::before { display: none; }

/* 2) Keine farbigen Glow-Halos unter Buttons */
html.dark .btn-success,
html.dark .cta-banner .btn { box-shadow: inset 0 1px 0 0 oklch(100% 0 0 / 0.2); }
html.dark .fab-app {
  box-shadow: inset 0 1px 0 0 oklch(100% 0 0 / 0.2), 0 10px 30px -12px oklch(0% 0 0 / 0.9);
}
html.dark .btn-primary { box-shadow: 0 0 0 1px oklch(100% 0 0 / 0.1); }

/* 3) Sektionswechsel als bewusste Kante, nicht als Farbsprung */
html.dark .section--subtle { border-block: 1px solid oklch(100% 0 0 / 0.055); }

/* 4) Labels: Hairline statt eingefärbter Pillen-Fläche */
html.dark .eyebrow {
  background: oklch(100% 0 0 / 0.05);
  box-shadow: inset 0 0 0 1px oklch(100% 0 0 / 0.07);
  color: oklch(80% 0.045 262);
}
html.dark .badge {
  background: oklch(100% 0 0 / 0.04);
  border-color: oklch(100% 0 0 / 0.1);
  color: oklch(86% 0.03 262);
}
html.dark .chapter-time,
html.dark .mini-chip,
html.dark .task-tag {
  background: oklch(100% 0 0 / 0.06);
  color: oklch(82% 0.045 262);
}
html.dark .perk {
  background: oklch(100% 0 0 / 0.035);
  border-color: oklch(100% 0 0 / 0.1);
  color: oklch(84% 0.075 163);
}
html.dark .epilog {
  background: oklch(100% 0 0 / 0.03);
  border-color: oklch(100% 0 0 / 0.08);
}
html.dark .faq-q .plus {
  background: oklch(100% 0 0 / 0.06);
  color: var(--color-ink);
}

/* Karten im Dark-Mode gehören nicht in die Browser-/Phone-Mockups —
   die zeigen weiter die echte, helle App. */
html.dark .browser-screen .task-tag,
html.dark .phone-screen .mini-chip,
html.dark .phone-screen .task-tag {
  background: color-mix(in oklab, var(--color-primary) 10%, transparent);
  color: var(--color-primary);
}

/* 5) Feines Korn gegen die digitale Flachheit von reinem Schwarz.
   Fixiert und pointer-events-none, wird einmal gerastert und gekachelt. */
html.dark body::after {
  content: ""; position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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