/* Consent+ — Design "Aperture-inspiriert": viel Weißraum, feine Typo,
   gedeckte Palette (Off-White, Tiefgrün, Terracotta-Akzent), keine Emoji-Buttons. */

:root {
  --bg: #FAFAF7;
  --ink: #16241F;          /* fast-schwarzes Tiefgrün */
  --deep: #0E2A23;         /* Tiefgrün (Headlines, Buttons) */
  --accent: #C96F4A;       /* Terracotta */
  --muted: #5C6B65;
  --line: #E3E1D9;
  --card: #FFFFFF;
  --ok: #2E7D5B;
  --bad: #B0483A;
  --warn: #A9822F;
  --serif: 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
a { color: var(--deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
a:hover { text-decoration-color: var(--accent); }

h1, h2, h3, .kpi, .logo { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
h1 { font-size: 2.1rem; line-height: 1.2; margin: 0 0 .6em; }
h2 { font-size: 1.7rem; margin: 0 0 .5em; }
h3 { font-size: 1.15rem; margin: 0 0 .5em; }

/* ---------- Topbar ---------- */
.topbar { border-bottom: 1px solid var(--line); background: var(--bg); position: sticky; top: 0; z-index: 10; }
.topbar-in {
  max-width: 1080px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 28px;
}
.logo { font-size: 21px; text-decoration: none; color: var(--deep); font-weight: 600; }
.logo span { color: var(--accent); }
.mainnav { display: flex; gap: 20px; flex: 1; }
.mainnav a, .navright a { text-decoration: none; font-size: 14.5px; color: var(--muted); }
.mainnav a:hover, .navright a:hover { color: var(--deep); }
.mainnav a.on { color: var(--deep); border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.navright { display: flex; gap: 16px; align-items: center; }
.langswitch a { color: var(--muted); text-decoration: none; font-size: 13.5px; letter-spacing: .04em; }
.langswitch a.on { color: var(--deep); font-weight: 600; }

main { max-width: 1080px; margin: 0 auto; padding: 40px 24px 72px; }

/* ---------- Hero / Sections ---------- */
.hero { padding: 72px 0 56px; max-width: 780px; }
.hero-split {
  max-width: none; display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 20px; padding: 64px 0 48px;
}
.hero-copy { max-width: 640px; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual canvas { max-width: 100%; height: auto; }
.hero-visual-fallback {
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid var(--line); position: relative;
}
.hero-visual-fallback::after {
  content: ''; position: absolute; inset: 90px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: .4;
}
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; padding: 44px 0 24px; }
  .hero-visual canvas { width: 300px; height: 300px; }
}
.hero h1 { font-size: 3.2rem; line-height: 1.08; margin-bottom: .4em; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12.5px;
  color: var(--accent); font-weight: 600; margin: 0 0 18px;
}
.lead { font-size: 1.2rem; color: var(--muted); max-width: 620px; margin: 0 0 30px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-row.center { justify-content: center; }
.section { padding: 84px 0; }
.section h2 { margin-bottom: 1.1em; }
.section.alt { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 44px; }
.section h2 { max-width: 720px; }
.stepno {
  display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center;
  border: 1px solid var(--accent); color: var(--accent); border-radius: 50%;
  font-family: var(--serif); margin-bottom: 12px; font-size: 15px;
}

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 18px; }
.cols3 { grid-template-columns: repeat(3, 1fr); }
.cols4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; margin-bottom: 18px;
}
.card.subtle { background: transparent; }
.card.narrow { max-width: 640px; }
.card.legal { max-width: 760px; line-height: 1.7; }
.card.mail { max-width: 760px; }
.headline-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.headline-row h1, .headline-row h3 { margin: 0; }
.right { text-align: right; }
.card.stat { text-align: center; margin-bottom: 0; }
.stats { margin-bottom: 18px; }
.card.stat.pricing { padding: 30px 22px; }
.card.stat.pricing.featured { border-color: var(--accent); }
.price { font-size: 1.5rem; font-family: var(--serif); margin: 8px 0; }

/* ---------- User-Menü (E-Mail + Dropdown) ---------- */
.usermenu { position: relative; display: inline-block; margin-left: 14px; }
.userbtn { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-size: 13.5px; color: var(--deep); cursor: pointer; font-family: var(--sans); max-width: 260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: border-color .15s ease; }
.userbtn:hover { border-color: var(--accent); }
.userbtn .caret { color: var(--muted); font-size: 10px; margin-left: 4px; }
.userdrop { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 10px 30px rgba(14,42,35,.14); min-width: 190px; z-index: 40; overflow: hidden; }
.usermenu.open .userdrop { display: block; animation: dropin .16s ease; }
@keyframes dropin { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.userdrop a { display: block; padding: 10px 16px; text-decoration: none; font-size: 14px; color: var(--ink); }
.userdrop a:hover { background: #F6F3EC; color: var(--deep); }
.userdrop a:last-child { border-top: 1px solid var(--line); color: var(--bad); }
@media (max-width: 720px) { .userbtn { max-width: 150px; } }

/* ---------- Modus-Umschalter (Postfach / Versand) ---------- */
.modeswitch { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 2px; margin-right: 14px; }
.modeswitch a { text-decoration: none; font-size: 13.5px; color: var(--muted); padding: 4px 14px; border-radius: 999px; transition: all .18s ease; }
.modeswitch a.on { background: var(--accent); color: #fff; font-weight: 600; }
.modeswitch a:not(.on):hover { color: var(--deep); }
@media (max-width: 720px) { .modeswitch { order: 3; width: 100%; justify-content: center; margin: 6px 0 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  border-radius: 8px; padding: 10px 22px; font-size: 15px; font-weight: 600;
  border: 1px solid transparent; line-height: 1.4; font-family: var(--sans);
}
.btn.primary { background: var(--deep); color: #F6F3EC; }
.btn.primary:hover { background: #143830; }
.btn.ghost { background: transparent; color: var(--deep); border-color: var(--deep); }
.btn.ghost:hover { background: var(--deep); color: #F6F3EC; }
.btn.text { background: none; border: none; color: var(--muted); text-decoration: underline; padding: 10px 6px; }
.btn.small { padding: 6px 14px; font-size: 13.5px; }
.btn.big { font-size: 17px; padding: 13px 30px; }

/* ---------- Forms ---------- */
label { display: block; font-size: 13px; color: var(--muted); margin: 14px 0 4px; letter-spacing: .02em; }
label.checkline { display: flex; gap: 8px; align-items: center; font-size: 14.5px; color: var(--ink); margin: 16px 0; }
input, select, textarea {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); padding: 10px 12px; font-size: 15px; font-family: var(--sans); margin-bottom: 4px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(201,111,74,.35); border-color: var(--accent); }
input[type="range"] { padding: 0; border: none; background: none; }
input[type="checkbox"] { width: auto; }
button.btn { margin-top: 18px; }

/* ---------- Tables ---------- */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; padding: 8px 10px; border-bottom: 1px solid var(--line); }
td { padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
table.clean td, table.clean th { border-bottom: 1px solid var(--line); }

/* ---------- Pills / Chips / Notes ---------- */
.pill { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: 12px; font-weight: 600; border: 1px solid var(--line); color: var(--muted); }
.pill.g { background: #EDF4EF; color: var(--ok); border-color: #CFE3D6; }
.pill.y { background: #F7F1E1; color: var(--warn); border-color: #E8DCBB; }
.pill.r { background: #F8ECEA; color: var(--bad); border-color: #E8C9C3; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 4px; }
.chip { padding: 8px 16px; border: 1px solid var(--line); border-radius: 99px; cursor: pointer; font-size: 14px; background: #fff; user-select: none; }
.chip.on { background: var(--deep); border-color: var(--deep); color: #F6F3EC; }
.note { border: 1px solid var(--line); border-radius: 8px; padding: 14px 18px; margin: 0 0 16px; font-size: 14.5px; }
.note.ok { background: #EDF4EF; border-color: #CFE3D6; color: var(--ok); }
.note.warn { background: #F8ECEA; border-color: #E8C9C3; color: var(--bad); }

/* ---------- Auth ---------- */
.authbox {
  max-width: 460px; margin: 32px auto; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px; padding: 40px 38px;
}
.authbox.wide { max-width: 620px; }
.authbox.center { text-align: center; }
.orline { margin: 18px 0 6px; }

/* ---------- FAQ ---------- */
details.faq { border-bottom: 1px solid var(--line); padding: 4px 0; }
details.faq summary { cursor: pointer; font-weight: 600; padding: 12px 0; font-size: 16px; font-family: var(--serif); }
details.faq p { margin: 0 0 16px; }
.steps { line-height: 2; margin: 0; padding-left: 20px; }

/* ---------- KPI ---------- */
.kpi { font-size: 2rem; line-height: 1.1; }
.kpi.accent { color: var(--accent); }
.kpil { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ---------- Misc ---------- */
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.ok { color: var(--ok); }
.bad { color: var(--bad); }
hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }
.mailbody { white-space: pre-wrap; font-size: 15.5px; line-height: 1.7; }
ol, ul { line-height: 1.8; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer-in {
  max-width: 1080px; margin: 0 auto; padding: 26px 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13.5px;
}
footer a { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .cols3, .cols4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .topbar-in { flex-wrap: wrap; gap: 12px; }
  .mainnav { order: 3; width: 100%; gap: 14px; flex-wrap: wrap; }
  .hero { padding: 44px 0 30px; }
}

/* ---- Cinematic Hero (APERTURE-style) ---- */
.hero-cine { position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; background: #060b14; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,11,20,.72) 0%, rgba(6,11,20,.35) 45%, rgba(6,11,20,.85) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto;
  padding: 96px 24px; text-align: center; color: #f2f4f8; }
.hero-giant { font-size: clamp(3rem, 10vw, 8.5rem);
  letter-spacing: .28em; text-indent: .28em; margin: .2em 0;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.6); font-weight: 300; }
.hero-content .lead, .hero-content .eyebrow { color: #c9d2de; }
.hero-content a { color: #fff; }
.hero-content .btn.primary { background: #C96F4A; color: #fff; box-shadow: 0 4px 24px rgba(201,111,74,.35); }
.hero-content .btn.primary:hover { background: #D97F58; box-shadow: 0 6px 28px rgba(201,111,74,.5); transform: translateY(-1px); }
.hero-content .btn.ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.hero-content .btn.ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
@media (max-width: 720px) {
  .hero-cine { min-height: 70vh; background: #060b14 url(/hero-poster.jpg) center/cover; }
  .hero-video { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-cine { margin-top: 0; background: #060b14 url(/hero-poster.jpg) center/cover; }
}

/* ---- Cinematic Hero v2: echte Vollbreite + 100svh First-Impression ---- */
.hero-cine { position: relative; min-height: calc(100svh - 65px); display: flex; align-items: center;
  overflow: hidden; background: #060b14;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: -40px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(6,11,20,0) 0%, rgba(6,11,20,.35) 100%),
    linear-gradient(180deg, rgba(6,11,20,.66) 0%, rgba(6,11,20,.28) 45%, rgba(6,11,20,.88) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto;
  padding: 96px 24px; text-align: center; color: #f2f4f8; }
.hero-giant { font-size: clamp(3rem, 9.2vw, 8.5rem);
  letter-spacing: .22em; text-indent: .22em; margin: .15em 0;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,.6); font-weight: 300;
  white-space: nowrap; overflow: visible; }
.hero-giant .plus { color: var(--accent); font-weight: 400; display: inline-block; animation: plusGlow 4.5s ease-in-out infinite; }
@keyframes plusGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(201,111,74,0); transform: scale(1); }
  50% { text-shadow: 0 0 26px rgba(201,111,74,.55); transform: scale(1.045); }
}
.hero-content .lead, .hero-content .eyebrow { color: #c9d2de; }
.hero-content .eyebrow { letter-spacing: .22em; }
.hero-content a { color: #fff; }
.hero-content .btn.primary { background: #C96F4A; color: #fff; box-shadow: 0 4px 24px rgba(201,111,74,.35); }
.hero-content .btn.primary:hover { background: #D97F58; box-shadow: 0 6px 28px rgba(201,111,74,.5); transform: translateY(-1px); }
.hero-content .btn.ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.hero-content .btn.ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.hero-scrollhint { position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 14px; box-shadow: 0 0 12px rgba(0,0,0,.5); }
.hero-scrollhint::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 3px; background: rgba(255,255,255,.7);
  animation: scrollDot 2.2s ease-in-out infinite; }
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  65% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---- Scroll-Reveal + Micro-Effects ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); transition-delay: var(--reveal-delay, 0s); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-32px); }
.reveal-scale { transform: scale(.96); }
.section h2 { position: relative; }
.section .grid .card { transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease; }
.section .grid .card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(22,36,31,.10); border-color: rgba(201,111,74,.45); }
.section .grid .card:hover h3 { color: var(--deep); }
.stepno { transition: transform .35s ease, background .35s ease, color .35s ease; }
.card:hover .stepno { background: var(--accent); color: #fff; transform: rotate(-6deg) scale(1.08); }
.faq { transition: border-color .3s ease; }
.faq[open] { border-color: rgba(201,111,74,.5); }
.faq summary { cursor: pointer; transition: color .25s ease; }
.faq summary:hover { color: var(--accent); }
table.clean tbody tr { transition: background .25s ease; }
table.clean tbody tr:hover { background: rgba(201,111,74,.05); }
.btn { position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .25s ease; }
.btn.primary { box-shadow: 0 4px 18px rgba(14,42,35,.25); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(14,42,35,.32); }
.btn.ghost:hover { transform: translateY(-2px); }
.btn::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.18), transparent 55%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.btn:hover::after { opacity: 1; }

@media (max-width: 720px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(6,11,20,.8) 0%, rgba(6,11,20,.55) 45%, rgba(6,11,20,.92) 100%); }
  .hero-cine { min-height: 72svh; margin-top: -40px; background: #060b14 url(/hero-poster.jpg) center/cover; }
  .hero-video { display: none; }
  .hero-giant { letter-spacing: .1em; text-indent: .1em; }
  .mainnav { order: 3; width: 100%; gap: 14px; flex-wrap: wrap; row-gap: 4px; justify-content: flex-start; }
  .navright { margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-cine { margin-top: 0; background: #060b14 url(/hero-poster.jpg) center/cover; }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .hero-giant .plus, .hero-scrollhint::after { animation: none; }
  .section .grid .card:hover, .btn:hover { transform: none; }
}

/* ---------- Unified Inbox ---------- */
.imfilters { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 18px; }
.chip.imfilter { cursor: pointer; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 5px 14px; font-size: 13.5px; color: var(--muted); transition: all .15s ease; font-family: var(--sans); }
.chip.imfilter:hover { border-color: var(--accent); color: var(--deep); }
.chip.imfilter.on { background: var(--deep); border-color: var(--deep); color: #F6F3EC; }
.imrow { cursor: pointer; transition: background .12s ease; }
.imrow:hover { background: #F6F3EC; }
.consentrow { background: rgba(201,111,74,.05); }
.consentrow:hover { background: rgba(201,111,74,.11); }
.consentpill { background: var(--accent); color: #fff; border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 600; }
.immirror { overflow-x: auto; }
.immirror table { table-layout: fixed; }
.immirror th:nth-child(1), .immirror td:nth-child(1) { width: 22%; }
.immirror th:nth-child(2), .immirror td:nth-child(2) { width: 44%; }
.immirror th:nth-child(3), .immirror td:nth-child(3) { width: 20%; }
.immirror th:nth-child(4), .immirror td:nth-child(4) { width: 14%; }
.immirror td { word-break: break-word; overflow-wrap: anywhere; vertical-align: middle; }
.catform { display: inline-block; margin-right: 6px; max-width: 100%; }
.catselect { width: 100% !important; max-width: 150px !important; padding: 3px 8px !important; font-size: 12.5px !important; margin-bottom: 0 !important; border-radius: 6px; color: var(--muted); background: #FBFAF6; }
.catselect:hover { border-color: var(--accent); color: var(--deep); }
.rowactions { white-space: normal; }
.rowactions form { display: inline-block; margin: 0; }
.rowactions .btn { margin: 2px 0; font-size: 12px; padding: 4px 10px; }
.imp { display: inline-block; min-width: 30px; text-align: center; font-size: 12px; font-weight: 700; border-radius: 6px; padding: 1px 6px; margin-left: 6px; }
.imp.hi { background: rgba(46,125,91,.14); color: var(--ok); }
.imp.mid { background: rgba(169,130,47,.14); color: var(--warn); }
.imp.lo { background: rgba(92,107,101,.12); color: var(--muted); }
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); background: var(--deep); color: #F6F3EC; padding: 12px 22px; border-radius: 10px; box-shadow: 0 10px 30px rgba(14,42,35,.3); z-index: 50; max-width: 90vw; font-size: 14.5px; opacity: 1; transition: opacity .4s ease, transform .4s ease; }
.toast.bye { opacity: 0; transform: translateX(-50%) translateY(8px); }
.toast.ok { border-left: 4px solid var(--accent); }
.mailframe { width: 100%; min-height: 480px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.mailbody { white-space: pre-wrap; word-break: break-word; overflow-wrap: anywhere; line-height: 1.7; font-size: 15.5px; }
.mailbody a { color: var(--accent); }
.mailbody .sig { color: var(--muted); font-size: 14px; }
.imfail { padding: 14px; border: 1px dashed var(--line); border-radius: 8px; background: #FBFAF6; margin: 8px 0; }
.atts { margin: 10px 0; }
.atts h4 { margin: 0 0 8px; font-size: 13px; color: var(--muted); letter-spacing: .04em; }
.att { display: inline-block; margin: 0 10px 8px 0; padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; font-size: 13.5px; color: var(--deep); background: #FBFAF6; }
.att:hover { border-color: var(--accent); }
/* Onboarding */
.onb { text-align: left; }
@media (max-width: 720px) { .catselect { max-width: 110px; } .rowactions .btn { padding: 4px 8px; font-size: 12px; } }

/* ---------- Onboarding-Layout (volle Breite, lesbare Karten) ---------- */
.onb-wrap { max-width: 880px; margin: 0 auto; padding: 48px 32px; text-align: center; }
.onb-wrap .eyebrow { margin-bottom: 10px; }
.onb-wrap h1 { font-size: 2.2rem; margin-bottom: .3em; }
.onb-sub { font-size: 1.15rem; max-width: 680px; margin: 0 auto 28px; line-height: 1.6; }
.onb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 32px; text-align: left; }
.onb-steps .card { padding: 24px 22px; }
.onb-steps .card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.onb-steps .card p { font-size: 14.5px; line-height: 1.6; }
.onb-steps .stepno { margin-bottom: 10px; }
@media (max-width: 720px) {
  .onb-steps { grid-template-columns: 1fr; gap: 14px; }
  .onb-wrap { padding: 32px 20px; }
}

/* ---------- Lern-Loop: Batch-Banner + Antwort-Badge ---------- */
.batchbar { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #f2ede3; border: 1px solid #e5dcc9; border-radius: 12px; padding: 12px 18px; margin-bottom: 18px; font-size: 14.5px; }
.batchbar form.inline { display: inline; margin: 0; }
.replypill { background: #eaf1ee; color: #1e3932; border: 1px solid #cfdcd6; font-size: 11px; padding: 1px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; white-space: nowrap; }

/* ---------- Hero-Slogan ---------- */
.hero-slogan { font-size: clamp(1.05rem, 2.2vw, 1.4rem); letter-spacing: .02em; color: var(--cream, #f4f1e8); opacity: .92; margin: .8em 0 0; font-style: italic; }

/* ---------- Cold-Outreach-Freigabe ---------- */
.onb-approve { text-align: left; background: var(--card, #fff); border: 1px solid #e5e0d6; border-radius: 14px; padding: 22px 24px; margin: 6px 0 24px; }
.appr-list { margin-top: 12px; }
.appr-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 1px solid #efeae0; }
.appr-row:last-child { border-bottom: 0; }
.appr-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 640px) { .appr-row { flex-direction: column; align-items: flex-start; } }
