:root {
	--graphite: #101821;
	--graphite-2: #172230;
	--ink: #14202b;
	--muted: #526270;
	--soft: #f6f9f7;
	--soft-2: #edf4f1;
	--surface: #ffffff;
	--line: #d7e2df;
	--line-strong: #b8cac4;
	--emerald: #047857;
	--emerald-2: #0b9f74;
	--teal: #0f9f9a;
	--blue: #2563eb;
	--amber: #b7791f;
	--red: #b42318;
	--shadow: 0 18px 54px rgba(15, 24, 33, 0.12);
	--radius: 8px;
	--max: 1180px;
	--pad: 28px;
	color-scheme: light;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	background:
		linear-gradient(rgba(16, 24, 33, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(16, 24, 33, 0.035) 1px, transparent 1px),
		var(--soft);
	background-size: 96px 96px;
	letter-spacing: 0;
}

body.locked {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 249, 247, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(14px);
}

.nav {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 14px var(--pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 800;
	font-size: 1.45rem;
	color: var(--graphite);
}

.brand img {
	width: 150px;
	height: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.nav-links a {
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 0.92rem;
	font-weight: 650;
	color: #344250;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
	background: var(--surface);
	color: var(--graphite);
}

.nav-links .nav-cta {
	background: var(--graphite);
	color: white;
	box-shadow: 0 10px 26px rgba(16, 24, 33, 0.18);
}

.nav-links .nav-cta:hover {
	background: #223044;
	color: white;
}

.section {
	border-bottom: 1px solid var(--line);
}

.section.dark {
	background: var(--graphite);
	color: white;
}

.section.white {
	background: rgba(255, 255, 255, 0.82);
}

.section.soft {
	background: rgba(237, 244, 241, 0.82);
}

.container {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 84px var(--pad);
}

.hero {
	padding: 76px var(--pad) 56px;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
	gap: 54px;
	align-items: center;
}

.page-hero {
	padding: 70px var(--pad) 62px;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
	gap: 48px;
	align-items: start;
}

.label-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--emerald);
	font-size: 0.92rem;
	font-weight: 750;
	margin-bottom: 22px;
}

.label-line::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--emerald-2);
	box-shadow: 0 0 0 7px rgba(4, 120, 87, 0.12);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	font-size: 4.45rem;
	line-height: 1.03;
	margin-bottom: 24px;
	color: var(--graphite);
	text-wrap: balance;
}

.dark h1,
.dark h2,
.dark h3 {
	color: white;
}

.lead {
	font-size: 1.2rem;
	line-height: 1.78;
	color: #334250;
	max-width: 720px;
}

.dark .lead,
.dark .section-copy,
.dark .muted {
	color: #c9d6d2;
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 6px;
	font-weight: 760;
	border: 1px solid var(--line-strong);
	background: var(--surface);
	color: var(--graphite);
}

.button.primary {
	background: var(--emerald);
	border-color: var(--emerald);
	color: white;
}

.button.dark {
	background: var(--graphite);
	border-color: var(--graphite);
	color: white;
}

.button:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 30px rgba(15, 24, 33, 0.12);
}

.hero-proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 42px;
	border-top: 1px solid var(--line);
	padding-top: 20px;
}

.proof-item b {
	display: block;
	font-size: 1.85rem;
	line-height: 1;
	color: var(--graphite);
}

.proof-item span {
	display: block;
	margin-top: 7px;
	font-size: 0.86rem;
	font-weight: 720;
	color: var(--muted);
}

.system-console {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.console-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
}

.dots {
	display: flex;
	gap: 7px;
}

.dots i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #b9c8c3;
}

.console-title {
	font-size: 0.88rem;
	font-weight: 820;
	color: var(--graphite);
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 6px;
	background: rgba(4, 120, 87, 0.11);
	color: var(--emerald);
	font-size: 0.82rem;
	font-weight: 760;
}

.status::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.console-grid {
	display: grid;
	grid-template-columns: 1fr 0.74fr;
	gap: 18px;
	padding: 20px;
}

.resource-map {
	min-height: 340px;
	border-radius: var(--radius);
	padding: 24px;
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(135deg, #111d25, #123b39 65%, #17212a);
	background-size: 64px 64px, 64px 64px, auto;
	color: white;
}

.arc,
.arc.two {
	position: absolute;
	border: 1px solid rgba(15, 159, 154, 0.58);
	border-radius: 50%;
	width: 520px;
	height: 170px;
	transform: rotate(10deg);
	left: 84px;
	top: 118px;
}

.arc.two {
	border-color: rgba(183, 121, 31, 0.5);
	width: 610px;
	height: 210px;
	transform: rotate(-9deg);
	left: 10px;
	top: 92px;
}

.map-point {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--teal);
	box-shadow: 0 0 0 10px rgba(15, 159, 154, 0.18);
}

.map-point.one {
	top: 130px;
	right: 78px;
}

.map-point.two {
	top: 186px;
	left: 130px;
	background: #a7f3d0;
}

.map-point.three {
	top: 268px;
	right: 164px;
	background: var(--amber);
	box-shadow: 0 0 0 10px rgba(183, 121, 31, 0.18);
}

.map-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	min-height: 292px;
	justify-content: space-between;
}

.map-kicker {
	font-size: 0.82rem;
	font-weight: 800;
	color: #c7d7d2;
}

.map-content h2 {
	font-size: 2rem;
	line-height: 1.16;
	max-width: 470px;
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #eef7f4;
	border-radius: 6px;
	padding: 8px 10px;
	font-size: 0.82rem;
	font-weight: 650;
}

.ledger-stack {
	display: grid;
	gap: 12px;
}

.rating-panel,
.evidence-panel,
.mini-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 18px;
	background: #fbfdfc;
}

.rating-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.rating-letter {
	font-size: 4rem;
	line-height: 0.9;
	font-weight: 850;
	color: var(--emerald);
}

.score {
	font-weight: 820;
	color: var(--emerald);
}

.bar-row {
	display: grid;
	grid-template-columns: 92px 1fr 36px;
	gap: 10px;
	align-items: center;
	margin: 9px 0;
	font-size: 0.83rem;
	font-weight: 700;
	color: #425160;
}

.bar {
	height: 8px;
	border-radius: 6px;
	background: #dce7e4;
	overflow: hidden;
}

.bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--emerald-2);
}

.evidence-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.evidence-list li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.9rem;
	font-weight: 650;
	color: #3b4854;
}

.evidence-list li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--emerald-2);
}

.console-foot {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 0 20px 20px;
}

.mini-panel span {
	display: block;
	font-size: 0.78rem;
	font-weight: 760;
	color: var(--muted);
	margin-bottom: 6px;
}

.mini-panel b {
	font-size: 1.08rem;
}

.section-head {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 38px;
}

.section-head h2 {
	font-size: 2.55rem;
	line-height: 1.12;
	margin-bottom: 0;
	color: var(--graphite);
	text-wrap: balance;
}

.section-copy {
	color: #40505d;
	line-height: 1.75;
	font-size: 1.03rem;
	margin-bottom: 0;
}

.operating-record {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.record-cell {
	background: var(--surface);
	padding: 22px;
	min-height: 128px;
}

.record-cell b {
	display: block;
	color: var(--graphite);
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom: 12px;
}

.record-cell span {
	display: block;
	color: #455563;
	font-size: 0.9rem;
	font-weight: 680;
	line-height: 1.5;
}

.record-cell small {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.capability {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.capability h3 {
	font-size: 1.45rem;
	line-height: 1.2;
	margin-bottom: 14px;
	color: var(--graphite);
}

.capability p {
	line-height: 1.66;
	color: #475663;
}

.capability .num {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--graphite);
	color: white;
	font-weight: 820;
	margin-bottom: 18px;
}

.ledger-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ledger {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.ledger h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: var(--graphite);
}

.ledger p {
	line-height: 1.68;
	color: #465663;
}

.ledger ul,
.check-list {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.ledger li,
.check-list li {
	position: relative;
	padding-left: 20px;
	color: #344454;
	line-height: 1.5;
	font-size: 0.95rem;
}

.ledger li::before,
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--teal);
}

.dark-panel {
	background: var(--graphite);
	color: white;
	border-radius: var(--radius);
	padding: 34px;
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	gap: 34px;
	align-items: center;
}

.dark-panel h2 {
	color: white;
	font-size: 2.25rem;
	line-height: 1.13;
}

.dark-panel p {
	color: #c8d5d1;
	line-height: 1.72;
}

.matrix {
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	overflow: hidden;
}

.matrix-row {
	display: grid;
	grid-template-columns: 58px 1fr 0.86fr;
	gap: 1px;
	background: rgba(255, 255, 255, 0.16);
}

.matrix-row > div {
	background: #152433;
	padding: 14px;
	min-height: 70px;
}

.matrix-row b {
	color: #8ff0c9;
}

.matrix-row span {
	display: block;
	color: #d7e4e0;
	line-height: 1.45;
	font-size: 0.9rem;
}

.two-col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.feature {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}

.feature h3 {
	color: var(--graphite);
	font-size: 1.45rem;
	margin-bottom: 12px;
}

.feature p {
	color: #465663;
	line-height: 1.68;
}

.feature strong {
	color: var(--emerald);
}

.network-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
	gap: 28px;
	align-items: stretch;
}

.world-panel {
	background: #121e2a;
	border: 1px solid #24374a;
	border-radius: var(--radius);
	padding: 28px;
	color: white;
	min-height: 420px;
	position: relative;
	overflow: hidden;
}

.world-grid {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 78px 78px;
}

.region {
	position: absolute;
	border-radius: 50%;
	background: var(--teal);
	box-shadow: 0 0 0 9px rgba(15, 159, 154, 0.18);
}

.region.sg { width: 14px; height: 14px; left: 68%; top: 54%; background: var(--emerald-2); }
.region.hk { width: 13px; height: 13px; left: 73%; top: 48%; }
.region.us { width: 16px; height: 16px; left: 21%; top: 42%; background: var(--blue); box-shadow: 0 0 0 9px rgba(37, 99, 235, 0.18); }
.region.nl { width: 12px; height: 12px; left: 48%; top: 34%; background: var(--amber); box-shadow: 0 0 0 9px rgba(183, 121, 31, 0.18); }
.region.in { width: 12px; height: 12px; left: 62%; top: 51%; }
.region.jp { width: 13px; height: 13px; left: 79%; top: 43%; }
.region.cn { width: 12px; height: 12px; left: 72%; top: 42%; }

.world-copy {
	position: relative;
	z-index: 2;
	max-width: 430px;
}

.world-copy h3 {
	color: white;
	font-size: 2rem;
}

.world-copy p {
	color: #cbd8d4;
	line-height: 1.68;
}

.coverage-list {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	display: grid;
	gap: 16px;
}

.coverage-list div {
	border-bottom: 1px solid var(--line);
	padding-bottom: 14px;
}

.coverage-list div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.coverage-list b {
	display: block;
	color: var(--graphite);
	margin-bottom: 6px;
}

.coverage-list span {
	display: block;
	color: #516170;
	line-height: 1.55;
}

.company-map {
	display: grid;
	grid-template-columns: 0.95fr 1fr 1fr;
	gap: 18px;
	align-items: stretch;
}

.company-node {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
}

.company-node.carnet {
	background: var(--graphite);
	color: white;
}

.company-node h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.company-node p {
	line-height: 1.68;
	color: #465663;
}

.company-node.carnet p {
	color: #cbd8d4;
}

.fact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.fact {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	background: var(--surface);
}

.fact b {
	display: block;
	color: var(--graphite);
	font-size: 1.55rem;
	margin-bottom: 8px;
}

.fact span {
	color: #526270;
	line-height: 1.52;
}

.resource-list {
	display: grid;
	gap: 16px;
}

.resource {
	display: grid;
	grid-template-columns: 0.74fr 1fr 170px;
	gap: 24px;
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
}

.resource h3 {
	font-size: 1.32rem;
	color: var(--graphite);
	margin-bottom: 8px;
}

.resource p {
	color: #465663;
	line-height: 1.58;
	margin-bottom: 0;
}

.resource .type {
	font-weight: 820;
	color: var(--emerald);
}

.source-note {
	border: 1px solid #e4c98d;
	background: #fff8eb;
	border-radius: var(--radius);
	padding: 18px 20px;
	color: #493923;
	line-height: 1.65;
}

.cta-band {
	background: var(--graphite);
	color: white;
	border-radius: var(--radius);
	padding: 42px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}

.cta-band h2 {
	color: white;
	font-size: 2.2rem;
	margin-bottom: 10px;
}

.cta-band p {
	color: #cbd8d4;
	line-height: 1.65;
	margin-bottom: 0;
}

.site-footer {
	background: #0c131b;
	color: #d7e4e0;
}

.footer-inner {
	width: min(100%, var(--max));
	margin: 0 auto;
	padding: 34px var(--pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	flex-wrap: wrap;
}

.footer-links {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.footer-links a {
	color: #d7e4e0;
	font-weight: 650;
}

.muted {
	color: var(--muted);
}

@media (max-width: 1050px) {
	.hero,
	.page-hero,
	.section-head,
	.network-layout,
	.dark-panel {
		grid-template-columns: 1fr;
	}

	.console-grid,
	.console-foot,
	.operating-record,
	.capability-grid,
	.ledger-grid,
	.company-map,
	.fact-grid,
	.resource {
		grid-template-columns: repeat(2, 1fr);
	}

	h1 {
		font-size: 3.45rem;
	}
}

@media (max-width: 760px) {
	:root {
		--pad: 18px;
	}

	.nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.nav-links {
		justify-content: flex-start;
	}

	.brand img {
		width: 128px;
	}

	.container,
	.hero,
	.page-hero {
		padding-top: 54px;
		padding-bottom: 54px;
	}

	h1 {
		font-size: 2.55rem;
	}

	.section-head h2 {
		font-size: 2.05rem;
	}

	.lead {
		font-size: 1.05rem;
	}

	.hero-proof,
	.console-grid,
	.console-foot,
	.operating-record,
	.capability-grid,
	.ledger-grid,
	.two-col,
	.company-map,
	.fact-grid,
	.resource,
	.cta-band {
		grid-template-columns: 1fr;
	}

	.resource {
		align-items: start;
	}

	.matrix-row {
		grid-template-columns: 1fr;
	}

	.dark-panel,
	.cta-band {
		padding: 26px;
	}

	.world-panel {
		min-height: 360px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
