/* BetStop page (frames betstop 1440 / betstop-mobile 390). Numbers from fig-spec. */

/* ── shared bits ──────────────────────────────────────────────────────── */
.bs-mob { display: none; }
.bs-br-m { display: none; }
.bs-eyebrow {
  text-transform: uppercase;
  font-family: var(--font-body); font-weight: 800; font-size: 12px; line-height: 13px;
  letter-spacing: 1.56px; color: var(--color-brand);
}
.bshow .bs-eyebrow { color: var(--color-brand-ink); }   /* a11y: brand on the light section */
/* mockup primary button: 154×39, 12/24 padding, r8, Archivo ExtraBold 14 */
.bs-btn { min-height: 39px; padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; line-height: 15px; }

/* ── hero (betstop-hero) ──────────────────────────────────────────────── */
.bshero {
  display: grid; grid-template-columns: minmax(0, 1fr) 550px;
  height: 557px; overflow: hidden; background: var(--color-surface);
}
.bshero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px var(--container-pad);
}
.bshero__content { display: flex; flex-direction: column; gap: var(--space-24); }
.bshero__meta { display: flex; flex-direction: column; gap: var(--space-24); }
.bshero__crumb {
  font-family: var(--font-body); font-weight: 800; font-size: 12px; line-height: 13px;
  letter-spacing: 1.56px; color: var(--color-brand);
}
.bshero__crumb::before { width: 12px; height: 2px; }
.bshero__crumb-link { color: inherit; text-decoration: none; }
.bshero__crumb-link:hover { text-decoration: underline; }
.bshero__title {
  font-family: var(--font-display); font-weight: 900; font-size: 72px; line-height: 76px;
  letter-spacing: -2.88px; color: var(--color-text-light);
}
.bshero__sub { font-size: 20px; line-height: 28px; font-weight: 500; color: var(--color-brand); }
.bshero__copy { display: flex; flex-direction: column; gap: var(--space-16); }
.bshero__copy p { font-size: 16px; line-height: 26px; color: #a1a8b5; }
.bshero__cta { display: flex; flex-direction: column; align-self: flex-start; align-items: flex-start; gap: var(--space-12); }
.bshero__note { font-size: 12px; line-height: 13px; color: #a1a8b5; }

.bshero__media { position: relative; background: var(--color-bg); }
.bshero__pic { position: absolute; left: 0; top: 0; z-index: 0; width: 100%; height: 525px; }
.bshero__pic img { width: 100%; height: 100%; object-fit: cover; }
/* left-blend: the darkening layer sits ABOVE the photo */
.bshero__media::after {
  content: ""; position: absolute; left: 0; top: 0; z-index: 1; width: 100%; height: 525px; pointer-events: none;
  background: linear-gradient(90deg, #0b0b10 0%, rgba(11, 11, 16, .5) 30%, rgba(11, 11, 16, 0) 70%);
}

/* ── how BetStop works (timeline) ─────────────────────────────────────── */
.bshow {
  display: flex; flex-direction: column; gap: var(--space-64);
  padding: 100px var(--container-pad); background: var(--color-light); color: var(--color-ink);
}
.bshow__head { display: flex; flex-direction: column; gap: var(--space-16); max-width: 760px; }
.bshow__title {
  font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 53px;
  letter-spacing: -1.44px; color: var(--color-ink);
}
.bshow__lead { font-size: 16px; line-height: 26px; color: var(--color-muted-light); }

.bsline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.bsstep { display: grid; grid-template-columns: 100px minmax(0, 1fr); grid-template-rows: auto auto; column-gap: var(--space-40); }
.bsstep__body { display: contents; }
.bsstep__num {
  grid-column: 1; grid-row: 1; justify-self: center;
  font-family: var(--font-mono); font-weight: 900; font-size: 48px; line-height: 62px; color: var(--color-brand);
}
.bsstep__content { grid-column: 2; grid-row: 1 / span 2; align-self: start; display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-12); }
.bsstep__title { font-size: 14px; line-height: 15px; font-weight: 800; letter-spacing: .98px; color: var(--color-ink); }
.bsstep__text { font-size: 16px; line-height: 26px; color: var(--color-ink); max-width: 760px; }
.bsstep__link { line-height: 14px; }
.bsstep:not(:last-child) .bsstep__content { padding-bottom: 40px; }
/* vertical connector under the number (mockup: 2px line, 120px) */
.bsstep__connector { grid-column: 1; grid-row: 2; display: flex; justify-content: center; height: 120px; }
.bsstep__connector::before { content: ""; width: 2px; height: 100%; background: var(--color-brand); }

/* ── what happens after you register (account breakout) ──────────────── */
.bsafter {
  display: flex; flex-direction: column; gap: var(--space-64);
  padding: 100px var(--container-pad); background: var(--color-surface);
}
.bsafter__head { display: flex; flex-direction: column; gap: var(--space-16); }
.bsafter__title {
  font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 53px;
  letter-spacing: -1.44px; color: var(--color-text);
}
.bsafter__lead { font-size: 16px; line-height: 26px; color: var(--color-muted); max-width: 760px; }
.bsstmts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--space-32); row-gap: var(--space-24);
}
.bsstmt {
  display: flex; flex-direction: column; gap: var(--space-16);
  padding: var(--space-24); border-radius: var(--radius-lg);
  background: var(--color-surface-2); box-shadow: inset 0 0 0 1px var(--color-line-dark);
  transition: background-color var(--dur-fast) var(--ease);
}
.bsstmt:hover { background: var(--color-surface-3); }
.bsstmt__num { font-family: var(--font-mono); font-weight: 800; font-size: 18px; line-height: 23px; color: var(--color-brand); }
.bsstmt__title { font-family: var(--font-display); font-weight: 900; font-size: 16px; line-height: 20px; color: var(--color-text); }
.bsstmt__text { font-size: 14px; line-height: 21px; color: var(--color-muted); }

/* ── independence notice ──────────────────────────────────────────────── */
.bsnotice {
  padding: 80px var(--container-pad); background: var(--color-light); color: var(--color-ink);
  box-shadow: inset 0 1px 0 var(--color-brand), inset 4px 0 0 var(--color-brand),
              inset -4px 0 0 var(--color-brand), inset 0 -4px 0 var(--color-brand);
}
.bsnotice__card { display: flex; flex-direction: column; gap: var(--space-20); }
.bsnotice__label { align-self: flex-start; font-weight: 900; font-size: 11px; line-height: 12px; letter-spacing: 1.21px; color: var(--color-brand-ink); }
.bsnotice__body { display: flex; justify-content: space-between; align-items: center; gap: var(--space-32); }
.bsnotice__text { display: flex; flex-direction: column; gap: var(--space-8); max-width: 647px; }
.bsnotice__title { font-family: var(--font-display); font-weight: 900; font-size: 20px; line-height: 25px; color: var(--color-ink); }
.bsnotice__desc { font-size: 16px; line-height: 26px; color: var(--color-ink); }
.bsnotice__btn { flex-shrink: 0; }

/* ── mobile (betstop-mobile 390) ──────────────────────────────────────── */
@media (max-width: 1199px) {
  .bs-desk { display: none; }
  .bs-mob { display: inline; }
  .bs-br-m { display: inline; }
  .bs-eyebrow { font-size: 10px; line-height: 11px; letter-spacing: 1.5px; }
  .bs-btn { width: 100%; min-height: 48px; padding: 0 16px; border-radius: var(--radius-10); }

  .bshero {
    display: flex; flex-direction: column; gap: var(--space-24);
    height: auto; padding: 40px var(--container-pad-m); background: var(--color-bg);
  }
  .bshero__left { display: contents; }
  .bshero__meta { gap: var(--space-12); }
  .bshero__crumb { font-size: 10px; line-height: 11px; letter-spacing: 2px; }
  .bshero__title { font-size: 48px; line-height: 50px; letter-spacing: -1.92px; }
  .bshero__copy { gap: var(--space-24); }
  .bshero__copy p { font-size: 14px; line-height: 22px; color: rgba(237, 233, 227, .6); }
  .bshero__cta { align-self: stretch; align-items: stretch; gap: var(--space-8); }
  .bshero__note { text-align: center; color: var(--color-muted); }
  .bshero__media { height: 220px; border-radius: var(--radius-lg); overflow: hidden; }
  .bshero__media::after { display: none; }
  .bshero__pic { height: 100%; }
  .bshero__pic.bs-desk { display: none; }
  .bshero__pic.bs-mob { display: block; }

  .bshow { gap: var(--space-40); padding: 64px var(--container-pad-m); }
  .bshow__head { gap: var(--space-12); }
  /* mockup box is 3 lines (93px) while the text renders on 2 — keep the box */
  .bshow__title { min-height: 93px; font-size: 28px; line-height: 31px; letter-spacing: -1.12px; }
  .bshow__lead { font-size: 15px; line-height: 23px; color: var(--color-ink); }
  .bsstep { display: flex; flex-direction: column; }
  .bsstep__body { display: flex; flex-direction: column; gap: var(--space-12); }
  .bsstep__num { font-family: var(--font-display); font-size: 36px; line-height: 45px; }
  .bsstep__title { font-size: 13px; line-height: 14px; letter-spacing: 1.04px; }
  .bsstep__text { font-size: 14px; line-height: 22px; }
  .bsstep:not(:last-child) .bsstep__content { padding-bottom: 0; }
  /* connector-wrapper: 64 tall, 16px padding, 32px vertical line at the left edge */
  .bsstep__connector { justify-content: flex-start; height: 64px; padding: 16px 0; }
  .bsstep__connector::before { height: 32px; }

  .bsafter { gap: var(--space-32); padding: 64px var(--container-pad-m); background: var(--color-bg); }
  .bsafter__head { gap: var(--space-12); }
  .bsafter__title { font-size: 26px; line-height: 30px; letter-spacing: 0; }
  .bsafter__lead { font-size: 14px; line-height: 21px; color: rgba(237, 233, 227, .6); }
  .bsstmts { display: flex; flex-direction: column; gap: var(--space-12); }
  .bsstmt { gap: var(--space-8); padding: var(--space-20); box-shadow: none; }
  .bsstmt__num { font-family: var(--font-display); font-weight: 900; font-size: 20px; line-height: 25px; }
  .bsstmt__title { font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 16px; }
  .bsstmt__text { font-size: 13px; line-height: 20px; color: rgba(237, 233, 227, .6); }

  .bsnotice { padding: 48px var(--container-pad-m); box-shadow: none; }
  .bsnotice__card { gap: var(--space-16); padding: var(--space-20); border-radius: var(--radius-lg); background: var(--color-light-2); }
  .bsnotice__label { font-weight: 800; font-size: 12px; line-height: 13px; letter-spacing: .96px; }
  .bsnotice__body { flex-direction: column; align-items: stretch; gap: var(--space-16); }
  .bsnotice__text { gap: var(--space-16); }
  .bsnotice__title { font-size: 20px; line-height: 24px; }
  .bsnotice__desc { font-size: 14px; line-height: 21px; }
}

/* narrow phones: keep the headline lines from breaking mid-phrase */
@media (max-width: 389px) {
  .bshow__title { min-height: 0; font-size: 26px; line-height: 29px; }
}

/* wider than the 1440 frame: the copy column keeps its frame width next to the centred content,
   the photo column takes the rest (the side padding sits on the full-bleed hero, so the token resolves right) */
@media (min-width: 1441px) {
  .bshero { padding-left: var(--container-pad); grid-template-columns: 810px minmax(0, 1fr); }
  .bshero__left { padding-left: 0; }
}
