:root {
	--meo-blue: #1554a4;
	--meo-blue-dark: #0c3266;
	--meo-yellow: #f8c514;
	--meo-sky: #2da9e9;
	--meo-green: #32a852;
	--meo-orange: #f28c00;
	--meo-bg: #f3f5f7;
	--meo-card: #ffffff;
	--meo-text: #202936;
	--meo-muted: #667085;
	--meo-border: #d9e0ea;
	--meo-shadow: 0 16px 40px rgba(12, 50, 102, 0.1);
	--meo-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--meo-bg);
	color: var(--meo-text);
	font-family: var(--meo-font);
	line-height: 1.55;
}

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

a {
	color: var(--meo-blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
}

button,
input {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.meo-container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: var(--meo-card);
	box-shadow: 0 2px 18px rgba(12, 50, 102, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(260px, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding-block: 14px;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--meo-blue-dark);
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.site-title__mark {
	display: inline-grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 8px;
	background: var(--meo-blue);
	color: #ffffff;
	font-size: 0.9rem;
}

.site-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	border: 1px solid var(--meo-border);
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
}

.site-search input {
	min-width: 0;
	border: 0;
	padding: 13px 14px;
	color: var(--meo-text);
}

.site-search button,
.add-request-button,
.button {
	border: 0;
	border-radius: 7px;
	cursor: pointer;
	font-weight: 800;
	text-decoration: none;
}

.site-search button {
	margin: 4px;
	padding: 10px 16px;
	background: var(--meo-blue);
	color: #ffffff;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	font-size: 0.9rem;
	white-space: nowrap;
}

.header-actions a {
	color: var(--meo-text);
	font-weight: 700;
	text-decoration: none;
}

.notification-link,
.request-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border-radius: 999px;
}

.notification-link {
	width: 34px;
	background: var(--meo-yellow);
	color: var(--meo-blue-dark);
}

.request-count {
	padding-inline: 12px;
	background: #e8f2ff;
	color: var(--meo-blue-dark);
	font-weight: 800;
}

.primary-nav-wrap {
	border-top: 1px solid var(--meo-border);
	background: var(--meo-blue-dark);
}

.primary-nav-inner {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	width: 100%;
	border: 0;
	background: transparent;
	color: #ffffff;
	padding: 13px 0;
	font-weight: 800;
}

.menu-toggle span {
	width: 18px;
	height: 2px;
	background: currentColor;
	box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.primary-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 13px 12px;
	color: #ffffff;
	font-size: 0.93rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus {
	background: rgba(255, 255, 255, 0.12);
}

.hero {
	padding: 36px 0 28px;
	background:
		linear-gradient(135deg, rgba(21, 84, 164, 0.96), rgba(12, 50, 102, 0.94)),
		var(--meo-blue);
	color: #ffffff;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	align-items: center;
	gap: 38px;
}

.hero__eyebrow,
.section-kicker {
	margin: 0 0 10px;
	color: var(--meo-orange);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
	margin: 0;
	font-size: clamp(2.35rem, 5vw, 4.6rem);
	line-height: 1.04;
}

.hero__text {
	max-width: 680px;
	margin: 20px 0 28px;
	font-size: 1.18rem;
	color: #dbeafe;
}

.hero__actions,
.product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 18px;
}

.button--primary {
	background: var(--meo-yellow);
	color: var(--meo-blue-dark);
}

.button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}

.hero__visual {
	position: relative;
	min-height: 330px;
}

.supply-card {
	position: absolute;
	border-radius: 8px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.supply-card--notebook {
	inset: 24px 88px 42px 20px;
	background: repeating-linear-gradient(#ffffff 0 22px, #dbeafe 23px 24px);
	border-left: 20px solid var(--meo-orange);
}

.supply-card--pencil {
	right: 18px;
	top: 70px;
	width: 54px;
	height: 210px;
	background: linear-gradient(var(--meo-yellow), var(--meo-orange));
	transform: rotate(16deg);
}

.supply-card--folder {
	right: 70px;
	bottom: 10px;
	width: 220px;
	height: 120px;
	background: var(--meo-sky);
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.promo-card {
	border-radius: 8px;
	padding: 20px;
	color: var(--meo-blue-dark);
}

.promo-card h2,
.promo-card p {
	margin: 0;
}

.promo-card p {
	margin-top: 6px;
	color: rgba(12, 50, 102, 0.78);
}

.promo-card--yellow {
	background: var(--meo-yellow);
}

.promo-card--blue {
	background: #d8edff;
}

.brand-strip,
.meo-section,
.dashboard-preview {
	padding-block: 48px;
}

.brand-strip {
	background: #ffffff;
}

.brand-strip h2 {
	margin: 0 0 16px;
	font-size: 1rem;
	color: var(--meo-muted);
}

.brand-list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.brand-list span {
	display: grid;
	min-height: 54px;
	place-items: center;
	border: 1px solid var(--meo-border);
	border-radius: 8px;
	background: #ffffff;
	color: var(--meo-blue-dark);
	font-weight: 900;
}

.section-heading {
	margin-bottom: 24px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	line-height: 1.15;
}

.section-heading p {
	max-width: 660px;
	margin: 8px 0 0;
	color: var(--meo-muted);
}

.section-heading--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.category-grid,
.product-grid,
.benefit-grid,
.dashboard-grid {
	display: grid;
	gap: 18px;
}

.category-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-card,
.product-card,
.metric-card,
.movement-card,
.request-list article,
.notification-list article {
	border: 1px solid var(--meo-border);
	border-radius: 8px;
	background: var(--meo-card);
	box-shadow: var(--meo-shadow);
}

.category-card {
	padding: 18px;
}

.category-card__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 900;
}

.category-card--blue .category-card__icon,
.category-card--navy .category-card__icon {
	background: var(--meo-blue);
}

.category-card--yellow .category-card__icon {
	background: var(--meo-yellow);
	color: var(--meo-blue-dark);
}

.category-card--green .category-card__icon {
	background: var(--meo-green);
}

.category-card--orange .category-card__icon {
	background: var(--meo-orange);
}

.category-card--sky .category-card__icon {
	background: var(--meo-sky);
}

.category-card h3 {
	min-height: 48px;
	margin: 14px 0 12px;
	font-size: 1rem;
}

.category-card a,
.product-card__actions a,
.section-heading--row a {
	font-weight: 800;
}

.product-section:nth-of-type(even) {
	background: #ffffff;
}

.product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
	overflow: hidden;
}

.product-card__image {
	display: grid;
	min-height: 150px;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(45, 169, 233, 0.14), rgba(248, 197, 20, 0.24)),
		#f8fafc;
}

.product-card__image span {
	display: block;
	width: 72px;
	height: 92px;
	border-radius: 8px;
	background: var(--meo-blue);
	box-shadow: 14px 12px 0 var(--meo-yellow), -12px 18px 0 var(--meo-green);
}

.product-card__body {
	padding: 16px;
}

.product-card__brand {
	margin: 0 0 6px;
	color: var(--meo-muted);
	font-size: 0.88rem;
	font-weight: 800;
}

.product-card h3 {
	min-height: 52px;
	margin: 0 0 12px;
	font-size: 1.02rem;
	line-height: 1.25;
}

.product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.product-card__meta strong {
	color: var(--meo-blue-dark);
	font-size: 1.12rem;
}

.product-card__meta span {
	border-radius: 999px;
	padding: 5px 9px;
	background: #e9f8ee;
	color: #1f7a3a;
	font-size: 0.8rem;
	font-weight: 900;
}

.add-request-button {
	padding: 10px 12px;
	background: var(--meo-blue);
	color: #ffffff;
}

.organization-section {
	padding-block: 56px;
	background: var(--meo-blue-dark);
	color: #ffffff;
}

.organization-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.organization-section p {
	color: #dbeafe;
}

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

.benefit-grid article {
	border-radius: 8px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.12);
}

.benefit-grid span {
	display: block;
	width: 32px;
	height: 6px;
	border-radius: 999px;
	background: var(--meo-yellow);
}

.benefit-grid h3 {
	margin: 14px 0 0;
}

.dashboard-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
	padding: 20px;
}

.metric-card strong {
	display: block;
	color: var(--meo-blue);
	font-size: 2rem;
	line-height: 1;
}

.metric-card span {
	display: block;
	margin-top: 8px;
	color: var(--meo-muted);
	font-weight: 700;
}

.movement-card {
	grid-column: span 4;
	padding: 22px;
}

.movement-card h3 {
	margin-top: 0;
}

.movement-card li + li {
	margin-top: 8px;
}

.page-hero {
	padding-block: 54px;
	background: linear-gradient(135deg, #e8f2ff, #ffffff);
}

.page-hero p {
	max-width: 720px;
	color: var(--meo-muted);
}

.demo-table-wrap {
	overflow-x: auto;
}

.demo-table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: var(--meo-shadow);
}

.demo-table th,
.demo-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--meo-border);
	text-align: left;
}

.demo-table th {
	background: var(--meo-blue-dark);
	color: #ffffff;
}

.request-list,
.notification-list {
	display: grid;
	gap: 12px;
}

.request-list article,
.notification-list article {
	padding: 18px;
}

.request-list article {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.request-list span {
	color: var(--meo-muted);
	font-weight: 700;
}

.product-detail-demo {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
}

.site-footer {
	background: #101828;
	color: #eef4ff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	padding-block: 42px;
}

.footer-column h2 {
	margin: 0 0 12px;
	color: #ffffff;
	font-size: 1rem;
}

.footer-column p,
.footer-column li,
.site-footer__bottom {
	color: #c8d3e1;
}

.footer-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column li + li {
	margin-top: 8px;
}

.footer-column a {
	color: #ffffff;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: 16px;
}

.site-footer__bottom p {
	margin: 0;
}

.meo-toast {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 50;
	max-width: min(360px, calc(100% - 36px));
	border-radius: 8px;
	padding: 14px 16px;
	background: var(--meo-blue-dark);
	color: #ffffff;
	box-shadow: var(--meo-shadow);
	transform: translateY(18px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease;
}

.meo-toast.is-visible {
	transform: translateY(0);
	opacity: 1;
}

@media (max-width: 1050px) {
	.site-header__inner {
		grid-template-columns: 1fr;
	}

	.header-actions {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.hero__inner,
	.organization-section__inner,
	.product-detail-demo {
		grid-template-columns: 1fr;
	}

	.category-grid,
	.product-grid,
	.dashboard-grid,
	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.brand-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.movement-card {
		grid-column: span 2;
	}
}

@media (max-width: 720px) {
	.meo-container {
		width: min(100% - 24px, 1180px);
	}

	.site-header {
		position: static;
	}

	.site-search {
		grid-template-columns: 1fr;
	}

	.site-search button {
		margin: 0 4px 4px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav-inner {
		display: block;
	}

	.primary-navigation {
		display: none;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		display: grid;
		padding-bottom: 10px;
	}

	.hero {
		padding-top: 28px;
	}

	.hero__visual {
		min-height: 220px;
	}

	.supply-card--notebook {
		inset: 10px 74px 34px 0;
	}

	.supply-card--pencil {
		height: 150px;
	}

	.supply-card--folder {
		width: 170px;
	}

	.promo-grid,
	.category-grid,
	.product-grid,
	.benefit-grid,
	.dashboard-grid,
	.site-footer__inner,
	.brand-list {
		grid-template-columns: 1fr;
	}

	.section-heading--row,
	.request-list article {
		align-items: flex-start;
		flex-direction: column;
	}

	.movement-card {
		grid-column: auto;
	}
}

