:root {
	--ot-orange: #f3981f;
	--ot-orange-dark: #e57625;
	--ot-orange-light: #ff9242;
	--ot-orange-bright: #ff7a00;
	--ot-black: #131211;
	--ot-white: #ffffff;

	/* Surfaces */
	--ot-bg: #141313;
	--ot-bg-dark: #0b0a09;
	--ot-card-bg: #141414;
	--ot-card-bg-alt: #171615;
	--ot-card-border: #272727;
	--ot-chip-bg: #222222;
	--ot-eyebrow-bg: #201812;
	--ot-eyebrow-border: #63350d;
	--ot-avatar-border: rgba(255, 255, 255, 0.2);

	/* Text */
	--ot-text: #f5f0e6;
	--ot-text-muted: #a8a8a8;
	--ot-text-accent: #ff9242;

	/* Gradients */
	--ot-gradient-brand: linear-gradient(135deg, #f3981f 0%, #e57625 100%);
	--ot-gradient-cta: linear-gradient(103deg, #f3981f 0%, #e57625 100%);

	/* Radii */
	--ot-radius-sm: 10px;
	--ot-radius-btn: 12px;
	--ot-radius: 16px;
	--ot-radius-card: 18px;
	--ot-radius-chip: 26px;
	--ot-radius-pill: 999px;

	/* Shadows */
	--ot-cta-shadow: 0 20px 40px -10px rgba(255, 107, 71, 0.4);
	--ot-card-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);

	/* Typography */
	--ot-font: "Figtree", system-ui, sans-serif;
	--ot-fs-h2: 58px;
	--ot-fs-h3: 28px;
	--ot-fs-stat: 44px;
	--ot-fs-body: 16px;
	--ot-fs-body-sm: 14px;
	--ot-fs-small: 12px;
	--ot-fs-tag: 11px;
	--ot-fw-regular: 400;
	--ot-fw-medium: 500;
	--ot-fw-semibold: 600;
	--ot-fw-bold: 700;
	--ot-tracking-tag: 1.54px;
	--ot-tracking-eyebrow: 2.16px;

	/* Layout */
	--ot-wrapper-max: 1100px;
	--ot-wrapper-gutter: 10px;
	--ot-section-pad-y: 80px;
	--ot-hero-pad-top: 60px;
	--ot-hero-pad-bottom: 60px;
}

@media (min-width: 992px) {
	:root {
		--ot-wrapper-gutter: 20px;
	}
}

.ot-wrapper {
	width: 100%;
	max-width: calc(var(--ot-wrapper-max) + 2 * var(--ot-wrapper-gutter));
	margin-inline: auto;
	padding-inline: var(--ot-wrapper-gutter);
	box-sizing: border-box;
}

body.our-team {
	background: var(--ot-bg);
	color: var(--ot-text);
	font-family: var(--ot-font);
}

body.our-team.ot-menu-open {
	overflow: hidden;
}

/* ---------- Header ---------- */
.ot-header {
	--ot-wrapper-max: 1400px;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(20, 19, 19, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

.ot-header__inner {
	width: 100%;
	max-width: calc(var(--ot-wrapper-max) + 2 * var(--ot-wrapper-gutter));
	margin-inline: auto;
	padding: 10px var(--ot-wrapper-gutter);
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ot-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.ot-header__logo img {
	display: block;
	width: 56px;
	height: 38px;
}

.ot-header__nav {
	display: none;
}

.ot-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 30px;
}

.ot-header__menu-link {
	color: var(--ot-text-muted);
	font-size: 14px;
	font-weight: var(--ot-fw-regular);
	line-height: 0.85;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ot-header__menu-link:hover,
.ot-header__menu-item.is-active .ot-header__menu-link {
	color: var(--ot-text);
}

.ot-header__menu-item--alt .ot-header__menu-link {
	font-weight: var(--ot-fw-medium);
	line-height: 1;
}

.ot-header__actions {
	display: contents;
}

.ot-header__login {
	display: none;
	font-size: 14px;
	font-weight: var(--ot-fw-bold);
	text-align: center;
	text-decoration: none;
	background: linear-gradient(96.91deg, #f3981f 0%, #e57625 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ot-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	background: linear-gradient(92.95deg, #f3981f 0%, #e57625 100%);
	color: var(--ot-black);
	font-size: 12px;
	font-weight: var(--ot-fw-semibold);
	line-height: 1;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 2px 21px 0 rgba(243, 152, 31, 0.39);
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.ot-header__cta:hover,
.ot-header__cta:focus-visible {
	background: linear-gradient(92.95deg, #ffab3c 0%, #ee8436 100%);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	transform: translateY(-1px);
	color: var(--ot-black);
}

.ot-header__toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 24px;
	height: 24px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.ot-header__toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--ot-orange);
	border-radius: 2px;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

.ot-header__toggle.is-open span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.ot-header__toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.ot-header__toggle.is-open span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Mobile menu ---------- */
.ot-mobile-menu {
	position: fixed;
	top: var(--ot-mobile-menu-top, 58px);
	right: 0;
	bottom: 0;
	left: 0;
	background: #161514;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.24s ease,
		visibility 0.24s ease;
	z-index: 99;
	overflow-y: auto;
}

.ot-mobile-menu__inner {
	min-height: calc(100dvh - var(--ot-mobile-menu-top, 58px));
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-56px);
	transition: transform 0.28s ease;
}

.ot-mobile-menu__nav {
	width: 100%;
	display: flex;
	justify-content: center;
}

.ot-mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	width: 100%;
}

.ot-mobile-menu__link {
	display: inline-block;
	color: var(--ot-text-muted);
	font-size: 28px;
	font-weight: var(--ot-fw-semibold);
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ot-mobile-menu__link:hover,
.ot-mobile-menu__item.is-active .ot-mobile-menu__link {
	color: var(--ot-text);
}

.ot-mobile-menu.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.ot-mobile-menu.is-active .ot-mobile-menu__inner {
	transform: translateY(0);
}

@media (min-width: 992px) {
	.ot-header__logo img {
		width: 73px;
		height: 49px;
	}

	.ot-header__nav {
		display: block;
	}

	.ot-header__menu-link {
		font-size: 14px;
	}

	.ot-header__login {
		display: inline-flex;
	}

	.ot-header__cta {
		font-size: 14px;
	}

	.ot-header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.ot-header__nav {
		justify-self: center;
	}

	.ot-header__actions {
		display: flex;
		align-items: center;
		gap: 20px;
		flex-shrink: 0;
		justify-self: end;
	}

	.ot-header__toggle {
		display: none;
	}

	.ot-mobile-menu {
		display: none;
	}
}

/* ---------- Hero ---------- */
.ot-hero {
	--ot-wrapper-max: 1084px;
	position: relative;
	padding-top: var(--ot-hero-pad-top);
	padding-bottom: var(--ot-hero-pad-bottom);
	overflow: hidden;
}

.ot-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 160px;
	background: linear-gradient(
		to bottom,
		rgba(20, 19, 19, 0) 0%,
		var(--ot-bg) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.ot-hero__glow {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1348px;
	height: 348px;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	pointer-events: none;
	z-index: 0;
}

.ot-hero__glow span {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(170px);
}

.ot-hero__glow-left {
	left: 0;
	top: 0;
	width: 513px;
	height: 160px;
	background: #ffbf00;
}

.ot-hero__glow-right {
	right: 0;
	top: 0;
	width: 990px;
	height: 348px;
	background: #d96c00;
}

.ot-hero .ot-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.ot-hero__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 100%;
}

.ot-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}

.ot-hero__title {
	margin: 0;
	max-width: 384px;
	color: var(--ot-text);
	font-family: var(--ot-font);
	font-size: clamp(36px, 12vw, 48px);
	font-weight: var(--ot-fw-medium);
	line-height: 1;
	text-align: center;
}

.ot-hero__title-accent {
	color: var(--ot-orange);
}

.ot-hero__title-break {
	display: block;
}

.ot-hero__lead {
	margin: 0;
	max-width: 364px;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
	text-align: center;
}

.ot-hero__lead strong {
	color: var(--ot-text);
	font-weight: var(--ot-fw-semibold);
}

.ot-hero__stats {
	list-style: none;
	margin: 0;
	padding: 28px 24px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 30px;
	column-gap: 16px;
	justify-items: center;
	background: var(--ot-card-bg-alt);
	border: 1px solid var(--ot-card-border);
	border-radius: var(--ot-radius);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.ot-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	text-align: center;
}

.ot-hero__stat-value {
	color: var(--ot-orange);
	font-size: 28px;
	font-weight: var(--ot-fw-regular);
	line-height: 44px;
}

.ot-hero__stat-label {
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-small);
	font-weight: var(--ot-fw-bold);
	letter-spacing: var(--ot-tracking-tag);
	line-height: 1;
	text-transform: uppercase;
}

@media (min-width: 992px) {
	:root {
		--ot-hero-pad-top: 100px;
		--ot-hero-pad-bottom: 100px;
	}

	.ot-hero .ot-wrapper {
		gap: 72px;
	}

	.ot-hero__intro {
		gap: 16px;
	}

	.ot-hero__title {
		max-width: 610px;
		font-size: var(--ot-fs-h2);
	}

	.ot-hero__title-break {
		display: inline;
	}

	.ot-hero__lead {
		max-width: 520px;
		font-size: 18px;
	}

	.ot-hero__stats {
		grid-template-columns: repeat(4, auto);
		justify-content: space-between;
		align-items: center;
		row-gap: 0;
		column-gap: 0;
		padding: 28px 82px;
	}

	.ot-hero__stat-value {
		font-size: var(--ot-fs-stat);
	}
}

/* ---------- How We Operate ---------- */
.ot-hwo {
	--ot-wrapper-max: 1152px;
	padding-top: 60px;
	padding-bottom: 0;
}

@media (min-width: 992px) {
	.ot-hwo {
		padding-top: 80px;
	}
}

.ot-hwo .ot-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.ot-hwo__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.ot-hwo__eyebrow {
	color: var(--ot-orange);
	font-size: 12px;
	font-weight: var(--ot-fw-medium);
	letter-spacing: var(--ot-tracking-eyebrow);
	line-height: 18px;
	text-transform: uppercase;
}

.ot-hwo__title {
	margin: 0;
	max-width: 370px;
	color: var(--ot-text);
	font-family: var(--ot-font);
	font-size: clamp(36px, 12vw, 48px);
	font-weight: var(--ot-fw-medium);
	line-height: 1;
}

.ot-hwo__title-accent {
	color: var(--ot-text-accent);
}

.ot-hwo__lead {
	margin: 0;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-hwo__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.ot-hwo__card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 20px 30px;
	min-height: 262px;
	background: linear-gradient(180deg, #141313 0%, #141212 100%);
	border: 1px solid var(--ot-card-border);
	border-radius: var(--ot-radius-card);
	box-sizing: border-box;
	overflow: hidden;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ot-hwo__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--ot-orange),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.ot-hwo__card-number {
	color: var(--ot-text-accent);
	font-size: 48px;
	font-weight: var(--ot-fw-regular);
	line-height: 1;
}

.ot-hwo__card-title {
	margin: 0;
	color: var(--ot-text);
	font-size: 18px;
	font-weight: var(--ot-fw-regular);
	line-height: 1;
}

.ot-hwo__card-body {
	margin: 0;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-hwo__nowrap {
	white-space: nowrap;
}

@media (min-width: 992px) {
	.ot-hwo .ot-wrapper {
		gap: 52px;
	}

	.ot-hwo__title {
		max-width: none;
		font-size: var(--ot-fs-h2);
		white-space: nowrap;
	}

	.ot-hwo__lead {
		max-width: 557px;
		font-size: 18px;
	}

	.ot-hwo__list {
		flex-direction: row;
		gap: 20px;
		align-items: stretch;
	}

	.ot-hwo__card {
		flex: 1;
	}

	.ot-hwo__card-body {
		max-width: 308px;
	}
}

/* ---------- Badge ---------- */
.ot-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 14px;
	background: var(--ot-eyebrow-bg);
	border: 1px solid var(--ot-eyebrow-border);
	border-radius: var(--ot-radius-chip);
	color: var(--ot-text-accent);
	font-family: var(--ot-font);
	font-size: 12px;
	font-weight: var(--ot-fw-medium);
	letter-spacing: var(--ot-tracking-eyebrow);
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.ot-badge--with-dot {
	padding: 12px 15px;
	background: rgba(255, 122, 0, 0.08);
	border-color: rgba(255, 122, 0, 0.25);
	border-radius: var(--ot-radius-pill);
	color: var(--ot-orange);
	font-size: 10px;
	font-weight: var(--ot-fw-bold);
}

.ot-badge__dot {
	display: block;
	width: 6px;
	height: 6px;
	background: var(--ot-orange);
	border-radius: 50%;
	flex-shrink: 0;
	animation: ot-pulse-orange 2s ease-in-out infinite;
}

@keyframes ot-pulse-orange {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.45);
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 0 6px rgba(255, 122, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ot-badge__dot {
		animation: none;
	}
}

@media (min-width: 992px) {
	.ot-badge--with-dot {
		padding: 12px 14px;
		background: var(--ot-eyebrow-bg);
		border-color: var(--ot-eyebrow-border);
		border-radius: var(--ot-radius-chip);
		color: var(--ot-text-accent);
		font-size: 12px;
		font-weight: var(--ot-fw-medium);
	}
}

/* ---------- Leadership ---------- */
.ot-leadership {
	--ot-wrapper-max: 1140px;
	padding-bottom: 0;
}

.ot-leadership .ot-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.ot-leadership__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	width: 100%;
}

.ot-leadership__title {
	margin: 0;
	max-width: 370px;
	color: var(--ot-text);
	font-family: var(--ot-font);
	font-size: clamp(36px, 12vw, 48px);
	font-weight: var(--ot-fw-medium);
	line-height: 1;
}

.ot-leadership__title-accent {
	color: var(--ot-orange);
}

.ot-leadership__lead {
	margin: 0;
	max-width: 370px;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body-sm);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-leadership__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.ot-leadership__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px;
	padding: 20px;
	background: var(--ot-card-bg);
	border: 1px solid var(--ot-card-border);
	border-radius: var(--ot-radius-card);
	box-sizing: border-box;
	overflow: hidden;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ot-leadership__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--ot-orange),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.ot-leadership__photo {
	position: relative;
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 10px;
	overflow: hidden;
}

.ot-leadership__photo::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		322deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(116, 116, 116, 0.2) 51.5%,
		#f3981f 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}

.ot-leadership__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.ot-leadership__body {
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
	max-width: 348px;
}

.ot-leadership__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	text-align: center;
}

.ot-leadership__identity {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
}

.ot-leadership__name {
	margin: 0;
	color: var(--ot-text);
	font-size: 28px;
	font-weight: var(--ot-fw-regular);
	line-height: 1;
}

.ot-leadership__role {
	color: var(--ot-text-accent);
	font-size: var(--ot-fs-small);
	font-weight: var(--ot-fw-bold);
	letter-spacing: var(--ot-tracking-eyebrow);
	line-height: 1;
}

.ot-leadership__bio {
	margin: 0;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body-sm);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-leadership__tags {
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
	border-top: 1px solid var(--ot-card-border);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.ot-leadership__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	background: var(--ot-chip-bg);
	border: 1px solid var(--ot-card-border);
	border-radius: var(--ot-radius-pill);
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-tag);
	font-weight: var(--ot-fw-semibold);
	line-height: 1;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.ot-leadership .ot-wrapper {
		gap: 52px;
	}

	.ot-leadership__title {
		max-width: 620px;
		font-size: var(--ot-fs-h2);
	}

	.ot-leadership__lead {
		max-width: 620px;
		font-size: 18px;
	}

	.ot-leadership__list {
		flex-direction: row;
		gap: 28px;
		align-items: stretch;
	}

	.ot-leadership__card {
		flex: 1;
		flex-direction: row;
		align-items: stretch;
		padding: 32px;
	}

	.ot-leadership__body {
		max-width: none;
		flex: 1;
	}

	.ot-leadership__tags {
		margin-top: auto;
		justify-content: flex-start;
	}

	.ot-leadership__intro {
		align-items: flex-start;
		text-align: left;
	}

	.ot-leadership__identity {
		align-items: flex-start;
	}
}

/* ---------- Team grid (support / dev / dealing / marketing) ---------- */
.ot-team {
	--ot-wrapper-max: 1140px;
	padding-top: 60px;
	padding-bottom: 0;
}

@media (min-width: 992px) {
	.ot-team {
		padding-top: 100px;
	}
}

.ot-team .ot-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.ot-team__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	text-align: center;
	width: 100%;
}

.ot-team__title-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.ot-team__title {
	margin: 0;
	color: var(--ot-text);
	font-family: var(--ot-font);
	font-size: 32px;
	font-weight: var(--ot-fw-medium);
	line-height: 1;
}

.ot-team__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	background: var(--ot-eyebrow-bg);
	border: 1px solid var(--ot-eyebrow-border);
	border-radius: 7px;
	color: var(--ot-text-accent);
	font-size: 11px;
	font-weight: var(--ot-fw-regular);
	line-height: 1;
	white-space: nowrap;
}

.ot-team__lead {
	margin: 0;
	max-width: 320px;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body-sm);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-team__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: 100%;
}

.ot-team__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
	padding: 26px 32px;
	background: var(--ot-card-bg);
	border: 1px solid var(--ot-card-border);
	border-radius: 14px;
	box-sizing: border-box;
	overflow: hidden;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ot-team__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--ot-orange),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
	.ot-team__card:hover,
	.ot-leadership__card:hover,
	.ot-hwo__card:hover {
		border-color: rgba(245, 240, 230, 0.16);
	}

	.ot-team__card:hover::before,
	.ot-leadership__card:hover::before,
	.ot-hwo__card:hover::before {
		opacity: 1;
	}
}

.ot-team__photo {
	position: relative;
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	border-radius: 12px;
	overflow: hidden;
}

.ot-team__photo::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		322deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(116, 116, 116, 0.2) 51.5%,
		#f3981f 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}

.ot-team__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.ot-team__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
}

.ot-team__identity {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.ot-team__name {
	margin: 0;
	color: var(--ot-text);
	font-size: 18px;
	font-weight: var(--ot-fw-regular);
	line-height: 1;
	text-transform: uppercase;
}

.ot-team__role {
	color: var(--ot-text-muted);
	font-size: 12px;
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-team__location {
	width: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 14px;
	border-top: 1px solid var(--ot-card-border);
}

.ot-team__location-text {
	color: var(--ot-text-muted);
	font-size: 11px;
	font-weight: var(--ot-fw-medium);
	line-height: 1;
	white-space: nowrap;
}

@media (min-width: 992px) {
	.ot-team__head {
		align-items: flex-start;
		text-align: left;
	}

	.ot-team__title-row {
		flex-direction: row;
		align-items: flex-end;
		gap: 20px;
	}

	.ot-team__title {
		font-size: 38px;
	}

	.ot-team__lead {
		max-width: var(--ot-team-lead-max, 518px);
		font-size: var(--ot-fs-body);
	}

	.ot-team__list {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 28px;
	}

	.ot-team__card {
		gap: 16px;
	}
}

/* ---------- Final CTA ---------- */
.ot-cta {
	padding-top: 60px;
	padding-bottom: 80px;
}

@media (min-width: 992px) {
	.ot-cta {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.ot-cta .ot-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.ot-cta__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.ot-cta__title {
	margin: 0;
	max-width: 374px;
	color: var(--ot-text);
	font-family: var(--ot-font);
	font-size: clamp(36px, 12vw, 48px);
	font-weight: var(--ot-fw-medium);
	line-height: 1;
}

.ot-cta__title-accent {
	color: var(--ot-text-accent);
}

.ot-cta__lead {
	margin: 0;
	max-width: 368px;
	color: var(--ot-text-muted);
	font-size: var(--ot-fs-body);
	font-weight: var(--ot-fw-regular);
	line-height: 1.2;
}

.ot-cta__lead strong {
	color: var(--ot-text);
	font-weight: var(--ot-fw-semibold);
}

.ot-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
	width: 100%;
	max-width: 330px;
}

.ot-cta__primary,
.ot-cta__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	box-sizing: border-box;
	font-family: var(--ot-font);
	text-decoration: none;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease,
		border-color 0.25s ease;
}

.ot-cta__primary {
	gap: 3px;
	padding: 18px 34px 18px 40px;
	background: linear-gradient(106.89deg, #f3981f 0%, #e57625 100%);
	color: var(--ot-black);
	font-size: 18px;
	font-weight: var(--ot-fw-bold);
	line-height: 1;
	border-radius: var(--ot-radius-btn);
	box-shadow: var(--ot-cta-shadow);
	overflow: clip;
}

.ot-cta__primary:hover,
.ot-cta__primary:focus-visible {
	background: linear-gradient(106.89deg, #ffab3c 0%, #ee8436 100%);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	transform: translateY(-1px);
	color: var(--ot-black);
}

.ot-cta__primary-arrow {
	font-size: 16px;
	letter-spacing: -0.16px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.ot-cta__primary:hover .ot-cta__primary-arrow,
.ot-cta__primary:focus-visible .ot-cta__primary-arrow {
	transform: translateX(3px);
}

.ot-cta__secondary {
	padding: 20px 30px;
	background: rgba(245, 240, 230, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--ot-text);
	font-size: var(--ot-fs-body);
	font-weight: var(--ot-fw-semibold);
	line-height: 1;
	border-radius: var(--ot-radius-sm);
}

.ot-cta__secondary:hover,
.ot-cta__secondary:focus-visible {
	background:
		linear-gradient(
			92.95deg,
			rgba(255, 171, 60, 0.16) 0%,
			rgba(238, 132, 54, 0.16) 100%
		),
		#282320;
	border-color: rgba(243, 152, 31, 0.45);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.18);
	transform: translateY(-1px);
	color: var(--ot-text);
}

@media (min-width: 992px) {
	.ot-cta__title {
		max-width: 752px;
		font-size: var(--ot-fs-h2);
	}

	.ot-cta__lead {
		max-width: 557px;
		font-size: 18px;
	}

	.ot-cta__actions {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		max-width: none;
		width: auto;
	}

	.ot-cta__primary {
		background: linear-gradient(103.07deg, #f3981f 0%, #e57625 100%);
	}

	.ot-cta__primary:hover,
	.ot-cta__primary:focus-visible {
		background: linear-gradient(103.07deg, #ffab3c 0%, #ee8436 100%);
		box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	}
}

/* ---------- Reveal animations ---------- */
@keyframes ot-reveal-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.our-team .ot-reveal-on-load,
body.our-team .ot-reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	will-change: opacity, transform;
}

body.our-team .ot-reveal-on-load.is-in {
	animation: ot-reveal-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.our-team .ot-reveal-on-load[data-reveal-delay="1"] {
	animation-delay: 0.05s;
}
body.our-team .ot-reveal-on-load[data-reveal-delay="2"] {
	animation-delay: 0.12s;
}
body.our-team .ot-reveal-on-load[data-reveal-delay="3"] {
	animation-delay: 0.2s;
}
body.our-team .ot-reveal-on-load[data-reveal-delay="4"] {
	animation-delay: 0.28s;
}
body.our-team .ot-reveal-on-load[data-reveal-delay="5"] {
	animation-delay: 0.36s;
}
body.our-team .ot-reveal-on-load[data-reveal-delay="6"] {
	animation-delay: 0.44s;
}

body.our-team .ot-reveal-on-scroll {
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.our-team .ot-reveal-on-scroll.is-in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	body.our-team .ot-reveal-on-load,
	body.our-team .ot-reveal-on-scroll {
		animation: none;
		transition: none;
		opacity: 1;
		transform: none;
	}
}

/* ─── Profile modal (shared across leadership + team cards) ───────────── */
.ot-leadership__card.is-clickable,
.ot-team__card.is-clickable {
	cursor: pointer;
}

.ot-leadership__card.is-clickable:focus-visible,
.ot-team__card.is-clickable:focus-visible {
	outline: 2px solid var(--ot-orange-light);
	outline-offset: 4px;
}

body.ot-modal-open {
	overflow: hidden;
}

.ot-profile-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 24px 16px;
	opacity: 0;
	transition: opacity 0.22s ease;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.ot-profile-modal.is-open {
	opacity: 1;
}

.ot-profile-modal[hidden] {
	display: none;
}

.ot-profile-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(8, 7, 6, 0.78);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ot-profile-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: auto;
	padding: 40px 24px;
	background: linear-gradient(
		180deg,
		rgba(20, 19, 19, 0.2) 0%,
		rgba(20, 19, 19, 0.4) 11%,
		#2b1f16 100%
	);
	background-color: var(--ot-bg);
	border-radius: 16px;
	transform: translateY(12px) scale(0.98);
	transition: transform 0.25s ease;
}

.ot-profile-modal__dialog::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(116, 116, 116, 0.2) 50%,
		var(--ot-orange) 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.ot-profile-modal.is-open .ot-profile-modal__dialog {
	transform: translateY(0) scale(1);
}

.ot-profile-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: var(--ot-text);
	cursor: pointer;
	transition:
		background 0.15s ease,
		border-color 0.15s ease;
}

.ot-profile-modal__close:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.24);
}

.ot-profile-modal__close:focus-visible {
	outline: 2px solid var(--ot-orange-light);
	outline-offset: 2px;
}

@media (min-width: 768px) {
	.ot-profile-modal {
		padding: 48px 24px;
	}

	.ot-profile-modal__dialog {
		padding: 40px 30px;
	}
}

/* Profile content */
.ot-profile {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.ot-profile__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.ot-profile__photo {
	position: relative;
	width: 180px;
	height: 180px;
	border-radius: 12px;
	overflow: hidden;
}

.ot-profile__photo::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		322deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(116, 116, 116, 0.2) 51.5%,
		#f3981f 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}

.ot-profile__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 768px) {
	.ot-profile__photo {
		width: 228px;
		height: 228px;
	}
}

.ot-profile__identity {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.ot-profile__name {
	margin: 0;
	font-family: var(--ot-font);
	font-weight: var(--ot-fw-regular);
	font-size: 24px;
	line-height: 1;
	color: var(--ot-text);
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.ot-profile__name {
		font-size: 28px;
	}
}

.ot-profile__role {
	font-family: var(--ot-font);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 2.16px;
	color: var(--ot-orange-light);
	text-transform: uppercase;
	line-height: 1;
}

.ot-profile__location {
	margin: 0;
	font-size: 11px;
	color: var(--ot-text-muted);
	line-height: 1;
}

.ot-profile__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ot-profile__section {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 20px;
	border-bottom: 1px solid #413225;
}

.ot-profile__section--last {
	padding-bottom: 0;
	border-bottom: 0;
}

.ot-profile__label {
	margin: 0;
	font-family: var(--ot-font);
	font-weight: var(--ot-fw-regular);
	font-size: 12px;
	letter-spacing: 2.16px;
	text-transform: uppercase;
	color: var(--ot-text-muted);
	line-height: 1.2;
}

.ot-profile__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.2;
	color: var(--ot-text);
}

.ot-profile__quote {
	margin: 0;
	padding: 16px 12px;
	background: linear-gradient(90deg, #36271b 0%, rgba(43, 31, 22, 0) 100%);
	border-left: 2px solid var(--ot-orange-light);
	border-radius: 4px;
}

.ot-profile__quote p {
	margin: 0;
	font-style: italic;
	font-size: 14px;
	line-height: 1.2;
	color: var(--ot-text);
}

.ot-profile__highlight {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 12px;
	background: #261e16;
	border: 1px solid #63350d;
	border-radius: 14px;
}

.ot-profile__highlight p {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
	color: var(--ot-text);
}

.ot-profile__emoji {
	flex-shrink: 0;
	font-size: 16px;
	line-height: 1.2;
}

.ot-profile__outside {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ot-profile__outside-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 12px;
	background: var(--ot-card-bg);
	border: 1px solid var(--ot-card-border);
	border-radius: 14px;
}

.ot-profile__outside-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ot-profile__outside-label {
	font-size: 12px;
	letter-spacing: 1.16px;
	text-transform: uppercase;
	color: var(--ot-text-muted);
	line-height: 1.2;
}

.ot-profile__outside-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	color: var(--ot-text);
}

.ot-profile__pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ot-profile__pill {
	padding: 8px 12px;
	background: #362313;
	border: 1px solid #63350d;
	border-radius: 999px;
	font-weight: var(--ot-fw-semibold);
	font-size: 14px;
	line-height: 1;
	color: #b8b2ac;
}
