:root {
	--m-eao-accent: #2eb7d6;
	--m-eao-accent-deep: #1a8fb0;
	--m-eao-accent-soft: rgba(46, 183, 214, 0.14);
	--m-eao-ink: #16324a;
	--m-eao-muted: #5b7388;
	--m-eao-bg: #f3f8fb;
	--m-eao-surface: #ffffff;
	--m-eao-line: rgba(22, 50, 74, 0.12);
	--m-eao-danger: #c0392b;
	--m-eao-radius: 14px;
	--m-eao-shadow: 0 18px 40px rgba(22, 50, 74, 0.08);
	--m-eao-font: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--m-eao-font);
	color: var(--m-eao-ink);
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(46, 183, 214, 0.18), transparent 60%),
		radial-gradient(900px 500px at 100% 0%, rgba(26, 143, 176, 0.12), transparent 55%),
		linear-gradient(180deg, #eef7fb 0%, var(--m-eao-bg) 40%, #e9f2f7 100%);
	min-height: 100vh;
	line-height: 1.5;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--m-eao-accent-deep);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.m-eao-skip {
	position: absolute;
	left: -9999px;
}

.m-eao-skip:focus {
	left: 1rem;
	top: 1rem;
	z-index: 100;
	background: #fff;
	padding: 0.5rem 0.75rem;
}

.m-eao-container {
	width: min(1120px, calc(100% - 2rem));
	margin-inline: auto;
}

.m-eao-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(10px);
	background: rgba(243, 248, 251, 0.82);
	border-bottom: 1px solid var(--m-eao-line);
}

.m-eao-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 1rem;
}

.m-eao-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
	text-decoration: none;
	min-width: 0;
	flex: 1 1 auto;
	margin-right: 1rem;
}

.m-eao-logo:hover {
	text-decoration: none;
}

.m-eao-logo img {
	width: auto;
	height: 56px;
	display: block;
	flex: 0 0 auto;
}

.m-eao-logo__fallback {
	display: none;
	place-items: center;
	width: 56px;
	height: 56px;
	background: var(--m-eao-accent);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.04em;
	flex: 0 0 auto;
}

.m-eao-logo__text {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--m-eao-ink);
	max-width: 28rem;
}

.m-eao-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.7rem 1.15rem;
	font: inherit;
	font-weight: 650;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.m-eao-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.m-eao-btn--ghost {
	background: rgba(255, 255, 255, 0.55);
	border-color: rgba(46, 183, 214, 0.45);
	color: var(--m-eao-ink);
}

.m-eao-btn--ghost:hover {
	background: #fff;
	border-color: var(--m-eao-accent);
}

.m-eao-btn--primary {
	background: linear-gradient(135deg, var(--m-eao-accent), var(--m-eao-accent-deep));
	color: #fff;
	box-shadow: 0 10px 24px rgba(46, 183, 214, 0.28);
}

.m-eao-btn--primary:hover {
	filter: brightness(1.03);
}

.m-eao-btn--danger {
	background: #fff;
	border-color: rgba(192, 57, 43, 0.35);
	color: var(--m-eao-danger);
}

.m-eao-btn--block {
	width: 100%;
}

.m-eao-btn__icon {
	display: inline-flex;
}

.m-eao-hero {
	position: relative;
	padding: 2.5rem 0 4rem;
	overflow: hidden;
}

.m-eao-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 70% 20%, rgba(46, 183, 214, 0.22), transparent 70%),
		radial-gradient(ellipse 60% 40% at 20% 80%, rgba(26, 143, 176, 0.12), transparent 70%);
	pointer-events: none;
}

.m-eao-hero__bg::after {
	content: "";
	position: absolute;
	right: -5%;
	bottom: -10%;
	width: 45%;
	height: 55%;
	opacity: 0.22;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1.5px);
	background-size: 14px 14px;
	mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}

.m-eao-hero__content {
	position: relative;
	z-index: 1;
}

.m-eao-hero__title {
	margin: 0 auto 2.25rem;
	max-width: 42rem;
	text-align: center;
	font-size: clamp(1.55rem, 3.4vw, 2.35rem);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--m-eao-ink);
	animation: m-eao-rise 0.7s ease both;
}

.m-eao-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.m-eao-card {
	position: relative;
	min-height: 168px;
	padding: 1.15rem 1.1rem 3.2rem;
	border: 1.5px solid rgba(46, 183, 214, 0.55);
	border-radius: var(--m-eao-radius);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
	backdrop-filter: blur(6px);
	box-shadow: var(--m-eao-shadow);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
	animation: m-eao-rise 0.65s ease both;
}

.m-eao-card:nth-child(1) { animation-delay: 0.05s; }
.m-eao-card:nth-child(2) { animation-delay: 0.1s; }
.m-eao-card:nth-child(3) { animation-delay: 0.15s; }
.m-eao-card:nth-child(4) { animation-delay: 0.2s; }
.m-eao-card:nth-child(5) { animation-delay: 0.25s; }
.m-eao-card:nth-child(6) { animation-delay: 0.3s; }
.m-eao-card:nth-child(7) { animation-delay: 0.35s; }

.m-eao-card:hover {
	transform: translateY(-4px);
	border-color: var(--m-eao-accent);
	box-shadow: 0 22px 44px rgba(26, 143, 176, 0.16);
}

.m-eao-card__title {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
}

.m-eao-card__icon {
	position: absolute;
	right: 1rem;
	bottom: 0.9rem;
	color: var(--m-eao-accent-deep);
	opacity: 0.9;
}

.m-eao-footer {
	padding: 2rem 0 2.5rem;
	color: var(--m-eao-muted);
	font-size: 0.9rem;
	text-align: center;
}

.m-eao-footer p {
	margin: 0;
}

.m-eao-section {
	padding: 2rem 0 3rem;
}

@keyframes m-eao-rise {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.m-eao-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.m-eao-cards {
		grid-template-columns: 1fr;
	}

	.m-eao-hero {
		padding-top: 1.5rem;
	}

	.m-eao-logo__text {
		font-size: 0.78rem;
		max-width: none;
	}

	.m-eao-hero__title {
		max-width: none;
		text-align: left;
	}
}