
.pro-hero {
  position: relative;
  overflow: hidden;
  min-height: 70svh;
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(4rem, 9vw, 7rem);
}
.pro-hero_inner { position: relative; z-index: 2; max-width: 58rem; }
.pro-hero_title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0.7rem 0 1.6rem;
}
.pro-hero_lead {
  max-width: 50ch;
  color: var(--white);
  font-size: var(--fs-body);
  margin: 0 0 2.4rem;
}

/* Generic content section */
.pro-section { padding: clamp(3rem, 6vw, 5rem) 0; position: relative; }
.pro-section-extra-pad-end { padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 8rem); position: relative; }
.pro-section.last-section { padding: clamp(5rem, 9vw, 8rem) 0; position: relative; }
.pro-head { max-width: 51rem; margin: 0 0 clamp(2.4rem, 5vw, 4rem); }
.pro-head .display { margin-bottom: 1.2rem; }
.pro-lead {
	font-size: var(--fs-body);
	margin: 0;
}

.pro-lead:not(:last-child) { margin-bottom: 1.5rem; }
.pro-lead:has(+ .btn) { margin-bottom: 2.4rem; }
.pro-lead a {
	color: var(--pink);
}
/* Section background variants */
.pro-white { background-color: var(--white); color: var(--ink); }
.pro-white .eyebrow { color: var(--pink); }
.pro-off-white { background: var(--off-white); color: var(--ink); }
.pro-black { background: var(--black); color: var(--white); }
.pro-media { display: flex; justify-content: center; }
.pro-media img { width: 100%; max-width: 420px; height: auto; }
.pro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.8vw, 1.4rem);
}
.pro-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--white);
  border: 2px solid rgb(0 0 0 / 10%);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;
}
.pro-card:hover { transform: translateY(-4px); border-color: var(--pink); }

.pro-card_title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.1; margin: 0 0 0.85rem; }
.pro-card_text { color: var(--black); margin: 0; font-size: var(--fs-body); }
.forge-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.forge-item {
  display: flex;
  flex-direction: column;
}
.forge-card {
  display: block;
  width: 100%;
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  filter: saturate(0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, filter 0.4s ease;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.forge-card--static { cursor: default; }
.forge-card--static:hover { transform: none; box-shadow: none; filter: saturate(0.5); }
.forge-card img,
.forge-card video { display: block; width: 100%; height: 100%; object-fit: cover; }
.forge-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(0, 0, 0, 0.55); filter: saturate(1); }
.forge-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.forge-card-wrap { position: relative; }
.forge-pause {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(12, 12, 14, 0.78);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s var(--ease-out);
}
.forge-pause svg { width: 18px; height: 18px; display: block; }
.forge-pause:hover { background: rgba(12, 12, 14, 0.92); transform: scale(1.06); }
.forge-pause:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.forge-card_meta {
  margin-top: clamp(0.9rem, 1.4vw, 1.2rem);
}
.forge-card_title {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
}
.forge-card_link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 300;
  font-size: 0.98rem;
}
.forge-card_link:hover .btn_chev { transform: translateX(3px) translateY(0.05em); }

@media (min-width: 861px) {
  .forge-cards { flex-direction: row; }
  .forge-item { flex: 1 1 0; }
}

.forge-cards--design {
  display: grid;
  grid-template-columns: 1fr;
}
.forge-cards--design .forge-card {
  height: auto;
  aspect-ratio: 16 / 9;
}
.forge-cards--design .forge-card img { object-position: center; }

@media (min-width: 861px) {
  .forge-cards--design {
    grid-template-columns: repeat(2, 1fr);
  }
  .forge-cards--design .forge-card {
    aspect-ratio: 317 / 430;
    max-height: 430px;
  }
  .forge-cards--design .forge-card img { object-position: right; }
}

@media (min-width: 1201px) {
  .forge-cards--design { grid-template-columns: repeat(4, 1fr); }
}

.forge-cards--motion,
.forge-cards--web {
  display: grid;
  grid-template-columns: 1fr;
}
.forge-cards--motion .forge-card,
.forge-cards--web .forge-card {
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (min-width: 861px) {
  .forge-cards--motion,
  .forge-cards--web { grid-template-columns: repeat(3, 1fr); }

  .forge-cards--motion .forge-card,
  .forge-cards--web .forge-card { aspect-ratio: 317 / 430; }
}

.forge-cards--brand {
  display: grid;
  grid-template-columns: 1fr;
}
.forge-cards--brand .forge-card {
  height: auto;
  aspect-ratio: 657 / 430;
}

@media (min-width: 861px) {
  .forge-cards--brand { grid-template-columns: repeat(2, 1fr); }
}

.pro-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}
.pro-field_req { color: var(--pink); margin-left: 0.15em; }
.pro-field { display: flex; flex-direction: column; gap: 0.45rem; grid-column: 1 / -1; }
.pro-field_label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.pro-field_input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  /* 3:1 for the control boundary - SC 1.4.11. See .git-form below. */
  border: 2px solid rgb(0 0 0 / 45%);
  border-radius: 8px;
  padding: 0.7em 0.85em;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.pro-field_input::placeholder { color: rgba(19, 19, 22, 0.45); }
.pro-field_input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(252, 15, 131, 0.18);
}
.pro-field_textarea { resize: vertical; min-height: 8rem; line-height: 1.6; }

.pro-check { display: flex; align-items: flex-start; gap: 0.7rem; grid-column: 1 / -1; }
.pro-check_input {
  flex: 0 0 auto;
  width: 1.2rem; height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--pink);
  cursor: pointer;
}
.pro-check_label { font-size: 1rem; line-height: 1.5; color: var(--ink); }
.pro-check_label a { color: var(--pink); text-decoration: underline; }

.pro-form_submit { grid-column: 1 / -1; justify-self: start; margin-top: 0.4rem; font-size: 1rem; }
.pro-form_submit svg { margin-left: 10px; }
/* Honeypot — off-screen (not display:none, which some bots skip) */
.pro-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Turnstile widget + status message span the full form width */
.cf-turnstile { grid-column: 1 / -1; }
.pro-form_status { grid-column: 1 / -1; margin: 0.25rem 0 0; font-size: 1rem; line-height: 1.5; min-height: 1.5em; }
.pro-form_status.is-sending { color: var(--ink); opacity: 0.7; }
.pro-form_status.is-ok { color: #1a7f37; font-weight: 600; }
.pro-form_status.is-error { color: var(--pink); font-weight: 600; }

.pro-form_submit.is-idle { background: #B5B5B5; color: var(--white); }
.pro-form_submit.is-idle:hover { box-shadow: none; }

.pro-modal {
  border: none;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 28rem;
  width: calc(100% - 2rem);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
  text-align: center;
}
.pro-modal::backdrop { background: rgba(0, 0, 0, 0.55); }
.pro-modal_title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 0.6rem;
}
.pro-modal_text { font-size: 1rem; line-height: 1.6; margin: 0 0 1.6rem; color: var(--ink); }
.pro-modal[open] { animation: pro-modal-in 0.35s var(--ease-out); }
.pro-modal[open]::backdrop { animation: pro-backdrop-in 0.35s ease; }
@keyframes pro-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pro-backdrop-in {
  from { background: rgba(0, 0, 0, 0); }
  to   { background: rgba(0, 0, 0, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .pro-modal[open], .pro-modal[open]::backdrop { animation: none; }
}

@media (min-width: 560px) {
  .pro-form { grid-template-columns: 1fr 1fr; }
  .pro-field--half { grid-column: span 1; }
}   
.git-hero_lead {
  max-width: 60ch;
  color: var(--white);
  font-size: var(--fs-body);
  margin: 0 0 2.4rem;
}
.git-contact-section { display: flow-root; padding-top: 0; padding-bottom: clamp(3rem, 8vw, 7rem); }
.git-contact {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * clamp(4rem, 11vw, 9.5rem));
  background: var(--blue);
  border-radius: clamp(20px, 2.5vw, 32px);
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.git-contact_motif {
  position: absolute;
  bottom: 0px;
  left: 10%;  
  height: 90%;
  width: auto;
  filter: brightness(0); 
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.git-contact_inner {
  position: relative;
  z-index: 1;     
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.git-contact .pro-cards { gap: 0; }
.git-contact .pro-card { background: transparent; border: none; padding: 0; }
.git-contact .pro-card:hover { transform: none; border-color: transparent; }
.git-contact .pro-card_text,
.git-contact .pro-card_text a { font-weight: 500; color: var(--green); }

.git-detail { display: flex; align-items: center; gap: clamp(0.8rem, 1.5vw, 1.25rem); }
.git-detail + .git-detail { margin-top: clamp(1.4rem, 3vw, 2.4rem); }
.git-detail_icon { flex: 0 0 auto; width: clamp(52px, 6vw, 72px); height: auto; }
.git-detail_text { min-width: 0; margin: 0; }
.git-contact .pro-card_title { color: var(--white); text-transform: uppercase; margin: 0 0 0.1rem; letter-spacing: 0.03em; }
.git-contact .pro-card_text { margin: 0; line-height: 1.35; }

.git-form {
  background: var(--white);
  border-radius: clamp(14px, 2vw, 22px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.git-form_title {
  grid-column: 1 / -1;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--ink);
}

.git-form .pro-field { position: relative; }
.git-form .pro-field_input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgb(0 0 0 / 45%); /* 3:1 boundary - SC 1.4.11 */
  border-radius: 0;
  padding: 0.55em 0.1em;
}
.git-form .pro-field_input:focus { border-bottom-color: var(--pink); box-shadow: none; }

.git-form .pro-field_label {
  position: absolute;
  top: 0.55em;
  left: 0.1em;
  max-width: calc(100% - 0.2em);
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  /* 0.45 composites to #959596 on white - 2.99:1, under the 4.5:1 minimum.
     0.6 gives #717173 at 4.84:1 and still reads as a muted placeholder. */
  color: rgba(19, 19, 22, 0.6);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.git-form .pro-field_input:not(:placeholder-shown) + .pro-field_label { opacity: 0; }

.git-form .pro-field_textarea {
  border: none;
  border-bottom: 2px solid rgb(0 0 0 / 45%); /* 3:1 boundary - SC 1.4.11 */
  border-radius: 0;
  padding: 0.55em 0.1em;
  min-height: 7rem;
}
.git-form .pro-field_textarea:focus { border-bottom-color: var(--pink); }

@media (min-width: 861px) {
  .git-contact { padding: clamp(2.5rem, 4vw, 4rem); }
  .git-contact_inner { grid-template-columns: 2fr 3fr; align-items: start; gap: clamp(2rem, 4vw, 4rem); }
}

@media (max-width: 860px) {
  .git-contact-section { padding-bottom: 0; } 
  .git-contact {
    margin-inline: calc(-1 * var(--gutter));
    border-radius: 0;
    padding: clamp(1.75rem, 6vw, 2.5rem) clamp(0.9rem, 3.5vw, 1.5rem);
    padding-bottom: clamp(3rem, 11vw, 4.5rem);
  }
  .git-contact .git-form  { order: 1; }
  .git-contact .pro-cards { order: 2; }
}

.bls-hero, .lw-hero, .abo-hero, .git-hero { background: var(--black); }
.git-hero { min-height: 50svh; padding-bottom: clamp(7rem, 14vw, 12rem); }

.for-hero {
  --hero-figure: url("../images/hero-forge.webp");
  background-color: var(--pink);
  background-image: var(--hero-figure);
  background-position: right;
  background-repeat: no-repeat;
}

@media (max-width: 1500px) {
	.for-hero {
		background-position: center;
	}
}

.abo-hero {
	--hero-figure: url("../images/hero-about.webp");
	background-color: var(--blue);
	background-image: var(--hero-figure);
	background-position: right bottom;
	background-repeat: no-repeat;
}

.lw-hero {
	--hero-figure: url("../images/hero-about.webp");
	background-color: var(--blue);
	background-image: var(--hero-figure);
	background-position: right bottom;
	background-repeat: no-repeat;
}


.bls-hero {
  --hero-figure: url("../images/hero-bespoke.webp");
  background-color: var(--black);
  background-image: var(--hero-figure);
  background-position: right;
  background-repeat: no-repeat;
  background-size: clamp(600px, 40vw, 800px) auto;
}

/* ≤1500px the side-by-side hero fix */
@media (max-width: 1500px) {
  .bls-hero, .for-hero, .lw-hero, .abo-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 0;            
    background-image: none;       
  }
  .bls-hero::after, .for-hero::after, .lw-hero::after, .abo-hero::after {
    content: "";
    order: 1;                     
    align-self: flex-end;          
    width: 100%;
    max-width: 520px;
    margin-top: clamp(2rem, 5vw, 3.5rem);   
    background: var(--hero-figure) center bottom / contain no-repeat;
  }
  .for-hero::after { aspect-ratio: 1005 / 1000; }
  .abo-hero::after { aspect-ratio: 914 / 804; }
  .lw-hero::after { aspect-ratio: 914 / 804; }
  .bls-hero::after { aspect-ratio: 849 / 624; }
  .bls-hero { padding-bottom: 24px; }
  .pro-hero_lead { padding: 0; border-radius: 0; }
}

@media (max-width: 860px) {
  .bls-hero::after, .for-hero::after, .lw-hero::after, .abo-hero::after { max-width: none; }
  .bls-hero { padding-bottom: 18px; }
}

/* ── Bespoke learning — numbered process cards ───────────────*/
.bls-cards {
  list-style: none;
  counter-reset: bls;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.bls-card {
  counter-increment: bls;
  position: relative;
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 12%);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease;

  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.bls-card_term { display: contents; }
.bls-card_term img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: clamp(72px, 9vw, 110px);
  height: auto;
}

.bls-card::after {
  content: counter(bls, decimal-leading-zero);
  position: absolute;
  top: clamp(1rem, 1.5vw, 1rem);
  right: clamp(1rem, 1.5vw, 1rem);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--black);
}

.bls-card-body {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}
.bls-card-body img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: clamp(72px, 9vw, 110px);
  height: auto;
}

.bls-card_head {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0.4rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--ink);
}
.bls-card_text {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--cold-ink);
  font-size: var(--fs-body);
}

@media (min-width: 861px) {
  .bls-cards { grid-template-columns: 1fr 1fr; }
}

/* ── Bespoke learning — Active Learning split ────────────────*/
.bls-grid {
  display: grid;
  grid-template-columns: 1fr;              
}
.bls-media { min-height: 0; overflow: hidden; }
.bls-media img { width: 100%; height: 100%; object-fit: cover; }
.bls-active {
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter);
}
.bls-active .pro-head { margin: 0; max-width: 42rem; }

.bls-rightLevel {
	background: var(--white);
	display: flex;
	align-items: center;
	padding: clamp(2.5rem, 6vw, 5rem) var(--gutter);
}

.bls-grid .pro-media { display: block; overflow: hidden; }
.bls-grid .pro-media img { width: 100%; height: 100%; max-width: none; object-fit: cover; }

@media (min-width: 861px) {
  .bls-grid { grid-template-columns: 1fr 1fr; }
}

.bls-carousel {
  position: relative;
  width: 100%;                      
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
}

.bls-carousel-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.carousel-card {
  border: 1px solid rgb(0 0 0 / 15%);  
  border-radius: var(--radius);
  overflow: hidden;
}
.carousel-card:nth-child(odd)  { background: var(--white); color: var(--ink);  }
.carousel-card:nth-child(even) { background: var(--blue);  color: var(--white); }

.carousel-card .bls-card-body {
  --card-pad: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.6rem;
  padding: var(--card-pad);
  overflow-y: auto;        
}
.carousel-card .bls-card-body img {
  align-self: flex-end;           
  width: clamp(64px, 8vw, 96px);
  height: auto;
  margin-bottom: 0.4rem;
}
.carousel-card.is-left .bls-card-body img { align-self: flex-start; }
.carousel-card .pro-card_title { color: inherit; margin: 0 0 0.5rem; font-size: clamp(1.15rem, 1.6vw, 1.5rem); }
.carousel-card .pro-card_text  { color: inherit; margin: 0; }

.bls-carousel--ready .bls-carousel-cards {
  display: block;
  position: relative;
  height: clamp(430px, 62vh, 545px); 
  overflow: hidden;
}
.bls-carousel--ready .carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(490px, 86%);
  height: 100%;
  transform: translateX(-50%) translateX(var(--tx, 0)) scale(var(--sc, 1));
  transition: transform 0.55s var(--ease-out), opacity 0.45s ease, filter 0.45s ease;
}
.bls-carousel--ready .carousel-card[data-active="false"] { opacity: 0.3; filter: blur(3px); }
.bls-carousel--ready .carousel-card[data-active="true"]  { opacity: 1;   filter: none; }
.bls-carousel--ready .carousel-card.is-far               { opacity: 0.1; }
.bls-carousel--ready .carousel-card[data-hidden="true"]  { opacity: 0;   pointer-events: none; }


.bls-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}
.bls-carousel-nav svg { width: 58px; height: 58px; }
.bls-carousel-nav--prev { left: clamp(0.25rem, 1vw, 1rem); }
.bls-carousel-nav--next { right: clamp(0.25rem, 1vw, 1rem); }
.bls-carousel-nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.bls-carousel-nav--next:hover { transform: translateY(-50%) translateX(3px); }
.bls-carousel-nav:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 8px; }

.bls-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: clamp(3rem, 6vw, 3.6rem);
}
.bls-carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--blue);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s var(--ease-out);
}
.bls-carousel-dot { position: relative; }
.bls-carousel-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.bls-carousel-dot[data-active="true"] { background: var(--blue); transform: scale(1.15); }
.bls-carousel-dot:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }


@media (max-width: 860px) {
  .bls-carousel--ready .bls-carousel-cards { height: clamp(460px, 78vh, 560px); }
  .bls-carousel--ready .carousel-card { width: min(340px, 88%); }
}

@media (max-width: 640px) {
  .bls-carousel--ready .carousel-card[data-active="false"] { opacity: 0; pointer-events: none; }
  .bls-carousel-nav--prev { left: calc(30px - var(--gutter)); }
  .bls-carousel-nav--next { right: calc(30px - var(--gutter)); }

  .carousel-card .bls-card-body img,
  .carousel-card.is-left .bls-card-body img { align-self: center; }

  .carousel-card .bls-card-body { gap: 0; }
  .carousel-card .bls-card-body img {
    margin-top: calc(45px - 1px - var(--card-pad));
    margin-bottom: 30px;
  }
  .carousel-card .pro-card_title { margin-top: 0; margin-bottom: 1.1rem; }
  .carousel-card .pro-card_text  { margin-bottom: auto; }
}

@media (max-width: 490px) {
  .bls-carousel-nav--prev { left: calc(5px - var(--gutter)); }
  .bls-carousel-nav--next { right: calc(5px - var(--gutter)); }
}

@media (max-width: 478px) {
  .bls-carousel-nav {
    --nav-size: clamp(30px, 9vw, 44px);
    width: var(--nav-size);
    height: var(--nav-size);
  }
  .bls-carousel-nav svg { width: 90%; height: 90%; }
}

.bfaq-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.bfaq-card {
  background: var(--cold-black);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
}
.bfaq-card-title {
  margin: 0 0 clamp(1rem, 1.6vw, 1.4rem);
  padding-bottom: clamp(1rem, 1.6vw, 1.4rem);
  border-bottom: 2px solid var(--green);  
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem); 
  line-height: 1.25;
}
.bfaq-card-text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--off-white);
  font-size: var(--fs-body);
}

@media (min-width: 861px) {
  .bfaq-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .bfaq-card-title {
    margin: 0;
    padding: 0 clamp(1.5rem, 3vw, 3rem) 0 0;
    border-bottom: none;
    border-right: 2px solid var(--green);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bfaq-card-text {
    padding-left: clamp(1.5rem, 3vw, 3rem);
    align-self: center;
  }
}

.abo-traits {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.abo-trait img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--white);
  border: 1px solid rgb(0 0 0 / 15%);
  border-radius: var(--radius);
  padding: clamp(0.5rem, 1vw, 0.85rem);
}
.abo-trait dt { margin: 0; }
.abo-trait_term {
  display: block;
  margin: 1.1rem 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: var(--ink);
  text-align:center;
}
.abo-trait dd { margin: 0; color: var(--ink); text-align: center; }
@media (min-width: 861px) {
  .abo-traits { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

@media (max-width: 860px) {
  .abo-trait img {
    width: auto;
    max-width: 100%;
    max-height: 252px;
    margin-inline: auto;
  }

  .abo-trait p { text-align: left; }
}

.faq-accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background-color: var(--cold-black);
  overflow: hidden;
}
.faq-item_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 1.8rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  color: var(--white);
  transition: color 0.25s ease, background-color 0.25s ease;
}
.faq-item_q::-webkit-details-marker { display: none; }
.faq-item_q:hover { background: rgba(255, 255, 255, 0.04); }
.faq-item[open] .faq-item_q { color: var(--green); }
.faq-item_q::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.1em;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--pink);
}
.faq-item[open] .faq-item_q::after { content: "\2212"; }
.faq-item_a { padding: clamp(1.1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 1.8rem) clamp(1.1rem, 2vw, 1.5rem); color: var(--off-white); }
.faq-item_a p { margin: 0; color: var(--muted-light); }
.faq-item:not([open]) .faq-item_a { display: none; }
.legal-header {
  background: var(--black);
  padding: clamp(4rem, 4vw, 4rem) 0 clamp(2rem, 2vw, 2rem);
  margin: clamp(3rem, 3vw, 3rem) 0 3rem;
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.legal-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.22rem, 1.6vw, 2.4rem);
  line-height: 1.2;
 
}

.legal-body > :first-child { margin-top: 0; }
.legal-body p,
.legal-body ul,
.legal-body ol { margin: 0 0 1.5rem; }
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  margin: clamp(2.4rem, 5vw, 3.4rem) 0 1rem;
  color: var(--ink);
}
.legal-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.3;
  margin: clamp(1.6rem, 3vw, 2.2rem) 0 0.7rem;
  color: var(--ink);
}
.legal-body p,
.legal-body li { font-size: 1rem; color: var(--black); }
.legal-body ul,
.legal-body ol { padding-left: 1.4rem; }
.legal-body li + li { margin-top: 0.6rem; }
.legal-body a { color: var(--pink); text-decoration: underline; }
.legal-body strong { color: var(--ink); }

.legal-updated {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin: 1.4rem 0 0;
}

.legal-tablewrap { overflow-x: auto; margin: 0 0 1.5rem; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 34rem; }
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.9rem 0.7rem 0;
  border-bottom: 1px solid rgb(0 0 0 / 12%);
  font-size: 1rem;
}
.legal-table th { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.legal-table td { color: var(--ink); }

.forge-modal {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}
.forge-modal::backdrop { background: rgba(0, 0, 0, 0.82); }

.forge-modal_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(1rem, 4vw, 3rem);
  pointer-events: none;
}
.forge-modal_figure {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  max-width: 100%;
  max-height: 100%;
}

.forge-modal_figure img,
.forge-modal_figure video {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 9rem);
  width: auto;
  height: auto;
  border-radius: var(--radius);
  background: var(--black);
}
.forge-modal_caption {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.2;
  color: var(--white);
  text-align: left;
}
.forge-modal_close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.forge-modal_close svg { width: 18px; height: 18px; }
.forge-modal_close:hover { background: var(--pink); border-color: var(--pink); transform: rotate(90deg); }
.forge-modal_close:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.forge-modal[open] { animation: pro-modal-in 0.3s var(--ease-out); }
.forge-modal[open]::backdrop { animation: pro-backdrop-in 0.3s ease; }
@media (prefers-reduced-motion: reduce) {
  .forge-modal[open], .forge-modal[open]::backdrop { animation: none; }
}


/* ── Pink on light backgrounds (WCAG 1.4.3) ─────────────────────
   --pink is 3.79:1 against white. These are the places it sits on a light
   background, switched to --pink-deep at 4.51:1. Appended so the rules that
   share their specificity with the originals win the tie. */
.pro-white .accent-pink,
.pro-off-white .accent-pink,
.pro-white .eyebrow,
.pro-white .pro-lead a,
.pro-off-white .pro-lead a,
.pro-field_req,
.pro-check_label a,
.pro-form_status.is-error,
.legal-body a { color: var(--pink-deep); }


/* ── Video transcripts (SC 1.2.3 / 1.2.5) ──────────────────────── */
/* .forge-modal_inner is a centred flex row with pointer-events: none, so the
   figure and the transcript need a column wrapper that re-enables pointer
   events, or the transcript lands beside the video and cannot be clicked. */
.forge-modal_stack {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.forge-modal_transcript {
  color: var(--white);
  width: var(--media-w, 100%);
  max-width: 100%;
}
.forge-modal_transcript .forge-transcript > summary { color: var(--white); }
.forge-modal_transcript .forge-transcript_body {
  color: var(--white);
}
/* Collapsed: leave room for the summary line so it is visible without
   scrolling. Expanded: shrink the media so the transcript is readable rather
   than pushed below the fold. */
.forge-modal.has-transcript .forge-modal_figure video,
.forge-modal.has-transcript .forge-modal_figure img { max-height: calc(100dvh - 14rem); }
.forge-modal.transcript-open .forge-modal_figure video,
.forge-modal.transcript-open .forge-modal_figure img { max-height: 45dvh; }
.forge-transcript {
  margin-top: 0.6rem;
  font-size: 0.95rem;
}
.forge-transcript > summary {
  cursor: pointer;
  padding: 0.5rem 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.forge-transcript > summary:focus-visible {
  outline: 3px solid var(--pink-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.forge-transcript_body {
  padding: 0.4rem 0.2rem 0.6rem;
  line-height: 1.6;
  color: var(--ink);
}
.forge-transcript_body p { margin: 0 0 0.6rem; }
.forge-transcript_body p:last-child { margin-bottom: 0; }
