:root {
	--gp-shadow-deep: 0 26px 90px rgba(0, 0, 0, 0.58);
	--gp-shadow-glow: 0 0 42px rgba(34, 148, 255, 0.18);
	--gp-line: rgba(116, 183, 255, 0.14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at 72% 9%, rgba(18, 116, 255, 0.26), transparent 28rem),
		radial-gradient(circle at 20% 24%, rgba(0, 190, 255, 0.11), transparent 24rem),
		radial-gradient(circle at 82% 80%, rgba(20, 92, 201, 0.12), transparent 30rem),
		linear-gradient(180deg, #00040b 0%, var(--gp-bg) 34%, #010714 100%);
	color: var(--gp-text);
	font-family: var(--gp-font);
	font-size: 16px;
	line-height: 1.7;
}

body:before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(95, 168, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(95, 168, 255, 0.035) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.15));
}

body:after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.45) 76%);
}

a {
	color: var(--gp-accent);
	text-decoration: none;
	transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a:hover {
	color: var(--gp-accent-hover);
}

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

.container {
	width: min(calc(100% - 48px), var(--gp-container));
	margin-inline: auto;
}

.section {
	position: relative;
	padding: 78px 0;
}

.glass-card {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(9, 25, 45, 0.8), rgba(3, 10, 22, 0.78)),
		var(--gp-card);
	border: 1px solid rgba(103, 178, 255, 0.18);
	border-radius: var(--gp-radius);
	box-shadow: var(--gp-shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(var(--gp-blur)) saturate(130%);
}

.glass-card:before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(135deg, rgba(116, 199, 255, 0.11), transparent 22%),
		radial-gradient(circle at 80% 10%, rgba(34, 148, 255, 0.13), transparent 34%);
	opacity: 0.9;
}

.glass-card > * {
	position: relative;
	z-index: 1;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: linear-gradient(180deg, rgba(0, 7, 18, 0.92), rgba(0, 7, 18, 0.76));
	backdrop-filter: blur(22px) saturate(135%);
	border-bottom: 1px solid rgba(74, 160, 255, 0.13);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.header-inner {
	min-height: 86px;
	display: flex;
	align-items: center;
	gap: 28px;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 13px;
	color: var(--gp-text);
	flex: 0 0 auto;
}

.site-logo img {
	width: var(--gp-logo-width);
	height: auto;
	max-height: 90px;
	object-fit: contain;
	filter: drop-shadow(0 0 20px rgba(34, 148, 255, 0.3));
}

.logo-mark,
.cta-logo span {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 2px solid rgba(176, 218, 255, 0.84);
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, rgba(34, 148, 255, 0.22), transparent 48%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(2, 11, 24, 0.94));
	box-shadow: 0 0 30px rgba(34, 148, 255, 0.44), inset 0 0 18px rgba(34, 148, 255, 0.25);
	color: #dff1ff;
	font-size: 29px;
	font-weight: 900;
}

.logo-copy {
	display: grid;
	line-height: 1;
}

.logo-copy strong {
	color: #f5f9ff;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 5.5px;
}

.logo-copy small {
	margin-top: 4px;
	color: var(--gp-accent);
	font-size: 10px;
	letter-spacing: 6px;
}

.primary-nav {
	margin-left: auto;
}

.primary-nav ul,
.footer-nav ul {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: rgba(241, 247, 255, 0.92);
	font-size: 13px;
	font-weight: 650;
}

.primary-nav a:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gp-accent), transparent);
	box-shadow: 0 0 14px var(--gp-glow);
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav a:hover {
	color: #ffffff;
}

.primary-nav .current-menu-item > a:after,
.primary-nav .current_page_item > a:after,
.primary-nav a:hover:after {
	opacity: 1;
	transform: scaleX(1);
}

.header-action,
.button-ghost,
.button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 11px 21px;
	border-radius: 7px;
	font-weight: 750;
	line-height: 1;
}

.header-action,
.button-ghost {
	color: #7cc7ff;
	background: linear-gradient(180deg, rgba(28, 118, 255, 0.09), rgba(2, 13, 27, 0.35));
	border: 1px solid rgba(58, 160, 255, 0.72);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button-primary {
	color: #ffffff;
	background:
		linear-gradient(135deg, rgba(94, 184, 255, 0.22), transparent 35%),
		linear-gradient(135deg, #1688ff 0%, #075ed9 54%, #07479f 100%);
	border: 1px solid rgba(142, 210, 255, 0.45);
	box-shadow: 0 0 30px rgba(18, 123, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-action:hover,
.button-ghost:hover,
.button-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 34px rgba(34, 148, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 34px;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 42px;
	padding: 0;
	background: rgba(8, 26, 48, 0.72);
	border: 1px solid rgba(80, 168, 255, 0.32);
	border-radius: 7px;
}

.menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: #d9efff;
	box-shadow: 0 0 10px rgba(34, 148, 255, 0.6);
}

.hero {
	min-height: 720px;
	display: flex;
	align-items: center;
	padding: 104px 0 88px;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(0, 4, 11, 0.98) 0%, rgba(0, 4, 11, 0.55) 42%, rgba(0, 10, 24, 0.2) 100%),
		radial-gradient(circle at 72% 48%, rgba(26, 146, 255, 0.33), transparent 26rem);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
	align-items: center;
	gap: 58px;
}

.hero h1 {
	margin: 0 0 10px;
	max-width: 720px;
	color: #f7fbff;
	font-size: clamp(50px, 6.2vw, 88px);
	font-weight: 850;
	line-height: 0.98;
	text-shadow: 0 0 32px rgba(118, 194, 255, 0.12);
}

.hero h2 {
	margin: 0 0 24px;
	color: #299cff;
	font-size: clamp(25px, 3vw, 38px);
	font-weight: 650;
	line-height: 1.16;
}

.hero p {
	max-width: 590px;
	color: rgba(218, 231, 246, 0.9);
	font-size: 18px;
}

.hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 500px;
	background:
		radial-gradient(circle, rgba(63, 174, 255, 0.55) 1px, transparent 2px),
		linear-gradient(90deg, transparent 0 48%, rgba(84, 174, 255, 0.18) 49% 51%, transparent 52%);
	background-size: 44px 44px, 100% 100%;
	mask-image: radial-gradient(circle, black 0%, black 58%, transparent 78%);
}

.hero-visual:after {
	content: "";
	position: absolute;
	inset: 10%;
	background:
		linear-gradient(35deg, transparent 10%, rgba(70, 170, 255, 0.22) 11%, transparent 12%),
		linear-gradient(142deg, transparent 20%, rgba(70, 170, 255, 0.18) 21%, transparent 22%);
	opacity: 0.75;
}

.hero-visual.has-glow:before,
.network-strip:before {
	content: "";
	position: absolute;
	inset: 14%;
	background: radial-gradient(circle, rgba(34, 148, 255, 0.55), transparent 62%);
	filter: blur(10px);
}

.genesis-orb {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 272px;
	height: 272px;
	border-radius: 50%;
	border: 13px solid rgba(228, 241, 255, 0.82);
	background:
		radial-gradient(circle at center, rgba(33, 150, 255, 0.28), transparent 42%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(3, 10, 22, 0.9));
	box-shadow:
		0 0 76px rgba(35, 151, 255, 0.58),
		inset 0 0 44px rgba(34, 148, 255, 0.32),
		inset 18px 18px 40px rgba(255, 255, 255, 0.05);
	color: #eaf7ff;
	font-size: 146px;
	font-weight: 950;
	line-height: 1;
}

.genesis-orb.small {
	width: 190px;
	height: 190px;
	font-size: 96px;
}

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

.feature-card {
	min-height: 270px;
	padding: 34px 28px;
	text-align: center;
}

.feature-card:hover {
	transform: translateY(-3px);
	border-color: rgba(110, 193, 255, 0.42);
	box-shadow: var(--gp-shadow-deep), 0 0 46px rgba(34, 148, 255, 0.18);
}

.feature-icon,
.feature-card > .gp-icon {
	display: grid;
	place-items: center;
	margin: 0 auto 22px;
	color: #36a5ff;
}

.gp-icon {
	width: 54px;
	height: 54px;
	filter: drop-shadow(0 0 12px rgba(34, 148, 255, 0.42));
}

.feature-card h3,
.split-card h2,
.section-heading h2 {
	margin: 0 0 13px;
	color: #f6fbff;
	line-height: 1.18;
}

.feature-card h3 {
	font-size: 21px;
}

.feature-card p,
.split-card p,
.section-heading p,
.post-card p {
	color: rgba(202, 218, 236, 0.82);
}

.feature-card a {
	display: inline-flex;
	margin-top: 12px;
	font-weight: 700;
}

.split-card {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 46px;
	align-items: center;
	padding: 42px;
}

.section-label {
	display: inline-block;
	margin-bottom: 12px;
	color: #36a5ff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2.4px;
	text-transform: uppercase;
}

.dashboard-mockup {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: 32px;
	align-items: stretch;
	min-height: 390px;
	overflow: hidden;
	background:
		radial-gradient(circle at 70% 50%, rgba(34, 148, 255, 0.16), transparent 38%),
		rgba(2, 12, 25, 0.82);
	border: 1px solid rgba(91, 174, 255, 0.2);
	border-radius: var(--gp-radius);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	padding: 24px;
}

.dashboard-mockup aside,
.dashboard-tabs {
	position: relative;
	width: 100%;
	min-width: 0;
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 0 24px 0 0;
	background: linear-gradient(180deg, rgba(10, 35, 65, 0.86), rgba(3, 13, 27, 0.86));
	border-right: 1px solid rgba(91, 174, 255, 0.18);
	color: rgba(193, 212, 232, 0.72);
}

.dashboard-mockup aside strong {
	margin-bottom: 10px;
	color: #f4f9ff;
	font-size: 15px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.dashboard-mockup aside span {
	padding: 9px 10px;
	border-radius: 6px;
}

.dashboard-mockup aside span:first-of-type {
	color: #ffffff;
	background: rgba(34, 148, 255, 0.22);
}

.dashboard-tab {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-width: 0;
	padding: 12px 14px;
	color: rgba(193, 212, 232, 0.78);
	text-align: left;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	white-space: normal;
	overflow-wrap: anywhere;
	line-height: 1.3;
	position: relative;
	transform: none;
	margin: 0;
	max-width: 100%;
}

.dashboard-tab .gp-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.dashboard-tab span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.dashboard-tab:hover,
.dashboard-tab.is-active {
	color: #ffffff;
	background: rgba(34, 148, 255, 0.22);
	border-color: rgba(105, 190, 255, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 18px rgba(34, 148, 255, 0.12);
}

.dash-content {
	min-width: 0;
	display: block;
	padding: 0;
}

.dashboard-panel {
	display: none;
	grid-template-columns: 1fr;
	gap: 16px;
	min-width: 0;
}

.dashboard-panel.is-active {
	display: grid;
}

.dash-panel-wide {
	grid-column: 1 / -1;
}

.dash-panel-wide h3 {
	margin: 0 0 8px;
	font-size: 21px;
}

.dashboard-editor-content {
	min-height: 260px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.dashboard-editor-content h1,
.dashboard-editor-content h2,
.dashboard-editor-content h3,
.dashboard-editor-content h4 {
	color: #f7fbff;
	line-height: 1.2;
}

.dashboard-editor-content p,
.dashboard-editor-content li {
	color: rgba(218, 231, 246, 0.86);
}

.dashboard-editor-content a {
	font-weight: 700;
}

.metric,
.dash-panel {
	padding: 18px;
	background: linear-gradient(145deg, rgba(12, 35, 61, 0.86), rgba(3, 15, 31, 0.86));
	border: 1px solid rgba(92, 171, 255, 0.19);
	border-radius: 7px;
}

.metric span {
	display: block;
	margin-bottom: 6px;
	color: rgba(198, 218, 239, 0.72);
	font-size: 12px;
}

.metric strong {
	font-size: 20px;
}

.dash-panel h4 {
	margin: 0 0 14px;
}

.dash-panel p {
	margin: 7px 0;
	color: rgba(204, 222, 240, 0.78);
	font-size: 13px;
}

.progress {
	height: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
}

.progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #1688ff, #72d8ff);
	box-shadow: 0 0 18px rgba(58, 176, 255, 0.68);
}

.network-panel {
	position: relative;
	min-height: 160px;
	background-image:
		linear-gradient(35deg, transparent 48%, rgba(80, 180, 255, 0.12) 49%, transparent 51%),
		radial-gradient(circle, rgba(48, 168, 255, 0.16), transparent 60%);
}

.network-panel span {
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #55bdff;
	box-shadow: 0 0 20px rgba(70, 180, 255, 0.9);
}

.network-panel span:nth-child(1) { left: 18%; top: 48%; }
.network-panel span:nth-child(2) { left: 41%; top: 21%; }
.network-panel span:nth-child(3) { left: 64%; top: 56%; }
.network-panel span:nth-child(4) { left: 82%; top: 30%; }
.network-panel span:nth-child(5) { left: 48%; top: 76%; }

.process-card {
	padding: 42px;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
	margin-top: 26px;
}

.process-step {
	position: relative;
	text-align: center;
}

.process-step:not(:last-child):after {
	content: "";
	position: absolute;
	top: 43px;
	right: -22px;
	width: 24px;
	height: 1px;
	background: linear-gradient(90deg, var(--gp-accent), transparent);
	box-shadow: 0 0 12px rgba(34, 148, 255, 0.5);
}

.process-step > div {
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	margin: 0 auto 16px;
	background:
		radial-gradient(circle, rgba(34, 148, 255, 0.24), rgba(2, 13, 27, 0.9)),
		linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent);
	border: 1px solid rgba(86, 175, 255, 0.54);
	border-radius: 50%;
	box-shadow: 0 0 28px rgba(34, 148, 255, 0.18), inset 0 0 16px rgba(34, 148, 255, 0.14);
}

.process-step .gp-icon {
	width: 42px;
	height: 42px;
}

.process-step h3 {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.25;
}

.process-step p {
	margin: 0;
	color: rgba(200, 218, 237, 0.76);
	font-size: 13px;
	line-height: 1.55;
}

.architecture-diagram {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	padding: 32px;
	background:
		linear-gradient(90deg, transparent 49.9%, rgba(83, 174, 255, 0.14) 50%, transparent 50.1%),
		radial-gradient(circle at 50% 50%, rgba(34, 148, 255, 0.13), transparent 55%);
}

.diagram-node {
	display: grid;
	place-items: center;
	min-height: 86px;
	padding: 18px;
	text-align: center;
	background: linear-gradient(145deg, rgba(11, 32, 57, 0.92), rgba(3, 13, 28, 0.92));
	border: 1px solid rgba(102, 186, 255, 0.24);
	border-radius: 7px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.cta-card {
	display: grid;
	grid-template-columns: auto 1fr 1.25fr auto;
	align-items: center;
	gap: 32px;
	padding: 34px 38px;
}

.cta-logo img {
	max-height: 88px;
	filter: drop-shadow(0 0 22px rgba(34, 148, 255, 0.34));
}

.page-hero {
	padding: 72px 0 28px;
}

.page-hero h1 {
	margin: 14px 0 10px;
	color: #f8fbff;
	font-size: clamp(36px, 4.3vw, 56px);
	line-height: 1.05;
}

.page-hero p {
	max-width: 720px;
	color: rgba(209, 225, 242, 0.82);
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: rgba(183, 207, 232, 0.72);
	font-size: 13px;
}

.entry-content {
	padding: 40px;
}

.entry-content h2,
.entry-content h3 {
	color: #f8fbff;
	line-height: 1.22;
}

.entry-content p,
.entry-content li {
	color: rgba(218, 231, 246, 0.86);
}

.entry-content blockquote {
	margin-left: 0;
	padding-left: 20px;
	border-left: 3px solid var(--gp-accent);
	color: rgba(205, 222, 240, 0.84);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid rgba(103, 178, 255, 0.2);
}

.featured-frame {
	overflow: hidden;
	margin-bottom: 30px;
	border: 1px solid rgba(103, 178, 255, 0.2);
	border-radius: var(--gp-radius);
	box-shadow: 0 0 32px rgba(34, 148, 255, 0.12);
}

.content-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 26px;
}

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

.post-card {
	overflow: hidden;
}

.post-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	background:
		radial-gradient(circle at 50% 50%, rgba(34, 148, 255, 0.36), transparent 52%),
		linear-gradient(145deg, rgba(8, 29, 54, 0.9), rgba(2, 10, 22, 0.9));
}

.post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-body {
	padding: 24px;
}

.post-card h2 {
	margin: 8px 0 10px;
	font-size: 22px;
	line-height: 1.22;
}

.post-card h2 a {
	color: #f5f9ff;
}

.post-meta {
	color: rgba(180, 204, 229, 0.72);
	font-size: 13px;
}

.sidebar {
	display: grid;
	align-content: start;
	gap: 17px;
}

.widget {
	padding: 22px;
}

.widget h2 {
	margin-top: 0;
	font-size: 18px;
}

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

.widget li {
	margin: 10px 0;
}

.status-dot {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 8px;
	border-radius: 50%;
	box-shadow: 0 0 12px currentColor;
}

.contact-layout {
	display: grid;
	grid-template-columns: 330px 1fr;
	gap: 26px;
}

.contact-cards {
	display: grid;
	gap: 17px;
}

.contact-card,
.contact-form {
	padding: 26px;
}

.contact-card h2 {
	margin: 10px 0 4px;
	font-size: 18px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	margin-bottom: 15px;
	color: rgba(204, 222, 240, 0.8);
}

input,
textarea,
select {
	width: 100%;
	padding: 13px 15px;
	color: var(--gp-text);
	background: rgba(2, 12, 25, 0.92);
	border: 1px solid rgba(95, 178, 255, 0.2);
	border-radius: 7px;
}

input:focus,
textarea:focus,
a:focus,
button:focus {
	outline: 2px solid rgba(91, 190, 255, 0.88);
	outline-offset: 2px;
}

.form-notice {
	margin-bottom: 16px;
	padding: 14px 18px;
	border-radius: 7px;
}

.form-notice.success {
	background: rgba(35, 190, 110, 0.15);
	border: 1px solid rgba(35, 190, 110, 0.4);
}

.form-notice.error {
	background: rgba(255, 80, 80, 0.15);
	border: 1px solid rgba(255, 80, 80, 0.4);
}

.roadmap {
	position: relative;
}

.roadmap:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 110px;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--gp-accent), transparent);
	box-shadow: 0 0 16px rgba(34, 148, 255, 0.55);
}

.roadmap-item {
	position: relative;
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 30px;
	margin: 0 0 32px;
}

.roadmap-item:before {
	content: "";
	position: absolute;
	top: 9px;
	left: 103px;
	width: 16px;
	height: 16px;
	background: #eaf7ff;
	border-radius: 50%;
	box-shadow: 0 0 20px var(--gp-accent);
}

.roadmap-item time {
	color: #3fb0ff;
	font-weight: 800;
}

.roadmap-item > div {
	padding: 24px 0 26px;
	border-bottom: 1px solid rgba(103, 178, 255, 0.14);
}

.stand-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	padding: 34px;
}

.stand-card li {
	margin: 10px 0;
	color: rgba(218, 231, 246, 0.88);
}

.network-strip {
	position: relative;
	min-height: 190px;
	background-image: radial-gradient(circle, rgba(84, 190, 255, 0.7) 1px, transparent 2px);
	background-size: 34px 34px;
	mask-image: radial-gradient(circle, black, transparent 75%);
}

.site-footer {
	padding: 34px 0;
	background: linear-gradient(180deg, rgba(0, 7, 18, 0.58), rgba(0, 4, 11, 0.96));
	border-top: 1px solid rgba(74, 160, 255, 0.14);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	gap: 28px;
	align-items: center;
	color: rgba(184, 205, 227, 0.72);
	font-size: 13px;
}

.footer-brand .site-logo .logo-mark {
	width: 40px;
	height: 40px;
	font-size: 20px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.social-link {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	background: rgba(9, 28, 52, 0.76);
	border: 1px solid rgba(91, 174, 255, 0.2);
	border-radius: 50%;
}

.social-link:hover {
	transform: translateY(-1px);
	background: rgba(34, 148, 255, 0.14);
}

.social-link .gp-icon {
	width: 18px;
	height: 18px;
}

.not-found .glass-card {
	padding: 68px;
	text-align: center;
}

@media (max-width: 1080px) {
	.hero-grid,
	.split-card,
	.content-sidebar,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
	}

	.hero-grid {
		gap: 32px;
	}

	.hero-visual {
		min-height: 380px;
	}

	.feature-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-step:after {
		display: none;
	}

	.cta-card,
	.footer-inner {
		grid-template-columns: 1fr;
	}

	.primary-nav {
		display: none;
		position: absolute;
		top: 86px;
		left: 24px;
		right: 24px;
		margin-left: 0;
		padding: 20px;
		background: rgba(1, 8, 19, 0.98);
		border: 1px solid rgba(92, 171, 255, 0.22);
		border-radius: var(--gp-radius);
		box-shadow: var(--gp-shadow-deep);
	}

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

	.primary-nav ul {
		display: grid;
		gap: 10px;
	}

	.primary-nav a:after {
		bottom: 0;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.header-action {
		display: none;
	}
}

@media (max-width: 680px) {
	.container {
		width: min(calc(100% - 30px), var(--gp-container));
	}

	.section {
		padding: 48px 0;
	}

	.header-inner {
		min-height: 76px;
	}

	.primary-nav {
		top: 76px;
		left: 15px;
		right: 15px;
	}

	.logo-copy strong {
		font-size: 14px;
		letter-spacing: 3px;
	}

	.logo-copy small {
		letter-spacing: 4px;
	}

	.site-logo img {
		width: var(--gp-logo-mobile-width);
		max-height: 72px;
	}

	.hero {
		padding: 68px 0 54px;
	}

	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: clamp(42px, 14vw, 58px);
	}

	.hero p {
		font-size: 16px;
	}

	.hero-visual {
		min-height: 300px;
	}

	.genesis-orb {
		width: 178px;
		height: 178px;
		font-size: 90px;
		border-width: 9px;
	}

	.feature-grid,
	.post-grid,
	.dashboard-panel,
	.architecture-diagram {
		grid-template-columns: 1fr;
	}

	.feature-card,
	.split-card,
	.process-card,
	.entry-content,
	.contact-card,
	.contact-form,
	.stand-card {
		padding: 24px;
	}

	.dashboard-mockup {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px;
	}

	.dashboard-mockup aside {
		display: grid;
		padding: 0 0 18px;
		border-right: 0;
		border-bottom: 1px solid rgba(91, 174, 255, 0.18);
	}

	.process-steps {
		grid-template-columns: 1fr;
	}

	.stand-card,
	.roadmap-item {
		grid-template-columns: 1fr;
	}

	.roadmap:before,
	.roadmap-item:before {
		display: none;
	}
}
