:root {
	--navy: #000035;
	--violet: #5C1DF2;
	--cyan: #00CCFF;
	--lav: #9F65FB;
	--white: #fff;
	--gray: #a0a0c0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Poppins', sans-serif;
	background: var(--navy);
	color: var(--white);
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
	opacity: .4;
}

.grid-bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(0, 204, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 204, 255, .04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

/* NAV */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 72px;
	background: rgba(0, 0, 53, .88);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 204, 255, .12);
}

.nav-logo {
	font-weight: 900;
	font-size: 14px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--white);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--cyan);
	flex-shrink: 0;
}

.logo {
    max-width: 150px;
}

.nav-back {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cyan);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: gap .2s;
}

.nav-back:hover {
	gap: 12px;
}

.nav-back svg {
	width: 14px;
	height: 14px;
	stroke: var(--cyan);
	stroke-width: 2;
	fill: none;
}

/* PAGE */
.page {
	position: relative;
	padding: 120px 5% 80px;
}

.container {
	max-width: 800px;
	margin: 0 auto;
}

/* HERO BLOCK */
.pp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 16px;
}

.pp-eyebrow::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--cyan);
}

.pp-title {
	font-weight: 900;
	font-size: clamp(36px, 6vw, 72px);
	line-height: .95;
	text-transform: uppercase;
	letter-spacing: -.01em;
	margin-bottom: 24px;
}

.pp-title .acc {
	display: block;
	background: linear-gradient(90deg, var(--lav), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pp-meta {
	font-size: 13px;
	color: var(--gray);
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 204, 255, .12);
	margin-bottom: 60px;
	line-height: 1.7;
}

.pp-meta strong {
	color: var(--white);
}

/* SECTIONS */
.pp-section {
	margin-bottom: 52px;
}

.pp-section h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 18px;
}

.pp-section h2::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 1px;
	background: var(--cyan);
}

.pp-section p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--gray);
	margin-bottom: 12px;
}

.pp-section p strong {
	color: var(--white);
	font-weight: 600;
}

.pp-section ul {
	list-style: none;
	padding: 0;
	margin-bottom: 12px;
}

.pp-section ul li {
	font-size: 15px;
	line-height: 1.8;
	color: var(--gray);
	padding-left: 22px;
	position: relative;
	margin-bottom: 4px;
}

.pp-section ul li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--violet);
	font-weight: 700;
}

.pp-section ul li strong {
	color: var(--white);
	font-weight: 600;
}

.divider {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 204, 255, .18), transparent);
	margin: 0 0 52px;
}

/* FOOTER */
footer {
	background: rgba(0, 0, 16, .85);
	border-top: 1px solid rgba(0, 204, 255, .1);
	padding: 44px 5%;
}

.foot-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.foot-logo {
	font-weight: 900;
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 7px;
}

.foot-left p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.65;
}

.foot-left a {
	color: var(--cyan);
	text-decoration: none;
}

.foot-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.foot-right a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--cyan);
	text-decoration: none;
}

.foot-right p {
	font-size: 11px;
	color: var(--gray);
}

@media(max-width:600px) {
	.foot-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.foot-right {
		align-items: flex-start;
	}
}