/* Fracture as language — evolves after Hero → Artist. Never repeats the full crack. */

.page-home .fracture-trace {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ARTIST — discreet residual mark */
.page-home #artist::after {
  content: "";
  position: absolute;
  top: 8%;
  left: clamp(6%, 10vw, 14%);
  width: 1px;
  height: clamp(3rem, 8vw, 5.5rem);
  background: linear-gradient(
    180deg,
    rgba(255, 43, 43, 0.28),
    transparent 90%
  );
  opacity: 0.45;
  pointer-events: none;
}

/* LIVE — energy accent on cards (not huge stage) */
.page-home #experience-live .live-home-grid__frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 10%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 43, 43, calc(0.18 + var(--energy-red) * 0.35)) 40%,
    transparent 100%
  );
  opacity: calc(0.25 + var(--energy-glow) * 0.3);
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-home #experience-live .experience-live__stage::before {
  display: none;
}

/* MUSIC — progress / fracture energy inspiration */
.page-home #music .music-feature__art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.95) 0%,
      rgba(8, 8, 8, 0.95) 100%
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-home #music .music-feature__art::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 2px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--color-dark-energy),
    var(--color-magma)
  );
  box-shadow: 0 0 12px rgba(255, 43, 43, calc(0.15 + var(--energy-glow) * 0.35));
  pointer-events: none;
}

/* SHOWS — chronological axis */
.page-home #shows .shows-list {
  position: relative;
}

.page-home #shows .shows-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(247, 247, 247, 0.14) 12%,
    rgba(255, 43, 43, 0.22) 50%,
    rgba(247, 247, 247, 0.1) 88%,
    transparent
  );
  opacity: 0.7;
  pointer-events: none;
}

@media (min-width: 900px) {
  .page-home #shows .shows-list::before {
    left: calc(7rem + 0.35rem);
  }
}

/* GALLERY — subtle composition line */
.page-home #gallery .gallery-grid {
  position: relative;
}

.page-home #gallery .gallery-grid::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 4%;
  right: 18%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 247, 247, 0.08) 20%,
    rgba(255, 43, 43, 0.12) 55%,
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.page-home #gallery .gallery-item,
.page-home #gallery .gallery-home-grid__item {
  position: relative;
  z-index: 1;
}

/* PRESS — almost gone */
.page-home #press::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 1px;
  height: 2.25rem;
  background: rgba(247, 247, 247, 0.06);
  opacity: 0.5;
  pointer-events: none;
}

/* BOOKING — final fine luminous line (callback, not Hero open) */
.page-home .booking-cta__fracture {
  position: absolute;
  inset: 12% auto 18% 10%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 43, 43, 0.55) 40%,
    rgba(179, 18, 23, 0.35) 70%,
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.page-home .booking-cta__fracture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: rgba(255, 43, 43, 0.55);
  box-shadow: 0 0 18px rgba(255, 43, 43, 0.35);
  opacity: calc(0.35 + var(--energy-glow) * 0.4);
}

@media (max-width: 767px) {
  .page-home #artist::after,
  .page-home #gallery .gallery-grid::before,
  .page-home #press::before {
    opacity: 0.28;
  }

  .page-home #shows .shows-list::before {
    left: 0;
  }
}
