/* FYAHNYX FM artists pages. Shared by the roster wall and every artist page.
   The night-signal look: ember on near-black, cream text, teal only as a
   small accent, meters that never sit level. */

:root {
  --bg: #0b0908;
  --bg-1: #14100c;
  --card: #120d0a;
  --card-2: #1c1511;
  --line: #322619;
  --line-2: #483728;
  --ember: #ff6a1a;
  --ember-deep: #ff5a12;
  --ember-soft: #ff9248;
  --gold: #e6b23a;
  --teal: #2bd4c0;
  --cream: #f7f1ea;
  --muted: #c6bcb0;
  --muted-2: #998b7b;
  --maxw: 1160px;
  --radius: 18px;
  --head: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  --mono: Consolas, 'SF Mono', Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); }

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- header ---------- */

.masthead {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 9, 8, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brandmark .glyph { width: 34px; height: 34px; }

.brand-name {
  font-family: var(--head);
  font-size: 17px;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #fbf3e6, #f4c752 40%, #ff8a2a 72%, #ff5a12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.masthead__nav { display: flex; align-items: center; gap: 20px; }

.masthead__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.masthead__link:hover,
.masthead__link:focus-visible { color: var(--ember-soft); }

.masthead__link--active { color: var(--gold); }

/* ---------- shared type ---------- */

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
}

.page-title {
  font-family: var(--head);
  font-size: clamp(38px, 6.4vw, 64px);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-top: 10px;
}

.lead {
  color: var(--muted);
  max-width: 56ch;
  margin-top: 14px;
}

/* ---------- roster wall: posters, not boxes ---------- */

.wall-head { padding: 60px 0 36px; }

.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  padding-bottom: 84px;
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.06) 40%, rgba(11, 9, 8, 0.94) 100%);
  pointer-events: none;
}

.poster:hover,
.poster:focus-visible {
  transform: translateY(-6px);
  border-color: var(--ember);
  box-shadow: 0 34px 70px -28px rgba(255, 106, 26, 0.55);
}

.poster:hover img { transform: scale(1.045); }

.poster__name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--head);
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--cream);
}

.poster__name::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ember), var(--ember-deep));
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.poster:hover .poster__name::after,
.poster:focus-visible .poster__name::after { opacity: 1; transform: translateX(0); }

/* ---------- artist page: the poster hero ---------- */

.hero {
  position: relative;
  min-height: clamp(440px, 68vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% 100%, rgba(11, 9, 8, 0.55), rgba(11, 9, 8, 0) 62%),
    linear-gradient(180deg, rgba(11, 9, 8, 0.12) 30%, rgba(11, 9, 8, 0.96) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 40px;
  animation: rise-in 640ms ease-out both;
}

.hero__name {
  font-family: var(--head);
  font-size: clamp(56px, 11vw, 128px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--cream);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.65);
}

.hero__rule {
  width: 92px;
  height: 4px;
  margin-top: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ember), var(--ember-deep));
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- ticker: the signal in motion ---------- */

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  padding: 12px 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-roll 26s linear infinite;
}

.ticker__item {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 18px;
}

.ticker__dot { color: var(--ember); padding-left: 18px; }

@keyframes ticker-roll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- bio: a statement, not a caption ---------- */

.intro { padding: 56px 0 10px; }

.bio--statement {
  margin-top: 20px;
  max-width: 46ch;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.5;
  color: var(--cream);
}

/* ---------- out now: the release moment ---------- */

.release { padding: 64px 0 10px; }

.release__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.cover-stage { position: relative; }

.cover-stage::before {
  content: '';
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(50% 50% at 50% 55%, rgba(255, 106, 26, 0.32), rgba(255, 106, 26, 0) 72%);
  filter: blur(6px);
  pointer-events: none;
}

.cover {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 70px -26px rgba(0, 0, 0, 0.9);
  transform: rotate(-1.6deg);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.cover:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 40px 90px -30px rgba(255, 106, 26, 0.5);
}

.cover .glyph { width: 26%; height: auto; opacity: 0.9; }

.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release__title {
  font-family: var(--head);
  font-size: clamp(34px, 5.4vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  background: linear-gradient(90deg, #fbf3e6, #f4c752 40%, #ff8a2a 72%, #ff5a12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.release__date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 12px;
}

/* the honest meter: five bars, deliberately uneven, never level */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  margin-top: 18px;
}

.eq span {
  width: 5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffb14d, #ff5a12);
  animation: eq-pulse 1.15s ease-in-out infinite alternate;
}

.eq span:nth-child(1) { height: 34%; animation-delay: -0.9s; }
.eq span:nth-child(2) { height: 72%; animation-delay: -0.35s; }
.eq span:nth-child(3) { height: 100%; animation-delay: -0.6s; }
.eq span:nth-child(4) { height: 52%; animation-delay: -0.15s; }
.eq span:nth-child(5) { height: 80%; animation-delay: -0.75s; }

@keyframes eq-pulse {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1); }
}

.btn-listen {
  display: inline-block;
  margin-top: 26px;
  padding: 15px 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, #ff7a1a, #d2342b);
  color: #1a0d06;
  font-family: var(--head);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.55);
  animation: cta-breathe 2.6s ease-in-out infinite;
  transition: transform 160ms ease;
}

.btn-listen:hover,
.btn-listen:focus-visible { transform: translateY(-2px); }

@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 14px 40px -14px rgba(255, 106, 26, 0.55); }
  50% { box-shadow: 0 18px 56px -12px rgba(255, 106, 26, 0.95); }
}

/* ---------- the money block: fans onto the list ---------- */

.join-strip {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 130% at 50% 0%, rgba(255, 106, 26, 0.1), rgba(255, 106, 26, 0) 60%),
    var(--bg-1);
  padding: 46px 0;
}

.join-strip__title {
  font-family: var(--head);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  max-width: 26ch;
}

.join-strip__form { margin-top: 22px; }

.join-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 560px;
}

.field--grow { flex: 1 1 240px; display: block; }

.field__input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(11, 9, 8, 0.75);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
}

.field__input:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 2px rgba(255, 106, 26, 0.35);
}

.btn-join {
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, #ff7a1a, #d2342b);
  color: #1a0d06;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn-join:hover,
.btn-join:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -14px rgba(255, 106, 26, 0.9);
}

.join-strip__fine {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.form__hp { display: none; }

/* ---------- station mark + next voice ---------- */

.station-mark {
  padding: 60px 0 64px;
  text-align: center;
}

.station-mark .glyph { width: 46px; height: 46px; margin: 0 auto 16px; }

.station-mark__line {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-decoration: none;
}

.station-mark__line:hover,
.station-mark__line:focus-visible { color: var(--ember-soft); }

.next-voice {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 26px;
  text-decoration: none;
}

.next-voice__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.next-voice__name {
  font-family: var(--head);
  font-size: 20px;
  color: var(--cream);
  transition: color 160ms ease;
}

.next-voice:hover .next-voice__name,
.next-voice:focus-visible .next-voice__name { color: var(--ember-soft); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
}

.footer a { color: var(--muted-2); text-decoration: none; }
.footer a:hover { color: var(--gold); }

/* ---------- artist worlds (under the images; visible until they load) ---------- */

.world--brasa {
  background:
    radial-gradient(70% 55% at 50% 88%, rgba(255, 106, 26, 0.4), rgba(255, 106, 26, 0) 70%),
    linear-gradient(180deg, #0c1220 0%, #191026 55%, #2c1610 100%);
}

.world--ollie {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(151, 191, 122, 0.16), rgba(151, 191, 122, 0) 70%),
    linear-gradient(180deg, #101d12 0%, #14210f 55%, #3a2312 100%);
}

.world--fyah-g {
  background:
    radial-gradient(24% 20% at 72% 62%, rgba(255, 177, 77, 0.5), rgba(255, 177, 77, 0) 75%),
    linear-gradient(180deg, #0a0f1c 0%, #131225 60%, #241610 100%);
}

.world--baby-roxi {
  background:
    radial-gradient(60% 45% at 50% 40%, rgba(230, 178, 58, 0.28), rgba(230, 178, 58, 0) 72%),
    linear-gradient(180deg, #0b1230 0%, #181a3a 55%, #3a2c10 100%);
}

.world--tia {
  background:
    radial-gradient(50% 40% at 30% 55%, rgba(43, 212, 192, 0.16), rgba(43, 212, 192, 0) 70%),
    radial-gradient(40% 35% at 78% 70%, rgba(255, 177, 77, 0.28), rgba(255, 177, 77, 0) 72%),
    linear-gradient(180deg, #081426 0%, #10263a 55%, #241a10 100%);
}

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  .release__grid { grid-template-columns: 1fr; }
  .cover-stage { max-width: 320px; }
}

@media (max-width: 560px) {
  .wall { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .poster__name { font-size: 19px; left: 14px; right: 14px; bottom: 12px; }
  .hero { min-height: clamp(360px, 58vh, 520px); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .eq span { transform: none; }
  .hero__inner { animation: none; }
  .ticker__track { animation: none; }
}
