/* Intro scrub progress, 0 (centred, covered, page hidden) -> 1 (rested,
   revealed, scrollable), driven by HeroIntro. Global so the body-level portal
   (backdrop + floating wordmark) inherits it too. Default is the *finished*
   state, so with no JS (or reduced motion) the page renders rested and
   scrollable. `--bl-backdrop` lives here for the same reason: the portal is a
   child of document.body, not of .bingo-landing. */
:root {
  --bl-p: 1;
  --bl-backdrop:
    radial-gradient(
      48% 6% at 50% 1%,
      rgba(196, 24, 150, 0.16),
      rgba(196, 24, 150, 0) 100%
    ),
    radial-gradient(
      48% 7% at 50% 99%,
      rgba(196, 24, 150, 0.14),
      rgba(196, 24, 150, 0) 100%
    ),
    radial-gradient(
      44% 20% at 50% 47%,
      rgba(30, 82, 170, 0.14),
      rgba(30, 82, 170, 0) 100%
    ),
    linear-gradient(
      to right,
      #121213 0%,
      #16141c 5%,
      #1c1922 14%,
      #211d29 28%,
      #241f2c 50%,
      #211d29 72%,
      #1c1922 86%,
      #16141c 95%,
      #121213 100%
    );
}

/* The design is specified at 375px and 1280px. Everything between those two
   widths is interpolated with clamp(), and every image box is sized in % of its
   column, so tablets and large phones scale instead of snapping. */
.wJXEapqe8EuY0ATf_jUy {
  --bl-accent: #ffbceb;
  --bl-primary: #ffffff;
  --bl-secondary: #e3d5f2;
  --bl-tertiary: rgba(227, 213, 242, 0.7);
  --bl-emerald: #beef70;
  --bl-inverse: #0a0a0a;
  --bl-inverse-secondary: #1c004b;
  --bl-overlay-dark: rgba(11, 2, 27, 0.56);
  --bl-overlay-light: rgba(227, 213, 242, 0.36);
  --bl-overlay-light-strong: rgba(227, 213, 242, 0.77);
  --bl-cta-gradient: linear-gradient(
    154.81deg,
    #ffeba5 5.295%,
    #ffc700 80.945%,
    #ffe27b 94.705%
  );

  /* 375px -> 1280px interpolations */
  --bl-top: clamp(120px, 83.5359px + 9.7238vw, 208px);
  --bl-logo-top: clamp(16px, 12.6851px + 0.884vw, 24px);
  --bl-section-gap: clamp(48px, 8.221px + 10.6077vw, 144px);
  --bl-copy-gap: clamp(4px, 2.3425px + 0.442vw, 8px);
  --bl-title-size: clamp(32px, 22.0552px + 2.6519vw, 56px);
  --bl-title-height: clamp(40px, 30.0552px + 2.6519vw, 64px);
  --bl-body-size: clamp(14px, 13.1713px + 0.221vw, 16px);
  --bl-body-height: clamp(16px, 14.3425px + 0.442vw, 20px);
  --bl-card-gap: clamp(12px, 10.3425px + 0.442vw, 16px);
  --bl-hero-gap: clamp(16px, 12.6851px + 0.884vw, 24px);
  --bl-block-gap: clamp(16px, 12.6851px + 0.884vw, 24px);

  --bl-join-duration: 0.55s;
  --bl-join-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bl-swap-duration: 0.7s;
  --bl-swap-ease: cubic-bezier(0.33, 0, 0.15, 1);
  --bl-live-line: 16px;

  position: relative;
  width: 100%;
  /* `clip`, not `hidden`: hidden makes this a scroll container, and a view()
     timeline inside it would then measure against a box that never scrolls. */
  overflow: clip;
  padding: var(--bl-top) 24px 80px;
  background-color: #121213;
  /* Approximates the nebula fill (see --bl-backdrop): magenta glow top and
     bottom, a cooler one through the middle, over a vignetted purple field. */
  background-image: var(--bl-backdrop);
  background-repeat: no-repeat;
}

/* The intro overlay is portalled to document.body so it sits above the whole
   app chrome — the header line at the top and the floating NavBar at the
   bottom included — which a layer nested in the page could never cover. Fixed,
   full-bleed, and pointer-opaque so nothing beneath it is clickable during the
   intro (wheel/touch still reach the window listeners by bubbling). */
.wmVlO5S_5eiJR136iWZH {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: auto;
}

/* "Scroll to start" cue: a mouse outline with a dot dropping inside it, at
   three-quarters height so it clears the enlarged wordmark. Fades out over the
   first 10% of the intro (--bl-p 0 -> 0.1). */
.t5DGAnJ207vZ3sJx1aGa {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: clamp(0, calc((0.1 - var(--bl-p)) * 10), 1);
  pointer-events: none;
}

.t5DGAnJ207vZ3sJx1aGa::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  animation: F2fPFHTikJAUb3V7oePg 1.6s ease-in-out infinite;
}

@keyframes F2fPFHTikJAUb3V7oePg {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* An opaque copy of the page background that hides everything during the intro,
   then fades out as the wordmark docks (p 0 -> 1) to reveal the landing page. */
.ep9y1QxK7K8_BZ2bFnvB {
  position: absolute;
  inset: 0;
  background-color: #121213;
  background-image: var(--bl-backdrop);
  background-repeat: no-repeat;
  opacity: calc(1 - var(--bl-p));
}

.njh7FtpdrYiJk3WotDK3 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(24.62px, 19.5772px + 1.3448vw, 36.79px);
  background: linear-gradient(#121212, rgba(18, 18, 18, 0));
  pointer-events: none;
  z-index: 2;
}

.qJBFvNmXwfTadxELN2NA {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 960px;
  flex-direction: column;
  margin: 0 auto;
  gap: var(--bl-section-gap);
  z-index: 1;
}

/* The hero wordmark: the letters and the three decor clouds are separate
   layers, positioned in % of this box exactly as the design's group nests them.
   The box interpolates 375px -> 1280px, so every layer scales with it. */
.psGAKBmjLUetwWLApW_y {
  --bl-logo-width: clamp(196.42px, 129.8316px + 17.7569vw, 357.12px);

  position: absolute;
  top: calc(var(--bl-logo-top) - var(--bl-top));
  left: 50%;
  width: var(--bl-logo-width);
  margin-left: calc(var(--bl-logo-width) / -2);
  aspect-ratio: 2.232;
}

/* The floating clone the intro animates: a fixed copy pinned onto the resting
   wordmark's measured rect (--bl-rest-*), then lifted to viewport centre and
   enlarged at p=0 and eased back to the rect at p=1 — so it docks exactly onto
   the in-flow wordmark it hands off to. --bl-dx/dy centre it (scale keeps the
   centre, translate moves it there); --bl-intro-grow is measured per load so a
   narrow screen never overflows. */
._p5n9stPYbD9t0oqZBcm {
  position: fixed;
  top: var(--bl-rest-top, 0);
  left: var(--bl-rest-left, 0);
  width: var(--bl-rest-width, auto);
  margin-left: 0;
  transform-origin: center;
  transform: translate(
      calc(var(--bl-dx, 0px) * (1 - var(--bl-p))),
      calc(var(--bl-dy, 0px) * (1 - var(--bl-p)))
    )
    scale(calc(1 + var(--bl-intro-grow, 0) * (1 - var(--bl-p))));
}

.psGAKBmjLUetwWLApW_y img {
  position: absolute;
  object-fit: contain;
}

/**
 * Ambient drift, same tuning as the demo end card's clouds (`CLOUD_FLOAT` in
 * DemoBingoPromotion): rise by a few px and settle back, sinusoidal in and out.
 * That hook times a full up-and-down cycle; `alternate` times one direction, so
 * the periods here are half of the demo's. They share no common factor, so the
 * three never resynchronise. The negative delays are what the hook could not do
 * — in CSS they shift the clock, not the starting value, so no travel is lost.
 */
@keyframes fFvsMFMOkqd5tU11IfOK {
  to {
    transform: translateY(calc(var(--bl-cloud-rise) * -1));
  }
}

.fasaV4m1wr4QGlJdZves,
.lnSYhiw8y1ChlCsmsXor,
.Ui5jSHqZj6UNF0Ry07dw {
  animation: fFvsMFMOkqd5tU11IfOK var(--bl-cloud-period) ease-in-out infinite alternate;
  animation-delay: var(--bl-cloud-offset);
}

.fasaV4m1wr4QGlJdZves,
.lnSYhiw8y1ChlCsmsXor,
.Ui5jSHqZj6UNF0Ry07dw {
  translate: calc(var(--bl-cloud-shift) * (1 - min(1, var(--bl-p) / 0.8))) 0;
}

.fasaV4m1wr4QGlJdZves {
  top: 9.86%;
  left: 39.9%;
  width: 43.44%;
  height: 64.57%;
  filter: brightness(0.45);
  --bl-cloud-rise: 5px;
  --bl-cloud-period: 2950ms;
  --bl-cloud-offset: 0ms;
  --bl-cloud-shift: -10%;
}

.P784Au8wX75Z_X6MP8Bd {
  top: 33.74%;
  left: 13.9%;
  width: 64.1%;
  height: 46.5%;
}

.lnSYhiw8y1ChlCsmsXor {
  top: 41.2%;
  left: -0.84%;
  width: 26.76%;
  height: 45.19%;
  --bl-cloud-rise: 7px;
  --bl-cloud-period: 2150ms;
  --bl-cloud-offset: -800ms;
  --bl-cloud-shift: 51%;
}

.Ui5jSHqZj6UNF0Ry07dw {
  top: 37.75%;
  left: 60.37%;
  width: 39.71%;
  height: 59.38%;
  --bl-cloud-rise: 9px;
  --bl-cloud-period: 1850ms;
  --bl-cloud-offset: -1300ms;
  --bl-cloud-shift: -35%;
}

/* --- shared blocks ------------------------------------------------------ */

.I6BCCW7of5VUmjmA8ADz {
  display: flex;
  flex-direction: column;
}

.GEDVC5gUc4LVSWhXoowh {
  display: flex;
  flex-direction: column;
  gap: var(--bl-copy-gap);
}

/* The lower half of the design keeps an 8px copy rhythm on mobile too. */
.Csde3x0wfte8CakbRw5n {
  gap: 8px;
}

.WyEJvbltxuxbCWpsaJh8 {
  margin: 0;
  color: var(--bl-accent);
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 16px;
  text-transform: uppercase;
}

.j6muHSiWXumqmJ7iRTxH {
  margin: 0;
  color: var(--bl-primary);
  font-family: "DMSerifText", serif;
  font-size: var(--bl-title-size);
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: var(--bl-title-height);
}

.jC3GgfWAlsjXm7Rfq3wB {
  margin: 0;
  color: var(--bl-secondary);
  font-family: "Inter-Regular", sans-serif;
  font-size: var(--bl-body-size);
  font-weight: 400;
  line-height: var(--bl-body-height);
}

.jC3GgfWAlsjXm7Rfq3wB + .jC3GgfWAlsjXm7Rfq3wB {
  margin-top: 16px;
}

.TXxk6JVE2p4OCz8mfvoZ {
  display: inline-flex;
  height: 56px;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  padding: 0 40px;
  border-radius: 100px;
  background-image: var(--bl-cta-gradient);
  color: var(--bl-inverse);
  cursor: pointer;
  font-family: "Inter-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}

.QHLPnrJbFY_JU1MzVkH_ {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* --- hero --------------------------------------------------------------- */

.XSx6m2KF2UyExANmpMDn {
  gap: var(--bl-hero-gap);
}

.bgDsJ_zY8Y9Ur4W3hJcK {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Ac_IozqDYgraNqWdZD5A {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ZhmnLnNGQEblQMdp6L5r {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.LiK3CYodTN8_CWUDE1NK {
  margin: 0;
  color: var(--bl-tertiary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

.EBOnH7JOqcsQO0njebwv {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.fJHg_bLUrAOiseEJs9tC {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fJHg_bLUrAOiseEJs9tC[data-single] {
  justify-content: center;
}

.fJHg_bLUrAOiseEJs9tC[data-single] .j0L71QIXFcx5DEUOdjWQ {
  flex: 0 0 auto;
}

.YSpprmi2kd49axSackWi {
  color: var(--bl-secondary);
  font-family: "Inter-Regular", sans-serif;
  font-size: var(--bl-body-size);
  line-height: var(--bl-body-height);
}

.j0L71QIXFcx5DEUOdjWQ {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  background-color: var(--bl-overlay-dark);
  gap: 8px;
}

.fWErOh50kJCCnYKzQMqP {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.J6DXjThRCKzJZGbRCbFS {
  display: flex;
  flex-direction: column;
  color: var(--bl-primary);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 14px;
  font-weight: 600;
  gap: 4px;
  line-height: 16px;
  white-space: nowrap;
}

/* Shared frame for both intro clips: same box, aspect and zoom in each
   breakpoint. The frame clips the zoom, so the layout never grows. */
._km94W6L2Ehvnv2hmIKH {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2066;
  overflow: hidden;
}

.XSx6m2KF2UyExANmpMDn ._km94W6L2Ehvnv2hmIKH video {
  transform: translateY(2.3%) scale(1.76);
}

.RO8T8V_gB963UT6MAhTL ._km94W6L2Ehvnv2hmIKH video {
  transform: translateY(11%) scale(1.96);
}

.dAQJLCG0DpTrhzHKr5a8 {
  display: flex;
  flex-direction: column;
  padding: var(--bl-card-gap);
  border-radius: 24px;
  background-color: var(--bl-overlay-light);
  gap: var(--bl-card-gap);
}

.lGqt5DwJuMsTbYVje2gv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px;
  border-radius: 16px;
  background-color: var(--bl-overlay-light-strong);
  gap: 4px;
  overflow: hidden;
}

.uQDGp1QnYQpWLLls4UFq {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px 4px 4px;
  border-radius: 100px;
  background-color: #ffffff;
  gap: 4px;
}

.KHTx04mh7En09Jnfx0Hb {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-radius: 100px;
  background-color: #2cb072;
  filter: drop-shadow(0 0 5px #2cb072);
  animation: FfS96Mmj9wy4FcJFfKxm 1.5s ease-in-out infinite;
}

@keyframes FfS96Mmj9wy4FcJFfKxm {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgb(44 176 114 / 30%);
    filter: drop-shadow(0 0 3px #2cb072);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 7px rgb(44 176 114 / 0%);
    filter: drop-shadow(0 0 12px #2cb072);
    transform: scale(1.35);
  }
}

.HuyKqS_vFr5U65LmVSIT {
  color: var(--bl-inverse);
  font-family: "Inter-Regular", sans-serif;
  font-size: clamp(10px, 9.1713px + 0.221vw, 12px);
  font-weight: 400;
  line-height: clamp(12px, 10.3425px + 0.442vw, 16px);
  white-space: nowrap;
}

/* One line tall, wearing the strip's edge fade. */
.tHy1ki45qHLZOxUF0bkk {
  height: var(--bl-live-line);
  mask-image: linear-gradient(to right, #000 70%, transparent 100%);
  overflow: hidden;
}

/* Both names sit on one row: the new one unwinds its own width off the left
   edge and shoves the old one out to the right, same trick as the pills. */
.WnTxUb6RyNgmurdLk9zC {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 8px;
}

.QYYVTPK_12BTHqk9cFbs {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding-left: 4px;
  gap: 4px;
  animation: jY81BGY2YWJkJMz1OUW6 var(--bl-swap-duration) var(--bl-swap-ease) both;
}

.QYYVTPK_12BTHqk9cFbs[data-leaving] {
  animation: VmPhPLQQJLYAZgIHzcAQ var(--bl-swap-duration) var(--bl-swap-ease) both;
}

@keyframes VmPhPLQQJLYAZgIHzcAQ {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.AEChqpXzAgdNRXSiviv3 {
  color: var(--bl-inverse);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: clamp(12px, 11.1713px + 0.221vw, 14px);
  font-weight: 600;
  line-height: 16px;
}

.eZ98fyM5mpZmYTNrTV7g {
  color: var(--bl-inverse-secondary);
  font-family: "Inter-Regular", sans-serif;
  font-size: clamp(10px, 9.1713px + 0.221vw, 12px);
  font-weight: 400;
  line-height: clamp(12px, 10.3425px + 0.442vw, 16px);
}

.lpvSU5VJGIF5cMm6pwre {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.LVQ0tzcMIMM3Pzkq6rUe {
  display: flex;
  height: 40px;
  flex: 1;
  min-width: 0;
  align-items: center;
  gap: 8px;
  mask-image: linear-gradient(to right, #000 60%, transparent 100%);
  overflow: hidden;
}

.Y5e386zD30AInPh_jmNF {
  display: inline-flex;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  padding: 4px 8px 4px 4px;
  border-radius: 100px;
  background-color: #ffffff;
  gap: 4px;
  /* Held back until the live line has announced the name. */
  animation: jY81BGY2YWJkJMz1OUW6 var(--bl-join-duration) var(--bl-join-ease)
    var(--bl-swap-duration) both;
}

/**
 * A joining item starts pulled fully off the left edge by its own width, so it
 * takes up no room, then unwinds that margin at full size — the row is shoved
 * along by the space it reclaims. `--bl-enter` is measured per element on
 * mount; without it this is a no-op.
 */
@keyframes jY81BGY2YWJkJMz1OUW6 {
  from {
    margin-left: var(--bl-enter, 0px);
  }

  to {
    margin-left: 0;
  }
}

.sC7qFvHaSHgQvrYeR8KL {
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--bl-inverse-secondary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}

.QMoogsmCWZhU1Nkw0aZo {
  background-color: rgba(255, 188, 235, 0.36);
}

.E32t4KzvHC2QD666Gyt1 {
  background-color: rgba(188, 215, 255, 0.36);
}

.fXqMunLudbmoHMKMAzwp {
  background-color: rgba(217, 188, 255, 0.36);
}

.lY7XI3Bniqt_IDMSqiTQ {
  color: var(--bl-inverse);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: clamp(12px, 11.1713px + 0.221vw, 14px);
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

.uQdH1vcPb9NsOzyr_6Ug {
  width: 5.33px;
  height: 5.33px;
  flex-shrink: 0;
  margin: 0 1.33px;
  border-radius: 100px;
  background-color: #e3d5f2;
}

.iRQWxhW1r3KbVlqTtdmf {
  color: var(--bl-inverse-secondary);
  font-family: "Inter-Regular", sans-serif;
  font-size: clamp(10px, 9.1713px + 0.221vw, 12px);
  font-weight: 400;
  line-height: clamp(12px, 10.3425px + 0.442vw, 16px);
  white-space: nowrap;
}

._tXeHO9sRrgLgJ6fmS5h {
  display: inline-flex;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 100px;
  background-color: #ffffff;
  color: var(--bl-inverse);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: clamp(12px, 11.1713px + 0.221vw, 14px);
  font-weight: 600;
  line-height: 16px;
  white-space: nowrap;
}

/**
 * Odometer column: a wheel of the digits it turns through, ending on the one it
 * lands on, wound back to its first row and driven up to its last. Every column
 * takes the same beat, so one that turned ten places spins and one that turned
 * a single place just steps over. A column that did not change is rendered as a
 * bare character with no wheel and no animation at all, so it cannot drift.
 * Callers set the row height to their own line height.
 */
.EbDQDnSQ2o0DLo3slTZc {
  display: inline-block;
  height: var(--bl-odometer-row, 16px);
  font-variant-numeric: tabular-nums;
  overflow: hidden;
}

.JUxnsHhJU42AeHvXEkrh {
  display: grid;
  grid-auto-rows: var(--bl-odometer-row, 16px);
  animation: DW01anxgSHGiqn9nI_pX var(--bl-swap-duration) var(--bl-swap-ease) both;
  /* Motion blur in step with how far the wheel has to travel, since the beat is
     fixed and a long spin is that much faster. */
  --bl-spin-blur: min(calc(var(--bl-spin-rows, 1) * 1.5px), 4px);
}

@keyframes DW01anxgSHGiqn9nI_pX {
  from {
    filter: blur(var(--bl-spin-blur));
    transform: none;
  }

  to {
    filter: none;
    transform: translateY(
      calc(-1 * var(--bl-spin-rows, 1) * var(--bl-odometer-row, 16px))
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .l8fO6SZ1M94NRZFZNDQ5 img,
  .fasaV4m1wr4QGlJdZves,
  .lnSYhiw8y1ChlCsmsXor,
  .Ui5jSHqZj6UNF0Ry07dw,
  .KHTx04mh7En09Jnfx0Hb,
  .QYYVTPK_12BTHqk9cFbs,
  .Y5e386zD30AInPh_jmNF {
    /* Kills the scroll-driven motion too, which the reader did not ask for. */
    animation: none;
  }

  /* HeroIntro never mounts the overlay under reduced motion; this is the
     belt-and-braces so it can never veil the page even if it slipped through. */
  .wmVlO5S_5eiJR136iWZH {
    display: none;
  }

  /* No spin, so park the wheel on its last row and drop the ones above it. */
  .JUxnsHhJU42AeHvXEkrh {
    animation: none;
    transform: translateY(
      calc(-1 * var(--bl-spin-rows, 1) * var(--bl-odometer-row, 16px))
    );
  }

  /* Without the roll the window would be parked on the outgoing name. */
  .QYYVTPK_12BTHqk9cFbs[data-leaving] {
    display: none;
  }
}

.G55nINSBGBKtyFbjK1jL {
  margin: 0;
  color: var(--bl-tertiary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

/* --- image + copy sections ---------------------------------------------- */

.ipEN3MeQM3ugg7EaNzfF {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zb_styffYaZKLflRvcsl {
  display: flex;
  flex-direction: column;
}

.ND0r3OFGXnsu5dGamXsx {
  gap: 32px;
}

.ftwOztuQ1alNBRVBRlcU {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 8px;
}

.VbaCLwlwwVP8bS9toBT2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4964;
  border-radius: 16px;
  overflow: hidden;
}

/* The design crops the photo itself and lays a dark wash over it. */
.VbaCLwlwwVP8bS9toBT2 img {
  position: absolute;
  top: -13.28%;
  left: -43.03%;
  width: 143.03%;
  height: 122.82%;
  max-width: none;
}

.VbaCLwlwwVP8bS9toBT2::after {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(
    266.6deg,
    rgba(11, 2, 27, 0) 3.981%,
    rgba(11, 2, 27, 0.9) 100.08%
  );
}

/**
 * Scrolling lifts the wash off the photo — the photo itself never moves. 50% is
 * the figure at rest in the middle of the viewport, wash fully gone, and it
 * slides and fades back to the design's state on the way out.
 *
 * The slide is what makes it read as parallax rather than a plain fade: the wash
 * is a near-horizontal gradient, dark end at the left, so dragging it left pulls
 * the dark band off the frame. It needs no oversizing to do that — the trailing
 * end of the gradient is already fully transparent, so the strip it uncovers on
 * the right had nothing in it to lose.
 */
@keyframes QjjbBdKNPYlBSkjLCrx3 {
  0%,
  100% {
    translate: 0;
    opacity: 1;
  }

  50% {
    translate: -30% 0;
    opacity: 0;
  }
}

/* Scrubbed by useScrollScrub via `--bl-scrub` on `.community-photo`, which
   inherits to `::after` (see the card-fan block). The hook measures it over the
   `contain` range — the whole run fits into the time the figure is fully on
   screen. A no-preference media query keeps the wash still for reduced motion,
   with the names nested so the shared reduced-motion block can't win them back. */
@media (prefers-reduced-motion: no-preference) {
  .VbaCLwlwwVP8bS9toBT2::after {
    animation-name: QjjbBdKNPYlBSkjLCrx3;
    animation-duration: 1s;
    animation-play-state: paused;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
    animation-delay: calc(var(--bl-scrub, 0) * -1s);
  }
}

.botDyX1QzGxWFOMTOcHN {
  margin: 0;
  color: var(--bl-tertiary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  text-align: center;
}

.rZNdKRW5GqErkzF_rC6w {
  align-items: center;
  align-self: center;
  margin-top: var(--bl-block-gap);
}

/* --- vault rewards ------------------------------------------------------ */

.qJdhsZqd23zdLt12EDvM {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 8px;
  border: 1px solid #14613e;
  border-radius: 100px;
  backdrop-filter: blur(1px);
  background-color: rgba(20, 97, 62, 0.6);
  color: var(--bl-emerald);
  font-family: "Inter-Medium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.V3IgsYH_tGww4eD6kF42 {
  display: flex;
  width: 100%;
  max-width: 556px;
  align-self: center;
  margin-top: var(--bl-block-gap);
  gap: clamp(8px, 0.5414px + 1.989vw, 26px);
}

.LS1iFSknsQElmFDSMSUO {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 16px clamp(12.33px, 10.8093px + 0.4055vw, 16px);
  border-radius: 16px;
  background-color: var(--bl-overlay-dark);
  gap: 16px;
}

.l_7yLBZ8ClIU9d0CS4NR {
  color: var(--bl-primary);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: clamp(14px, 13.1713px + 0.221vw, 16px);
  font-weight: 600;
  line-height: clamp(16px, 12.6851px + 0.884vw, 24px);
  white-space: nowrap;
}

.gTgD0pyLOuZlVpCppr7W {
  display: flex;
  height: clamp(60px, 55.8564px + 1.105vw, 70px);
  align-items: center;
  justify-content: center;
}

.gTgD0pyLOuZlVpCppr7W img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.bVFK3yRq2uPnDZutJAAR {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 16px;
  background-color: var(--bl-overlay-dark);
}

.QdskSjx3zcEpW_DG2ZWO {
  width: 100%;
  margin-top: var(--bl-block-gap);
}

/* --- charity ------------------------------------------------------------ */

.iazyAQIRE1k_q13IXupo {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 28.6851px + 0.884vw, 40px);
  gap: 16px;
}

.NzPfsNi_4coYQFcL2PSA {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.Hl7U2YH2tQxBHS9kuqai {
  position: relative;
  margin: 0;
  color: var(--bl-primary);
  font-family: "DMSerifText", serif;
  font-size: 18px;
  letter-spacing: -0.2px;
  line-height: 28px;
  z-index: 1;
}

/* Positioned by the glyph box the design uses (cap-height trimmed), so the
   marks keep their place relative to the quote at every width. */
.JFKTbBUdQ8cymgn9mMjG {
  position: absolute;
  color: var(--bl-accent);
  font-family: "DMSerifText", serif;
  font-size: clamp(69.5px, 44.4309px + 6.6851vw, 130px);
  line-height: 0.66;
  opacity: 0.2;
  pointer-events: none;
}

/* Anchored to the quote block's own corners in `em`, so the marks follow the
   text however it wraps and scale with the interpolated font size. */
.F4nm3DM1zSP5SuR1ZgHv {
  top: -0.16em;
  left: 0;
}

.atYXk3PU8sHz6RWEIe3g {
  right: 0;
  /* Clears the last line by a constant 6px, whatever the mark scales to, so it
     never lands on the quote text at any width. */
  bottom: calc(-0.66em - 6px);
}

.jAl2PW5oNJIiCzAygNUg {
  margin: 0;
  color: var(--bl-secondary);
  font-family: "Inter-Regular", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.XjBelyLNBr5xGMIYkpy4 {
  align-self: flex-start;
  color: var(--bl-tertiary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: underline;
}

.MUBBaY4DNGke1AYUSWkj {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  padding: 16px 40px;
  border-radius: 16px;
  background-color: var(--bl-overlay-dark);
  gap: 8px;
}

.UFDMfiHy5vFaKfSjuMFf {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bl-emerald);
  font-family: "Inter-Regular", sans-serif;
  font-size: 14px;
  gap: 8px;
  line-height: 16px;
}

.afFY0oibMsykn_K3SH72 {
  --bl-odometer-row: clamp(48px, 43.0276px + 1.326vw, 60px);

  display: flex;
  justify-content: center;
  margin: 0;
  color: var(--bl-emerald);
  font-family: "DMSerifText", serif;
  font-size: clamp(40px, 36.6851px + 0.884vw, 48px);
  letter-spacing: -0.5px;
  line-height: var(--bl-odometer-row);
  white-space: nowrap;
}

.AytWl8sp_RExWL1e4mOc {
  margin: 0;
  color: var(--bl-primary);
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

/* --- closing ------------------------------------------------------------ */

.lDjoiSBWTjEirA0B6OgV {
  width: 52.45%;
  align-self: center;
  aspect-ratio: 1.2251;
}

.lDjoiSBWTjEirA0B6OgV img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rlqfrAfWSsHwdxHyjAUq {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 24px;
}

/* --- legal -------------------------------------------------------------- */

.xqIetdMgCrmnvO06ql07 {
  margin: 0;
  color: var(--bl-tertiary);
  font-family: "Inter-Medium", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

.s1DzzllY8yNqisJuNrCj {
  color: inherit;
  text-decoration: underline;
}

/* --- decorations -------------------------------------------------------- */

.l8fO6SZ1M94NRZFZNDQ5 {
  display: none;
}

/* --- tablet ------------------------------------------------------------- */

@media (min-width: 600px) {
  .wJXEapqe8EuY0ATf_jUy {
    padding-right: 40px;
    padding-left: 40px;
  }

  /* Stacked sections stay readable instead of stretching to the full width. */
  .qJBFvNmXwfTadxELN2NA {
    max-width: 640px;
  }
}

/* --- desktop ------------------------------------------------------------ */

@media (min-width: 901px) {
  .qJBFvNmXwfTadxELN2NA {
    max-width: 960px;
  }

  .j6muHSiWXumqmJ7iRTxH {
    letter-spacing: -0.5px;
  }

  .bgDsJ_zY8Y9Ur4W3hJcK {
    flex-direction: row;
    align-items: center;
    gap: 2.5%;
  }

  .Ac_IozqDYgraNqWdZD5A {
    flex: 1;
    min-width: 0;
  }

  .XSx6m2KF2UyExANmpMDn ._km94W6L2Ehvnv2hmIKH {
    flex: 0 0 34.31%;
    aspect-ratio: 1.0979;
  }

  .RO8T8V_gB963UT6MAhTL ._km94W6L2Ehvnv2hmIKH {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1.5864;
  }

  .ZhmnLnNGQEblQMdp6L5r {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .ZhmnLnNGQEblQMdp6L5r:has(.fJHg_bLUrAOiseEJs9tC[data-single]) {
    justify-content: flex-start;
    gap: 80px;
  }

  .j0L71QIXFcx5DEUOdjWQ {
    flex: 0 0 auto;
  }

  .QYYVTPK_12BTHqk9cFbs {
    padding-left: 0;
    gap: 8px;
  }

  .lGqt5DwJuMsTbYVje2gv {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .ipEN3MeQM3ugg7EaNzfF {
    flex-direction: row;
    align-items: center;
    gap: 2.5%;
  }

  .zb_styffYaZKLflRvcsl {
    flex: 1;
    min-width: 0;
  }

  .ftwOztuQ1alNBRVBRlcU {
    flex: 0 0 43.23%;
  }

  .ND0r3OFGXnsu5dGamXsx {
    flex: 1;
    min-width: 0;
  }

  .xaIc3iVaisUsExDy8QB3 {
    align-items: center;
    text-align: center;
  }

  .xaIc3iVaisUsExDy8QB3 .GEDVC5gUc4LVSWhXoowh {
    align-items: center;
  }

  .F09ryljOnywwzZAE83Tl {
    flex-direction: row;
    align-items: center;
    gap: 2.5%;
  }

  .BYSmmD6NsPE87kN44nlc {
    flex: 1;
    min-width: 0;
  }

  .Hl7U2YH2tQxBHS9kuqai {
    max-width: 511px;
  }

  .MUBBaY4DNGke1AYUSWkj {
    flex: 0 0 38.44%;
    margin-top: 0;
  }

  .HbAAGh3QUDmXGMAanY9w {
    flex-direction: row;
    align-items: center;
    gap: 2.5%;
  }

  .lDjoiSBWTjEirA0B6OgV {
    width: auto;
    flex: 0 0 27.57%;
    align-self: auto;
  }

  .rlqfrAfWSsHwdxHyjAUq {
    flex: 1;
    min-width: 0;
    margin-top: 0;
  }
}

/* The floating balls are placed against the design's own 1280px metrics, so
   they only show once the layout has reached that size. */
@media (min-width: 1280px) {
  .l8fO6SZ1M94NRZFZNDQ5 {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 960px;
    height: 0;
    margin-left: -480px;
    pointer-events: none;
    z-index: 0;
  }

  .GBTlg_z0Kr4us8Lv8gjB {
    z-index: 2;
  }

  .l8fO6SZ1M94NRZFZNDQ5 img {
    position: absolute;
    object-fit: contain;
  }

  /* The one cloud among the balls drifts like the wordmark's do. */
  ._vZShWGOWN3QKmdKnFfe {
    --bl-cloud-rise: 13px;
    --bl-cloud-period: 2600ms;
    --bl-cloud-offset: -600ms;

    animation: fFvsMFMOkqd5tU11IfOK var(--bl-cloud-period) ease-in-out infinite alternate;
    animation-delay: var(--bl-cloud-offset);
  }

  /**
   * Each ball trails the scroll and settles with a bounce, and only while it is
   * on screen: useScrollScrub sets `--bl-scrub` per ball off its own box (cover
   * range), pinning it to the start pose until it rises from the bottom and
   * freezing it at the end pose once it has left (`animation-fill-mode: both`).
   *
   * The lag is set per ball from its width, in `FloatingBalls.tsx`.
   */
  @keyframes KHtiByRWYleYri3r0OkI {
    0% {
      translate: 0 calc(var(--bl-ball-lag) * -1);
      animation-timing-function: ease-out;
    }

    /* One slight overshoot on the way down, a couple of px at most — enough to
       feel like weight catching up, not a wobble. */
    68% {
      translate: 0 calc(var(--bl-ball-lag) * 1.04);
      animation-timing-function: ease-in-out;
    }

    100% {
      translate: 0 var(--bl-ball-lag);
    }
  }

  /* Scrubbed per-ball by useScrollScrub: --bl-scrub is set on each ball from its
     own view-progress (cover range), and a negative delay parks the paused trail
     at that frame — see the card-fan block above. */
  .kJYhRNK2lSwPvI8D3NyR {
    animation-name: KHtiByRWYleYri3r0OkI;
    animation-duration: 1s;
    animation-play-state: paused;
    animation-fill-mode: both;
    animation-delay: calc(var(--bl-scrub, 0) * -1s);
  }
}

/* The 375px design centres every section's copy and CTA; only the players
   card keeps its left-aligned rows. */
@media (max-width: 900px) {
  .GEDVC5gUc4LVSWhXoowh {
    align-items: center;
    text-align: center;
  }

  .qJdhsZqd23zdLt12EDvM,
  .XjBelyLNBr5xGMIYkpy4 {
    align-self: center;
  }

  /* The 375px design runs every CTA the full width of its column. */
  .TXxk6JVE2p4OCz8mfvoZ,
  .rZNdKRW5GqErkzF_rC6w {
    align-self: stretch;
  }

  .fJHg_bLUrAOiseEJs9tC {
    order: 1;
  }

  .ZhmnLnNGQEblQMdp6L5r .QHLPnrJbFY_JU1MzVkH_ {
    order: 2;
  }

  .RO8T8V_gB963UT6MAhTL ._km94W6L2Ehvnv2hmIKH {
    aspect-ratio: 327 / 251;
  }

  .RO8T8V_gB963UT6MAhTL {
    gap: 16px;
  }

  .XjBelyLNBr5xGMIYkpy4 {
    font-size: 12px;
  }

  .Hl7U2YH2tQxBHS9kuqai,
  .jAl2PW5oNJIiCzAygNUg {
    text-align: center;
  }

  .MUBBaY4DNGke1AYUSWkj {
    order: -1;
    margin-top: 0;
    margin-bottom: 24px;
  }
}


/*# sourceMappingURL=145.6adc03ddd734d1d3521b.css.map*/