/* audit.innovation — shared design system.
   Served at /styles/site.css so the ShiftPress editor preview (which renders
   pages with <base href="live-site">) loads it too. No Astro scoped styles. */

:root {
  --ink: #0A0B0B;
  --bg: #ffffff;
  --paper: #F3F6F5;
  --surface: #ffffff;
  --header-bg: #0A0B0B;
  --brand: #176369;
  --brand-deep: #0e3d40;
  --accent: #176369;
  --accent-bright: #2BB3AB;
  --green: #4CA372;
  --accent-soft: rgba(23, 99, 105, 0.1);
  --muted: #5a6066;
  --line: #e4e8e7;
  --line-strong: #c6cbca;
  --display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --body: "Avenir Next", "Avenir", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 72rem;
  --radius: 4px;
  --shadow: 0 24px 50px -30px rgba(10, 11, 11, 0.35);
}
* { box-sizing: border-box; }
html {
  font-family: var(--body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
h1, h2, h3 { font-family: var(--display); color: var(--ink); letter-spacing: -0.025em; line-height: 1.08; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
:focus-visible { outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 2px; }
section[id] { scroll-margin-top: 5.5rem; }
.mono { font-family: var(--mono); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 4px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius); background: var(--ink); color: #fff;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, background 0.2s;
}
.btn:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(21, 94, 94, 0.6); }
.btn:hover .arrow { transform: translateX(4px); }
.arrow { transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--surface); border-color: var(--brand); color: var(--brand); box-shadow: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--header-bg) 95%, transparent);
  backdrop-filter: saturate(1.2) blur(12px); -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 4.5rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 2.1rem; width: auto; transition: opacity 0.2s; }
.brand:hover img { opacity: 0.82; }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { position: relative; text-decoration: none; color: rgba(255, 255, 255, 0.74); font-size: 0.94rem; font-weight: 500; font-family: var(--display); transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 2px; background: var(--accent-bright); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header .btn { background: #fff; color: var(--ink); }
.site-header .btn:hover { background: var(--accent-bright); color: #fff; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 2.6rem; height: 2.6rem; padding: 0 0.6rem; background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius); }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.5rem 1.25rem; background: var(--header-bg); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { text-decoration: none; color: rgba(255, 255, 255, 0.82); font-family: var(--display); font-weight: 500; padding: 0.7rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.mobile-nav .mobile-contact { margin-top: 0.75rem; border: none; background: var(--accent-bright); color: #fff; text-align: center; border-radius: var(--radius); padding: 0.8rem; }
@media (max-width: 1040px) { .nav { display: none; } .nav-toggle { display: flex; } }
@media (min-width: 1041px) { .mobile-nav { display: none !important; } }

/* Footer */
.site-footer { margin-top: auto; background: var(--ink); color: #c8d4d3; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }
.footer-brand img { height: 2.6rem; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { margin: 0; max-width: 22rem; color: #8ea8a6; font-size: 0.95rem; }
.footer-col h2 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-bright); margin: 0 0 1rem; }
.footer-col a { display: block; text-decoration: none; color: #c8d4d3; font-size: 0.95rem; padding: 0.28rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; padding-bottom: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); color: #6a8a88; font-size: 0.82rem; }
.footer-base p { margin: 0; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* Shared kicker / section heads */
.kicker { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--brand); margin: 0 0 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.kicker::before { content: ""; display: inline-block; flex-shrink: 0; width: 9px; height: 9px; background: var(--accent-bright); }
.sec-head { max-width: 40rem; margin: 0 0 clamp(2rem, 4vw, 3rem); }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: 0; }
.band { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.band-tint { background: var(--paper); }

/* HERO */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(110% 70% at 75% 5%, #000, transparent 65%); mask-image: radial-gradient(110% 70% at 75% 5%, #000, transparent 65%); opacity: 0.5; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }
.eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--brand); margin: 0 0 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.eyebrow::before { content: ""; display: inline-block; flex-shrink: 0; width: 9px; height: 9px; background: var(--accent-bright); }
.headline { font-family: var(--display); font-weight: 700; font-size: clamp(2.5rem, 6.4vw, 4.4rem); line-height: 0.98; margin: 0; }
.headline .ln { display: block; overflow: hidden; }
.headline em { font-style: normal; color: var(--brand); }
.hero-sub { font-family: var(--display); font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.45rem); color: var(--brand); margin: 0.7rem 0 1.2rem; }
.lead { max-width: 34rem; font-size: 1.05rem; color: var(--muted); margin: 0 0 1.9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* Outlier scan */
.stage { position: relative; }
.scan-halo { position: absolute; inset: -10%; background: radial-gradient(55% 55% at 65% 40%, var(--accent-soft), transparent 70%); filter: blur(10px); }
.scan { position: relative; margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.scan::after { content: ""; position: absolute; top: 0; right: 0; width: 16px; height: 16px; background: var(--accent-bright); pointer-events: none; }
.scan-head, .scan-foot { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; font-size: 0.72rem; color: var(--muted); }
.scan-head { border-bottom: 1px solid var(--line); }
.scan-foot { border-top: 1px solid var(--line); }
.scan-head span:first-child { display: inline-flex; align-items: center; gap: 0.45rem; color: var(--ink); letter-spacing: 0.08em; }
.live-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent-bright); }
.flag { color: var(--brand); font-weight: 500; }
.plot { position: relative; height: clamp(15rem, 34vw, 20rem); background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 14.28% 20%; overflow: hidden; }
.pt { position: absolute; width: 9px; height: 9px; margin: -4.5px; border-radius: 50%; background: var(--brand); opacity: 0.55; }
.pt-out { width: 13px; height: 13px; margin: -6.5px; background: var(--accent-bright); opacity: 1; box-shadow: 0 0 0 0 rgba(43, 179, 171, 0.55); z-index: 2; }
.scanline { position: absolute; top: 0; bottom: 0; width: 2px; left: 0; background: linear-gradient(to bottom, transparent, var(--accent-bright), transparent); box-shadow: 0 0 16px 2px rgba(43, 179, 171, 0.5); opacity: 0.85; z-index: 3; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: clamp(2.5rem, 5vw, 3.5rem) 0 0; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--surface); padding: 1.4rem 1.5rem; }
.stat-num { font-family: var(--mono); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--brand); line-height: 1; margin: 0 0 0.4rem; letter-spacing: -0.02em; }
.stat dd { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Vorteile */
.vorteile { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .vorteile { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .vorteile { grid-template-columns: repeat(3, 1fr); } }
.v-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; overflow: hidden; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s; }
.v-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-bright); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); }
.v-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.v-card:hover::before { transform: scaleX(1); }
.v-num { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.72rem; position: relative; margin-bottom: 0.75rem; }
.v-num::after { content: ""; position: absolute; inset: 3px; border: 1px solid var(--accent-bright); pointer-events: none; }
.v-card h3 { font-size: 1.15rem; margin: 0 0 0.6rem; }
.v-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Manifesto */
.manifesto { background: var(--ink); color: #d7d9dc; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.manifesto .kicker { color: var(--accent-bright); }
.manifesto .kicker::before { background: var(--accent-bright); }
.manifesto-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; max-width: 54rem; }
.manifesto-list li { position: relative; font-family: var(--display); font-weight: 500; font-size: clamp(1.15rem, 2.6vw, 1.7rem); line-height: 1.35; letter-spacing: -0.01em; color: #eef6f5; padding-left: 2.2rem; }
.m-mark { position: absolute; left: 0; color: var(--accent-bright); }

/* Services */
.services { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services { grid-template-columns: repeat(4, 1fr); } }
.s-card { position: relative; background: var(--brand); border: 1px solid var(--brand-deep); border-radius: var(--radius); padding: 1.6rem 1.4rem; overflow: hidden; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s; }
.s-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255, 255, 255, 0.22); pointer-events: none; }
.s-card::after { content: ""; position: absolute; bottom: 7px; left: 7px; width: 10px; height: 10px; background: #fff; pointer-events: none; }
.s-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(10, 11, 11, 0.55); }
.s-card:hover::before { border-color: rgba(43, 179, 171, 0.55); }
.s-card h3 { font-size: 1.12rem; margin: 0 0 1rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.s-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.s-card li { position: relative; padding-left: 1.4rem; color: rgba(255, 255, 255, 0.8); font-size: 0.93rem; }
.s-card li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: rgba(255, 255, 255, 0.8); }

/* Publications */
.pubs { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .pubs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pubs { grid-template-columns: repeat(3, 1fr); } }
.pub { display: flex; flex-direction: column; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s; }
.pub:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.pub-kind { align-self: flex-start; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-bright); background: var(--accent-soft); padding: 0.2rem 0.5rem; border-radius: 2px; margin-bottom: 0.9rem; }
.pub h3 { font-size: 1.12rem; margin: 0 0 0.6rem; }
.pub p { margin: 0 0 1.2rem; color: var(--muted); font-size: 0.93rem; }
.pub-cta { margin-top: auto; font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--brand); }
.pub:hover .pub-cta { color: var(--brand-deep); }

/* Team */
.team { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 920px) { .team { grid-template-columns: repeat(4, 1fr); } }
.member { text-align: center; }
.portrait { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, #edefed, #dde0dd); margin-bottom: 0.9rem; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(1) contrast(1.02); transition: filter 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.member:hover .portrait img { filter: grayscale(0); transform: scale(1.04); }
.li { position: absolute; right: 0.6rem; bottom: 0.6rem; display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 0; background: var(--brand); color: #fff; opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s; }
.member:hover .li, .li:focus-visible { opacity: 1; transform: none; }
.li:hover { background: var(--brand-deep); }
.member h3 { font-size: 1.05rem; margin: 0 0 0.15rem; }
.role { font-family: var(--mono); margin: 0; color: var(--brand); font-size: 0.78rem; }

/* Testimonials */
.quotes { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.4rem 1.6rem 1.6rem; margin: 0; overflow: hidden; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s; }
.quote::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(21, 94, 94, 0.22); pointer-events: none; }
.quote::after { content: ""; position: absolute; bottom: 7px; left: 7px; width: 10px; height: 10px; background: var(--accent-bright); pointer-events: none; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote:hover::before { border-color: rgba(43, 179, 171, 0.45); }
.qmark { position: absolute; top: 0.4rem; left: 1.2rem; font-family: var(--display); font-size: 3.5rem; line-height: 1; color: var(--accent-bright); opacity: 0.3; }
.quote blockquote { margin: 0 0 1.1rem; font-family: var(--display); font-weight: 600; font-size: 1.2rem; line-height: 1.3; color: var(--ink); }
.quote figcaption { color: var(--muted); font-size: 0.88rem; }

/* Recruiting */
.recruit { background: var(--brand); color: #fff; padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.recruit .kicker { color: #b8e8e5; }
.recruit .kicker::before { background: var(--accent-bright); }
.recruit-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.recruit h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0; }
.recruit .btn { background: #fff; color: var(--brand); }
.recruit .btn:hover { background: var(--ink); color: #fff; }

/* Contact */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-copy h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.contact-form { display: grid; gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 0.4rem; }
.contact-form label > span { font-family: var(--display); font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.contact-form input, .contact-form textarea { font: inherit; color: var(--ink); padding: 0.7rem 0.85rem; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--accent-soft); }
.contact-form .btn { justify-content: center; }

/* Inner page shell + prose */
.page-hero { position: relative; padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); background: var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 46px 46px; -webkit-mask-image: radial-gradient(100% 80% at 85% 0%, #000, transparent 60%); mask-image: radial-gradient(100% 80% at 85% 0%, #000, transparent 60%); opacity: 0.5; pointer-events: none; }
.page-hero > .container { position: relative; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0; max-width: 22ch; }
.page-lead { max-width: 46rem; margin: 1rem 0 0; color: var(--muted); font-size: 1.1rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 0.88rem; color: var(--brand); margin-bottom: 1rem; }
.back-link:hover { color: var(--brand-deep); }
.page-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.ep-tag { display: inline-grid; place-items: center; min-width: 3.4rem; height: 3.4rem; padding: 0 0.6rem; border-radius: var(--radius); background: linear-gradient(160deg, var(--brand), var(--brand-deep)); color: #fff; font-family: var(--mono); font-size: 1.15rem; }
.page-body { padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem); }
.pod-embed { max-width: 46rem; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.pod-embed iframe { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }
.prose { max-width: 46rem; margin: 0 auto; font-size: 1.05rem; color: #2c2f33; }
.prose > :first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.4rem 0 0.9rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.prose h3 { font-size: 1.25rem; margin: 1.8rem 0 0.6rem; }
.prose h4 { font-family: var(--display); font-size: 1.05rem; margin: 1.4rem 0 0.5rem; }
.prose p { margin: 0 0 1.1rem; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; text-decoration-color: var(--accent-soft); transition: text-decoration-color 0.2s, color 0.2s; }
.prose a:hover { color: var(--brand-deep); text-decoration-color: currentColor; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 0; list-style: none; }
.prose li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.prose ul > li::before { content: ""; position: absolute; left: 0.2rem; top: 0.5em; width: 6px; height: 6px; background: var(--accent-bright); }
.prose ol { counter-reset: li; }
.prose ol > li::before { counter-increment: li; content: counter(li); position: absolute; left: 0; top: 0.05rem; font-family: var(--mono); font-size: 0.78rem; color: var(--brand); }
.prose blockquote { margin: 1.6rem 0; padding: 0.6rem 0 0.6rem 1.4rem; border-left: 3px solid var(--accent-bright); font-family: var(--display); font-size: 1.2rem; color: var(--ink); }
.prose img { border-radius: var(--radius); margin: 1.6rem auto; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.2rem 0; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: 0.95rem; }
.prose th, .prose td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--display); color: var(--ink); }

/* Podcast list */
.pod-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.search { display: flex; align-items: center; gap: 0.6rem; flex: 1; min-width: 16rem; max-width: 30rem; padding: 0.7rem 1rem; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--muted); transition: border-color 0.2s, box-shadow 0.2s; }
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px var(--accent-soft); color: var(--brand); }
.search input { flex: 1; border: none; background: transparent; font: inherit; color: var(--ink); outline: none; }
.pod-count { font-family: var(--mono); color: var(--muted); font-size: 0.85rem; margin: 0; white-space: nowrap; }
#ep-count { color: var(--brand); font-weight: 500; }
.episodes { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.episode { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s; }
.episode:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }
.ep-link { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.6rem; text-decoration: none; color: inherit; }
.ep-badge { display: grid; align-content: center; justify-items: center; width: 4.5rem; height: 4.5rem; border-radius: var(--radius); background: var(--ink); color: #fff; font-family: var(--mono); font-size: 1.7rem; font-weight: 500; line-height: 1; }
.ep-hash { font-size: 0.9rem; opacity: 0.7; }
.ep-body h2 { font-size: 1.2rem; margin: 0 0 0.4rem; line-height: 1.2; }
.ep-body p { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.95rem; max-width: 60ch; }
.ep-topics { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.topic { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.03em; color: var(--brand); background: var(--accent-soft); padding: 0.2rem 0.55rem; border-radius: 2px; }
.ep-cta { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: var(--brand); }
.ep-cta span { display: inline-block; transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1); }
.episode:hover .ep-cta span { transform: translateX(4px); }
.ep-listen { position: absolute; top: 1.2rem; right: 1.2rem; display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--paper); color: var(--ink); font-family: var(--display); font-weight: 600; font-size: 0.82rem; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.ep-listen:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.pod-empty { margin: 2rem 0 0; padding: 2rem; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--radius); }
@media (max-width: 560px) { .ep-link { grid-template-columns: 1fr; gap: 1rem; padding-top: 3.2rem; } .ep-badge { width: 3.4rem; height: 3.4rem; font-size: 1.3rem; } }

/* ---- Motion ---- */
@media (prefers-reduced-motion: no-preference) {
  .headline .ln span, .hero .eyebrow, .hero-sub, .hero .lead, .actions { opacity: 0; animation: rise 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
  .hero .eyebrow { animation-delay: 0.05s; }
  .headline .ln:nth-child(1) span { animation-delay: 0.16s; }
  .headline .ln:nth-child(2) span { animation-delay: 0.27s; }
  .hero-sub { animation-delay: 0.42s; }
  .hero .lead { animation-delay: 0.52s; }
  .actions { animation-delay: 0.62s; }
  .scan { opacity: 0; animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards; }
  .pt { opacity: 0; animation: pop 0.5s ease forwards; animation-delay: calc(0.8s + var(--i, 0) * 18ms); }
  .pt-out { animation: pop 0.5s ease 1.5s forwards, ring 2.6s ease-out 2s infinite; }
  .scanline { animation: sweep 5.5s cubic-bezier(0.6, 0, 0.4, 1) 1.6s infinite; }
  .live-dot { animation: blink 2s ease-in-out infinite; }
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
  html.js .reveal.in { opacity: 1; transform: none; }
  html.js .vorteile .reveal.in, html.js .services .reveal.in, html.js .pubs .reveal.in, html.js .team .reveal.in, html.js .quotes .reveal.in { transition-delay: calc(var(--i, 0) * 70ms); }
  html.js .episode { opacity: 0; transform: translateY(18px); animation: ep-in 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
  html.js .episode:nth-child(2) { animation-delay: 0.08s; }
  html.js .episode:nth-child(3) { animation-delay: 0.16s; }
  html.js .episode:nth-child(n + 4) { animation-delay: 0.24s; }
}
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(0.2); } to { opacity: 0.55; transform: none; } }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(43, 179, 171, 0.55); } 70% { box-shadow: 0 0 0 16px rgba(43, 179, 171, 0); } 100% { box-shadow: 0 0 0 0 rgba(43, 179, 171, 0); } }
@keyframes sweep { 0% { left: 0; } 100% { left: 100%; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes ep-in { to { opacity: 1; transform: none; } }
