/* Power Hour feature. All selectors are scoped to the section so this
   page-specific asset cannot alter shared cards or event components. The theme
   tokens make the ramp follow each page: green on GTM, orange on Ignite, plum
   on DTC, blue on Launchpad, and lavender on Accelerate. */
.acc-power-hour {
  overflow: hidden;
  background: var(--bg-soft, #f6f9fc) !important;
  border-top: 1px solid rgba(10,37,64,.08);
  border-bottom: 1px solid rgba(10,37,64,.08);
}
.acc-power-hour .eyebrow {
  color: var(--sg2) !important;
}
.acc-power-hour .vf-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}
.acc-power-hour .vf-feature:hover { transform: none; }
.acc-power-hour .intro-copy {
  max-width: 610px;
  margin: 12px 0 0;
  color: var(--slate);
  font-size: .96rem;
}
.acc-power-hour .vf-circle-points {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.acc-power-hour .vf-circle-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: .9rem;
  line-height: 1.45;
}
.acc-power-hour .vf-circle-point::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--sg2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sg2) 12%, transparent);
}
.acc-power-hour .vf-event-fan {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 468px;
  justify-self: end;
  isolation: isolate;
  margin: 0 18px 0 0;
}
.acc-power-hour .vf-event-card {
  position: absolute;
  inset: 0 0 32px;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  padding: 8px 8px 26px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 50px -22px rgba(10,37,64,.35), 0 0 0 1px rgba(10,37,64,.05);
  transition: opacity .55s ease, transform .65s cubic-bezier(.16,1,.3,1);
}
.acc-power-hour .vf-event-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #050509;
  object-fit: cover;
}
.acc-power-hour .vf-event-card[data-position="front"] {
  z-index: 3;
  opacity: 1;
  transform: rotate(1.6deg);
}
.acc-power-hour .vf-event-card[data-position="back"] {
  z-index: 2;
  opacity: .68;
  transform: translate(-24px,4px) rotate(-7deg) scale(.96);
}
.acc-power-hour .vf-event-card[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  transform: translate(30px,20px) rotate(9deg) scale(.9);
  pointer-events: none;
}
.acc-power-hour .vf-event-fan:hover .vf-event-card[data-position="front"] {
  transform: rotate(0deg) scale(1.015);
}
.acc-power-hour .vf-event-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 9px;
  text-align: center;
}
.acc-power-hour .vf-event-kicker {
  color: var(--sg2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.acc-power-hour .vf-event-meta strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -.01em;
}
.acc-power-hour .vf-event-meta span:last-child {
  color: var(--slate);
  font-size: .82rem;
}
.acc-power-hour .vf-event-fan-controls {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.acc-power-hour .vf-event-fan-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--sg2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.acc-power-hour .vf-event-fan-dot[aria-current="true"] { background: var(--sg2); }
.acc-power-hour .vf-event-fan-dot:focus-visible {
  outline: 2px solid var(--sg2);
  outline-offset: 3px;
}
@media (max-width: 820px) {
  .acc-power-hour .vf-feature {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .acc-power-hour .vf-event-fan {
    justify-self: center;
    /* Symmetric. A centred grid item splits its horizontal margins, so the old
       `14px 18px 18px 0` (written for the desktop right-hand column, where
       `justify-self: end` made that 18px a gutter) sat the stack 9px left. */
    margin: 14px auto 18px;
    /* A rotated box paints wider than the element itself. At 436px tall the
       back card's 7deg angle alone added ~51px of painted width, so at full
       column width the stack measured past the left edge of the screen and the
       section's `overflow: hidden` sliced it off. Narrowing the fan and easing
       the angle below keep the whole stack on screen. */
    width: min(100%, 272px);
    /* The stack fans to the LEFT only, so its painted mass sits left of the fan
       box; centring the box therefore does not centre what you see. This
       offsets the remainder. Measured across 360-430px. */
    transform: translateX(6px);
  }
  .acc-power-hour .vf-event-card[data-position="back"] {
    transform: translate(-8px, 4px) rotate(-4deg) scale(.96);
  }
}
@media (prefers-reduced-motion: reduce) {
  .acc-power-hour .vf-event-card { transition: none; }
}
