/**
 * SACP Pathfinder — structural stylesheet.
 *
 * Deliberately barebones: layout skeleton, states and tokens only.
 * The design team styles the quiz FROM THE THEME stylesheet — every
 * selector here is a single class (low specificity, no !important) so
 * theme rules win without fighting. Full handoff reference: docs/STYLING.md.
 *
 * All themeable values are custom properties on .sacp-pf (defaults from
 * the ACP brand sheet + design-concept mocks). Fonts intentionally
 * `inherit` — the theme provides Koulen / Lucida Sans Unicode.
 */

.sacp-pf {
	--sacp-pf-color-bg: #062039;
	--sacp-pf-color-surface: #132644;
	--sacp-pf-color-primary: #BF862D;
	--sacp-pf-color-accent: #0EA5E9;
	--sacp-pf-color-text: #FFFFFF;
	--sacp-pf-color-text-muted: rgba(255, 255, 255, 0.5);
	--sacp-pf-color-success: #22C55E;
	--sacp-pf-font-display: Koulen, "Lucida Sans Unicode", sans-serif;
	--sacp-pf-font-body: "Lucida Sans Unicode", sans-serif;
	--sacp-pf-radius-card: 12px;
	--sacp-pf-radius-button: 15px;
	--sacp-pf-motion-duration: 200ms;

	background: var(--sacp-pf-color-bg);
	color: var(--sacp-pf-color-text);
	font-family: var(--sacp-pf-font-body);
	border-radius: var(--sacp-pf-radius-card);
	padding: 0;
	box-sizing: border-box;
}

/*
 * No max-width/centring here on purpose — the panel background is meant to
 * fill whatever width the page gives it. Each screen controls its own
 * content width via its own `__container` element (which also carries the
 * theme's `wcl-container` class), the same pattern `.sacp-pf-start__container`
 * already used for the hero. See docs/STYLING.md.
 */

.sacp-pf *,
.sacp-pf *::before,
.sacp-pf *::after {
	box-sizing: inherit;
}

.sacp-pf h2 {
	font-family: var(--sacp-pf-font-display);
	color: var(--sacp-pf-color-text);
	line-height: 1.2;
}

.sacp-pf ul {
	padding: 0;
	list-style: none;
}

.sacp-pf img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------------------------------------ */
/* Buttons                                                              */
/* ------------------------------------------------------------------ */

.sacp-pf-button {
	display: inline-block;
	font-family: var(--sacp-pf-font-body);
	font-size: 16px;
	padding: 12px 24px;
	border-radius: var(--sacp-pf-radius-button);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: background-color var(--sacp-pf-motion-duration) ease, border-color var(--sacp-pf-motion-duration) ease, opacity var(--sacp-pf-motion-duration) ease;
}

.sacp-pf-button:hover {
	opacity: 0.85;
}

.sacp-pf-button--primary {
	background: var(--sacp-pf-color-primary);
	color: white;
	border-color: var(--sacp-pf-color-primary);
}

.sacp-pf-button--primary:hover {
	background: var(--sacp-pf-color-primary);
	opacity: 0.85;
}

.sacp-pf-button--ghost {
	background: transparent;
	color: var(--sacp-pf-color-text);
	border-color: var(--sacp-pf-color-text-muted);
}

.sacp-pf-button--accent {
	background: var(--sacp-pf-color-accent);
	color: white;
	border-color: var(--sacp-pf-color-accent);
}

.sacp-pf-button--accent:hover {
	background: var(--sacp-pf-color-accent);
	opacity: 0.85;
}

.sacp-pf-button:focus-visible {
	outline: 2px solid var(--sacp-pf-color-accent);
	outline-offset: 2px;
}

.sacp-pf-button.is-disabled,
.sacp-pf-button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

/* ------------------------------------------------------------------ */
/* Preview banner + notices                                             */
/* ------------------------------------------------------------------ */

.sacp-pf-preview-banner {
	background: var(--sacp-pf-color-primary);
	color: var(--sacp-pf-color-bg);
	border-radius: var(--sacp-pf-radius-card);
	padding: 10px 16px;
	margin: 0 0 16px;
	font-weight: 600;
}

.sacp-pf-results__stale {
	border-left: 3px solid var(--sacp-pf-color-accent);
	color: var(--sacp-pf-color-text-muted);
	padding: 6px 12px;
	margin: 8px 0 0;
}

.sacp-pf--unavailable {
	padding: 32px 16px;
	text-align: center;
}

/* ------------------------------------------------------------------ */
/* Start screen                                                         */
/* ------------------------------------------------------------------ */

.sacp-pf-start {
	text-align: center;
	padding: 24px 0;
	position: relative;
}

/*
 * Bespoke coupling: this plugin ships only for aerospacecareersprogramme.co.uk,
 * whose theme header is #wcl-main-header. This mirrors the theme's own
 * body.wcl-has-full-width-banner rule (see full-width-page-banner-section)
 * so the site nav floats transparently over the hero instead of sitting in
 * its own bar above it. Toggled by pathfinder.js only while the hero start
 * screen (with a background image) is showing.
 */
body.sacp-pf-hero-active #wcl-main-header {
	position: absolute;
}

.sacp-pf-start.has-bg {
	text-align: left;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 0;
	/* Break out of the plugin panel (and whatever container the theme wraps
	   the page content in) so the hero image runs edge-to-edge, matching
	   wcl-full-width-page-banner-section. */
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 150px 0 60px;
}

.sacp-pf-start.has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(6, 32, 57, 0.94) 0%, rgba(6, 32, 57, 0.78) 50%, rgba(6, 32, 57, 0.35) 100%);
	pointer-events: none;
}

.sacp-pf-start__container {
	position: relative;
	z-index: 1;
}

.sacp-pf-start__hero {
	position: relative;
	z-index: 1;
}

.sacp-pf-start.has-bg .sacp-pf-start__hero {
	max-width: 560px;
}

.sacp-pf-start.has-bg .sacp-pf-start__actions {
	justify-content: flex-start;
}

.sacp-pf-start__heading {
	font-size: 64px;
	line-height: 1.2;
	letter-spacing: 5%;
}

.sacp-pf-start__intro {
	max-width: 560px;
	margin: 0 auto 8px;
	color: var(--sacp-pf-color-text);
}

.sacp-pf-start.has-bg .sacp-pf-start__intro {
	margin-left: 0;
}

.sacp-pf-start__meta {
	color: var(--sacp-pf-color-text-muted);
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.sacp-pf-start__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* "How it works" steps                                                 */

.sacp-pf-steps {
	position: relative;
	z-index: 1;
	margin-top: 65px;
	text-align: left;
}

.sacp-pf-steps__eyebrow {
	color: var(--sacp-pf-color-accent);
	font-size: 14px;
	letter-spacing: 0%;
	margin: 0 0 8px;
}

.sacp-pf-steps__heading {
	font-family: 'Koulen', "Lucida Sans Unicode", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5%;
	margin: 0 0 20px;
	line-height: 1.25;
	font-weight: normal;
}

.sacp-pf-steps__grid {
	display: grid;
	gap: 4px;
	max-width: 794px;
	width: 100%;
}

.sacp-pf-step {
	background: var(--sacp-pf-color-surface);
	border-radius: var(--sacp-pf-radius-card);
	padding: 12px 15px 15px;
	text-align: left;
}

.sacp-pf-step__top {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.sacp-pf-step__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	flex-shrink: 0;
}

.sacp-pf-step__icon {
	width: 100%;
	object-fit: contain;
}

.sacp-pf-step__number {
	color: #0EA5E9;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0%;
	display: flex;
	line-height: 1.3;
}

.sacp-pf-step__title {
	font-size: 14px;
	margin: 0 0 5px;
	font-family: "Lucida Sans Unicode", sans-serif;
	font-weight: normal;
}

.sacp-pf-step__desc {
	color: var(--sacp-pf-color-text-muted);
	font-size: 11px;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/* Progress                                                             */
/* ------------------------------------------------------------------ */

.sacp-pf-progress {
	margin-bottom: 50px;
}

.sacp-pf-progress__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.sacp-pf-progress__category {
	display: inline-block;
	color: #BF862D;
	font-size: 16px;
	letter-spacing: 0%;
}

.sacp-pf-progress__count {
	color: var(--sacp-pf-color-text-muted);
	font-size: 0.85rem;
}

.sacp-pf-progress__bar {
	background: #052038;
	border-radius: 100px;
	height: 10px;
	margin-top: 10px;
	overflow: hidden;
}

.sacp-pf-progress__fill {
	display: block;
	height: 100%;
	background: var(--sacp-pf-color-primary);
	border-radius: var(--sacp-pf-radius-button);
	transition: width var(--sacp-pf-motion-duration) ease;
}

/* ------------------------------------------------------------------ */
/* Question + answers                                                   */
/* ------------------------------------------------------------------ */

.sacp-pf-question__fieldset {
	border: 0;
	padding: 0;
	margin: 0 0 20px;
	min-width: 0;
}

.sacp-pf-question__title {
	font-family: var(--sacp-pf-font-display);
	font-size: 40px;
	padding: 0;
	margin-bottom: 14px;
	letter-spacing: 5%;
	line-height: 1.2;
	text-align: center;
}

.sacp-pf-question__title:focus {
	outline: none;
}

p.sacp-pf-question__help {
	color: var(--sacp-pf-color-text-muted);
	font-size: 0.9rem;
	margin-bottom: 50px;
	text-align: center;
}

.sacp-pf-answers {
	display: grid;
	gap: 10px;
}

.sacp-pf-answer {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #052038;
	border: 1px solid transparent;
	border-radius: var(--sacp-pf-radius-card);
	padding: 14px 16px;
	cursor: pointer;
	transition: border-color var(--sacp-pf-motion-duration) ease, opacity var(--sacp-pf-motion-duration) ease;
}

.sacp-pf-answer:hover {
	border-color: var(--sacp-pf-color-text-muted);
}

.sacp-pf-answer.is-selected {
	border-color: var(--sacp-pf-color-primary);
}

.sacp-pf-answer.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.sacp-pf-answer__input {
	accent-color: var(--sacp-pf-color-primary);
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin: 0;
}

.sacp-pf-answer__input:focus-visible {
	outline: 2px solid var(--sacp-pf-color-accent);
	outline-offset: 2px;
}

.sacp-pf-answer__text {
	line-height: 1.4;
}

.sacp-pf-nav {
	display: flex;
	gap: 12px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sacp-pf-nav .sacp-pf-button--primary {
	margin-left: auto;
}

/* ------------------------------------------------------------------ */
/* Results: header + match cards                                        */
/* ------------------------------------------------------------------ */

.sacp-pf-results {
	padding-top: 40px;
	padding-bottom: 40px;
}

/* .sacp-pf-results__matches is the positioning context for the clouds below
   — they're children of the section itself, not the inner wcl-container, so
   the container's max-width never clips them. */
.sacp-pf-results__matches {
	position: relative;
}

/* Shared inner wrapper used by every results section: carries the theme's
   wcl-container class for width/padding, and sits above any full-bleed
   decoration (like the clouds) that lives at the section level. */
.sacp-pf-section-container {
	position: relative;
	z-index: 1;
}

.sacp-pf-results__header {
	text-align: left;
	margin-bottom: 70px;
}

.sacp-pf-results__cloud {
	position: absolute;
	width: 30%;
	max-width: 200px;
	pointer-events: none;
	z-index: 0;
}

.sacp-pf-results__cloud--left {
	left: 0;
	top: -95px;
}

.sacp-pf-results__cloud--right {
	right: 32px;
	max-width: 530px;
	top: 114px;
}

.sacp-pf-results__eyebrow {
	color: var(--sacp-pf-color-accent);
	font-size: 16px;
	letter-spacing: 0%;
	margin-bottom: 18px;
}

.sacp-pf-results__heading {
	font-size: 64px;
	margin-bottom: 24px;
	line-height: 1.2;
	letter-spacing: 5%;
}

.sacp-pf-results__desc {
	max-width: 635px;
	color: #fff;
	font-size: 16px;
}

.sacp-pf-results__matches-grid {
	display: grid;
	gap: 16px;
}

/* Career image (when present) is the background of the whole card, not just
   the hero strip — border-radius clips it automatically (no overflow:hidden
   needed for a CSS background-image), so the badge below can still safely
   poke past the top border without being clipped. */

.sacp-pf-match {
	position: relative;
	background-color: var(--sacp-pf-color-surface);
	background-size: cover;
	background-position: top;
	border: 1px solid var(--sacp-pf-color-primary);
	border-radius: var(--sacp-pf-radius-card);
	display: flex;
	flex-direction: column;
	padding: 65px 48px 48px;
}

.sacp-pf-match--secondary {
	border-color: var(--sacp-pf-color-accent);
}

/* .sacp-pf-match.has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(6, 32, 57, 0.15) 0%, rgba(6, 32, 57, 0.88) 45%, var(--sacp-pf-color-surface) 68%, var(--sacp-pf-color-surface) 100%);
	pointer-events: none;
} */

.sacp-pf-match__badge {
	position: absolute;
	top: -14px;
	left: 20px;
	z-index: 2;
	display: inline-block;
	background: var(--sacp-pf-color-primary);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--sacp-pf-radius-button);
	padding: 6px 14px 7px;
}

.sacp-pf-match--secondary .sacp-pf-match__badge {
	background: var(--sacp-pf-color-accent);
}

.sacp-pf-match__hero {
	position: relative;
	z-index: 1;
}

.sacp-pf-match__title {
	font-size: 32px;
	font-family: "Koulen", "Lucida Sans Unicode", sans-serif;
	margin: 0 0 8px;
	letter-spacing: 5%;
	line-height: 1.25;
	font-weight: 400;
}

.sacp-pf-match__blurb {
	margin: 8px 0 0;
	max-width: 366px;
	width: 100%;
}

.sacp-pf-match__body {
	position: relative;
	z-index: 1;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	flex: 1;
}

.sacp-pf-match__subheading {
	font-family: 'Koulen', "Lucida Sans Unicode", sans-serif;
	font-size: 14px;
	letter-spacing: 5%;
	text-transform: uppercase;
	color: #BF862D;
	margin: 0 0 5px;
	line-height: 1.25;
}

/* "Why this matches you" + "A day in the life" share one panel */

.sacp-pf-match__info {
	display: grid;
	gap: 8px;
}

.sacp-pf-match__day {
	max-width: 206px;
	width: 100%;
}

.sacp-pf-match__day-text {
	margin: 0;
	color: var(--sacp-pf-color-text);
	font-size: 14px;
	max-width: 206px;
	width: 100%;
}

.sacp-pf-match__partner {
	background: rgba(11, 23, 41, 0.5);
	border: 1px solid #0C263F;
	border-radius: 20px;
	padding: 20px 25px 35px;
}

.sacp-pf-match__partner-label {
	font-family: 'Koulen', "Lucida Sans Unicode", sans-serif;
	display: block;
	font-size: 14px;
	letter-spacing: 5%;
	text-transform: uppercase;
	color: #BF862D;
	margin-bottom: 15px;
}

.sacp-pf-match--secondary .sacp-pf-match__partner-label {
	color: var(--sacp-pf-color-accent);
}

.sacp-pf-match__partner-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	align-items: center;
}

.sacp-pf-match__partner-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.sacp-pf-match__partner-logo {
	width: 69px;
	height: 69px;
	flex-shrink: 0;
	object-fit: contain;
}

.sacp-pf-match__partner-name {
	font-weight: 700;
}

.sacp-pf-match__partner-desc {
	color: var(--sacp-pf-color-text-muted);
	font-size: 0.9rem;
	margin: 0;
}

.sacp-pf-match__explore {
	margin: 0 18px 18px;
	text-align: center;
}

/* Checklist ("Why this matches you")                                   */

.sacp-pf-checklist {
	display: grid;
	gap: 6px;
}

.sacp-pf-checklist__item {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
}

.sacp-pf-checklist__item::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: #00FF00;
	font-weight: 700;
}

/* Pills (subjects, routes, tags, expertise)                            */

.sacp-pf-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sacp-pf-pills__item {
	background: var(--sacp-pf-color-bg);
	border: 1px solid var(--sacp-pf-color-text-muted);
	color: var(--sacp-pf-color-text);
	border-radius: var(--sacp-pf-radius-button);
	font-size: 12px;
	padding: 4px 12px;
	white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/* Results: shared section heading                                      */
/* ------------------------------------------------------------------ */

.sacp-pf-section-heading {
	font-family: 'Koulen', "Lucida Sans Unicode", sans-serif;
	font-size: 40px;
	font-weight: 400;
	margin: 0 0 50px;
	max-width: 744px;
	width: 100%;
}

.sacp-pf-results section {
	margin-bottom: 125px;
}

.sacp-pf-results section:last-child {
	margin-bottom: 50px;
}

/* Insights accordion                                                   */

.sacp-pf-insights__eyebrow {
	color: var(--sacp-pf-color-accent);
	font-size: 16px;
	margin: 0 0 18px;
}

.sacp-pf-insights__item {
	background: var(--sacp-pf-color-surface);
	border-radius: var(--sacp-pf-radius-card);
	margin-bottom: 8px;
	overflow: hidden;
}

.sacp-pf-insights__item[open] .sacp-pf-insights__summary {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sacp-pf-insights__summary {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 13px 16px;
	cursor: pointer;
	list-style: none;
}

.sacp-pf-insights__summary::-webkit-details-marker {
	display: none;
}

.sacp-pf-insights__summary:focus-visible {
	outline: 2px solid var(--sacp-pf-color-accent);
	outline-offset: -2px;
}

.sacp-pf-insights__number {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(191, 134, 45, 0.25);
	border: 1px solid rgba(191, 134, 45, 0.5);
	border-radius: 15px;
	color: var(--sacp-pf-color-primary);
	font-weight: 700;
	font-size: 20px;
	padding: 13px 12px;
	line-height: 1.2;
}

.sacp-pf-insights__label {
	flex: 1;
	font-weight: 400;
	font-size: 18px;
}

.sacp-pf-insights__controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.sacp-pf-insights__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(191, 134, 45, 0.15);
	color: var(--sacp-pf-color-primary);
}

.sacp-pf-insights__icon svg {
	width: 16px;
	height: 16px;
}

/* +/- toggle: two bars forming a plus; the vertical bar hides on [open],
   leaving just the horizontal one behind, i.e. a minus. */

.sacp-pf-insights__toggle {
	position: relative;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(191, 134, 45, 0.15);
}

.sacp-pf-insights__toggle::before,
.sacp-pf-insights__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--sacp-pf-color-primary);
	transform: translate(-50%, -50%);
}

.sacp-pf-insights__toggle::before {
	width: 12px;
	height: 2px;
}

.sacp-pf-insights__toggle::after {
	width: 2px;
	height: 12px;
}

.sacp-pf-insights__item[open] .sacp-pf-insights__toggle::after {
	opacity: 0;
}

.sacp-pf-insights__body {
	padding: 35px 70px;
	color: var(--sacp-pf-color-text);
}

.sacp-pf-insights__body p {
	margin-bottom: 8px;
}

/* Employers — mirrors the theme's .wcl-sc-company-card (see
   template-parts/supporting-companies/company-card.php and
   scss/sections/_supporting-companies-archive.scss) so partner cards read
   like the rest of the site's company directory.                        */

.sacp-pf-employers__grid {
	display: grid;
	gap: 16px;
}

.sacp-pf-partner {
	background: #132748;
	border-radius: 20px;
	padding: 10px 10px 30px;
	display: flex;
	flex-direction: column;
	transition: transform var(--sacp-pf-motion-duration) ease, box-shadow var(--sacp-pf-motion-duration) ease;
}

.sacp-pf-partner:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.sacp-pf-partner__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	border-radius: 25px;
	background: rgba(255, 255, 255, 0.02);
	padding: 20px 0;
	margin-bottom: 25px;
}

.sacp-pf-partner__logo {
	max-height: 80px;
	width: auto;
	object-fit: contain;
}

.sacp-pf-partner__content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 0 15px;
}

.sacp-pf-partner__name {
	font-size: 16px;
	font-weight: 700;
	color: var(--sacp-pf-color-text);
	margin: 0 0 10px;
}

.sacp-pf-partner__tags,
.sacp-pf-partner__expertise {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sacp-pf-partner__tags {
	margin-bottom: 12px;
}

.sacp-pf-partner__tag {
	display: inline-block;
	padding: 2px 10px;
	border: 1px solid var(--sacp-pf-color-primary);
	border-radius: var(--sacp-pf-radius-button);
	color: var(--sacp-pf-color-primary);
	font-size: 11px;
	line-height: 1.6;
}

.sacp-pf-partner__desc {
	color: #ddd;
	font-size: 13px;
	line-height: 1.6;
	margin: 0 0 14px;
	flex: 1;
}

.sacp-pf-partner__expertise {
	margin-bottom: 18px;
}

.sacp-pf-partner__expertise-tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 6px;
	background: rgba(191, 134, 45, 0.15);
	color: var(--sacp-pf-color-primary);
	font-size: 11px;
}

.sacp-pf-partner__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: auto;
}

.sacp-pf-partner__actions .sacp-pf-button {
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 13px;
	gap: 4px;
}

.sacp-pf-partner__actions .sacp-pf-button--ghost {
	border-color: rgba(255, 255, 255, 0.35);
}

.sacp-pf-partner__actions .sacp-pf-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
}

/* Opportunities placeholder (ships config-off)                         */

.sacp-pf-opps__empty {
	color: var(--sacp-pf-color-text-muted);
}

/* Score chart                                                          */
.sacp-pf-chart {
	margin-bottom: 100px;
	margin-top: 100px;
}

.sacp-pf-chart__eyebrow {
	color: var(--sacp-pf-color-accent);
	font-size: 16px;
	margin: 0 0 18px;
}

.sacp-pf-chart__rows-wrapper {
	background-color: #132748;
	padding: 40px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.sacp-pf-chart__row {
	display: grid;
	grid-template-columns: minmax(110px, 240px) 1fr 40px;
	align-items: center;
	gap: 20px;
}

.sacp-pf-chart__label {
	font-size: 14px;
	line-height: 1.2;
}

.sacp-pf-chart__track {
	background: #052038;
	border-radius: 100px;
	height: 10px;
	overflow: hidden;

}

.sacp-pf-chart__bar {
	display: block;
	height: 100%;
	background: #BF862D;
	border-radius: 100px;
	transition: width var(--sacp-pf-motion-duration) ease;
}

.sacp-pf-chart__value {
	text-align: right;
	font-size: 0.88rem;
	color: var(--sacp-pf-color-text-muted);
}

/* Next steps                                                           */

.sacp-pf-next__grid {
	display: grid;
	gap: 24px;
	margin-bottom: 50px;
}

.sacp-pf-next__card {
	display: flex;
	align-items: center;
	gap: 23px;
	background: var(--sacp-pf-color-surface);
	border: 1px solid transparent;
	border-radius: var(--sacp-pf-radius-card);
	color: var(--sacp-pf-color-text);
	text-decoration: none;
	padding: 25px 30px;
	transition: border-color var(--sacp-pf-motion-duration) ease;
}

.sacp-pf-next__card:hover {
	border-color: var(--sacp-pf-color-primary);
}

.sacp-pf-next__card:focus-visible {
	outline: 2px solid var(--sacp-pf-color-accent);
	outline-offset: 2px;
}

/* The circle behind each icon is now drawn inside the SVG itself (a
   translucent currentColor shape) rather than as a CSS background, so every
   icon — asset-provided or fallback — draws its own backdrop consistently. */
.sacp-pf-next__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--sacp-pf-color-accent);
	flex-shrink: 0;
}

.sacp-pf-next__icon svg {
	width: 44px;
	height: 44px;
}

.sacp-pf-next__body {
	flex: 1;
	min-width: 0;
}

.sacp-pf-next__title {
	font-size: 0.95rem;
	margin: 0 0 2px;
}

.sacp-pf-next__desc {
	font-size: 0.82rem;
	color: var(--sacp-pf-color-text-muted);
	margin: 0;
}

.sacp-pf-next__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--sacp-pf-color-primary);
	color: var(--sacp-pf-color-primary);
	flex-shrink: 0;
}

.sacp-pf-next__arrow svg {
	width: 16px;
	height: 16px;
}

/* Share + email — a second, separate grid below the CTA grid so their
   taller cards don't stretch the CTA row via grid auto row-sizing         */

.sacp-pf-next__action-grid {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}

.sacp-pf-next__card--action {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	background: #081B30;
}

.sacp-pf-next__card--action .sacp-pf-next__desc {
	margin-bottom: 10px;
}

.sacp-pf-share__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.sacp-pf-email__form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: flex-end;
}

.sacp-pf-email__label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--sacp-pf-color-text-muted);
	font-size: 0.9rem;
}

.sacp-pf-email__input {
	background: var(--sacp-pf-color-surface);
	border: 1px solid var(--sacp-pf-color-text-muted);
	border-radius: var(--sacp-pf-radius-button);
	color: var(--sacp-pf-color-text);
	padding: 16px 20px;
	min-width: 260px;
}

.sacp-pf-email__input:focus-visible {
	outline: 2px solid var(--sacp-pf-color-accent);
	outline-offset: 2px;
}

.sacp-pf-email__status {
	flex-basis: 100%;
	margin: 0;
	font-size: 0.85rem;
	min-height: 1em;
}

.sacp-pf-email__status.is-success {
	color: var(--sacp-pf-color-success);
}

.sacp-pf-email__status.is-error {
	color: #F87171;
}


/* ------------------------------------------------------------------ */
/* Questions                                                          */
/* ------------------------------------------------------------------ */
.sacp-pf-question {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #132748;
	max-width: 1296px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 25px;
	margin-bottom: 50px;
	margin-top: 50px;
}

.sacp-pf-question__container.wcl-container {
	max-width: 1000px;
}

.sacp-pf-match__why,
.sacp-pf-match__day {
	border: 1px solid #0C263F;
	padding: 20px 25px 20px;
	background: rgba(11, 23, 41, 0.5);
	border-radius: 20px;
}

/* ------------------------------------------------------------------ */
/* Breakpoints                                                          */
/* ------------------------------------------------------------------ */
@media (min-width: 768px) {

	.sacp-pf-results__matches-grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.sacp-pf-match__info {
		grid-template-columns: 1.5fr 1fr;
	}



	.sacp-pf-employers__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.sacp-pf-next__grid {
		grid-template-columns: 1fr 1fr;
	}

	.sacp-pf-next__action-grid {
		grid-template-columns: 1fr 1fr;
	}

	.sacp-pf-start.has-bg {
		padding: 190px 0 80px;
	}

	.sacp-pf-steps__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.sacp-pf-start.has-bg {
		padding: 234px 0 107px;
	}
}

@media (max-width: 1200px) {
	.sacp-pf-results__heading {
		font-size: 46px;
	}

	.sacp-pf-question__title {
		font-size: 32px;
	}

	p.sacp-pf-question__help {
		margin-bottom: 35px;
	}
}

@media (max-width: 768px) {
	.sacp-pf-app {
		padding: 0px 20px;
	}

	.sacp-pf-button {
		padding: 8px 16px;
	}

	.sacp-pf-results__heading {
		font-size: 32px;
	}

	.sacp-pf-answer {
		padding: 12px 14px;
	}

	.sacp-pf-question__title {
		font-size: 28px;
	}

	p.sacp-pf-question__help {
		margin-bottom: 25px;
	}

	.sacp-pf-insights__label {
		font-size: 14px;
	}

	.sacp-pf-match {
		padding: 35px 25px 30px;
	}

	.sacp-pf-results__matches-grid {
		gap: 30px;
	}

	.sacp-pf-match__day {
		max-width: 100%;
	}

	.sacp-pf-match__day-text {
		max-width: 100%;
	}

	.sacp-pf-results section {
		margin-bottom: 50px;
	}

	.sacp-pf-section-heading {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.sacp-pf-progress__category {
		font-size: 13px;
	}

	.sacp-pf-question {
		padding: 25px 0;
	}

	.sacp-pf-progress__count {
		font-size: 13px;
	}

	.sacp-pf-button {
		font-size: 14px;
	}

	.sacp-pf-steps {
		margin-top: 50px;
	}

	.sacp-pf-start__heading {
		font-size: 32px;
	}

	.sacp-pf-progress {
		margin-bottom: 20px;
	}
}

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

@media (prefers-reduced-motion: reduce) {

	.sacp-pf-button,
	.sacp-pf-answer,
	.sacp-pf-progress__fill,
	.sacp-pf-chart__bar,
	.sacp-pf-next__card,
	.sacp-pf-partner {
		transition: none;
	}
}