:root {
	--bg: #f3f6f8;
	--surface: #ffffff;
	--text: #1d2a33;
	--muted: #5f6e78;
	--primary: #0f5e8a;
	--primary-2: #3a8cb6;
	--accent: #e98a3b;
	--ring: rgba(15, 94, 138, 0.14);
	--shadow: 0 16px 40px rgba(6, 39, 58, 0.12);
	--radius: 18px;
	--max: 1440px;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", "Noto Sans", "Helvetica Neue", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 88% 8%, rgba(58, 140, 182, 0.18), transparent 36%),
		radial-gradient(circle at 10% 92%, rgba(233, 138, 59, 0.16), transparent 32%),
		linear-gradient(180deg, #f7fafc 0%, var(--bg) 100%);
	line-height: 1.68;
}

a {
	color: var(--primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.shell {
	width: min(100% - 2rem, var(--max));
	margin: 0 auto;
}

.hero {
	margin: 1rem auto 2rem;
	border-radius: calc(var(--radius) + 8px);
	padding: clamp(1.2rem, 3vw, 2.6rem);
	background: linear-gradient(125deg, #0f5e8a 0%, #146f9f 42%, #3a8cb6 100%);
	color: #fff;
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.4vw, 2rem);
	align-items: center;
	justify-items: center;
	text-align: center;
	overflow: hidden;
}

.hero h1 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.7rem);
	line-height: 1.18;
	letter-spacing: .3px;
}

.hero p {
	margin: 0;
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.94);
}

.hero-media {
	justify-self: end;
	width: min(100%, 360px);
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	backdrop-filter: blur(2px);
	padding: 1rem;
}

.hero-media img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius: 10px;
	background: #fff;
	padding: .5rem;
}

.layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 1.2rem;
	align-items: start;
	margin-bottom: 2rem;
}

.toc,
.content {
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(16, 40, 58, 0.08);
	border: 1px solid #e3ebf0;
}

.toc {
	position: sticky;
	top: 1rem;
	padding: 1rem;
}

.toc h2 {
	font-size: .92rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--muted);
	margin: .2rem 0 .8rem;
}

.toc ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: .45rem;
}

.toc a {
	display: block;
	padding: .65rem .75rem;
	border-radius: 10px;
	background: #f5f9fc;
	border: 1px solid #e2edf4;
	font-size: .95rem;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.toc a:hover {
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px var(--ring);
	background: #edf6fc;
}

.content {
	padding: clamp(1rem, 2.6vw, 2rem);
	display: grid;
	gap: 1.6rem;
}

section {
	scroll-margin-top: 1rem;
}

section h3 {
	margin: .2rem 0 .75rem;
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	line-height: 1.35;
}

section p {
	margin: 0 0 .8rem;
	color: #273841;
}

.browser-links {
	display: flex;
	flex-wrap: wrap;
	gap: .55rem;
	margin-top: .3rem;
}

.chip {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: .5rem .85rem;
	background: #f2f8fc;
	border: 1px solid #dcecf6;
	color: var(--primary);
	font-weight: 600;
	font-size: .92rem;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.chip:hover,
.chip:focus-visible,
.chip:active {
	text-decoration: none;
}

.chip:hover,
.chip:focus-visible {
	transform: translateY(-2px);
	background: #ebf5fb;
	border-color: #c8e2f1;
	box-shadow: 0 8px 18px rgba(15, 94, 138, 0.12);
}

.domain-grid {
	margin-top: .5rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .75rem;
}

.domain-card {
	padding: .85rem;
	border-radius: 12px;
	border: 1px solid #dfebf3;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.domain-card strong {
	display: block;
	margin-bottom: .35rem;
	font-size: .98rem;
	color: #193240;
}

.domain-card span {
	color: #385163;
	font-size: .94rem;
	overflow-wrap: anywhere;
}

.partners {
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(16, 40, 58, 0.08);
	border: 1px solid #e3ebf0;
	padding: 1rem;
	margin-bottom: 2rem;
}

.partners h2 {
	margin: .3rem 0 1rem;
	font-size: 1.05rem;
	color: #2f4451;
}

.logos {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: .8rem;
}

.logo {
	border: 1px solid #e3edf3;
	border-radius: 12px;
	background: #fff;
	padding: .7rem;
	min-height: 104px;
	display: grid;
	place-items: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.logo:hover,
.logo:focus-visible {
	text-decoration: none;
	transform: translateY(-2px);
	border-color: #bfd9ea;
	box-shadow: 0 8px 20px rgba(15, 94, 138, 0.1);
}

.logo img {
	max-width: 100%;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
}
.site-list {
	margin-top: 1.1rem;
	display: grid;
	gap: .65rem;
}

.site-group-label {
	margin: .65rem 0 .2rem;
	padding: .45rem .7rem;
	border-radius: 10px;
	background: linear-gradient(90deg, #eaf4fb 0%, #f7fbfe 100%);
	border: 1px solid #d8e9f5;
	color: #20455d;
	font-size: .84rem;
	font-weight: 700;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.site-group-sublabel{
	font-weight: bold;
	font-size: 0.84rem;
	padding-left: 0.7rem;
}

.site-item {
	border: 1px solid #dce8f0;
	border-radius: 12px;
	padding: .65rem;
	background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: .85rem;
	align-items: center;
	position: relative;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.site-item:hover,
.site-item:focus-within {
	transform: translateY(-3px);
	border-color: #bfd9ea;
	box-shadow: 0 10px 24px rgba(15, 94, 138, 0.12);
}

.site-item img {
	width: 100%;
	height: 74px;
	object-fit: contain;
	display: block;
	background: #fff;
	border-radius: 8px;
	padding: .35rem;
	border: 1px solid #edf3f7;
}


.site-item img.dark-bg {
	background:#2f2f2f;
}

.site-item img.forall-bg {
	background:#677c76;
}

.site-item img.melispi-bg {
	background: rgba(52, 42, 50, 0.75);
}



rgba(52, 42, 50, 0.75)


.site-item strong {
	display: block;
	font-size: .95rem;
	color: #1d3442;
	margin-bottom: .15rem;
}

.site-subtitle {
	display: inline-block;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .02em;
	color: #1f4f69;
	background: linear-gradient(180deg, #eef7fc 0%, #e4f1f9 100%);
	border: 1px solid #cfe5f3;
	border-radius: 999px;
	padding: .18rem .6rem;
	margin: .05rem 0 .35rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.site-item a {
	display: block;
	font-size: .9rem;
	color: #2f607c;
	overflow-wrap: anywhere;
	position: static;
	text-decoration: none;
	margin-top: .22rem;
}

.site-item a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

.site-item a:hover {
	text-decoration: none;
}

.note {
	margin-top: .9rem;
	color: var(--muted);
	font-size: .92rem;
}

@media (max-width: 960px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.hero-media {
		justify-self: start;
		max-width: 290px;
	}

	.layout {
		grid-template-columns: 1fr;
	}

	.toc {
		position: static;
	}

	.domain-grid {
		grid-template-columns: 1fr;
	}

	.logos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.site-item {
		grid-template-columns: 96px minmax(0, 1fr);
	}
}

@media (max-width: 620px) {
	.shell {
		width: min(100% - 1rem, var(--max));
	}

	.logos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-item {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.site-item img {
		max-width: 180px;
		margin: 0 auto;
	}
}
