:root{
  --bg:#0b0b0b;
  --bg-soft:#121212;
  --paper:#f1efe8;
  --text:#f6f3ec;
  --muted:#aaa69f;
  --line:rgba(255,255,255,.18);
  --accent:#ff4b35;
  --header-h:86px;
  --max:1600px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
button,input{font:inherit}
button{color:inherit}
a{color:inherit;text-decoration:none}
.page-shell{overflow:hidden}

.site-header{
  height:var(--header-h);
  position:absolute;
  z-index:20;
  top:0; left:0; right:0;
  max-width:var(--max);
  margin:auto;
  padding:0 46px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:max-content;
  font-family:"Space Grotesk",sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.06em;
}
.brand-mark{
  width:9px;height:9px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(255,75,53,.12);
}
.desktop-nav{
  display:flex;
  gap:34px;
  font-size:12px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.desktop-nav a{opacity:.72;transition:.25s ease}
.desktop-nav a:hover{opacity:1}
.header-actions{
  justify-self:end;
  display:flex;align-items:center;gap:18px;
}
.live-pill{
  background:rgba(8,8,8,.28);
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  padding:10px 14px;
  display:flex;align-items:center;gap:8px;
  font-size:10px;font-weight:700;letter-spacing:.09em;
  cursor:pointer;
  backdrop-filter:blur(14px);
}
.live-dot,.status-dot{
  width:7px;height:7px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 0 0 rgba(255,75,53,.6);
  animation:pulse 2s infinite;
}
.menu-button{
  display:none;
  width:38px;height:38px;padding:0;
  border:0;background:transparent;cursor:pointer;
}
.menu-button span{
  display:block;width:22px;height:1px;background:#fff;margin:6px auto;
}

.hero{
  position:relative;
  min-height:900px;
  height:100svh;
  max-height:1120px;
  display:flex;
  align-items:stretch;
  background:#111;
}
.hero-media{
  position:absolute;inset:0;
  overflow:hidden;
}
.hero-photo{
  position:absolute;inset:-4%;
  background:
    linear-gradient(90deg,rgba(5,5,5,.82) 0%,rgba(5,5,5,.48) 45%,rgba(5,5,5,.16) 75%),
    linear-gradient(0deg,rgba(5,5,5,.54) 0%,rgba(5,5,5,0) 55%),
    url("assets/hero-demo.svg") center/cover no-repeat;
  transform:scale(1.03);
  animation:heroDrift 18s ease-in-out infinite alternate;
}
.hero-grid{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to right,rgba(0,0,0,.5),transparent 70%);
}
.hero-noise{
  position:absolute;inset:0;opacity:.11;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
}
.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--max);
  margin:auto;
  padding:calc(var(--header-h) + 54px) 46px 168px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-kicker{
  display:flex;align-items:center;gap:18px;
  font-size:10px;font-weight:700;letter-spacing:.13em;
  text-transform:uppercase;color:rgba(255,255,255,.68);
}
.hero-kicker-line{width:66px;height:1px;background:rgba(255,255,255,.38)}
.hero-copy{
  width:100%;
  margin-top:auto;
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(310px,.7fr);
  align-items:end;
  gap:32px;
}
.hero h1{
  margin:0;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(92px,10.8vw,178px);
  line-height:.74;
  letter-spacing:-.075em;
  font-weight:600;
}
.hero h1 span{
  color:transparent;
  -webkit-text-stroke:1.5px rgba(255,255,255,.9);
}
.hero-bottom{
  justify-self:end;
  width:min(100%,420px);
  padding-bottom:8px;
}
.hero-bottom>p{
  font-size:clamp(18px,1.35vw,24px);
  line-height:1.35;
  margin:0 0 34px;
  letter-spacing:-.025em;
}
.hero-listen{
  width:100%;
  background:var(--paper);
  color:#111;
  border:0;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:16px;
  cursor:pointer;
  transition:transform .25s ease,background .25s ease;
}
.hero-listen:hover{transform:translateY(-2px);background:#fff}
.hero-play-icon{
  width:48px;height:48px;border-radius:50%;
  background:#111;color:#fff;
  display:grid;place-items:center;
}
.hero-play-icon svg{width:20px;fill:currentColor}
.hero-listen-copy{display:flex;flex-direction:column;align-items:flex-start;gap:3px}
.hero-listen-copy small{font-size:9px;font-weight:800;letter-spacing:.15em;color:#777}
.hero-listen-copy strong{font-size:12px;letter-spacing:.04em}
.scroll-hint{
  position:absolute;right:46px;bottom:127px;
  display:flex;align-items:center;gap:12px;
  transform:rotate(90deg) translateX(100%);
  transform-origin:right bottom;
  font-size:9px;font-weight:800;letter-spacing:.16em;
}
.scroll-line{width:54px;height:1px;background:rgba(255,255,255,.5)}

.hero-player-wrap{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:5;
  border-top:1px solid rgba(255,255,255,.18);
  background:rgba(8,8,8,.7);
  backdrop-filter:blur(20px);
}
.radio-player{
  max-width:var(--max);
  min-height:108px;
  margin:auto;
  padding:0 46px;
  display:grid;
  grid-template-columns:110px 58px 64px minmax(220px,1fr) 120px minmax(160px,.4fr) 160px;
  gap:20px;
  align-items:center;
}
.player-status{
  display:flex;align-items:center;gap:9px;
  font-size:9px;font-weight:800;letter-spacing:.12em;
}
.main-play,.mini-play{
  width:48px;height:48px;border-radius:50%;
  border:1px solid rgba(255,255,255,.45);
  background:transparent;display:grid;place-items:center;cursor:pointer;
  transition:.25s ease;
}
.main-play:hover{background:#fff;color:#111}
.main-play svg,.mini-play svg{width:18px;fill:currentColor}
.icon-pause{display:none}
body.is-playing .icon-play{display:none}
body.is-playing .icon-pause{display:block}
.player-cover{
  width:58px;height:58px;background:#222;overflow:hidden;
}
.player-cover img{width:100%;height:100%;object-fit:cover;display:block}
.now-playing{min-width:0;display:flex;flex-direction:column;gap:4px}
.now-playing .eyebrow{font-size:8px;font-weight:800;letter-spacing:.14em;color:var(--accent)}
.now-playing strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:17px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.now-playing>span:last-child{
  font-size:11px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.signal{
  height:32px;display:flex;align-items:center;justify-content:center;gap:4px;
}
.signal i{
  display:block;width:2px;height:8px;background:rgba(255,255,255,.42);
  transform-origin:center;
}
body.is-playing .signal i{animation:signal 1s ease-in-out infinite}
body.is-playing .signal i:nth-child(2){animation-delay:.1s}
body.is-playing .signal i:nth-child(3){animation-delay:.25s}
body.is-playing .signal i:nth-child(4){animation-delay:.08s}
body.is-playing .signal i:nth-child(5){animation-delay:.2s}
body.is-playing .signal i:nth-child(6){animation-delay:.33s}
.player-meta{
  min-width:0;display:flex;flex-direction:column;gap:4px;
  font-size:9px;letter-spacing:.08em;color:#aaa;
}
.player-meta span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.player-meta span:first-child{color:#fff;font-weight:700}
.volume-control{display:flex;align-items:center;gap:10px}
.volume-button{border:0;background:transparent;padding:0;cursor:pointer}
.volume-button svg{width:19px;fill:#fff}
#volume{width:110px;accent-color:#fff}

.manifesto-section{
  min-height:720px;
  background:var(--paper);
  color:#121212;
  padding:120px max(46px,calc((100vw - var(--max))/2 + 46px));
  display:grid;
  grid-template-columns:120px 1fr;
  gap:48px;
}
.section-index{
  font-family:"Space Grotesk";font-size:14px;
  padding-top:17px;border-top:1px solid #222;
}
.manifesto-copy{max-width:1050px}
.section-label{
  margin:0 0 42px;font-size:10px;font-weight:800;letter-spacing:.15em;
}
.manifesto-copy h2,.placeholder-section h2{
  font-family:"Space Grotesk";
  margin:0;
  font-size:clamp(52px,7.2vw,118px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:600;
}
.manifesto-text{
  max-width:590px;margin:52px 0 0 auto;
  font-size:20px;line-height:1.55;color:#4a4844;
}

.placeholder-section{
  min-height:74vh;padding:100px max(46px,calc((100vw - var(--max))/2 + 46px));
  display:flex;flex-direction:column;justify-content:center;gap:38px;
}
.placeholder-section>span{font-size:10px;font-weight:800;letter-spacing:.15em}
.placeholder-section.dark{background:#121212;color:#fff}
.placeholder-section.light{background:#d8d1c6;color:#161616}

.mini-player{
  position:fixed;
  left:18px;right:18px;bottom:18px;
  z-index:50;
  min-height:70px;
  background:rgba(13,13,13,.93);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(24px);
  box-shadow:0 16px 50px rgba(0,0,0,.3);
  display:grid;
  grid-template-columns:48px minmax(0,1fr) 100px auto;
  gap:16px;
  align-items:center;
  padding:10px 12px;
  opacity:0;transform:translateY(120%);
  pointer-events:none;
  transition:.35s ease;
}
.mini-player.visible{
  opacity:1;transform:translateY(0);pointer-events:auto;
}
.mini-play{width:44px;height:44px}
.mini-info{display:flex;flex-direction:column;gap:2px;min-width:0}
.mini-info strong{font-family:"Space Grotesk";font-size:12px;letter-spacing:.04em}
.mini-info span{font-size:10px;color:#aaa;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mini-info b{color:var(--accent);font-size:8px;letter-spacing:.12em}
.mini-live{
  border:0;background:transparent;cursor:pointer;
  display:flex;align-items:center;gap:8px;
  font-size:9px;font-weight:800;letter-spacing:.1em;padding:12px;
}

.reveal{opacity:0;transform:translateY(20px);animation:reveal .9s cubic-bezier(.2,.75,.2,1) forwards .15s}
.reveal-delay-1{animation-delay:.28s}
.reveal-delay-2{animation-delay:.42s}
.reveal-delay-3{animation-delay:.58s}

@keyframes reveal{to{opacity:1;transform:none}}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(255,75,53,.55)}70%{box-shadow:0 0 0 8px rgba(255,75,53,0)}100%{box-shadow:0 0 0 0 rgba(255,75,53,0)}}
@keyframes signal{0%,100%{height:7px;opacity:.38}50%{height:28px;opacity:1}}
@keyframes heroDrift{from{transform:scale(1.03) translate3d(0,0,0)}to{transform:scale(1.08) translate3d(-.8%,.4%,0)}}

@media (max-width:1100px){
  .desktop-nav{display:none}
  .menu-button{display:block}
  .site-header{grid-template-columns:1fr auto;padding:0 24px}
  .hero-content{padding-left:24px;padding-right:24px}
  .hero-copy{grid-template-columns:1fr;gap:45px}
  .hero-bottom{justify-self:start;width:min(100%,450px)}
  .hero h1{font-size:clamp(86px,16vw,150px)}
  .scroll-hint{display:none}
  .radio-player{
    padding:18px 24px;
    grid-template-columns:88px 50px 58px minmax(180px,1fr) 90px;
  }
  .player-meta,.volume-control{display:none}
}
@media (max-width:700px){
  :root{--header-h:72px}
  .site-header{padding:0 18px}
  .brand-name{font-size:12px}
  .live-pill{display:none}
  .hero{height:auto;min-height:860px}
  .hero-content{min-height:750px;padding:112px 18px 155px}
  .hero-kicker{font-size:8px;gap:10px}
  .hero-kicker>span:last-child,.hero-kicker-line{display:none}
  .hero h1{font-size:clamp(70px,24vw,110px);line-height:.78}
  .hero-copy{gap:42px}
  .hero-bottom>p{font-size:17px}
  .hero-listen{max-width:390px}
  .hero-player-wrap{position:absolute}
  .radio-player{
    min-height:112px;padding:14px 18px;
    grid-template-columns:44px 48px minmax(0,1fr);
    gap:12px;
  }
  .player-status{display:none}
  .player-cover{width:48px;height:48px}
  .main-play{width:44px;height:44px}
  .signal,.player-meta,.volume-control{display:none}
  .now-playing strong{font-size:14px}
  .now-playing>span:last-child{font-size:10px}
  .manifesto-section{
    min-height:620px;padding:84px 18px;
    grid-template-columns:1fr;gap:28px;
  }
  .section-index{width:70px}
  .manifesto-copy h2,.placeholder-section h2{font-size:clamp(48px,16vw,80px)}
  .manifesto-text{margin:38px 0 0;font-size:17px}
  .placeholder-section{padding:80px 18px}
  .mini-player{
    left:8px;right:8px;bottom:8px;
    grid-template-columns:44px minmax(0,1fr) auto;
    gap:9px;
  }
  .mini-signal{display:none}
  .mini-live{font-size:0}
  .mini-live .live-dot{display:block}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important}
}
