/* ============================================================
   THE AI OPERATOR — site styles
   Brand: near-black + signal orange, condensed display type
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --line: #262626;
  --text: #ededed;
  --muted: #9c9c9c;
  --orange: #ff5c1c;
  --orange-soft: #ff7a42;
  --orange-dim: rgba(255, 92, 28, 0.12);
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --player-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* visually hidden, available to screen readers and crawlers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.has-player { padding-bottom: var(--player-h); }

::selection { background: var(--orange); color: #000; }

img { user-select: none; }

/* ---------- custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  body a, body button { cursor: none; }
}

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  transition: width .2s, height .2s, background .2s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 92, 28, 0.45);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

body.cursor-hover .cursor-dot { width: 4px; height: 4px; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--orange);
  background: rgba(255, 92, 28, 0.08);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  30% { transform: translate(3%,-15%); }
  50% { transform: translate(12%,9%); }
  70% { transform: translate(9%,4%); }
  90% { transform: translate(-1%,7%); }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 40px;
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .06em;
}

.nav-brand-mark {
  color: var(--orange);
  font-size: 13px;
  animation: blink-mark 2.4s ease-in-out infinite;
}

@keyframes blink-mark {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  background: var(--orange);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 2px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.nav-cta:hover { background: var(--orange-soft); }

@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

#waveCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.kicker-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,92,28,.5); }
  50% { box-shadow: 0 0 0 8px rgba(255,92,28,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title .line { display: block; }

.hero-title .accent { color: var(--orange); }

.scramble { display: inline-block; }

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  text-decoration: none;
  transition: background .25s, color .25s, box-shadow .25s;
  will-change: transform;
}

.btn-primary {
  background: var(--orange);
  color: #000;
}

.btn-primary:hover {
  background: var(--orange-soft);
  box-shadow: 0 0 40px rgba(255, 92, 28, 0.35);
}

.btn-primary .btn-icon { font-size: 11px; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--text);
  line-height: 1.1;
}

.stat-unit { font-size: 18px; color: var(--orange); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider { width: 1px; height: 40px; background: var(--line); }

/* hero cover art */
.hero-art { display: flex; justify-content: center; }

.cover-tilt {
  position: relative;
  width: min(380px, 80vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.cover-frame {
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  transform: translate(16px, 16px);
  z-index: 0;
  transition: transform .4s ease;
}

.cover-tilt:hover .cover-frame { transform: translate(8px, 8px); }

.cover-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}

.cover-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.14), transparent 55%);
  opacity: 0;
  transition: opacity .3s;
}

.cover-tilt:hover .cover-glare { opacity: 1; }

.cover-chip {
  position: absolute;
  bottom: -18px;
  left: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text);
}

/* EQ bars */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }

.eq i {
  width: 3px;
  background: var(--orange);
  height: 30%;
  animation: eq-bounce 1s ease-in-out infinite;
}

.eq i:nth-child(2) { animation-delay: .15s; }
.eq i:nth-child(3) { animation-delay: .3s; }
.eq i:nth-child(4) { animation-delay: .45s; }
.eq i:nth-child(5) { animation-delay: .6s; }

.eq.paused i { animation-play-state: paused; height: 20%; }

@keyframes eq-bounce {
  0%, 100% { height: 25%; }
  50% { height: 100%; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--orange);
  animation: scroll-drip 1.8s ease-in-out infinite;
}

@keyframes scroll-drip {
  0% { top: -50%; }
  100% { top: 110%; }
}

@media (max-width: 980px) {
  .hero { padding: 110px 24px 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { order: -1; }
  .cover-tilt { width: min(260px, 70vw); }
}

/* ---------- ticker ---------- */
.ticker-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 3;
}

.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-wrap:hover .ticker { animation-play-state: paused; }

.ticker-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 48px;
}

.ticker-item b { color: var(--orange); font-weight: 500; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.section {
  padding: 110px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-dark {
  max-width: none;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark > * { max-width: 1280px; margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 48px; }

.section-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: .01em;
  line-height: 1;
}

@media (max-width: 760px) {
  .section { padding: 70px 20px; }
}

/* ---------- latest episode card ---------- */
.latest-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: border-color .3s;
}

.latest-card:hover { border-color: rgba(255, 92, 28, 0.5); }

.latest-art {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.latest-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}

.latest-card:hover .latest-art img { transform: scale(1.05); }

.latest-art-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 6px 12px;
  z-index: 2;
}

.latest-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.latest-meta {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.latest-meta b { color: var(--orange); font-weight: 500; }

.latest-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: .01em;
}

.latest-title a {
  color: inherit;          /* never the browser's default visited-purple */
  text-decoration: none;
  transition: color .2s;
}

.latest-title a:hover { color: var(--orange); }

.latest-subtitle { color: var(--text); font-weight: 600; font-size: 17px; }

.latest-desc { color: var(--muted); font-size: 15px; }

.latest-actions { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .latest-card { grid-template-columns: 1fr; }
  .latest-art { min-height: 240px; max-height: 320px; }
  .latest-body { padding: 28px 24px; }
}

/* ---------- filters ---------- */
.filters {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all .25s;
  will-change: transform;
}

.filter-btn:hover { color: var(--text); border-color: var(--muted); }

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #000;
  font-weight: 700;
}

.filter-count { opacity: .6; }

/* ---------- episode list ---------- */
.episode-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.ep-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto 36px;
  gap: 26px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s, padding-left .25s, opacity .4s, scale .4s;
}

.ep-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.ep-row:hover {
  background: rgba(255, 92, 28, 0.05);
  padding-left: 26px;
}

.ep-row:hover::before { transform: scaleY(1); }

.ep-row.hiding { opacity: 0; scale: .98; pointer-events: none; }

.ep-row-art {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 1px solid var(--line);
  border-radius: 3px;
  filter: grayscale(.7);
  transition: filter .3s, border-color .3s;
}

.ep-row:hover .ep-row-art {
  filter: none;
  border-color: rgba(255, 92, 28, 0.5);
}

.ep-row-main { min-width: 0; }

.ep-row-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.ep-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.ep-row-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
}

.ep-row-tag.tag-weekly { color: var(--orange); border-color: rgba(255,92,28,.4); }
.ep-row-tag.tag-claude { color: #6ec8ff; border-color: rgba(110,200,255,.35); }
.ep-row-tag.tag-special { color: #ffd166; border-color: rgba(255,209,102,.35); }

.ep-row-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: .02em;
  margin-bottom: 5px;
}

.ep-row-title a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}

.ep-row:hover .ep-row-title a { color: var(--orange); }

.ep-row.playing .ep-row-title a { color: var(--orange); }

.ep-row-sub {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 640px;
}

.ep-row-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.ep-row.playing .ep-row-dur { color: var(--orange); }

.ep-row-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform .25s, color .25s;
  text-align: center;
}

.ep-row:hover .ep-row-arrow {
  transform: translateX(8px);
  color: var(--orange);
}

@media (max-width: 760px) {
  .ep-row {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px 8px;
  }
  .ep-row-art { width: 56px; height: 56px; }
  .ep-row-side, .ep-row-arrow { display: none; }
  .ep-row-sub { white-space: normal; max-height: 3em; overflow: hidden; }
  .ep-row-title { font-size: 20px; }
  .ep-row:hover { padding-left: 8px; }
}

/* ---------- format cards ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px 36px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: border-color .3s;
}

.format-card:hover { border-color: rgba(255, 92, 28, 0.5); }

.format-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  display: block;
  margin-bottom: 20px;
  opacity: .85;
}

.format-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .02em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.format-card p { color: var(--muted); font-size: 14.5px; }

.format-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 92, 28, 0.09), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.format-card:hover .format-card-glow { opacity: 1; }

@media (max-width: 980px) {
  .format-grid { grid-template-columns: 1fr; }
}

/* ---------- free guide CTA ---------- */
.guide {
  background: var(--orange);
  color: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 100px 40px;
}

.guide-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.guide-cover {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.guide-cover img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.45);
  border: 3px solid #0a0a0a;
}

.guide-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  background: #0a0a0a;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .08em;
  padding: 12px 18px;
  transform: rotate(6deg);
  animation: badge-bob 2.6s ease-in-out infinite;
}

@keyframes badge-bob {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-6px); }
}

.guide-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 700;
  margin-bottom: 14px;
}

.guide-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: .98;
  margin-bottom: 18px;
}

.guide-sub {
  font-size: 17px;
  font-weight: 600;
  max-width: 560px;
  margin-bottom: 22px;
}

.guide-points {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-points li {
  font-size: 15px;
  padding-left: 26px;
  position: relative;
}

.guide-points li::before {
  content: '▸';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.guide-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-dark {
  background: #0a0a0a;
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: var(--orange);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.guide-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 500;
}

.nav-link-guide { color: var(--orange); }

@media (max-width: 980px) {
  .guide { padding: 70px 24px; }
  .guide-inner { grid-template-columns: 1fr; gap: 44px; }
  .guide-cover { max-width: 260px; margin: 0 auto; }
}

/* ---------- host ---------- */
.host-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.host-photo {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.host-photo img {
  width: 100%;
  height: auto;   /* keep square — the height="1400" attribute is only a CLS hint */
  display: block;
  filter: grayscale(1) contrast(1.05);
  transition: filter .5s;
}

.host-photo:hover img { filter: grayscale(0); }

.host-photo-frame {
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  transform: translate(-14px, 14px);
  z-index: -1;
}

.host-copy p { color: var(--muted); margin-bottom: 18px; max-width: 560px; }

.host-copy p strong { color: var(--text); }

.host-copy .section-title { margin-bottom: 24px; }

.host-quote {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
  margin-top: 28px;
}

@media (max-width: 980px) {
  .host-grid { grid-template-columns: 1fr; gap: 48px; }
  .host-photo { max-width: 320px; }
}

/* ---------- subscribe ---------- */
.subscribe { text-align: center; }

.subscribe-inner { max-width: 820px !important; }

.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  line-height: .95;
  margin-bottom: 24px;
}

.subscribe-title .accent { color: var(--orange); }

.subscribe p { color: var(--muted); margin-bottom: 44px; }

.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 16px 28px;
  border-radius: 2px;
  transition: border-color .25s, background .25s, color .25s, box-shadow .25s;
  will-change: transform;
}

.platform-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 32px rgba(255, 92, 28, 0.18);
}

.platform-icon { color: var(--orange); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .06em;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.footer-top {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-top:hover { color: var(--orange); }

/* ---------- sticky player ---------- */
.player {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}

.player.visible { transform: translateY(0); }

.player-progress {
  position: relative;
  height: 4px;
  background: var(--line);
  cursor: pointer;
  transition: height .15s;
}

.player-progress:hover { height: 8px; }

.player-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  box-shadow: 0 0 12px rgba(255, 92, 28, 0.6);
}

.player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .15s;
  pointer-events: none;
}

.player-progress:hover .player-progress-thumb { transform: translate(-50%, -50%) scale(1); }

.player-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  max-width: 1400px;
  margin: 0 auto;
  height: calc(var(--player-h) - 4px);
}

.player-art {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.player-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.player-title {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-sub {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pbtn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  position: relative;
  will-change: transform;
}

.pbtn small {
  position: absolute;
  font-size: 7px;
  font-family: var(--font-mono);
  bottom: 6px;
}

.pbtn:hover { background: rgba(255, 92, 28, 0.15); color: var(--orange); }

.pbtn-play {
  width: 50px; height: 50px;
  background: var(--orange);
  color: #000;
  font-size: 16px;
}

.pbtn-play:hover { background: var(--orange-soft); color: #000; }

.player-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.player-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.pbtn-speed {
  font-family: var(--font-mono);
  font-size: 12px;
  width: auto;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.player-eq { height: 18px; }

.player-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px;
  transition: color .2s;
}

.player-close:hover { color: var(--text); }

@media (max-width: 860px) {
  .player-right .player-time { display: none; }
  .player-eq { display: none; }
  #btnPrev, #btnNext { display: none; }
  .player-inner { gap: 10px; padding: 10px 14px; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .grain { display: none; }
}
