/*
 * Pilot Studios — About page
 * Every colour, font and rhythm value is a custom property on .psa-about so
 * Elementor's Style tab (and any theme) can re-skin the block without touching
 * this file. All selectors are scoped to .psa-about so nothing leaks into the
 * surrounding theme.
 */

.psa-about {
	/* palette */
	--psa-accent: #E0A94A;
	--psa-accent-hi: #F0C784;
	--psa-accent-soft: rgba(224, 169, 74, 0.35);
	--psa-accent-faint: rgba(224, 169, 74, 0.07);
	--psa-bg: #0A0A0C;
	--psa-bg-alt: #0C0C0F;
	--psa-surface: #111114;
	--psa-text: #ECE9E2;
	--psa-text-2: #C6C2B8;
	--psa-muted: #9A968D;
	--psa-dim: #8F8B81;
	--psa-faint: #7C7A72;
	--psa-line: rgba(255, 255, 255, 0.08);
	--psa-line-2: rgba(255, 255, 255, 0.10);

	/* Text groups the Style tab can recolour independently. */
	--psa-h2-color: var(--psa-text);
	--psa-card-title: var(--psa-text);
	--psa-statement: var(--psa-text);

	/* Image crops, selectable from the Style tab. */
	--psa-ratio-hero: 16 / 7;
	--psa-ratio-approach: 4 / 5;
	--psa-ratio-team: 3 / 4;

	/* type */
	--psa-font-head: 'Bricolage Grotesque', Georgia, serif;
	--psa-font-body: 'Instrument Sans', system-ui, -apple-system, sans-serif;

	/* rhythm */
	--psa-wrap: 1200px;
	--psa-gutter: clamp(20px, 5vw, 72px);
	--psa-section-y: clamp(72px, 9vw, 140px);
	--psa-nav-h: 64px;

	position: relative;
	overflow-x: clip;
	background: var(--psa-bg);
	color: var(--psa-text);
	font-family: var(--psa-font-body);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.psa-about *,
.psa-about *::before,
.psa-about *::after {
	box-sizing: border-box;
}

.psa-about p,
.psa-about h1,
.psa-about h2,
.psa-about h3 {
	margin: 0;
	/* Themes routinely colour headings globally; win that without !important. */
	color: var(--psa-text);
}

/*
 * NOTE ON SPECIFICITY
 * Scoped to body copy on purpose. A blanket `.psa-about a` rule is (0,1,1),
 * which outranks single-class component rules such as `.psa-btn--solid`
 * (0,1,0) - that is what once painted the solid CTA button gold-on-gold - and
 * it also repaints links inside embedded shortcodes and Elementor templates,
 * overriding the colours those bring with them. Component links below each set
 * their own colour explicitly instead.
 */
.psa-about p a,
.psa-about li a {
	color: var(--psa-accent);
	text-decoration: none;
	transition: color 0.2s ease;
}

.psa-about p a:hover,
.psa-about p a:focus-visible,
.psa-about li a:hover,
.psa-about li a:focus-visible {
	color: var(--psa-accent-hi);
}

.psa-about ::selection {
	background: var(--psa-accent);
	color: var(--psa-bg);
}

.psa-about :focus-visible {
	outline: 2px solid var(--psa-accent);
	outline-offset: 3px;
}

.psa-about .psa-accent {
	color: var(--psa-accent);
}

/* ---- shared layout ------------------------------------------------------ */

.psa-wrap {
	max-width: var(--psa-wrap);
	margin: 0 auto;
	padding-inline: var(--psa-gutter);
}

.psa-wrap--narrow {
	max-width: 900px;
}

.psa-section {
	padding-top: var(--psa-section-y);
	padding-bottom: var(--psa-section-y);
	border-top: 1px solid var(--psa-line);
}

.psa-section--alt {
	background: var(--psa-bg-alt);
}

.psa-head {
	max-width: 680px;
	margin-bottom: clamp(40px, 5vw, 60px);
}

.psa-head--narrow {
	max-width: 640px;
}

.psa-about .psa-kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--psa-accent);
	margin-bottom: 22px;
}

.psa-kicker--sm {
	font-size: 11px;
	letter-spacing: 0.2em;
	margin-bottom: 18px;
}

.psa-about .psa-h2 {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.04;
	letter-spacing: -0.02em;
	text-wrap: balance;
	color: var(--psa-h2-color);
}

.psa-head .psa-h2 + .psa-sub {
	margin-top: 18px;
}

.psa-about .psa-sub {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--psa-dim);
}

.psa-about .psa-lead {
	font-size: 1.08rem;
	line-height: 1.62;
	color: var(--psa-text-2);
	margin-top: 26px;
	text-wrap: pretty;
}

.psa-about .psa-body {
	font-size: 1.08rem;
	line-height: 1.62;
	color: var(--psa-dim);
	margin-top: 20px;
	text-wrap: pretty;
}

/* ---- image frames + placeholder slots ----------------------------------- */

.psa-frame {
	position: relative;
	border: 1px solid var(--psa-line-2);
	border-radius: 4px;
	overflow: hidden;
	background: #16161A;
}

.psa-frame--16x7 { aspect-ratio: var(--psa-ratio-hero); }
.psa-frame--4x5  { aspect-ratio: var(--psa-ratio-approach); }
.psa-frame--3x4  { aspect-ratio: var(--psa-ratio-team); }

.psa-frame__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.psa-slot {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	background:
		repeating-linear-gradient(
			45deg,
			rgba(255, 255, 255, 0.02) 0 10px,
			transparent 10px 20px
		),
		#16161A;
}

.psa-about .psa-slot__label {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	color: var(--psa-faint);
}

/* ---- sticky nav --------------------------------------------------------- */

.psa-nav {
	position: sticky;
	top: var(--psa-nav-offset, 0px);
	z-index: 50;
	display: flex;
	align-items: center;
	gap: 32px;
	height: var(--psa-nav-h);
	padding: 0 clamp(20px, 4vw, 56px);
	background: rgba(10, 10, 12, 0.72);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--psa-line);
}

.psa-nav__brand {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin-inline-end: auto;
	flex-shrink: 0;
}

.psa-about .psa-nav__brand-1 {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.02em;
	color: var(--psa-text);
}

.psa-about .psa-nav__brand-2 {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--psa-faint);
}

.psa-nav__links {
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	scrollbar-width: none;
}

.psa-nav__links::-webkit-scrollbar {
	display: none;
}

.psa-about .psa-nav__link {
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 4px 0;
	white-space: nowrap;
	color: var(--psa-dim);
}

.psa-about .psa-nav__link:hover,
.psa-about .psa-nav__link.is-active {
	color: var(--psa-accent);
}

.psa-about .psa-nav__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border: 1px solid var(--psa-accent);
	border-radius: 2px;
	color: var(--psa-accent);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.psa-about .psa-nav__cta:hover,
.psa-about .psa-nav__cta:focus-visible {
	background: var(--psa-accent);
	color: var(--psa-bg);
}

/* ---- hero --------------------------------------------------------------- */

.psa-hero {
	position: relative;
	padding: clamp(56px, 10vw, 120px) var(--psa-gutter) clamp(48px, 6vw, 80px);
}

.psa-about .psa-hero__flightpath {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	pointer-events: none;
	color: var(--psa-accent);
}

.psa-hero__flightpath path {
	animation: psa-dashmove 40s linear infinite;
}

.psa-hero__inner {
	max-width: var(--psa-wrap);
	margin: 0 auto;
	position: relative;
}

.psa-badge {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 7px 14px 7px 7px;
	border: 1px solid var(--psa-accent-soft);
	border-radius: 100px;
	margin-bottom: 34px;
}

.psa-about .psa-badge__code {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	background: var(--psa-accent);
	color: var(--psa-bg);
	border-radius: 100px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.psa-about .psa-badge__text {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #B7B3A8;
}

.psa-about .psa-hero__title {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(2.4rem, 6.4vw, 5.4rem);
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin-bottom: 28px;
	max-width: 15ch;
	text-wrap: balance;
	color: var(--psa-h2-color);
}

.psa-hero__cols {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: clamp(24px, 5vw, 72px);
	align-items: end;
	margin-top: 44px;
}

.psa-about .psa-hero__intro {
	font-size: clamp(1.02rem, 1.5vw, 1.28rem);
	line-height: 1.6;
	color: var(--psa-text-2);
	max-width: 60ch;
	text-wrap: pretty;
}

.psa-hero__aside {
	border-inline-start: 1px solid var(--psa-line-2);
	padding-inline-start: 24px;
}

.psa-hero__aside .psa-kicker {
	font-size: 13px;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}

.psa-about .psa-hero__aside-text {
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--psa-dim);
}

.psa-hero .psa-frame {
	margin-top: clamp(40px, 5vw, 64px);
}

/* ---- stats band --------------------------------------------------------- */

.psa-stats {
	border-top: 1px solid var(--psa-line);
	border-bottom: 1px solid var(--psa-line);
	background: var(--psa-bg-alt);
}

.psa-stats__grid {
	max-width: var(--psa-wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psa-stat {
	padding: clamp(28px, 4vw, 52px) clamp(18px, 2.6vw, 36px);
	border-inline-end: 1px solid rgba(255, 255, 255, 0.07);
}

.psa-stat:last-child {
	border-inline-end: 0;
}

.psa-about .psa-stat__value {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
	color: var(--psa-accent);
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.psa-about .psa-stat__label {
	margin-top: 12px;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--psa-muted);
}

/* Reveal-on-scroll: only armed once JS confirms it can un-arm it again. */
.psa-about[data-psa-stats-armed='1'] .psa-stat {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--psa-stat-delay, 0s);
}

.psa-about[data-psa-stats-armed='1'] .psa-stats.is-visible .psa-stat {
	opacity: 1;
	transform: none;
}

/* ---- why the name ------------------------------------------------------- */

.psa-ideas {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
}

.psa-idea {
	border: 1px solid var(--psa-line-2);
	border-radius: 4px;
	padding: clamp(28px, 3vw, 44px);
	background: var(--psa-surface);
}

.psa-about .psa-idea__num {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1;
	color: var(--psa-accent-soft);
	margin-bottom: 22px;
}

.psa-about .psa-idea__title {
	font-family: var(--psa-font-head);
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: -0.01em;
	margin-bottom: 14px;
	color: var(--psa-card-title);
}

.psa-about .psa-idea__text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--psa-muted);
	text-wrap: pretty;
}

/* ---- approach ----------------------------------------------------------- */

.psa-approach__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

/* ---- capabilities ------------------------------------------------------- */

.psa-caps {
	display: grid;
	grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 48px);
	align-items: start;
}

.psa-caps__tabs {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.psa-about .psa-caps__tab {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	text-align: start;
	cursor: pointer;
	padding: 16px 18px;
	border: 1px solid var(--psa-line);
	border-radius: 3px;
	background: transparent;
	color: var(--psa-muted);
	font-family: var(--psa-font-body);
	font-size: 0.98rem;
	font-weight: 500;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.psa-about .psa-caps__tab:hover {
	color: var(--psa-text-2);
	border-color: rgba(255, 255, 255, 0.18);
}

.psa-about .psa-caps__tab.is-active {
	border-color: rgba(224, 169, 74, 0.4);
	background: var(--psa-accent-faint);
	color: var(--psa-text);
	font-weight: 600;
}

.psa-about .psa-caps__no {
	font-size: 11px;
	font-weight: 600;
	color: #57554F;
	letter-spacing: 0.1em;
	width: 22px;
	flex-shrink: 0;
}

.psa-about .psa-caps__tab.is-active .psa-caps__no {
	color: var(--psa-accent);
}

.psa-caps__label {
	flex: 1;
}

.psa-about .psa-caps__arrow {
	color: transparent;
	/* scaleX flips the glyph in RTL; the translate then slides it
	   outward in whichever direction that is. */
	transform: scaleX(var(--psa-dir, 1)) translateX(-6px);
	transition: transform 0.25s ease, color 0.25s ease;
}

.psa-about .psa-caps__tab.is-active .psa-caps__arrow {
	color: var(--psa-accent);
	transform: scaleX(var(--psa-dir, 1));
}

.psa-caps__panel {
	border: 1px solid rgba(224, 169, 74, 0.25);
	border-radius: 4px;
	padding: clamp(30px, 3.5vw, 52px);
	background: linear-gradient(150deg, #131316, #0E0E11);
	min-height: 280px;
	position: relative;
}

.psa-caps__panel[hidden] {
	display: none;
}

.psa-about .psa-caps__ghost {
	position: absolute;
	top: clamp(30px, 3.5vw, 52px);
	inset-inline-end: clamp(30px, 3.5vw, 52px);
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1;
	color: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.psa-about .psa-caps__title {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
	max-width: 16ch;
	color: var(--psa-card-title);
}

.psa-about .psa-caps__deliver-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--psa-faint);
	margin-bottom: 12px;
}

.psa-about .psa-caps__deliver {
	font-size: 1.15rem;
	line-height: 1.6;
	color: var(--psa-text-2);
	max-width: 52ch;
	text-wrap: pretty;
}

/* ---- mission & vision --------------------------------------------------- */

.psa-mission {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 64px);
}

.psa-mission__col {
	position: relative;
	padding-top: 34px;
}

.psa-mission__col::before {
	content: '';
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 44px;
	height: 3px;
	background: var(--psa-accent);
}

.psa-mission__col .psa-kicker {
	margin-bottom: 20px;
}

.psa-about .psa-mission__text {
	font-family: var(--psa-font-head);
	font-weight: 500;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--psa-statement);
	text-wrap: pretty;
}

/* ---- why work with us --------------------------------------------------- */

/*
 * Three interchangeable layouts over ONE markup structure
 * (.psa-why__no + .psa-why__title + .psa-why__text per cell), picked with a
 * modifier class from the Style tab:
 *
 *   .psa-why--grid      bordered card grid   (original)
 *   .psa-why--rows      numbered ledger rows
 *   .psa-why--timeline  vertical rail with nodes
 */

.psa-about .psa-why__title {
	font-family: var(--psa-font-head);
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	color: var(--psa-card-title);
}

.psa-about .psa-why__text {
	font-size: 0.98rem;
	line-height: 1.58;
	color: var(--psa-dim);
	text-wrap: pretty;
}

/* --- style 1: card grid -------------------------------------------------- */

.psa-why--grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--psa-line);
	border: 1px solid var(--psa-line);
}

.psa-why--grid .psa-why__cell {
	background: var(--psa-bg);
	padding: clamp(28px, 3vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.psa-about .psa-why--grid .psa-why__no {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--psa-accent);
}

/* --- style 2: numbered rows ---------------------------------------------- */

.psa-why--rows {
	border-top: 1px solid var(--psa-line);
}

.psa-why--rows .psa-why__cell {
	display: grid;
	grid-template-columns: minmax(84px, 132px) minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(18px, 4vw, 56px);
	align-items: center;
	padding: clamp(22px, 3vw, 36px) clamp(14px, 2vw, 26px);
	border-bottom: 1px solid var(--psa-line);
	border-inline-start: 3px solid transparent;
	transition: background-color 0.25s ease, border-inline-start-color 0.25s ease;
}

.psa-why--rows .psa-why__cell:hover,
.psa-why--rows .psa-why__cell:focus-within {
	background: rgba(255, 255, 255, 0.022);
	border-inline-start-color: var(--psa-accent);
}

.psa-about .psa-why--rows .psa-why__no {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(2.4rem, 5vw, 3.9rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.15);
	transition: color 0.25s ease;
}

.psa-why--rows .psa-why__cell:hover .psa-why__no,
.psa-why--rows .psa-why__cell:focus-within .psa-why__no {
	color: var(--psa-accent);
}

.psa-about .psa-why--rows .psa-why__title {
	font-size: clamp(1.1rem, 1.9vw, 1.45rem);
	line-height: 1.2;
}

/* --- style 3: timeline rail ---------------------------------------------- */

.psa-why--timeline {
	--psa-rail: clamp(32px, 5vw, 58px);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(26px, 3.4vw, 46px);
	padding-inline-start: var(--psa-rail);
}

.psa-why--timeline::before {
	content: '';
	position: absolute;
	inset-inline-start: 6px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: linear-gradient(180deg, var(--psa-accent), rgba(224, 169, 74, 0.1));
}

.psa-why--timeline .psa-why__cell {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

/* Node sits on the rail: the cell's content box starts at --psa-rail, so
   pulling back by exactly that lands the dot's centre on the 2px line. */
.psa-why--timeline .psa-why__cell::before {
	content: '';
	position: absolute;
	inset-inline-start: calc(-1 * var(--psa-rail));
	top: 6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--psa-bg);
	border: 2px solid var(--psa-accent);
	transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.psa-why--timeline .psa-why__cell:hover::before {
	background: var(--psa-accent);
	box-shadow: 0 0 0 5px rgba(224, 169, 74, 0.14);
}

.psa-about .psa-why--timeline .psa-why__no {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	color: var(--psa-accent);
}

.psa-about .psa-why--timeline .psa-why__title {
	font-size: clamp(1.2rem, 2.1vw, 1.6rem);
}

.psa-about .psa-why--timeline .psa-why__text {
	max-width: 62ch;
}

/* ---- team --------------------------------------------------------------- */

.psa-team {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 22px);
}

.psa-about .psa-team__name {
	font-family: var(--psa-font-head);
	font-weight: 600;
	font-size: 1.15rem;
	margin: 16px 0 5px;
	color: var(--psa-card-title);
}

.psa-about .psa-team__role {
	font-size: 0.85rem;
	line-height: 1.4;
	color: var(--psa-dim);
}

.psa-team__tbd {
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: 4px;
	aspect-ratio: var(--psa-ratio-team);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
	gap: 10px;
}

.psa-about .psa-team__tbd-plus {
	font-size: 1.6rem;
	color: rgba(224, 169, 74, 0.5);
}

.psa-about .psa-team__tbd-title {
	font-size: 0.86rem;
	line-height: 1.4;
	color: #6E6C64;
}

.psa-about .psa-team__tbd-sub {
	font-size: 0.78rem;
	line-height: 1.4;
	color: #57554F;
}

/* ---- faq ---------------------------------------------------------------- */

.psa-faq {
	border-top: 1px solid var(--psa-line-2);
}

.psa-faq__item {
	border-bottom: 1px solid var(--psa-line-2);
}

.psa-faq__heading {
	margin: 0;
	font: inherit;
}

.psa-about .psa-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: clamp(20px, 2.4vw, 30px) 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: start;
	color: var(--psa-text-2);
	font-family: var(--psa-font-head);
	font-weight: 600;
	font-size: clamp(1.05rem, 1.8vw, 1.4rem);
	letter-spacing: -0.01em;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.psa-about .psa-faq__item.is-open .psa-faq__q,
.psa-about .psa-faq__q:hover {
	color: var(--psa-card-title);
}

.psa-faq__qt {
	flex: 1;
}

.psa-about .psa-faq__icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--psa-accent);
	font-size: 1.4rem;
	transition: transform 0.28s ease;
}

.psa-faq__item.is-open .psa-faq__icon {
	transform: rotate(45deg);
}

.psa-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	opacity: 0;
	visibility: hidden;
	transition: grid-template-rows 0.35s ease, opacity 0.3s ease, visibility 0s linear 0.35s;
}

.psa-faq__item.is-open .psa-faq__panel {
	grid-template-rows: 1fr;
	opacity: 1;
	visibility: visible;
	transition: grid-template-rows 0.35s ease, opacity 0.3s ease, visibility 0s;
}

.psa-faq__panel-inner {
	overflow: hidden;
}

.psa-about .psa-faq__a {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--psa-muted);
	padding-block: 0 clamp(24px, 2.6vw, 34px);
	padding-inline: 0 50px;
	text-wrap: pretty;
}

/* ---- final cta ---------------------------------------------------------- */

.psa-cta {
	border-top: 1px solid rgba(224, 169, 74, 0.3);
	background: linear-gradient(180deg, var(--psa-bg-alt), var(--psa-bg));
}

.psa-cta__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: clamp(72px, 10vw, 150px) var(--psa-gutter);
	text-align: center;
}

.psa-cta__inner .psa-kicker {
	margin-bottom: 26px;
}

.psa-about .psa-cta__title {
	font-family: var(--psa-font-head);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin-bottom: 26px;
	text-wrap: balance;
	color: var(--psa-h2-color);
}

.psa-about .psa-cta__text {
	font-size: clamp(1.02rem, 1.5vw, 1.2rem);
	line-height: 1.6;
	color: var(--psa-muted);
	max-width: 60ch;
	margin: 0 auto 44px;
	text-wrap: pretty;
}

.psa-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-bottom: 52px;
}

.psa-about .psa-btn {
	display: inline-flex;
	align-items: center;
	padding: 16px 30px;
	border-radius: 2px;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.01em;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.psa-about .psa-btn--solid {
	background: var(--psa-accent);
	color: var(--psa-bg);
	border: 1px solid var(--psa-accent);
}

.psa-about .psa-btn--solid:hover,
.psa-about .psa-btn--solid:focus-visible {
	background: var(--psa-accent-hi);
	border-color: var(--psa-accent-hi);
	color: var(--psa-bg);
}

.psa-about .psa-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--psa-text);
}

.psa-about .psa-btn--ghost:hover,
.psa-about .psa-btn--ghost:focus-visible {
	border-color: var(--psa-accent);
	color: var(--psa-accent);
}

.psa-cta__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 48px;
	justify-content: center;
	padding-top: 36px;
	border-top: 1px solid var(--psa-line);
}

.psa-contact {
	text-align: start;
}

.psa-about .psa-contact__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--psa-faint);
	margin-bottom: 6px;
}

.psa-about .psa-contact__value {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--psa-text);
}

.psa-about .psa-contact__value:hover,
.psa-about .psa-contact__value:focus-visible {
	color: var(--psa-accent);
}

/* ---- embedded slots (Elementor template / shortcode) --------------------- */

/*
 * Host for third-party markup — a saved Elementor template in the crew slot, or
 * a shortcode standing in for a CTA button. Deliberately unopinionated: width
 * and alignment only, so the embedded widget keeps its own styling.
 */
.psa-slot-embed {
	width: 100%;
}

.psa-slot-embed > .elementor {
	width: 100%;
}

.psa-btn-slot {
	display: inline-flex;
	align-items: center;
}

@media (max-width: 640px) {
	.psa-cta__buttons .psa-btn-slot {
		width: 100%;
		justify-content: center;
	}
}

/* ---- animation ---------------------------------------------------------- */

@keyframes psa-dashmove {
	to {
		stroke-dashoffset: -1400;
	}
}

/* ---- responsive --------------------------------------------------------- */

@media (max-width: 1024px) {
	.psa-caps {
		grid-template-columns: 1fr;
	}

	.psa-caps__tabs {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
		gap: 8px;
		padding-bottom: 4px;
	}

	.psa-caps__tabs::-webkit-scrollbar {
		display: none;
	}

	.psa-caps__tab {
		width: auto;
		flex: 0 0 auto;
		white-space: nowrap;
	}

	.psa-caps__arrow {
		display: none;
	}

	.psa-team {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.psa-why--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Rows: drop the third column, description moves under the title. */
	.psa-why--rows .psa-why__cell {
		grid-template-columns: minmax(64px, 96px) minmax(0, 1fr);
		gap: 6px 22px;
		align-items: start;
	}

	.psa-about .psa-why--rows .psa-why__no {
		grid-row: span 2;
	}
}

@media (max-width: 860px) {
	.psa-hero__cols,
	.psa-approach__grid,
	.psa-mission,
	.psa-ideas {
		grid-template-columns: 1fr;
	}

	.psa-hero__aside {
		border-inline-start: 0;
		border-top: 1px solid var(--psa-line-2);
		padding-inline-start: 0;
		padding-top: 24px;
	}

	.psa-hero__title {
		max-width: 100%;
	}

	.psa-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psa-stat {
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.psa-stat:nth-child(2n) {
		border-inline-end: 0;
	}

	.psa-nav__brand-2 {
		display: none;
	}
}

@media (max-width: 640px) {
	.psa-about {
		--psa-nav-h: 56px;
	}

	.psa-team {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.psa-why--grid {
		grid-template-columns: 1fr;
	}

	.psa-why--rows .psa-why__cell {
		grid-template-columns: minmax(52px, 68px) minmax(0, 1fr);
		gap: 4px 16px;
		padding-inline-start: 12px;
	}

	.psa-nav {
		gap: 18px;
	}

	.psa-about .psa-nav__cta {
		display: none;
	}

	.psa-faq__a {
		padding-inline-end: 0;
	}

	.psa-about .psa-cta__buttons .psa-btn {
		width: 100%;
		justify-content: center;
	}

	.psa-contact {
		text-align: center;
		width: 100%;
	}
}

/* ---- motion / contrast preferences -------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.psa-about *,
	.psa-about *::before,
	.psa-about *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.psa-about[data-psa-stats-armed='1'] .psa-stat {
		opacity: 1;
		transform: none;
	}
}


/* ---- RTL ---------------------------------------------------------------- */

/*
 * Layout mirroring is handled by the logical properties above, which follow the
 * dir attribute on their own. What remains is what logical properties cannot
 * express: glyph direction, the decorative flight path, Arabic typography, and
 * an Arabic-capable font stack.
 */

.psa-about[dir='rtl'],
[dir='rtl'] .psa-about {
	/* Consumed by the capability arrow's scaleX(). */
	--psa-dir: -1;

	/* Bricolage Grotesque and Instrument Sans have no Arabic coverage; Cairo
	   is loaded automatically when the site is RTL. */
	--psa-font-head: 'Cairo', 'Noto Kufi Arabic', 'Segoe UI', Tahoma, sans-serif;
	--psa-font-body: 'Cairo', 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
}

/* The hero flight path reads left-to-right; mirror it so it still flows with
   the text. */
.psa-about[dir='rtl'] .psa-hero__flightpath,
[dir='rtl'] .psa-about .psa-hero__flightpath {
	transform: scaleX(-1);
}

/*
 * Arabic is cursive: tracking pulls joined letterforms apart, and negative
 * tracking crowds them. Reset both wherever the Latin design tracked type.
 */
.psa-about[dir='rtl'] .psa-kicker,
.psa-about[dir='rtl'] .psa-h2,
.psa-about[dir='rtl'] .psa-hero__title,
.psa-about[dir='rtl'] .psa-badge__code,
.psa-about[dir='rtl'] .psa-badge__text,
.psa-about[dir='rtl'] .psa-nav__brand-1,
.psa-about[dir='rtl'] .psa-nav__brand-2,
.psa-about[dir='rtl'] .psa-nav__link,
.psa-about[dir='rtl'] .psa-nav__cta,
.psa-about[dir='rtl'] .psa-stat__value,
.psa-about[dir='rtl'] .psa-idea__title,
.psa-about[dir='rtl'] .psa-caps__no,
.psa-about[dir='rtl'] .psa-caps__title,
.psa-about[dir='rtl'] .psa-caps__deliver-label,
.psa-about[dir='rtl'] .psa-mission__text,
.psa-about[dir='rtl'] .psa-why__no,
.psa-about[dir='rtl'] .psa-why__title,
.psa-about[dir='rtl'] .psa-team__name,
.psa-about[dir='rtl'] .psa-faq__q,
.psa-about[dir='rtl'] .psa-cta__title,
.psa-about[dir='rtl'] .psa-contact__label,
[dir='rtl'] .psa-about .psa-kicker,
[dir='rtl'] .psa-about .psa-h2,
[dir='rtl'] .psa-about .psa-hero__title,
[dir='rtl'] .psa-about .psa-badge__code,
[dir='rtl'] .psa-about .psa-badge__text,
[dir='rtl'] .psa-about .psa-nav__brand-1,
[dir='rtl'] .psa-about .psa-nav__brand-2,
[dir='rtl'] .psa-about .psa-nav__link,
[dir='rtl'] .psa-about .psa-nav__cta,
[dir='rtl'] .psa-about .psa-stat__value,
[dir='rtl'] .psa-about .psa-idea__title,
[dir='rtl'] .psa-about .psa-caps__no,
[dir='rtl'] .psa-about .psa-caps__title,
[dir='rtl'] .psa-about .psa-caps__deliver-label,
[dir='rtl'] .psa-about .psa-mission__text,
[dir='rtl'] .psa-about .psa-why__no,
[dir='rtl'] .psa-about .psa-why__title,
[dir='rtl'] .psa-about .psa-team__name,
[dir='rtl'] .psa-about .psa-faq__q,
[dir='rtl'] .psa-about .psa-cta__title,
[dir='rtl'] .psa-about .psa-contact__label {
	letter-spacing: normal;
}

/* Arabic ascenders/descenders need more room than the Latin scale allowed. */
.psa-about[dir='rtl'] .psa-hero__title,
[dir='rtl'] .psa-about .psa-hero__title {
	line-height: 1.22;
}

.psa-about[dir='rtl'] .psa-h2,
.psa-about[dir='rtl'] .psa-cta__title,
[dir='rtl'] .psa-about .psa-h2,
[dir='rtl'] .psa-about .psa-cta__title {
	line-height: 1.3;
}

.psa-about[dir='rtl'] .psa-caps__title,
[dir='rtl'] .psa-about .psa-caps__title {
	line-height: 1.35;
}

/*
 * Numerals stay LTR even inside Arabic copy, so "<3s" and "JOD 60" keep their
 * intended order.
 *
 * .psa-caps__ghost is deliberately NOT in this list. The logical inset
 * properties resolve against the ELEMENT'S OWN direction, not its containing
 * block's, so setting direction:ltr on an absolutely positioned element flips
 * its inset-inline-end back to the physical right and un-mirrors it. The ghost
 * is a bare two-digit numeral anyway, which needs no bidi help.
 */
.psa-about[dir='rtl'] .psa-stat__value,
.psa-about[dir='rtl'] .psa-why__no,
.psa-about[dir='rtl'] .psa-caps__no,
.psa-about[dir='rtl'] .psa-idea__num,
[dir='rtl'] .psa-about .psa-stat__value,
[dir='rtl'] .psa-about .psa-why__no,
[dir='rtl'] .psa-about .psa-caps__no,
[dir='rtl'] .psa-about .psa-idea__num {
	direction: ltr;
	unicode-bidi: isolate;
}

/* Phone numbers must not be reordered by the bidi algorithm. */
.psa-about[dir='rtl'] .psa-contact__value,
[dir='rtl'] .psa-about .psa-contact__value {
	direction: ltr;
	unicode-bidi: isolate;
	text-align: start;
}
/* ---- Elementor editor ---------------------------------------------------- */

/* The editor renders widgets inside a padded container; keep the sticky nav
   from jumping around while dragging. */
.elementor-editor-active .psa-nav {
	position: relative;
}
