/* ==========================================================================
   Band Recruitment Lander (/join/) — self-contained stylesheet.
   Mobile-first: base = 375 frame; desktop at min-width:960px.
   Design source: 12-recruitment-lander/design-source/Band Recruitment Lander.dc.html
   Final frames only (…light / …v2). Fee: 18% + VAT.
   ========================================================================== */

:root {
  --rl-charcoal: #1B1B1C;
  --rl-grey: #6E6E76;
  --rl-grey-soft: #8A8590;
  --rl-muted: #55505B;
  --rl-placeholder: #9F98A4;
  --rl-purple: #A23FB0;
  --rl-purple-light: #B95CC4;
  --rl-amber: #FCC463;
  --rl-amber-deep: #F3A23C;
  --rl-amber-ink: #231607;
  --rl-amber-mid: #DB7E12;
  --rl-amber-badge: #B36510;
  --rl-blush: #F7F1F4;
  --rl-blush-soft: #F8F3F6;
  --rl-blush-ai: #F6EFF7;
  --rl-field-bg: #F7F3F6;
  --rl-money-bg: #FBF7FA;
  --rl-page: #FDFBFC;
  --rl-white: #FFFFFF;
  --rl-quote-bg: #221A26;
  --rl-error: #C4453F;
  --rl-green: #2FA372;
  --rl-green-bright: #3DBE83;
  --rl-amber-grad: linear-gradient(135deg, #FCC463, #F3A23C);
  --rl-amber-text: linear-gradient(120deg, #FCC463, #F3A23C);
  --rl-amber-num: linear-gradient(160deg, #F3A23C 10%, #DB7E12 90%);
  --rl-purple-grad: linear-gradient(120deg, #A23FB0, #B95CC4);
  --rl-purple-num: linear-gradient(180deg, rgba(162, 63, 176, .5), rgba(162, 63, 176, .08));
  --rl-radius-card: 16px;
  --rl-radius-field: 13px;
  --rl-radius-btn: 15px;
  --rl-font: 'Poppins', sans-serif;
  --rl-space-x: 22px;
  --rl-section-y: 64px;
}

/* ---------- base ---------- */

.rl-page {
  margin: 0;
  background: var(--rl-page);
  font-family: var(--rl-font);
  -webkit-font-smoothing: antialiased;
  color: var(--rl-charcoal);
  line-height: 1.5;
  overflow-x: hidden;
}

.rl-page *,
.rl-page *::before,
.rl-page *::after { box-sizing: border-box; }

.rl-page img { display: block; max-width: 100%; height: auto; }

/* Wrapped in :where() end-to-end so the whole selector is specificity 0 and
   component margin rules (.rl-h2, .rl-lede, .rl-btn-note …) always win.
   UA margins are still cleared because author styles beat UA styles.
   Exclude .site-chrome-footer so shared-footer mt-* utilities are not zeroed. */
:where(.rl-page > :not(.site-chrome-footer)) :where(h1, h2, h3, p, figure, blockquote) { margin: 0; }

.rl-page :focus-visible {
  outline: 2px solid var(--rl-purple);
  outline-offset: 2px;
}

.rl-hero :focus-visible,
.rl-sticky :focus-visible { outline-color: var(--rl-amber); }

.rl-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--rl-space-x);
  padding-right: var(--rl-space-x);
}

.rl-section { padding: var(--rl-section-y) 0; }
.rl-section--white { background: var(--rl-white); }
.rl-section--blush { background: var(--rl-blush); }
.rl-section--ai { background: var(--rl-blush-ai); position: relative; overflow: hidden; }

/* Per-section vertical padding — mobile frame 2b (replaces uniform --rl-section-y). */
.rl-diff { padding: 68px 0 64px; }
.rl-proof { padding: 64px 0 62px; }
.rl-machine { padding: 64px 0 60px; }
.rl-box { padding: 64px 0 60px; }
.rl-ai { padding: 64px 0 60px; }
.rl-money { padding: 64px 0 60px; }
.rl-selective { padding: 64px 0 60px; }
.rl-next { padding: 64px 0 60px; }
.rl-apply { padding: 64px 0 70px; }

.rl-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-purple);
}

.rl-h2 {
  margin-top: .75rem; /* 12px */
  font-size: 1.8125rem; /* 29px — most mobile h2s */
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--rl-charcoal);
  text-wrap: balance;
}

/* Mobile frame 2b per-section heading sizes */
.rl-diff .rl-h2 { font-size: 1.875rem; line-height: 1.2; } /* 30px */
.rl-next .rl-h2 { font-size: 1.6875rem; } /* 27px */
.rl-selective .rl-h2 { font-size: 1.75rem; line-height: 1.18; margin-top: 1.125rem; } /* 28px / 18px below EQ */
.rl-apply .rl-h2 { font-size: 1.875rem; } /* 30px */

.rl-lede {
  margin-top: 1rem; /* 16px */
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--rl-grey);
}

.rl-apply .rl-lede { margin-top: .75rem; } /* 12px under apply h2 */
.rl-selective .rl-lede { margin-top: 1rem; } /* 16px mobile */
.rl-ai .rl-lede { margin-top: 1rem; }

.rl-centre { text-align: center; }

.rl-grad-amber {
  background: var(--rl-amber-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-grad-purple {
  background: var(--rl-purple-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-grad-amber-mid {
  background: linear-gradient(120deg, #F3A23C, #DB7E12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- EQ motif ---------- */

.rl-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 22px;
  opacity: .9;
}

.rl-eq i {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--rl-purple);
}

.rl-eq i:nth-child(1) { height: 9px; background: var(--rl-purple); }
.rl-eq i:nth-child(2) { height: 15px; background: var(--rl-purple-light); }
.rl-eq i:nth-child(3) { height: 22px; background: var(--rl-amber); }
.rl-eq i:nth-child(4) { height: 12px; background: var(--rl-amber-deep); }
.rl-eq i:nth-child(5) { height: 18px; background: var(--rl-purple-light); }
.rl-eq i:nth-child(6) { height: 8px; background: var(--rl-purple); }

.rl-eq--sm { height: 16px; gap: 3px; }
.rl-eq--sm i { width: 3px; }
.rl-eq--sm i:nth-child(1) { height: 6px; }
.rl-eq--sm i:nth-child(2) { height: 11px; }
.rl-eq--sm i:nth-child(3) { height: 16px; }
.rl-eq--sm i:nth-child(4) { height: 9px; }
.rl-eq--sm i:nth-child(5) { height: 13px; }

/* .rl-eq--lg is desktop-only (6 bars × 26px). On mobile, hide the 6th bar
   so the motif matches the 5-bar × 22px frame. */
.rl-eq--lg i:nth-child(6) { display: none; }

/* ---------- buttons / CTA ---------- */

.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--rl-radius-btn);
  background: var(--rl-amber-grad);
  color: var(--rl-amber-ink);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(243, 162, 60, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.rl-btn:active { transform: translateY(1px); }

@media (hover: hover) and (pointer: fine) {
  .rl-btn:hover {
    box-shadow: 0 16px 44px rgba(243, 162, 60, .4);
  }
}

.rl-btn--block { width: 100%; }

.rl-btn-note {
  margin-top: .6875rem; /* 11px — frame CTA note */
  font-size: .78125rem;
  line-height: 1.35;
  color: var(--rl-grey-soft);
  text-align: center;
}

.rl-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 1.75rem;
}

/* ---------- HERO ---------- */

.rl-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--rl-charcoal);
  color: #fff;
}

.rl-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rl-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  filter: saturate(.78) contrast(1.04) brightness(1.78);
  transform: scale(1.1) translateY(-12.5%);
  max-width: none;
}

.rl-hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rl-hero__scrim--plum { background: rgba(43, 26, 46, .42); }

.rl-hero__scrim--main {
  background: linear-gradient(196deg, rgba(27, 27, 28, .72) 0%, rgba(27, 27, 28, .88) 38%, rgba(27, 27, 28, .98) 100%);
}

.rl-hero__scrim--bottom {
  background: linear-gradient(0deg, rgba(27, 27, 28, .98) 0%, rgba(27, 27, 28, .82) 28%, rgba(27, 27, 28, .35) 55%, rgba(27, 27, 28, 0) 72%);
}

.rl-hero__scrim--glow {
  background: radial-gradient(120% 60% at 90% 4%, rgba(162, 63, 176, .18), rgba(162, 63, 176, 0) 60%);
}

.rl-hero__eq {
  display: none;
}

.rl-hero__inner {
  position: relative;
  width: 100%;
  padding: 110px var(--rl-space-x) 44px;
}

.rl-hero__eyebrow {
  font-size: .65625rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-amber);
}

.rl-hero__title {
  margin-top: .875rem;
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: #fff;
}

.rl-hero__sub {
  margin-top: 1rem;
  font-size: .9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .82);
  max-width: 40rem;
}

.rl-hero__sub b { color: #fff; font-weight: 600; }

.rl-hero__cta { margin-top: 1.5rem; }

.rl-hero__note {
  margin-top: .6875rem; /* 11px */
  text-align: center;
  font-size: .78125rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, .62);
}

.rl-hero__chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.625rem;
}

.rl-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, .88);
}

.rl-chip b {
  color: var(--rl-amber);
  font-weight: 700;
  margin-right: 6px;
}

/* ---------- Difference ---------- */

.rl-diff .rl-eq { margin: 2.125rem auto 0; }

/* ---------- Proof / case studies ---------- */

.rl-cases {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 2rem;
}

.rl-case {
  background: var(--rl-white);
  border: 1px solid rgba(27, 27, 28, .07);
  border-radius: var(--rl-radius-card);
  box-shadow: 0 14px 34px rgba(27, 27, 28, .06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rl-case__media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.rl-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.95) contrast(1.02);
}

.rl-case__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 22, 0) 55%, rgba(20, 16, 22, .55) 100%);
}

.rl-case__pill {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(20, 17, 23, .6);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  font-size: .65625rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255, 255, 255, .92);
}

.rl-case__body { padding: 24px 22px 30px; display: flex; flex-direction: column; flex: 1; }

.rl-case__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--rl-charcoal);
}

.rl-case__label {
  margin: 1.25rem 0 .45rem;
  font-size: .65625rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-purple);
}

.rl-case__body p {
  font-size: .875rem;
  line-height: 1.68;
  color: var(--rl-grey);
}

.rl-case__stat {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-top: auto;
  padding-top: 1.5rem;
}

.rl-case__num {
  font-size: 5.75rem;
  font-weight: 700;
  line-height: .85;
  letter-spacing: -.03em;
  background: var(--rl-amber-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-case__num-label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--rl-grey-soft);
  padding-bottom: 5px;
  max-width: 11rem;
}

/* ---------- Gary quote ---------- */

.rl-quote {
  margin-top: 2rem;
  background: var(--rl-quote-bg);
  border-radius: var(--rl-radius-card);
  overflow: hidden;
}

.rl-quote__media {
  position: relative;
  height: 210px;
}

.rl-quote__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(.72) contrast(1.02) brightness(.9);
}

.rl-quote__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(43, 26, 46, .30);
}

.rl-quote__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(34, 26, 38, .05) 45%, #221A26 100%);
}

.rl-quote__body { padding: 8px 22px 30px; }

.rl-quote__glyph {
  font-size: 4rem;
  font-weight: 700;
  line-height: .5;
  height: 32px;
  color: var(--rl-amber);
}

.rl-quote__text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
}

.rl-quote__attr {
  margin-top: 1.125rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255, 255, 255, .6);
}

.rl-quote__attr span { color: #fff; }

.rl-proof__kicker {
  margin-top: 2.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--rl-charcoal);
}

/* ---------- Machine ---------- */

.rl-chapter__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 2.75rem 0 1.125rem; /* chapters 02/03: 44px */
}

/* Chapter 01 follows the section h2; :first-of-type fails because siblings are also divs. */
.rl-h2 + .rl-chapter__head {
  margin-top: 2.5rem; /* 40px */
}

.rl-chapter__num {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--rl-purple-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-chapter__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-charcoal);
}

.rl-chapter__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rl-offer {
  background: var(--rl-blush-soft);
  border: 1px solid rgba(27, 27, 28, .06);
  border-radius: var(--rl-radius-card);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rl-offer__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(162, 63, 176, .08);
  border: 1px solid rgba(162, 63, 176, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-offer__icon svg { width: 19px; height: 19px; }

.rl-offer__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--rl-charcoal);
}

.rl-offer__body {
  margin-top: .4rem;
  font-size: .84375rem;
  line-height: 1.6;
  color: var(--rl-grey);
}

.rl-offer__link {
  margin-top: .45rem;
  line-height: 1.2;
  font-size: .78125rem;
  font-weight: 600;
  color: var(--rl-purple);
}

.rl-pull {
  margin-top: 14px;
  background: linear-gradient(120deg, rgba(162, 63, 176, .08), rgba(243, 162, 60, .08));
  border: 1px solid rgba(27, 27, 28, .06);
  border-radius: var(--rl-radius-card);
  padding: 26px 24px;
}

.rl-pull__label {
  font-size: .65625rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-purple);
}

.rl-pull__text {
  margin-top: .625rem;
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--rl-charcoal);
}

.rl-pull__sub {
  margin-top: .5rem;
  font-size: .84375rem;
  line-height: 1.6;
  color: var(--rl-grey);
}

.rl-pull__eq { display: none; }

/* ---------- Business in a box ---------- */

.rl-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  margin-top: 2.25rem;
}

.rl-phone-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.rl-phone-panel__step {
  font-size: .71875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rl-purple);
}

.rl-phone-panel__label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rl-charcoal);
  text-align: center;
}

.rl-phone {
  width: 280px;
  border-radius: 42px;
  background: #121016;
  padding: 9px;
  box-shadow: 0 24px 55px rgba(27, 27, 28, .28);
  border: 1px solid rgba(27, 27, 28, .2);
}

.rl-phone__screen {
  border-radius: 34px;
  overflow: hidden;
  height: 560px;
  display: flex;
  flex-direction: column;
  background: #131117;
}

.rl-phone__screen--light { background: #F7F2F4; }

.rl-phones__connector { display: none; }

.rl-caps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 1.125rem;
}

.rl-cap {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(162, 63, 176, .28);
  background: var(--rl-white);
  font-size: .625rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rl-purple);
}

.rl-box__foot {
  margin-top: 1.75rem;
  text-align: center;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--rl-grey);
}

.rl-box__value {
  margin-top: 1.625rem;
  text-align: center;
  font-size: 1.03125rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--rl-charcoal);
}

/* Phone mock internals (compact, illustrative) */

.rl-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 9px;
}

.rl-mock-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .65625rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}

.rl-mock-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 11px;
}

.rl-mock-eq i {
  width: 2.5px;
  border-radius: 2px;
  background: var(--rl-amber);
}

.rl-mock-eq i:nth-child(1) { height: 6px; background: var(--rl-amber-deep); }
.rl-mock-eq i:nth-child(2) { height: 11px; background: var(--rl-purple-light); }
.rl-mock-eq i:nth-child(3) { height: 8px; background: var(--rl-amber); }

.rl-mock-pill {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: .625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
}

.rl-mock-tabs {
  display: flex;
  gap: 5px;
  padding: 0 12px 11px;
  font-size: .625rem;
  color: rgba(255, 255, 255, .6);
}

.rl-mock-tabs span.is-on {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-weight: 600;
  color: var(--rl-charcoal);
}

.rl-mock-hero {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.rl-mock-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 30%;
  filter: saturate(.9) brightness(.85);
}

.rl-mock-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 17, 23, .1) 25%, rgba(19, 17, 23, .92) 100%);
}

.rl-mock-hero__copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
}

.rl-mock-hero__copy strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
}

.rl-mock-hero__copy p {
  margin-top: 5px;
  font-size: .65625rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .85);
}

.rl-mock-trust {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 9px;
  align-items: flex-start;
}

.rl-mock-trust > span {
  display: inline-flex;
  align-items: center;
  height: 21px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(19, 17, 23, .65);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: .5625rem;
  color: rgba(255, 255, 255, .9);
}

.rl-mock-stars--inline {
  color: var(--rl-amber);
  margin-right: 5px;
}

.rl-mock-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3DD68C;
  margin-right: 5px;
}

.rl-mock-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px 12px;
  background: #131117;
}

.rl-mock-cta {
  flex: 1;
  height: 38px;
  border-radius: 999px;
  background: var(--rl-amber-grad);
  color: var(--rl-amber-ink);
  font-size: .6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-mock-chat {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B95CC4, #F3A23C);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-mock-chat svg { width: 15px; height: 15px; }

.rl-mock-darkbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  background: #17141C;
}

.rl-mock-light-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  background: #fff;
  border-bottom: 1px solid rgba(27, 27, 28, .08);
  font-size: .5625rem;
  color: var(--rl-grey);
}

.rl-mock-light-tabs .is-on {
  font-weight: 700;
  color: var(--rl-charcoal);
  background: #F0EAEE;
  border-radius: 999px;
  padding: 4px 10px;
}

.rl-mock-reviews {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rl-mock-reviews__title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--rl-charcoal);
}

.rl-mock-reviews__title span { color: #9A8FA2; }

.rl-mock-card {
  background: #fff;
  border: 1px solid rgba(27, 27, 28, .07);
  border-radius: 15px;
  padding: 14px;
}

.rl-mock-score {
  display: flex;
  align-items: center;
  gap: 11px;
}

.rl-mock-score__num {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rl-charcoal);
}

.rl-mock-stars {
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--rl-amber-deep);
}

.rl-mock-score__count {
  margin-top: 2px;
  font-size: .59375rem;
  color: var(--rl-grey);
}

.rl-mock-dist {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  font-size: .5625rem;
  color: var(--rl-grey);
}

.rl-mock-dist__bar {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FCC463, #F3A23C);
}

.rl-mock-note {
  margin-top: 7px;
  font-size: .5625rem;
  color: var(--rl-grey);
}

.rl-mock-verified {
  display: flex;
  gap: 6px;
  margin-top: 9px;
  align-items: flex-start;
  font-size: .5625rem;
  line-height: 1.5;
  color: var(--rl-green);
}

.rl-mock-verified svg {
  flex-shrink: 0;
  margin-top: 1px;
  width: 11px;
  height: 11px;
}

.rl-mock-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rl-mock-card__head .rl-mock-stars { font-size: .625rem; }

.rl-mock-badge {
  font-size: .5rem;
  font-weight: 600;
  color: var(--rl-grey);
  background: #F0EAEE;
  border-radius: 999px;
  padding: 3px 7px;
}

.rl-mock-quote {
  margin-top: 7px;
  font-size: .65625rem;
  line-height: 1.55;
  color: var(--rl-charcoal);
}

.rl-mock-author {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
}

.rl-mock-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B95CC4, #A23FB0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .53125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rl-mock-author__name {
  font-size: .59375rem;
  font-weight: 700;
  color: var(--rl-charcoal);
}

.rl-mock-author__meta {
  font-size: .5rem;
  color: var(--rl-grey);
}

.rl-mock-cta-foot {
  padding: 0 12px 12px;
  background: #F7F2F4;
}

.rl-mock-topbar--white {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  background: #fff;
}

.rl-mock-coast {
  font-size: .75rem;
  font-weight: 700;
  color: var(--rl-charcoal);
}

.rl-mock-coast span { color: var(--rl-purple); }

.rl-mock-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(27, 27, 28, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .625rem;
  color: var(--rl-grey);
}

.rl-mock-status {
  padding: 7px 14px;
  background: #fff;
  border-bottom: 2px solid rgba(243, 162, 60, .9);
}

.rl-mock-status__label {
  font-size: .53125rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rl-green);
}

.rl-mock-confirm {
  flex: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rl-mock-check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rl-green-bright);
  box-shadow: 0 0 26px rgba(61, 190, 131, .4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-mock-check svg { width: 22px; height: 22px; }

.rl-mock-confirm__eyebrow {
  margin-top: 12px;
  font-size: .59375rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--rl-green);
}

.rl-mock-confirm__title {
  margin-top: 9px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--rl-charcoal);
}

.rl-mock-confirm__sub {
  margin-top: 8px;
  font-size: .65625rem;
  line-height: 1.55;
  color: var(--rl-grey);
}

.rl-mock-next {
  width: 100%;
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(27, 27, 28, .07);
  border-radius: 13px;
  padding: 13px;
  text-align: left;
}

.rl-mock-next__head {
  font-size: .53125rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--rl-grey);
}

.rl-mock-next__row {
  display: flex;
  gap: 8px;
  margin-top: 7px;
  font-size: .65625rem;
  font-weight: 600;
  color: var(--rl-charcoal);
}

.rl-mock-next__row:first-of-type { margin-top: 9px; }

.rl-mock-next__num {
  font-size: .59375rem;
  font-weight: 700;
  color: var(--rl-purple);
}

/* ---------- Coast AI ---------- */

.rl-ai__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 50% at 50% 30%, rgba(162, 63, 176, .10), rgba(162, 63, 176, 0) 70%);
  pointer-events: none;
}

.rl-ai__inner { position: relative; }

.rl-ai__benefits { display: none; }

.rl-widget {
  position: relative;
  margin-top: 2rem;
  border-radius: 18px;
  background: var(--rl-white);
  border: 1px solid rgba(27, 27, 28, .08);
  box-shadow: 0 24px 55px rgba(27, 27, 28, .14);
  overflow: hidden;
}

.rl-widget__rule {
  height: 3px;
  background: linear-gradient(90deg, #A23FB0, #B95CC4, #FCC463, #F3A23C);
}

.rl-widget__head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(27, 27, 28, .07);
}

.rl-widget__avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--rl-amber-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
}

.rl-widget__name { font-size: .875rem; font-weight: 600; color: var(--rl-charcoal); }
.rl-widget__powered { font-size: .71875rem; font-weight: 500; color: var(--rl-amber-mid); }

.rl-widget__status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  flex-shrink: 0;
}

.rl-widget__online {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rl-green-bright);
  box-shadow: 0 0 8px rgba(61, 190, 131, .7);
  flex-shrink: 0;
}

/* Desktop frame shows "Online"; mobile frame is dot-only. */
.rl-widget__online-label { display: none; }

.rl-widget__banner {
  margin: 12px 14px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #FDF3E2;
  border: 1px solid rgba(243, 162, 60, .4);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .75rem;
  line-height: 1.45;
  color: var(--rl-charcoal);
}

.rl-widget__banner b { color: var(--rl-amber-mid); font-weight: 600; }
.rl-widget__banner svg { width: 15px; height: 15px; flex-shrink: 0; }

.rl-widget__body { padding: 14px 14px 4px; }

.rl-bubble {
  max-width: 92%;
  background: #F4EFF2;
  border-radius: 14px 14px 14px 5px;
  padding: 11px 13px;
  font-size: .78125rem;
  line-height: 1.6;
  color: var(--rl-charcoal);
}

.rl-chips-q {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.rl-chips-q span {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 27, 28, .16);
  background: #fff;
  font-size: .71875rem;
  color: var(--rl-charcoal);
}

.rl-bubble--user {
  margin-left: auto;
  margin-top: 12px;
  max-width: 88%;
  background: var(--rl-amber-grad);
  color: #2A1B06;
  border-radius: 14px 14px 5px 14px;
  padding: 10px 13px;
  font-size: .78125rem;
  font-weight: 500;
  line-height: 1.5;
}

.rl-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  background: #F4EFF2;
  border-radius: 14px 14px 14px 5px;
  padding: 12px 14px;
}

.rl-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(27, 27, 28, .3);
}

.rl-typing i:nth-child(2) { background: rgba(27, 27, 28, .55); }

.rl-widget__email {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px 9px;
  font-size: .71875rem;
  color: var(--rl-grey-soft);
}

.rl-widget__email svg { width: 14px; height: 14px; flex-shrink: 0; }

.rl-widget__composer {
  display: flex;
  gap: 9px;
  padding: 0 12px 14px;
}

.rl-widget__input {
  flex: 1;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(27, 27, 28, .16);
  background: #FBF8FA;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: .78125rem;
  color: var(--rl-placeholder);
}

.rl-widget__send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rl-amber-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-widget__send svg { width: 15px; height: 15px; }

.rl-ai__caption {
  margin-top: 1.125rem;
  text-align: center;
  font-size: .84375rem;
  line-height: 1.65;
  color: var(--rl-grey);
}

/* ---------- Money ---------- */

.rl-money-card {
  margin-top: 1.875rem;
  background: var(--rl-money-bg);
  border: 1px solid rgba(27, 27, 28, .07);
  border-radius: var(--rl-radius-card);
  box-shadow: 0 14px 34px rgba(27, 27, 28, .06);
  padding: 30px 26px;
}

.rl-money__num {
  font-size: 4.75rem;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  background: var(--rl-amber-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-money__fee {
  margin-top: .75rem;
  font-size: .84375rem;
  line-height: 1.65;
  color: var(--rl-grey);
}

.rl-money__pills {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 1.375rem;
  align-items: flex-start;
}

.rl-money-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(61, 190, 131, .10);
  border: 1px solid rgba(61, 190, 131, .4);
  font-size: .84375rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--rl-charcoal);
}

.rl-money-pill svg { width: 15px; height: 15px; }

.rl-money__body {
  margin-top: 1.25rem;
  font-size: .90625rem;
  line-height: 1.7;
  color: var(--rl-muted);
}

.rl-money__doors {
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid rgba(27, 27, 28, .09);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .84375rem;
  line-height: 1.65;
  color: var(--rl-muted);
}

.rl-money__doors-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(162, 63, 176, .10);
  border: 1px solid rgba(162, 63, 176, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rl-money__doors-icon svg { width: 16px; height: 16px; }

/* ---------- Selective ---------- */

.rl-selective { position: relative; overflow: hidden; text-align: center; }

.rl-selective__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(162, 63, 176, .08), rgba(162, 63, 176, 0) 70%);
  pointer-events: none;
}

.rl-selective__inner { position: relative; }

.rl-selective .rl-eq { margin: 0 auto; }

/* selective h2 size/margin set with other per-section h2 rules above */

.rl-selective__close {
  margin-top: 1.625rem;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--rl-charcoal);
}

/* ---------- Steps ---------- */

.rl-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.875rem;
}

.rl-step {
  background: var(--rl-blush-soft);
  border: 1px solid rgba(27, 27, 28, .06);
  border-radius: var(--rl-radius-card);
  padding: 24px;
}

.rl-step__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rl-step__num {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: .9;
  background: var(--rl-purple-num);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rl-step__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(162, 63, 176, .08);
  border: 1px solid rgba(162, 63, 176, .18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-step__icon svg { width: 17px; height: 17px; }

.rl-step__title {
  margin-top: .55rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--rl-charcoal);
}

.rl-step__body {
  margin-top: .45rem;
  font-size: .875rem;
  line-height: 1.65;
  color: var(--rl-grey);
}

/* ---------- Form ---------- */

.rl-form-card {
  margin-top: 1.75rem;
  background: var(--rl-white);
  border: 1px solid rgba(27, 27, 28, .07);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(27, 27, 28, .06);
  padding: 24px 20px;
}

.rl-form-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rl-field label,
.rl-links legend {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-grey);
  margin-bottom: 8px;
}

.rl-field input,
.rl-field textarea {
  width: 100%;
  min-height: 52px;
  border-radius: var(--rl-radius-field);
  background: var(--rl-field-bg);
  border: 1px solid rgba(27, 27, 28, .12);
  padding: 0 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--rl-charcoal);
  appearance: none;
  -webkit-appearance: none;
}

.rl-field textarea {
  min-height: 104px;
  padding: 14px 16px;
  line-height: 1.6;
  resize: vertical;
}

.rl-field input::placeholder,
.rl-field textarea::placeholder { color: var(--rl-placeholder); }

.rl-field input:focus,
.rl-field textarea:focus {
  outline: none;
  border-color: var(--rl-purple);
  background: var(--rl-white);
  box-shadow: 0 0 0 4px rgba(162, 63, 176, .35);
}

.rl-field.is-error input,
.rl-field.is-error textarea,
.rl-links.is-error {
  border-color: rgba(196, 69, 63, .6);
}

.rl-links.is-error {
  background: rgba(196, 69, 63, .03);
  border-color: rgba(196, 69, 63, .45);
}

.rl-field__error,
.rl-links__error {
  display: none;
  margin-top: .5rem;
  font-size: .8125rem;
  color: var(--rl-error);
  align-items: center;
  gap: 8px;
}

.rl-field.is-error .rl-field__error,
.rl-links.is-error .rl-links__error { display: flex; }

.rl-links {
  border: 1px solid rgba(27, 27, 28, .10);
  border-radius: 14px;
  padding: 18px 16px;
  margin: 0;
  min-width: 0;
}

.rl-links__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.rl-links legend {
  float: left;
  width: 100%;
  padding: 0;
  color: var(--rl-charcoal);
}

.rl-links__head::after {
  content: '';
  display: table;
  clear: both;
}

.rl-links__badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(243, 162, 60, .12);
  border: 1px solid rgba(243, 162, 60, .4);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rl-amber-badge);
}

.rl-links__help {
  margin-top: .55rem;
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--rl-grey-soft);
}

.rl-links .rl-field { margin-top: 1rem; }

.rl-form__submit { margin-top: .25rem; }
.rl-form__note { margin-top: .25rem; }

.rl-form-root.is-submitting .rl-form-grid { opacity: .55; pointer-events: none; }

.rl-btn__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(35, 22, 7, .25);
  border-top-color: var(--rl-amber-ink);
  animation: rl-spin .7s linear infinite;
}

.rl-form-root.is-submitting .rl-btn__spinner { display: inline-block; }

@keyframes rl-spin { to { transform: rotate(360deg); } }

.rl-success {
  display: none;
  padding: 48px 24px;
  text-align: center;
}

.rl-form-root.is-success .rl-form { display: none; }
.rl-form-root.is-success .rl-success { display: block; }

.rl-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(61, 190, 131, .12);
  border: 1.5px solid var(--rl-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.rl-success__title {
  margin-top: 1.375rem;
  font-size: 1.6875rem;
  font-weight: 700;
  color: var(--rl-charcoal);
}

.rl-success__body {
  margin-top: .625rem;
  font-size: .96875rem;
  line-height: 1.65;
  color: var(--rl-grey);
}

.rl-success .rl-eq { margin: 1.625rem auto 0; }

.rl-form-error {
  margin-top: .75rem;
  font-size: .875rem;
  color: var(--rl-error);
  text-align: center;
}

/* ---------- Sticky CTA ---------- */

.rl-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .85);
  border-top: 1px solid rgba(27, 27, 28, .08);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  padding: 12px 16px calc(6px + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}

.rl-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.rl-sticky__label { display: none; }

.rl-sticky .rl-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  font-size: .96875rem;
  box-shadow: 0 10px 26px rgba(243, 162, 60, .35);
}

/* ---------- Footer ---------- */

.rl-footer {
  background: var(--rl-white);
  border-top: 1px solid rgba(27, 27, 28, .07);
  padding: 38px var(--rl-space-x) 44px;
  text-align: center;
}

.rl-footer .rl-eq { margin: 0 auto; }

.rl-footer__brand {
  margin-top: .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--rl-charcoal);
}

.rl-footer__line {
  margin-top: .3rem;
  font-size: .75rem;
  line-height: 1.2;
  color: var(--rl-grey-soft);
}

/* ---------- Shared site chrome (nav + footer band) ---------- */

.rl-page > [data-nav] {
  background: var(--rl-white);
}

/* Clearance so the fixed sticky CTA does not cover the shared footer. */
.rl-sitefooter {
  padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

body.coast-overlay-open .rl-sticky {
  display: none;
}

/* ---------- Desktop ---------- */

@media (min-width: 960px) {
  :root {
    --rl-space-x: 60px;
    --rl-section-y: 104px;
  }

  /* Per-section vertical padding — desktop frame 2a */
  .rl-diff { padding: 110px 0 104px; }
  .rl-proof { padding: 104px 0 100px; }
  .rl-machine { padding: 104px 0 100px; }
  .rl-box { padding: 104px 0 100px; }
  .rl-ai { padding: 110px 0 100px; }
  .rl-money { padding: 104px 0 100px; }
  .rl-selective { padding: 110px 0 104px; }
  .rl-next { padding: 100px 0 96px; }
  .rl-apply { padding: 104px 0 110px; }

  .rl-eyebrow { font-size: .78125rem; }
  .rl-h2 { font-size: 2.875rem; margin-top: .875rem; line-height: 1.1; letter-spacing: -.015em; } /* 46px */
  .rl-diff .rl-h2 { font-size: 2.875rem; margin-top: 1rem; line-height: 1.15; letter-spacing: -.015em; } /* 46 / 16 */
  .rl-proof .rl-h2,
  .rl-machine .rl-h2,
  .rl-box .rl-h2,
  .rl-money .rl-h2,
  .rl-apply .rl-h2 { font-size: 2.875rem; line-height: 1.1; letter-spacing: -.015em; }
  .rl-ai .rl-h2 { font-size: 2.75rem; line-height: 1.12; letter-spacing: -.015em; } /* 44px */
  .rl-selective .rl-h2 { font-size: 2.75rem; line-height: 1.12; margin-top: 1.5rem; letter-spacing: -.015em; } /* 44 / 24 */
  .rl-next .rl-h2 { font-size: 2.5rem; line-height: 1.1; letter-spacing: -.015em; } /* 40px */
  .rl-lede { font-size: 1.0625rem; line-height: 1.75; margin-top: 1.25rem; }
  .rl-apply .rl-lede { margin-top: 1.125rem; font-size: 1rem; line-height: 1.7; } /* 18px / 16px */

  .rl-btn { min-height: 58px; padding: 0 36px; font-size: 1.03125rem; }
  .rl-btn-note { font-size: .84375rem; }

  .rl-hero { min-height: 880px; }

  .rl-hero__media img {
    object-position: 38% 35%;
    transform: scale(1.15) translateX(5%);
    filter: saturate(.78) contrast(1.04) brightness(1.72);
  }

  .rl-hero__scrim--plum { background: rgba(43, 26, 46, .38); }

  .rl-hero__scrim--main {
    background: linear-gradient(90deg, rgba(27, 27, 28, .96) 0%, rgba(27, 27, 28, .92) 30%, rgba(27, 27, 28, .78) 48%, rgba(27, 27, 28, .42) 62%, rgba(27, 27, 28, .12) 74%, rgba(27, 27, 28, 0) 86%);
  }

  .rl-hero__scrim--bottom {
    background: linear-gradient(0deg, rgba(27, 27, 28, .97) 0%, rgba(27, 27, 28, .78) 24%, rgba(27, 27, 28, .28) 48%, rgba(27, 27, 28, 0) 64%);
  }

  .rl-hero__scrim--glow {
    background: radial-gradient(90% 80% at 84% 6%, rgba(162, 63, 176, .18), rgba(162, 63, 176, 0) 62%);
  }

  .rl-hero__eq {
    display: flex;
    position: absolute;
    right: 64px;
    bottom: 70px;
    align-items: flex-end;
    gap: 6px;
    height: 54px;
    opacity: .85;
  }

  .rl-hero__eq i {
    width: 6px;
    border-radius: 3px;
  }

  .rl-hero__eq i:nth-child(1) { height: 18px; background: var(--rl-purple); }
  .rl-hero__eq i:nth-child(2) { height: 34px; background: var(--rl-purple-light); }
  .rl-hero__eq i:nth-child(3) { height: 54px; background: var(--rl-amber); }
  .rl-hero__eq i:nth-child(4) { height: 26px; background: var(--rl-amber-deep); }
  .rl-hero__eq i:nth-child(5) { height: 42px; background: var(--rl-purple-light); }
  .rl-hero__eq i:nth-child(6) { height: 14px; background: var(--rl-purple); }

  .rl-hero__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 60px 78px;
  }

  .rl-hero__eyebrow { font-size: .78125rem; letter-spacing: .16em; }
  .rl-hero__title { margin-top: 1.375rem; font-size: 4.875rem; line-height: 1.1; letter-spacing: -.025em; max-width: 1100px; }
  .rl-hero__sub { margin-top: 1.75rem; font-size: 1.1875rem; max-width: 680px; }

  .rl-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 2.375rem;
  }

  .rl-hero__cta { margin-top: 0; width: auto; }
  .rl-hero__note { margin-top: 0; text-align: left; font-size: .84375rem; }

  .rl-hero__chips {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2.75rem;
  }

  .rl-chip {
    min-height: 46px;
    padding: 0 22px;
    font-size: .84375rem;
  }

  .rl-diff .rl-wrap { max-width: 820px; }
  .rl-diff .rl-lede { margin-top: 1.375rem; } /* 22px */
  .rl-diff .rl-eq { margin-top: 3.25rem; }

  /* Desktop EQ motif: 6 bars × 26px (mobile hides the 6th). */
  .rl-eq--lg {
    height: 26px;
  }

  .rl-eq--lg i:nth-child(1) { height: 10px; }
  .rl-eq--lg i:nth-child(2) { height: 18px; }
  .rl-eq--lg i:nth-child(3) { height: 26px; }
  .rl-eq--lg i:nth-child(4) { height: 14px; }
  .rl-eq--lg i:nth-child(5) { height: 22px; }
  .rl-eq--lg i:nth-child(6) { display: block; height: 8px; }

  .rl-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 3.25rem;
  }

  .rl-case__media { height: 320px; }
  .rl-case__pill { left: 22px; bottom: 20px; height: 32px; padding: 0 16px; font-size: .71875rem; }
  .rl-case__body { padding: 34px 36px 40px; }
  .rl-case__title { font-size: 1.4375rem; }
  .rl-case__label { font-size: .71875rem; margin: 1.5rem 0 .5rem; }
  .rl-case__body p { font-size: .9375rem; line-height: 1.7; }
  .rl-case__stat { padding-top: 1.875rem; } /* 30px */
  .rl-case__num { font-size: 7.375rem; }
  .rl-case__num-label { font-size: .78125rem; letter-spacing: .12em; max-width: 170px; }

  .rl-quote {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
    box-shadow: 0 24px 60px rgba(27, 27, 28, .22);
  }

  .rl-quote__media {
    height: auto;
    min-height: 340px;
  }

  .rl-quote__media::after {
    background: linear-gradient(90deg, rgba(34, 26, 38, .1) 45%, #221A26 100%);
  }

  .rl-quote__media img { object-position: center 28%; }
  .rl-quote__body {
    padding: 56px 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .rl-quote__glyph { font-size: 6rem; height: 48px; }
  .rl-quote__text { font-size: 1.75rem; line-height: 1.5; max-width: 640px; }
  .rl-quote__attr { margin-top: 1.625rem; font-size: .78125rem; }

  .rl-proof__kicker {
    margin-top: 4rem;
    font-size: 1.8125rem;
    line-height: 1.4;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .rl-cta-stack {
    align-items: center;
    margin-top: 2.75rem;
  }

  .rl-cta-stack .rl-btn { width: auto; }

  .rl-chapter__head { margin: 4.5rem 0 1.625rem; gap: 24px; } /* chapters 02/03: 72px */
  .rl-h2 + .rl-chapter__head { margin-top: 4rem; } /* chapter 01: 64px */
  .rl-chapter__num { font-size: 5.5rem; }
  .rl-chapter__title { font-size: 1.375rem; }

  .rl-chapter__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .rl-offer {
    flex-direction: column;
    padding: 28px;
    gap: 14px;
  }

  /* Wrapper holds title/body/link; restore the frame's 14px column gap. */
  .rl-offer > div:not(.rl-offer__icon) {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .rl-offer__icon { width: 42px; height: 42px; }
  .rl-offer__icon svg { width: 20px; height: 20px; }
  .rl-offer__title { font-size: 1.09375rem; }
  .rl-offer__body { margin-top: 0; font-size: .90625rem; line-height: 1.65; }
  .rl-offer__link { margin-top: 0; font-size: .8125rem; line-height: 1.2; }

  .rl-pull {
    margin-top: 24px;
    padding: 44px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .rl-pull__eq {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
    flex-shrink: 0;
  }

  .rl-pull__eq i {
    width: 7px;
    border-radius: 3px;
  }

  .rl-pull__eq i:nth-child(1) { height: 22px; background: var(--rl-purple); }
  .rl-pull__eq i:nth-child(2) { height: 40px; background: var(--rl-purple-light); }
  .rl-pull__eq i:nth-child(3) { height: 64px; background: var(--rl-amber); }
  .rl-pull__eq i:nth-child(4) { height: 30px; background: var(--rl-amber-deep); }
  .rl-pull__eq i:nth-child(5) { height: 50px; background: var(--rl-purple-light); }

  .rl-pull__label { font-size: .71875rem; }
  .rl-pull__text { font-size: 1.8125rem; line-height: 1.35; }
  .rl-pull__sub { font-size: .9375rem; line-height: 1.65; }

  .rl-box__intro { max-width: 820px; margin: 0 auto; text-align: center; }

  .rl-phones {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    margin-top: 4rem;
  }

  .rl-phone-panel { gap: 18px; }

  .rl-phones__connector {
    display: block;
    position: absolute;
    z-index: 0;
    left: 8%;
    right: 8%;
    top: 46%;
    height: 2px;
    background: linear-gradient(90deg, #A23FB0, #B95CC4, #FCC463, #F3A23C);
    opacity: .3;
    pointer-events: none;
  }

  .rl-phone {
    width: 100%;
    max-width: 300px;
    border-radius: 44px;
    padding: 10px;
  }

  .rl-phone__screen {
    border-radius: 35px;
    height: auto;
    aspect-ratio: 300 / 600;
    min-height: 0;
  }
  .rl-phone-panel__step { font-size: .75rem; }
  .rl-phone-panel__label { font-size: .71875rem; }

  .rl-mock-bar { padding: 16px 16px 10px; }
  .rl-mock-brand { gap: 8px; font-size: .6875rem; }
  .rl-mock-eq { height: 12px; }
  .rl-mock-eq i:nth-child(1) { height: 6px; }
  .rl-mock-eq i:nth-child(2) { height: 12px; }
  .rl-mock-eq i:nth-child(3) { height: 9px; }
  .rl-mock-pill { height: 26px; padding: 0 12px; font-size: .65625rem; }
  .rl-mock-tabs { gap: 6px; padding: 0 14px 12px; font-size: .65625rem; }
  .rl-mock-tabs span.is-on { height: 26px; padding: 0 12px; }
  .rl-mock-hero__copy { left: 16px; right: 16px; bottom: 14px; }
  .rl-mock-hero__copy strong { font-size: 1.5rem; }
  .rl-mock-hero__copy p { margin-top: 6px; font-size: .6875rem; }
  .rl-mock-trust { margin-top: 10px; }
  .rl-mock-trust > span { height: 22px; padding: 0 10px; font-size: .59375rem; }
  .rl-mock-dot { width: 6px; height: 6px; margin-right: 6px; }
  .rl-mock-cta-row { gap: 9px; padding: 12px 14px 14px; }
  .rl-mock-cta { height: 40px; font-size: .75rem; }
  .rl-mock-chat { width: 40px; height: 40px; }
  .rl-mock-darkbar { padding: 14px 16px; }
  .rl-mock-light-tabs { gap: 6px; padding: 8px 12px; font-size: .59375rem; }
  .rl-mock-light-tabs .is-on { padding: 5px 11px; }
  .rl-mock-reviews { padding: 14px; gap: 12px; }
  .rl-mock-reviews__title { font-size: 1.0625rem; }
  .rl-mock-card { border-radius: 16px; padding: 16px; }
  .rl-mock-score { gap: 12px; }
  .rl-mock-score__num { font-size: 2.125rem; }
  .rl-mock-stars { font-size: .8125rem; }
  .rl-mock-score__count { font-size: .625rem; }
  .rl-mock-dist { gap: 8px; margin-top: 12px; font-size: .59375rem; }
  .rl-mock-dist__bar { height: 6px; }
  .rl-mock-note { margin-top: 8px; font-size: .59375rem; }
  .rl-mock-verified { gap: 7px; margin-top: 10px; font-size: .59375rem; }
  .rl-mock-verified svg { width: 12px; height: 12px; }
  .rl-mock-card__head .rl-mock-stars { font-size: .6875rem; }
  .rl-mock-badge { font-size: .53125rem; padding: 3px 8px; }
  .rl-mock-quote { margin-top: 8px; font-size: .71875rem; }
  .rl-mock-author { gap: 8px; margin-top: 10px; }
  .rl-mock-avatar { width: 22px; height: 22px; font-size: .5625rem; }
  .rl-mock-author__name { font-size: .625rem; }
  .rl-mock-author__meta { font-size: .53125rem; }
  .rl-mock-cta-foot { padding: 0 14px 14px; }
  .rl-mock-topbar--white { padding: 14px 16px; }
  .rl-mock-coast { font-size: .8125rem; letter-spacing: .02em; }
  .rl-mock-close { width: 26px; height: 26px; font-size: .6875rem; }
  .rl-mock-status { padding: 8px 16px; }
  .rl-mock-status__label { font-size: .5625rem; }
  .rl-mock-confirm { padding: 26px 18px; }
  .rl-mock-check { width: 56px; height: 56px; box-shadow: 0 0 30px rgba(61, 190, 131, .4); }
  .rl-mock-confirm__eyebrow { margin-top: 14px; font-size: .625rem; }
  .rl-mock-confirm__title { margin-top: 10px; font-size: 1.1875rem; }
  .rl-mock-confirm__sub { margin-top: 9px; font-size: .6875rem; }
  .rl-mock-next { margin-top: 18px; border-radius: 14px; padding: 14px; }
  .rl-mock-next__head { font-size: .5625rem; }
  .rl-mock-next__row { gap: 9px; margin-top: 8px; font-size: .6875rem; }
  .rl-mock-next__row:first-of-type { margin-top: 10px; }
  .rl-mock-next__num { font-size: .625rem; }

  .rl-caps { gap: 10px; margin-top: 1.5rem; }
  .rl-cap { height: 34px; padding: 0 16px; font-size: .6875rem; }
  .rl-box__foot { margin-top: 2.75rem; font-size: 1rem; }
  .rl-caps { margin-top: 1.5rem; }
  .rl-box__value { margin-top: 2.5rem; font-size: 1.25rem; max-width: 680px; margin-left: auto; margin-right: auto; }

  .rl-ai__glow {
    background: radial-gradient(58% 55% at 74% 42%, rgba(162, 63, 176, .10), rgba(162, 63, 176, 0) 70%);
  }

  .rl-ai__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
  }

  .rl-widget-wrap { width: min(430px, 100%); }

  .rl-ai__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2.125rem;
  }

  .rl-ai__benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--rl-muted);
  }

  .rl-ai__benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(162, 63, 176, .10);
    border: 1px solid rgba(162, 63, 176, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .rl-ai__benefit p { padding-top: 7px; }

  .rl-widget-wrap {
    position: relative;
    margin: 0 auto;
  }

  .rl-widget-wrap::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(60% 55% at 50% 45%, rgba(162, 63, 176, .16), rgba(162, 63, 176, 0) 72%);
    pointer-events: none;
  }

  .rl-widget { margin-top: 0; }
  .rl-widget__head { gap: 12px; padding: 16px 18px; }
  .rl-widget__avatar { width: 42px; height: 42px; border-radius: 13px; font-size: .875rem; }
  .rl-widget__name { font-size: .9375rem; }
  .rl-widget__powered { font-size: .75rem; }
  .rl-widget__banner { margin: 14px 16px 0; padding: 11px 14px; font-size: .8125rem; }
  .rl-widget__banner svg { width: 17px; height: 17px; }
  .rl-widget__body { padding: 16px 16px 4px; }
  .rl-bubble { max-width: 88%; padding: 12px 15px; font-size: .84375rem; }
  .rl-chips-q { gap: 8px; margin-top: 12px; }
  .rl-chips-q span { padding: 8px 13px; font-size: .78125rem; }
  .rl-bubble--user { max-width: 85%; padding: 11px 15px; font-size: .84375rem; }
  .rl-widget__email { padding: 12px 18px 10px; font-size: .78125rem; }
  .rl-widget__email svg { width: 15px; height: 15px; }
  .rl-widget__composer { padding: 0 14px 16px; gap: 10px; }
  .rl-widget__input { height: 46px; padding: 0 18px; font-size: .84375rem; }
  .rl-widget__send { width: 46px; height: 46px; }
  .rl-widget__send svg { width: 17px; height: 17px; }
  .rl-ai__caption { margin-top: 1.375rem; font-size: .90625rem; }

  .rl-mock-chat svg { width: 16px; height: 16px; }
  .rl-mock-check svg { width: 24px; height: 24px; }

  .rl-money-card {
    max-width: 1060px;
    margin: 3.25rem auto 0;
    padding: 56px;
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  .rl-money__num { font-size: 7rem; }
  .rl-money__fee { margin-top: 1rem; font-size: .90625rem; }
  .rl-money__pills { flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: 0; }
  .rl-money-pill { min-height: 42px; padding: 0 18px; font-size: .875rem; }
  .rl-money-pill svg { width: 16px; height: 16px; }
  .rl-money__body { margin-top: 1.5rem; font-size: 1.03125rem; line-height: 1.75; }
  .rl-money__doors { margin-top: 1.625rem; padding-top: 1.5rem; gap: 14px; font-size: .90625rem; }
  .rl-money__doors-icon { width: 38px; height: 38px; }
  .rl-money__doors-icon svg { width: 17px; height: 17px; }

  .rl-money .rl-cta-stack { margin-top: 3.25rem; } /* 52px */

  .rl-selective .rl-wrap { max-width: 820px; }
  .rl-selective .rl-lede { margin-top: 1.375rem; } /* 22px */
  .rl-selective__close { margin-top: 2.5rem; font-size: 1.625rem; line-height: 1.5; } /* 40px */
  .rl-ai .rl-lede { margin-top: 1.375rem; } /* 22px */

  .rl-widget__online-label {
    display: block;
    font-size: .71875rem; /* 11.5px */
    color: var(--rl-grey-soft);
  }

  .rl-field input,
  .rl-field textarea { padding-left: 18px; padding-right: 18px; }
  .rl-field textarea { padding-top: 15px; padding-bottom: 15px; }

  .rl-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 3.25rem;
  }

  .rl-step { padding: 32px 30px; }
  .rl-step__num { font-size: 4rem; }
  .rl-step__icon { width: 42px; height: 42px; border-radius: 12px; }
  .rl-step__icon svg { width: 20px; height: 20px; }
  .rl-step__title { margin-top: .75rem; font-size: 1.25rem; }
  .rl-step__body { margin-top: .625rem; font-size: .9375rem; line-height: 1.68; }

  .rl-apply .rl-wrap { max-width: 900px; }
  .rl-form-card { margin-top: 2.75rem; border-radius: 20px; padding: 46px; }

  .rl-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .rl-form-grid .rl-field--full,
  .rl-form-grid .rl-links,
  .rl-form-grid .rl-form__submit,
  .rl-form-grid .rl-form__note { grid-column: 1 / -1; }

  /* Grid gap is 20px; pull up for a net 14px under the submit button. */
  .rl-form-grid .rl-form__note { margin-top: calc(14px - 20px); }

  .rl-links { padding: 24px; }
  .rl-links__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .rl-links legend { float: none; width: auto; margin-bottom: 0; }
  .rl-field textarea { min-height: 110px; }
  .rl-success { padding: 64px 40px; }

  .rl-sticky {
    left: 0;
    right: 0;
    bottom: 26px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .rl-sticky.is-visible { pointer-events: none; }

  .rl-sticky__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 12px 10px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(27, 27, 28, .10);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    box-shadow: 0 24px 60px rgba(27, 27, 28, .18);
    pointer-events: auto;
  }

  .rl-sticky__label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--rl-charcoal);
  }

  /* Sticky frame shows 4 bars. */
  .rl-sticky__label .rl-eq i:nth-child(5) { display: none; }

  .rl-sticky .rl-btn {
    width: auto;
    min-height: 46px;
    padding: 0 26px;
    font-size: .9375rem;
  }

  .rl-footer { padding: 46px 0 50px; }

  /* Floating desktop sticky pill needs less footer clearance. */
  .rl-sitefooter {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Footer EQ: 18px tall on desktop (mobile stays 16px). */
  .rl-footer .rl-eq--sm { height: 18px; }
  .rl-footer .rl-eq--sm i:nth-child(1) { height: 7px; }
  .rl-footer .rl-eq--sm i:nth-child(2) { height: 13px; }
  .rl-footer .rl-eq--sm i:nth-child(3) { height: 18px; }
  .rl-footer .rl-eq--sm i:nth-child(4) { height: 10px; }
  .rl-footer .rl-eq--sm i:nth-child(5) { height: 15px; }

  .rl-footer__brand { font-size: .8125rem; margin-top: .875rem; }
  .rl-footer__line { font-size: .8125rem; margin-top: .375rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .rl-btn,
  .rl-sticky,
  .rl-btn__spinner {
    transition: none;
    animation: none;
  }

  .rl-form-root.is-submitting .rl-btn__spinner {
    opacity: .55;
  }
}

/* Turnstile widget — keep the iframe inside the form column on mobile. */
.cf-turnstile {
  width: 100%;
  max-width: 100%;
}
