.live-home {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.home-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.home-logo {
  color: var(--text);
  text-decoration: none;
  font-size: 2rem;
}

.nav-actions {
  display: flex;
  gap: 1.3rem;
}

.nav-actions a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-actions a:hover,
.text-link:hover {
  color: var(--lime);
}

.hero-home {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding: 5rem 0;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #596173;
}

.live-status.online .status-dot {
  background: var(--hot);
  box-shadow: 0 0 0 7px rgba(255, 77, 109, 0.12);
  animation: pulse-glow 2s infinite;
}

.hero-copy .eyebrow,
.highlights-section .eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin: 1rem 0 1.7rem;
  max-width: 9ch;
}

.hero-copy h1 span {
  color: var(--lime);
}

.hero-lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: var(--lime);
  color: #101208;
  text-decoration: none;
  font-weight: 800;
}

.button-link.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.secondary-link {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid var(--line);
}

.signal-card {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  padding: 1.4rem;
}

.signal-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(61, 240, 255, 0.12);
  filter: blur(80px);
  top: 20%;
  left: 25%;
}

.signal-top,
.signal-meta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signal-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
}

.orb-wrap {
  position: relative;
  height: 330px;
  display: grid;
  place-items: center;
}

.signal-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(61, 240, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: radial-gradient(circle at 40% 35%, rgba(61, 240, 255, 0.22), rgba(7, 8, 12, 0.7) 62%);
  box-shadow: inset 0 0 60px rgba(61, 240, 255, 0.08), 0 0 70px rgba(61, 240, 255, 0.08);
}

.signal-orb i {
  display: block;
  width: 6px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--lime));
  animation: equalize 0.9s ease-in-out infinite;
  opacity: 0.45;
}

.signal-orb i:nth-child(2) { animation-delay: -0.3s; height: 85px; }
.signal-orb i:nth-child(3) { animation-delay: -0.55s; height: 34px; }
.signal-orb.offline i { animation-play-state: paused; transform: scaleY(0.25); }

.signal-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.signal-meta div {
  display: grid;
  gap: 0.2rem;
}

.signal-meta strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.signal-meta span {
  color: var(--muted);
  font-size: 0.75rem;
}

.format-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.format-strip article {
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.format-strip article:last-child { border-right: 0; }
.format-strip article > span { color: var(--lime); font-size: 0.72rem; font-weight: 800; }
.format-strip h2 { font-family: var(--font-display); margin: 0.7rem 0 0.4rem; }
.format-strip p { color: var(--muted); margin: 0; line-height: 1.55; }

.highlights-section {
  padding: 5rem 0 0;
}

.highlights-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 0.5rem 0 2rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card {
  min-height: 260px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--text);
}

.highlight-card span {
  background: rgba(7, 8, 12, 0.88);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-weight: 700;
}

@media (max-width: 780px) {
  .hero-home {
    grid-template-columns: 1fr;
    padding: 3.5rem 0;
  }
  .hero-copy h1 { font-size: clamp(3.4rem, 16vw, 5.3rem); }
  .signal-card { min-height: 390px; }
  .orb-wrap { height: 240px; }
  .format-strip,
  .highlights { grid-template-columns: 1fr; }
  .format-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .format-strip article:last-child { border-bottom: 0; }
}

@media (max-width: 480px) {
  .nav-actions { gap: 0.7rem; font-size: 0.82rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-link { justify-content: center; }
  .text-link { text-align: center; padding: 0.65rem; }
}
