.flex9-page {
  --fx-bg: #07080e;
  --fx-ink: #f8fbff;
  --fx-muted: rgba(232, 241, 255, 0.76);
  --fx-blue: #28c6ff;
  --fx-orange: #ff8a1f;
  --fx-violet: #8d4cff;
  --fx-panel: rgba(7, 12, 18, 0.72);
  --fx-line: rgba(40, 198, 255, 0.26);
  --fx-max: 1180px;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 18%, rgba(141, 76, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 76% 20%, rgba(255, 138, 31, 0.22), transparent 30rem),
    radial-gradient(circle at 50% 62%, rgba(40, 198, 255, 0.18), transparent 34rem),
    linear-gradient(135deg, #05070c 0%, #0b1020 44%, #030306 100%);
  color: var(--fx-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.flex9-page *,
.flex9-page *::before,
.flex9-page *::after {
  box-sizing: border-box;
}

.flex9-page a {
  color: inherit;
  text-decoration: none;
}

.fx-shell {
  width: calc(100% - 40px);
  max-width: var(--fx-max);
  margin: 0 auto;
}

.fx-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
}

.fx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fx-brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 21%, #ffba54 22% 58%, #21120a 59% 100%);
  color: #151515;
  font-size: 1rem;
  font-weight: 950;
  box-shadow:
    0 0 28px rgba(40, 198, 255, 0.44),
    0 0 42px rgba(255, 138, 31, 0.32);
}

.fx-nav__links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fx-muted);
  font-size: 0.92rem;
}

.fx-nav__links a {
  transition: color 160ms ease;
}

.fx-nav__links a:hover {
  color: white;
}

.fx-hero {
  position: relative;
  isolation: isolate;
}

.fx-hero::before {
  position: absolute;
  inset: -92px 0 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96) 0 38%, rgba(5, 7, 12, 0.62) 66%, rgba(5, 7, 12, 0.94) 100%),
    url("/artists/flex9/nine-on-the-break.png") center 55% / cover no-repeat;
  opacity: 0.42;
  filter: saturate(1.1);
}

.fx-hero::after {
  position: absolute;
  inset: -92px 0 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.08), rgba(5, 7, 12, 0.9)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 5px);
}

.fx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  min-height: min(760px, calc(100svh - 74px));
  padding: clamp(42px, 7vw, 82px) 0 clamp(72px, 9vw, 110px);
}

.fx-hero__copy {
  min-width: 0;
}

.fx-eyebrow {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
  border: 1px solid var(--fx-line);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.06);
  color: #bdf0ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.fx-title {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--fx-ink);
  font-size: clamp(4.1rem, 9vw, 9.1rem);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 42px rgba(40, 198, 255, 0.26),
    0 9px 0 rgba(255, 138, 31, 0.13);
}

.fx-lede {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--fx-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
  line-height: 1.58;
}

.fx-lede strong,
.fx-section__copy strong {
  color: white;
  font-weight: 950;
}

.fx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  margin: 0 0 32px;
}

.fx-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fx-line);
  border-radius: 999px;
  padding: 0 17px;
  color: var(--fx-ink);
  font-weight: 950;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fx-button:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 198, 255, 0.54);
}

.fx-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--fx-orange), var(--fx-blue) 58%, var(--fx-violet));
  color: #05070c;
  box-shadow:
    0 18px 46px rgba(40, 198, 255, 0.28),
    0 0 32px rgba(255, 138, 31, 0.24);
}

.fx-button--secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.fx-metadata {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 710px;
}

.fx-meta-card {
  min-height: 92px;
  border: 1px solid var(--fx-line);
  border-radius: 8px;
  padding: 15px;
  background: var(--fx-panel);
  backdrop-filter: blur(16px);
}

.fx-meta-card span {
  display: block;
  margin-bottom: 6px;
  color: #bdf0ff;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fx-meta-card b {
  color: var(--fx-ink);
  font-weight: 950;
  line-height: 1.25;
}

.fx-art {
  position: relative;
  margin: 0;
  border: 1px solid rgba(40, 198, 255, 0.36);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(40, 198, 255, 0.22), rgba(255, 138, 31, 0.16)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 88px rgba(40, 198, 255, 0.2);
}

.fx-art::before {
  position: absolute;
  inset: -12%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 72%, rgba(40, 198, 255, 0.46), transparent 36%),
    radial-gradient(circle at 42% 26%, rgba(255, 138, 31, 0.3), transparent 34%);
  filter: blur(12px);
}

.fx-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: #030306;
}

.fx-art figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 48px);
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(40, 198, 255, 0.34);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(5, 7, 12, 0.72);
  color: #bdf0ff;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.fx-section {
  border-top: 1px solid rgba(40, 198, 255, 0.14);
  padding: clamp(64px, 8vw, 96px) 0;
}

.fx-section__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.fx-section h2 {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.fx-section__copy {
  max-width: 100%;
  color: var(--fx-muted);
  font-size: 1.08rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.fx-section__copy p {
  margin: 0;
}

.fx-quote {
  margin-top: 22px;
  border: 1px solid var(--fx-line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(40, 198, 255, 0.12), rgba(255, 138, 31, 0.1)),
    var(--fx-panel);
}

.fx-quote p {
  margin: 0;
  color: var(--fx-ink);
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.06;
}

.fx-tags,
.fx-signal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fx-tags span {
  border: 1px solid var(--fx-line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--fx-muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.fx-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fx-signal {
  min-height: 148px;
  border: 1px solid var(--fx-line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(40, 198, 255, 0.13), rgba(255, 138, 31, 0.08)),
    rgba(255, 255, 255, 0.045);
}

.fx-signal b {
  display: block;
  margin-bottom: 8px;
  color: var(--fx-ink);
  font-size: 1.06rem;
}

.fx-signal span {
  color: var(--fx-muted);
  line-height: 1.5;
}

.fx-release-card {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--fx-line);
  border-radius: 8px;
  padding: 16px;
  background: var(--fx-panel);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.26);
}

.fx-release-card img {
  width: 106px;
  height: 106px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.fx-release-card h3 {
  margin: 0 0 7px;
  color: var(--fx-ink);
  font-size: 1.45rem;
}

.fx-release-card p {
  margin: 0;
  color: var(--fx-muted);
  line-height: 1.48;
}

.fx-platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.fx-platform {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--fx-line);
  border-radius: 8px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--fx-ink);
  font-weight: 950;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fx-platform:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 198, 255, 0.54);
  background: rgba(255, 255, 255, 0.09);
}

.fx-platform--pending {
  cursor: default;
  color: rgba(248, 251, 255, 0.62);
}

.fx-platform--pending:hover {
  transform: none;
  border-color: var(--fx-line);
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .fx-hero__grid,
  .fx-section__grid {
    grid-template-columns: 1fr;
  }

  .fx-art {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .fx-shell {
    width: calc(100% - 48px);
  }

  .fx-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
  }

  .fx-nav__links,
  .fx-cta-row {
    flex-wrap: wrap;
  }

  .fx-hero__grid {
    min-height: 0;
    padding: 36px 0 66px;
  }

  .fx-title {
    font-size: clamp(3.35rem, 18vw, 5.2rem);
  }

  .fx-metadata,
  .fx-signal-grid,
  .fx-platform-grid {
    grid-template-columns: 1fr;
  }

  .fx-release-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .fx-release-card img {
    width: 86px;
    height: 86px;
  }
}
