@font-face {
  font-family: "FIGS Sans SC";
  src: url("fonts/figs-sans-sc-r20.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #3a343a;
  --ink-soft: #4a4d55;
  --medium: #727376;
  --soft: #cacacc;
  --line: #ededee;
  --paper: #fafafa;
  --white: #ffffff;
  /* FIGS core palette + one explicit digital-action colour. */
  --brand-primary: #5000e2;
  --action: #de00a5;
  --information: #2541fc;
  --highlight: #fecb51;
  --purple: var(--brand-primary);
  --pink: var(--action);
  --blue: var(--information);
  --yellow: var(--highlight);
  --current: var(--action);
  --evidence: var(--information);
  --next: var(--highlight);
  --measure: 1168px;
  --wide-panel: 1280px;
  --header-measure: 1480px;
  --article: 680px;
  --gutter: 48px;
  --radius-button: 4px;
  --radius-card: 12px;
  --radius-panel: 28px;
  --shadow-card: 0 2px 10px rgba(58, 52, 58, .08);
  --shadow-panel: 0 8px 22px rgba(37, 65, 252, .11);
  --font-sans: "FIGS Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Avenir Next", Arial, sans-serif;
  --ease-standard: cubic-bezier(.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0, 0, .2, 1);
  --gradient-page:
    radial-gradient(ellipse 58% 42% at 8% 12%, rgba(80, 0, 226, .16), transparent 72%),
    radial-gradient(ellipse 52% 44% at 70% 18%, rgba(222, 0, 165, .13), transparent 73%),
    radial-gradient(ellipse 46% 42% at 95% 78%, rgba(254, 203, 81, .18), transparent 75%),
    linear-gradient(118deg, #f5f1ff 0%, #fff2fa 53%, #fff7ed 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; background: var(--white); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  font-synthesis: none;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* The retained R14 brand-system board loads a legacy stylesheet first. */
.r13-brand-page,
.r13-brand-page * { letter-spacing: 0 !important; }
.v4-brand-system-page .r13-brand-page {
  --current: #5000e2;
  --evidence: #2541fc;
  --next: #fecb51;
}
.v4-brand-system-page .r13-palette { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.v4-brand-system-page .r13-palette .is-action { background: var(--action); }
.v4-brand-system-page .brand-chapter-nav { top: 90px; }
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: var(--pink); text-decoration-thickness: 1px; text-underline-offset: .19em; transition: color 240ms var(--ease-standard); }
a:hover { color: var(--blue); }
img, video { max-width: 100%; }
img { height: auto; }
[id] { scroll-margin-top: 112px; }
p { margin: 0 0 1em; }
ul, ol { padding-inline-start: 1.15em; }
::selection { color: var(--ink); background: var(--yellow); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--white);
}
.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: none; }

/* O/P: public learning-platform header hierarchy, translated to FIGS. */
.site-notice { color: var(--white); background: var(--ink); }
.site-notice > div {
  width: min(var(--measure), calc(100% - 2 * var(--gutter)));
  min-height: 36px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
}
.site-notice strong { font-weight: 700; }
.site-notice a { color: var(--yellow); font-weight: 700; }
.site-notice a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 90px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(var(--header-measure), calc(100% - 64px));
  min-height: 90px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { min-width: 115px; min-height: 44px; display: inline-flex; align-items: center; }
.brand img { width: 115px; display: block; }
.menu-toggle { display: none; }
.site-header nav { min-width: 0; margin-left: 0; display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 28px; }
.site-nav__primary,
.site-nav__utility { display: flex; align-items: center; gap: 24px; }
.site-nav__primary { flex: 0 1 auto; }
.site-nav__utility { flex: 0 1 auto; }
.site-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--pink);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--blue); }
.site-header nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 8px; }
.site-header .nav-secondary { color: var(--ink-soft); }
.nav-compact-resource { display: none !important; }
.nav-browse {
  width: clamp(240px, 19vw, 300px);
  min-width: 0;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  color: var(--medium) !important;
  background: var(--white);
  border: 1px solid var(--soft);
  text-decoration: none;
}
.nav-browse > span:first-child { min-width: 0; padding: 12px 16px; display: flex; flex: 1; align-items: center; overflow: hidden; white-space: nowrap; }
.nav-browse:hover { color: var(--ink) !important; border-color: var(--pink); }
.nav-browse__icon {
  width: 54px;
  min-width: 54px;
  min-height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  transition: background 240ms var(--ease-standard), border-color 240ms var(--ease-standard);
}
.nav-browse:hover .nav-browse__icon { background: var(--blue); border-color: var(--blue); }
.nav-browse__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.nav-contact {
  min-height: 44px !important;
  padding: 0 18px;
  justify-content: center;
  color: var(--white) !important;
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: var(--radius-button);
}
.nav-contact:hover { color: var(--white) !important; background: var(--blue); border-color: var(--blue); }

/* O/P: restrained 400/700 learning-platform hierarchy. */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 3.25vw, 54px); line-height: 1.25; }
h2 { font-size: clamp(34px, 2.7vw, 44px); line-height: 1.25; }
h3 { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.25; }
h4 { font-size: 20px; line-height: 1.3; }
.lead { max-width: 680px; margin: 20px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.eyebrow,
.tag,
.hero-badge {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.fl-title-rule { width: 64px; height: 6px; margin-top: 20px; display: block; background: var(--pink); border-radius: 0; }

.actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 46px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--pink);
  border: 1px solid var(--pink);
  border-radius: var(--radius-button);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: color 240ms var(--ease-standard), background 240ms var(--ease-standard), border-color 240ms var(--ease-standard), transform 240ms var(--ease-standard);
}
.button:hover { color: var(--white); background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
.button--ghost,
.button--outline { color: var(--pink); background: transparent; border-color: var(--pink); }
.button--ghost:hover,
.button--outline:hover { color: var(--blue); background: transparent; border-color: var(--blue); }
.button--blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.button--blue:hover { background: var(--pink); border-color: var(--pink); }

/*
 * Home hero: the clear film retains its complete source frame while a narrower
 * mirrored field extends its colour to the left. Runtime metadata refines this
 * loading-state ratio without changing the small-screen composition.
 */
.hero-film {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 688 / 225;
  display: grid;
  grid-template-columns: 18fr 25fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
}

.hero-mirror,
.hero-main {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.hero-mirror { grid-column: 1; grid-row: 1; background: var(--ink); }
.hero-main { grid-column: 2; grid-row: 1; background: var(--ink); }
.hero-main::after { content: none; }
.hero-mirror video,
.hero-main > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-position: center;
}
.hero-mirror video {
  object-fit: cover;
  transform: scaleX(-1) scale(1.16);
  filter: blur(30px) saturate(1.22) brightness(.94);
}
.hero-main > video { object-fit: contain; }
.hero-mirror::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 1, 56, .24) 0%, rgba(58, 52, 58, .11) 68%, rgba(255, 255, 255, .04) 100%),
    linear-gradient(180deg, rgba(80, 0, 226, .04), rgba(222, 0, 165, .05));
}
.hero-inner {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 2.6455vw, 40px);
  top: 50%;
  /* Stay inside the 18/43 mirror field so the card never covers clear video. */
  width: min(37.5vw, 680px);
  max-width: calc(100% - 40px);
  max-height: calc(100% - 24px);
  margin: 0;
  padding: clamp(20px, 1.5vw, 24px);
  transform: translateY(-50%);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .4);
  border-radius: clamp(32px, 2.5vw, 38px);
  box-shadow: 0 6px 10px -2px rgba(37, 65, 252, .2), 0 3px 6px -3px rgba(37, 65, 252, .2);
}
.hero-inner h1 { max-width: 640px; color: var(--ink); font-size: clamp(34px, 2.65vw, 40px); line-height: 1.13; }
.hero-inner h1 span { display: block; }
.hero-inner h1 span:first-child { color: var(--pink); }
.hero-inner .hero-badge { margin-bottom: 8px; color: var(--pink); }
.hero-inner .lead { max-width: 640px; margin-top: 10px; color: var(--ink-soft); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.48; }
.hero-proof { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 5px 20px; color: var(--medium); font-size: 13px; }
.hero-proof span { position: relative; }
.hero-proof span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -11px; width: 3px; height: 3px; background: var(--soft); border-radius: 50%; }
.hero-inner .actions { margin-top: 10px; padding-right: 74px; }
.hero-inner .button { min-height: 44px; padding-block: 7px; }
.hero-inner .button--ghost { color: var(--pink); border-color: var(--pink); }
.hero-inner .button--ghost:hover { color: var(--blue); background: transparent; border-color: var(--blue); }
.video-toggle {
  position: static;
  z-index: 4;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--soft);
  border-radius: var(--radius-button);
  font-size: 13px;
  font-weight: 700;
}
.video-toggle:hover { color: var(--pink); border-color: var(--pink); }
.hero-main > .video-toggle,
.hero-main > .hero-caption { display: none; }
.hero-inner .hero-caption { position: static; margin: 10px 0 0; padding: 0; color: var(--medium); background: transparent; font-size: 12px; }
.hero-media-meta { position: absolute; top: 20px; right: 24px; margin: 0; display: flex; align-items: center; justify-content: flex-end; gap: 16px; color: var(--medium); font-size: 12px; line-height: 1.5; }
.hero-media-meta > span { display: none; }
.hero-media-meta .video-toggle { flex: 0 0 auto; min-height: 44px; padding: 8px 12px; font-size: 16px; line-height: 1.5; }

.fl-promo-band {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 164px;
  min-height: 164px;
  margin: 0 auto;
  padding: 30px max(48px, calc((100vw - 1168px) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 880px) 1fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: 40px;
  box-shadow: 0 12px 28px rgba(37, 65, 252, .17);
}
.fl-promo-band p { margin: 0 0 8px; color: var(--pink); font-size: 15px; font-weight: 700; }
.fl-promo-band h2 { font-size: clamp(32px, 2.65vw, 40px); line-height: 1.25; }
.fl-promo-band nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fl-promo-band nav a { min-height: 60px; padding: 12px 16px; display: flex; align-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font-size: 16px; font-weight: 700; line-height: 1.5; text-decoration: none; transition: color 240ms var(--ease-standard), border-color 240ms var(--ease-standard), background 240ms var(--ease-standard), transform 240ms var(--ease-standard); }
.fl-promo-band nav a:hover { color: var(--pink); background: var(--white); border-color: var(--pink); transform: translateY(-2px); }
.fl-promo-band > .button { min-width: 196px; justify-self: end; }

/* Shared containers and interior-page rhythm. */
.fl-home-gradient {
  position: relative;
  isolation: isolate;
  margin-top: -64px;
  padding: 208px 0 96px;
  background: var(--gradient-page);
}
.fl-home-gradient::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 26%, rgba(255, 255, 255, .12));
}
.v4-section,
.v4-page-hero,
.v4-film-feature,
.fl-feature-panel,
.v4-history-note,
.v4-boundary,
.v4-status-panel,
.v4-evidence-register,
.v4-final-cta,
.v4-article,
.v4-legal,
.v4-redirect {
  width: min(var(--measure), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}
.v4-section { padding-block: 96px; }
.v4-section--soft { padding-inline: clamp(24px, 4vw, 58px); background: var(--white); border: 1px solid rgba(202, 202, 204, .38); border-radius: var(--radius-panel); box-shadow: var(--shadow-card); }
.v4-section--ink {
  padding-inline: clamp(24px, 4vw, 58px);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(222, 0, 165, .12), transparent 29rem),
    radial-gradient(circle at 90% 90%, rgba(37, 65, 252, .1), transparent 31rem),
    var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
}
.v4-section--ink h2,
.v4-section--ink h3 { color: var(--ink); }
.v4-section-head { margin-bottom: 44px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .56fr); gap: 48px; align-items: end; }
.v4-section-head > p { max-width: 520px; margin: 0; color: var(--ink-soft); font-size: 18px; }
.v4-split-heading { max-width: 820px; }
.v4-split-heading > p:last-child { margin: 24px 0 0; color: var(--ink-soft); }
.v4-more { margin: 30px 0 0; text-align: right; }
.v4-more a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.breadcrumbs { margin-bottom: 28px; color: var(--medium); font-size: 16px; line-height: 24px; }
.breadcrumbs ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; list-style: none; }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--soft); }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; color: var(--pink); vertical-align: middle; }
.breadcrumbs [aria-current="page"] { color: var(--medium); }

.v4-page-hero {
  width: 100%;
  margin: 0;
  padding: 64px 48px;
  min-height: 600px;
  display: block;
  background: var(--gradient-page);
}
.v4-page-hero__inner {
  width: min(var(--wide-panel), 100%);
  min-height: 472px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}
/* Backward-compatible fallback while every generated page adopts __inner. */
.v4-page-hero:not(:has(.v4-page-hero__inner)) {
  width: min(var(--wide-panel), calc(100% - 96px));
  margin: 64px auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}
.v4-page-hero__copy { padding: clamp(48px, 5.3vw, 80px); align-self: center; }
.v4-page-hero__copy h1 { max-width: 680px; }
.v4-page-hero__media { min-width: 0; margin: 0; }
.v4-page-hero__media img { width: 100%; height: 100%; min-height: 472px; display: block; object-fit: cover; }
.v4-page-hero--copy-only .v4-page-hero__inner { grid-template-columns: minmax(0, 1fr); }
.v4-page-hero--copy-only .v4-page-hero__copy { max-width: 900px; }

/* O/P: subject-led service explorer, rebuilt with FIGS content. */
.fl-explorer {
  width: min(var(--wide-panel), calc(100% - 96px));
  margin: 0 auto;
  padding: 64px;
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}
.fl-explorer .v4-section-head,
.fl-explorer__header {
  position: relative;
  margin-bottom: 40px;
  display: block;
  text-align: center;
}
.fl-explorer .v4-section-head > p,
.fl-explorer__header > p { max-width: 680px; margin: 16px auto 0; color: var(--ink-soft); }
.fl-explorer__header > a { position: absolute; top: 0; right: 0; min-height: 44px; display: inline-flex; align-items: center; font-size: 16px; font-weight: 700; text-decoration: none; }
.fl-explorer .fl-title-rule { margin-inline: auto; }
.fl-tabs { margin-bottom: 0; padding: 0 0 28px; display: flex; justify-content: space-between; gap: 24px; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
.fl-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-width: 128px;
  min-height: 56px;
  padding: 8px 4px 16px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 700;
}
.fl-tabs button::after { content: ""; position: absolute; inset: auto 18px -29px; height: 4px; background: transparent; }
.fl-tabs button[aria-selected="true"] { color: var(--pink); }
.fl-tabs button[aria-selected="true"]::after { background: var(--ink); }
.fl-tabs button:hover { color: var(--pink); }
.fl-capability-panel {
  padding: 48px 0 0;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) 1.28fr;
  gap: 48px;
  background: var(--white);
  border-radius: 0;
}
.fl-capability-copy { align-self: center; }
.fl-capability-copy > p:first-child { margin: 0 0 10px; color: var(--pink); font-weight: 700; }
.fl-capability-copy > p { margin-top: 20px; color: var(--ink-soft); }
.fl-capability-copy blockquote { margin: 26px 0; padding: 20px 22px; color: var(--ink); background: rgba(254, 203, 81, .22); border: 0; border-radius: 12px; font-weight: 700; }
.fl-capability-cards { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.fl-task-links { margin-top: 48px; padding-top: 34px; border-top: 1px solid var(--line); }
.fl-task-links h2 { font-size: 20px; }
.fl-task-links nav { margin-top: 18px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.fl-task-links a { min-height: 52px; padding: 10px 14px; display: flex; align-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font-size: 16px; font-weight: 700; line-height: 24px; text-decoration: none; transition: color 240ms var(--ease-standard), background 240ms var(--ease-standard), border-color 240ms var(--ease-standard), transform 240ms var(--ease-standard); }
.fl-task-links a:hover { color: var(--pink); background: var(--white); border-color: var(--pink); transform: translateY(-2px); }

.fl-course-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fl-course-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fl-course-card {
  min-width: 0;
  min-height: 355px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .5);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform 240ms var(--ease-standard), box-shadow 240ms var(--ease-standard), color 240ms var(--ease-standard), border-color 240ms var(--ease-standard);
}
.fl-course-card:hover { color: var(--ink); border-color: rgba(222, 0, 165, .48); transform: translateY(-4px); box-shadow: var(--shadow-panel); }
.fl-course-card > img { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; }
.fl-course-card__body { min-height: 0; padding: 18px; display: flex; flex: 1; flex-direction: column; }
.fl-course-card small { color: var(--pink); font-size: 14px; font-weight: 700; }
.fl-course-card h3 { margin-top: 8px; font-size: 24px; }
.fl-course-card p { margin: 12px 0 20px; color: var(--ink-soft); font-size: 16px; }
.fl-course-card span { margin-top: auto; color: var(--medium); font-size: 14px; }
.fl-course-card b { margin-top: 12px; color: var(--pink); font-size: 16px; }

.fl-trust-strip {
  width: min(var(--measure), calc(100% - 96px));
  margin: 96px auto 0;
  padding: 64px 0;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
  background: transparent;
  border-block: 1px solid rgba(58, 52, 58, .18);
}
.fl-trust-strip > div:first-child p { margin: 14px 0 0; color: var(--ink-soft); }
.fl-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.fl-trust-grid article { min-height: 112px; padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(58, 52, 58, .22); }
.fl-trust-grid strong { color: var(--pink); font-size: 20px; }
.fl-trust-grid span { margin-top: 8px; color: var(--ink-soft); font-size: 15px; }

.fl-plans { width: min(var(--measure), calc(100% - 96px)); margin: 0 auto; padding-top: 96px; }
.fl-plans .v4-section-head,
.fl-plans__header { margin-bottom: 44px; display: block; text-align: center; }
.fl-plans .v4-section-head > p,
.fl-plans__header > p { max-width: 680px; margin: 16px auto 0; color: var(--ink-soft); }
.fl-plans .fl-title-rule { margin-inline: auto; }
.fl-plans__header .fl-title-rule { margin-inline: auto; }
.fl-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.fl-plan-grid article { min-height: 390px; padding: 38px; display: flex; flex-direction: column; background: var(--white); border: 1px solid rgba(202, 202, 204, .5); border-radius: var(--radius-panel); }
.fl-plan-grid article.is-featured { background: var(--white); border: 4px solid var(--pink); padding: 35px; }
.fl-plan-grid small { color: var(--pink); font-weight: 700; }
.fl-plan-grid h3 { margin-top: 12px; }
.fl-plan-grid p { margin: 16px 0; color: var(--ink-soft); }
.fl-plan-grid ul { margin: 0 0 28px; }
.fl-plan-grid li { margin: 8px 0; }
.fl-plan-grid a { min-height: 44px; margin-top: auto; display: flex; align-items: center; font-weight: 700; }

.v4-film-feature,
.fl-feature-panel {
  margin-block: 38px 96px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(254, 203, 81, .2), transparent 26rem),
    radial-gradient(circle at 18% 95%, rgba(80, 0, 226, .09), transparent 30rem),
    var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
}
.v4-film-feature > video,
.fl-feature-panel > img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; }
.v4-film-feature > div,
.fl-feature-panel > div { padding: clamp(38px, 6vw, 82px); align-self: center; }
.v4-film-feature > div > p:not(.eyebrow),
.fl-feature-panel > div > p:not(.eyebrow) { margin-top: 22px; color: var(--ink-soft); }
.fl-feature-panel dl { margin: 26px 0 0; border-top: 1px solid var(--soft); }
.fl-feature-panel dl div { padding: 12px 0; display: grid; grid-template-columns: 100px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.fl-feature-panel dt { color: var(--medium); }
.fl-feature-panel dd { margin: 0; font-weight: 700; }

.fl-how { background: var(--white); }
.fl-how-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; list-style: none; }
.fl-how-grid li { min-height: 250px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-card); }
.fl-how-grid span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--pink); border-radius: 50%; font-weight: 700; }
.fl-how-grid h3 { margin-top: 28px; font-size: 22px; }
.fl-how-grid p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
.fl-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fl-resource-grid a { min-height: 245px; padding: 28px; display: flex; flex-direction: column; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); text-decoration: none; transition: transform 240ms var(--ease-standard), border-color 240ms var(--ease-standard), box-shadow 240ms var(--ease-standard); }
.fl-resource-grid a:hover { color: var(--ink); border-color: rgba(222, 0, 165, .46); transform: translateY(-3px); box-shadow: var(--shadow-panel); }
.fl-resource-grid small { color: var(--pink); font-weight: 700; }
.fl-resource-grid h3 { margin-top: 12px; }
.fl-resource-grid p { margin-top: 14px; color: var(--ink-soft); }
.fl-resource-grid span { margin-top: auto; color: var(--pink); font-weight: 700; }

/* Interior content cards and process components. */
.v4-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 16px; }
.v4-card-grid--five { grid-template-columns: repeat(5, 1fr); }
.v4-card { min-height: 230px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); }
.v4-card::before { content: ""; width: 48px; height: 5px; margin-bottom: 22px; display: block; background: var(--pink); border-radius: 0; }
.v4-card--purple::before { background: var(--purple); }
.v4-card--blue::before { background: var(--blue); }
.v4-card--yellow::before { background: var(--yellow); }
.v4-card--ink::before { background: var(--ink); }
.v4-card__label { color: var(--medium); font-size: 14px; font-weight: 700; }
.v4-card h3 { margin-top: 10px; }
.v4-card p:last-child { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }

.v4-word-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v4-word-grid > div { min-height: 300px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); }
.v4-letter { margin: 0 0 48px; color: var(--pink); font-size: 72px; font-weight: 700; line-height: 1; }
.v4-word-grid p:last-child { color: var(--ink-soft); }

.v4-method-flow,
.v4-checklist,
.v4-report-outline { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.v4-method-flow article,
.v4-checklist article,
.v4-report-outline article { min-height: 230px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.v4-method-flow b,
.v4-checklist b,
.v4-report-outline span { color: var(--pink); font-size: 18px; }
.v4-method-flow h3,
.v4-checklist h3,
.v4-report-outline h3 { margin-top: 26px; }
.v4-method-flow p,
.v4-checklist p,
.v4-report-outline p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }

.v4-three-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v4-three-columns article { padding: 28px; background: var(--paper); border-radius: var(--radius-card); }
.v4-three-columns ul { margin: 18px 0 0; }
.v4-three-columns li { margin: 12px 0; }
.v4-phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v4-phase-grid article { min-height: 230px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); }
.v4-phase-grid span { color: var(--pink); font-weight: 700; }
.v4-phase-grid h3 { margin-top: 34px; }
.v4-phase-grid p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }

.v4-service-list,
.v4-project-directory { display: grid; gap: 16px; }
.v4-service-list > a,
.v4-project-directory > a { min-height: 180px; padding: 28px; display: grid; grid-template-columns: 70px 1fr auto; gap: 26px; align-items: center; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); text-decoration: none; transition: color 240ms var(--ease-standard), background 240ms var(--ease-standard), border-color 240ms var(--ease-standard), transform 240ms var(--ease-standard), box-shadow 240ms var(--ease-standard); }
.v4-service-list > a:hover,
.v4-project-directory > a:hover { transform: translateY(-3px); box-shadow: var(--shadow-panel); }
.v4-service-list > a > span,
.v4-project-directory > a > span { color: var(--pink); font-size: 28px; font-weight: 700; }
.v4-service-list p,
.v4-project-directory p { margin: 0 0 6px; color: var(--medium); font-size: 13px; font-weight: 700; }
.v4-service-list strong,
.v4-project-directory strong { color: var(--ink-soft); font-size: 16px; font-weight: 400; }
.v4-service-list em,
.v4-project-directory em { color: var(--pink); font-style: normal; font-weight: 700; }
.v4-service-list .is-purple:hover,
.v4-project-directory .is-purple:hover { color: var(--white); background: var(--purple); border-color: var(--purple); }
.v4-service-list .is-blue:hover,
.v4-project-directory .is-blue:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }
.v4-service-list .is-yellow:hover,
.v4-project-directory .is-yellow:hover { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.v4-service-list .is-ink:hover,
.v4-project-directory .is-ink:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.v4-service-list > a:hover > span,
.v4-service-list > a:hover p,
.v4-service-list > a:hover strong,
.v4-service-list > a:hover em,
.v4-project-directory > a:hover > span,
.v4-project-directory > a:hover p,
.v4-project-directory > a:hover strong,
.v4-project-directory > a:hover em { color: inherit; }

.v4-two-up { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.v4-info-block,
.v4-editorial-card { min-height: 360px; padding: clamp(28px, 4vw, 52px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-card); }
.v4-info-block--yellow { background: rgba(254, 203, 81, .22); }
.v4-info-block ul { margin-top: 24px; }
.v4-info-block li { margin: 10px 0; }
.v4-info-block a,
.v4-editorial-card a { min-height: 44px; display: inline-flex; align-items: center; margin-top: 26px; font-weight: 700; vertical-align: middle; }

.v4-history-note,
.v4-boundary,
.v4-status-panel,
.v4-evidence-register { margin-block: 28px 96px; padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; background: var(--paper); border-radius: var(--radius-panel); }
.v4-history-note > p,
.v4-boundary > p,
.v4-status-panel > p,
.v4-evidence-register > div > p { color: var(--ink-soft); }
.v4-status-panel span { color: var(--pink); font-size: 14px; font-weight: 700; }
.v4-status-panel a { min-height: 44px; display: inline-flex; align-items: center; vertical-align: middle; }
.v4-evidence-register ul { margin: 0; padding: 0; list-style: none; }
.v4-evidence-register li { padding: 12px 0; display: grid; grid-template-columns: 140px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.v4-evidence-register li span { color: var(--medium); }

.v4-prose { max-width: var(--article); margin-inline: auto; }
.v4-prose h2 { margin-bottom: 24px; }
.v4-prose p { color: var(--ink-soft); }
.v4-prose blockquote { margin: 30px 0; padding: 28px; background: var(--white); border-left: 6px solid var(--pink); border-radius: 0 var(--radius-card) var(--radius-card) 0; font-size: 21px; }
.v4-note,
.v4-video-note { max-width: var(--article); margin: 0 auto 34px; padding: 18px 20px; color: var(--ink-soft); background: var(--paper); border-left: 5px solid var(--yellow); }

.v4-source-list,
.v4-resource-grid,
.v4-news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.v4-source-list a,
.v4-resource-grid a,
.v4-news-grid > * { min-height: 190px; padding: 24px; display: flex; flex-direction: column; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); text-decoration: none; transition: transform 240ms var(--ease-standard), border-color 240ms var(--ease-standard), box-shadow 240ms var(--ease-standard); }
.v4-source-list a:hover,
.v4-resource-grid a:hover,
.v4-news-grid > *:hover { transform: translateY(-3px); box-shadow: var(--shadow-panel); }
.v4-source-list span,
.v4-resource-grid p,
.v4-news-grid span { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
.v4-resource-grid .is-purple { color: var(--white); background: var(--purple); border-color: var(--purple); }
.v4-resource-grid .is-blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.v4-resource-grid .is-yellow { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.v4-resource-grid .is-ink { color: var(--white); background: var(--ink); border-color: var(--ink); }
.v4-resource-grid .is-purple h2,
.v4-resource-grid .is-blue h2,
.v4-resource-grid .is-ink h2,
.v4-resource-grid .is-purple p,
.v4-resource-grid .is-blue p,
.v4-resource-grid .is-ink p,
.v4-resource-grid .is-purple span,
.v4-resource-grid .is-blue span,
.v4-resource-grid .is-ink span { color: var(--white); }
.v4-news-feature { grid-column: span 2; }
.v4-news-feature strong { margin-top: auto; color: var(--pink); }

.v4-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v4-contact-grid article { min-height: 260px; padding: 28px; background: var(--paper); border-radius: var(--radius-card); }
.v4-contact-grid a { min-height: 44px; display: inline-flex; align-items: center; margin-top: 22px; font-weight: 700; vertical-align: middle; }
.v4-contact-grid .is-purple { color: var(--white); background: var(--purple); }
.v4-contact-grid .is-blue { color: var(--white); background: var(--blue); }
.v4-contact-grid .is-yellow { color: var(--ink); background: var(--yellow); }
.v4-contact-grid .is-purple h2,
.v4-contact-grid .is-blue h2,
.v4-contact-grid .is-purple a,
.v4-contact-grid .is-blue a { color: var(--white); }

.v4-case-template { display: grid; grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-panel); }
.v4-case-template aside { padding: clamp(30px, 4vw, 58px); color: var(--white); background: var(--purple); }
.v4-case-template aside .eyebrow { color: var(--yellow); }
.v4-case-template dl { margin-top: 48px; }
.v4-case-template dl div { padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .32); }
.v4-case-template dt { font-size: 13px; }
.v4-case-template dd { margin: 6px 0 0; font-weight: 700; }
.v4-case-template article { padding: clamp(40px, 6vw, 84px); }
.v4-case-template article p:not(.eyebrow) { font-size: 18px; }
.v4-case-template article a { min-height: 44px; display: inline-flex; align-items: center; color: var(--purple); font-weight: 700; vertical-align: middle; }
.v4-faq details { margin-bottom: 12px; padding: 18px 22px; background: var(--paper); border-radius: 14px; }
.v4-faq summary { cursor: pointer; font-weight: 700; }
.v4-faq p { margin: 14px 0 0; color: var(--ink-soft); }

.v4-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.v4-video-grid article { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.v4-video-grid video { width: 100%; aspect-ratio: 16 / 9; display: block; background: var(--ink); }
.v4-video-grid article > div { padding: 22px; }
.v4-video-grid small { color: var(--pink); font-weight: 700; }
.v4-video-grid h3 { margin-top: 8px; }
.v4-video-grid p { margin: 10px 0 0; color: var(--ink-soft); }
.v4-video-archive { display: block; }
.v4-video-note { max-width: 800px; margin: 0 0 64px; color: var(--ink-soft); }
.v4-video-archive-group + .v4-video-archive-group { margin-top: 88px; padding-top: 72px; border-top: 1px solid var(--line); }

.v4-article { padding-block: 72px 96px; }
.v4-article > header,
.v4-article-body,
.v4-legal { max-width: var(--article); margin-inline: auto; }
.v4-article > header { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.v4-article-body { padding-top: 42px; }
.v4-article-body h2,
.v4-legal h2 { margin: 46px 0 18px; font-size: 30px; }
.v4-article-body p,
.v4-legal p { color: var(--ink-soft); }
.v4-article-body a:not(.button),
.v4-legal a { display: inline; text-decoration-line: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.v4-related { max-width: var(--article); margin: 72px auto 0; padding-top: 34px; border-top: 1px solid var(--line); }
.v4-related h2 { font-size: 28px; }
.v4-related > div { margin-top: 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.v4-related a { min-height: 96px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-card); font-size: 15px; font-weight: 700; text-decoration: none; }
.v4-related a:hover { color: var(--pink); border-color: var(--pink); }
.v4-related a span { align-self: flex-end; color: var(--pink); }
.v4-legal { padding-block: 72px 96px; }
.v4-update { color: var(--pink) !important; font-size: 14px; font-weight: 700; }
.v4-redirect { min-height: 60vh; padding-block: 110px; text-align: center; }
.v4-redirect p:not(.eyebrow) { max-width: 580px; margin: 20px auto; color: var(--ink-soft); }

.v4-brand-system-page .r13-content-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  vertical-align: middle;
}
.v4-brand-system-page .brand-chapter-nav a,
.v4-brand-system-page .r13-component-grid input,
.v4-brand-system-page .r13-component-grid select {
  font-size: 16px;
  line-height: 24px;
}

.v4-final-cta {
  margin-block: 40px 96px;
  padding: clamp(42px, 6vw, 82px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(202, 202, 204, .38);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
}
.v4-final-cta h2 { color: var(--ink); }
.v4-final-cta p:not(.eyebrow) { max-width: 720px; margin: 20px 0 0; color: var(--ink-soft); }
.v4-final-cta .button:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }

/* Mega footer. */
.site-footer { padding: 0 var(--gutter); color: var(--white); background: var(--ink); }
.footer-cta {
  width: min(var(--wide-panel), 100%);
  min-height: 164px;
  margin: 0 auto;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 0 0 40px 40px;
  box-shadow: var(--shadow-panel);
}
.footer-cta p { margin: 0 0 4px; color: var(--pink); font-size: 15px; font-weight: 700; }
.footer-cta h2 { max-width: 780px; color: var(--ink); font-size: clamp(28px, 2.4vw, 40px); }
.footer-main { width: min(var(--measure), 100%); margin: auto; display: grid; grid-template-columns: minmax(260px, .78fr) 1.7fr; gap: 70px; }
.footer-main { padding-top: 72px; }
.v4-footer-brand img { width: 122px; padding: 8px; background: var(--white); }
.v4-footer-brand p { max-width: 360px; margin: 22px 0 0; color: rgba(255, 255, 255, .72); font-size: 15px; }
.v4-footer-brand a { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-size: 16px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.footer-links section { min-width: 0; }
.footer-links h2 { margin-bottom: 18px; color: var(--white); font-size: 16px; }
.footer-links a { min-height: 44px; margin: 0; padding: 8px 0; display: flex; align-items: center; color: rgba(255, 255, 255, .72); font-size: 16px; line-height: 1.5; text-decoration: none; transition: color 240ms var(--ease-standard), transform 240ms var(--ease-standard); }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { width: min(var(--measure), 100%); margin: 64px auto 0; padding: 24px 0; display: flex; justify-content: space-between; gap: 30px; color: rgba(255, 255, 255, .55); border-top: 1px solid rgba(255, 255, 255, .18); font-size: 13px; }

@media (min-width: 1600px) {
  .header-inner { width: min(var(--header-measure), calc(100% - 96px)); }
}

@media (max-width: 1399px) {
  .site-header nav .nav-browse { display: none; }
  .site-header nav .nav-compact-resource { display: inline-flex !important; }
  .site-nav__utility { margin-left: auto; }
}

/* Desktop contract: a 72%-width mirror supports one complete source frame. */
@media (min-width: 900px) {
  .hero-film {
    aspect-ratio: 688 / 225;
    display: grid;
    grid-template-columns: 18fr 25fr;
  }
  .hero-mirror { display: block; grid-column: 1; }
  .hero-main { grid-column: 2; }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .hero-inner { left: clamp(20px, 2.6455vw, 40px); top: 50%; width: min(37.5vw, 680px); max-width: calc(100% - 40px); max-height: calc(100% - 24px); margin: 0; padding: 18px 22px; transform: translateY(-50%); }
  .hero-inner h1 { font-size: 31px; }
  .hero-inner .lead { font-size: 14px; line-height: 1.45; }
  .hero-inner .actions { padding-right: 0; flex-wrap: nowrap; gap: 8px; }
  .hero-inner .button { min-height: 40px; padding: 6px 10px; font-size: 14px; }
  .hero-proof { display: none; }
  .hero-badge { display: none; }
  .hero-media-meta { top: 12px; right: 16px; }
}

@media (max-width: 1180px) {
  .fl-course-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v4-card-grid--five { grid-template-columns: repeat(3, 1fr); }
  .fl-how-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(5, 1fr); }
}

/* Recompose rather than squeeze the desktop billboard. */
@media (max-width: 899px) {
  .hero-film {
    min-height: 0;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--white);
  }
  .hero-mirror { display: none; }
  .hero-main {
    position: relative;
    order: 0;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-main > video { position: absolute; inset: 0; object-position: center; }
  .hero-inner {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: min(920px, calc(100% - 40px));
    max-width: 920px;
    margin: 24px auto 0;
    padding: 34px max(var(--gutter), 28px) 40px;
    transform: none;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(202, 202, 204, .4);
    border-radius: 34px;
    box-shadow: 0 6px 10px -2px rgba(37, 65, 252, .16), 0 3px 6px -3px rgba(37, 65, 252, .16);
  }
  .hero-inner h1 { color: var(--ink); }
  .hero-inner h1 span:first-child { color: var(--pink); }
  .hero-inner .hero-badge { color: var(--pink); }
  .hero-inner .lead { color: var(--ink-soft); }
  .hero-proof { color: var(--medium); }
  .hero-proof span:not(:last-child)::after { background: var(--soft); }
  .hero-inner .button--ghost { color: var(--pink); border-color: var(--pink); }
  .hero-inner .button--ghost:hover { color: var(--blue); background: transparent; border-color: var(--blue); }
  .hero-media-meta { position: static; margin-top: 12px; justify-content: space-between; }
  .hero-media-meta > span { display: inline; }
  .hero-inner .actions { padding-right: 0; }
  .fl-promo-band { margin-top: 24px; }
}

@media (max-width: 899px) {
  :root { --gutter: 28px; }
  body { font-size: 17px; }
  .site-notice > div { min-height: 40px; justify-content: space-between; font-size: 12px; }
  .site-header { min-height: 76px; }
  .header-inner { width: calc(100% - 40px); min-height: 76px; }
  .brand img { width: 96px; }
  .menu-toggle {
    position: relative;
    z-index: 92;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-button);
  }
  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after { width: 20px; height: 2px; display: block; background: var(--ink); transition: transform 240ms var(--ease-standard); }
  .menu-toggle__icon { position: relative; }
  .menu-toggle__icon::before,
  .menu-toggle__icon::after { content: ""; position: absolute; left: 0; }
  .menu-toggle__icon::before { top: -6px; }
  .menu-toggle__icon::after { top: 6px; }
  .nav-open .menu-toggle__icon { background: transparent; }
  .nav-open .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .nav-open .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }
  .site-header nav {
    position: fixed;
    z-index: 90;
    inset: 0;
    padding: 110px 28px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--white);
  }
  .site-header.nav-open nav { display: flex; }
  .site-nav__primary,
  .site-nav__utility { width: 100%; margin: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__utility { margin-top: 18px; }
  .site-header nav a { min-height: 58px; padding: 10px 0; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 22px; }
  .site-header nav a[aria-current="page"] { text-decoration: none; }
  .site-header nav .nav-browse { width: 100%; min-height: 52px; margin: 0 0 14px; padding: 0; display: flex; border: 1px solid var(--soft); font-size: 16px; }
  .site-header nav .nav-compact-resource { display: none !important; }
  .site-header nav .nav-browse > span:first-child { padding: 10px 14px; }
  .site-header nav .nav-browse__icon { min-height: 50px; padding: 0; border: 0; }
  .nav-contact { margin-top: 22px; border: 0 !important; justify-content: center !important; color: var(--white) !important; font-size: 18px !important; }

  .no-js .site-header { position: relative; }
  .no-js .header-inner { min-height: 76px; flex-wrap: wrap; }
  .no-js .menu-toggle { display: none; }
  .no-js .site-header nav {
    position: static;
    width: 100%;
    padding: 0 0 18px;
    display: flex;
    overflow: visible;
    background: var(--white);
  }
  .no-js .site-nav__primary {
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
  }
  .no-js .site-nav__primary a { flex: 0 0 auto; min-height: 46px; font-size: 16px; }
  .no-js .site-nav__utility { display: none; }
  .v4-brand-system-page .brand-chapter-nav { top: 76px; }

  .hero-inner { width: calc(100% - 32px); padding: 30px 28px 34px; }
  .hero-inner h1 { font-size: 36px; line-height: 1.25; }
  .hero-inner .actions { flex-direction: column; }
  .hero-inner .button { width: 100%; min-height: 48px; }
  .hero-media-meta { align-items: flex-start; }
  .hero-caption { display: none; }
  .fl-promo-band { width: calc(100% - 32px); height: auto; min-height: 0; margin-top: 24px; padding: 30px 28px; grid-template-columns: 1fr; gap: 24px; border-radius: 32px; }
  .fl-promo-band > .button { width: 100%; min-width: 0; justify-self: stretch; }
  .fl-promo-band nav { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .fl-promo-band nav a { min-width: 170px; scroll-snap-align: start; }

  .fl-home-gradient { margin-top: -32px; padding: 120px 0 64px; }

  .v4-section { padding-block: 64px; }
  .v4-section-head { margin-bottom: 32px; grid-template-columns: 1fr; gap: 18px; }
  .v4-section--soft,
  .v4-section--ink { padding-inline: 28px; }
  .v4-page-hero { width: 100%; min-height: 0; margin: 0; padding: 32px 20px; border-radius: 0; }
  .v4-page-hero__inner { min-height: 0; grid-template-columns: 1fr; border-radius: 32px; }
  .v4-page-hero:not(:has(.v4-page-hero__inner)) { width: calc(100% - 40px); margin: 32px auto; grid-template-columns: 1fr; border-radius: 32px; }
  .v4-page-hero__media { order: -1; aspect-ratio: 2.1 / 1; }
  .v4-page-hero__media img { min-height: 0; height: 100%; }
  .v4-page-hero__copy { padding: 34px 28px 40px; }
  .v4-page-hero__copy h1 { font-size: 38px; }

  .fl-explorer { width: calc(100% - 32px); padding: 42px 28px; border-radius: 32px; }
  .fl-explorer__header { margin-bottom: 30px; }
  .fl-explorer__header > a { position: static; min-height: 44px; margin-bottom: 14px; justify-content: center; }
  .fl-tabs { gap: 22px; }
  .fl-capability-panel { padding: 30px 0 32px; grid-template-columns: 1fr; gap: 30px; border-radius: 32px; }
  .fl-capability-copy { padding-inline: 28px; }
  .fl-capability-cards,
  .fl-course-grid,
  .fl-course-grid--four {
    padding: 4px 28px 22px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .fl-capability-cards { margin-inline: -28px; }
  .fl-course-card { flex: 0 0 min(82vw, 320px); min-height: 350px; scroll-snap-align: start; }
  .fl-capability-cards .fl-course-card { flex-basis: min(78vw, 310px); }
  .fl-task-links nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fl-trust-strip { width: calc(100% - 56px); margin-top: 64px; padding: 56px 0; grid-template-columns: 1fr; gap: 28px; }
  .fl-trust-grid { grid-template-columns: 1fr; }
  .fl-trust-grid article { min-height: 88px; border-left: 0; border-top: 1px solid var(--soft); }
  .fl-plans { width: calc(100% - 56px); padding-top: 64px; }
  .fl-plan-grid { grid-template-columns: 1fr; }
  .fl-plan-grid article { min-height: 0; padding: 32px; border-radius: 32px; }
  .fl-plan-grid article.is-featured { padding: 29px; }
  .v4-film-feature,
  .fl-feature-panel { margin-bottom: 64px; grid-template-columns: 1fr; border-radius: 32px; }
  .v4-film-feature > video,
  .fl-feature-panel > img { min-height: 0; aspect-ratio: 16 / 9; }
  .v4-film-feature > div,
  .fl-feature-panel > div { padding: 36px 28px 42px; }
  .fl-how-grid { padding-bottom: 18px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .fl-how-grid li { flex: 0 0 min(76vw, 285px); scroll-snap-align: start; }
  .fl-resource-grid { grid-template-columns: 1fr; }

  .v4-card-grid,
  .v4-card-grid--five,
  .v4-word-grid,
  .v4-three-columns,
  .v4-phase-grid,
  .v4-two-up,
  .v4-contact-grid,
  .v4-video-grid { grid-template-columns: 1fr; }
  .v4-related > div { grid-template-columns: 1fr; }
  .v4-case-template { grid-template-columns: 1fr; }
  .v4-method-flow,
  .v4-checklist,
  .v4-report-outline { grid-template-columns: repeat(2, 1fr); }
  .v4-service-list > a,
  .v4-project-directory > a { grid-template-columns: 52px 1fr; }
  .v4-service-list em,
  .v4-project-directory em { grid-column: 2; }
  .v4-history-note,
  .v4-boundary,
  .v4-status-panel,
  .v4-evidence-register { margin-bottom: 64px; padding: 36px 28px; grid-template-columns: 1fr; gap: 24px; border-radius: 32px; }
  .v4-final-cta { margin-bottom: 64px; padding: 44px 28px; grid-template-columns: 1fr; align-items: start; border-radius: 32px; }
  .v4-final-cta .button { width: 100%; }
  .v4-news-feature { grid-column: auto; }
  .site-footer { padding-inline: 28px; }
  .footer-cta { min-height: 0; padding: 38px 28px; grid-template-columns: 1fr; gap: 24px; border-radius: 0 0 32px 32px; }
  .footer-cta .button { width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 38px 22px; }
  .footer-bottom { margin-top: 48px; flex-direction: column; }
}

@media (max-width: 900px) {
  .v4-brand-system-page .r13-palette { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v4-brand-system-page .r13-palette .is-action { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .v4-brand-system-page .r13-palette { grid-template-columns: 1fr; }
}

@media (max-width: 559px) {
  :root { --gutter: 16px; }
  h1 { font-size: 36px; }
  h2 { font-size: 31px; }
  h3 { font-size: 22px; }
  .lead { font-size: 17px; }
  .site-notice strong { max-width: 62vw; }
  .hero-inner { padding-inline: 24px; }
  .hero-inner h1 { font-size: 34px; }
  .hero-proof { gap: 7px 14px; }
  .hero-proof span:not(:last-child)::after { right: -8px; }
  .fl-promo-band { padding-inline: 24px; }
  .fl-task-links nav { grid-template-columns: 1fr; }
  .v4-section-head > p { font-size: 16px; }
  .fl-course-grid,
  .fl-course-grid--four,
  .fl-capability-cards { padding-inline: 16px; }
  .fl-capability-copy { padding-inline: 24px; }
  .v4-method-flow,
  .v4-checklist,
  .v4-report-outline { grid-template-columns: 1fr; }
  .v4-service-list > a,
  .v4-project-directory > a { min-height: 0; padding: 22px; grid-template-columns: 1fr; gap: 12px; }
  .v4-service-list em,
  .v4-project-directory em { grid-column: auto; }
  .v4-evidence-register li { grid-template-columns: 1fr; gap: 4px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 359px) {
  .hero-inner h1 { font-size: 30px; line-height: 1.25; letter-spacing: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .button:hover,
  .fl-promo-band nav a:hover,
  .fl-task-links a:hover,
  .fl-course-card:hover,
  .fl-plan-grid article:hover,
  .fl-how-grid li:hover,
  .fl-resource-grid a:hover,
  .v4-card:hover,
  .v4-service-list > a:hover,
  .v4-project-directory > a:hover,
  .v4-source-list a:hover,
  .v4-resource-grid a:hover,
  .v4-news-grid > *:hover { transform: none !important; }
}

@media (forced-colors: active) {
  :focus-visible { outline-color: Highlight; box-shadow: none; }
  .button, .nav-contact, .video-toggle, .menu-toggle { border: 1px solid ButtonText; }
  .hero-inner, .fl-promo-band, .v4-card, .fl-course-card { box-shadow: none; }
}

@media print {
  .site-notice, .site-header, .site-footer, .video-toggle, .actions, .fl-tabs { display: none !important; }
  body { background: var(--white); font-size: 11pt; }
  .v4-section, .v4-page-hero, .v4-article, .v4-legal { width: 100%; padding: 18pt 0; }
  .v4-card, .fl-course-card, .v4-page-hero { break-inside: avoid; box-shadow: none; }
}
