
:root {
	--ys-ink: #00092a;
	--ys-blue: #015af2;
	--ys-cyan: #71e5f5;
	--ys-muted: #b8c6df;
	--ys-line: #273657;
	--ys-ease: cubic-bezier(.16, 1, .3, 1);
}

.ys-header, .ys-home, .ys-footer {
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	line-height: 1.6;
	background: var(--ys-ink);
	box-sizing: border-box;
}

.ys-header *, .ys-home *, .ys-footer * {
	box-sizing: border-box;
}

.ys-header a, .ys-home a, .ys-footer a {
	color: inherit;
	text-decoration: none;
}

.ys-header button, .ys-home button {
	font: inherit;
	cursor: pointer;
}

.ys-header button:disabled, .ys-home button:disabled {
	cursor: default;
	opacity: .55;
}

.ys-header [hidden], .ys-home [hidden] {
	display: none !important;
}

.ys-header :focus-visible, .ys-home :focus-visible, .ys-footer :focus-visible {
	outline: 3px solid var(--ys-cyan);
	outline-offset: 5px;
}

.ys-home ::selection, .ys-header ::selection, .ys-footer ::selection {
	color: var(--ys-ink);
	background: var(--ys-cyan);
}

.ys-home h1, .ys-home h2, .ys-home h3, .ys-footer-name, .ys-brand {
	font-family: YaninaDisplay, Kanit, sans-serif;
	font-weight: 600;
	letter-spacing: -.025em;
	color: inherit;
	line-height: 1.12;
	margin: 0;
}

.ys-home p {
	margin: 0;
	color: var(--ys-muted);
	font-size: 17px;
	line-height: 1.75;
}

.ys-home h1 {
	font-size: clamp(44px, 5.3vw, 76px);
	letter-spacing: -.035em;
}

.ys-home h2 {
	font-size: clamp(34px, 3.4vw, 50px);
	text-wrap: balance;
}

.ys-home h3 {
	font-size: 27px;
}

.ys-wrap {
	width: min(1240px, calc(100% - 80px));
	margin-inline: auto;
}

.ys-header {
	position: relative;
	z-index: 30;
	border-bottom: 1px solid var(--ys-line);
}

.ys-nav-bar {
	min-height: 98px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.ys-brand {
	display: flex;
	align-items: center;
	gap: 13px;
	font-size: 22px;
	line-height: .95;
	letter-spacing: .045em;
}

.ys-brand svg {
	color: var(--ys-cyan);
}

.ys-brand span span {
	display: block;
	font-size: 11px;
	letter-spacing: .43em;
	margin-top: 7px;
}

.ys-navigation {
	display: flex;
	align-items: center;
	gap: 32px;
	font-size: 15px;
}

.ys-navigation > a:not(.ys-button) {
	padding: 12px 0;
}

.ys-navigation > a:hover, .ys-service-menu summary:hover {
	color: var(--ys-cyan);
}

.ys-service-menu {
	position: relative;
}

.ys-service-menu summary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	cursor: pointer;
}

.ys-service-menu summary::-webkit-details-marker {
	display: none;
}

.ys-service-menu[open] summary svg {
	transform: rotate(180deg);
}

.ys-service-menu > div {
	position: absolute;
	top: calc(100% + 12px);
	left: -24px;
	width: 260px;
	background: #0c1c40;
	border: 1px solid #344665;
	padding: 12px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .33);
	border-radius: 12px;
}

.ys-service-menu > div a {
	display: block;
	padding: 11px 12px;
	border-radius: 6px;
}

.ys-service-menu > div a:hover {
	background: #18315a;
	color: var(--ys-cyan);
}

.ys-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-height: 54px;
	padding: 12px 24px;
	background: var(--ys-blue);
	color: #fff !important;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	transition: background .2s, transform .2s var(--ys-ease);
}

.ys-button:hover {
	background: #0649c3;
	transform: translateY(-2px);
}

.ys-nav-cta {
	min-height: 48px;
	padding: 10px 20px;
	font-size: 14px;
}

.ys-button-outline {
	background: transparent;
	border-color: #7183a4;
}

.ys-button-outline:hover {
	background: #173568;
}

.ys-menu-toggle {
	border: 1px solid var(--ys-line);
	background: transparent;
	color: #fff;
	min-height: 46px;
	padding: 8px 12px;
	border-radius: 6px;
	align-items: center;
	gap: 12px;
}

.ys-skip {
	position: absolute;
	left: 16px;
	top: -100px;
	background: #fff;
	color: var(--ys-ink) !important;
	padding: 12px 20px;
	z-index: 40;
}

.ys-skip:focus {
	top: 8px;
}

.ys-hero {
	display: grid;
	grid-template-columns: 1.03fr 1fr;
	align-items: center;
	gap: 24px;
	padding-top: 62px;
	padding-bottom: 74px;
	min-height: 660px;
}

.ys-hero-copy {
	position: relative;
	z-index: 2;
}

.ys-hero h1 span {
	color: var(--ys-cyan);
}

.ys-hero-copy > p {
	margin-top: 26px;
	max-width: 510px;
}

.ys-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 32px;
}

.ys-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	text-decoration: underline !important;
	text-decoration-color: #647895 !important;
	text-underline-offset: 6px;
	font-size: 16px;
	font-weight: 600;
}

.ys-text-link:hover {
	color: var(--ys-cyan);
	text-decoration-color: currentColor !important;
}

.ys-proof {
	display: flex;
	gap: 15px;
	align-items: center;
	font-size: 13px !important;
	color: #d8e4f5 !important;
	flex-wrap: wrap;
	margin-top: 34px !important;
}

.ys-proof span {
	color: #54709b;
}

.ys-sequence {
	min-width: 0;
	position: relative;
	align-self: center;
}

.ys-art {
	position: relative;
	width: 100%;
	aspect-ratio: 1140/1074;
	isolation: isolate;
}

.ys-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
	will-change: auto;
}

.ys-layer img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ys-layer-code {
	clip-path: inset(24% 45% 28% 0);
	transform-origin: 29% 48%;
}

.ys-layer-logic {
	clip-path: polygon(55% 31%, 92% 31%, 92% 73%, 70% 73%, 70% 68%, 55% 64%);
	transform-origin: 74% 52%;
}

.ys-layer-build {
	clip-path: polygon(44% 64%, 55% 64%, 70% 68%, 70% 93%, 44% 93%);
	transform-origin: 57% 77%;
}

.ys-layer-launch {
	clip-path: inset(0 0 69% 55%);
	transform-origin: 70% 18%;
}

.ys-connections {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .3s;
}

.ys-connections path {
	stroke: var(--ys-cyan);
	stroke-width: 2;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}

.ys-sequence.is-playing .ys-connections {
	opacity: .6;
}

.ys-sequence.is-playing .ys-connections path {
	animation: ys-connect 4.4s linear both;
}

.ys-sequence.is-playing .ys-layer-code {
	animation: ys-code 4.4s var(--ys-ease) both;
}

.ys-sequence.is-playing .ys-layer-logic {
	animation: ys-logic 4.4s var(--ys-ease) both;
}

.ys-sequence.is-playing .ys-layer-build {
	animation: ys-build 4.4s var(--ys-ease) both;
}

.ys-sequence.is-playing .ys-layer-launch {
	animation: ys-launch 4.4s var(--ys-ease) both;
}

.ys-sequence.is-paused .ys-layer, .ys-sequence.is-paused .ys-connections path {
	animation-play-state: paused;
}

.ys-sequence[data-stage="0"] .ys-layer-code, .ys-sequence[data-stage="1"] .ys-layer-logic, .ys-sequence[data-stage="2"] .ys-layer-build, .ys-sequence[data-stage="3"] .ys-layer-launch {
	filter: brightness(1.2);
}

.ys-sequence-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: -10px;
	position: relative;
	z-index: 3;
}

.ys-stage-buttons {
	display: flex;
	gap: 2px;
}

.ys-stage-buttons button {
	padding: 8px 9px;
	min-height: 44px;
	color: var(--ys-muted);
	background: transparent;
	border: 0;
	border-bottom: 2px solid var(--ys-line);
	font-size: 13px;
	font-weight: 600;
}

.ys-stage-buttons button:hover, .ys-stage-buttons button[aria-pressed="true"] {
	color: var(--ys-cyan);
	border-color: var(--ys-cyan);
}

.ys-play {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid #526788;
	border-radius: 6px;
	background: transparent;
	color: #fff;
	font-size: 12px !important;
	white-space: nowrap;
}

.ys-play:hover {
	background: #142958;
}

.ys-sequence-caption {
	font-size: 12px !important;
	line-height: 1.5 !important;
	min-height: 36px;
	margin-top: 12px !important;
	color: #a9bddb !important;
}

.ys-services {
	padding-block: 90px 104px;
	border-top: 1px solid var(--ys-line);
}

.ys-heading {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: end;
	margin-bottom: 46px;
}

.ys-service-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 72px;
}

.ys-service {
	padding: 30px 0 32px;
	border-top: 1px solid var(--ys-line);
}

.ys-service-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.ys-service-top svg {
	color: var(--ys-cyan);
	transition: transform .25s var(--ys-ease);
	flex-shrink: 0;
}

.ys-service:hover .ys-service-top svg {
	transform: translateX(7px);
}

.ys-service:hover h3 {
	color: var(--ys-cyan);
}

.ys-service strong {
	font-weight: 500;
	color: #e2ecfa;
	font-size: 17px;
	display: block;
	margin-bottom: 10px;
}

.ys-service p {
	font-size: 15px;
	max-width: 54ch;
}

.ys-world {
	background: #061538;
	padding: 80px 0 88px;
}

.ys-world-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 64px;
}

.ys-world-heading p {
	max-width: 370px;
}

.ys-world figure {
	margin: 42px 0 44px;
}

.ys-world img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}

.ys-world figcaption {
	font-size: 12px;
	color: #a5bad8;
	margin-top: 10px;
}

.ys-process {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.ys-process li {
	border-top: 1px solid #344568;
	padding-top: 18px;
}

.ys-process span {
	display: block;
	color: var(--ys-cyan);
	font-size: 13px;
	font-variant-numeric: tabular-nums;
	margin-bottom: 14px;
}

.ys-process h3 {
	font-size: 25px;
	margin-bottom: 14px;
}

.ys-process p {
	font-size: 15px;
}

.ys-about {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 90px;
	padding-block: 100px;
}

.ys-about p + p {
	margin-top: 18px;
}

.ys-about .ys-text-link {
	margin-top: 24px;
}

.ys-reading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	padding: 42px 0 68px;
	border-top: 1px solid var(--ys-line);
}

.ys-reading h2 {
	font-size: 36px;
	margin-bottom: 14px;
}

.ys-reading p {
	max-width: 62ch;
	font-size: 16px;
}

.ys-reading .ys-button {
	flex-shrink: 0;
}

.ys-contact {
	background: #0153d9;
	padding-block: 80px;
}

.ys-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
}

.ys-contact h2 {
	font-size: clamp(42px, 4.6vw, 66px);
	margin-bottom: 24px;
}

.ys-contact p {
	color: #e1ebff;
	max-width: 430px;
}

.ys-email {
	font-size: clamp(17px, 2vw, 24px);
	display: inline-block;
	margin-block: 22px 10px;
	text-decoration: underline !important;
	text-underline-offset: 7px;
	overflow-wrap: anywhere;
}

.ys-contact-note {
	font-size: 13px !important;
	margin-top: 14px !important;
}

.ys-contact-note a {
	text-decoration: underline !important;
	text-underline-offset: 4px;
}

.ys-form .wpr-form-field-group {
	width: 100% !important;
	margin-bottom: 20px !important;
	padding: 0 !important;
}

.ys-form .wpr-form-fields-wrap {
	margin: 0 !important;
}

.ys-form .wpr-form-field-label {
	color: #fff !important;
	font-family: Arial, sans-serif !important;
	font-size: 14px !important;
	margin-bottom: 8px !important;
}

.ys-form input:not([type="hidden"]), .ys-form textarea {
	background: #fff !important;
	color: #001134 !important;
	border: 1px solid transparent !important;
	border-radius: 6px !important;
	font: 16px/1.5 Arial, sans-serif !important;
	padding: 13px 16px !important;
	width: 100% !important;
	min-height: 50px;
	caret-color: var(--ys-blue);
}

.ys-form input::placeholder, .ys-form textarea::placeholder {
	color: #526281 !important;
}

.ys-form textarea {
	min-height: 144px;
	resize: vertical;
}

.ys-form .wpr-button {
	background: #00092a !important;
	color: #fff !important;
	min-height: 52px !important;
	border-radius: 6px !important;
	border: 0 !important;
	padding: 14px 24px !important;
	font: 600 16px/1.4 Arial, sans-serif !important;
}

.ys-form .wpr-button:hover {
	background: #142a56 !important;
}

.ys-form .wpr-form-message {
	color: #fff !important;
}

.ys-footer {
	padding-block: 44px 24px;
}

.ys-footer-top, .ys-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.ys-footer-top {
	padding-bottom: 28px;
}

.ys-footer-name {
	font-size: 23px;
	letter-spacing: .04em;
}

.ys-footer-top span, .ys-footer-top > a:not(.ys-footer-name) {
	font-size: 14px;
	color: var(--ys-muted);
}

.ys-footer-bottom {
	border-top: 1px solid var(--ys-line);
	padding-block: 25px;
	font-size: 12px;
	color: var(--ys-muted);
}

.ys-footer nav {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.ys-footer a:hover {
	color: var(--ys-cyan);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ys-sponsors {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 16px;
	border-top: 1px solid var(--ys-line);
	font-size: 11px;
	color: #9dafcc;
}

.ys-sponsors a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ys-archive-title {
	font: 600 38px/1.2 YaninaDisplay, sans-serif;
	padding: 30px 40px;
	color: #fff;
}

@keyframes ys-code {
	0%, 100% {
		transform: none;
	}
	
	10% {
		transform: translate(10px, -20px) rotate(-5deg);
	}
	
	23%, 78% {
		transform: translate(8px, -7px) rotate(-2deg);
	}
}

@keyframes ys-logic {
	0%, 16%, 100% {
		transform: none;
	}
	
	30% {
		transform: translate(-16px, -18px) rotate(7deg);
	}
	
	45%, 78% {
		transform: translate(-7px, -6px) rotate(2deg);
	}
}

@keyframes ys-build {
	0%, 36%, 100% {
		transform: none;
	}
	
	50% {
		transform: translate(0, -27px) rotate(-8deg) scale(1.06);
	}
	
	65%, 78% {
		transform: translate(0, -11px) rotate(2deg);
	}
}

@keyframes ys-launch {
	0%, 56%, 100% {
		transform: none;
		opacity: 1;
	}
	
	64% {
		transform: translate(7px, 7px) rotate(-8deg);
	}
	
	79% {
		transform: translate(-58px, -56px) rotate(-8deg) scale(.92);
		opacity: 1;
	}
	
	86% {
		transform: translate(-73px, -72px) rotate(-8deg) scale(.86);
		opacity: 0;
	}
	
	88% {
		transform: translate(20px, 24px);
		opacity: 0;
	}
	
	100% {
		transform: none;
		opacity: 1;
	}
}

@keyframes ys-connect {
	0% {
		stroke-dashoffset: 1;
	}
	
	70%, 90% {
		stroke-dashoffset: 0;
	}
	
	100% {
		stroke-dashoffset: 0;
		opacity: 0;
	}
}

@media (min-width:901px) {
	.ys-menu-toggle {
		display: none !important;
	}
}

@media (max-width:1100px) {
	.ys-wrap {
		width: calc(100% - 56px);
	}
	
	.ys-navigation {
		gap: 22px;
	}
	
	.ys-hero {
		gap: 12px;
	}
	
	.ys-hero h1 {
		font-size: 54px;
	}
	
	.ys-actions {
		gap: 15px;
	}
	
	.ys-stage-buttons button {
		padding: 8px 6px;
	}
	
	.ys-play {
		padding: 8px;
	}
	
	.ys-service-list {
		column-gap: 42px;
	}
	
	.ys-contact-grid {
		gap: 60px;
	}
}

@media (max-width:900px) {
	.ys-nav-bar {
		flex-wrap: wrap;
		min-height: 80px;
		padding-block: 18px;
	}
	
	.ys-menu-toggle:not([hidden]) {
		display: flex;
	}
	
	.ys-navigation {
		width: 100%;
		flex-wrap: wrap;
		gap: 18px;
		align-items: start;
	}
	
	.ys-navigation.ys-collapsed {
		display: none;
	}
	
	.ys-service-menu > div {
		left: 0;
		z-index: 4;
	}
	
	.ys-hero {
		grid-template-columns: 1fr 1fr;
		padding-top: 44px;
		min-height: 560px;
	}
	
	.ys-hero h1 {
		font-size: 44px;
	}
	
	.ys-hero-copy > p {
		font-size: 16px;
	}
	
	.ys-sequence-controls {
		flex-wrap: wrap;
	}
	
	.ys-heading {
		gap: 40px;
	}
	
	.ys-about {
		gap: 40px;
	}
	
	.ys-process {
		gap: 28px;
	}
	
	.ys-contact-grid {
		gap: 40px;
	}
}

@media (max-width:650px) {
	.ys-wrap {
		width: calc(100% - 40px);
	}
	
	.ys-nav-bar {
		gap: 20px;
	}
	
	.ys-navigation {
		flex-direction: column;
		gap: 5px;
	}
	
	.ys-navigation > a {
		width: 100%;
	}
	
	.ys-service-menu {
		width: 100%;
	}
	
	.ys-service-menu > div {
		position: static;
		width: 100%;
		box-shadow: none;
		margin-bottom: 10px;
	}
	
	.ys-hero {
		grid-template-columns: 1fr;
		gap: 8px;
		padding-top: 38px;
		padding-bottom: 44px;
	}
	
	.ys-hero h1 {
		font-size: 46px;
		line-height: 1.08;
	}
	
	.ys-hero-copy > p {
		margin-top: 22px;
	}
	
	.ys-actions {
		margin-top: 25px;
		gap: 12px;
	}
	
	.ys-actions .ys-button {
		padding-inline: 18px;
	}
	
	.ys-actions .ys-text-link {
		font-size: 14px;
	}
	
	.ys-proof {
		margin-top: 24px !important;
		font-size: 12px !important;
		gap: 10px;
	}
	
	.ys-art {
		max-width: 460px;
		margin-inline: auto;
	}
	
	.ys-sequence {
		margin-top: 12px;
	}
	
	.ys-sequence-controls {
		flex-wrap: nowrap;
	}
	
	.ys-stage-buttons button {
		font-size: 12px;
		padding-inline: 7px;
	}
	
	.ys-sequence-caption {
		min-height: 18px;
	}
	
	.ys-services {
		padding-block: 52px 46px;
	}
	
	.ys-heading {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 30px;
	}
	
	.ys-home h2 {
		font-size: 36px;
	}
	
	.ys-service-list {
		grid-template-columns: 1fr;
	}
	
	.ys-service {
		padding: 25px 0;
	}
	
	.ys-service h3 {
		font-size: 25px;
	}
	
	.ys-service-top {
		margin-bottom: 16px;
	}
	
	.ys-world {
		padding-block: 50px;
	}
	
	.ys-world-heading {
		display: block;
	}
	
	.ys-world-heading p {
		margin-top: 22px;
	}
	
	.ys-world figure {
		margin: 28px 0 30px;
	}
	
	.ys-world img {
		aspect-ratio: 1.4;
		object-fit: cover;
		object-position: 65%;
	}
	
	.ys-process {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.ys-process li {
		display: grid;
		grid-template-columns: 32px 1fr;
		gap: 12px;
	}
	
	.ys-process span {
		margin-top: 4px;
		grid-row: span 2;
	}
	
	.ys-process h3 {
		margin: 0;
	}
	
	.ys-process p {
		grid-column: 2;
	}
	
	.ys-about {
		padding-block: 54px;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.ys-reading {
		padding: 32px 0 50px;
		display: block;
	}
	
	.ys-reading .ys-button {
		margin-top: 24px;
	}
	
	.ys-contact {
		padding-block: 52px;
	}
	
	.ys-contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.ys-contact h2 {
		font-size: 46px;
	}
	
	.ys-footer-top {
		align-items: start;
		flex-direction: column;
		gap: 16px;
	}
	
	.ys-footer-bottom {
		gap: 16px;
	}
	
	.ys-footer nav {
		gap: 18px;
	}
	
	.ys-sponsors {
		gap: 12px;
	}
	
	.ys-sponsors span {
		width: 100%;
	}
}

@media (prefers-reduced-motion:reduce) {
	.ys-header *, .ys-home *, .ys-footer * {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
	
	.ys-sequence .ys-connections {
		display: none;
	}
	
	.ys-button:hover {
		transform: none;
	}
}

.ys-home {
	background: #fff;
	color: var(--ys-ink);
}

.ys-home p {
	color: #53617a;
}

.ys-home :focus-visible {
	outline-color: var(--ys-blue);
}

.ys-hero-surface {
	color: #fff;
	background: radial-gradient(ellipse at 100% 95%, #8ba9ed 0%, #557bcf 17%, transparent 55%), linear-gradient(112deg, #00092a 15%, #133777 60%, #285bbb 100%);
}

.ys-hero-surface .ys-hero-copy > p {
	color: #d4e1f5;
}

.ys-hero-surface :focus-visible {
	outline-color: #fff;
}

.ys-hero-surface .ys-sequence-controls {
	background: #031541;
	padding: 9px 12px;
	border-radius: 8px;
}

.ys-hero-surface .ys-sequence-caption {
	color: #fff !important;
	text-shadow: 0 1px 3px #092458;
}

.ys-hero-surface .ys-text-link {
	color: #fff;
}

.ys-services {
	--ys-line: #dce4ef;
	border-top: 0;
}

.ys-service strong {
	color: #173563;
}

.ys-service-top svg, .ys-service:hover h3 {
	color: var(--ys-blue);
}

.ys-home .ys-text-link:hover {
	color: #0150d2;
}

.ys-hero-surface .ys-text-link:hover, .ys-world .ys-text-link:hover {
	color: #fff;
}

.ys-world {
	color: #fff;
	background: radial-gradient(ellipse at 50% 0%, #123b80 0%, transparent 65%), #061538;
}

.ys-world p {
	color: #b8ccec;
}

.ys-about .ys-text-link {
	color: var(--ys-blue);
}

.ys-contact {
	color: #fff;
	background: radial-gradient(ellipse at 100% 100%, #1e80f1, transparent 58%), linear-gradient(120deg, #0646bd, #00277a);
}

.ys-contact p {
	color: #e1ebff;
}

.ys-track-record {
	padding-block: 62px;
	color: #fff;
	background: radial-gradient(ellipse at 70% 100%, #466ab4, transparent 65%), linear-gradient(105deg, #00103b 0%, #174aac 60%, #183b92 100%);
}

.ys-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 36px;
	margin-block: 0;
}

.ys-metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.ys-metric dt {
	font-size: 16px;
	color: #fff;
	text-align: center;
	order: 2;
}

.ys-metric dd {
	font-family: YaninaDisplay, Kanit, sans-serif;
	font-size: clamp(48px, 5vw, 76px);
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.ys-client-workflow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 86px;
	padding-block: 96px;
}

.ys-workflow-visual > p {
	margin-top: 24px;
	max-width: 49ch;
}

.ys-workflow-visual figure {
	margin: 32px 0 20px;
	overflow: hidden;
	border-radius: 12px;
	background: #e5eafa;
	aspect-ratio: 1.45;
}

.ys-workflow-visual figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ys-workflow-steps {
	list-style: none;
	padding: 0;
	margin: 0;
	align-self: center;
}

.ys-workflow-steps li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 18px;
	border-top: 1px solid #dce4ef;
	padding: 22px 0;
}

.ys-workflow-steps li:first-child {
	padding-top: 0;
	border-top: 0;
}

.ys-workflow-number {
	color: var(--ys-blue);
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	margin-top: 4px;
}

.ys-workflow-steps h3 {
	font-size: 23px;
	margin-bottom: 9px;
}

.ys-workflow-steps p {
	font-size: 15px;
}

.ys-chart-section {
	color: #fff;
	padding-block: 78px;
	background: radial-gradient(ellipse at 95% 0%, #407ace, transparent 63%), linear-gradient(112deg, #001345, #0c3792 65%, #19488f);
}

.ys-chart-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 80px;
	align-items: center;
}

.ys-chart-grid > div > p {
	color: #e1ecff;
	margin-top: 24px;
	max-width: 47ch;
}

.ys-chart-caption {
	font-size: 13px !important;
	color: #bbd5ff !important;
}

.ys-chart-legend {
	display: flex;
	gap: 18px;
	justify-content: center;
	margin-bottom: 25px;
	flex-wrap: wrap;
}

.ys-chart-legend button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: #fff;
	border: 0;
	padding: 8px 4px;
	min-height: 44px;
	font-size: 14px;
}

.ys-chart-legend button[aria-pressed="false"] {
	opacity: .5;
	text-decoration: line-through;
}

.ys-chart-swatch {
	display: inline-block;
	width: 24px;
	height: 12px;
	border-radius: 2px;
}

.ys-series-0 {
	background: #88b4ff;
	color: #001e4a;
}

.ys-series-1 {
	background: #92feff;
	color: #001e4a;
}

.ys-series-2 {
	background: #fff;
	color: #001e4a;
}

.ys-chart-row {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 12px;
	align-items: center;
	margin-block: 22px;
}

.ys-chart-row > strong {
	font-size: 14px;
	font-weight: 500;
}

.ys-chart-track {
	display: flex;
	width: 100%;
	min-height: 42px;
	align-items: stretch;
	border-bottom: 1px solid #7393cd;
}

.ys-chart-segment {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--segment-width);
	min-width: 0;
	height: 40px;
	transition: width .45s var(--ys-ease), opacity .2s, filter .2s;
	cursor: default;
	border-right: 1px solid rgba(20, 55, 99, .19);
	outline-offset: 3px;
}

.ys-chart-segment.is-excluded {
	width: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	border: 0;
}

.ys-chart-value {
	font-size: 12px;
	font-weight: 700;
	pointer-events: none;
}

.ys-chart-segment:hover, .ys-chart-segment:focus-visible {
	filter: brightness(1.08);
	z-index: 4;
}

.ys-chart-tooltip {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	padding: 7px 11px;
	background: #001032;
	color: #fff;
	border: 1px solid #6f8cbb;
	border-radius: 5px;
	white-space: nowrap;
	font-size: 12px;
	pointer-events: none;
	opacity: 0;
	transition: opacity .15s;
}

.ys-chart-segment:hover .ys-chart-tooltip, .ys-chart-segment:focus-visible .ys-chart-tooltip {
	opacity: 1;
}

.ys-chart-axis {
	display: flex;
	justify-content: space-between;
	margin-left: 60px;
	color: #d6e6ff;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
}

.ys-chart-data {
	margin: 24px 0 0 60px;
	font-size: 13px;
}

.ys-chart-data summary {
	cursor: pointer;
	min-height: 44px;
	padding: 10px 0;
	color: #d7e7ff;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ys-chart-data table {
	width: 100%;
	border-collapse: collapse;
	color: #fff;
	font-size: 13px;
}

.ys-chart-data caption {
	text-align: left;
	padding-block: 8px;
}

.ys-chart-data th, .ys-chart-data td {
	padding: 9px 6px;
	text-align: left;
	border-bottom: 1px solid #7295cb;
	background: transparent;
}

.ys-chart-section :focus-visible {
	outline-color: #fff;
}

.ys-latest {
	padding-block: 88px 92px;
}

.ys-latest .ys-heading {
	align-items: center;
}

.ys-latest .ys-heading p {
	margin-top: 20px;
}

.ys-latest .ys-heading > .ys-text-link {
	justify-self: end;
	color: var(--ys-blue);
}

.ys-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px 32px;
}

.ys-news-card {
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.ys-news-image {
	display: block;
	aspect-ratio: 16/10;
	overflow: hidden;
	border-radius: 10px;
	background: #e5ecf6;
	margin-bottom: 22px;
}

.ys-news-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--ys-ease);
}

.ys-news-card:hover .ys-news-image img {
	transform: scale(1.045);
}

.ys-news-card time {
	color: #5c6b83;
	font-size: 12px;
	margin-bottom: 12px;
}

.ys-news-card h3 {
	font-size: 23px;
	line-height: 1.25;
	margin-bottom: 14px;
	text-wrap: pretty;
}

.ys-news-card h3 a:hover {
	color: var(--ys-blue);
}

.ys-news-card > p {
	font-size: 15px;
	margin-bottom: 18px;
}

.ys-news-card > .ys-text-link {
	margin-top: auto;
	color: var(--ys-blue);
}

.ys-news-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 46px;
	flex-wrap: wrap;
}

.ys-news-more .ys-button-outline {
	color: var(--ys-blue) !important;
	border-color: #abc1e8;
}

.ys-news-more .ys-button-outline:hover {
	background: #edf3ff;
}

.ys-news-more p {
	font-size: 14px;
}

@supports (interpolate-size:allow-keywords) {
	.ys-chart-data {
		interpolate-size: allow-keywords;
	}
	
	.ys-chart-data::details-content {
		height: 0;
		overflow: clip;
		transition: height .3s ease, content-visibility .3s allow-discrete;
	}
	
	.ys-chart-data[open]::details-content {
		height: auto;
	}
}

@media (prefers-reduced-motion:no-preference) {
	@supports (animation-timeline:view()) {
		.ys-workflow-visual figure img {
			animation: ys-photo-drift linear both;
			animation-range: entry 0% exit 100%;
		}
	}
}

@keyframes ys-photo-drift {
	from {
		transform: scale(1.05) translateY(-7px);
	}
	
	to {
		transform: scale(1.05) translateY(7px);
	}
}

@media (max-width:1100px) {
	.ys-client-workflow {
		gap: 50px;
	}
	
	.ys-chart-grid {
		gap: 45px;
	}
	
	.ys-hero-surface .ys-sequence-controls {
		padding: 8px;
	}
	
	.ys-chart-value {
		font-size: 11px;
	}
}

@media (max-width:900px) {
	.ys-hero-surface .ys-sequence-controls {
		flex-wrap: wrap;
		gap: 9px;
	}
	
	.ys-chart-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.ys-client-workflow {
		gap: 35px;
	}
	
	.ys-metrics {
		gap: 20px;
	}
	
	.ys-metric dt {
		font-size: 14px;
	}
	
	.ys-news-grid {
		gap: 30px 22px;
	}
	
	.ys-news-card h3 {
		font-size: 21px;
	}
}

@media (max-width:650px) {
	.ys-hero-surface {
		background: radial-gradient(ellipse at 100% 92%, #7395df, transparent 57%), linear-gradient(130deg, #00092a 15%, #0c2d71 58%, #254c9a);
	}
	
	.ys-hero-surface .ys-sequence-controls {
		flex-wrap: nowrap;
		padding: 6px;
	}
	
	.ys-track-record {
		padding-block: 42px;
	}
	
	.ys-metrics {
		grid-template-columns: 1fr 1fr;
		gap: 34px 20px;
	}
	
	.ys-metric dd {
		font-size: 53px;
	}
	
	.ys-metric dt {
		font-size: 13px;
	}
	
	.ys-client-workflow {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-block: 55px;
	}
	
	.ys-workflow-visual figure {
		margin-top: 25px;
	}
	
	.ys-workflow-steps li {
		gap: 12px;
		padding-block: 18px;
	}
	
	.ys-workflow-steps h3 {
		font-size: 22px;
	}
	
	.ys-chart-section {
		padding-block: 52px;
	}
	
	.ys-chart-legend {
		gap: 10px;
		justify-content: start;
	}
	
	.ys-chart-legend button {
		font-size: 12px;
	}
	
	.ys-chart-swatch {
		width: 18px;
	}
	
	.ys-chart-row {
		grid-template-columns: 36px 1fr;
		gap: 8px;
		margin-block: 20px;
	}
	
	.ys-chart-axis, .ys-chart-data {
		margin-left: 44px;
	}
	
	.ys-chart-value {
		font-size: 10px;
	}
	
	.ys-chart-tooltip {
		font-size: 11px;
		white-space: normal;
		min-width: 105px;
		text-align: center;
	}
	
	.ys-latest {
		padding-block: 54px;
	}
	
	.ys-latest .ys-heading {
		gap: 15px;
	}
	
	.ys-latest .ys-heading > .ys-text-link {
		justify-self: start;
	}
	
	.ys-news-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}
	
	.ys-news-card h3 {
		font-size: 25px;
	}
	
	.ys-news-image {
		aspect-ratio: 16/10;
		margin-bottom: 18px;
	}
	
	.ys-news-more {
		margin-top: 32px;
	}
}

@media (prefers-reduced-motion:reduce) {
	.ys-chart-data::details-content {
		transition: none !important;
	}
	
	.ys-workflow-visual figure img {
		animation: none !important;
		transform: none !important;
	}
	
	.ys-news-card:hover .ys-news-image img {
		transform: none;
	}
}
