/* =============================================================
   OFFICIALS — REFEREES  (page-referees.css)
   Accent: WBA Red (page default per header/hero consistency rule).
   Scoped exception: a muted program-identity green inside the
   Green Shirt Day + Green Whistle sections ONLY — the green IS
   those programs' names. It never appears elsewhere on the page.
   Dark moment: Green Whistle section.
   ============================================================= */

.ref-page {
	--ref-accent: var(--wba-red, #C1272D);
	--ref-green: #2E7D46;               /* scoped: green shirt / green whistle only */
	--ref-dark: var(--wba-dark, #1A1A1A);
	--ref-border: var(--wba-border, #E6E6E2);
	--ref-cream: var(--wba-cream, #F8F8F6);
	--ref-muted: var(--wba-muted, #888888);
	background: #fff;
	color: var(--ref-dark);
}

.ref-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 48px);
}

/* =============================================================
   SHARED TYPE
   ============================================================= */
.ref-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.625rem;             /* ~10px */
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ref-muted);
	margin-bottom: 18px;
}
.ref-eyebrow svg { width: 14px; height: 14px; stroke: var(--ref-accent); }
.ref-eyebrow--green svg { stroke: var(--ref-green); }
.ref-eyebrow--on-dark { color: rgba(255,255,255,0.55); }

.ref-h2 {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.08;
	margin: 0 0 22px;
}
.ref-h2 em { font-weight: 300; font-style: italic; }
.ref-h2--on-dark { color: #fff; }

.ref-h3 {
	font-size: clamp(1.3rem, 2.6vw, 1.7rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 56px 0 26px;
}
.ref-h3 em { font-weight: 300; font-style: italic; }

.ref-lead {
	font-size: 1.02rem;
	line-height: 1.75;
	max-width: 720px;
	margin: 0 0 40px;
	color: #3a3a3a;
}
.ref-lead em { font-style: italic; }
.ref-lead--on-dark { color: rgba(255,255,255,0.78); }

/* =============================================================
   BUTTONS — exact .ah-btn spec
   ============================================================= */
.ref-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 28px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.ref-btn--primary {
	background: var(--ref-accent);
	color: #fff;
	border-color: var(--ref-accent);
}
.ref-btn--primary:hover,
.ref-btn--primary:focus-visible {
	background: var(--ref-dark);
	border-color: var(--ref-dark);
	transform: translateY(-2px);
}
.ref-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.55);
}
.ref-btn--ghost:hover,
.ref-btn--ghost:focus-visible {
	background: #fff;
	color: var(--ref-dark);
	border-color: #fff;
	transform: translateY(-2px);
}
.ref-btn--outline {
	background: transparent;
	color: var(--ref-dark);
	border-color: var(--ref-dark);
}
.ref-btn--outline:hover,
.ref-btn--outline:focus-visible {
	background: var(--ref-dark);
	color: #fff;
	transform: translateY(-2px);
}

/* =============================================================
   HERO — exact consistency-rule spec (58vh / 480px / 105deg)
   ============================================================= */
.ref-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--ref-dark);
}
.ref-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 78% 50%, rgba(193,39,45,0.28), transparent 55%),
		linear-gradient(105deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.72) 50%, rgba(26,26,26,0.40) 100%);
}
.ref-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 48px);
}
.ref-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	padding: 9px 18px;
	border: 1px solid rgba(193,39,45,0.55);
	background: rgba(193,39,45,0.18);
	border-radius: 999px;
	margin-bottom: 24px;
}
.ref-hero__title {
	color: #fff;
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.04;
	margin: 0 0 20px;
	max-width: 800px;
}
.ref-hero__title em { font-weight: 300; font-style: italic; }
.ref-hero__lede {
	color: rgba(255,255,255,0.82);
	font-size: 1.02rem;
	line-height: 1.7;
	max-width: 600px;
	margin: 0 0 36px;
}
.ref-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 30px;
}
.ref-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid rgba(255,255,255,0.28);
	border-radius: 999px;
	background: rgba(255,255,255,0.06);
	color: #fff;
	font-size: 0.72rem;
}
.ref-hero__pill svg { width: 13px; height: 13px; stroke: var(--wba-orange, #F7931E); flex-shrink: 0; }
.ref-hero__pill-label {
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.6rem;
	color: rgba(255,255,255,0.6);
}
.ref-hero__pill-value { font-weight: 600; }
.ref-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* =============================================================
   ANCHOR NAV — exact consistency-rule spec
   ============================================================= */
.ref-anchors {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #fff;
	border-top: 3px solid var(--ref-accent);
	border-bottom: 1px solid var(--ref-border);
}
.ref-anchors__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 48px);
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.ref-anchors__inner::-webkit-scrollbar { display: none; }
.ref-anchors__inner > a {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--ref-dark);
	text-decoration: none;
	padding: 18px 2px;
	position: relative;
	white-space: nowrap;
	flex-shrink: 0;
}
.ref-anchors__inner > a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 12px;
	height: 2px;
	background: var(--ref-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.ref-anchors__inner > a:hover::after,
.ref-anchors__inner > a:focus-visible::after { transform: scaleX(1); }
.ref-anchors__cta {
	margin-left: auto;
	background: var(--ref-accent);
	color: #fff !important;
	padding: 10px 20px !important;
	border-radius: 4px;
	margin-top: 8px;
	margin-bottom: 8px;
	transition: background 0.2s;
}
.ref-anchors__cta::after { display: none; }
.ref-anchors__cta:hover { background: var(--ref-dark); }

/* =============================================================
   GLANCE STRIP — 4 uniform cards (parent-scan, AH pattern)
   ============================================================= */
.ref-glance { padding: 64px 0 0; }
.ref-glance__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.ref-glance__card {
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	background: #fff;
}
.ref-glance__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.ref-glance__icon svg { width: 20px; height: 20px; stroke: var(--ref-accent); }
.ref-glance__label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ref-muted);
	margin-top: 8px;
}
.ref-glance__value {
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.ref-glance__sub { font-size: 0.8rem; color: var(--ref-muted); }

/* =============================================================
   REFEREE SUPPORT — two person cards
   ============================================================= */
.ref-support { padding: 88px 0; }
.ref-support__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 12px;
}
.ref-person {
	display: flex;
	gap: 22px;
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 28px;
	background: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-person:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.ref-person__avatar {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--ref-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: 0.04em;
}
.ref-person__role {
	display: inline-block;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ref-accent);
	margin-bottom: 6px;
}
.ref-person__name {
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 10px;
}
.ref-person__name em { font-weight: 300; font-style: italic; }
.ref-person__bio {
	font-size: 0.88rem;
	line-height: 1.65;
	color: #3a3a3a;
	margin: 0 0 14px;
}
.ref-person__email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ref-dark);
	text-decoration: none;
	border-bottom: 1px solid var(--ref-border);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
	word-break: break-all;
}
.ref-person__email:hover { color: var(--ref-accent); border-color: var(--ref-accent); }
.ref-person__email svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }

/* =============================================================
   THE ROLE — 3 numbered cards + local-rules note
   ============================================================= */
.ref-role {
	padding: 88px 0;
	background: var(--ref-cream);
	scroll-margin-top: 70px;
}
.ref-role__intro { max-width: 780px; }
.ref-role__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	counter-reset: wba-bg-num;
}
.ref-role__card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 32px 28px;
	counter-increment: wba-bg-num;
}
.ref-role__card::before {
	content: "0" counter(wba-bg-num);
	position: absolute;
	right: -8px;
	top: -22px;
	font-size: 108px;
	font-weight: 800;
	color: rgba(26,26,26,0.045);
	line-height: 1;
	pointer-events: none;
}
.ref-role__title {
	font-size: 1.1rem;
	font-weight: 800;
	margin: 0 0 10px;
	text-transform: lowercase;
	letter-spacing: 0.01em;
}
.ref-role__lead-line {
	font-size: 0.85rem;
	color: var(--ref-muted);
	margin: 0 0 14px;
	font-style: italic;
}
.ref-role__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ref-role__list li {
	font-size: 0.88rem;
	line-height: 1.55;
	padding-left: 20px;
	position: relative;
}
.ref-role__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--ref-accent);
}
.ref-note {
	margin-top: 34px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ref-border);
	border-left: 3px solid var(--ref-accent);
	border-radius: 0 14px 14px 0;
	padding: 22px 26px;
	max-width: 900px;
}
.ref-note__icon svg { width: 20px; height: 20px; stroke: var(--ref-accent); }
.ref-note strong {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.ref-note p { margin: 0; font-size: 0.88rem; line-height: 1.65; color: #3a3a3a; }

/* =============================================================
   WHY REFEREE — 6-cell value grid
   ============================================================= */
.ref-why { padding: 88px 0; scroll-margin-top: 70px; }
.ref-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 34px;
}
.ref-why__cell {
	display: flex;
	align-items: center;
	gap: 16px;
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 22px 24px;
	background: #fff;
	transition: transform 0.25s ease, background 0.25s ease;
}
.ref-why__cell:hover { transform: translateY(-3px); background: var(--ref-cream); }
.ref-why__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ref-cream);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease;
}
.ref-why__cell:hover .ref-why__icon { background: var(--ref-accent); }
.ref-why__icon svg { width: 18px; height: 18px; stroke: var(--ref-dark); transition: stroke 0.25s ease; }
.ref-why__cell:hover .ref-why__icon svg { stroke: #fff; }
.ref-why__label { font-weight: 700; font-size: 0.92rem; letter-spacing: -0.005em; }
.ref-why__note {
	font-size: 0.95rem;
	line-height: 1.75;
	color: #3a3a3a;
	max-width: 800px;
	margin: 0;
}
.ref-why__note em { font-style: italic; }

/* =============================================================
   GREEN SHIRT PROGRAM  (scoped green program identity)
   ============================================================= */
.ref-gs {
	padding: 88px 0;
	background: var(--ref-cream);
	scroll-margin-top: 70px;
}
.ref-eyebrow--green { color: var(--ref-green); }
.ref-gs__details {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ref-border);
	border-left: 3px solid var(--ref-green);
	border-radius: 0 14px 14px 0;
	padding: 24px 28px;
	max-width: 860px;
}
.ref-gs__details-icon svg { width: 20px; height: 20px; stroke: var(--ref-green); }
.ref-gs__details p { margin: 0; font-size: 0.92rem; line-height: 1.7; font-weight: 600; }

.ref-gs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: gs-num;
	margin-bottom: 44px;
}
.ref-gs__card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 30px 26px;
	counter-increment: gs-num;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-gs__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.ref-gs__card::before {
	content: "0" counter(gs-num);
	position: absolute;
	right: -6px;
	top: -20px;
	font-size: 96px;
	font-weight: 800;
	color: rgba(46,125,70,0.07);
	line-height: 1;
	pointer-events: none;
}
.ref-gs__card-icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--ref-cream);
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.ref-gs__card-icon svg { width: 17px; height: 17px; stroke: var(--ref-green); }
.ref-gs__card h4 {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 8px;
	text-transform: lowercase;
}
.ref-gs__card p { margin: 0; font-size: 0.86rem; line-height: 1.6; color: #3a3a3a; }

.ref-person--host { max-width: 720px; margin-bottom: 56px; }
.ref-person--host .ref-person__role { color: var(--ref-green); }

/* --------------------------------------------- registration form */
.ref-form-wrap {
	background: #fff;
	border: 1px solid var(--ref-border);
	border-top: 3px solid var(--ref-green);
	border-radius: 14px;
	padding: 44px;
	max-width: 860px;
	scroll-margin-top: 70px;
}
.ref-form-wrap__head h3 { margin-top: 0; }
.ref-form-wrap__head p {
	font-size: 0.92rem;
	line-height: 1.7;
	color: #3a3a3a;
	margin: 0 0 34px;
}
.ref-form__group {
	border: 0;
	padding: 0;
	margin: 0 0 32px;
}
.ref-form__group legend {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ref-muted);
	margin-bottom: 16px;
	padding: 0;
}
.ref-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.ref-form__field { margin-bottom: 18px; }
.ref-form__field label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 7px;
}
.ref-form__field label span { color: var(--ref-accent); }
.ref-form__field input,
.ref-form__field textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 0.9rem;
	padding: 13px 15px;
	border: 1px solid var(--ref-border);
	border-radius: 6px;
	background: var(--ref-cream);
	transition: border-color 0.2s, background 0.2s;
}
.ref-form__field input:focus,
.ref-form__field textarea:focus {
	outline: 2px solid transparent;
	border-color: var(--ref-green);
	background: #fff;
}
.ref-form__field small {
	display: block;
	font-size: 0.72rem;
	color: var(--ref-muted);
	margin-top: 6px;
	line-height: 1.5;
}
.ref-form__consent {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 0.86rem;
	line-height: 1.6;
	cursor: pointer;
}
.ref-form__consent input {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ref-green);
}
.ref-form .form__submit { width: 100%; }

/* honeypot — off-screen, never display:none */
.form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form__success,
.form__error {
	border-radius: 8px;
	padding: 18px 22px;
	font-size: 0.9rem;
	line-height: 1.6;
	margin-bottom: 26px;
}
.form__success {
	background: rgba(46,125,70,0.08);
	border: 1px solid rgba(46,125,70,0.4);
	color: #1e5c33;
	font-weight: 600;
}
.form__error {
	background: rgba(193,39,45,0.06);
	border: 1px solid rgba(193,39,45,0.4);
	color: var(--ref-accent);
	font-weight: 600;
}
.form__error a { color: inherit; }

/* =============================================================
   GREEN WHISTLE — the page's ONE dark section
   ============================================================= */
.ref-gw {
	padding: 96px 0;
	background: var(--ref-dark);
	color: #fff;
	scroll-margin-top: 70px;
}
.ref-gw__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin: 12px 0 40px;
}
.ref-gw__col {
	border: 1px solid rgba(255,255,255,0.14);
	border-top: 3px solid var(--ref-green);
	border-radius: 14px;
	padding: 32px;
	background: rgba(255,255,255,0.03);
}
.ref-gw__col h3 {
	font-size: 1.05rem;
	font-weight: 800;
	margin: 0 0 18px;
	text-transform: lowercase;
	letter-spacing: 0.01em;
}
.ref-gw__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ref-gw__col li {
	font-size: 0.88rem;
	line-height: 1.65;
	color: rgba(255,255,255,0.78);
	padding-left: 22px;
	position: relative;
}
.ref-gw__col li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--ref-green);
}
.ref-gw__close {
	font-size: 1.05rem;
	font-weight: 300;
	font-style: italic;
	color: rgba(255,255,255,0.9);
	max-width: 680px;
	margin: 0;
	line-height: 1.7;
}

/* =============================================================
   GET STARTED — split contact panel
   ============================================================= */
.ref-contact { padding: 88px 0; scroll-margin-top: 70px; }
.ref-contact__split {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 40px;
	align-items: center;
}
.ref-contact__copy .ref-lead { margin-bottom: 0; }
.ref-contact__panel {
	border: 1px solid var(--ref-border);
	border-top: 3px solid var(--ref-accent);
	border-radius: 14px;
	padding: 36px;
	background: var(--ref-cream);
}
.ref-contact__panel-label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ref-accent);
	margin-bottom: 14px;
}
.ref-contact__panel p {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #3a3a3a;
	margin: 0 0 20px;
}
.ref-contact__email {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.86rem;
	color: var(--ref-dark);
	text-decoration: none;
	border-bottom: 2px solid var(--ref-accent);
	padding-bottom: 3px;
	transition: color 0.2s;
	word-break: break-all;
}
.ref-contact__email:hover { color: var(--ref-accent); }
.ref-contact__email svg { width: 15px; height: 15px; stroke: currentColor; flex-shrink: 0; }

/* =============================================================
   PATHWAY — 3 phases, 9 levels
   ============================================================= */
.ref-pathway {
	padding: 88px 0 68px;
	background: var(--ref-cream);
	scroll-margin-top: 70px;
}
.ref-pathway__phase { margin-bottom: 56px; }
.ref-pathway__phase:last-child { margin-bottom: 0; }
.ref-pathway__phase-title {
	display: flex;
	align-items: baseline;
	gap: 18px;
	font-size: 1.3rem;
	font-weight: 800;
	margin: 0 0 8px;
	text-transform: lowercase;
	letter-spacing: 0.01em;
}
.ref-pathway__phase-num {
	font-size: 2.6rem;
	font-weight: 800;
	color: rgba(26,26,26,0.12);
	line-height: 1;
	letter-spacing: -0.02em;
}
.ref-pathway__phase-note {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #3a3a3a;
	max-width: 800px;
	margin: 0 0 26px;
	font-style: italic;
}
.ref-pathway__levels {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 22px;
	position: relative;
	padding-left: 34px;
}
.ref-pathway__levels::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 30px;
	bottom: 30px;
	width: 2px;
	background: var(--ref-border);
}
.ref-level {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--ref-border);
	border-radius: 14px;
	padding: 26px 28px;
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-level:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.ref-level::before {
	content: "";
	position: absolute;
	left: -28px;
	top: 34px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--ref-accent);
	border: 3px solid var(--ref-cream);
}
.ref-level__badge {
	flex-shrink: 0;
	min-width: 56px;
	height: 56px;
	border-radius: 12px;
	background: var(--ref-dark);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.01em;
	padding: 0 10px;
}
.ref-pathway__phase--3 .ref-level__badge { background: var(--ref-accent); }
.ref-level__body h4 {
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 8px;
}
.ref-level__body p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.65;
	color: #3a3a3a;
}

/* =============================================================
   BOTTOM CTA
   ============================================================= */
.ref-cta {
	padding: 96px 0;
	text-align: center;
}
.ref-cta__title {
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 16px;
}
.ref-cta__title em { font-weight: 300; font-style: italic; }
.ref-cta p {
	font-size: 0.98rem;
	line-height: 1.7;
	color: #3a3a3a;
	max-width: 560px;
	margin: 0 auto 32px;
}
.ref-cta__row {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* =============================================================
   FADE-UP FALLBACK
   (play-shared.css provides the real .wba-fade-up; if the play
   addon is ever removed, elements simply remain visible.)
   ============================================================= */

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
	.ref-glance__grid { grid-template-columns: repeat(2, 1fr); }
	.ref-support__grid { grid-template-columns: 1fr; }
	.ref-role__grid { grid-template-columns: 1fr; }
	.ref-gs__grid { grid-template-columns: repeat(2, 1fr); }
	.ref-contact__split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 700px) {
	.ref-container { padding: 0 var(--gutter-m, 22px); }

	/* Hero — consistency-rule mobile spec */
	.ref-hero { min-height: 440px; }
	.ref-hero__inner { padding: 0 var(--gutter-m, 22px); }
	.ref-hero__ctas { flex-direction: column; }
	.ref-hero__ctas .ref-btn { width: 100%; box-sizing: border-box; }

	.ref-anchors__inner { padding: 0 var(--gutter-m, 22px); gap: 18px; }
	.ref-anchors__cta { margin-left: 0; }

	.ref-glance { padding-top: 44px; }
	.ref-glance__grid { grid-template-columns: 1fr; }
	.ref-support,
	.ref-role,
	.ref-why,
	.ref-gs,
	.ref-contact,
	.ref-pathway { padding-top: 48px; padding-bottom: 48px; }
	.ref-gw { padding-top: 64px; padding-bottom: 64px; }
	.ref-cta { padding: 64px 0; }

	.ref-why__grid { grid-template-columns: 1fr; }
	.ref-gs__grid { grid-template-columns: 1fr; }
	.ref-gw__cols { grid-template-columns: 1fr; }
	.ref-form-wrap { padding: 26px 20px; }
	.ref-form__row { grid-template-columns: 1fr; gap: 0; }

	.ref-person { flex-direction: column; }
	.ref-level { flex-direction: column; gap: 14px; padding: 22px 20px; }
	.ref-pathway__levels { padding-left: 24px; }
	.ref-level::before { left: -18px; }
	.ref-pathway__levels::before { left: 6px; }
	.ref-cta__row { flex-direction: column; align-items: stretch; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
	.ref-btn,
	.ref-glance__card,
	.ref-person,
	.ref-why__cell,
	.ref-gs__card,
	.ref-level,
	.ref-anchors__inner > a::after {
		transition: none;
	}
	.ref-btn--primary:hover,
	.ref-btn--ghost:hover,
	.ref-btn--outline:hover,
	.ref-glance__card:hover,
	.ref-person:hover,
	.ref-why__cell:hover,
	.ref-gs__card:hover,
	.ref-level:hover {
		transform: none;
	}
}
