:root {
	--oll-bg: #f7faf8;
	--oll-surface: #ffffff;
	--oll-surface-soft: #edf4f1;
	--oll-ink: #13211d;
	--oll-muted: #5b6b66;
	--oll-line: #d7e2dd;
	--oll-primary: #2f7d66;
	--oll-primary-dark: #1f5d4b;
	--oll-accent: #a21d35;
	--oll-dark: #111918;
	--oll-dark-soft: #1a2624;
	--oll-dark-line: rgba(255, 255, 255, 0.14);
	--oll-radius: 8px;
	--oll-shadow: 0 20px 70px rgba(14, 31, 27, 0.12);
	--oll-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.oll-page {
	background: var(--oll-bg);
	color: var(--oll-ink);
	font-family: var(--oll-font);
	line-height: 1.6;
	overflow: hidden;
}

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

.oll-shell {
	margin: 0 auto;
	max-width: 1160px;
	padding: 0 24px;
	width: 100%;
}

.oll-narrow {
	max-width: 820px;
}

.oll-hero {
	background:
		linear-gradient(135deg, rgba(19, 33, 29, 0.94), rgba(18, 50, 43, 0.9)),
		radial-gradient(circle at 18% 22%, rgba(162, 29, 53, 0.28), transparent 28%),
		var(--oll-dark);
	color: #fff;
	min-height: 92vh;
	padding: 112px 0 72px;
	position: relative;
}

.oll-hero::after {
	background: linear-gradient(90deg, var(--oll-accent), #fff, var(--oll-accent));
	bottom: 0;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 100%;
}

.oll-hero__grid {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.oll-brand {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-bottom: 24px;
}

.oll-brand__mark {
	border-radius: var(--oll-radius);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
	height: 58px;
	width: 58px;
}

.oll-brand__name {
	color: #fff;
	font-size: 1rem;
	font-weight: 820;
	line-height: 1.1;
	margin: 0 0 4px;
}

.oll-brand .oll-kicker {
	margin-bottom: 0;
}

.oll-kicker {
	color: var(--oll-primary);
	font-size: 0.78rem;
	font-weight: 760;
	letter-spacing: 0;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.oll-hero .oll-kicker,
.oll-section--dark .oll-kicker {
	color: #8ee0c5;
}

.oll-hero h1,
.oll-section h2,
.oll-join h2 {
	font-weight: 780;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
}

.oll-hero h1 {
	font-size: clamp(3.5rem, 8vw, 6.8rem);
	max-width: 820px;
}

.oll-hero__subtitle {
	color: #e7f3ef;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 680;
	line-height: 1.25;
	margin: 24px 0 0;
	max-width: 760px;
}

.oll-hero__text,
.oll-lead {
	color: var(--oll-muted);
	font-size: 1.08rem;
	margin: 22px 0 0;
	max-width: 720px;
}

.oll-hero__text {
	color: rgba(255, 255, 255, 0.82);
}

.oll-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.oll-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--oll-radius);
	display: inline-flex;
	font-weight: 720;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.oll-button:hover,
.oll-button:focus-visible {
	transform: translateY(-1px);
}

.oll-button--primary {
	background: var(--oll-primary);
	color: #fff;
}

.oll-button--primary:hover,
.oll-button--primary:focus-visible {
	background: var(--oll-primary-dark);
	color: #fff;
}

.oll-button--secondary {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
}

.oll-button--secondary:hover,
.oll-button--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.oll-network {
	aspect-ratio: 1;
	min-height: 380px;
	position: relative;
}

.oll-network__map {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		radial-gradient(circle at center, rgba(142, 224, 197, 0.14), transparent 55%);
	background-size: 54px 54px, 54px 54px, 100% 100%;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	box-shadow: inset 0 0 80px rgba(142, 224, 197, 0.08), var(--oll-shadow);
	height: 100%;
	position: relative;
	width: 100%;
}

.oll-network__map::before,
.oll-network__map::after {
	border: 1px solid rgba(142, 224, 197, 0.18);
	border-radius: 50%;
	content: "";
	inset: 16%;
	position: absolute;
}

.oll-network__map::after {
	inset: 32%;
}

.oll-node {
	align-items: center;
	background: #f9fffd;
	border: 3px solid var(--oll-primary);
	border-radius: 50%;
	color: var(--oll-dark);
	display: flex;
	font-size: 0.78rem;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	left: var(--x);
	position: absolute;
	top: var(--y);
	transform: translate(-50%, -50%);
	width: 42px;
	z-index: 2;
}

.oll-node::before {
	background: rgba(142, 224, 197, 0.16);
	border-radius: 50%;
	content: "";
	inset: -22px;
	position: absolute;
	z-index: -1;
}

.oll-node--large {
	border-color: var(--oll-accent);
	height: 58px;
	width: 58px;
}

.oll-node--gateway {
	border-color: #8ee0c5;
}

.oll-section {
	padding: 88px 0;
}

.oll-section--soft {
	background: var(--oll-surface-soft);
}

.oll-section--dark {
	background: var(--oll-dark);
	color: #fff;
}

.oll-section--range {
	background: linear-gradient(180deg, var(--oll-bg), #fff);
}

.oll-section--community {
	background: #fff;
}

.oll-section__intro {
	margin-bottom: 36px;
	max-width: 840px;
}

.oll-section h2,
.oll-join h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.oll-section h3,
.oll-join h3 {
	font-size: 1.08rem;
	line-height: 1.3;
	margin: 0 0 18px;
}

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

.oll-panel,
.oll-card,
.oll-device-band,
.oll-goals {
	background: var(--oll-surface);
	border: 1px solid var(--oll-line);
	border-radius: var(--oll-radius);
	box-shadow: 0 10px 36px rgba(14, 31, 27, 0.07);
}

.oll-panel {
	padding: 28px;
}

.oll-panel--muted {
	background: #fbfdfc;
}

.oll-check-list,
.oll-minus-list,
.oll-device-band ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.oll-check-list li,
.oll-minus-list li {
	padding-left: 28px;
	position: relative;
}

.oll-check-list li::before,
.oll-minus-list li::before {
	border-radius: 50%;
	content: "";
	height: 12px;
	left: 0;
	position: absolute;
	top: 0.48em;
	width: 12px;
}

.oll-check-list li::before {
	background: var(--oll-primary);
	box-shadow: 0 0 0 4px rgba(47, 125, 102, 0.13);
}

.oll-minus-list li::before {
	background: var(--oll-accent);
	box-shadow: 0 0 0 4px rgba(162, 29, 53, 0.12);
}

.oll-flow {
	counter-reset: flow;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.oll-flow li {
	align-items: center;
	background: var(--oll-surface);
	border: 1px solid var(--oll-line);
	border-radius: var(--oll-radius);
	display: flex;
	font-weight: 740;
	justify-content: center;
	min-height: 92px;
	padding: 16px;
	position: relative;
	text-align: center;
}

.oll-flow li::before {
	color: var(--oll-primary);
	content: "0" counter(flow);
	counter-increment: flow;
	font-size: 0.72rem;
	font-weight: 820;
	left: 12px;
	position: absolute;
	top: 10px;
}

.oll-flow li:not(:last-child)::after {
	background: var(--oll-primary);
	content: "";
	height: 2px;
	position: absolute;
	right: -17px;
	top: 50%;
	width: 17px;
}

.oll-device-band {
	align-items: center;
	display: grid;
	gap: 20px;
	grid-template-columns: 240px 1fr;
	margin-top: 24px;
	padding: 24px;
}

.oll-device-band ul {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.oll-device-band li {
	background: var(--oll-surface-soft);
	border-radius: var(--oll-radius);
	font-size: 0.94rem;
	font-weight: 680;
	padding: 12px;
	text-align: center;
}

.oll-range-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oll-info-card {
	background: var(--oll-surface);
	border: 1px solid var(--oll-line);
	border-radius: var(--oll-radius);
	box-shadow: 0 18px 46px rgba(14, 31, 27, 0.08);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.oll-info-card img {
	aspect-ratio: 16 / 9;
	background: var(--oll-surface-soft);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.oll-info-card div {
	padding: 30px;
}

.oll-info-card h3 {
	font-size: 1.22rem;
	margin-bottom: 14px;
}

.oll-info-card p {
	color: var(--oll-muted);
	font-size: 1rem;
	line-height: 1.72;
	margin: 0;
}

.oll-community-node {
	align-items: center;
	background: var(--oll-surface);
	border: 1px solid var(--oll-line);
	border-radius: var(--oll-radius);
	box-shadow: 0 20px 56px rgba(14, 31, 27, 0.09);
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
	padding: 34px;
}

.oll-community-node__image {
	border-radius: var(--oll-radius);
	display: block;
	height: auto;
	width: 100%;
}

.oll-community-node p {
	color: var(--oll-muted);
	font-size: 1.02rem;
	line-height: 1.72;
	margin: 0 0 22px;
	max-width: 680px;
}

.oll-community-node .oll-check-list {
	max-width: 720px;
}

.oll-milestones {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.oll-card {
	background: var(--oll-dark-soft);
	border-color: var(--oll-dark-line);
	color: #fff;
	min-height: 152px;
	padding: 22px;
}

.oll-card span {
	color: #8ee0c5;
	display: block;
	font-size: 0.76rem;
	font-weight: 820;
	margin-bottom: 30px;
}

.oll-goals {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--oll-dark-line);
	margin-top: 24px;
	padding: 28px;
}

.oll-section--dark .oll-check-list li::before {
	background: #8ee0c5;
}

.oll-join {
	background: linear-gradient(180deg, var(--oll-bg), #fff);
}

.oll-domain-note {
	border-left: 4px solid var(--oll-accent);
	color: var(--oll-muted);
	font-weight: 680;
	margin-top: 30px;
	padding-left: 14px;
}

.oll-footer {
	background: #fff;
	border-top: 1px solid var(--oll-line);
	color: var(--oll-muted);
	padding: 26px 0;
}

.oll-footer .oll-shell {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	justify-content: space-between;
}

.oll-footer__brand {
	align-items: center;
	display: inline-flex;
	gap: 10px;
}

.oll-footer__mark {
	border-radius: 6px;
	height: 34px;
	width: 34px;
}

.oll-footer strong {
	color: var(--oll-ink);
}

@media (max-width: 980px) {
	.oll-hero__grid,
	.oll-split,
	.oll-device-band,
	.oll-range-grid,
	.oll-community-node {
		grid-template-columns: 1fr;
	}

	.oll-community-node__image {
		max-width: 520px;
		width: 100%;
	}

	.oll-hero {
		min-height: auto;
		padding-top: 84px;
	}

	.oll-network {
		min-height: 320px;
	}

	.oll-flow,
	.oll-milestones,
	.oll-device-band ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.oll-flow li:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 640px) {
	.oll-shell {
		padding: 0 18px;
	}

	.oll-section {
		padding: 64px 0;
	}

	.oll-hero {
		padding: 70px 0 56px;
	}

	.oll-hero h1 {
		font-size: 3.35rem;
	}

	.oll-network {
		min-height: 280px;
	}

	.oll-flow,
	.oll-milestones,
	.oll-device-band ul {
		grid-template-columns: 1fr;
	}

	.oll-actions,
	.oll-button {
		width: 100%;
	}

	.oll-info-card div,
	.oll-community-node {
		padding: 22px;
	}
}

.oll-logo-trigger,
.oll-footer__logo-trigger {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: var(--oll-radius);
	cursor: zoom-in;
	display: inline-flex;
	padding: 0;
}

.oll-logo-trigger:focus-visible,
.oll-footer__logo-trigger:focus-visible,
.oll-logo-modal__close:focus-visible {
	box-shadow: 0 0 0 4px rgba(142, 224, 197, 0.35);
	outline: none;
}

.oll-logo-trigger:hover .oll-brand__mark,
.oll-footer__logo-trigger:hover .oll-footer__mark {
	transform: translateY(-1px) scale(1.03);
}

.oll-brand__mark,
.oll-footer__mark {
	transition: transform 160ms ease;
}

.oll-logo-modal[hidden] {
	display: none;
}

.oll-logo-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 9999;
}

.oll-logo-modal__backdrop {
	background: rgba(5, 14, 12, 0.82);
	inset: 0;
	position: absolute;
}

.oll-logo-modal__panel {
	align-items: center;
	background: #f8fffc;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
	display: flex;
	justify-content: center;
	max-height: min(86vh, 860px);
	max-width: min(86vw, 860px);
	padding: clamp(18px, 4vw, 42px);
	position: relative;
	width: 100%;
}

.oll-logo-modal__title {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.oll-logo-modal__image {
	display: block;
	height: auto;
	max-height: calc(86vh - 84px);
	max-width: 100%;
	object-fit: contain;
}

.oll-logo-modal__close {
	align-items: center;
	appearance: none;
	background: var(--oll-dark);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 1.6rem;
	height: 42px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 42px;
}

.oll-logo-modal-is-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.oll-logo-modal {
		padding: 16px;
	}

	.oll-logo-modal__panel {
		max-width: 94vw;
		padding: 18px;
	}
}
