body {
  background: linear-gradient(145deg, #090B11 0%, #0C1220 38%, #101A2C 68%, #101420 100%);
  color: #EDF2FF;
  font-family: Manrope, sans-serif;
}

.bt-animated-hero {
  position: relative;
  overflow: visible; /* Changed to visible to allow box-shadow / glows to render without clipping */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.bt-animated-hero #hero-title {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.headline {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: 'Whitrabt', Sora, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.6rem, 3.6rem);
  line-height: 1.15;
  color: #EDF2FF;
  text-align: center;
}

.headline-prefix {
  display: inline-block;
  white-space: pre-wrap;
  vertical-align: baseline;
}

.headline-brand {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
}
.headline-brand.lock-brand {
  white-space: nowrap;
}

.headline-static {
  display: inline-block; /* Crucial for transforms to apply during FLIP anim */
  color: #3EE7FF;
  white-space: pre-wrap;
  vertical-align: baseline;
}

.headline-suffix {
  display: inline-block;
  white-space: pre-wrap;
  vertical-align: baseline;
}

/* Intro lock / complete state controls */
.hero-intro-lock .hero-copy {
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
}

.hero-intro-complete .hero-copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hide heading entirely once sequence complete */
.hero-intro-complete #hero-title {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-copy {
  margin-top: 1.5rem;
  margin-bottom: 0;
  width: 100%;
}

.template-placeholder, .template-placeholder-editor {
  border: 1px dashed rgba(62, 231, 255, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  background: rgba(62, 231, 255, 0.05);
  color: #B2BDD8;
  font-family: sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.hero-skip-hint {
  position: fixed;
  bottom: var(--hero-skip-bottom, 18px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  background: rgba(18, 24, 39, 0.45);
  border: 1px solid rgba(178, 189, 216, 0.32);
  border-radius: 9999px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: #B2BDD8;
  opacity: 0;
  animation: skip-hint-in-810bd382 0.4s 1.5s ease forwards;
  pointer-events: none;
}

@keyframes skip-hint-in-810bd382 {
  to { opacity: 1; }
}

.hero-intro-complete .hero-skip-hint {
  display: none;
}

.site-header--intro-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.site-header {
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
