:root{
  --bg1:#061329;
  --bg2:#0a2a55;
  --glass: rgba(255,255,255,.06);
  --stroke: rgba(120,180,255,.18);
  --text: rgba(245,247,255,.92);
  --muted: rgba(245,247,255,.70);
  --accent: #4aa3ff;
  --accent2:#7c5cff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --r: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(1000px 700px at 90% 10%, rgba(74,163,255,.18), transparent 55%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}

a{color:inherit; text-decoration:none}
.sr{position:absolute; left:-9999px}
.skip{position:absolute; left:-9999px}
.skip:focus{left:12px; top:12px; background:#000; padding:8px 10px; border-radius:10px; z-index:999}

.container{
  width:min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 90px;
}

.topbar{
  position:fixed; inset:0 0 auto 0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(10,18,35,.72);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  height:74px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}

.brand{display:flex; align-items:baseline; gap:10px}
.brand__logo{font-size:22px}
.brand__name{font-weight:800; letter-spacing:.5px}
.brand__tag{font-size:12px; color:var(--muted)}

.menu{display:flex; align-items:center; gap:10px}
.menu__link, .menu__btn{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  transition:.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
}
.menu__link:hover,.menu__btn:hover{background:var(--glass); color:var(--text)}
.menu__link.is-active{background:rgba(74,163,255,.18); color:var(--text); border:1px solid var(--stroke)}

.menu__cta{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(74,163,255,.45);
  background: rgba(74,163,255,.12);
}

.menu__dropdown{position:relative}
.dropdown{
  position:absolute; top:44px; left:0;
  min-width: 200px;
  padding:8px;
  border-radius:14px;
  background: rgba(10,18,35,.92);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  display:none;
}
.dropdown.is-open{display:block}
.dropdown__link{display:block; padding:10px 10px; border-radius:10px; color:var(--muted)}
.dropdown__link:hover{background:var(--glass); color:var(--text)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:var(--glass);
}
.burger__line{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  opacity:.9;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
  margin-bottom:16px;
}
.hero__card{
  border-radius: var(--r);
  background: var(--glass);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding:22px;
}
.hero__badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(124,92,255,.12);
  color:var(--muted);
  font-size:13px;
  margin-bottom:10px;
}
.hero__title{margin:0 0 10px; font-size:34px; letter-spacing:.2px}
.hero__text{margin:0 0 16px; color:var(--muted); line-height:1.55}

.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:11px 14px;
  border:1px solid var(--stroke);
  background: var(--glass);
  color:var(--text);
  cursor:pointer;
}
.btn--primary{
  border-color: rgba(74,163,255,.55);
  background: linear-gradient(135deg, rgba(74,163,255,.20), rgba(124,92,255,.16));
}
.btn--ghost{background:transparent}
.btn--small{padding:9px 12px; font-size:14px}

.hero__side{
  display:grid;
  gap:12px;
}
.stat{
  border-radius: var(--r);
  background: rgba(0,0,0,.14);
  border:1px solid var(--stroke);
  padding:16px;
}
.stat__num{font-size:22px; font-weight:800}
.stat__label{color:var(--muted); margin-top:6px}

/* PANELS + CARDS */
.panel{
  border-radius: var(--r);
  background: rgba(0,0,0,.14);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding:18px;
  margin: 16px 0;
}
.panel__head{margin-bottom:12px}
.panel__title{margin:0 0 6px}
.panel__hint{margin:0; color:var(--muted)}

.player{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.player audio{width:100%}
.player__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.now__label{color:var(--muted); font-size:13px}
.now__track{font-weight:700}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.card{
  border-radius: var(--r);
  background: var(--glass);
  border:1px solid var(--stroke);
  padding:16px;
}
.card__title{margin:0 0 8px}
.card__text{margin:0; color:var(--muted); line-height:1.55}

/* SCHEDULE + FORM */
.schedule{display:grid; gap:8px}
.schedule__row{
  display:grid;
  grid-template-columns: 110px 1fr 140px;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.schedule__time{color:var(--muted)}
.schedule__tag{
  justify-self:end;
  color:var(--muted);
  border:1px solid var(--stroke);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.schedule__name{line-height:1.35}

.form{display:grid; gap:12px; max-width:680px}
.field span{display:block; margin-bottom:6px; color:var(--muted)}
input, textarea, select{
  width:100%;
  border-radius:14px;
  border:1px solid var(--stroke);
  padding:12px 12px;
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
select{appearance:auto}
input:focus, textarea:focus, select:focus{border-color: rgba(74,163,255,.65)}

/* FOOTER */
.footer{
  border-top: 1px solid var(--stroke);
  background: rgba(10,18,35,.65);
}
.footer__inner{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer__meta{margin-top:6px; color:var(--muted); font-size:13px}
.footer__link{color:var(--muted); margin-left:12px}
.footer__link:hover{color:var(--text)}

/* TICKER */
.ticker{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  overflow:hidden;
  padding:10px 0;
}
.ticker__track{
  white-space: nowrap;
  will-change: transform;
  display:inline-block;
  padding-left: 100%;
  animation: tick 28s linear infinite;
}
@keyframes tick{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

/* RESPONSIVE */
@media (max-width: 860px){
  .hero{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .burger{display:inline-block}
  .menu{
    position: absolute;
    right:16px;
    top:74px;
    width: min(360px, calc(100% - 32px));
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    border-radius: 16px;
    background: rgba(10,18,35,.92);
    border:1px solid var(--stroke);
    box-shadow: var(--shadow);
    display:none;
  }
  .menu.is-open{display:flex}
  .dropdown{position:static; box-shadow:none; margin-top:8px}
  .schedule__row{grid-template-columns: 1fr}
  .schedule__tag{justify-self:start}
}
