.cr-hero {
	overflow: hidden;
	padding-top: 60px;
}
@media (max-width: 900px) {
	.cr-hero {
		padding-top: 52px;
	}
}
@media (max-width: 520px) {
	.cr-hero {
		padding-top: 40px;
	}
}
.cr-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.cr-hero-grid > div:first-child {
	padding-top: 38px;
}
@media (max-width: 520px) {
	.cr-hero-grid > div:first-child {
		padding-top: 20px;
	}
}
.cr-hero-title {
	margin-top: 14px;
	font-size: clamp(34px, 4.6vw, 54px);
	line-height: 1.12;
}
.cr-hero .lede {
	margin-top: 20px;
	max-width: 520px;
}
.cr-hero .hero-ctas {
	margin-top: 36px;
}
.cr-hero-frame {
	position: relative;
	z-index: 1;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 30px 70px -30px rgba(20, 22, 26, .35);
	aspect-ratio: 4 / 3;
}
.cr-hero-frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
@media (max-width: 1080px) {
	.cr-hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.cr-hero-frame {
		order: -1;
	}
}

.cr-why-list {
	margin: 52px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--line);
}
.cr-why-row {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 30px 6px;
	border-bottom: 1px solid var(--line);
	transition: padding-left .3s var(--ease);
}
.cr-why-row:hover {
	padding-left: 16px;
}
.cr-why-icon {
	flex: 0 0 auto;
	width: 54px;
	height: 54px;
	border-radius: var(--radius-md);
	border: 1.5px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
	transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.cr-why-icon svg {
	width: 23px;
	height: 23px;
}
.cr-why-row:hover .cr-why-icon {
	border-color: var(--brand-tint);
	background: var(--brand-tint);
}
.cr-why-body {
	flex: 1 1 auto;
}
.cr-why-body h4 {
	font-size: 19px;
}
.cr-why-body p {
	margin-top: 6px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-soft);
	max-width: 62ch;
}
.cr-why-arrow {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-faint);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.cr-why-row:hover .cr-why-arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--brand-deep);
}
.cr-why-arrow svg {
	width: 18px;
	height: 18px;
}
@media (max-width: 720px) {
	.cr-why-row {
		gap: 18px;
		padding: 22px 2px;
	}
	.cr-why-icon {
		width: 46px;
		height: 46px;
	}
	.cr-why-icon svg {
		width: 20px;
		height: 20px;
	}
	.cr-why-arrow {
		display: none;
	}
	.cr-why-body h4 {
		font-size: 17px;
	}
}

.cr-expand {
	margin-top: 48px;
	display: flex;
	align-items: stretch;
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 400px;
}
.cr-expand-panel {
	position: relative;
	flex: 1 1 0;
	background: var(--card);
	transition: flex-grow .45s var(--ease);
	overflow: hidden;
}
.cr-expand-panel.active {
	flex: 4 1 0;
	background: var(--ink);
}
.cr-expand-head {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 32px 22px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--ink);
}
.cr-expand-panel.active .cr-expand-head {
	align-items: flex-start;
	color: var(--night-text);
}
.cr-expand-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-tint);
	color: var(--brand-deep);
	transition: background-color .3s var(--ease), color .3s var(--ease);
}
.cr-expand-panel.active .cr-expand-icon {
	background: rgba(255, 145, 87, 0.16);
	color: var(--brand-ondark);
}
.cr-expand-icon svg {
	width: 18px;
	height: 18px;
}
.cr-expand-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	white-space: nowrap;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.cr-expand-panel.active .cr-expand-title {
	writing-mode: horizontal-tb;
	transform: none;
	white-space: normal;
	font-size: 19px;
	margin-top: 8px;
}
.cr-expand-body {
	position: absolute;
	inset: 0;
	padding: 108px 26px 26px;
	opacity: 0;
	transition: opacity .3s var(--ease) .1s;
	pointer-events: none;
}
.cr-expand-panel.active .cr-expand-body {
	opacity: 1;
	pointer-events: auto;
}
.cr-expand-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.cr-expand-list li {
	position: relative;
	padding-left: 16px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--night-sub);
}
.cr-expand-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 1.5px;
	background: var(--brand-ondark);
}

@media (max-width: 780px) {
	.cr-expand {
		flex-direction: column;
		min-height: 0;
		gap: 2px;
	}
	.cr-expand-panel,
	.cr-expand-panel.active {
		flex: none;
	}
	.cr-expand-head {
		position: static;
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 18px 20px;
	}
	.cr-expand-panel.active .cr-expand-head {
		align-items: center;
	}
	.cr-expand-title {
		writing-mode: horizontal-tb;
		transform: none;
		white-space: normal;
		font-size: 15.5px;
	}
	.cr-expand-panel.active .cr-expand-title {
		font-size: 15.5px;
		margin-top: 0;
	}
	.cr-expand-body {
		position: static;
		max-height: 0;
		padding: 0 20px;
		overflow: hidden;
		transition: max-height .4s var(--ease), opacity .25s var(--ease), padding .35s var(--ease);
	}
	.cr-expand-panel.active .cr-expand-body {
		max-height: 320px;
		padding: 0 20px 24px;
	}
	.cr-expand-list {
		gap: 10px;
	}
}
@media (max-width: 480px) {
	.cr-expand-head {
		gap: 12px;
		padding: 16px 16px;
	}
	.cr-expand-icon {
		width: 34px;
		height: 34px;
	}
	.cr-expand-icon svg {
		width: 15px;
		height: 15px;
	}
	.cr-expand-title,
	.cr-expand-panel.active .cr-expand-title {
		font-size: 14.5px;
	}
	.cr-expand-body {
		padding: 0 16px;
	}
	.cr-expand-panel.active .cr-expand-body {
		padding: 0 16px 20px;
	}
	.cr-expand-list li {
		font-size: 13px;
	}
}

.cr-cms-note {
	margin-top: 14px;
	display: inline-block;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: .03em;
	color: var(--ink-faint);
	border: 1px dashed var(--line);
	border-radius: 999px;
	padding: 5px 14px;
}

.cr-openings {
	margin: 40px auto 0;
	max-width: 760px;
	text-align: center;
	padding: 64px 44px;
	border: 1.5px dashed var(--line);
	border-radius: var(--radius-lg);
	background: var(--card);
}
.cr-openings-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto;
	border-radius: 50%;
	background: var(--brand-tint);
	display: flex;
	align-items: center;
	justify-content: center;
}
.cr-openings-icon svg {
	width: 24px;
	height: 24px;
	color: var(--brand-deep);
}
.cr-openings-status {
	margin-top: 22px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 19px;
	color: var(--ink);
}
.cr-openings-note {
	margin-top: 8px;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 44ch;
	margin-left: auto;
	margin-right: auto;
}
.cr-openings .btn {
	margin-top: 26px;
}
@media (max-width: 560px) {
	.cr-openings {
		padding: 48px 24px;
	}
}

.cr-jobs {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.cr-job-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px 40px;
	box-shadow: var(--shadow-1);
	transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cr-job-card:hover {
	box-shadow: var(--shadow-2);
	border-color: var(--line-soft);
}
.cr-job-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cr-job-dept {
	font-family: var(--mono);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--brand-text);
	margin-bottom: 8px;
}
.cr-job-head h3 {
	font-size: 24px;
	line-height: 1.25;
	margin: 0;
}
.cr-job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--line-soft);
}
.cr-job-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink-soft);
}
.cr-job-meta svg {
	width: 16px;
	height: 16px;
	color: var(--brand-deep);
	flex: 0 0 auto;
}
.cr-job-desc {
	margin-top: 18px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-soft);
	max-width: 62em;
}
.cr-job-cols {
	margin-top: 22px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line-soft);
}
.cr-job-cols h4 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .03em;
	color: var(--ink);
	margin: 0 0 12px;
}
.cr-job-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.cr-job-list li {
	position: relative;
	padding-left: 16px;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-soft);
}
.cr-job-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 1.5px;
	background: var(--brand-deep);
}
@media (max-width: 780px) {
	.cr-job-cols {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.cr-job-card {
		padding: 28px 24px;
	}
	.cr-job-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}
.cr-open-note {
	margin: 40px auto 0;
	max-width: 640px;
	text-align: center;
}
.cr-open-note p {
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ink-soft);
	margin-bottom: 18px;
}

.cr-values {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.cr-value {
	padding: 4px 28px;
	border-left: 1px solid var(--line);
}
.cr-value:first-child {
	border-left: none;
	padding-left: 0;
}
.cr-value .ring-icon {
	width: auto;
	height: auto;
	border: none;
	background: none;
	border-radius: 0;
	justify-content: flex-start;
}
.cr-value .ring-icon svg {
	width: 32px;
	height: 32px;
	color: var(--brand-deep);
}
.cr-value-body {
	margin-top: 16px;
}
.cr-value-body h4 {
	font-size: 17px;
}
.cr-value-body p {
	margin-top: 10px;
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--ink-soft);
}
@media (max-width: 900px) {
	.cr-values {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 0;
	}
	.cr-value:nth-child(2) {
		border-left: 1px solid var(--line);
	}
	.cr-value:nth-child(odd) {
		border-left: none;
		padding-left: 0;
	}
}
@media (max-width: 560px) {
	.cr-values {
		grid-template-columns: 1fr;
		gap: 28px 0;
	}
	.cr-value {
		display: flex;
		align-items: flex-start;
		gap: 16px;
		border-left: none !important;
		padding-left: 0 !important;
	}
	.cr-value .ring-icon svg {
		width: 28px;
		height: 28px;
	}
	.cr-value-body {
		margin-top: 0;
	}
}

.cr-apply {
	position: relative;
	overflow: hidden;
	background: var(--night-2);
}
.cr-apply-texture {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image: radial-gradient(var(--night-line) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: radial-gradient(circle at 12% 8%, black, transparent 60%);
	-webkit-mask-image: radial-gradient(circle at 12% 8%, black, transparent 60%);
}
.cr-apply-inner {
	position: relative;
}
.cr-apply::after {
	content: "";
	position: absolute;
	right: 60px;
	bottom: -80px;
	width: 420px;
	height: 420px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9457' stroke-width='0.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='7' width='18' height='12' rx='2'/%3E%3Cpath d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2'/%3E%3Cpath d='M3 12h18'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: .2;
	pointer-events: none;
}
.cr-apply-head {
	max-width: 620px;
}
.cr-form-wrap {
	position: relative;
	margin-top: 48px;
	max-width: 780px;
}
.cr-form {
	margin-top: 0;
}
.cr-field {
	margin-bottom: 28px;
}
.cr-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 28px;
}
.cr-form label {
	display: block;
	font-family: var(--mono);
	font-size: 11.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--night-sub);
	margin-bottom: 12px;
}
.cr-form .req {
	color: var(--brand-ondark);
	margin-left: 2px;
	text-transform: none;
	letter-spacing: 0;
}
.cr-form .opt {
	text-transform: none;
	letter-spacing: 0;
	color: var(--night-sub);
	font-family: var(--body);
	font-size: 12.5px;
}
.cr-form input[type="text"],
.cr-form input[type="email"],
.cr-form input[type="tel"],
.cr-form select,
.cr-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1.5px solid var(--night-line);
	border-radius: 0;
	background: transparent;
	padding: 8px 2px 12px;
	font-family: var(--body);
	font-size: 16.5px;
	color: var(--night-text);
	transition: border-color .2s var(--ease);
}
.cr-form textarea {
	resize: vertical;
	min-height: 100px;
	line-height: 1.55;
	font-family: inherit;
}
.cr-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7a9ae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2px center;
	background-size: 17px;
	padding-right: 28px;
	color: var(--night-text);
}
.cr-form select:invalid {
	color: var(--night-sub);
}
.cr-form select option {
	color: var(--ink);
	background: var(--card);
}
.cr-form input:focus,
.cr-form select:focus,
.cr-form textarea:focus {
	outline: none;
	border-bottom-color: var(--brand-ondark);
}

.cr-form .cr-field-filled {
	border-bottom-color: var(--brand-ondark);
	animation: crFieldFilledFlash 1.6s var(--ease);
}
@keyframes crFieldFilledFlash {
	0% {
		background-color: rgba(255, 148, 87, 0.18);
	}
	100% {
		background-color: transparent;
	}
}
.cr-file {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	padding-bottom: 12px;
	border-bottom: 1.5px dashed var(--night-line);
}
.cr-file input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.cr-file-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14.5px;
	color: var(--brand-ondark);
	cursor: pointer;
}
.cr-file-name {
	font-size: 13px;
	color: var(--night-sub);
}
.cr-field-hint {
	margin-top: 8px;
	font-size: 12.5px;
	color: var(--night-sub);
}
.cr-privacy {
	margin: 30px 0 26px;
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--night-sub);
	max-width: 60ch;
}
@media (max-width: 560px) {
	.cr-field-row {
		grid-template-columns: 1fr;
	}
	.cr-apply::after {
		width: 260px;
		height: 260px;
	}
}
