:root {
  --bg: #07060d;
  --bg-2: #0e0b18;
  --card: #12101c;
  --line: rgba(168, 85, 247, 0.28);
  --text: #f4f1ff;
  --muted: #b7a9d4;
  --purple: #a855f7;
  --purple-2: #7c3aed;
  --glow: 0 0 40px rgba(168, 85, 247, 0.28);
  --radius: 18px;
  font-family: Outfit, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
body { min-height: 100vh; padding-bottom: 92px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 28px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #05040a;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.site-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 6, 13, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--purple);
  box-shadow: var(--glow);
  color: #fff;
}
.logo-omega {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  letter-spacing: .22em;
  background: linear-gradient(180deg, #fff 10%, #c4b5fd 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav { margin-left: auto; display: flex; gap: 18px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.nav a { color: var(--muted); }
.nav a.is-active, .nav a:hover { color: #fff; }
.header-listen {
  background: var(--purple);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--glow);
}
.nav-toggle { display: none; background: none; border: 0; color: #fff; font-size: 22px; }

.hero, .section, .page-hero, .radio-stage, .crew-list, .split, .about-wrap, .post-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 24px;
}
.kicker {
  color: var(--purple);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3 { font-family: "Cormorant Garamond", serif; margin: 8px 0 12px; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: .95; }
.lead { color: var(--muted); font-size: 18px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; margin: 24px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 10px; border: 1px solid transparent; font-weight: 600;
}
.btn-primary { background: linear-gradient(180deg, #c084fc, #7c3aed); color: #fff; box-shadow: var(--glow); }
.btn-ghost { border-color: var(--line); background: transparent; }
.trust { display: flex; gap: 18px; padding: 0; list-style: none; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.trust li { padding-left: 18px; position: relative; }
.trust li:before { content: "◆"; position: absolute; left: 0; color: var(--purple); font-size: 10px; top: 2px; }
.hero-visual img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(88, 28, 135, .45);
}

.section { padding: 48px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 22px; }
.text-link { color: var(--purple); font-weight: 600; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card-grid.six { grid-template-columns: repeat(6, 1fr); }
.cat-card, .product-card, .crew-card, .gb-card, .panel, .install-card {
  background: linear-gradient(180deg, #161325, #0f0d18);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.cat-card { text-align: center; min-height: 150px; }
.omega-mini { color: var(--purple); font-size: 22px; }
.product-card img, .gallery-item img, .post-hero-img, .about-wrap img, .radio-stage img {
  border-radius: 14px; width: 100%; object-fit: cover;
}
.product-card time, .muted, .role { color: var(--muted); font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid.large { grid-template-columns: repeat(3, 1fr); padding-bottom: 48px; }
.gallery-item { overflow: hidden; border-radius: 16px; border: 1px solid var(--line); }
.gallery-item img { height: 220px; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 10px 12px; color: var(--muted); }

.cta-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 60px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: radial-gradient(circle at 80% 20%, rgba(168,85,247,.45), transparent 40%),
              linear-gradient(90deg, #1a1030, #0c0814);
  border: 1px solid var(--line);
}
.cta-icon { font-size: 84px; color: var(--purple); text-shadow: var(--glow); }

.page-hero { padding: 42px 0 12px; }
.radio-stage { display: grid; grid-template-columns: 320px 1fr; gap: 28px; padding: 12px 0 48px; }
.crew-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 48px; }
.crew-badge { color: var(--purple); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.split { display: grid; grid-template-columns: 380px 1fr; gap: 24px; padding-bottom: 48px; }
.stack-form { display: grid; gap: 12px; }
.stack-form label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.stack-form input, .stack-form textarea, .stack-form select {
  background: #090812; border: 1px solid var(--line); color: #fff; border-radius: 10px; padding: 11px 12px;
}
.flash { padding: 10px 12px; border-radius: 10px; }
.flash.ok { background: rgba(34,197,94,.15); }
.flash.err { background: rgba(239,68,68,.18); }
.gb-card { margin-bottom: 12px; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 48px; }
.prose { color: #ddd6fe; line-height: 1.7; }
.prose p { margin: 0 0 12px; }
.post-page { padding-bottom: 48px; }
.post-hero-img { max-height: 420px; object-fit: cover; margin-bottom: 18px; }

.player-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: rgba(8, 6, 16, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.player-bar-inner {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0;
}
.player-art { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.player-meta { min-width: 0; flex: 1; }
.player-meta strong, .player-meta span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-live { margin: 0; font-size: 11px; color: var(--purple); display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.play-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: linear-gradient(180deg, #c084fc, #7c3aed); color: #fff; font-size: 16px;
}
#vol { width: 110px; accent-color: var(--purple); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 24px;
  background: #06050c;
}
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 24px;
  color: var(--muted);
}
.footer-grid a, .footer-grid h4 { display: block; margin-bottom: 8px; }
.footer-grid h4 { color: #fff; }
.copy { text-align: center; color: #7c728f; font-size: 13px; }

.install-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.install-card { width: min(560px, 100%); }

@media (max-width: 980px) {
  .hero, .radio-stage, .about-wrap, .split, .card-grid, .card-grid.six, .crew-list, .gallery-grid, .gallery-grid.large, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; right: 16px; background: #120f1c; padding: 16px; border-radius: 12px; border: 1px solid var(--line); }
  .nav-toggle { display: block; margin-left: auto; }
  .header-listen { display: none; }
  .hide-sm { display: none; }
}
@media (max-width: 700px) {
  .hero, .card-grid, .card-grid.six, .crew-list, .gallery-grid, .gallery-grid.large, .footer-grid, .split, .about-wrap, .radio-stage {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 42px; }
}
