/* ============================================================
   LUCKY LOSER — "Loose Pages"
   Editorial broken-grid + kinetic. Montserrat (Heavy → Regular), eine Schrift
   ============================================================ */

:root {
  --blue: #A8C8E8; --blue-deep: #7DA9D6; --blue-soft: #DCEAF7;
  --ink: #0D121B; --ink-2: #080B11;
  --paper: #FFFFFF; --paper-2: #F1F4F8; --paper-warm: #FBF7EE;
  --orange: #E8721A; --orange-2: #D4650F;
  --text: #11151C; --text-2: #4F5965; --text-3: #8A93A0;
  --line: rgba(15,20,28,.14); --line-soft: rgba(15,20,28,.08);
  --on: #FFFFFF; --on-2: rgba(255,255,255,.66); --on-line: rgba(255,255,255,.14);
  --glass: rgba(255,255,255,.82); --glass-line: rgba(15,20,28,.08);
  --sans: 'Montserrat', system-ui, sans-serif;
  --display: 'Montserrat', sans-serif;
  --mono: 'Montserrat', sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --spring: cubic-bezier(.34,1.4,.64,1);
  --shadow: 0 30px 60px -28px rgba(13,20,40,.45);
  --shadow-paper: 0 16px 34px -16px rgba(13,20,40,.4);
}
html.dark {
  --blue: #213449; --blue-deep: #2C415C; --blue-soft: #16202E;
  --ink: #07090E; --ink-2: #05070B;
  --paper: #0B0E14; --paper-2: #0F131B; --paper-warm: #F4EEE0;
  --orange: #F28732; --orange-2: #E8721A;
  --text: #E9ECF2; --text-2: #99A3B3; --text-3: #5F6979;
  --line: rgba(255,255,255,.13); --line-soft: rgba(255,255,255,.07);
  --glass: rgba(12,16,22,.82); --glass-line: rgba(255,255,255,.09);
  --shadow: 0 30px 60px -28px rgba(0,0,0,.7);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--paper); }
body { font-family: var(--sans); color: var(--text); background: var(--paper); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  transition: background-color .6s var(--ease), color .5s var(--ease); }
section { position: relative; }
img { display: block; max-width: 100%; }
em { font-style: normal; }
.mono { font-family: var(--mono); letter-spacing: -.02em; }

/* a11y */
.skip-link { position: fixed; top: -120px; left: 1rem; z-index: 100000; background: var(--orange); color: #fff;
  padding: .8rem 1.3rem; font-weight: 700; font-size: .8rem; text-decoration: none; transition: top .25s var(--ease); }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee-track { animation: none !important; }
  .rv { opacity: 1 !important; transform: none !important; }
  .cursor { display: none !important; }
  body.cursor-on { cursor: auto !important; }
}

/* grain + cursor + progress + loader */
.grain { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; }
html.dark .grain { mix-blend-mode: screen; opacity: .04; }
@media (hover: hover) and (pointer: fine) { body.cursor-on { cursor: none; } body.cursor-on a, body.cursor-on button, body.cursor-on [data-hover] { cursor: none; } }
.cursor { position: fixed; top: 0; left: 0; z-index: 10001; width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1.5px solid var(--orange); border-radius: 50%; pointer-events: none; opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s var(--ease), width .35s var(--ease), height .35s var(--ease), background-color .35s var(--ease); will-change: transform; }
body.cursor-on .cursor { opacity: 1; }
.cursor.hover { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(232,114,26,.12); }
.cursor.label { width: 74px; height: 74px; margin: -37px 0 0 -37px; background: var(--orange); }
#cursorLabel { font-family: var(--mono); font-size: .56rem; font-weight: 700; color: #fff; text-transform: uppercase; opacity: 0; transition: opacity .2s; }
.cursor.label #cursorLabel { opacity: 1; }
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 10002; background: var(--orange); pointer-events: none; }
.loader { position: fixed; inset: 0; z-index: 99999; background: var(--blue); display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem,6vw,3rem); letter-spacing: .02em; color: #fff; overflow: hidden; }
.loader-mark span { display: inline-block; transform: translateY(110%); animation: lUp .6s var(--ease) forwards; }
.loader-mark span:nth-child(2){ animation-delay:.1s; }
@keyframes lUp { to { transform: none; } }

/* reveal */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.vis { opacity: 1; transform: none; }
.rv.d1{transition-delay:.08s}.rv.d2{transition-delay:.16s}.rv.d3{transition-delay:.24s}.rv.d4{transition-delay:.32s}.rv.d5{transition-delay:.4s}

/* buttons */
.btn-primary { display: inline-flex; align-items: center; gap: .6rem; background: var(--ink); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .01em; text-decoration: none;
  padding: .92rem 1.5rem; border: none; border-radius: 100px; cursor: pointer; transition: background-color .35s var(--ease), transform .35s var(--spring); }
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; font-weight: 700; font-size: .82rem; text-decoration: none;
  color: var(--text); padding: .9rem 1.4rem; border: 1.5px solid var(--line); border-radius: 100px; transition: border-color .3s var(--ease), color .3s; }
.hero .btn-ghost { color: #0D121B; border-color: rgba(13,18,27,.28); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.play-tri { width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--orange); }

/* ════════ TOPBAR ════════ */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.4rem,5vw,4.5rem); transition: padding .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease); }
.topbar.scrolled { background: var(--glass); -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 var(--glass-line); padding-top: .8rem; padding-bottom: .8rem; }
.brand { display: flex; flex-direction: column; gap: 3px; line-height: 1; text-decoration: none; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1rem; letter-spacing: .02em; color: #0D121B; }
html.dark .brand-name, .topbar.scrolled .brand-name { color: var(--text); }
.brand-sub { font-family: var(--mono); font-size: .54rem; font-weight: 400; letter-spacing: 0; color: rgba(13,18,27,.55); }
html.dark .brand-sub, .topbar.scrolled .brand-sub { color: var(--text-3); }
.topnav { display: flex; gap: 1.9rem; }
.topnav a { display: inline-flex; align-items: baseline; gap: .4rem; font-size: .78rem; font-weight: 600; color: #0D121B; text-decoration: none; transition: color .3s; }
html.dark .topnav a { color: var(--text); }
.topbar.scrolled .topnav a { color: var(--text); }
.topnav a:hover { color: var(--orange); }
.topnav .idx { display: none; }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.listen-pill { display: inline-flex; align-items: center; gap: .45rem; background: var(--ink); color: #fff;
  font-weight: 700; font-size: .76rem; text-decoration: none; padding: .55rem 1.1rem; border-radius: 100px; transition: background-color .3s var(--ease), transform .3s var(--spring); }
.listen-pill .play-tri { border-left-color: var(--orange); }
.listen-pill:hover { background: var(--orange); transform: translateY(-1px); }
.listen-pill:hover .play-tri { border-left-color: #fff; }
.theme-toggle { width: 40px; height: 22px; border-radius: 100px; border: 1.5px solid rgba(13,18,27,.3); background: transparent; position: relative; cursor: pointer; transition: border-color .4s; }
html.dark .theme-toggle, .topbar.scrolled .theme-toggle { border-color: var(--line); }
.tt-knob { position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #0D121B; transition: transform .4s var(--spring), background-color .4s; }
html.dark .tt-knob { transform: translateX(18px); background: var(--orange); }
.burger { display: none; width: 30px; height: 18px; background: none; border: none; position: relative; cursor: pointer; }
.burger span { position: absolute; left: 0; right: 0; height: 2.5px; background: #0D121B; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
html.dark .burger span, .topbar.scrolled .burger span { background: var(--text); }
.burger span:nth-child(1){ top: 2px; } .burger span:nth-child(2){ bottom: 2px; }
.burger.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2){ transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--glass); -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1rem; padding: 0 2rem;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { display: flex; align-items: baseline; gap: .8rem; font-family: var(--display); font-weight: 600; font-size: 2.4rem; color: var(--text); text-decoration: none; }
.mobile-menu .idx { display: none; }

/* ════════ HERO ════════ */
.hero { min-height: 100svh; background: var(--blue); overflow: hidden; position: relative;
  padding: clamp(6rem,13vh,9rem) clamp(1.4rem,5vw,4.5rem) clamp(2.5rem,6vh,4rem);
  display: flex; flex-direction: column; justify-content: center; transition: background-color .6s var(--ease); }
.hero-meta { position: absolute; top: 2.2rem; left: clamp(1.4rem,5vw,4.5rem); right: clamp(1.4rem,5vw,4.5rem);
  display: flex; justify-content: space-between; font-size: .72rem; text-transform: uppercase; color: #0D121B; }
.hero-rule { position: absolute; top: 4.6rem; left: clamp(1.4rem,5vw,4.5rem); right: clamp(1.4rem,5vw,4.5rem); height: 1px; background: rgba(13,18,27,.16); }
html.dark .hero-meta { color: var(--on-2); }
html.dark .hero-rule { background: var(--on-line); }
.bigword { font-family: var(--display); font-weight: 800; line-height: .78; letter-spacing: -.02em; color: #fff; position: relative; z-index: 2; }
.bw-line { display: block; }
.bw { display: block; }
html.js .bw { opacity: 0; transform: translateY(42%); }
.bigword.in .bw { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1.05s var(--spring); }
.bigword.in .bw2 { transition-delay: .12s; }
html.cap .bw { opacity: 1 !important; transform: none !important; }
.bw1 { font-size: clamp(4rem,18vw,15.5rem); margin-left: -.03em; }
.bw2 { font-size: clamp(4rem,18vw,15.5rem); margin-left: clamp(1rem,9vw,9rem); }
.outline { color: transparent; -webkit-text-stroke: 2px #fff; }
.hero-figure { position: absolute; z-index: 3; top: clamp(4.5rem,13vh,9rem); right: clamp(1.4rem,6vw,6rem); width: clamp(210px,23vw,360px); transform: rotate(3deg); }
.hero-photo { aspect-ratio: 4/5; border-radius: 5px; overflow: hidden; border: 7px solid #fff; box-shadow: var(--shadow); background: var(--blue-deep); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.sticker { position: absolute; bottom: -16px; left: -22px; font-family: var(--mono); font-weight: 700; font-size: .8rem;
  color: #fff; background: var(--orange); padding: .55rem 1rem; border-radius: 4px; transform: rotate(-7deg); box-shadow: var(--shadow-paper); }
.hero-sub { position: relative; z-index: 2; font-size: clamp(1.05rem,2vw,1.55rem); font-weight: 500; line-height: 1.4; color: #fff; max-width: 26ch; margin-top: clamp(1.6rem,4vh,2.6rem); }
.hero-sub em { border-bottom: 3px solid var(--orange); font-weight: 600; padding-bottom: 1px; }
.hero-cta { position: relative; z-index: 2; display: flex; gap: .7rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 1.6rem; left: clamp(1.4rem,5vw,4.5rem); font-size: .72rem; color: #0D121B; text-decoration: none; }
html.dark .hero-scroll { color: var(--on-2); }
.onair { position: absolute; bottom: 1.8rem; right: clamp(1.4rem,5vw,4.5rem); display: inline-flex; align-items: center; gap: .6rem; z-index: 4; }
.onair-label { font-size: .68rem; color: #0D121B; }
html.dark .onair-label { color: var(--on-2); }
.eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 16px; }
.eq i { width: 3px; height: 30%; background: var(--orange); border-radius: 1px; animation: eq .9s ease-in-out infinite; }
.eq i:nth-child(1){ animation-delay: -.2s } .eq i:nth-child(2){ animation-delay: -.5s } .eq i:nth-child(3){ animation-delay: -.1s } .eq i:nth-child(4){ animation-delay: -.7s } .eq i:nth-child(5){ animation-delay: -.35s }
@keyframes eq { 0%,100% { height: 22%; } 50% { height: 100%; } }

/* marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 1.4rem 0; position: relative; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; animation: mq 40s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-weight: 500; font-size: clamp(1.5rem,3.6vw,2.8rem); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.4); }
.marquee-track i { color: var(--orange); font-size: 1rem; }
@keyframes mq { to { transform: translateX(-50%); } }

/* chapter heading */
.chapter { max-width: 1240px; margin: 0 auto clamp(2.6rem,5vw,4rem); display: flex; align-items: flex-start; gap: clamp(1rem,3vw,2.2rem); }
.num { font-family: var(--mono); font-size: .82rem; font-weight: 700; color: var(--orange); padding-top: .6rem; white-space: nowrap; }
.num.light { color: var(--orange); }
.chapter-title { font-family: var(--display); font-weight: 800; font-size: clamp(2.5rem,7vw,5.6rem); line-height: .9; letter-spacing: -.02em; color: var(--text); }
.chapter-title.light { color: #fff; }
.chapter-title em { color: var(--orange); }
.hint { margin-left: auto; align-self: flex-end; font-size: .74rem; color: var(--text-3); white-space: nowrap; }
.board .hint, .listen .hint { color: var(--on-2); }
.shuffle { margin-left: auto; align-self: flex-end; display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .72rem; font-weight: 700; color: var(--on-2); background: rgba(255,255,255,.06);
  border: 1px solid var(--on-line); border-radius: 100px; padding: .5rem .95rem; cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); white-space: nowrap; }
.shuffle:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.shuffle-ico { display: inline-block; transition: transform .6s var(--spring); }
.shuffle:hover .shuffle-ico { transform: rotate(-180deg); }

/* ════════ PINBOARD ════════ */
.board { background: var(--ink); padding: clamp(4rem,9vw,7rem) clamp(1.4rem,5vw,4rem); }
.pinboard { max-width: 1180px; margin: 0 auto; position: relative; }
.note { position: relative; width: auto; max-width: 360px; margin: 0 auto 1.4rem; background: var(--paper-warm); color: #15110B;
  padding: 1.6rem 1.4rem 1.3rem; border-radius: 3px; transform: rotate(var(--r,0)); box-shadow: var(--shadow); cursor: grab;
  transition: opacity .6s var(--ease), transform .5s var(--spring), left .55s var(--spring), top .55s var(--spring), box-shadow .4s var(--ease); }
.note::before { content: ''; position: absolute; top: -10px; left: 50%; width: 70px; height: 20px;
  background: rgba(232,114,26,.5); transform: translateX(-50%) rotate(-2deg); }
.note:hover { transform: rotate(0deg) scale(1.04); box-shadow: 0 36px 60px -24px rgba(0,0,0,.6); z-index: 6; }
.note.dragging { cursor: grabbing; transition: none; z-index: 20; box-shadow: 0 44px 70px -22px rgba(0,0,0,.7); }
.note blockquote { font-weight: 500; font-style: italic; font-size: 1rem; line-height: 1.32; }
.note.n-big blockquote { font-family: var(--display); font-style: normal; font-weight: 600; font-size: clamp(1.4rem,2.1vw,2rem); line-height: 1.08; }
.note.n-sm blockquote { font-size: .9rem; }
.note figcaption { margin-top: .9rem; font-family: var(--mono); font-weight: 700; font-size: .7rem; color: var(--orange-2); }
.note.accent { background: var(--orange); color: #fff; }
.note.accent::before { background: rgba(255,255,255,.55); }
.note.accent figcaption { color: rgba(255,255,255,.85); }
html.js .note { opacity: 0; }
html.js .note.in { opacity: 1; }
html.cap .note { opacity: 1 !important; }
@media (prefers-reduced-motion: reduce) { html.js .note { opacity: 1 !important; } }

/* ════════ ABOUT ════════ */
.about { background: var(--paper); padding: clamp(5rem,10vw,8rem) clamp(1.4rem,5vw,4.5rem); }
.about-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 5fr 6fr; gap: clamp(2.5rem,6vw,5.5rem); align-items: center; }
.about-figure { position: relative; transform: rotate(-2deg); }
.about-photo { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); background: var(--blue); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; display: block; }
.sticker-dark { position: absolute; top: -14px; right: -16px; left: auto; bottom: auto; width: max-content; background: var(--ink); color: #fff; transform: rotate(6deg); }
.pull { font-family: var(--display); font-weight: 600; font-size: clamp(2rem,4.2vw,3.3rem); line-height: 1.02; letter-spacing: -.02em; color: var(--text); margin: .9rem 0 1.5rem; }
.about-body p { font-size: .98rem; line-height: 1.78; color: var(--text-2); margin-bottom: 1rem; max-width: 46ch; }
.sig { font-family: var(--display); font-weight: 500; font-size: 1.6rem; color: var(--text); margin-top: 1.6rem; display: flex; align-items: center; gap: .8rem; }
.sig::before { content: ''; width: 36px; height: 2px; background: var(--orange); }

/* ════════ GUESTS BENTO ════════ */
.guests { background: var(--paper-2); padding: clamp(5rem,10vw,8rem) clamp(1.4rem,5vw,4rem); }
.bento { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 190px; gap: 1rem;
  grid-template-areas: "pa pa ga vi" "pa pa ga ma" "rb lu so so" "rz lu so so"; }
.g { position: relative; overflow: hidden; border-radius: 12px; text-decoration: none; background: var(--blue-deep);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.g:hover { transform: translateY(-6px); box-shadow: var(--shadow); z-index: 4; }
.g img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.05); transition: transform .8s var(--ease), filter .6s var(--ease); }
.g:hover img { transform: scale(1.06); filter: saturate(1.06) contrast(1.04); }
.g-ov { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.3rem;
  background: linear-gradient(to top, rgba(6,8,12,.95) 0%, rgba(6,8,12,.35) 45%, transparent 70%); }
.g-ep { font-size: .62rem; font-weight: 700; color: var(--orange); margin-bottom: .35rem; }
.g-name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.g-xl .g-name { font-size: 1.8rem; }
.g-hook { font-size: .8rem; line-height: 1.45; color: rgba(255,255,255,.85); max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--ease), opacity .45s var(--ease), margin .5s var(--ease); }
.g:hover .g-hook { max-height: 200px; opacity: 1; margin-top: .45rem; }
.g:nth-child(1){ grid-area: pa; } .g:nth-child(2){ grid-area: ga; } .g:nth-child(3){ grid-area: vi; }
.g:nth-child(4){ grid-area: ma; } .g:nth-child(5){ grid-area: rb; } .g:nth-child(6){ grid-area: lu; }
.g:nth-child(7){ grid-area: so; } .g:nth-child(8){ grid-area: rz; }

/* ════════ STUDIO / EPISODES ════════ */
.studio { background: var(--ink); padding: clamp(5rem,10vw,8rem) clamp(1.4rem,5vw,4.5rem); }
.studio-head { max-width: 1240px; margin: 0 auto clamp(2.4rem,5vw,3.4rem); }
.studio-head .num { display: block; margin-bottom: 1.1rem; }
.studio-head .chapter-title { margin-bottom: 1rem; }
.studio-tagline { display: block; font-size: .8rem; color: var(--on-2); }
.studio-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.65fr 1fr; gap: 1.4rem; align-items: start; }
.player-frame { background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid var(--on-line); border-radius: 22px; padding: 9px; box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08); }
.player-screen { position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #05070b; cursor: pointer; }
.player-thumb { width: 100%; height: 100%; object-fit: cover; opacity: .88; transition: opacity .5s var(--ease), transform .9s var(--ease); }
.player-screen:hover .player-thumb { opacity: .92; transform: scale(1.04); }
.player-screen iframe { width: 100%; height: 100%; border: 0; display: block; }
.player-scan { position: absolute; inset: 0; pointer-events: none; opacity: .12; background: repeating-linear-gradient(transparent 0 3px, rgba(0,0,0,.4) 3px 4px); }
.player-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 88px; height: 88px; border-radius: 50%; background: var(--orange); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform .4s var(--spring), background-color .3s; box-shadow: 0 12px 38px rgba(232,114,26,.45); }
.player-play::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--orange); animation: playPulse 2.6s var(--ease) infinite; pointer-events: none; }
@keyframes playPulse { 0% { transform: scale(.94); opacity: .65; } 70% { transform: scale(1.5); opacity: 0; } 100% { opacity: 0; } }
.player-screen:hover .player-play { transform: translate(-50%,-50%) scale(1.1); }
.player-play .tri { width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 21px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.player-live { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: .5rem; font-size: .62rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.5); padding: .4rem .75rem; border-radius: 100px; }
.player-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.player-tag { position: absolute; bottom: 1.1rem; left: 1.1rem; z-index: 2; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: .4rem .8rem; border-radius: 100px; }
.player-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem,1.9vw,1.7rem); color: #fff; line-height: 1.08; margin-top: .35rem; }
.player-guest { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .3rem; }
.ep-list { display: flex; flex-direction: column; gap: .6rem; }
.ep { width: 100%; display: flex; align-items: center; gap: 1rem; text-align: left; text-decoration: none; color: var(--on-2); background: rgba(255,255,255,.03); border: 1px solid var(--on-line); border-radius: 13px; padding: 1rem 1.1rem; cursor: pointer; transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.ep:hover { background: rgba(255,255,255,.07); transform: translateX(4px); }
.ep.active { background: rgba(232,114,26,.13); border-color: var(--orange); box-shadow: 0 10px 30px rgba(232,114,26,.16); }
.ep-idx { font-size: .8rem; color: var(--on-3); flex-shrink: 0; width: 1.8rem; text-align: center; }
.ep-thumb { width: 58px; height: 40px; object-fit: cover; border-radius: 7px; flex-shrink: 0; border: 1px solid var(--on-line); }
.ep.active .ep-thumb { border-color: rgba(232,114,26,.5); }
.ep.active .ep-idx { color: var(--orange); }
.ep-info { flex: 1; min-width: 0; }
.ep-title { display: block; font-weight: 600; font-size: .9rem; color: #fff; line-height: 1.25; }
.ep-guest { display: block; font-size: .74rem; color: rgba(255,255,255,.55); margin-top: .2rem; }
.ep-play { flex-shrink: 0; color: var(--on-3); font-size: .8rem; transition: color .3s var(--ease), transform .3s var(--ease); }
.ep:hover .ep-play, .ep.active .ep-play { color: var(--orange); }
.ep:hover .ep-play { transform: translateX(3px); }
.ep-all { background: transparent; }
.studio-links { max-width: 1240px; margin: 2rem auto 0; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.studio-links a { font-family: var(--mono); font-weight: 700; font-size: .8rem; color: #fff; text-decoration: none; transition: color .3s; }
.studio-links a:hover { color: var(--orange); }
.studio-onair { margin-left: auto; display: inline-flex; align-items: center; gap: .55rem; font-size: .7rem; color: var(--on-2); }

/* ════════ PROOF ════════ */
.proof { background: var(--paper-2); padding: clamp(5rem,9vw,7rem) clamp(1.4rem,5vw,4rem); }
.stats { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); padding: clamp(2.2rem,4vw,3.2rem) 0; }
.stat { display: flex; flex-direction: column; gap: .55rem; }
.stat-num { font-family: var(--display); font-weight: 600; font-size: clamp(2.3rem,5vw,4rem); line-height: .88; letter-spacing: -.03em; color: var(--text); }
.stat-num.accent { color: var(--orange); }
.stat-label { font-family: var(--mono); font-size: .72rem; color: var(--text-3); text-transform: uppercase; }
.clippings { max-width: 1080px; margin: clamp(3rem,6vw,4.5rem) auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.clip { background: var(--paper-warm); color: #15110B; padding: 1.5rem 1.4rem; border-radius: 3px; position: relative;
  transform: rotate(var(--r,0)); box-shadow: var(--shadow-paper); transition: transform .4s var(--spring); }
.clip::before { content: ''; position: absolute; top: -9px; left: 50%; width: 64px; height: 18px; background: rgba(232,114,26,.45); transform: translateX(-50%) rotate(1.5deg); }
.clip:hover { transform: rotate(0); }
.clip-stars { color: var(--orange); font-size: .82rem; letter-spacing: .1em; margin-bottom: .7rem; }
.clip blockquote { font-weight: 500; font-size: .94rem; line-height: 1.42; font-style: italic; margin-bottom: .8rem; }
.clip figcaption { font-size: .68rem; color: #8a7d68; text-transform: uppercase; }

/* ════════ NEWSLETTER ════════ */
.news { background: var(--blue); padding: clamp(5rem,10vw,8rem) clamp(1.4rem,5vw,4rem); }
.news-card { max-width: 900px; margin: 0 auto; background: var(--paper); border-radius: 16px; overflow: hidden;
  display: grid; grid-template-columns: 150px 1fr; box-shadow: var(--shadow); }
.news-stamp { background: var(--ink); color: #fff; font-family: var(--mono); font-weight: 700; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; text-align: center; letter-spacing: -.02em; }
.news-body { padding: clamp(2rem,4vw,3rem); }
.news-body .num { display: block; margin-bottom: .8rem; }
.news-body .pull { font-size: clamp(1.7rem,3.4vw,2.6rem); margin: 0 0 1.4rem; }
.news-form { display: flex; gap: .6rem; }
.news-input { flex: 1; padding: .95rem 1.3rem; border: 2px solid var(--line); border-radius: 100px; font-family: var(--sans);
  font-size: .85rem; font-weight: 500; color: var(--text); background: var(--paper-2); outline: none; transition: border-color .3s, box-shadow .3s; }
.news-input::placeholder { color: var(--text-3); }
.news-input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,114,26,.16); }
.news-btn.success { background: #22A565 !important; }
.news-sub { margin-top: 1rem; font-size: .72rem; color: var(--text-3); }

/* ════════ PARTNERS ════════ */
.partners { background: var(--paper); padding: clamp(3.5rem,7vw,5.5rem) clamp(1.4rem,5vw,4rem); }
.partners .num { display: block; max-width: 1100px; margin: 0 auto 1.6rem; }
.partners-row { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: clamp(2rem,5vw,4rem);
  flex-wrap: wrap; border-top: 1.5px solid var(--line); padding-top: 1.8rem; }
.p-logo { font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: .04em; color: var(--text); opacity: .3; transition: opacity .3s, color .3s; }
.p-logo:hover { opacity: 1; color: var(--orange); }
.p-cta { margin-left: auto; font-family: var(--mono); font-weight: 700; font-size: .82rem; color: var(--orange); text-decoration: none; }
.p-cta:hover { text-decoration: underline; }

/* ════════ FOOTER ════════ */
footer { background: var(--ink-2); color: #fff; padding: clamp(3.5rem,7vw,5.5rem) clamp(1.4rem,5vw,4rem) 2rem; overflow: hidden; }
.ft-pitch { display: block; max-width: 1240px; margin: 0 auto; font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem,5vw,3.4rem);
  line-height: 1.05; color: #fff; text-decoration: none; letter-spacing: -.01em; }
.ft-pitch span { color: var(--orange); }
.ft-pitch:hover span { text-decoration: underline; }
.ft-word { font-family: var(--display); font-weight: 700; font-size: clamp(3.6rem,21vw,18rem); line-height: .8; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.16); text-align: center; white-space: nowrap; margin: clamp(2rem,5vw,3.5rem) 0; user-select: none; }
.ft-bottom { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.ft-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ft-links a { font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.6); text-decoration: none; transition: color .3s; }
.ft-links a:hover { color: var(--orange); }
.ft-copy { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ════════ DARK-MODE REFINEMENTS ════════ */
html.dark .btn-primary { background: #fff; color: #0D121B; }
html.dark .btn-primary:hover { background: var(--orange); color: #fff; }
html.dark .btn-primary .play-tri { border-left-color: var(--orange); }
html.dark .btn-primary:hover .play-tri { border-left-color: #fff; }
html.dark .listen-pill { background: #fff; color: #0D121B; }
html.dark .listen-pill .play-tri { border-left-color: var(--orange); }
html.dark .news-card { background: #2E4056; }
html.dark .news-stamp { background: #141C28; }
html.dark .news-input { background: #243140; border-color: rgba(255,255,255,.14); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .topnav { display: none; }
  .burger { display: block; }
  .listen-pill { display: none; }
  .bento { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; grid-template-areas: none; }
  .g { grid-area: auto !important; }
  .g:nth-child(1), .g:nth-child(7) { grid-column: span 2; grid-row: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-figure { max-width: 320px; }
  .studio-grid { grid-template-columns: 1fr; }
  .pinboard { height: auto !important; }
  .chapter { flex-wrap: wrap; }
  .hint, .shuffle { display: none; }
}
@media (max-width: 620px) {
  .hero { justify-content: flex-start; padding-top: 6.5rem; }
  .hero-figure { position: relative; width: 168px; margin: 0 2.5rem 1.5rem auto; transform: rotate(3deg); }
  .bw1 { font-size: 19vw; }
  .bw2 { font-size: 19vw; margin-left: 1.6rem; }
  .num { padding-top: 0; }
  .onair { display: none; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 1.8rem 1rem; }
  .clippings { grid-template-columns: 1fr; max-width: 360px; }
  .news-card { grid-template-columns: 1fr; }
  .news-stamp { padding: 1.2rem; font-size: 1.1rem; }
  .news-form { flex-direction: column; }
  .news-input, .news-btn { width: 100%; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .g:nth-child(n) { grid-column: auto; grid-row: auto; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* ════════ LEGAL PAGES (Impressum / Datenschutz) ════════ */
.legal-wrap { background: var(--paper); padding: clamp(7rem,13vh,9.5rem) clamp(1.4rem,5vw,4.5rem) 6rem; }
.legal { max-width: 720px; margin: 0 auto; }
.legal .num { display: block; color: var(--orange); margin-bottom: .9rem; }
.legal h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem,6vw,4rem); line-height: .95; letter-spacing: -.02em; color: var(--text); margin-bottom: 1.4rem; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--text); margin: 2.3rem 0 .7rem; }
.legal p, .legal li { font-size: .95rem; line-height: 1.75; color: var(--text-2); margin-bottom: .9rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal a { color: var(--orange); }
.legal strong { color: var(--text); font-weight: 700; }
.legal .ph { background: rgba(232,114,26,.13); border: 1px dashed var(--orange); border-radius: 6px; padding: .05rem .45rem; color: var(--text); font-weight: 700; font-style: normal; }
.legal-note { margin: 2.6rem 0 0; padding: 1.2rem 1.4rem; background: var(--paper-2); border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; font-size: .82rem; line-height: 1.65; color: var(--text-2); }
.legal-intro { font-size: .95rem; color: var(--text-3); margin-bottom: 2rem; }

/* ════════ CAPTURE MODE ════════ */
html.cap { scroll-behavior: auto; }
html.cap .loader, html.cap .grain, html.cap .cursor, html.cap .progress { display: none !important; }
html.cap .hero { min-height: 0; height: 840px; }
html.cap .rv { opacity: 1 !important; transform: none !important; }
