body.hero-stage-page {
  background: #f4f4f1;
}

body.hero-shell-page #hol-yard-container,
body.blog-page #hol-yard-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1200px;
  transform-style: preserve-3d;
}

body.hero-shell-page .hol-yard,
body.blog-page .hol-yard {
  position: absolute;
  width: var(--logo-size, 190px);
  height: var(--logo-size, 190px);
  opacity: var(--logo-opacity, 0.16);
  z-index: var(--logo-layer, 0);
  transform-origin: center;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  animation: heroShellFloatRotate var(--logo-duration, 10s) ease-in-out infinite;
  filter:
    blur(var(--logo-blur, 0px))
    saturate(var(--logo-saturation, 0.78))
    brightness(var(--logo-brightness, 0.72))
    contrast(var(--logo-contrast, 1))
    drop-shadow(0 0 var(--logo-shadow-blur, 12px) var(--logo-shadow-color, rgba(255, 255, 255, 0.18)));
}

body.hero-shell-page .hol-yard.depth-far,
body.blog-page .hol-yard.depth-far {
  --logo-size: 118px;
  --logo-opacity: 0.08;
  --logo-blur: 1.8px;
  --logo-saturation: 0.52;
  --logo-brightness: 0.48;
  --logo-contrast: 0.9;
  --logo-duration: 14s;
  --logo-shadow-blur: 8px;
  --logo-shadow-color: rgba(255, 255, 255, 0.08);
  --logo-scale: 0.72;
  --logo-layer: 0;
  --float-x: 6px;
  --float-y: -10px;
  --logo-rotate: 150deg;
}

body.hero-shell-page .hol-yard.depth-mid,
body.blog-page .hol-yard.depth-mid {
  --logo-size: 168px;
  --logo-opacity: 0.14;
  --logo-blur: 0.75px;
  --logo-saturation: 0.68;
  --logo-brightness: 0.62;
  --logo-contrast: 0.98;
  --logo-duration: 11s;
  --logo-shadow-blur: 12px;
  --logo-shadow-color: rgba(255, 255, 255, 0.14);
  --logo-scale: 0.94;
  --logo-layer: 1;
  --float-x: -8px;
  --float-y: -15px;
  --logo-rotate: 180deg;
}

body.hero-shell-page .hol-yard.depth-near,
body.blog-page .hol-yard.depth-near {
  --logo-size: 222px;
  --logo-opacity: 0.2;
  --logo-blur: 0px;
  --logo-saturation: 0.84;
  --logo-brightness: 0.78;
  --logo-contrast: 1.04;
  --logo-duration: 8.6s;
  --logo-shadow-blur: 16px;
  --logo-shadow-color: rgba(255, 255, 255, 0.22);
  --logo-scale: 1.08;
  --logo-layer: 2;
  --float-x: 10px;
  --float-y: -18px;
  --logo-rotate: 210deg;
}

body.hero-shell-page .popup-container {
  position: fixed;
  inset: 0;
  background-color: rgb(255, 255, 0);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  visibility: visible;
  opacity: 1;
  pointer-events: none;
  animation: heroShellPopupDismiss 1.1s ease 0.85s forwards;
  transition: visibility 0s linear 0.5s, opacity 0.5s ease-in-out;
}

body.hero-shell-page .spinning-logo {
  width: 100px;
  animation: heroShellSpin 2s linear infinite;
}

@keyframes heroShellFloatRotate {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(var(--logo-scale, 1)) rotate(0deg);
  }

  50% {
    transform: translate3d(var(--float-x, 0px), var(--float-y, -16px), 0) scale(calc(var(--logo-scale, 1) * 1.035)) rotate(var(--logo-rotate, 180deg));
  }
}

@keyframes heroShellSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroShellPopupDismiss {
  0% {
    opacity: 1;
    visibility: visible;
  }

  99% {
    opacity: 0;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

body.hero-stage-page .header {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 88vh, 860px);
  padding: 124px 0 96px;
  background: #05070b;
  overflow: hidden;
}

body.hero-stage-page .header::before,
body.hero-stage-page .header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.hero-stage-page .header::before {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(34, 197, 94, 0.18), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(250, 204, 21, 0.16), transparent 24%);
}

body.hero-stage-page .header::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.64) 0%, rgba(4, 7, 11, 0.26) 22%, rgba(4, 7, 11, 0.34) 52%, rgba(4, 7, 11, 0.92) 100%),
    linear-gradient(90deg, rgba(4, 7, 11, 0.26) 0%, rgba(4, 7, 11, 0.02) 26%, rgba(4, 7, 11, 0.02) 74%, rgba(4, 7, 11, 0.26) 100%);
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #05070b;
}

.hero-stage-media img,
.hero-stage-media iframe,
.hero-stage-media video,
.hero-stage__screen-loading,
.hero-stage__screen-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.hero-stage-media img,
.hero-stage-media iframe,
.hero-stage-media video {
  object-fit: cover;
}

.hero-stage-media iframe,
.hero-stage-media video {
  pointer-events: none;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04) brightness(0.74);
}

.hero-stage-media img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03) brightness(0.72);
}

.hero-stage__screen-loading,
.hero-stage__screen-fallback {
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  background: linear-gradient(180deg, rgba(4, 7, 11, 0.28), rgba(4, 7, 11, 0.74));
  font-weight: 700;
  line-height: 1.6;
}

body.hero-stage-page .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  min-height: clamp(420px, 66vh, 680px);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-align: center;
}

body.hero-stage-page .hero-title {
  max-width: 980px;
  color: #fff;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

body.hero-stage-page .hero-title-accent {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

body.hero-stage-page .hero-subtitle {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

body.hero-stage-page .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 7, 11, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.hero-stage-page.hero-stage-scrolled .nav {
  background: rgba(7, 10, 14, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

body.hero-shell-page.hero-stage-page .header {
  min-height: clamp(430px, 68vh, 470px);
  padding: 82px 0 34px;
  background: rgba(5, 7, 11, 0.32);
}

body.blog-page.hero-shell-page.hero-stage-page .header {
  height: auto;
  padding: 78px 0 6px;
}

body.hero-shell-page.hero-stage-page .hero-inner {
  min-height: clamp(248px, 42vh, 300px);
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
}

body.hero-shell-page.hero-stage-page .hero-subtitle {
  margin-top: 10px;
}

body.hero-shell-page .hero-stage-media {
  background: transparent;
}

body.hero-shell-page .hero-stage-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.36) 0%, rgba(5, 7, 11, 0.14) 24%, rgba(5, 7, 11, 0.28) 58%, rgba(5, 7, 11, 0.64) 100%),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.04), transparent 36%);
}

body.hero-shell-page .hero-stage-media img,
body.hero-shell-page .hero-stage-media video {
  opacity: 0.48;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.02) brightness(0.62);
}

body.hero-shell-page .hero-stage-overlay {
  gap: 10px;
  width: min(100%, 820px);
  justify-items: center;
}

body.hero-shell-page .hero-stage__copy {
  max-width: 700px;
}

body.hero-shell-page .nav-inner {
  max-width: 1080px;
  height: 62px;
  padding: 0 16px;
}

body.hero-shell-page .nav-links,
body.hero-shell-page .dropdown,
body.hero-shell-page .dropdown-trigger {
  height: 62px;
}

body.hero-shell-page .nav-links a {
  padding: 0 12px;
  font-size: 14px;
  line-height: 62px;
}

body.hero-shell-page .dropdown-content {
  top: 62px;
}

body.hero-shell-page .logo-icon {
  height: 48px;
}

body.hero-shell-page .brand-top {
  font-size: 23px;
}

body.hero-shell-page .brand-bottom {
  font-size: 14px;
}

body.hero-shell-page .cta-button {
  height: 36px;
  padding: 0 16px;
}

.hero-stage-overlay {
  width: min(100%, 860px);
  display: grid;
  gap: 12px;
}

.hero-stage__eyebrow-row,
.hero-stage__region-row,
.hero-stage__action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-stage__headline {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
}

.hero-stage__artist {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 800;
  letter-spacing: 0.25px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-stage__copy {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-stage__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 14, 0.42);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.35px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-stage__pill--accent {
  background: rgba(250, 204, 21, 0.16);
  color: #ffe873;
}

.hero-stage__pill--forecast {
  letter-spacing: 0.75px;
}

.hero-stage__pill--live {
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.34);
  animation: heroStagePulse 1.8s ease-in-out infinite;
}

.hero-stage__region {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 14, 0.42);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hero-stage__region:hover,
.hero-stage__region:focus-visible {
  transform: translateY(-1px);
}

.hero-stage__region.is-active {
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.16);
  color: #ffe873;
}

.hero-stage__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 14, 0.42);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hero-stage__action:hover,
.hero-stage__action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.hero-stage__action--secondary {
  background: rgba(0, 0, 0, 0.2);
}

.hero-stage__media-toggle {
  min-width: 44px;
  min-height: 44px;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
}

.hero-stage__media-toggle:focus-visible {
  outline: 3px solid #ffe873;
  outline-offset: 3px;
}

@keyframes heroStagePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.34);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(250, 204, 21, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
  }
}

@media (max-width: 980px) {
  body.hero-stage-page .header {
    min-height: 560px;
    padding: 112px 0 78px;
  }

  body.hero-stage-page .hero-inner {
    min-height: 400px;
  }

  body.hero-shell-page.hero-stage-page .header {
    min-height: 412px;
    padding: 78px 0 30px;
  }

  body.hero-shell-page.hero-stage-page .hero-inner {
    min-height: 236px;
  }

}

@media (max-width: 640px) {
  body.hero-shell-page .hol-yard.depth-mid {
    --logo-size: 142px;
    --logo-opacity: 0.11;
  }

  body.hero-shell-page .hol-yard.depth-near {
    --logo-size: 182px;
    --logo-opacity: 0.15;
  }

  body.hero-stage-page .header {
    min-height: 500px;
    padding: 100px 0 58px;
  }

  body.hero-stage-page .hero-inner {
    min-height: 360px;
    gap: 14px;
  }

  body.hero-stage-page .hero-title,
  body.hero-stage-page .hero-subtitle,
  .hero-stage__headline,
  .hero-stage__artist,
  .hero-stage__copy {
    max-width: min(100%, 34ch);
    overflow-wrap: anywhere;
  }

  body.hero-stage-page .hero-title {
    max-width: 14ch;
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-stage__headline {
    font-size: 22px;
  }

  .hero-stage__copy {
    font-size: 14px;
  }

  body.hero-shell-page.hero-stage-page .header {
    min-height: 432px;
    padding: 96px 0 32px;
  }

  body.hero-shell-page.hero-stage-page .hero-inner {
    min-height: 276px;
    justify-content: flex-start;
    gap: 12px;
    padding: 22px 18px 0 42px;
  }

  body.hero-shell-page.hero-stage-page .hero-subtitle {
    max-width: 31ch;
    margin-top: 8px;
  }

  body.hero-shell-page .hero-stage-overlay {
    width: min(100%, 324px);
    gap: 8px;
  }

  body.hero-shell-page .hero-stage__copy {
    max-width: 31ch;
    line-height: 1.6;
  }

  body.hero-shell-page .nav-right {
    display: none;
  }

  body.blog-page.hero-shell-page.hero-stage-page .hero-inner {
    padding-top: 0;
  }

  body.hero-shell-page .logo-icon {
    height: 44px;
  }

  body.hero-shell-page .cta-button {
    height: 34px;
    padding: 0 14px;
  }
}

@media (max-width: 390px) {
  body.hero-shell-page .hol-yard.depth-mid {
    --logo-size: 126px;
    --logo-opacity: 0.1;
  }

  body.hero-shell-page .hol-yard.depth-near {
    --logo-size: 162px;
    --logo-opacity: 0.13;
  }

  body.hero-shell-page.hero-stage-page .header {
    min-height: 456px;
    padding: 108px 0 34px;
  }

  body.hero-shell-page.hero-stage-page .hero-inner {
    min-height: 304px;
    padding: 28px 14px 0 38px;
    gap: 14px;
  }

  body.blog-page.hero-shell-page.hero-stage-page .hero-inner {
    padding-top: 0;
  }

  body.hero-shell-page.hero-stage-page .hero-subtitle {
    max-width: 27ch;
  }

  body.hero-stage-page .hero-title {
    max-width: 14ch;
    font-size: clamp(24px, 7vw, 28px);
  }

  body.hero-shell-page .hero-stage-overlay {
    width: min(100%, 280px);
  }

  body.hero-shell-page .hero-stage__copy {
    max-width: 28ch;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  body.hero-shell-page .nav-inner {
    padding: 10px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hero-shell-page .hol-yard,
  body.blog-page .hol-yard,
  body.hero-shell-page .spinning-logo,
  body.blog-page .spinning-logo,
  .hero-stage__pill--live {
    animation: none;
  }

  body.hero-shell-page .popup-container,
  body.blog-page .popup-container {
    animation: none;
    transition: none;
    opacity: 0;
    visibility: hidden;
  }
}
