/* X1 Director’s cut — peak polish only */

/* --- HERO peak --- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
}
.hero-cta {
  position: relative;
  z-index: 5;
  /* never inherit blur from parent filters */
  filter: none !important;
  will-change: transform, opacity;
}
.hero-cta .btn {
  filter: none !important;
  backdrop-filter: blur(8px);
}
.hero-cta .btn-w {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 40px rgba(124, 58, 237, 0.35),
    0 0 60px rgba(167, 139, 250, 0.2);
}
.hero h1 {
  text-wrap: balance;
}
.hero-sub {
  text-wrap: pretty;
}

/* --- METHOD peak --- */
.method-wrap {
  /* breathing room so constellation reads as the frame */
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* pulse via box-shadow only — never transform (ghost double-digit bug) */
.ms-node.is-on .msn-orb {
  animation: dirNodePulse 2.4s ease-in-out infinite;
}
@keyframes dirNodePulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(167, 139, 250, 0.35),
      0 0 36px rgba(124, 58, 237, 0.7),
      0 0 70px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(233, 213, 255, 0.45),
      0 0 48px rgba(167, 139, 250, 0.85),
      0 0 90px rgba(124, 58, 237, 0.45);
  }
}
.ms-holo {
  /* projection sits in void — lighter edge */
  border-color: rgba(167, 139, 250, 0.12);
  background: linear-gradient(
    180deg,
    rgba(20, 12, 40, 0.45) 0%,
    rgba(8, 6, 18, 0.25) 100%
  );
}

/* --- ABOUT peak --- */
.about {
  min-height: min(100vh, 900px);
  align-items: center;
}
.about-visual.bh {
  /* more presence in the frame */
  max-width: min(520px, 100%);
}
.bh-photon {
  animation: bhPhoton 2.6s ease-in-out infinite;
}
.about-copy h2 {
  text-wrap: balance;
}

/* --- CONTACT hard cut --- */
.finale {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.5rem;
  /* film ending: crush the world */
  background: radial-gradient(ellipse 70% 55% at 50% 45%, rgba(20, 8, 40, 0.5), transparent 70%);
}
.finale.is-void {
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.75) 0%, rgba(5, 3, 12, 0.4) 40%, transparent 70%);
}
.finale h2 {
  font-size: clamp(3rem, 11vw, 7.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.finale h2 em,
.finale h2 #finB {
  display: block;
  margin-top: 0.1em;
}
.finale-links {
  gap: 0.85rem;
  justify-content: center;
}
.finale .sec-num {
  opacity: 0.5;
}
.finale p {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

/* peak section focus: slightly dim non-peak chrome when deep in contact */
.finale.is-void ~ * {
  /* nothing after */
}

html.reduced .ms-node.is-on .msn-orb {
  animation: none !important;
}
