/* ==========================================================================
   Cenematic home-c — hero (light background, loud warm color).
   Reuses the gradient-shift keyframes from hero.css.
   ========================================================================== */

/* Section ------------------------------------------------------------------ */
.hero-bold {
  /* Local accent ramp — vibrant yellow → orange → red-orange.
     Scoped here so the shared --accent-* palette stays untouched. */
  --bold-1: #ffc107;
  --bold-2: #ff8a00;
  --bold-3: #ff3d00;

  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 64px 40px 80px;
  background: var(--bg);
  color: var(--ink);
  text-align: center;
}

/* Aurora wash — same accent palette, much louder than the base blobs but
   soft enough to keep the ink readable */
.hero-bold::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(42% 55% at 10% 0%, rgba(255, 193, 7, 0.028), transparent 70%),
    radial-gradient(40% 50% at 90% 4%, rgba(255, 138, 0, 0.022), transparent 70%),
    radial-gradient(55% 60% at 50% 108%, rgba(255, 61, 0, 0.018), transparent 70%);
  filter: blur(60px);
  animation: hero-bold-aurora 14s ease-in-out infinite alternate;
}

@keyframes hero-bold-aurora {
  to { transform: translate3d(0, 4%, 0) scale(1.07); }
}

.hero-bold__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* Pre-headline — flanked capsule with diamond-capped side rules ------------ */
.hero-bold__pre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-bold__pre-pill {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  /* Gold text on a dark slab with an animated gold gradient border */
  color: var(--bold-1);
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.28);
  border: 1.5px solid transparent;
  background:
    linear-gradient(#141019, #141019) padding-box,
    linear-gradient(120deg, var(--bold-1), var(--bold-2), var(--bold-3), var(--bold-1)) border-box;
  background-size: auto, 300% 100%;
  animation: gradient-shift 6s linear infinite;
  box-shadow: 0 6px 18px -10px rgba(255, 90, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-bold__pre-line {
  position: relative;
  width: clamp(40px, 9vw, 110px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--bold-2));
}
/* Right rule fades the other way so both taper outward */
.hero-bold__pre-line:last-of-type {
  background: linear-gradient(90deg, var(--bold-2), transparent);
}
/* Glowing diamond caps at the outer ends */
.hero-bold__pre-line::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--bold-1);
  transform: translate(-50%, -50%) rotate(45deg);
}
.hero-bold__pre-line:first-of-type::before { left: 0; }
.hero-bold__pre-line:last-of-type::before { left: auto; right: 0; transform: translate(50%, -50%) rotate(45deg); }

@media (max-width: 560px) {
  .hero-bold__pre-pill { white-space: normal; }
  .hero-bold__pre-line { width: clamp(18px, 6vw, 40px); }
}

/* Type --------------------------------------------------------------------- */
.hero-bold__heading {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* Marker-style highlight: vivid gradient slab, slightly tilted */
.hero-bold__mark {
  display: inline-block;
  padding: 0.02em 0.28em 0.08em;
  border-radius: 0.18em;
  background: linear-gradient(100deg, var(--bold-2), var(--bold-3));
  color: #fff;
  transform: rotate(-1.2deg);
}

/* Yellow slab takes ink text (same pairing as the navbar CTA) */
.hero-bold__mark--alt {
  background: linear-gradient(100deg, var(--bold-1), var(--bold-2));
  color: var(--ink);
  transform: rotate(1deg);
}

.hero-bold__subheading {
  margin-bottom: 26px;
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Animated gradient text */
.hero-bold__highlight {
  font-size: 1.08em;
  font-weight: 900;
  background: linear-gradient(105deg, #f59e0b, var(--bold-2), var(--bold-3), #f59e0b);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 14s linear infinite;
}

.hero-bold__description {
  max-width: 840px;
  margin: 0 auto 44px;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
  color: var(--muted);
}

/* Media -------------------------------------------------------------------- */
.hero-bold__media {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Color bloom spilling out from behind the video */
.hero-bold__media::before {
  content: "";
  position: absolute;
  inset: 8% -3% -5%;
  background: linear-gradient(105deg, var(--bold-1), var(--bold-2), var(--bold-3));
  filter: blur(70px);
  opacity: 0.06;
}

/* Animated gradient frame around the player */
.hero-bold__frame {
  position: relative;
  padding: 3px;
  border-radius: 25px;
  background: linear-gradient(120deg, var(--bold-1), var(--bold-2), var(--bold-3), var(--bold-1));
  background-size: 300% 100%;
  animation: gradient-shift 10s linear infinite;
}

.hero-bold__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #efeefb, #fce7f3);
}

.hero-bold__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
