.au-hero {
	overflow: hidden;
	padding-top: 32px;
}
@media (max-width: 900px) {
	.au-hero {
		padding-top: 28px;
	}
}
@media (max-width: 520px) {
	.au-hero {
		padding-top: 22px;
	}
}
.au-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.au-hero-grid > div:first-child {
	padding-top: 38px;
}
@media (max-width: 520px) {
	.au-hero-grid > div:first-child {
		padding-top: 20px;
	}
}
.au-hero-title {
	margin-top: 14px;
	font-size: clamp(34px, 4.6vw, 54px);
	line-height: 1.12;
}
.au-hero .lede {
	margin-top: 20px;
	max-width: 520px;
}
.au-hero .hero-ctas {
	margin-top: 36px;
}
.au-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;
	top: 32px;
}
@media (max-width: 900px) {
	.au-hero-frame {
		top: 28px;
	}
}
@media (max-width: 520px) {
	.au-hero-frame {
		top: 20px;
	}
}
.au-hero-frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
@media (max-width: 1080px) {
	.au-hero-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.au-hero-frame {
		order: -1;
	}
}

.au-disciplines {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.au-discipline {
	padding-left: 32px;
	border-left: 1px solid var(--line);
}
.au-discipline:first-child {
	padding-left: 0;
	border-left: none;
}
.au-discipline-num {
	display: block;
	font-family: var(--display);
	font-weight: 800;
	font-size: 52px;
	line-height: 1;
	color: var(--brand-tint);
	-webkit-text-stroke: 1.5px var(--brand-deep);
	margin-bottom: 22px;
}
.au-discipline h3 {
	display: inline-block;
	font-family: var(--display);
	font-weight: 800;
	font-size: 19px;
	color: var(--ink);
	padding-bottom: 16px;
	position: relative;
}
.au-discipline h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 32px;
	background: var(--brand);
	transition: width .35s var(--ease);
}
.au-discipline:hover h3::after {
	width: 100%;
}
.au-discipline p {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-soft);
}
@media (max-width: 900px) {
	.au-disciplines {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.au-discipline {
		padding-left: 0;
		border-left: none;
		padding-bottom: 32px;
		border-bottom: 1px solid var(--line);
	}
	.au-discipline:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.au-discipline-num {
		font-size: 44px;
	}
}

.au-journey {
	position: relative;
	margin-top: 76px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.au-jy-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1.5px;
	background: linear-gradient(90deg, transparent, var(--line) 6%, var(--line) 94%, transparent);
	transform: translateY(-50%);
}
.au-jy-item {
	position: relative;
	height: 380px;
}
.au-jy-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--card);
	border: 1.5px solid var(--brand-tint);
	color: var(--brand-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 12.5px;
	box-shadow: 0 0 0 6px var(--mist);
}
.au-jy-dot svg {
	width: 21px;
	height: 21px;
}
.au-jy-current .au-jy-dot {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
	box-shadow: 0 0 0 6px var(--mist), 0 8px 20px -8px rgba(236, 106, 42, .6);
}
.au-jy-connector {
	position: absolute;
	left: 50%;
	width: 1.5px;
	background: var(--line);
	transform: translateX(-50%);
	z-index: 1;
}
.au-jy-up .au-jy-connector {
	bottom: calc(50% + 27px);
	height: 30px;
}
.au-jy-down .au-jy-connector {
	top: calc(50% + 27px);
	height: 30px;
}
.au-jy-card {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 92%;
	text-align: center;
}
.au-jy-up .au-jy-card {
	bottom: calc(50% + 27px + 30px);
}
.au-jy-down .au-jy-card {
	top: calc(50% + 27px + 30px);
}
.au-jy-card h4 {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16.5px;
	color: var(--ink);
	line-height: 1.3;
}
.au-jy-card p {
	margin-top: 8px;
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ink-soft);
}
@media (max-width: 1080px) {
	.au-jy-card h4 {
		font-size: 15.5px;
	}
	.au-jy-card p {
		font-size: 13px;
	}
}
@media (max-width: 900px) {
	.au-journey {
		display: block;
		margin-top: 56px;
		padding-left: 30px;
	}
	.au-jy-line {
		left: 21px;
		top: 8px;
		bottom: 8px;
		right: auto;
		width: 1.5px;
		height: auto;
		background: var(--line);
		transform: none;
	}
	.au-jy-item {
		height: auto;
		display: flex;
		align-items: flex-start;
		gap: 22px;
		padding-bottom: 40px;
	}
	.au-jy-item:last-child {
		padding-bottom: 0;
	}
	.au-jy-dot {
		position: static;
		transform: none;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		font-size: 11px;
		margin-left: -30px;
	}
	.au-jy-dot svg {
		width: 18px;
		height: 18px;
	}
	.au-jy-connector {
		display: none;
	}
	.au-jy-card {
		position: static;
		transform: none;
		width: auto;
		text-align: left;
		padding-top: 6px;
	}
}

.au-why {
	margin-top: 52px;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 64px;
	align-items: start;
}
.au-why-stats {
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding-right: 44px;
	border-right: 1px solid var(--line);
}
.au-why-stat-num {
	display: block;
	font-family: var(--display);
	font-weight: 800;
	font-size: 54px;
	line-height: 1;
	color: var(--brand-text);
}
.au-why-stat-plus {
	font-size: 30px;
}
.au-why-stat-label {
	display: block;
	margin-top: 12px;
	max-width: 21ch;
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink-soft);
}
.au-why-list {
	display: flex;
	flex-direction: column;
}
.au-why-item {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line);
}
.au-why-item:first-child {
	padding-top: 0;
}
.au-why-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.au-why-check {
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	margin-top: 3px;
	color: var(--brand-deep);
}
.au-why-item h4 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 17px;
	color: var(--ink);
}
.au-why-item p {
	margin-top: 6px;
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--ink-soft);
}
@media (max-width: 900px) {
	.au-why {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.au-why-stats {
		flex-direction: row;
		gap: 40px;
		padding-right: 0;
		padding-bottom: 32px;
		border-right: none;
		border-bottom: 1px solid var(--line);
	}
}
@media (max-width: 480px) {
	.au-why-stats {
		flex-direction: column;
		gap: 24px;
	}
}

.au-process {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.au-process-step {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px 20px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}
.au-process-num {
	font-family: var(--display);
	font-weight: 800;
	font-size: 21px;
	color: var(--brand-tint);
	-webkit-text-stroke: 1px var(--brand-deep);
}
.au-process-step h4 {
	font-family: var(--display);
	font-weight: 700;
	font-size: 16px;
	color: var(--ink);
}
.au-process-step p {
	font-size: 13.5px;
	line-height: 1.55;
	color: var(--ink-soft);
}
.au-process-cta {
	margin-top: 44px;
	justify-content: flex-start;
}
@media (max-width: 1080px) {
	.au-process {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 640px) {
	.au-process {
		grid-template-columns: 1fr;
	}
	.au-process-cta {
		justify-content: stretch;
	}
}

.au-ecosystem {
	margin-top: 48px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	border-top: 1px solid var(--line);
	padding-top: 40px;
}
.au-eco-entry {
	display: flex;
	gap: 20px;
}
.au-eco-icon {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	border: 1.5px solid var(--brand-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-deep);
}
.au-eco-icon svg {
	width: 21px;
	height: 21px;
}
.au-eco-body h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 18px;
	color: var(--ink);
}
.au-eco-body p {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink-soft);
}
.au-eco-body .link-arrow {
	margin-top: 16px;
}
@media (max-width: 780px) {
	.au-ecosystem {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

.au-work {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, var(--brand-ink) 0%, var(--brand-deep) 55%, var(--brand-btn) 100%);
}
.au-work-rings {
	position: absolute;
	top: -140px;
	right: -140px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14);
	pointer-events: none;
}
.au-work-rings::before,
.au-work-rings::after {
	content: "";
	position: absolute;
	inset: 55px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14);
}
.au-work-rings::after {
	inset: 120px;
}
.au-work-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 56px;
	align-items: center;
}
.au-work-content .eyebrow {
	color: rgba(255, 255, 255, .82);
}
.au-work-content .h2 {
	color: #fff;
}
.au-work-content .lede {
	margin-top: 18px;
	max-width: 44ch;
	color: rgba(255, 255, 255, .78);
}
.au-work-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 34px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--radius-lg);
	backdrop-filter: blur(6px);
}
.au-work-btn-primary {
	background: #fff;
	border-color: #fff;
	color: var(--brand-deep);
	justify-content: center;
}
.au-work-btn-primary:hover {
	background: rgba(255, 255, 255, .88);
	transform: translateY(-2px);
}
.au-work-btn-ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .4);
	color: #fff;
	justify-content: center;
}
.au-work-btn-ghost:hover {
	background: rgba(255, 255, 255, .1);
	border-color: #fff;
	transform: translateY(-2px);
}
@media (max-width: 900px) {
	.au-work-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.au-work-rings {
		display: none;
	}
	.au-work-content .lede {
		max-width: none;
	}
}
