/* Maynert Tools — Design-System „Richtung C" (dunkles Navy, CI-Blau) */
:root {
  --canvas: #071726;
  --canvas-alt: #0a2033;
  --panel: #0d2438;
  --panel-sunken: #0b1f31;
  --panel-raised: #113049;
  --border: #1b3d59;
  --border-inner: #17364f;
  --border-strong: #24486a;
  --accent: #0090e0;
  --accent-hover: #33abec;
  --accent-tint: #0a2c45;
  --accent-tint-border: rgba(30, 92, 138, 0.4);
  --nav-active: #17436b;
  --nav-active-inset: #2a5a85;
  --text: #eaf2f8;
  --text-2: #dce8f0;
  --text-3: #b6c7d5;
  --text-4: #93a9bc;
  --muted: #8399ac;
  --muted-2: #6f869b;
  --muted-3: #536b80;
  --on-accent: #06253a;
  --warn: #e8b04b;
  --gap: #f2765a;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3 { text-wrap: pretty; }
p { text-wrap: pretty; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section { border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.section--alt { background: var(--canvas-alt); }

/* Mono-Label / Eyebrow */
.mono { font-family: var(--mono); }
.sec-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 16px; }
.sec-label.warn { color: var(--warn); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent-tint-border); background: var(--accent-tint);
  padding: 8px 14px; border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulseB 2s infinite; }

h1.hero-h1 { font-weight: 600; font-size: clamp(44px, 5.4vw, 80px); line-height: 0.99; letter-spacing: -0.045em; margin: 0; }
h1.hero-h1 .ac, h2 .ac { color: var(--accent); }
.h2 { font-weight: 600; font-size: 42px; line-height: 1.05; letter-spacing: -0.035em; margin: 0; }
.h2-big { font-size: 44px; }
.lead { font-size: 20px; line-height: 1.6; color: var(--text-4); }

/* Buttons */
.btn { font: inherit; cursor: pointer; border-radius: 12px; font-weight: 600; border: none; display: inline-block; }
.btn-accent { background: var(--accent); color: var(--on-accent); padding: 17px 30px; }
.btn-accent:hover { background: var(--accent-hover); color: var(--on-accent); text-decoration: none; }
.btn-accent.sm { padding: 15px 26px; font-size: 15px; border-radius: 10px; }
.btn-outline { border: 1px solid var(--border-strong); background: transparent; color: var(--text); font-weight: 500; padding: 14px 26px; border-radius: 11px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-dark { background: var(--canvas); color: var(--accent); padding: 19px 34px; border-radius: 12px; font-size: 17px; }
.btn-dark:hover { background: var(--accent-tint); color: var(--accent); text-decoration: none; }

/* Header */
.hdr { position: sticky; top: 0; z-index: 40; background: rgba(7, 23, 38, 0.86); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.hdr-in { max-width: 1320px; margin: 0 auto; padding: 0 40px; height: 80px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; min-height: 34px; }
.brand:hover { text-decoration: none; opacity: 0.82; }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--accent); color: var(--on-accent); display: grid; place-items: center; font-weight: 700; font-size: 20px; }
.brand-name { font-weight: 700; font-size: 16px; color: var(--text); line-height: 1.05; display: flex; flex-direction: column; }
.brand-name small { font-weight: 400; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.brand-logo { height: 32px; width: auto; display: block; }
.nav { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel); }
.nav a { font-size: 15px; font-weight: 500; padding: 10px 20px; border-radius: 8px; white-space: nowrap; color: var(--muted); }
.nav a:hover { text-decoration: none; color: var(--text-3); }
.nav a.active { background: var(--nav-active); color: var(--text); box-shadow: inset 0 0 0 1px var(--nav-active-inset); }
.cta-pill { background: var(--accent); color: var(--on-accent); padding: 12px 22px; border-radius: 10px; font-size: 15px; font-weight: 600; white-space: nowrap; }
.cta-pill:hover { background: var(--accent-hover); color: var(--on-accent); text-decoration: none; }

/* Dekor */
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(90deg, #123049 1px, transparent 1px); background-size: 110px 100%; opacity: 0.7; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(0, 144, 224, 0.2), transparent 66%); }

/* Hero */
.hero-in { position: relative; max-width: 1320px; margin: 0 auto; }
.hero-center { padding: 100px 40px 96px; text-align: center; }
.hero-split { padding: 104px 40px 0; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }
.hero-center .eyebrow { margin-bottom: 32px; }
.hero-center h1 { margin: 0 auto 26px; max-width: 20ch; }
.hero-center .lead { font-size: 19px; line-height: 1.65; max-width: 66ch; margin: 0 auto 44px; }

/* KI-Check: URL-Eingabe */
.url-box { max-width: 660px; margin: 0 auto; }
.url-row { display: flex; align-items: center; gap: 10px; background: var(--panel); border: 1px solid var(--border-strong); border-radius: 14px; padding: 8px 8px 8px 22px; }
.url-row.err { border-color: var(--gap); }
.url-row .pfx { font-family: var(--mono); color: var(--muted-3); font-size: 15px; }
.url-row input { flex: 1; min-width: 0; border: none; background: transparent; font: inherit; font-size: 17px; color: var(--text); outline: none; }
.url-meta { display: flex; justify-content: center; gap: 16px; margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-3); }
.url-err { display: none; margin: 12px 0 0; color: var(--gap); font-size: 14px; }
.url-err.show { display: block; }

/* Standard-Section-Kopf */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.sec-head p { margin: 0; color: var(--muted-2); font-size: 16px; }
.two-col { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.pad-sec { padding: 88px 40px 96px; }

/* Kuchen/Sahne-Karten */
.cake-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cc { border-radius: 18px; padding: 38px; }
.cc.kuchen { border: 1px solid var(--border); background: var(--panel); }
.cc.sahne { border: 1px solid #1d5c88; background: linear-gradient(155deg, #0d3453, #0d2438 72%); }
.cc-badge { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 28px; }
.cc.kuchen .cc-badge { border: 1px solid var(--border-strong); color: var(--text-4); }
.cc.sahne .cc-badge { background: var(--accent); color: var(--on-accent); }
.cc h3 { font-size: 28px; font-weight: 600; letter-spacing: -0.03em; margin: 0 0 14px; }
.cc.kuchen p { margin: 0; color: var(--muted); line-height: 1.65; }
.cc.sahne p { margin: 0; color: #a9c0d2; line-height: 1.65; }

/* Ergebnis-Panel */
.result-empty { border: 1px dashed var(--border); border-radius: 20px; padding: 60px 40px; text-align: center; color: var(--muted-2); display: flex; flex-direction: column; align-items: center; gap: 20px; }
.result-empty p { margin: 0; max-width: 46ch; }
.panel { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--panel); display: grid; grid-template-columns: 420px 1fr; }
.compass { position: relative; padding: 44px; border-right: 1px solid var(--border); background: linear-gradient(170deg, #113049, #0b1f31); display: flex; flex-direction: column; align-items: center; text-align: center; }
.compass .dom { font-family: var(--mono); font-size: 15px; letter-spacing: 0.02em; color: var(--text-2); margin-bottom: 4px; word-break: break-all; }
.compass .dom-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 8px; }
.ring { position: relative; width: 258px; height: 258px; margin: 20px 0 24px; }
.ring .arc { position: absolute; inset: 0; border-radius: 50%; animation: dialB 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.ring .hole { position: absolute; inset: 20px; background: var(--panel-sunken); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring .num { font-size: 92px; font-weight: 600; line-height: 0.82; letter-spacing: -0.055em; color: var(--accent); }
.ring .of { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; }
.compass .verdict { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; margin-bottom: 8px; }
.compass .verdict-sub { margin: 0; font-size: 15px; color: var(--muted); max-width: 32ch; }

.panel-right { min-width: 0; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--border); }
.tile { padding: 30px 34px; }
.tile + .tile { border-left: 1px solid var(--border); }
.tile .row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.tile .n { font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: -0.04em; }
.tile .n.warn { color: var(--warn); }
.tile .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.tile .note { font-size: 15px; color: var(--muted); }

/* Kategorie-Accordion */
.cat { }
.cat + .cat { border-top: 1px solid var(--border-inner); }
.cat.open { background: var(--panel-raised); }
.cat-btn { width: 100%; display: grid; grid-template-columns: 12px 1fr auto 22px; align-items: center; gap: 18px; padding: 21px 34px; background: transparent; border: none; font: inherit; text-align: left; color: var(--text); cursor: pointer; }
.cat-dot { width: 9px; height: 9px; border-radius: 50%; }
.cat-name { font-weight: 500; font-size: 17px; }
.cat-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.cat-plus { font-size: 20px; color: var(--muted-3); transition: transform 0.3s; text-align: center; }
.cat.open .cat-plus { transform: rotate(45deg); }
.cat-body { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.35s ease, opacity 0.3s; }
.cat.open .cat-body { grid-template-rows: 1fr; opacity: 1; }
.cat-body > div { overflow: hidden; }
.cat-inner { padding: 0 34px 26px 64px; }
.cat-inner p { margin: 0 0 12px; color: #9bb0c0; line-height: 1.6; }
.cat-next { font-family: var(--mono); font-size: 14px; color: var(--accent); }

/* Prioritäten */
.prio { margin-top: 56px; }
.prio-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; gap: 20px; }
.prio-head h3 { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; margin: 0; }
.prio-head .mono { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.prio-list { display: grid; gap: 12px; }
.todo { display: grid; grid-template-columns: 44px 1fr 130px 170px; gap: 26px; align-items: center; padding: 24px 28px; border: 1px solid var(--border); border-radius: 14px; background: var(--panel-sunken); }
.todo .n { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--accent); }
.todo .t { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; margin-bottom: 4px; }
.todo .why { color: var(--muted); font-size: 16px; }
.todo .eff { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.todo .imp { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-align: right; }
.todo .imp.gross { color: var(--accent); }
.todo .imp.mittel { color: var(--warn); }
.todo .imp.klein { color: var(--muted); }

/* Zum Mitnehmen (CSV + Prompt) */
.takeaway { margin-top: 40px; border: 1px solid var(--border); border-radius: 16px; background: var(--panel); padding: 30px 34px; }
.takeaway h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.take-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.take-label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.prompt-text { width: 100%; border: 1px solid var(--border-strong); border-radius: 10px; padding: 14px 16px; font-family: var(--mono); font-size: 12.5px; line-height: 1.55; color: var(--text-3); background: var(--panel-sunken); resize: vertical; outline: none; }
.prompt-text:focus { border-color: var(--accent); }

.result-foot { display: flex; gap: 16px; margin-top: 34px; align-items: center; flex-wrap: wrap; }
.result-foot .hint { font-size: 14px; color: var(--muted-2); }

/* Laden / Fehler */
.loading { border: 1px solid var(--border); border-radius: 20px; background: var(--panel); padding: 60px 40px; text-align: center; }
.load-ring { width: 90px; height: 90px; margin: 0 auto 22px; border-radius: 50%; border: 6px solid var(--border); border-top-color: var(--accent); animation: spin 0.9s linear infinite; }
.load-steps { list-style: none; margin: 8px auto 0; padding: 0; max-width: 380px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.load-step { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--muted-3); font-family: var(--mono); letter-spacing: 0.02em; }
.load-step .s-ic { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex: none; }
.load-step.active { color: var(--text-3); }
.load-step.active .s-ic { border-color: var(--accent); border-top-color: transparent; animation: spin 0.7s linear infinite; }
.load-step.done { color: var(--text-4); }
.load-step.done .s-ic { background: var(--accent); border-color: var(--accent); animation: none; }
.err-box { border: 1px solid var(--gap); background: rgba(242, 118, 90, 0.08); color: var(--gap); border-radius: 14px; padding: 18px 22px; font-weight: 600; }

/* KI-gefunden: Ergebnis-Teaser */
.air { border: 1px solid var(--border); border-radius: 20px; background: var(--panel); padding: 40px; max-width: 720px; margin: 0 auto; }
.air-dom { font-family: var(--mono); font-size: 15px; color: var(--text-2); word-break: break-all; margin-top: 4px; }
.air-big { display: flex; align-items: baseline; gap: 14px; margin: 20px 0 20px; flex-wrap: wrap; }
.air-big .n { font-size: 72px; font-weight: 600; line-height: 0.85; letter-spacing: -0.045em; color: var(--accent); }
.air-big .lbl { font-size: 20px; color: var(--text-3); }
.air-models { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.aichip { font-family: var(--mono); font-size: 13px; color: var(--text-3); background: var(--panel-sunken); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; }
.teaser { background: linear-gradient(155deg, #0d3453, #0d2438 72%); border: 1px solid #1d5c88; border-radius: 14px; padding: 22px 24px; color: #a9c0d2; line-height: 1.6; }
.teaser strong { color: var(--text); }
.teaser .btn { margin-top: 16px; }
.air-src { margin-top: 18px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-3); }
.air.zero p { color: var(--muted); line-height: 1.65; }
.air.zero strong { color: var(--text); }
.air-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* Startseite: Tool-Kacheln */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tool { display: flex; flex-direction: column; min-height: 264px; padding: 32px; border-radius: 18px; }
.tool.live { border: 1px solid #1d5c88; background: linear-gradient(155deg, #0c2e47, #0d2438 68%); }
.tool.soon { border: 1px solid var(--border); background: var(--panel-sunken); }
.tool:hover { text-decoration: none; }
.tool-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.glyph { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; }
.tool.live .glyph { background: var(--accent); color: var(--on-accent); }
.tool.soon .glyph { background: #12293d; color: var(--muted-2); }
.tool-badge { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.tool.live .tool-badge { border: 1px solid var(--accent); color: var(--accent); }
.tool.soon .tool-badge { border: 1px solid var(--border-strong); color: var(--muted-2); }
.tool h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; margin: 30px 0 10px; color: var(--text); }
.tool p { margin: 0; font-size: 16px; color: var(--muted); line-height: 1.55; }
.tool-link { margin-top: 24px; font-size: 15px; font-weight: 600; }
.tool.live .tool-link { color: var(--accent); }
.tool.soon .tool-link { color: var(--muted-3); }
/* „In Arbeit": Inhalt bewusst unscharf (Teaser, nicht kaputt) */
.tool-hidden { filter: blur(7px); opacity: 0.5; user-select: none; pointer-events: none; }
.tool.soon .glyph { filter: blur(4px); opacity: 0.6; }

/* Startseite: Haltung */
.stance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stance-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; background: var(--panel); }
.stance-card.hl { border: 1px solid var(--accent-tint-border); background: linear-gradient(160deg, #0a2c45, #0d2438 70%); }
.stance-num { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 22px; }
.stance-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 12px; }
.stance-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.stance-card.hl p { color: #a9c0d2; }

/* FAQ */
.faq { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: var(--panel); }
.faq-item + .faq-item { border-top: 1px solid var(--border-inner); }
.faq-item.open { background: var(--panel-raised); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 30px; background: transparent; border: none; font: inherit; font-size: 19px; font-weight: 500; letter-spacing: -0.02em; text-align: left; color: var(--text); cursor: pointer; }
.faq-plus { font-size: 24px; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.35s ease, opacity 0.3s; }
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a > div { overflow: hidden; }
.faq-a .inner { padding: 0 30px 28px; color: #9bb0c0; font-size: 17px; line-height: 1.65; max-width: 76ch; }

/* Startseite: Beispiel-Panel + Fakten */
.ex-panel { background: var(--panel); border: 1px solid var(--border); border-bottom: none; border-radius: 16px 16px 0 0; padding: 26px 26px 34px; box-shadow: 0 -30px 90px rgba(0, 144, 224, 0.1); }
.ex-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ex-top .mono { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.ex-dots { display: flex; gap: 5px; }
.ex-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); }
.ex-dots span:last-child { background: var(--accent); }
.ex-score { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 28px; }
.ex-score .big { font-size: 82px; font-weight: 600; line-height: 0.82; letter-spacing: -0.05em; color: var(--accent); }
.ex-bar { padding: 13px 0; border-top: 1px solid var(--border-inner); }
.ex-bar .row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 9px; }
.ex-bar .row .l { color: #c3d3df; }
.ex-bar .row .v { font-family: var(--mono); color: var(--muted-2); }
.ex-bar .track { height: 4px; background: var(--border-inner); border-radius: 99px; overflow: hidden; }
.ex-bar .fill { height: 100%; border-radius: 99px; transform-origin: left; }
.facts { border: 1px solid var(--border); border-radius: 16px; background: var(--panel); padding: 10px 26px; }
.fact { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 18px 0; }
.fact + .fact { border-top: 1px solid var(--border-inner); }
.fact .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.fact .v { font-weight: 500; }
.hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-meta .mono { font-size: 13px; color: var(--muted-2); letter-spacing: 0.06em; }

/* CTA-Band */
.cta-band { position: relative; overflow: hidden; background: var(--accent); color: var(--on-accent); }
.cta-band .grid-lines { background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px); opacity: 1; }
.cta-in { position: relative; max-width: 1320px; margin: 0 auto; padding: 86px 40px; display: flex; align-items: center; justify-content: space-between; gap: 56px; flex-wrap: wrap; }
.cta-in h2 { font-weight: 600; font-size: clamp(36px, 4vw, 54px); line-height: 1.03; letter-spacing: -0.04em; margin: 0 0 14px; }
.cta-in p { margin: 0; color: var(--on-accent); font-size: 18px; opacity: 0.85; }
.cta-in .txt { max-width: 50ch; }

/* Footer */
.ftr { background: var(--canvas); border-top: 1px solid var(--border); }
.ftr-in { max-width: 1320px; margin: 0 auto; padding: 44px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; font-size: 14px; color: var(--muted-2); }
.ftr-in a { color: var(--text-3); }
.ftr-links { display: flex; gap: 26px; }
.ftr-in .mono { font-size: 12px; letter-spacing: 0.08em; }

/* Animationen */
@keyframes riseB { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes sweepB { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes dialB { from { opacity: 0; transform: rotate(-40deg) scale(0.9); } to { opacity: 1; transform: none; } }
@keyframes pulseB { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
.rB { animation: riseB 0.75s cubic-bezier(0.16, 0.84, 0.3, 1) both; }

/* Responsive */
@media (max-width: 1100px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .panel { grid-template-columns: 1fr; }
  .compass { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .wrap, .hdr-in, .hero-in, .cta-in, .ftr-in { padding-left: 20px; padding-right: 20px; }
  .pad-sec { padding: 60px 20px 64px; }
  .hero-center { padding: 72px 20px 64px; }
  .hero-split { padding: 72px 20px 0; }
  .tools-grid, .cake-cards, .stance, .tiles { grid-template-columns: 1fr; }
  .todo { grid-template-columns: 44px 1fr; }
  .todo .eff, .todo .imp { grid-column: 2; text-align: left; }
  .einordnung-cols { grid-template-columns: 1fr !important; }
}
@media (max-width: 700px) {
  h1.hero-h1 { font-size: 36px; }
  .h2, .h2-big { font-size: 30px; }
  .ring { width: 200px; height: 200px; }
  .ring .num { font-size: 72px; }
  .nav { display: none; }
  .url-row { flex-wrap: wrap; }
  .url-row .btn-accent { width: 100%; }
  .cat-btn { grid-template-columns: 10px 1fr auto; }
  .cat-plus { display: none; }
  .cat-inner { padding-left: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}
