/* ==========================================================================
   HASERADIO · Design-System
   Navy (Logo) · Rot (Logo) · Hase-Cyan (der Fluss) · Papierweiß
   Schrift: Bricolage Grotesque (Display) · Instrument Sans (Text), selbst gehostet
   ========================================================================== */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/instrument-latin-italic.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: dark;
  --navy-900: oklch(14% 0.045 265);
  --navy-800: oklch(19% 0.05 265);
  --navy-700: oklch(25% 0.055 265);
  --navy-600: oklch(32% 0.06 265);
  --red: oklch(62% 0.24 27);
  --red-soft: oklch(70% 0.2 27);
  --hase: oklch(82% 0.14 215);       /* der Fluss: helles Cyan */
  --hase-deep: oklch(62% 0.16 235);
  --gold: oklch(85% 0.15 85);
  --paper: oklch(97% 0.01 260);
  --ink: var(--paper);
  --muted: oklch(75% 0.03 260);
  --faint: oklch(55% 0.03 260);
  --line: color-mix(in oklch, var(--paper) 12%, transparent);
  --card: color-mix(in oklch, var(--navy-700) 55%, transparent);
  --card-solid: var(--navy-800);

  --font-display: "Bricolage Grotesque", "Segoe UI Variable Display", system-ui, sans-serif;
  --font-text: "Instrument Sans", "Segoe UI", system-ui, sans-serif;

  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 30px 80px -30px oklch(0% 0 0 / .7);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-spring: linear(0, 0.006, 0.025 2.8%, 0.101 6.1%, 0.539 18.9%, 0.721 25.3%, 0.849 31.5%, 0.937 38.1%, 0.968 41.8%, 0.991 45.7%, 1.006 50.1%, 1.015 55%, 1.017 63.9%, 1.001);
  --header-h: 76px;
  --wrap: min(1240px, 92vw);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(15px, .45vw + 13px, 17px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--navy-900);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, color-mix(in oklch, var(--hase-deep) 25%, transparent), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, color-mix(in oklch, var(--red) 14%, transparent), transparent 60%);
  background-attachment: fixed;
  min-height: 100dvh;
  overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
::selection { background: var(--red); color: white; }
:focus-visible { outline: 2px solid var(--hase); outline-offset: 3px; border-radius: 6px; }

.wrap { width: var(--wrap); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--hase);
}
.kicker::before { content: ""; width: 1.6em; height: 2px; background: currentColor; border-radius: 2px; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* ---------- Header / Shell ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem;
  padding-inline: max(4vw, calc((100vw - var(--wrap)) / 2));
  background: color-mix(in oklch, var(--navy-900) 72%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .9rem; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--red), oklch(52% 0.22 20));
  display: grid; place-items: center; box-shadow: 0 10px 30px -10px var(--red);
  position: relative; overflow: hidden;
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.brand-text small { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

.site-nav { display: flex; justify-content: center; gap: .2rem; }
.site-nav a {
  white-space: nowrap;
  padding: .55rem .9rem; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--muted);
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--ink); background: color-mix(in oklch, var(--paper) 7%, transparent); }
.site-nav a[aria-current="page"] { color: var(--ink); background: color-mix(in oklch, var(--paper) 10%, transparent); }
.nav-toggle { display: none; }
.header-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: .5rem; }

/* Player (Kopfzeile, persistent) */
.player {
  display: flex; align-items: center; gap: .8rem;
  padding: .35rem .5rem .35rem .35rem;
  border-radius: 999px;
  background: color-mix(in oklch, var(--paper) 6%, transparent);
  border: 1px solid var(--line);
  max-width: 420px;
}
.play-btn {
  --size: 50px;
  width: var(--size); height: var(--size); border-radius: 50%; flex: none;
  display: grid; place-items: center; position: relative;
  background: var(--red); color: white;
  box-shadow: 0 10px 30px -10px var(--red);
  transition: transform .3s var(--ease-spring), background .3s;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn:active { transform: scale(.96); }
.play-btn svg { width: 22px; height: 22px; }
.play-btn .ico-pause, .play-btn .ico-play { position: absolute; transition: opacity .2s, transform .3s var(--ease-spring); }
.play-btn .ico-pause { opacity: 0; transform: scale(.6); }
.player[data-state="playing"] .play-btn .ico-pause { opacity: 1; transform: scale(1); }
.player[data-state="playing"] .play-btn .ico-play { opacity: 0; transform: scale(.6); }
.play-btn::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--red); opacity: 0;
}
.player[data-state="playing"] .play-btn::before { animation: pulse 2.2s ease-out infinite; }
.player[data-state="connecting"] .play-btn::before,
.player[data-state="intro"] .play-btn::before,
.player[data-state="reconnecting"] .play-btn::before {
  opacity: 1; border-color: transparent; border-top-color: var(--hase); animation: spin 1s linear infinite;
}
@keyframes pulse { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.45); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

.player-cover {
  width: 44px; height: 44px; border-radius: 10px; flex: none; object-fit: cover;
  background: var(--navy-700); opacity: 0; transition: opacity .4s;
}
.player-cover.ist-da { opacity: 1; }
.player-text { min-width: 0; line-height: 1.2; }
.player-text .onair { display: flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.player-text .onair .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.player[data-state="playing"] .onair { color: var(--red-soft); }
.player[data-state="playing"] .onair .dot { background: var(--red); box-shadow: 0 0 0 0 var(--red); animation: dot 1.6s ease-out infinite; }
@keyframes dot { 0% { box-shadow: 0 0 0 0 color-mix(in oklch, var(--red) 60%, transparent); } 100% { box-shadow: 0 0 0 8px transparent; } }
.player-title { font-weight: 600; font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 240px; }
.player-status { font-size: .72rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-label { display: inline-flex; align-items: center; flex: none; margin-left: .2rem; }
.ai-label img { height: 30px; width: auto; border-radius: 6px; opacity: .9; }
.ai-label:hover img { opacity: 1; }

@media (max-width: 1240px) {
  .player-text { display: none; }
  .ai-label { display: none; }
}
@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: .6rem; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 49;
    flex-direction: column; gap: .2rem; padding: 1rem 5vw 1.4rem;
    background: color-mix(in oklch, var(--navy-900) 92%, transparent); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .25s var(--ease-out);
  }
  .site-nav.offen { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: 1.1rem; padding: .8rem 1rem; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: var(--ink); }
  .brand-text small { display: none; }
  .player-text { display: none; }
  .player { padding: .25rem; border-color: transparent; background: none; }
  .ai-label { display: none; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 3vw; gap: .4rem; }
  .brand-text { display: none; }
  .player-cover { display: none; }
  .play-btn { --size: 46px; }
}

/* ---------- Intro-Overlay (KI-Hinweis) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 5vw;
  background: color-mix(in oklch, var(--navy-900) 85%, transparent); backdrop-filter: blur(16px);
  animation: fadein .5s var(--ease-out);
}
.intro[hidden] { display: none; }
.intro-card {
  max-width: 620px; padding: clamp(1.6rem, 4vw, 3rem); border-radius: 28px;
  background: linear-gradient(160deg, color-mix(in oklch, var(--navy-700) 80%, transparent), color-mix(in oklch, var(--navy-900) 80%, transparent));
  border: 1px solid var(--line); box-shadow: var(--shadow);
  animation: rise .7s var(--ease-spring);
}
.intro-card h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .6rem 0 1rem; }
.intro-card p { color: var(--muted); margin-bottom: 1.2rem; }
.intro-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
@keyframes fadein { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(24px) scale(.98); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 700;
  background: var(--paper); color: var(--navy-900);
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -16px var(--paper); }
.btn.red { background: var(--red); color: white; }
.btn.red:hover { box-shadow: 0 16px 40px -14px var(--red); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid color-mix(in oklch, var(--paper) 25%, transparent); }
.btn.ghost:hover { background: color-mix(in oklch, var(--paper) 8%, transparent); box-shadow: none; }
.btn svg { width: 1.1em; height: 1.1em; }
.btn.big { padding: 1.1rem 1.8rem; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100svh - var(--header-h));
  display: grid; align-items: end; overflow: clip;
  isolation: isolate;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, var(--navy-900) 0%, color-mix(in oklch, var(--navy-900) 55%, transparent) 28%, transparent 60%),
    linear-gradient(to right, color-mix(in oklch, var(--navy-900) 60%, transparent), transparent 50%);
}
.hero-inner {
  position: relative; width: var(--wrap); margin-inline: auto;
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(2rem, 6vh, 4rem);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 8.5rem); font-weight: 800; line-height: .92; letter-spacing: -.045em;
  font-variation-settings: "opsz" 96;
}
.hero-title .zeile { display: block; overflow: hidden; }
.hero-title .zeile > span { display: inline-block; animation: zeile .9s var(--ease-out) both; }
.hero-title .zeile:nth-child(2) > span { animation-delay: .08s; }
.hero-title .zeile:nth-child(3) > span { animation-delay: .16s; }
.hero-title em { font-style: normal; color: var(--hase); }
.hero-title .hase-wave { position: relative; display: inline-block; }
.hero-title .hase-wave svg { position: absolute; left: 0; right: 0; bottom: -.08em; width: 100%; height: .22em; }
@keyframes zeile { from { transform: translateY(110%); opacity: 0; } }
.hero-lead { margin-top: 1.4rem; max-width: 44ch; font-size: clamp(1.05rem, 1.4vw, 1.3rem); color: var(--muted); animation: rise .9s .25s var(--ease-out) both; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; animation: rise .9s .35s var(--ease-out) both; }

/* Jetzt-läuft-Karte */
.now-card {
  justify-self: end; width: min(100%, 400px);
  border-radius: var(--radius); padding: 1.1rem; position: relative; overflow: hidden;
  background: color-mix(in oklch, var(--navy-800) 70%, transparent);
  border: 1px solid var(--line); backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--shadow);
  animation: rise 1s .3s var(--ease-out) both;
}
.now-card .kicker { color: var(--red-soft); }
.now-card .kicker::before { background: var(--red); }
.now-cover-wrap { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; margin: .9rem 0; background: var(--navy-700); }
.now-cover-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s; transform: scale(1.03); }
.now-cover-wrap img.aktiv { opacity: 1; animation: kenburns 30s linear infinite alternate; }
@keyframes kenburns { from { transform: scale(1.03) translate(0, 0); } to { transform: scale(1.12) translate(-2%, 2%); } }
.now-cover-wrap .platzhalter { position: absolute; inset: 0; display: grid; place-items: center; color: var(--faint); }
.now-cover-wrap .platzhalter svg { width: 40%; height: 40%; opacity: .6; }
.now-title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.1; letter-spacing: -.02em; }
.now-artist { color: var(--muted); margin-top: .2rem; }
.now-progress { height: 3px; background: var(--line); border-radius: 2px; margin-top: .9rem; overflow: hidden; }
.now-progress > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--hase)); transition: width 1s linear; }
.now-next { margin-top: .7rem; font-size: .82rem; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now-show { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); font-size: .9rem; }
.now-show .avatars { display: flex; }
.now-show .avatars .avatar { width: 34px; height: 34px; margin-left: -10px; border: 2px solid var(--navy-800); }
.now-show .avatars .avatar:first-child { margin-left: 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .now-card { justify-self: stretch; width: 100%; }
  .now-cover-wrap { aspect-ratio: 16/7; }
}

/* ---------- Abschnitte ---------- */
.section { padding-block: clamp(3rem, 8vw, 6.5rem); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.4rem, 3vw, 2.4rem); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -.035em; margin-top: .5rem; }
.section-head .mehr { white-space: nowrap; font-weight: 600; color: var(--hase); display: inline-flex; align-items: center; gap: .4rem; }
.section-head .mehr:hover { text-decoration: underline; text-underline-offset: 4px; }
.section-head .mehr svg { width: 1em; height: 1em; transition: transform .3s var(--ease-spring); }
.section-head .mehr:hover svg { transform: translateX(4px); }
@media (max-width: 640px) { .section-head { flex-direction: column; align-items: start; } }

/* Scroll-Reveal: CSS Scroll-Driven Animations wenn möglich, sonst JS (IntersectionObserver) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.sichtbar { opacity: 1; transform: none; }
@supports (animation-timeline: view()) {
  .reveal { opacity: 1; transform: none; transition: none; animation: reveal both; animation-timeline: view(); animation-range: entry 0% entry 38%; }
  @keyframes reveal { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
}

/* Karten */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; position: relative; overflow: hidden;
  transition: transform .4s var(--ease-spring), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-3px); border-color: color-mix(in oklch, var(--paper) 22%, transparent); background: color-mix(in oklch, var(--navy-700) 70%, transparent); }

/* Avatare */
.avatar {
  width: 56px; height: 56px; border-radius: 50%; flex: none; overflow: hidden; position: relative;
  background: var(--navy-600); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: white; font-size: 1.1rem;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar.gross { width: 100%; height: auto; aspect-ratio: 1; border-radius: 26px; font-size: 4rem; }

/* Tages-Timeline (Sendungen heute) */
.timeline {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 290px); gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: .6rem .3rem 1.2rem; margin-inline: -.3rem;
  scrollbar-width: thin; scrollbar-color: var(--navy-600) transparent;
}
.timeline .show { scroll-snap-align: start; display: flex; flex-direction: column; gap: .9rem; min-height: 230px; }
.timeline .show.laeuft { border-color: color-mix(in oklch, var(--red) 60%, transparent); background: linear-gradient(160deg, color-mix(in oklch, var(--red) 18%, transparent), var(--card)); }
.timeline .show.vorbei { opacity: .55; }
.show-zeit { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.show-zeit .tag-chip { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 999px; background: color-mix(in oklch, var(--paper) 8%, transparent); }
.show.laeuft .show-zeit .tag-chip { background: var(--red); color: white; }
.show-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.05; }
.show-hosts { display: flex; align-items: center; gap: .6rem; margin-top: auto; }
.show-hosts .avatars { display: flex; }
.show-hosts .avatar { width: 40px; height: 40px; font-size: .9rem; margin-left: -10px; border: 2px solid var(--navy-800); }
.show-hosts .avatar:first-child { margin-left: 0; }
.show-hosts .namen { font-size: .9rem; font-weight: 600; }
.show-hosts .namen small { display: block; font-weight: 400; color: var(--faint); font-size: .75rem; }
.show-meta { font-size: .78rem; color: var(--faint); }

/* Wochenplan */
.woche-tabs { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.woche-tabs button { padding: .55rem 1rem; border-radius: 999px; font-weight: 700; color: var(--muted); background: color-mix(in oklch, var(--paper) 6%, transparent); }
.woche-tabs button[aria-selected="true"] { background: var(--paper); color: var(--navy-900); }
.woche-liste { display: grid; gap: .6rem; }
.woche-zeile {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 1rem; align-items: center;
  padding: .9rem 1.1rem; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line);
}
.woche-zeile.laeuft { border-color: color-mix(in oklch, var(--red) 60%, transparent); }
.woche-zeile .zeit { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.woche-zeile .zeit small { display: block; font-size: .72rem; color: var(--faint); font-weight: 400; }
.woche-zeile .name { font-weight: 700; font-size: 1.05rem; }
.woche-zeile .name small { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; }
@media (max-width: 600px) { .woche-zeile { grid-template-columns: 80px 1fr; } .woche-zeile .show-hosts { grid-column: 1 / -1; } }

/* Moderatoren-Raster */
.hosts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.2rem; }
.host-card { display: flex; flex-direction: column; gap: .9rem; }
.host-card .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; }
.host-card .rolle { color: var(--hase); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.host-card .text { color: var(--muted); font-size: .92rem; }
.host-card .shows { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: auto; }
.chip { font-size: .72rem; font-weight: 600; padding: .3rem .6rem; border-radius: 999px; background: color-mix(in oklch, var(--paper) 8%, transparent); color: var(--muted); }

/* Themen */
.themen-filter { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.themen-filter button { padding: .5rem .9rem; border-radius: 999px; font-weight: 600; font-size: .85rem; color: var(--muted); background: color-mix(in oklch, var(--paper) 6%, transparent); }
.themen-filter button[aria-pressed="true"] { background: var(--hase); color: var(--navy-900); }
.themen-grid { columns: 3 300px; column-gap: 1rem; }
.thema { break-inside: avoid; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .6rem; }
.thema-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; font-size: .75rem; color: var(--faint); }
.typ { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .68rem; padding: .25rem .6rem; border-radius: 999px; }
.typ[data-typ="news"] { background: color-mix(in oklch, var(--red) 25%, transparent); color: var(--red-soft); }
.typ[data-typ="localnews"] { background: color-mix(in oklch, var(--gold) 22%, transparent); color: var(--gold); }
.typ[data-typ="weather"] { background: color-mix(in oklch, var(--hase) 22%, transparent); color: var(--hase); }
.typ[data-typ="traffic"] { background: color-mix(in oklch, oklch(75% .18 150) 22%, transparent); color: oklch(80% .18 150); }
.typ[data-typ="feature"], .typ[data-typ="opener"], .typ[data-typ="outro"], .typ[data-typ="fun"] { background: color-mix(in oklch, var(--paper) 10%, transparent); color: var(--muted); }
.thema-text { font-size: .95rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.thema.offen .thema-text { -webkit-line-clamp: unset; line-clamp: unset; }
.thema-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; font-size: .8rem; color: var(--faint); }
.thema-foot .sprecher { display: flex; align-items: center; gap: .4rem; }
.thema-foot .sprecher .avatar { width: 22px; height: 22px; font-size: .6rem; }
.mini-play {
  display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .8rem .4rem .5rem; border-radius: 999px;
  background: color-mix(in oklch, var(--paper) 10%, transparent); font-weight: 700; font-size: .8rem; color: var(--ink);
  transition: background .2s, transform .3s var(--ease-spring);
}
.mini-play:hover { background: color-mix(in oklch, var(--paper) 18%, transparent); transform: scale(1.04); }
.mini-play svg { width: 16px; height: 16px; }
.mini-play[aria-pressed="true"] { background: var(--hase); color: var(--navy-900); }

/* Nachhören-Liste */
.clips { display: grid; gap: .6rem; }
.clip {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 1rem; align-items: center;
  padding: .8rem 1rem; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line);
  transition: background .2s, border-color .2s;
}
.clip:hover { border-color: color-mix(in oklch, var(--paper) 22%, transparent); }
.clip.spielt { border-color: var(--hase); background: color-mix(in oklch, var(--hase) 10%, var(--card)); }
.clip-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklch, var(--paper) 10%, transparent); position: relative; }
.clip-btn svg { width: 20px; height: 20px; position: absolute; transition: opacity .2s; }
.clip-btn .ico-pause { opacity: 0; }
.clip.spielt .clip-btn { background: var(--hase); color: var(--navy-900); }
.clip.spielt .clip-btn .ico-pause { opacity: 1; }
.clip.spielt .clip-btn .ico-play { opacity: 0; }
.clip-text { min-width: 0; }
.clip-text .t { font-size: .95rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.clip.spielt .clip-text .t, .clip.offen .clip-text .t { -webkit-line-clamp: unset; line-clamp: unset; }
.clip-text .m { display: flex; gap: .6rem; align-items: center; font-size: .75rem; color: var(--faint); margin-top: .35rem; flex-wrap: wrap; }
.clip-text .m .sprecher { display: inline-flex; align-items: center; gap: .35rem; }
.clip-text .m .avatar { width: 20px; height: 20px; font-size: .55rem; }
.clip-bar { height: 3px; background: var(--line); border-radius: 2px; margin-top: .5rem; overflow: hidden; }
.clip-bar > i { display: block; height: 100%; width: 0; background: var(--hase); }
.clip-zeit { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--muted); white-space: nowrap; }
.clip-zeit small { display: block; font-size: .7rem; font-weight: 400; color: var(--faint); text-align: right; }

/* Playlist */
.playlist { display: grid; gap: .5rem; }
.song {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem; align-items: center;
  padding: .6rem .8rem; border-radius: var(--radius-sm); border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.song:hover { background: var(--card); border-color: var(--line); }
.song.jetzt { background: color-mix(in oklch, var(--red) 12%, transparent); border-color: color-mix(in oklch, var(--red) 45%, transparent); }
.song-cover { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--navy-700); }
.song-cover.leer { display: grid; place-items: center; color: var(--faint); }
.song-cover.leer svg { width: 26px; height: 26px; }
.song-text .t { font-weight: 700; font-size: 1.02rem; }
.song-text .a { color: var(--muted); font-size: .9rem; }
.song-zeit { font-family: var(--font-display); font-weight: 700; color: var(--muted); }
.song-zeit small { display: block; font-size: .68rem; color: var(--faint); text-align: right; font-weight: 400; }
.playlist-tabs { display: flex; gap: .3rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.playlist-tabs button { padding: .55rem 1rem; border-radius: 999px; font-weight: 700; color: var(--muted); background: color-mix(in oklch, var(--paper) 6%, transparent); }
.playlist-tabs button[aria-selected="true"] { background: var(--paper); color: var(--navy-900); }

/* Cover-Fluss (Marquee der letzten Cover) */
.cover-fluss { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); margin-block: 1.5rem; }
.cover-fluss .spur { display: flex; gap: .8rem; width: max-content; animation: fluss 60s linear infinite; }
.cover-fluss:hover .spur { animation-play-state: paused; }
.cover-fluss img { width: 110px; height: 110px; border-radius: 16px; object-fit: cover; flex: none; transition: transform .4s var(--ease-spring); }
.cover-fluss img:hover { transform: scale(1.08) rotate(-2deg); }
@keyframes fluss { to { transform: translateX(-50%); } }

/* Inhaltsseiten (Text) */
.page { padding-block: clamp(2.5rem, 6vw, 5rem); }
.page-head { margin-bottom: clamp(1.5rem, 4vw, 3rem); }
.page-head h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; letter-spacing: -.04em; margin-top: .6rem; }
.page-head .lead { color: var(--muted); font-size: 1.15rem; max-width: 60ch; margin-top: 1rem; }
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.6rem; margin: 2.4rem 0 .8rem; letter-spacing: -.02em; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; }
.prose p, .prose li { color: var(--muted); margin-bottom: .9rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--ink); }
.prose a { color: var(--hase); text-decoration: underline; text-underline-offset: 3px; }
.prose .box { padding: 1.2rem 1.4rem; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line); margin: 1.2rem 0; }
.prose .box p:last-child { margin-bottom: 0; }
.zitat { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; line-height: 1.3; color: var(--ink); border-left: 3px solid var(--red); padding-left: 1rem; margin: 1.5rem 0; }
.zitat small { display: block; font-family: var(--font-text); font-size: .85rem; color: var(--faint); margin-top: .4rem; }

.leer { padding: 2rem; text-align: center; color: var(--faint); border: 1px dashed var(--line); border-radius: var(--radius-sm); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 3rem; padding: 3rem 0 2.5rem; color: var(--muted); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: .8rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .8rem; color: var(--faint); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 1.4rem; z-index: 90; transform: translate(-50%, 20px);
  padding: .8rem 1.2rem; border-radius: 999px; background: var(--paper); color: var(--navy-900); font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .35s var(--ease-spring);
}
.toast.zeigen { opacity: 1; transform: translate(-50%, 0); }

/* ---------- View Transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(seite) { animation: vt-out .25s var(--ease-out) both; }
::view-transition-new(seite) { animation: vt-in .45s var(--ease-out) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(16px); } }
#app { view-transition-name: seite; }

/* ---------- Skeleton ---------- */
.skeleton { position: relative; overflow: hidden; background: color-mix(in oklch, var(--paper) 6%, transparent); border-radius: var(--radius-sm); min-height: 120px; }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, color-mix(in oklch, var(--paper) 8%, transparent), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
