/**
 * Home-only presentation.
 *
 * This file is loaded on the WordPress front page only.
 */

.home-hero::before {
	background-image: linear-gradient(90deg, rgba(3, 20, 47, .96) 0%, rgba(3, 20, 47, .88) 42%, rgba(3, 20, 47, .54) 70%, rgba(3, 20, 47, .18) 100%);
}

.home-hero__poster,
.home-hero__video {
	position: absolute;
	z-index: -3;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	transform: scale(1.02);
	animation: xly-home-video-zoom 18s ease-in-out infinite alternate;
}

.home-hero__poster img,
.home-hero__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero__video {
	opacity: 0;
}

.home-hero__video.is-ready {
	opacity: 1;
}

.home-hero__grid {
	min-height: 680px;
	grid-template-columns: minmax(0, 720px);
	justify-content: start;
	gap: 0;
	padding-top: 54px;
	padding-bottom: 54px;
}

.home-hero__content {
	max-width: 720px;
}

.home-hero h1 {
	max-width: 720px;
	margin-bottom: 24px;
	font-size: clamp(52px, 4vw, 56px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.02em;
	text-wrap: balance;
}

.home-hero__title-line {
	display: inline;
	white-space: normal;
}

.home-hero__nowrap {
	white-space: nowrap;
}

.home-hero__lead {
	max-width: 680px;
	margin-bottom: 0;
	font-size: 1.125rem;
	line-height: 1.55;
}

.home-hero .eyebrow {
	margin-bottom: 20px;
}

.home-hero .button-row {
	margin-top: 28px;
}

.home-hero .hero-trust {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	width: min(920px, calc(100vw - 40px));
	max-width: 920px;
	min-height: 110px;
	padding-top: 0;
	margin-top: 24px;
	overflow: hidden;
	background: rgba(3, 20, 47, .62);
	border: 1px solid rgba(100, 200, 244, .36);
	border-radius: 11px;
	backdrop-filter: blur(8px);
}

.home-hero .hero-trust__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	min-height: 108px;
	padding: 20px 26px;
}

.home-hero .hero-trust__card + .hero-trust__card {
	border-left: 1px solid rgba(100, 200, 244, .3);
}

.home-hero .hero-trust__card strong,
.home-hero .hero-trust__card span {
	display: block;
}

.home-hero .hero-trust__card strong {
	color: var(--xly-white);
	font-size: 27px;
	font-weight: 700;
	line-height: 1.1;
}

.home-hero .hero-trust__card span {
	margin-top: 6px;
	color: #c9dbed;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.home-main {
	--xly-home-gradient: linear-gradient(115deg, var(--xly-navy-strong), var(--xly-navy));
	background: var(--xly-white);
}

.home-tone-section {
	border-top: 0;
}

.home-main > .section,
.home-main > .home-certifications {
	border-top: 0;
}

.home-tone-section::before,
.home-main > .section::before {
	display: none;
}

.home-about {
	padding-top: 92px;
	padding-bottom: 92px;
	background: var(--xly-white);
}

.home-about::before {
	display: none;
}

.home-about__intro-layout {
	display: grid;
	grid-template-columns: minmax(0, 42fr) minmax(0, 54fr);
	align-items: center;
	gap: 4%;
	margin-bottom: 44px;
}

.home-about__intro-layout > * {
	min-width: 0;
}

.home-about__heading {
	max-width: 100%;
	margin-bottom: 0;
}

.home-about__heading h2 {
	max-width: 100%;
	margin-bottom: 0;
	font-size: clamp(40px, 3.4vw, 44px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
	text-wrap: balance;
}

.home-about__heading h2 span {
	display: block;
	white-space: nowrap;
}

.home-about__primary,
.home-about__secondary {
	max-width: 620px;
	color: var(--xly-muted);
}

.home-about__primary {
	margin-bottom: 12px;
}

.home-about__secondary {
	margin-bottom: 0;
}

.home-about__capabilities {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 20px 0 24px;
	color: var(--xly-ink);
	font-size: .82rem;
	font-weight: 650;
	line-height: 1.5;
}

.home-about__capabilities b {
	color: var(--xly-cyan);
	font-size: 1rem;
	font-weight: 700;
}

.home-about__showcase {
	display: grid;
	grid-template-columns: minmax(0, 68fr) minmax(300px, 32fr);
	align-items: stretch;
	gap: 24px;
}

.home-about__video {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 620px;
	overflow: hidden;
	background: #03142f;
	border: 1px solid rgba(139, 211, 244, .24);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
}

.home-about__video::after {
	position: absolute;
	content: "";
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 15, 37, .08), rgba(2, 15, 37, .32));
	transition: background-color .25s ease;
}

.home-about__video img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .6s ease;
}

.home-about__video:hover img {
	transform: scale(1.025);
}

.home-about__play {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: grid;
	width: 82px;
	height: 82px;
	place-items: center;
	color: var(--xly-white);
	background: var(--xly-cyan);
	border: 2px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	box-shadow: 0 0 0 8px rgba(55, 174, 231, .2), 0 16px 34px rgba(0, 8, 28, .38);
	transform: translate(-50%, -50%);
	transition: transform .2s ease, box-shadow .2s ease;
}

.home-about__video:hover .home-about__play {
	box-shadow: 0 0 0 12px rgba(55, 174, 231, .2), 0 18px 38px rgba(0, 8, 28, .42);
	transform: translate(-50%, -50%) scale(1.04);
}

.home-about__play svg {
	width: 36px;
	height: 36px;
	fill: currentColor;
}

.home-about__facts {
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 18px;
	min-width: 0;
}

.home-about__fact {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	min-width: 0;
	padding: 24px;
	color: var(--xly-ink);
	background: var(--xly-soft);
	border: 1px solid var(--xly-line);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
}

.home-about__fact > svg {
	width: 48px;
	height: 48px;
	color: var(--xly-cyan);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-about__fact strong {
	display: block;
	margin-bottom: 7px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.1;
}

.home-about__fact h3 {
	margin-bottom: 8px;
	color: var(--xly-blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.home-about__fact p {
	margin-bottom: 0;
	color: var(--xly-muted);
	font-size: 14.5px;
	line-height: 1.5;
}

.home-advantages {
	padding-top: 92px;
	padding-bottom: 38px;
	background: var(--xly-navy);
}

.home-advantages::before {
	display: none;
}

.home-advantages__layout {
	display: grid;
	grid-template-columns: minmax(0, 34fr) minmax(0, 66fr);
	gap: 20px;
	align-items: stretch;
}

.home-advantages__intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 32px 34px;
	color: var(--xly-white);
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(134, 201, 238, .18);
	border-radius: var(--xly-radius);
}

.home-advantages__intro .eyebrow {
	margin-bottom: 18px;
}

.home-advantages__intro h2 {
	width: calc(100% + 42px);
	max-width: 375px;
	margin-bottom: 14px;
	color: var(--xly-white);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
	text-wrap: wrap;
}

.home-advantages__intro h2 span {
	display: inline;
	white-space: normal;
	transform: none;
}

.xly-lang-de .home-advantages__intro h2 {
	width: 100%;
	max-width: 100%;
	font-size: 38px;
	hyphens: auto;
	overflow-wrap: anywhere;
}

.home-advantages__intro > p:last-child {
	margin-bottom: 0;
	color: #c9d8ea;
	font-size: 1rem;
	line-height: 1.6;
}

.home-advantages__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: minmax(190px, 1fr);
	gap: 22px;
}

.home-advantage-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	padding: 30px;
	background: var(--xly-white);
	border: 1px solid var(--xly-line);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
	transition: transform .2s ease, box-shadow .2s ease;
}

.home-advantage-card:hover {
	box-shadow: 0 16px 34px rgba(4, 29, 67, .11);
	transform: translateY(-3px);
}

.home-advantage-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 6px;
}

.home-advantage-card__top svg {
	width: 30px;
	height: 30px;
	color: var(--xly-blue);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-advantage-card__top span {
	color: #8bccea;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .12em;
}

.home-advantage-card h3 {
	margin-bottom: 5px;
	font-size: clamp(22px, 1.7vw, 24px);
	font-weight: 700;
	line-height: 1.12;
}

.home-advantage-card p {
	margin-bottom: 0;
	color: var(--xly-muted);
	font-size: .94rem;
	line-height: 1.35;
}

.home-certifications {
	padding: 34px 0 92px;
	background: var(--xly-navy);
}

.home-certifications__bar {
	padding: 28px 30px 30px;
	background: var(--xly-white);
	border: 1px solid var(--xly-line);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
}

.home-certifications__title {
	margin: 0 0 18px;
	color: var(--xly-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .13em;
	line-height: 1.45;
}

.home-certifications__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.home-certification {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	color: var(--xly-navy);
	background: #f7f9fc;
	border: 1px solid var(--xly-line);
	border-radius: 11px;
	text-align: center;
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-certification:hover {
	color: var(--xly-navy);
	border-color: #b9d5e6;
	box-shadow: 0 12px 28px rgba(4, 29, 67, .1);
	transform: translateY(-2px);
}

.home-certification__image {
	display: flex;
	width: 100%;
	height: auto;
	aspect-ratio: 610 / 793;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.home-certification__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-certification strong {
	display: flex;
	width: 100%;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	padding: 12px 14px 14px;
	color: var(--xly-navy);
	font-size: .94rem;
	font-weight: 700;
	line-height: 1.35;
}

.home-services {
	padding-top: 92px;
	padding-bottom: 92px;
	background: var(--xly-soft);
}

.home-services::before {
	display: none;
}

.home-services__heading {
	max-width: 760px;
	margin-right: auto;
	margin-left: 0;
	margin-bottom: 34px;
	text-align: left;
}

.home-services__heading h2 {
	margin-bottom: 18px;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
}

.home-services__heading h2 span {
	display: block;
	white-space: nowrap;
}

.home-services__heading > p:last-child {
	max-width: 720px;
	margin-right: 0;
	margin-left: 0;
}

.home-services__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 24px;
}

.home-service-card {
	display: grid;
	grid-template-rows: 300px minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
	background: #0b2c5a;
	border: 1px solid rgba(139, 211, 244, .24);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
}

.home-service-card__image {
	display: block;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.home-service-card__content {
	display: flex;
	flex-direction: column;
	min-height: 262px;
	padding: 30px;
	color: var(--xly-white);
	background: #0b2c5a;
}

.home-service-card__content h3 {
	margin-bottom: 13px;
	color: var(--xly-white);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -.015em;
	white-space: nowrap;
}

.home-service-card__content > p:not(.home-service-card__capabilities) {
	margin-bottom: 15px;
	color: #cbd9e9;
	font-size: 16px;
	line-height: 1.55;
}

.home-service-card__capabilities {
	margin-bottom: 24px;
	color: #8bd3f4;
	font-size: 14.5px;
	font-weight: 700;
	line-height: 1.45;
}

.home-service-card__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: auto;
	color: var(--xly-white);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.home-service-card__link:hover {
	color: #8bd3f4;
}

.home-service-card__link span {
	transition: transform .2s ease;
}

.home-service-card__link:hover span {
	transform: translateX(4px);
}

.home-main > .section .section-heading h2 {
	color: var(--xly-ink);
}

.home-main > .section .section-heading > p:last-child {
	color: var(--xly-muted);
}

.home-advantage-card {
	color: var(--xly-ink);
	background: var(--xly-white);
	border-color: var(--xly-line);
	box-shadow: var(--xly-shadow);
}

.home-advantage-card:hover {
	box-shadow: 0 16px 36px rgba(4, 29, 67, .11);
}

.home-advantage-card h3 {
	color: var(--xly-ink);
}

.home-advantage-card p {
	color: var(--xly-muted);
}

.home-advantage-card__top svg,
.home-advantage-card__top span {
	color: var(--xly-cyan);
}

.home-certifications {
	background: var(--xly-navy);
}

.home-certifications__bar {
	background: var(--xly-white);
	border-color: var(--xly-line);
	box-shadow: var(--xly-shadow);
}

.home-certifications__title {
	color: var(--xly-blue);
}

.home-certification {
	color: var(--xly-ink);
	background: var(--xly-soft);
	border-color: var(--xly-line);
}

.home-certification:hover {
	color: var(--xly-ink);
	border-color: rgba(42, 148, 225, .42);
	box-shadow: var(--xly-shadow);
}

.home-certification strong {
	color: var(--xly-ink);
}

.home-main .logo-placeholder {
	color: #c9d8ea;
	background: rgba(70, 116, 190, .24);
	border-color: rgba(173, 213, 245, .38);
}

.home-main .logo-placeholder strong {
	color: var(--xly-white);
}

.home-main .quote-grid blockquote {
	color: var(--xly-ink);
	background: var(--xly-white);
	border-color: var(--xly-line);
	box-shadow: var(--xly-shadow);
}

.home-main .quote-grid blockquote p,
.home-main .quote-grid footer {
	color: var(--xly-ink);
}

.home-main .quote-grid footer span {
	color: var(--xly-muted);
}

.home-main .post-card {
	background: var(--xly-white);
	border-color: var(--xly-line);
	box-shadow: var(--xly-shadow);
}

.home-main .post-card__title a {
	color: var(--xly-ink);
}

.home-main .post-card__title a:hover,
.home-main .post-meta a,
.home-main .post-card .text-link {
	color: var(--xly-blue);
}

.home-main .post-card__body > p,
.home-main .post-meta {
	color: var(--xly-muted);
}

.home-main .button--outline {
	color: var(--xly-blue);
	background: transparent;
	border-color: var(--xly-blue);
}

.home-main .button--outline:hover {
	color: var(--xly-white);
	background: var(--xly-blue);
	border-color: var(--xly-blue);
}

.home-main > .cta-band {
	background: linear-gradient(115deg, var(--xly-navy-strong), var(--xly-blue));
	border-top: 0;
}

.home-testimonials {
	padding-top: 92px;
	padding-bottom: 92px;
	background: var(--xly-soft);
}

.home-testimonials__heading {
	max-width: 760px;
	margin-right: auto;
	margin-left: 0;
	margin-bottom: 32px;
	text-align: left;
}

.home-testimonials__heading h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
}

.home-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.home-testimonial {
	min-width: 0;
	overflow: hidden;
	color: var(--xly-ink);
	background: var(--xly-white);
	border: 1px solid var(--xly-line);
	border-radius: var(--xly-radius);
	box-shadow: var(--xly-shadow);
}

.home-testimonial__photo,
.home-testimonial__photo-frame {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
}

.home-testimonial__photo {
	object-fit: cover;
}

.home-testimonial blockquote {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	padding: 26px 28px 28px;
	margin: 0;
}

.home-testimonial blockquote p {
	margin-bottom: 22px;
	color: var(--xly-ink);
	font-size: 16px;
	line-height: 1.65;
}

.home-testimonial blockquote footer {
	margin-top: auto;
	color: var(--xly-blue);
	font-size: 14px;
	font-weight: 700;
}

.home-testimonial blockquote footer span {
	display: block;
	margin-top: 4px;
	color: var(--xly-muted);
	font-size: 12.5px;
	font-weight: 500;
}

.home-testimonial__rating {
	position: relative;
	width: max-content;
	margin-top: auto;
	margin-bottom: 14px;
	color: rgba(139, 211, 244, .24);
	font-size: 18px;
	line-height: 1;
	letter-spacing: 3px;
}

.home-testimonial__rating::before,
.home-testimonial__rating::after {
	display: block;
	content: "★★★★★";
}

.home-testimonial__rating > span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.home-testimonial__rating::after {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--xly-rating, 100%);
	overflow: hidden;
	color: #5bc1f2;
	white-space: nowrap;
}

.home-testimonial__rating + footer {
	margin-top: 0;
}

.home-testimonial__photo-frame {
	display: grid;
	place-items: center;
	color: rgba(42, 148, 225, .45);
	background: var(--xly-soft);
	border-bottom: 1px solid var(--xly-line);
}

.home-testimonial__photo-frame svg {
	width: 54px;
	height: 54px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-testimonial__quote-frame {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	gap: 12px;
	padding: 32px 28px;
}

.home-testimonial__quote-frame span {
	display: block;
	width: 100%;
	height: 9px;
	background: rgba(201, 216, 234, .18);
	border-radius: 999px;
}

.home-testimonial__quote-frame span:nth-child(2) {
	width: 92%;
}

.home-testimonial__quote-frame span:nth-child(3) {
	width: 76%;
}

.home-testimonial__quote-frame span:nth-child(4) {
	width: 42%;
	margin-top: auto;
	background: rgba(139, 211, 244, .24);
}

.home-main > .home-partners {
	padding-top: 84px;
	padding-bottom: 84px;
	background: var(--xly-white);
	border-top: 0;
}

.home-partners__heading {
	max-width: 680px;
	margin-right: auto;
	margin-left: 0;
	margin-bottom: 28px;
	text-align: left;
}

.home-main > .home-partners .home-partners__heading h2 {
	color: var(--xly-ink);
}

.home-main > .home-partners .home-partners__heading .eyebrow {
	color: var(--xly-cyan);
}

.home-partners__logos {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: center;
	gap: 34px 30px;
}

.home-partners__logo {
	display: flex;
	grid-column: span 2;
	width: 100%;
	height: 96px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid var(--xly-line);
	border-radius: 999px;
	background: #fff;
	box-shadow: var(--xly-shadow);
	animation: xly-partner-float 5.4s ease-in-out infinite;
	will-change: transform;
}

.home-partners__logo:nth-child(7) {
	grid-column: 2 / span 2;
}

.home-partners__logo:nth-child(2n) {
	animation-delay: -.9s;
}

.home-partners__logo:nth-child(3n) {
	animation-delay: -1.8s;
	animation-duration: 6.2s;
}

.home-partners__logo--empty {
	background: rgba(255, 255, 255, .76);
	border: 1px solid #d9e4ef;
	border-radius: 10px;
}

.home-partners__logo img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 999px;
	filter: none;
	opacity: 1;
	transition: transform .2s ease, box-shadow .2s ease;
}

.home-partners__logo:hover img {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(0, 7, 25, .28);
}

@keyframes xly-partner-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-7px); }
}

.home-projects {
	padding-top: 92px;
	padding-bottom: 92px;
	background: var(--xly-white);
}

.home-projects__heading {
	max-width: 820px;
	margin: 0 0 34px;
	text-align: left;
}

.home-projects__heading h2 {
	max-width: 820px;
	margin-bottom: 18px;
	font-size: 50px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
}

.home-projects__heading h2 span {
	display: block;
	white-space: nowrap;
}

.home-projects__heading > p:last-child {
	max-width: 700px;
	margin-left: 0;
}

.home-projects__layout {
	display: grid;
	grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
	gap: 16px;
	height: 520px;
}

.home-projects__secondary {
	display: grid;
	grid-template-rows: repeat(3, minmax(0, 1fr));
	gap: 16px;
	min-width: 0;
	min-height: 0;
}

.home-project-card {
	position: relative;
	height: 100%;
	min-height: 0;
	border: 1px solid rgba(173, 213, 245, .22);
	border-radius: 15px;
	box-shadow: 0 18px 42px rgba(0, 8, 28, .2);
}

.home-project-card::after {
	inset: 0;
	background: linear-gradient(to top, rgba(2, 14, 35, .98) 0%, rgba(3, 20, 47, .78) 38%, rgba(3, 20, 47, .12) 78%);
}

.home-project-card img {
	object-fit: cover;
	transition: transform .45s ease;
}

.home-project-card:hover img {
	transform: scale(1.035);
}

.home-project-card > .home-project-card__content {
	padding: 20px 22px;
}

.home-project-card--featured > .home-project-card__content {
	padding: 30px 32px;
}

.home-project-card .home-project-card__type {
	margin-bottom: 7px;
	color: #8bd3f4;
	font-size: 11.5px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.home-project-card h3 {
	margin-bottom: 7px;
	color: var(--xly-white);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -.02em;
}

.home-project-card--featured h3 {
	font-size: 32px;
}

.home-project-card .home-project-card__scope {
	margin-bottom: 0;
	color: #c9d8ea;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
}

/* Home heading rhythm: product-, capability- and conversion-led titles. */
.home-main > .section .section-heading h2,
.home-main > .cta-band h2 {
	max-width: 680px;
	margin-bottom: 14px;
	font-size: clamp(40px, 3.4vw, 44px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
	text-wrap: balance;
}

.home-main > .section .section-heading > p:last-child:not(.eyebrow),
.home-main > .cta-band p:not(.eyebrow) {
	max-width: 680px;
	font-size: 17px;
	line-height: 1.6;
}

.home-services__heading,
.home-projects__heading,
.home-testimonials__heading,
.home-partners__heading {
	max-width: 680px;
	margin-bottom: 32px;
}

.home-services__heading > p:last-child,
.home-projects__heading > p:last-child,
.home-testimonials__heading > p:last-child,
.home-partners__heading > p:last-child {
	margin-right: 0;
	margin-left: 0;
}

.home-news .section-heading {
	max-width: 680px;
}

.home-news {
	background: var(--xly-soft);
}

.home-news .section-heading-row {
	margin-bottom: 44px;
}

@media (max-width: 620px) {
	.home-news .section-heading-row {
		margin-bottom: 34px;
	}
}

.home-main > .cta-band h2 {
	margin-bottom: 14px;
}

@keyframes xly-home-video-zoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.1); }
}

@media (max-width: 960px) {
	.home-partners__logos {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.home-partners__logo,
	.home-partners__logo:nth-child(7) {
		grid-column: auto;
	}

	.home-about__intro-layout {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 36px;
	}

	.home-about__showcase {
		grid-template-columns: 1fr;
	}

	.home-about__video {
		min-height: 470px;
	}

	.home-about__facts {
		grid-template-rows: none;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-about__fact {
		grid-template-columns: 1fr;
	}

	.home-about__fact > svg {
		width: 42px;
		height: 42px;
	}

	.home-advantages__layout {
		grid-template-columns: 1fr;
	}

	.home-advantages__intro {
		min-height: 340px;
	}

	.home-advantages__intro h2 span {
		white-space: normal;
		transform: none;
	}

	.home-certifications__bar {
		padding: 20px 24px;
	}

	.home-certifications__title {
		padding: 0;
	}

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

	.home-services__grid {
		grid-template-columns: 1fr;
	}

	.home-service-card__content {
		min-height: 246px;
	}

	.home-projects__layout {
		grid-template-columns: 1fr;
		height: auto;
	}

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

	.home-project-card--featured {
		height: 480px;
	}

	.home-projects__secondary {
		grid-template-rows: repeat(3, 220px);
	}
}

@media (max-width: 620px) {
	.home-hero .container {
		width: min(calc(100% - 40px), var(--xly-container));
	}

	.home-hero__grid {
		min-height: 650px;
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.home-hero h1 {
		margin-bottom: 18px;
		font-size: clamp(36px, 9.2vw, 40px);
		font-weight: 700;
		line-height: 1.08;
		letter-spacing: -.02em;
	}

	.home-hero__title-line {
		white-space: normal;
	}

	.xly-lang-de .home-hero h1,
	.xly-lang-de .home-hero__nowrap {
		hyphens: auto;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.home-hero__lead {
		font-size: 1rem;
		line-height: 1.45;
	}

	.home-hero .button-row {
		align-items: stretch;
		flex-direction: column;
		margin-top: 16px;
	}

	.home-hero .button-row .button {
		width: 100%;
	}

	.home-hero .hero-trust {
		gap: 0;
		width: 100%;
		padding-top: 0;
		margin-top: 16px;
	}

	.home-hero .hero-trust__card {
		padding: 12px 9px;
	}

	.home-hero .hero-trust__card strong {
		font-size: 1rem;
	}

	.home-hero .hero-trust__card span {
		font-size: .7rem;
	}

	.home-hero__poster img,
	.home-hero__video {
		object-position: 58% center;
	}

	.home-hero__video {
		display: none;
	}

	.home-about {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-about__heading h2 {
		font-size: clamp(32px, 8.5vw, 36px);
	}

	.home-about__heading h2 span {
		white-space: nowrap;
	}

	.home-about__intro-layout {
		gap: 20px;
		margin-bottom: 32px;
	}

	.home-about__showcase {
		gap: 18px;
	}

	.home-about__video {
		min-height: 300px;
		border-radius: 14px;
	}

	.home-about__play {
		width: 68px;
		height: 68px;
	}

	.home-about__facts {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.home-about__fact {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 16px;
		padding: 22px;
	}

	.home-about__fact > svg {
		width: 42px;
		height: 42px;
	}

	.home-about__fact strong {
		font-size: 23px;
	}

	.home-advantages {
		padding-top: 64px;
		padding-bottom: 32px;
	}

	.home-advantages__intro {
		min-height: 0;
		padding: 34px 26px;
	}

	.home-advantages__intro h2 {
		width: 100%;
		max-width: 100%;
		font-size: clamp(32px, 9vw, 36px);
	}

	.xly-lang-de .home-advantages__intro h2,
	.xly-lang-de .home-projects__heading h2 {
		hyphens: auto;
		overflow-wrap: anywhere;
	}

	.home-advantages__grid {
		grid-template-columns: 1fr;
		grid-auto-rows: minmax(205px, auto);
		gap: 16px;
	}

	.home-certifications {
		padding-top: 28px;
		padding-bottom: 64px;
	}

	.home-certifications__bar {
		padding: 18px;
	}

	.home-certifications__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.home-certification {
		gap: 0;
		padding: 0;
		text-align: center;
	}

	.home-certification__image {
		height: auto;
		aspect-ratio: 610 / 793;
	}

	.home-certification strong {
		min-height: 58px;
		padding: 10px 8px 12px;
		font-size: .86rem;
	}

	.home-services {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-services__heading {
		margin-bottom: 28px;
	}

	.home-services__heading h2 {
		font-size: clamp(32px, 9vw, 36px);
	}

	.home-services__heading h2 span {
		white-space: normal;
	}

	.home-service-card {
		grid-template-rows: 240px minmax(0, 1fr);
	}

	.home-service-card__image {
		height: 240px;
	}

	.home-service-card__content {
		min-height: 288px;
		padding: 26px;
	}

	.home-service-card__content h3 {
		font-size: 27px;
		white-space: normal;
	}

	.home-projects {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-projects__heading {
		margin-bottom: 28px;
	}

	.home-projects__heading h2 {
		font-size: clamp(32px, 9vw, 36px);
	}

	.home-projects__heading h2 span {
		white-space: normal;
	}

	.home-project-card--featured {
		height: 390px;
	}

	.home-projects__secondary {
		grid-template-rows: repeat(3, 230px);
		gap: 14px;
	}

	.home-project-card--featured > .home-project-card__content,
	.home-project-card > .home-project-card__content {
		padding: 22px;
	}

	.home-project-card--featured h3 {
		font-size: 27px;
	}

	.home-main > .home-partners {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-testimonials {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.home-testimonials__heading h2 {
		font-size: clamp(32px, 9vw, 36px);
	}

	.home-testimonials__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.home-partners__logos {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 24px;
	}

	.home-partners__logo {
		width: 100%;
		height: 82px;
		flex-basis: auto;
	}

	.home-main > .section .section-heading h2,
	.home-main > .home-partners .home-partners__heading h2,
	.home-main > .cta-band h2 {
		font-size: clamp(32px, 9vw, 36px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__poster,
	.home-hero__video {
		animation: none;
		transform: scale(1.04);
	}

	.home-partners__logo {
		animation: none;
	}
}
