:root {
  --bg-top: #0b0d11;
  --bg-bottom: #1c1f26;
  --panel: #1e232c;
  --panel-hover: #262c37;
  --panel-dark: #14171d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f0f2f5;
  --muted: #a0a8b8;
  --accent: #ef334e;
  --accent-2: #f5712f;
  --magenta: #b7226d;
  --cyan: #56d2f2;
  --yellow: #ffd056;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(86, 210, 242, 0.12), transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(239, 51, 78, 0.1), transparent 25%),
    var(--bg-top);
  background-attachment: fixed;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--accent);
}

.page {
  width: min(1200px, 94%);
  margin: 0 auto;
  padding-bottom: 5rem;
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.utility-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  color: #fff;
}

.brand-blocks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.4rem;
  margin-right: 2px;
  background: #fff;
  color: #000;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.top-search {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  cursor: default;
}

.station-shell {
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel-dark);
  overflow: hidden;
}

.station-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 17, 22, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--magenta);
}

.station-title {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.station-title strong {
  display: block;
}

.station-title span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.station-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.station-nav .is-active,
.station-nav a[aria-current="page"] {
  color: var(--accent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
}

.hero-rail {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(239, 51, 78, 0.05) 0%, transparent 100%);
}

.hero-kicker,
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}

.hero-rail h1 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-rail p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-rail .lede {
  font-size: 1.05rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  color: #000;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-strip {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #666;
}

.feature-main {
  padding: 2rem 1.5rem;
  flex-grow: 1;
}

.feature-main h2 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.feature-main p {
  color: #555;
  font-size: 1rem;
}

.feature-main p + p {
  margin-top: 0.9rem;
}

.feature-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-panel {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-panel:last-child {
  border-right: 0;
}

.feature-panel span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  display: block;
}

.feature-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.schedule-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  gap: 1px;
}

.schedule-item {
  padding: 1.5rem;
  background: var(--panel-dark);
}

.schedule-item span {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-item strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.schedule-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.schedule-row:last-child {
  border-bottom: 0;
}

main {
  padding-top: 4rem;
}

.section {
  margin-top: 4rem;
}

.section-head {
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent);
}

.section-head h2 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--panel-hover);
}

.artwork {
  height: 220px;
  position: relative;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.artwork.tall {
  min-height: 300px;
  height: auto;
}

.art-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.art-label strong {
  display: block;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.art-label p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.6rem;
  max-width: 20rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.card-body p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-body ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.card-body li {
  color: var(--muted);
  padding: 0.5rem 0;
  border-top: 1px solid var(--line);
}

.card-body li:first-child {
  border-top: 0;
  padding-top: 0;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.copy-card,
.info-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.copy-card h3,
.info-card h3 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.copy-card p,
.info-card p,
.info-card li {
  color: var(--muted);
}

.copy-card p + p,
.info-card p + p {
  margin-top: 0.95rem;
}

.info-card .kicker {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.info-card ul {
  list-style: none;
  margin-top: 1rem;
}

.info-card li {
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(239, 51, 78, 0.2);
}

.button-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover {
  border-color: var(--line-strong);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-row-spaced {
  margin-top: 2rem;
}

.contact-list {
  list-style: none;
  margin-top: 1.5rem;
}

.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-list strong {
  color: #fff;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-band {
  margin-top: 5rem;
  background: var(--panel);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border: 1px solid var(--line);
}

.cta-main {
  padding: 4rem;
  background: linear-gradient(135deg, rgba(86, 210, 242, 0.1), transparent);
}

.cta-main h2 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-main p {
  color: var(--muted);
  max-width: 38rem;
}

.cta-side {
  padding: 4rem;
  background: var(--panel-dark);
  border-left: 1px solid var(--line);
}

.cta-side h3 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.cta-side ul {
  list-style: none;
  margin-top: 2rem;
}

.cta-side li {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.cta-side li strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.feature-title-xl {
  font-size: 4rem;
}

.art-label-muted {
  color: rgba(255, 255, 255, 0.8);
}

.link-underline {
  text-decoration: underline;
}

.art-conversations {
  background: linear-gradient(135deg, #f6d63a, #f5712f, #d22555);
}

.art-business {
  background: linear-gradient(135deg, #091d31, #103f61, #18b4cc);
}

.art-events {
  background: linear-gradient(135deg, #2a102e, #6c1c54, #ef334e);
}

.art-highschool {
  background: linear-gradient(135deg, #1b1e55, #5840a3, #67d1ff);
}

.art-ideas {
  background: linear-gradient(135deg, #34112f, #8a1e6b, #f5712f);
}

.art-indie {
  background: linear-gradient(135deg, #0d1013, #363c45, #a5acb8);
}

.art-process {
  background: linear-gradient(135deg, #0d2130, #0b4569, #1fd1b3);
}

.art-pilot {
  background: linear-gradient(135deg, #271324, #842153, #ff9058);
}

.art-network {
  background: linear-gradient(135deg, #16181d, #32455d, #56d2f2);
}

.art-community {
  background: linear-gradient(135deg, #2e1f0d, #7a4026, #ffd056);
}

.art-education {
  background: linear-gradient(135deg, #12153d, #4255d4, #9ed0ff);
}

.art-brands {
  background: linear-gradient(135deg, #0d1927, #164060, #ff8a40);
}

.art-niche {
  background: linear-gradient(135deg, #08090c, #3e3646, #c675ff);
}

.theme-broadcast .station-bar {
  position: sticky;
  top: 0;
  z-index: 100;
}

.theme-broadcast .grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.theme-broadcast .section-head p {
  max-width: 600px;
}

.theme-broadcast .hero-rail p {
  margin-bottom: 2rem;
}

.theme-broadcast .top-search {
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-card,
  .cta-band,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .hero-rail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-band {
    grid-template-columns: 1fr;
  }

  .cta-side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cta-main,
  .cta-side {
    padding: 2rem;
  }
}

@media (max-width: 700px) {
  .utility-bar,
  .station-bar,
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-panels {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .feature-panel:last-child {
    border-bottom: 0;
  }

  .hero-rail h1,
  .cta-main h2 {
    font-size: 2.2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .theme-broadcast .cta-row {
    flex-direction: column;
  }
}
