/* ============================================================
   Rugby Lab marketing-site UI kit — styles.
   Loaded after colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-page); color: var(--fg-1);
  font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== Buttons ============================================== */
.rl-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 0; cursor: pointer; transition: background var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out), transform var(--t-fast) var(--ease-out);
  text-decoration: none; white-space: nowrap;
}
.rl-btn--primary { background: var(--rl-mint-500); color: var(--rl-navy-900); padding: 16px 26px; border-radius: var(--r-pill); }
.rl-btn--primary:hover { background: var(--rl-mint-400); }
.rl-btn--primary:active { background: var(--rl-mint-600); transform: scale(.98); }
.rl-btn--primary:disabled { background: var(--rl-cream-200); color: var(--fg-3); cursor: not-allowed; }

.rl-btn--ghost { background: transparent; color: var(--rl-white); border: 1.5px solid rgba(255,255,255,.6); padding: 14px 26px; border-radius: var(--r-pill); }
.rl-btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--rl-white); }

.rl-btn--ghost-dark { background: transparent; color: var(--rl-navy-800); border: 1.5px solid var(--rl-navy-800); padding: 14px 26px; border-radius: var(--r-pill); }
.rl-btn--ghost-dark:hover { background: var(--rl-navy-800); color: var(--rl-white); }

.rl-btn--tertiary { background: transparent; color: var(--rl-navy-800); padding: 6px 0; border-bottom: 1.5px solid var(--rl-mint-500); border-radius: 0; }
.rl-btn--tertiary:hover { color: var(--rl-mint-600); }

.rl-btn--sm { padding: 11px 18px; font-size: 12px; }
.rl-btn--block { width: 100%; justify-content: center; }

/* ===== Tags ================================================= */
.rl-tag { display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 12px; }
.rl-tag--solid    { background: var(--rl-mint-500); color: var(--rl-navy-900); }
.rl-tag--outline  { background: transparent; color: var(--rl-mint-600); border: 1px solid var(--border-1); border-radius: var(--r-pill); padding: 7px 14px; }
.rl-tag--mint-text{ background: transparent; color: var(--rl-mint-500); padding: 0; font-size: 17px; font-weight: 800; letter-spacing: 0.22em; }
.rl-tag--pill     { background: var(--rl-navy-900); color: var(--rl-mint-500); border-radius: var(--r-pill); }

/* Pulse dot for "live" tags */
.rl-pulse {
  width: 8px; height: 8px; border-radius: 999px; background: var(--rl-navy-900);
  position: relative; flex-shrink: 0;
}
.rl-pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: 999px;
  background: var(--rl-navy-900); opacity: .6;
  animation: rl-pulse 1.6s var(--ease-out) infinite;
}
@keyframes rl-pulse {
  0%   { transform: scale(.8); opacity: .6; }
  70%  { transform: scale(2);  opacity: 0;  }
  100% { transform: scale(2);  opacity: 0;  }
}

/* ===== Nav ================================================== */
.rl-nav { position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 56px; background: rgba(9,27,48,0.92); color: var(--rl-white);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.rl-nav__brand { display: inline-flex; align-items: center; }
.rl-nav__logo {
  display: block; width: 168px; height: 56px;
  background: var(--rl-white) url('../../assets/logo.png') center/contain no-repeat;
  padding: 0; border-radius: 8px;
}
.rl-nav__links { display: flex; gap: 36px; }
.rl-nav__links a {
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--rl-white);
  transition: color var(--t-fast) var(--ease-out);
}
.rl-nav__links a:hover { color: var(--rl-mint-500); }
.rl-nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: transparent;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 11px; cursor: pointer; flex: 0 0 auto; }
.rl-nav__burger span { display: block; width: 18px; height: 2px; background: var(--rl-white); margin: 0 auto;
  transition: transform .22s var(--ease-out), opacity .18s; }
.rl-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rl-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.rl-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.rl-tier__spots { display: flex; align-items: center; gap: 9px; margin: 16px 0 4px;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; color: var(--rl-mint-600); }
.rl-tier--pro .rl-tier__spots { color: var(--rl-mint-400); }
.rl-tier__spots-bar { flex: 1; height: 5px; border-radius: 999px; background: rgba(9,27,48,.12); overflow: hidden; }
.rl-tier--pro .rl-tier__spots-bar { background: rgba(255,255,255,.16); }
.rl-tier__spots-bar span { display: block; height: 100%; background: var(--rl-mint-500); border-radius: 999px; }

/* ===== Hero ================================================= */
.rl-hero { position: relative; min-height: 760px; color: var(--rl-white); overflow: hidden;
  background: var(--rl-navy-900); display: flex; align-items: center; }
.rl-hero__photo { position: absolute; inset: 0;
  background-image: url('../../assets/photos/hero-field.jpg');
  background-size: cover; background-position: center 35%;
  filter: saturate(.9) contrast(1.05); }
.rl-hero__overlay { position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,27,48,.85) 0%, rgba(9,27,48,.55) 50%, rgba(9,27,48,.35) 100%),
    linear-gradient(180deg, rgba(9,27,48,.5) 0%, rgba(9,27,48,.2) 40%, rgba(9,27,48,.9) 100%); }
.rl-hero__inner { position: relative; max-width: 1320px; padding: 96px 56px 80px; width: 100%; margin: 0 auto; }
.rl-hero__headline { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 7vw, 104px); line-height: 0.96; letter-spacing: -0.02em;
  margin: 22px 0 28px; color: var(--rl-white); max-width: 14ch; overflow-wrap: break-word;
  text-shadow: 0 2px 24px rgba(9,27,48,.45); }
.rl-hero__headline em { font-style: italic; color: var(--rl-mint-500); font-weight: 700; }
.rl-hero__lede { font-size: 19px; font-weight: 500; line-height: 1.6; color: rgba(255,255,255,.92); max-width: 60ch; margin: 0 0 36px;
  text-shadow: 0 1px 12px rgba(9,27,48,.4); }
.rl-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.rl-hero .rl-btn--primary { box-shadow: var(--sh-mint-glow); }

.rl-hero__reassure-list {
  margin: 32px 0 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 12px 32px;
}
.rl-hero__reassure-list li {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rl-white);
}
.rl-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--rl-mint-500); flex-shrink: 0; }

/* ===== Stats strip (what's included) ======================== */
.rl-stats { display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card); border-bottom: 1px solid var(--border-1); }
.rl-stat { padding: 28px 28px; border-right: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.rl-stat:nth-child(4n) { border-right: 0; }
.rl-stat:nth-last-child(-n+4) { border-bottom: 0; }
.rl-stat__k { font-family: var(--font-mono); font-weight: 800; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--rl-mint-600); margin-bottom: 12px; }
.rl-stat__v { font-family: var(--font-display); font-weight: 700; font-size: 24px;
  line-height: 1.12; letter-spacing: -0.01em; color: var(--rl-navy-800); }
.rl-stat__d { font-family: var(--font-sans); font-weight: 500; font-size: 13.5px;
  line-height: 1.45; color: var(--fg-2); margin-top: 10px; }
.amp { font-family: var(--font-sans); font-style: italic; font-weight: 500; padding: 0 0.06em; color: var(--rl-mint-600); }

/* ===== S&C program (five-week gym program + end-of-block reports) === */
.rl-scp { padding: 120px 56px; max-width: 1320px; margin: 0 auto; }
.rl-scp__head { max-width: 760px; margin-bottom: 56px; }
.rl-scp__head .rl-tag { margin-bottom: 18px; }
.rl-scp__body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }

.rl-scp__steps { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-1); border-left: 1px solid var(--border-1); }
.rl-scp__step { display: flex; gap: 16px; padding: 22px 24px;
  border-right: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.rl-scp__num { font-family: var(--font-mono); font-weight: 800; font-size: 13px;
  letter-spacing: 0.12em; color: var(--rl-mint-600); padding-top: 2px; }
.rl-scp__step-body { display: flex; flex-direction: column; gap: 5px; }
.rl-scp__step-t { font-family: var(--font-display); font-weight: 700; font-size: 18px;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--rl-navy-800); }
.rl-scp__step-d { font-family: var(--font-sans); font-weight: 500; font-size: 13.5px;
  line-height: 1.45; color: var(--fg-2); }

.rl-scp__reports { background: var(--rl-navy-900); color: var(--rl-white);
  border-radius: var(--r-lg); padding: 32px 30px; position: relative; overflow: hidden;
  align-self: stretch; }
.rl-scp__reports::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--rl-mint-500); }
.rl-scp__reports-eyebrow { font-family: var(--font-mono); font-weight: 800; font-size: 12px;
  letter-spacing: 0.24em; color: var(--rl-mint-500); }
.rl-scp__reports-title { font-family: var(--font-display); font-weight: 700; font-size: 30px;
  line-height: 1.08; letter-spacing: -0.015em; margin: 12px 0 26px; color: var(--rl-white); }
.rl-scp__reports-title em { font-style: italic; color: var(--rl-mint-500); }
.rl-scp__reports-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 24px; }
.rl-scp__report { display: flex; flex-direction: column; gap: 7px;
  padding-top: 20px; border-top: 1px solid var(--border-inverse); }
.rl-scp__report:first-child { padding-top: 0; border-top: 0; }
.rl-scp__report-k { font-family: var(--font-mono); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; color: var(--rl-navy-400); }
.rl-scp__report-t { font-family: var(--font-display); font-weight: 700; font-size: 19px;
  line-height: 1.2; color: var(--rl-white); }
.rl-scp__report-d { font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  line-height: 1.5; color: rgba(255,255,255,.72); }

/* ===== Sections ============================================= */
.rl-section { padding: 120px 56px; max-width: 1320px; margin: 0 auto; }
.rl-section--narrow { max-width: 920px; }
.rl-section__head { max-width: 720px; margin-bottom: 56px; }
.rl-section__head .rl-tag { margin-bottom: 18px; }
.rl-section__title { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 68px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--rl-navy-800); margin: 0 0 16px; }
.rl-section__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-section__lede { font-size: 19px; font-weight: 500; color: var(--fg-1); line-height: 1.55; max-width: 60ch; margin: 0; }

/* ===== Program photo banner ================================ */
.rl-prog-banner {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  margin-bottom: 40px; min-height: 260px;
  background: var(--rl-navy-900);
}
.rl-prog-banner__photo {
  position: absolute; inset: 0;
  background-image: url('../../assets/photos/coach-group.jpg');
  background-size: cover; background-position: center 30%;
  filter: saturate(.9);
}
.rl-prog-banner__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,27,48,.5) 0%, rgba(9,27,48,.85) 100%);
}
.rl-prog-banner__inner {
  position: relative; padding: 40px 44px;
  display: flex; align-items: flex-end; min-height: 260px;
  color: var(--rl-white);
}
.rl-prog-banner__facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px 40px; width: 100%;
}
.rl-prog-banner__facts > div {
  font-family: var(--font-sans); font-size: 18px; font-weight: 700;
  line-height: 1.4; color: var(--rl-white);
}
.rl-prog-banner__facts b {
  display: block; font-family: var(--font-mono); font-weight: 800;
  font-size: 14px; letter-spacing: 0.22em; color: var(--rl-mint-500);
  margin-bottom: 10px;
}

/* ===== Tier grid =========================================== */
.rl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.rl-tier {
  background: var(--bg-card); border: 1px solid var(--border-1); border-radius: var(--r-lg);
  padding: 30px 30px 28px; display: flex; flex-direction: column;
}
.rl-tier--pro { background: var(--rl-navy-900); color: var(--rl-white); border-color: var(--rl-navy-800); position: relative; }
.rl-tier--pro::before { content:''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--rl-mint-500); border-radius: var(--r-lg) 0 0 var(--r-lg); }

.rl-tier__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.rl-tier__badge { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: var(--r-sm);
  font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.24em;
  background: var(--rl-navy-800); color: var(--rl-mint-500); }
.rl-tier__badge--pro { background: var(--rl-mint-500); color: var(--rl-navy-900); }
.rl-tier__price { display: inline-flex; align-items: baseline; gap: 6px; }
.rl-tier__num { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.015em; color: inherit; }
.rl-tier__per { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; color: var(--fg-2); }
.rl-tier--pro .rl-tier__per { color: rgba(255,255,255,.6); }

.rl-tier__title { font-family: var(--font-display); font-weight: 700; font-size: 28px; line-height: 1.1;
  letter-spacing: -0.01em; margin: 6px 0 12px; color: inherit; }
.rl-tier__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-tier__body { font-size: 15px; font-weight: 500; line-height: 1.55; margin: 0 0 22px; color: inherit; opacity: .92; }

.rl-tier__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.rl-tier__list li { font-size: 14px; font-weight: 500; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; color: inherit; }
.rl-check { color: var(--rl-mint-500); font-weight: 700; flex-shrink: 0; line-height: 1.4; }
.rl-tier .rl-btn { margin-top: auto; }
.rl-tier--pro .rl-btn--block.rl-btn--primary { box-shadow: var(--sh-mint-glow); }

/* Sibling-rate note under each tier's primary CTA. Reads as an inline tag
   + body line so it doesn't compete with the headline price. */
.rl-tier__sibling {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 12px 0 0; padding: 10px 12px;
  border: 1px dashed var(--border-1); border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 500; line-height: 1.45;
  color: var(--fg-2);
}
.rl-tier--pro .rl-tier__sibling {
  border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.78);
}
.rl-tier__sibling b { color: var(--fg-1); font-weight: 700; }
.rl-tier--pro .rl-tier__sibling b { color: var(--rl-white); }
.rl-tier__sibling-tag {
  flex-shrink: 0;
  font-family: var(--font-mono); font-weight: 800; font-size: 9.5px;
  letter-spacing: 0.2em; padding: 3px 7px; border-radius: 3px;
  background: var(--rl-mint-100); color: var(--rl-navy-900);
  line-height: 1.2; margin-top: 1px;
}
.rl-tier--pro .rl-tier__sibling-tag {
  background: var(--rl-mint-500); color: var(--rl-navy-900);
}

.rl-program__footnote { margin: 28px 0 0; font-size: 13px; font-weight: 500; color: var(--fg-2); max-width: 80ch; }

/* ===== Gallery — Inside a Session ========================== */
.rl-gallery { padding: 120px 56px; max-width: 1320px; margin: 0 auto; }
.rl-gallery__head { max-width: 720px; margin-bottom: 48px; }
.rl-gallery__head .rl-tag { margin-bottom: 18px; }
.rl-gallery__title { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 68px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--rl-navy-800); margin: 0 0 16px; }
.rl-gallery__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-gallery__lede { font-size: 19px; font-weight: 500; color: var(--fg-1); line-height: 1.55; max-width: 60ch; margin: 0; }

.rl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.rl-shot {
  position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden;
  background: var(--rl-navy-900);
}
.rl-shot--tall { grid-row: span 2; }
.rl-shot--wide { grid-column: span 2; }
.rl-shot--sq   { grid-column: span 1; grid-row: span 1; }

.rl-shot__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  transition: transform 700ms var(--ease-out);
}
.rl-shot__img--floodlight { background-image: url('../../assets/photos/action-floodlight.jpg'); background-position: center 30%; }
.rl-shot__img--offload    { background-image: url('../../assets/photos/action-offload.jpg');    background-position: center 30%; }
.rl-shot__img--teaching   { background-image: url('../../assets/photos/coach-teaching.jpg');    background-position: center 25%; }
.rl-shot__img--tackle     { background-image: url('../../assets/photos/action-tackle.jpg');     background-position: center 35%; }
.rl-shot__img--pass       { background-image: url('../../assets/photos/action-pass.jpg');       background-position: center 30%; }
.rl-shot__img--run        { background-image: url('../../assets/photos/action-run.jpg');        background-position: center 30%; }
.rl-shot:hover .rl-shot__img { transform: scale(1.04); }
.rl-shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, rgba(9,27,48,0) 0%, rgba(9,27,48,.82) 70%);
  color: var(--rl-white);
  font-family: var(--font-mono); font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ===== Coaching team grid ================================== */
.rl-section--cream-dark { background: var(--rl-navy-900); max-width: none; padding-left: 0; padding-right: 0; }
.rl-section--cream-dark > * { max-width: 1320px; margin-left: auto; margin-right: auto; padding-left: 56px; padding-right: 56px; }
.rl-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rl-staff {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); overflow: hidden;
  color: var(--rl-white); position: relative;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.rl-staff:hover { transform: translateY(-2px); border-color: rgba(46,196,160,.4); }
.rl-staff__photo {
  width: 100%; aspect-ratio: 4/3;
  background-size: cover; background-position: center 25%;
  background-color: var(--rl-navy-800);
  position: relative;
}
.rl-staff__photo--liam   { background-image: url('../../assets/photos/liam-wright.jpg');   background-position: center 22%; }
.rl-staff__photo--callum { background-image: url('../../assets/photos/coach-callum.jpg'); background-position: center 25%; }
.rl-staff__photo--graham { background-image: url('../../assets/photos/coach-graham.jpg'); background-position: center 30%; }
.rl-staff__photo--tom    { background-image: url('../../assets/photos/coach-tom.jpg');    background-position: 62% 38%; background-size: 175%; }
.rl-staff__photo--initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rl-navy-700), var(--rl-navy-900));
}
.rl-staff__photo--initials span {
  font-family: var(--font-display); font-weight: 700; font-size: 88px;
  letter-spacing: -0.04em; color: var(--rl-mint-500);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.rl-staff__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,27,48,0) 50%, rgba(9,27,48,.55) 100%);
}
.rl-staff__body { padding: 20px 22px 24px; position: relative; }
.rl-staff__body::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--rl-mint-500); transform: scaleY(.3); transform-origin: top;
  transition: transform var(--t-base) var(--ease-out);
}
.rl-staff:hover .rl-staff__body::before { transform: scaleY(1); }
.rl-staff__role { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.22em; color: var(--rl-mint-500); text-transform: uppercase; }
.rl-staff__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin: 6px 0 8px; line-height: 1.15; }
.rl-staff__creds { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); line-height: 1.45; }

/* ===== Ballymore section =================================== */
.rl-ballymore { background: var(--rl-cream-100); }
.rl-ballymore__inner { max-width: 1320px; margin: 0 auto; padding: 120px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.rl-ballymore__title { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 68px); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--rl-navy-800); margin: 18px 0 18px; }
.rl-ballymore__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-ballymore__lede { font-size: 20px; font-weight: 600; color: var(--fg-1);
  line-height: 1.55; max-width: 56ch; margin: 0 0 36px; }
.rl-ballymore__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px;
  border-top: 1px solid var(--border-1); padding-top: 28px; }
.rl-ballymore__facts > div { font-size: 16px; font-weight: 600; color: var(--rl-navy-800); line-height: 1.55; }
.rl-ballymore__facts b { display: block; font-family: var(--font-mono); font-weight: 800;
  font-size: 14px; letter-spacing: 0.22em; color: var(--rl-mint-600); margin-bottom: 12px; }
.rl-ballymore__facts a { color: var(--rl-navy-800); border-bottom: 1.5px solid var(--rl-mint-500); }
.rl-ballymore__photo { position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; width: 100%; max-width: 560px; margin-left: auto; background: var(--rl-navy-900); }
.rl-ballymore__photo-img { position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(9,27,48,0) 50%, rgba(9,27,48,.7)), url('../../assets/photos/action-floodlight.jpg');
  background-size: cover; background-position: center center; filter: saturate(.9); }
.rl-ballymore__plate { position: absolute; left: 28px; right: 28px; bottom: 28px;
  background: rgba(9,27,48,.85); padding: 18px 22px; border-left: 3px solid var(--rl-mint-500); }
.rl-ballymore__plate-k { font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; color: var(--rl-mint-500); }
.rl-ballymore__plate-v { margin-top: 6px; font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--rl-white); letter-spacing: -0.01em; }

/* ===== Coach feature panel ================================== */
.rl-coach { display: grid; grid-template-columns: 1.25fr 1fr; background: var(--rl-navy-900);
  color: var(--rl-white); position: relative; }
.rl-coach__panel { padding: 96px 56px 96px 72px; position: relative; background: var(--rl-cream-50); color: var(--rl-navy-800); }
.rl-coach__panel::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: -2px; width: 4px; background: var(--rl-mint-500);
}
.rl-coach__title { font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.4vw, 60px); line-height: 1; letter-spacing: -0.02em;
  margin: 18px 0 14px; color: var(--rl-navy-800); }
.rl-coach__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-coach__sub { font-weight: 600; font-size: 17px; line-height: 1.5; margin: 0 0 28px; color: var(--rl-slate-500); }
.rl-info-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 26px; }
.rl-info { display: grid; grid-template-columns: 3px 140px 1fr; gap: 16px; align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--border-1); }
.rl-info:last-of-type { border-bottom: 0; }
.rl-info__bar { width: 3px; height: 38px; background: var(--rl-mint-500); }
.rl-info__k { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rl-slate-500); font-weight: 700; }
.rl-info__v { font-size: 17px; font-weight: 600; color: var(--rl-navy-800); }
.rl-coach__strip { background: var(--rl-navy-900); color: var(--rl-white); border-radius: 10px;
  padding: 14px 20px; text-align: center; font-weight: 600; font-size: 14px; margin: 0 0 26px;
  border: 1px solid rgba(46,196,160,.2); }

.rl-coach__photo { position: relative; min-height: 720px; overflow: hidden; background: var(--rl-navy-900); }
.rl-coach__photo-img { position: absolute; inset: 0;
  background-image: url('../../assets/photos/liam-wright.jpg'); background-size: cover; background-position: center 25%; }
.rl-coach__name-block { position: absolute; left: 36px; right: 36px; bottom: 36px;
  background: rgba(9,27,48,.82); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  padding: 22px 26px; border-left: 3px solid var(--rl-mint-500); }
.rl-coach__name { font-family: var(--font-sans); font-weight: 800; font-size: 30px; letter-spacing: 0.1em; color: var(--rl-white); }
.rl-coach__creds { margin-top: 8px; font-family: var(--font-mono); font-weight: 800; font-size: 14px;
  letter-spacing: 0.2em; color: var(--rl-mint-500); }
.rl-coach__role { margin-top: 12px; font-size: 17px; font-weight: 700; color: var(--rl-white); }

/* ===== FAQ ================================================== */
.rl-faq details { border-top: 1px solid var(--border-1); padding: 22px 4px; }
.rl-faq details:last-of-type { border-bottom: 1px solid var(--border-1); }
.rl-faq summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer;
  list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--rl-navy-800); letter-spacing: -0.005em; }
.rl-faq summary::-webkit-details-marker { display: none; }
.rl-faq__sign { font-family: var(--font-mono); font-size: 22px; color: var(--rl-mint-500); width: 28px; text-align: right; }
.rl-faq p { margin: 14px 0 0; max-width: 70ch; color: var(--fg-1); font-weight: 500; line-height: 1.65; }

/* ===== Final CTA banner ==================================== */
.rl-finalcta {
  position: relative; min-height: 540px; color: var(--rl-white);
  background: var(--rl-navy-900); overflow: hidden;
  display: flex; align-items: center;
}
.rl-finalcta__photo {
  position: absolute; inset: 0;
  background-image: url('../../assets/photos/action-floodlight.jpg');
  background-size: cover; background-position: center 35%;
  filter: saturate(.9);
}
.rl-finalcta__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(9,27,48,.78) 0%, rgba(9,27,48,.55) 60%, rgba(9,27,48,.35) 100%),
    linear-gradient(180deg, rgba(9,27,48,.4) 0%, rgba(9,27,48,.8) 100%);
}
.rl-finalcta__inner {
  position: relative; max-width: 1320px; margin: 0 auto;
  padding: 96px 56px; width: 100%;
}
.rl-finalcta__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 76px); line-height: 1; letter-spacing: -0.02em;
  margin: 18px 0 18px; color: var(--rl-white);
  text-shadow: 0 2px 24px rgba(9,27,48,.45);
}
.rl-finalcta__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-finalcta__lede {
  font-size: 18px; font-weight: 500; line-height: 1.55;
  color: rgba(255,255,255,.9); max-width: 60ch; margin: 0 0 32px;
  text-shadow: 0 1px 12px rgba(9,27,48,.4);
}
.rl-finalcta__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.rl-finalcta .rl-btn--primary { box-shadow: var(--sh-mint-glow); }

/* ===== Footer =============================================== */
.rl-footer { background: var(--rl-navy-900); color: var(--rl-white); padding: 72px 56px 28px; }
.rl-footer__inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 2fr; gap: 64px; }
.rl-footer__logoplate { background: var(--rl-cream-50); padding: 18px 26px; border-radius: 10px; display: inline-block; }
.rl-footer__logo {
  display: block; width: 220px; height: 120px;
  background: url('../../assets/logo.png') center/contain no-repeat;
}
.rl-footer__tag { margin-top: 22px; font-size: 15px; font-weight: 700; color: #ffffff; max-width: 36ch; line-height: 1.55; }
.rl-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.rl-footer__col-h { font-family: var(--font-mono); font-weight: 800; font-size: 17px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rl-mint-500); margin-bottom: 16px; }
.rl-footer__cols a { display: block; font-size: 15.5px; font-weight: 700; color: #ffffff; padding: 6px 0; transition: color var(--t-fast) var(--ease-out); }
.rl-footer__cols a:hover { color: var(--rl-mint-500); }
.rl-footer__legal { max-width: 1320px; margin: 56px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ============================================================
   Responsive — tablet (≤ 960px) and mobile (≤ 640px).
   ============================================================ */
@media (max-width: 960px) {
  .rl-nav { padding: 12px 20px; gap: 12px; flex-wrap: wrap; }
  .rl-nav__logo { width: 150px; height: 56px; padding: 6px 10px; }
  .rl-nav__links { gap: 18px; }
  .rl-nav__links a { font-size: 12px; letter-spacing: 0.1em; }

  .rl-hero { min-height: 0; }
  .rl-hero__inner { padding: 56px 24px 56px; }
  .rl-hero__headline { font-size: clamp(40px, 9vw, 64px); max-width: 100%; margin: 16px 0 18px; }
  .rl-hero__lede { font-size: 16px; margin-bottom: 24px; }
  .rl-hero__ctas .rl-btn { padding: 14px 20px; font-size: 12px; }
  .rl-hero__reassure-list { gap: 8px 18px; margin-top: 22px; }

  .rl-stats { grid-template-columns: repeat(2, 1fr); }
  .rl-stat { padding: 22px 22px; }
  .rl-stat:nth-child(4n) { border-right: 1px solid var(--border-1); }
  .rl-stat:nth-child(2n) { border-right: 0; }
  .rl-stat__v { font-size: 21px; }

  .rl-section { padding: 72px 24px; }
  .rl-section__head { margin-bottom: 36px; }
  .rl-section__title { font-size: clamp(34px, 7vw, 52px); }
  .rl-section__lede { font-size: 17px; }

  .rl-scp { padding: 72px 24px; }
  .rl-scp__head { margin-bottom: 36px; }
  .rl-scp__body { grid-template-columns: 1fr; gap: 22px; }
  .rl-scp__step { padding: 18px 18px; }
  .rl-scp__step-t { font-size: 16px; }
  .rl-scp__reports { padding: 28px 22px; }
  .rl-scp__reports-title { font-size: 26px; }

  .rl-prog-banner__inner { padding: 28px 24px; }
  .rl-prog-banner__facts { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .rl-prog-banner__facts > div { font-size: 15px; }

  .rl-grid-2 { grid-template-columns: 1fr; }
  .rl-tier { padding: 26px 24px; }
  .rl-tier__title { font-size: 24px; }
  .rl-tier__num { font-size: 28px; }

  .rl-gallery { padding: 72px 24px; }
  .rl-gallery__head { margin-bottom: 32px; }
  .rl-gallery__title { font-size: clamp(34px, 7vw, 52px); }
  .rl-gallery__lede { font-size: 17px; }
  .rl-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .rl-shot--wide { grid-column: span 2; }
  .rl-shot--tall { grid-row: span 2; grid-column: span 1; }
  .rl-shot__cap { font-size: 11px; letter-spacing: 0.14em; padding: 12px 14px 12px; }

  .rl-section--cream-dark > * { padding-left: 24px; padding-right: 24px; }
  .rl-team { grid-template-columns: 1fr 1fr; gap: 14px; }
  .rl-staff__name { font-size: 20px; }

  .rl-ballymore__inner { padding: 72px 24px; grid-template-columns: 1fr; gap: 32px; }
  .rl-ballymore__title { font-size: clamp(34px, 7vw, 52px); margin: 14px 0 14px; }
  .rl-ballymore__lede { font-size: 17px; margin-bottom: 28px; }
  .rl-ballymore__facts { grid-template-columns: 1fr; gap: 20px; padding-top: 22px; }
  .rl-ballymore__photo { max-width: 100%; margin-left: 0; aspect-ratio: 4/3; }

  .rl-coach { grid-template-columns: 1fr; }
  .rl-coach__panel { padding: 56px 24px; }
  .rl-coach__panel::after { display: none; }
  .rl-coach__title { font-size: clamp(32px, 7vw, 48px); }
  .rl-coach__sub { font-size: 15px; margin-bottom: 22px; }
  .rl-info { grid-template-columns: 3px 110px 1fr; gap: 12px; padding: 8px 0; }
  .rl-info__k { font-size: 11px; }
  .rl-info__v { font-size: 15px; }
  .rl-coach__photo { min-height: 480px; }

  .rl-faq summary { font-size: 18px; }
  .rl-faq p { font-size: 15px; }

  .rl-finalcta { min-height: 0; }
  .rl-finalcta__inner { padding: 64px 24px; }
  .rl-finalcta__ctas .rl-btn { padding: 14px 20px; font-size: 12px; }

  .rl-footer { padding: 56px 24px 24px; }
  .rl-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .rl-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rl-footer__logo { width: 180px; height: 92px; }
  .rl-footer__legal { flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 36px; }
}

@media (max-width: 480px) {
  .rl-nav { padding: 10px 16px; }
  .rl-nav__logo { width: 128px; height: 48px; }
  .rl-nav__links { gap: 12px; width: 100%; order: 3; justify-content: space-between; padding-top: 6px; border-top: 1px solid rgba(255,255,255,.08); }
  .rl-nav__links a { font-size: 11px; }
  .rl-nav .rl-btn { padding: 10px 14px; font-size: 11px; }

  .rl-hero__inner { padding: 40px 18px 48px; }
  .rl-hero__headline { font-size: clamp(31px, 8.6vw, 50px); line-height: 1.0; }
  .rl-hero__ctas { flex-direction: column; align-items: stretch; }
  .rl-hero__ctas .rl-btn { width: 100%; justify-content: center; }

  .rl-section { padding: 56px 18px; }
  .rl-gallery { padding: 56px 18px; }
  .rl-ballymore__inner { padding: 56px 18px; }
  .rl-finalcta__inner { padding: 56px 18px; }
  .rl-finalcta__ctas { flex-direction: column; align-items: stretch; }
  .rl-finalcta__ctas .rl-btn { width: 100%; justify-content: center; }
  .rl-footer { padding: 48px 18px 22px; }

  .rl-scp { padding: 56px 18px; }
  .rl-scp__steps { grid-template-columns: 1fr; }

  .rl-stats { grid-template-columns: 1fr; }
  .rl-stat { border-right: 0; }

  .rl-prog-banner__facts { grid-template-columns: 1fr 1fr; }

  .rl-team { grid-template-columns: 1fr; }

  .rl-footer__cols { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 720px) {
  .rl-nav { flex-wrap: nowrap; gap: 10px; }
  .rl-nav__burger { display: flex; order: 3; }
  .rl-nav__cta { margin-left: auto; }
  .rl-nav__links {
    position: absolute; top: 100%; left: 0; right: 0; width: auto; order: 0;
    flex-direction: column; gap: 0; align-items: stretch; padding: 0;
    background: rgba(9,27,48,.98); border-top: 1px solid rgba(255,255,255,.08);
    max-height: 0; overflow: hidden; transition: max-height .26s var(--ease-out);
  }
  .rl-nav__links.is-open { max-height: 60vh; }
  .rl-nav__links a { padding: 15px 24px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 380px) {
  .rl-nav__cta { padding: 9px 12px; font-size: 10.5px; }
  .rl-nav__logo { width: 112px; }
}

/* ===== Payment modal ======================================== */
.rl-pay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(9,27,48,.78);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow: auto;
  animation: rl-pay-fade 220ms var(--ease-out);
}
@keyframes rl-pay-fade { from { opacity: 0; } }
.rl-pay__card {
  background: var(--rl-cream-50); width: min(960px, 100%);
  border-radius: var(--r-xl); position: relative;
  box-shadow: 0 30px 80px rgba(9,27,48,.5);
  border: 1px solid var(--border-1);
  overflow: hidden; max-height: 92vh; display: flex; flex-direction: column;
  animation: rl-pay-rise 280ms var(--ease-out);
}
@keyframes rl-pay-rise { from { transform: translateY(16px); opacity: 0; } }
.rl-pay__close {
  position: absolute; top: 14px; right: 14px; background: rgba(9,27,48,.06); border: 0;
  width: 36px; height: 36px; cursor: pointer; font-size: 16px; color: var(--rl-navy-800);
  border-radius: 999px; transition: background var(--t-fast) var(--ease-out);
  z-index: 2;
}
.rl-pay__close:hover { background: var(--rl-cream-200); }

.rl-pay__grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  overflow: auto;
}
.rl-pay__form { padding: 40px 40px 36px; overflow: auto; }
.rl-pay__eyebrow {
  font-family: var(--font-mono); font-weight: 800; font-size: 11px;
  letter-spacing: 0.24em; color: var(--rl-mint-600); margin-bottom: 6px;
}
.rl-pay__title {
  font-family: var(--font-display); font-weight: 700; font-size: 38px;
  letter-spacing: -0.02em; line-height: 1; margin: 0 0 8px; color: var(--rl-navy-800);
}
.rl-pay__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-pay__sub { margin: 0 0 28px; font-size: 14px; color: var(--rl-slate-500); }

.rl-pay__section { margin-bottom: 22px; }
.rl-pay__label {
  font-family: var(--font-mono); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; color: var(--rl-slate-500); margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.rl-pay__lock { font-size: 10px; letter-spacing: 0.18em; color: var(--rl-mint-600); }

.rl-pay__tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rl-pay__tier {
  position: relative; padding: 14px 14px 14px 38px;
  border: 1.5px solid var(--border-1); border-radius: var(--r-md);
  cursor: pointer; transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
  display: grid; grid-template-columns: 1fr auto; gap: 4px;
  background: var(--rl-white);
}
.rl-pay__tier input { position: absolute; opacity: 0; }
.rl-pay__tier::before {
  content: ''; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 999px;
  border: 1.5px solid var(--rl-cream-200);
  background: var(--rl-white);
}
.rl-pay__tier.is-on { border-color: var(--rl-mint-500); background: var(--rl-mint-100); }
.rl-pay__tier.is-on::before { border-color: var(--rl-mint-500); box-shadow: inset 0 0 0 4px var(--rl-mint-500); }
.rl-pay__tier-name {
  font-family: var(--font-mono); font-weight: 800; font-size: 13px;
  letter-spacing: 0.18em; color: var(--rl-navy-800);
}
.rl-pay__tier-price {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--rl-navy-800); letter-spacing: -0.01em; text-align: right;
}
.rl-pay__tier-price i { font-family: var(--font-mono); font-style: normal; font-size: 10px;
  letter-spacing: 0.16em; color: var(--rl-slate-500); margin-left: 3px; font-weight: 700; }
.rl-pay__tier-desc {
  grid-column: 1 / -1; font-size: 12px; color: var(--rl-slate-500); line-height: 1.4; font-weight: 500;
}
.rl-pay__tier-strike {
  display: inline-block; margin-left: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; color: var(--rl-slate-500);
  text-decoration: line-through; text-decoration-thickness: 1px;
}

/* Sibling-discount toggle inside the picker. Reads as a checkbox row
   with title + savings chip + supporting paragraph. */
.rl-pay__sibling {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  padding: 14px 14px 14px 14px;
  border: 1.5px solid var(--border-1); border-radius: var(--r-md);
  background: var(--rl-white); cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.rl-pay__sibling input { position: absolute; opacity: 0; pointer-events: none; }
.rl-pay__sibling-box {
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid var(--rl-cream-200); background: var(--rl-white);
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent; transition: all var(--t-fast) var(--ease-out);
  margin-top: 1px;
}
.rl-pay__sibling.is-on { border-color: var(--rl-mint-500); background: var(--rl-mint-100); }
.rl-pay__sibling.is-on .rl-pay__sibling-box {
  background: var(--rl-mint-500); border-color: var(--rl-mint-500); color: var(--rl-navy-900);
}
.rl-pay__sibling-text { display: flex; flex-direction: column; gap: 4px; }
.rl-pay__sibling-title {
  font-family: var(--font-mono); font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; color: var(--rl-navy-800);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.rl-pay__sibling-save {
  font-family: var(--font-mono); font-weight: 800; font-size: 10px;
  letter-spacing: 0.14em; padding: 3px 7px; border-radius: 3px;
  background: var(--rl-navy-900); color: var(--rl-mint-500);
}
.rl-pay__sibling.is-on .rl-pay__sibling-save {
  background: var(--rl-mint-500); color: var(--rl-navy-900);
}
.rl-pay__sibling-sub {
  font-size: 12px; line-height: 1.45; color: var(--rl-slate-500); font-weight: 500;
}

/* Savings line in the order summary — tinted mint to read as a credit. */
.rl-pay__sum-line--save { color: var(--rl-mint-500); }
.rl-pay__sum-line--save b { color: var(--rl-mint-500); }

/* Compare line: "vs. $792 at two standard rates" beneath the family total. */
.rl-pay__sum-was {
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 4px;
}

/* Two-step family checkout — one row per seat, sequential. */
.rl-pay__steps {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 14px;
}
.rl-pay__step {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 14px;
  align-items: center;
  padding: 14px 14px 14px 14px;
  border: 1.5px solid var(--border-1); border-radius: var(--r-md);
  background: var(--rl-white);
  transition: border-color var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.rl-pay__step.is-next { opacity: 0.55; }
.rl-pay__step.is-now { border-color: var(--rl-mint-500); background: var(--rl-mint-100); }
.rl-pay__step.is-done { border-color: var(--rl-mint-500); background: var(--rl-white); }
.rl-pay__step-num {
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; font-size: 13px;
  background: var(--rl-navy-900); color: var(--rl-white);
}
.rl-pay__step.is-done .rl-pay__step-num { background: var(--rl-mint-500); color: var(--rl-navy-900); }
.rl-pay__step-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rl-pay__step-title {
  font-family: var(--font-mono); font-weight: 800; font-size: 12px;
  letter-spacing: 0.16em; color: var(--rl-navy-900); text-transform: uppercase;
}
.rl-pay__step-sub { font-size: 12px; color: var(--rl-slate-500); font-weight: 500; }
.rl-pay__step-btn {
  white-space: nowrap;
  font-size: 11px !important;
  padding: 10px 14px !important;
}
.rl-pay__step-btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.rl-pay__row { display: block; }
.rl-pay__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rl-pay__field { display: flex; flex-direction: column; gap: 5px; margin: 0 0 10px; }
.rl-pay__field--full { width: 100%; }
.rl-pay__field > span {
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--rl-slate-500);
}
.rl-pay__field input, .rl-pay__field select {
  padding: 12px 14px; border: 1.5px solid var(--border-1); border-radius: var(--r-md);
  font-family: var(--font-sans); font-size: 15px; color: var(--rl-navy-800); background: var(--rl-white);
  outline: 0; transition: border-color var(--t-fast) var(--ease-out);
}
.rl-pay__field input:focus, .rl-pay__field select:focus { border-color: var(--rl-mint-500); }
.rl-pay__field input::placeholder { color: #B8C0C9; }
.rl-pay__field textarea {
  padding: 12px 14px; border: 1.5px solid var(--border-1); border-radius: var(--r-md);
  font-family: var(--font-sans); font-size: 15px; color: var(--rl-navy-800); background: var(--rl-white);
  outline: 0; resize: vertical; min-height: 72px; transition: border-color var(--t-fast) var(--ease-out);
}
.rl-pay__field textarea:focus { border-color: var(--rl-mint-500); }
.rl-pay__field textarea::placeholder { color: #B8C0C9; }
.rl-pay__field.is-bad input, .rl-pay__field.is-bad select, .rl-pay__field.is-bad textarea { border-color: var(--rl-danger); background: #FFF7F6; }

.rl-pay__input-wrap { position: relative; display: flex; }
.rl-pay__input-wrap input { flex: 1; padding-right: 80px; }
.rl-pay__brand {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-weight: 800; font-size: 10px;
  letter-spacing: 0.18em; padding: 4px 8px; border-radius: var(--r-sm);
  background: var(--rl-navy-800); color: var(--rl-white);
}
.rl-pay__brand--visa       { background: #1A1F71; }
.rl-pay__brand--mastercard { background: #EB001B; }
.rl-pay__brand--amex       { background: #006FCF; }

.rl-pay__submit {
  width: 100%; justify-content: center; margin-top: 14px;
  box-shadow: var(--sh-mint-glow); padding: 18px 24px;
}
.rl-pay__submit:disabled { box-shadow: none; }
.rl-pay__finetext {
  margin: 14px 0 0; font-size: 12px; line-height: 1.5; color: var(--rl-slate-500);
}
.rl-pay__embed {
  border: 1px solid var(--border-1); border-radius: var(--r-lg);
  overflow: hidden; background: #fff; box-shadow: var(--sh-1);
}
.rl-pay__embed iframe { display: block; width: 100%; height: 640px; border: 0; }
.rl-pay__embed-note { margin: 10px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--rl-slate-500); }

/* Summary panel */
.rl-pay__summary {
  background: var(--rl-navy-900); color: var(--rl-white);
  padding: 40px 32px; display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.rl-pay__summary::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--rl-mint-500);
}
.rl-pay__sum-eyebrow {
  font-family: var(--font-mono); font-weight: 800; font-size: 11px;
  letter-spacing: 0.24em; color: var(--rl-mint-500);
}
.rl-pay__sum-tier { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.rl-pay__sum-badge {
  display: inline-flex; padding: 6px 10px; border-radius: var(--r-sm);
  font-family: var(--font-mono); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; background: var(--rl-navy-800); color: var(--rl-mint-500);
}
.rl-pay__sum-badge--pro { background: var(--rl-mint-500); color: var(--rl-navy-900); }
.rl-pay__sum-tier-title {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; line-height: 1;
}
.rl-pay__sum-line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: rgba(255,255,255,.75); margin-top: 8px;
}
.rl-pay__sum-line b { color: var(--rl-white); font-weight: 700; font-size: 15px; }
.rl-pay__sum-divider { height: 1px; background: rgba(255,255,255,.12); margin: 12px 0 6px; }
.rl-pay__sum-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); font-weight: 800; font-size: 11px; letter-spacing: 0.22em;
  color: rgba(255,255,255,.7); padding: 4px 0;
}
.rl-pay__sum-total b {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.01em; color: var(--rl-white);
}
.rl-pay__sum-total b i { font-family: var(--font-mono); font-style: normal; font-size: 10px;
  letter-spacing: 0.18em; color: var(--rl-mint-500); margin-left: 4px; font-weight: 700; }
.rl-pay__sum-today {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 14px; border-radius: var(--r-md);
  background: var(--rl-mint-500); color: var(--rl-navy-900);
  font-family: var(--font-mono); font-weight: 800; font-size: 12px; letter-spacing: 0.18em;
  margin: 4px 0 10px;
}
.rl-pay__sum-today b { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.rl-pay__sum-list { list-style: none; padding: 0; margin: 8px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.rl-pay__sum-list li {
  position: relative; padding-left: 18px; font-size: 13px; line-height: 1.4;
  color: rgba(255,255,255,.85);
}
.rl-pay__sum-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--rl-mint-500); font-weight: 700;
}
.rl-pay__sum-secure {
  margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-mono); font-weight: 600; font-size: 10px;
  letter-spacing: 0.18em; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px;
}

/* Processing / success states */
.rl-pay__state { padding: 64px 48px; text-align: center; min-height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.rl-pay__state-title { font-family: var(--font-display); font-weight: 700; font-size: 38px;
  letter-spacing: -0.02em; line-height: 1.05; margin: 4px 0 0; color: var(--rl-navy-800); }
.rl-pay__state-title em { font-style: italic; color: var(--rl-mint-500); }
.rl-pay__state-sub { margin: 0; font-size: 15px; line-height: 1.55; color: var(--rl-slate-500); max-width: 48ch; }
.rl-pay__spinner {
  width: 56px; height: 56px; border-radius: 999px;
  border: 3px solid var(--rl-cream-200); border-top-color: var(--rl-mint-500);
  animation: rl-spin 800ms linear infinite;
}
@keyframes rl-spin { to { transform: rotate(360deg); } }
.rl-pay__check {
  width: 64px; height: 64px; border-radius: 999px; background: var(--rl-mint-500);
  color: var(--rl-navy-900); display: inline-flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; box-shadow: var(--sh-mint-glow);
}
.rl-pay__receipt {
  margin-top: 14px; padding: 18px 22px; border-radius: var(--r-md);
  background: var(--rl-white); border: 1px solid var(--border-1);
  width: min(420px, 100%); display: flex; flex-direction: column; gap: 10px;
}
.rl-pay__receipt-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--rl-slate-500);
}
.rl-pay__receipt-row b { color: var(--rl-navy-800); font-weight: 700; font-size: 14px; }

@media (max-width: 760px) {
  .rl-pay { padding: 0; }
  .rl-pay__card { max-height: 100vh; border-radius: 0; width: 100%; }
  .rl-pay__grid { grid-template-columns: 1fr; }
  .rl-pay__form { padding: 32px 22px 28px; }
  .rl-pay__title { font-size: 30px; }
  .rl-pay__summary { padding: 28px 22px; order: -1; }
  .rl-pay__tiers { grid-template-columns: 1fr; }
  .rl-pay__state { padding: 48px 24px; }
  .rl-pay__state-title { font-size: 28px; }
}

/* ===== Programs toggle + Online tier ======================== */
/* Feature list inside any rl-pay modal (was unstyled). */
.rl-pay__features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.rl-pay__features li {
  font-size: 13.5px; font-weight: 500; line-height: 1.45; color: var(--rl-navy-800);
  padding-left: 24px; position: relative;
}
.rl-pay__features li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--rl-mint-600); font-weight: 800; font-size: 13px;
}

/* Section head variant that carries the In-person / Online toggle. */
.rl-section__head--toggle {
  max-width: none; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.rl-section__head--toggle .rl-tag { margin-bottom: 0; }

/* Segmented toggle — pill track, navy active thumb. */
.rl-seg {
  display: inline-flex; background: var(--rl-cream-200); border-radius: var(--r-pill);
  padding: 5px; gap: 4px;
}
.rl-seg button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.01em; color: var(--rl-slate-500);
  padding: 11px 22px; border-radius: var(--r-pill);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.rl-seg button:hover { color: var(--rl-navy-800); }
.rl-seg button.is-on { background: var(--rl-navy-900); color: var(--rl-white); }

/* Path chooser — the two big distinct entry panels. */
.rl-chooser-intro { max-width: 720px; margin-bottom: 40px; }
.rl-chooser-intro .rl-section__title { margin-bottom: 16px; }
.rl-chooser {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  animation: rl-online-fade 360ms var(--ease-out);
}
.rl-choice {
  position: relative; overflow: hidden; cursor: pointer;
  border: 0; padding: 0; text-align: left; font: inherit; color: var(--rl-white);
  border-radius: var(--r-xl); min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--rl-navy-900);
  box-shadow: 0 18px 50px -28px rgba(9,27,48,.55);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.rl-choice:hover { transform: translateY(-6px); box-shadow: 0 32px 70px -30px rgba(9,27,48,.7); }
.rl-choice:focus-visible { outline: 3px solid var(--rl-mint-500); outline-offset: 3px; }
.rl-choice__photo {
  position: absolute; inset: 0; background-size: cover;
  transition: transform 700ms var(--ease-out);
}
.rl-choice:hover .rl-choice__photo { transform: scale(1.05); }
.rl-choice__photo--inperson { background-image: url('../../assets/photos/action-floodlight.jpg'); background-position: center 30%; }
.rl-choice__photo--online   { background-image: url('../../assets/photos/liam-wright.jpg'); background-position: center 18%; }
.rl-choice__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,27,48,.15) 0%, rgba(9,27,48,.55) 48%, rgba(9,27,48,.95) 100%);
}
.rl-choice__scrim--online {
  background:
    linear-gradient(180deg, rgba(9,27,48,.15) 0%, rgba(9,27,48,.55) 48%, rgba(9,27,48,.95) 100%),
    linear-gradient(120deg, rgba(46,196,160,.30), transparent 55%);
}
.rl-choice__body { position: relative; z-index: 1; padding: 34px 34px 32px; display: flex; flex-direction: column; }
.rl-choice__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  font-family: var(--font-mono); font-weight: 800; font-size: 12px;
  letter-spacing: 0.2em; color: var(--rl-mint-500);
  padding: 7px 13px; border-radius: var(--r-pill);
  background: rgba(9,27,48,.55); border: 1px solid rgba(46,196,160,.4);
  margin-bottom: 18px;
}
.rl-choice__eyebrow svg { flex-shrink: 0; }
.rl-choice__title {
  font-family: var(--font-display); font-weight: 800; font-size: 38px;
  line-height: 1.02; letter-spacing: -0.02em; color: var(--rl-white); margin-bottom: 12px;
}
.rl-choice__title em { font-style: italic; color: var(--rl-mint-500); }
.rl-choice__desc { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.86); max-width: 42ch; margin-bottom: 18px; }
.rl-choice__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.rl-choice__meta span {
  font-family: var(--font-mono); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.82);
  padding: 6px 11px; border-radius: var(--r-pill); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}
.rl-choice__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); flex-wrap: wrap;
}
.rl-choice__price { font-size: 14px; color: rgba(255,255,255,.75); }
.rl-choice__price b { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--rl-white); letter-spacing: -0.01em; }
.rl-choice__price i { font-style: normal; font-size: 12px; }
.rl-choice__go {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rl-navy-900); background: var(--rl-mint-500);
  padding: 12px 20px; border-radius: var(--r-pill);
  transition: gap var(--t-fast) var(--ease-out);
}
.rl-choice:hover .rl-choice__go { gap: 14px; }

/* Switcher bar shown once a path is selected. */
.rl-pathbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rl-pathbar__back {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--rl-slate-500);
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 4px;
  transition: color var(--t-fast) var(--ease-out);
}
.rl-pathbar__back:hover { color: var(--rl-mint-600); }

.rl-inperson, .rl-online { animation: rl-online-fade 360ms var(--ease-out); }
@keyframes rl-online-fade { from { opacity: 0; transform: translateY(10px); } }

.rl-online__intro { max-width: 720px; margin-bottom: 44px; }
.rl-online__intro .rl-section__title { margin-bottom: 16px; }

/* Sub-section divider header within the online block. */
.rl-online__subhead {
  font-family: var(--font-mono); font-weight: 800; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--rl-navy-800);
  margin: 48px 0 20px; display: flex; align-items: center; gap: 16px;
}
.rl-online__subhead::after { content: ''; flex: 1; height: 1px; background: var(--border-1); }
.rl-online__subhead:first-of-type { margin-top: 0; }

.rl-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
/* Online cards: let the CTA label wrap instead of forcing track min-width. */
.rl-online .rl-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rl-online .rl-tier .rl-btn { white-space: normal; text-align: center; }

/* How-it-works strip below the online cards. */
.rl-online__how { margin-top: 64px; }
.rl-online__how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 28px;
}
.rl-online__step .rl-online__step-n {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1.5px solid var(--rl-mint-500); color: var(--rl-mint-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.rl-online__step h5 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -0.01em; color: var(--rl-navy-800); margin: 16px 0 8px;
}
.rl-online__step p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* Online sign-up modal — single column variant of the rl-pay card. */
.rl-pay__card--single { width: min(600px, 100%); }
.rl-pay__card--single .rl-pay__form { padding: 40px 38px 34px; }
.rl-online__modal-price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 26px; }
.rl-online__modal-num {
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  letter-spacing: -0.02em; color: var(--rl-navy-800);
}
.rl-online__modal-unit { font-size: 13px; font-weight: 600; color: var(--rl-slate-500); }
.rl-online__warn {
  margin: 14px 0 0; padding: 12px 14px; border-radius: var(--r-md);
  background: var(--rl-mint-100); border: 1px solid var(--rl-mint-500);
  font-size: 12.5px; line-height: 1.5; color: var(--rl-navy-800);
}
.rl-online__warn code {
  font-family: var(--font-mono); font-size: 11px; background: rgba(9,27,48,.08);
  padding: 1px 5px; border-radius: 4px;
}

@media (max-width: 1024px) {
  .rl-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .rl-online__how-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 600px) {
  .rl-section__head--toggle { flex-direction: column; align-items: flex-start; }
  .rl-seg { width: 100%; }
  .rl-seg button { flex: 1; padding: 11px 10px; text-align: center; }
  .rl-chooser { grid-template-columns: 1fr; }
  .rl-choice { min-height: 400px; }
  .rl-choice__title { font-size: 32px; }
  .rl-pathbar { width: 100%; }
  .rl-pathbar .rl-seg { width: 100%; }
}
@media (max-width: 860px) and (min-width: 601px) {
  .rl-chooser { grid-template-columns: 1fr; }
}

/* ── In-person Term 3 blocks (Easts) ──────────────────────────────── */
.rl-blockfacts {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border-1); border-radius: var(--r-lg);
  overflow: hidden; margin: 0 0 32px; background: var(--bg-card);
}
.rl-blockfact {
  padding: 20px 22px; font-size: 15px; font-weight: 600;
  color: var(--rl-navy-800); line-height: 1.45;
  border-left: 1px solid var(--border-1);
}
.rl-blockfact:first-child { border-left: none; }
.rl-blockfact b {
  display: block; font-family: var(--font-mono); font-weight: 800;
  font-size: 11px; letter-spacing: 0.2em; color: var(--rl-mint-600);
  margin-bottom: 10px; text-transform: uppercase;
}
.rl-tier__flag {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.04em; color: var(--rl-mint-500);
}
.rl-block-note {
  margin: 26px 0 0; text-align: center; font-size: 14px;
  color: var(--fg-2); line-height: 1.6;
}
@media (max-width: 900px) {
  .rl-blockfacts { grid-template-columns: 1fr 1fr; }
  .rl-blockfact:nth-child(3) { border-left: none; }
  .rl-blockfact:nth-child(n+3) { border-top: 1px solid var(--border-1); }
}
@media (max-width: 520px) {
  .rl-blockfacts { grid-template-columns: 1fr; }
  .rl-blockfact { border-left: none; border-top: 1px solid var(--border-1); }
  .rl-blockfact:first-child { border-top: none; }
}

