/* ==========================================================================
   Component: hero (.cm-hero)
   Full-bleed brand surface (see .cm-brand-surface--hero in base.css) with a
   copy column and a badge-print "scene". The scene renders as a polished
   STATIC badge by default (works with JS off / reduced motion); hero-animation.js
   progressively enhances it into the print-cycle animation.
   ========================================================================== */
.brdCrm__inner{
  max-width: var(--cm-container);
  margin-inline: auto;
  padding: 40px var(--cm-gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px;
  align-items: center;
}
.cm-hero__inner {
  max-width: var(--cm-container);
  margin-inline: auto;
  padding: 80px var(--cm-gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px;
  align-items: center;
}

.cm-hero__title {
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
  text-wrap: balance;
  margin-block: 20px 24px;
}

.cm-hero__lead {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(241, 244, 247, 0.88);
  max-width: 52ch;
  text-wrap: pretty;
}

.cm-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.cm-hero__eyebrow {
  color: rgba(241, 244, 247, 0.8);
}

.cm-hero__meter {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cm-hero__meter-label {
  color: rgba(241, 244, 247, 0.72);
}

/* Count-up ticker (static baseline: a plain number; the island animates it). */
.cm-hero__ticker {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  min-height: 34px;
  display: flex;
  align-items: center;
}

/* --- The badge-print scene ----------------------------------------------- */
.cm-hero__scene {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cm-scene {
  position: relative;
  width: 340px;
  max-width: 100%;
  height: 460px;
  flex: none;
}

/* faint decorative grid behind the badge */
.cm-scene__blend {
  position: absolute;
  inset: 0 0 20px;
  width: 100%;
}

/* Clip window the badge sits in (and slides up through when animated). */
.cm-scene__clip {
  position: absolute;
  left: 50%;
  bottom: 111px;
  width: 340px;
  height: 340px;
  margin-left: -170px;
  overflow: hidden;
  pointer-events: none;
}

/* The printed badge card — positioned within .cm-scene__clip. */
.cm-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 216px;
  height: 288px;
  margin-left: -108px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 48px -24px rgba(10, 21, 32, 0.55);
  display: flex;
  flex-direction: column;
  padding: 16px 16px 14px;
  box-sizing: border-box;
}

.cm-badge__event {
  margin: 0 0 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cm-muted);
}

.cm-badge__rule {
  height: 5px;
  background: var(--cm-red);
  border-radius: 2.5px;
  margin-bottom: 14px;
}

.cm-badge__name {
  margin: 0 0 4px;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--cm-ink);
}

.cm-badge__role {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--cm-muted);
}

.cm-badge__qr {
  width: 84px;
  height: 84px;
  margin-top: auto;
}

.cm-scene__printer {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 340px;
  margin-left: -170px;
  display: block;
}

@media (max-width: 620px) {
  .cm-scene {
    transform: scale(0.82);
    transform-origin: bottom center;
  }
}
