@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap");

:root {
	--navy: #0e1c3b;
	--navy-deep: #081226;
	--navy-2: #0d1d3d;
	--surface: #112349;
	--surface-2: #16294f;
	--blue: #0a3cef;
	--blue-light: #6683ff;
	--orange: #f2871c;
	--text: #eef2ff;
	--muted: #9aa8cc;
	--muted-2: #67769f;
	--line: rgba(255, 255, 255, 0.09);
	--line-strong: rgba(255, 255, 255, 0.18);
	--glow: rgba(10, 60, 239, 0.45);
	--maxw: 1320px;
	--font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--font-display: "Rajdhani", var(--font);
	--page: var(--navy-deep);
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--navy-deep);
	color: var(--text);
	font-family: var(--font);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	transition: background 0.4s;
}
body.menu-open {
	overflow: hidden;
}
::selection {
	background: var(--blue);
	color: #fff;
}
a {
	color: inherit;
	text-decoration: none;
}
canvas#stars {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

/* ---- atoms ---- */
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 64px);
}
.label {
	font-size: 12px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 700;
}
.eyebrow {
	font-size: 12px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--blue-light);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--orange);
}
.display {
	font-family: var(--font-display);
	text-transform: uppercase;
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}
.section {
	position: relative;
	z-index: 2;
	padding: clamp(90px, 12vh, 150px) 0;
}
.sec-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.sec-head h2 {
	font-size: clamp(34px, 5.4vw, 72px);
	max-width: 15ch;
}
.sec-num {
	font-size: 12px;
	color: var(--muted-2);
	letter-spacing: 0.2em;
	font-weight: 700;
	text-transform: uppercase;
}

/* ---- brand logo ---- */
.brand {
	display: flex;
	align-items: center;
}
.logo-lockup {
	height: 26px;
	width: auto;
	flex: none;
	color: #fff;
	transition:
		color 0.3s,
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand:hover .logo-lockup {
	color: var(--blue-light);
}
footer .logo-lockup {
	height: 30px;
}

/* ---- nav ---- */
header.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition:
		background 0.4s,
		border-color 0.4s,
		backdrop-filter 0.4s;
	border-bottom: 1px solid transparent;
}
header.nav.scrolled {
	background: rgba(8, 18, 38, 0.82);
	backdrop-filter: blur(16px);
	border-color: var(--line);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}
.nav-links {
	display: flex;
	gap: 22px;
	align-items: center;
}
.nav-links a {
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	transition: color 0.25s;
	position: relative;
	padding: 4px 0;
}
.nav-links a:hover {
	color: var(--text);
}
.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: var(--orange);
	transition: width 0.3s;
}
.nav-links a:hover::after {
	width: 100%;
}
.nav-links a.active {
	color: var(--text);
}
.nav-links a.active::after {
	width: 100%;
}
.nav-socials {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: 4px;
	padding-left: 10px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-socials a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--muted);
	background:
		radial-gradient(circle at 50% 0, rgba(102, 131, 255, 0.16), transparent 58%),
		rgba(17, 35, 73, 0.42);
	transition:
		color 0.25s,
		border-color 0.25s,
		box-shadow 0.25s,
		transform 0.25s;
}
.nav-socials a::after {
	content: "";
	position: absolute;
	inset: -4px;
	border: 1px solid rgba(102, 131, 255, 0.1);
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.78);
	transition:
		opacity 0.25s,
		transform 0.25s;
}
.nav-socials a:hover {
	color: var(--text);
	border-color: rgba(102, 131, 255, 0.55);
	box-shadow: 0 0 18px rgba(10, 60, 239, 0.36);
	transform: translateY(-1px);
}
.nav-socials a:hover::after {
	opacity: 1;
	transform: scale(1);
}
.nav-socials svg {
	width: 12px;
	height: 12px;
}
.nav-status {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 11px;
	letter-spacing: 0.14em;
	font-weight: 700;
	color: var(--muted);
	border: 1px solid var(--line);
	padding: 8px 14px;
	border-radius: 40px;
	text-transform: uppercase;
}
.nav-status-hub {
	padding: 6px 8px 6px 12px;
	background:
		linear-gradient(90deg, rgba(17, 35, 73, 0.72), rgba(8, 18, 38, 0.46)),
		radial-gradient(
			circle at 78% 50%,
			rgba(102, 131, 255, 0.13),
			transparent 55%
		);
	box-shadow:
		inset 0 0 22px rgba(102, 131, 255, 0.06),
		0 0 0 1px rgba(102, 131, 255, 0.04);
}
.nav-status-text {
	white-space: nowrap;
}
.dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--blue-light);
	box-shadow: 0 0 10px var(--blue-light);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.35;
	}
}
.burger {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(17, 35, 73, 0.72);
	color: var(--text);
	font: inherit;
}
.burger span {
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: 0.3s;
}
.burger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
	opacity: 0;
}
.burger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- SPA back button ---- */
.page-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	cursor: pointer;
	padding: 8px 0;
	margin-bottom: 24px;
	transition: 0.25s;
	background: none;
	border: none;
	font-family: inherit;
}
.page-back:hover {
	color: var(--blue-light);
}
.page-back svg {
	width: 16px;
	height: 16px;
}

/* ---- page transitions ---- */
.page-section {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.page-section.active {
	display: block;
	opacity: 1;
}
.page-hero {
	position: relative;
	padding: clamp(130px, 15vh, 200px) 0 clamp(60px, 8vh, 100px);
	border-bottom: 1px solid var(--line);
	overflow: hidden;
	background:
		radial-gradient(
			ellipse 60% 80% at 80% 20%,
			rgba(10, 60, 239, 0.2),
			transparent 58%
		),
		linear-gradient(180deg, #0b1834 0%, var(--navy-deep) 100%);
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 72px 72px;
	opacity: 0.35;
	pointer-events: none;
}
.page-hero::after {
	content: "";
	position: absolute;
	top: clamp(22px, 5vw, 48px);
	right: clamp(24px, 8vw, 130px);
	width: clamp(180px, 24vw, 360px);
	aspect-ratio: 1;
	background:
		url("/admin/Logo/Reverse/Digital/spacelab_icon-logo-reverse-rgb.svg") center
		/ contain no-repeat;
	opacity: 0.18;
	filter: drop-shadow(0 0 34px rgba(102, 131, 255, 0.32));
	pointer-events: none;
}
.page-hero .wrap {
	position: relative;
	z-index: 2;
}
.page-hero h1 {
	font-size: clamp(40px, 6vw, 84px);
	line-height: 0.95;
	margin: 16px 0 20px;
}
.page-hero p {
	font-size: clamp(16px, 1.6vw, 19px);
	color: var(--muted);
	max-width: 50ch;
	line-height: 1.6;
}

/* ---- shared btn ---- */
.btn {
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 16px 28px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.25s;
	border: 1px solid transparent;
	cursor: pointer;
}
.btn-primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--glow);
}
.btn-primary:hover {
	box-shadow: 0 0 36px var(--glow);
	transform: translateY(-2px);
	background: #0b44ff;
}
.btn-ghost {
	border-color: var(--line-strong);
	color: var(--text);
}
.btn-ghost:hover {
	border-color: var(--blue-light);
	color: var(--blue-light);
}

/* missions */
.mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.mission {
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--navy-2);
	padding: 32px;
	position: relative;
	overflow: hidden;
	transition: 0.35s;
	display: flex;
	flex-direction: column;
	box-shadow: 0 16px 40px rgba(2, 8, 20, 0.18);
}
.mission::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 100% 0%,
		rgba(10, 60, 239, 0.16),
		transparent 55%
	);
	opacity: 0;
	transition: 0.4s;
}
.mission:hover {
	border-color: var(--line-strong);
	transform: translateY(-4px);
}
.mission:hover::before {
	opacity: 1;
}
.mission::after {
	content: "";
	position: absolute;
	left: 32px;
	top: 0;
	width: 92px;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), var(--blue-light));
	opacity: 0.95;
}
.mission.feat::after {
	width: 140px;
	background: linear-gradient(90deg, var(--blue-light), var(--orange));
}
.mission.feat {
	grid-column: span 2;
	background: linear-gradient(120deg, var(--surface), var(--navy-2));
}
.m-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
}
.m-id {
	font-size: 12px;
	letter-spacing: 0.16em;
	font-weight: 700;
	color: var(--muted-2);
	text-transform: uppercase;
}
.m-status {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 7px 12px;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}
.m-status.go {
	color: var(--blue-light);
	border: 1px solid rgba(102, 131, 255, 0.35);
	background: rgba(102, 131, 255, 0.08);
}
.m-status.dev {
	color: var(--orange);
	border: 1px solid rgba(242, 135, 28, 0.35);
	background: rgba(242, 135, 28, 0.08);
}
.m-status.done {
	color: var(--muted);
	border: 1px solid var(--line);
}
.m-status .dot {
	background: currentColor;
	box-shadow: 0 0 8px currentColor;
}
.mission h3 {
	text-transform: uppercase;
	font-weight: 700;
	font-size: clamp(26px, 3.2vw, 42px);
	line-height: 1;
	margin: 24px 0 6px;
	letter-spacing: -0.01em;
}
.mission .m-class {
	font-size: 12px;
	letter-spacing: 0.14em;
	color: var(--blue-light);
	text-transform: uppercase;
	font-weight: 700;
}
.mission p {
	color: var(--muted);
	font-size: 15px;
	margin: 18px 0 24px;
	max-width: 62ch;
	line-height: 1.55;
}
.feat .m-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: end;
}
.bars {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.bar-row .bar-top {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted);
	margin-bottom: 8px;
}
.bar-row .bar-top b {
	color: var(--text);
}
.track {
	height: 5px;
	border-radius: 40px;
	background: var(--surface-2);
	overflow: hidden;
	border: 1px solid var(--line);
}
.fill {
	height: 100%;
	width: 0;
	border-radius: 40px;
	background: linear-gradient(90deg, var(--blue), var(--blue-light));
	transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fill.or {
	background: linear-gradient(90deg, #c96a0d, var(--orange));
}
.m-link {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--text);
	display: inline-flex;
	gap: 8px;
	align-items: center;
	margin-top: auto;
	padding-top: 22px;
	transition: 0.25s;
}
.m-link:hover {
	color: var(--blue-light);
	gap: 13px;
}
.patch {
	width: 72px;
	height: 72px;
	flex: none;
}
.mission-patch {
	width: 72px;
	height: 72px;
	flex: none;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 12px rgba(10, 60, 239, 0.3);
}

/* timeline */
.tl-wrap {
	overflow-x: auto;
	padding-bottom: 14px;
	scrollbar-width: thin;
}
.tl {
	display: flex;
	min-width: max-content;
	border-top: 2px solid var(--line-strong);
	margin-top: 10px;
}
.tl-item {
	min-width: 280px;
	padding: 30px 32px 30px 0;
	border-right: 1px solid var(--line);
	position: relative;
}
.tl-item::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--navy-deep);
	border: 2px solid var(--blue-light);
}
.tl-item.active::before {
	background: var(--orange);
	border-color: var(--orange);
	box-shadow: 0 0 14px var(--orange);
}
.tl-year {
	font-weight: 700;
	font-size: 32px;
	color: var(--blue-light);
	margin: 14px 0 16px;
	letter-spacing: -0.01em;
}
.tl-item ul {
	list-style: none;
}
.tl-item li {
	color: var(--muted);
	font-size: 14px;
	padding-left: 16px;
	position: relative;
	margin-bottom: 9px;
}
.tl-item li::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--orange);
}

/* footer */
footer {
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--line);
	background: var(--navy-deep);
	padding: 70px 0 36px;
	overflow: hidden;
}
.footer-cubesat {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.footer-cubesat .cubesat-click {
	cursor: pointer;
}
.cubesat-egg {
	position: absolute;
	top: 33%;
	left: 44%;
	width: 12%;
	height: 28%;
	z-index: 2;
	cursor: pointer;
	background: transparent;
}
.cubesat-egg:hover {
	outline: 1px dashed rgba(102, 131, 255, 0.3);
}
.foot-top,
.foot-bottom {
	position: relative;
}
.foot-top {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 54px;
}
.foot-brand {
	max-width: 380px;
}
.foot-brand p {
	color: var(--muted);
	font-size: 14px;
	margin-top: 18px;
}
.foot-cols {
	display: flex;
	gap: clamp(40px, 7vw, 90px);
	flex-wrap: wrap;
}
.foot-col h4 {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--muted-2);
	margin-bottom: 18px;
}
.foot-col a {
	display: block;
	color: var(--muted);
	font-size: 14.5px;
	margin-bottom: 11px;
	transition: 0.2s;
}
.foot-col a:hover {
	color: var(--blue-light);
}
.foot-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}
.foot-bottom p {
	font-size: 11.5px;
	letter-spacing: 0.06em;
	color: var(--muted-2);
}
.socials {
	display: flex;
	gap: 10px;
}
.socials a {
	width: 38px;
	height: 38px;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	transition: 0.25s;
}
.socials a:hover {
	border-color: var(--blue-light);
	color: var(--blue-light);
	transform: translateY(-2px);
}
.socials svg {
	width: 16px;
	height: 16px;
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
.partner-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
	align-items: stretch;
	padding: 20px 0;
}
.partner-strip img,
.partner-tile {
	height: 76px;
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(17, 35, 73, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: contain;
	padding: 14px;
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	transition: 0.3s;
}
.partner-strip img {
	opacity: 0.68;
	filter: grayscale(1) brightness(1.8);
}
.partner-link {
	display: block;
	min-width: 0;
}
.partner-tile {
	flex-direction: column;
	gap: 4px;
	line-height: 1.2;
}
.partner-tile strong {
	font: inherit;
	color: inherit;
}
.partner-tile small {
	font-size: 10px;
	letter-spacing: 0.08em;
	color: var(--muted-2);
}
.partner-strip img:hover,
.partner-tile:hover,
.partner-link:hover img,
.partner-link:hover .partner-tile {
	opacity: 1;
	filter: none;
	border-color: var(--line-strong);
	color: var(--text);
	transform: translateY(-2px);
}

@media (max-width: 1000px) {
	.hero .wrap {
		grid-template-columns: 1fr;
	}
	.orbit-stage {
		max-width: 420px;
		margin: 0 auto;
		order: -1;
	}
	.about-grid,
	.gs-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.mission-grid {
		grid-template-columns: 1fr;
	}
	.mission.feat {
		grid-column: span 1;
	}
	.feat .m-body {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.stats {
		grid-template-columns: 1fr 1fr;
	}
	.stat:nth-child(2) {
		border-right: none;
	}
	.stat:nth-child(1),
	.stat:nth-child(2) {
		border-bottom: 1px solid var(--line);
	}
	.sectors-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.teams-grid {
		grid-template-columns: 1fr;
	}
	.gs-card.gs-full {
		grid-column: span 1;
	}
	.people-grid {
		grid-template-columns: 1fr;
	}
	.nav-socials {
		display: none;
	}
	.page-hero::after {
		width: 220px;
		opacity: 0.12;
	}
	.partner-strip {
		grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	}
	.partner-strip img,
	.partner-tile {
		height: 68px;
		font-size: 11px;
	}
}
@media (max-width: 680px) {
	.wrap {
		padding: 0 18px;
	}
	.section {
		padding: 64px 0;
	}
	.sec-head {
		gap: 16px;
		margin-bottom: 34px;
	}
	.sec-head h2 {
		font-size: clamp(34px, 12vw, 48px);
	}
	.eyebrow {
		font-size: 11px;
		letter-spacing: 0.18em;
		gap: 9px;
	}
	.eyebrow::before {
		width: 20px;
	}
	.btn {
		width: 100%;
		justify-content: center;
		padding: 14px 18px;
	}
	header.nav.scrolled,
	header.nav {
		background: rgba(8, 18, 38, 0.86);
		backdrop-filter: blur(14px);
		border-color: var(--line);
	}
	.nav-links,
	.nav-status {
		display: none;
	}
	.burger {
		display: flex;
	}
	.stats {
		grid-template-columns: 1fr;
	}
	.stat {
		border-right: none;
		border-bottom: 1px solid var(--line);
	}
	.stat:last-child {
		border-bottom: none;
	}
	.sectors-grid {
		grid-template-columns: 1fr;
	}
	.coord-top {
		flex-direction: column;
	}
	.page-hero {
		padding: 104px 0 42px;
	}
	.page-hero h1 {
		font-size: clamp(42px, 16vw, 64px);
	}
	.page-hero p {
		font-size: 15px;
	}
	.page-hero::after {
		top: 18px;
		right: -90px;
		width: 220px;
		opacity: 0.08;
	}
	.mission {
		padding: 24px;
	}
	.m-top {
		flex-direction: column;
	}
	.partner-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 8px 0;
	}
	.partner-strip img,
	.partner-tile {
		height: 64px;
		padding: 10px;
	}
}
.mobile-menu {
	display: none;
	position: fixed;
	inset: 76px 0 0;
	z-index: 49;
	background: rgba(8, 18, 38, 0.97);
	backdrop-filter: blur(14px);
	flex-direction: column;
	padding: 30px;
	gap: 6px;
	overflow-y: auto;
}
.mobile-menu.open {
	display: flex;
}
.mobile-menu a {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.04em;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	color: var(--text);
}
.mobile-menu a.active {
	color: var(--blue-light);
	padding-left: 14px;
	border-left: 3px solid var(--blue-light);
	margin-left: -14px;
}
.mobile-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 18px;
}
.mobile-socials a {
	width: auto;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 10px 14px;
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--muted);
	background: rgba(17, 35, 73, 0.72);
}
@media (max-width: 420px) {
	.mobile-menu {
		padding: 22px;
	}
	.mobile-menu a {
		font-size: 22px;
		padding: 11px 0;
	}
	.mobile-socials a {
		font-size: 10px;
		padding: 9px 12px;
	}
}
