:root {
	--navy: #000035;
	--violet: #5C1DF2;
	--cyan: #00CCFF;
	--lavender: #9F65FB;
	--white: #ffffff;
	--light: #f4f3ff;
	--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;
}

/* ---- TYPOGRAPHY ---- */
.tt {
	font-family: 'TT Squares Condensed', 'Poppins', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ---- NOISE OVERLAY ---- */
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: 0.4;
}

/* ---- GRID LINES BG ---- */
.grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 204, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 204, 255, 0.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, 0.85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(0, 204, 255, 0.12);
}

.nav-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 15px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-logo span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 12px var(--cyan);
}

.logo {
    max-width: 150px;
}

.nav-links {
	display: flex;
	gap: 36px;
	list-style: none;
}

.nav-links a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--cyan);
	transition: width 0.3s;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-cta {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--navy);
	background: var(--cyan);
	border: none;
	padding: 10px 24px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s;
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

/* ---- HERO ---- */
#hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 120px 5% 80px;
	overflow: hidden;
}

.hero-glow {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(92, 29, 242, 0.35) 0%, transparent 70%);
	pointer-events: none;
}

.hero-glow-2 {
	position: absolute;
	top: 60%;
	left: 20%;
	width: 400px;
	height: 300px;
	background: radial-gradient(ellipse, rgba(0, 204, 255, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cyan);
	border: 1px solid rgba(0, 204, 255, 0.3);
	padding: 6px 16px;
	margin-bottom: 32px;
	position: relative;
}

.hero-eyebrow::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.4;
		transform: scale(0.8);
	}
}

.hero-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: clamp(64px, 7vw, 96px);
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 24px;
	position: relative;
}

.hero-title .line-accent {
	display: block;
	background: linear-gradient(90deg, var(--violet), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-sub {
	font-size: 16px;
	font-weight: 400;
	color: var(--gray);
	max-width: 600px;
	line-height: 1.7;
	margin-bottom: 48px;
	position: relative;
}

.hero-actions {
	display: flex;
	gap: 16px;
	align-items: center;
	position: relative;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	background: linear-gradient(135deg, var(--violet), var(--lavender));
	border: none;
	padding: 16px 36px;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(92, 29, 242, 0.5);
}

.btn-ghost {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gray);
	text-decoration: none;
	border-bottom: 1px solid rgba(160, 160, 192, 0.3);
	padding-bottom: 2px;
	transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
	color: var(--white);
	border-color: var(--white);
}

/* ---- SECTION BASE ---- */
section {
	position: relative;
	padding: 100px 5%;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 16px;
}

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

.section-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 7px;
}

.section-title .accent {
	color: var(--lavender);
}

.max-content {
	max-width: 1200px;
	margin: 0 auto;
}

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

/* ---- OVERVIEW ---- */
#overview {
	background: linear-gradient(180deg, rgba(92, 29, 242, 0.05) 0%, transparent 100%);
}

.overview-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 10px;
}

.overview-text p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--gray);
	margin-bottom: 16px;
}

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

.overview-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(0, 204, 255, 0.12);
	padding: 36px;
	position: relative;
	overflow: hidden;
}

.overview-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.overview-card h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 20px;
}

.info-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	gap: 12px;
}

.info-row:last-child {
	border-bottom: none;
}

.info-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gray);
	white-space: nowrap;
	flex-shrink: 0;
}

.info-value {
	font-size: 13px;
	font-weight: 500;
	color: var(--white);
	text-align: right;
}

/* ---- MISSION ---- */
#mission {
	text-align: center;
}

.mission-statement {
	font-size: clamp(20px, 2.5vw, 32px);
	font-weight: 300;
	line-height: 1.6;
	color: var(--white);
	max-width: 800px;
	margin: 0 auto 60px;
}

.mission-statement strong {
	font-weight: 700;
	background: linear-gradient(90deg, var(--lavender), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ---- APPROACH ---- */
#approach {
	background: linear-gradient(180deg, transparent, rgba(0, 0, 53, 0.5));
}

.approach-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-top: 20px;
}

.approach-intro {
	font-size: 16px;
	line-height: 1.8;
	color: var(--gray);
	margin-bottom: 24px;
}

.approach-intro strong {
	color: var(--white);
	font-weight: 600;
}

.approach-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.approach-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(159, 101, 251, 0.15);
	border-left: 3px solid var(--lavender);
	transition: background 0.2s;
}

.approach-item:hover {
	background: rgba(159, 101, 251, 0.08);
}

.approach-item span {
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}

.approach-icon {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lavender);
	flex-shrink: 0;
}

/* ---- KEY ACTIVITIES ---- */
#activities .section-title {
	margin-bottom: 30px;
}

.activities-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	margin-top: 20px;
}

.activity-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 204, 255, 0.08);
	padding: 40px 28px;
	position: relative;
	overflow: hidden;
	transition: background 0.3s, border-color 0.3s;
	cursor: default;
}

.activity-card:hover {
	background: rgba(92, 29, 242, 0.1);
	border-color: rgba(92, 29, 242, 0.4);
}

.activity-card:hover .activity-num {
	color: var(--violet);
}

.activity-num {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 48px;
	color: rgba(0, 204, 255, 0.08);
	line-height: 1;
	margin-bottom: 20px;
	transition: color 0.3s;
}

.activity-title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 12px;
}

.activity-desc {
	font-size: 14px;
	line-height: 1.7;
	color: var(--gray);
}

/* ---- WHY US ---- */
#why {
	background: rgba(92, 29, 242, 0.05);
	border-top: 1px solid rgba(92, 29, 242, 0.15);
	border-bottom: 1px solid rgba(92, 29, 242, 0.15);
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 20px;
}

.why-intro {
	font-size: 16px;
	line-height: 1.8;
	color: var(--gray);
	margin-bottom: 24px;
}

.why-intro strong {
	color: var(--white);
	font-weight: 600;
}

.why-goal {
	margin-top: 32px;
	padding: 24px;
	border: 1px solid rgba(0, 204, 255, 0.2);
	background: rgba(0, 204, 255, 0.04);
	font-size: 15px;
	font-weight: 500;
	color: var(--white);
	line-height: 1.6;
	position: relative;
	padding-left: 40px;
}

.why-goal::before {
	content: '"';
	position: absolute;
	left: 16px;
	top: 16px;
	font-size: 28px;
	font-weight: 900;
	color: var(--cyan);
	line-height: 1;
}

.differentiators {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.diff-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(0, 204, 255, 0.08);
}

.diff-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--violet), var(--cyan));
	flex-shrink: 0;
	margin-top: 4px;
}

.diff-item p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--gray);
}

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

/* ---- CONTACT FORM ---- */
#contact {
	text-align: center;
}

.form-wrap {
	max-width: 560px;
	margin: 30px auto 0;
	text-align: left;
}

.form-field {
	margin-bottom: 20px;
}

.form-field label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 8px;
}

.form-field input {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(0, 204, 255, 0.15);
	color: var(--white);
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	padding: 14px 18px;
	outline: none;
	transition: border-color 0.2s, background 0.2s;
}

.form-field input:focus {
	border-color: var(--cyan);
	background: rgba(0, 204, 255, 0.04);
}

.form-field input::placeholder {
	color: rgba(160, 160, 192, 0.5);
}

.consent-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 28px 0;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(0, 204, 255, 0.1);
}

.consent-row input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--violet);
	flex-shrink: 0;
	margin-top: 2px;
	cursor: pointer;
}

.consent-row p {
	font-size: 13px;
	line-height: 1.6;
	color: var(--gray);
}

.btn-submit {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
	background: linear-gradient(135deg, var(--violet) 0%, var(--lavender) 100%);
	border: none;
	padding: 18px;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-submit:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.form-field {
	margin-bottom: 16px;
}

input {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: white;
}

input.error-input {
	border-color: #ff4d4d;
}

.error {
	display: block;
	font-size: 12px;
	color: #ff4d4d;
	margin-top: 6px;
	min-height: 14px;
}

.consent-error {
	margin-top: 8px;
}

.btn-submit {
	margin-top: 20px;
	width: 100%;
	padding: 14px;
	border-radius: 10px;
	border: none;
	cursor: pointer;
}

/* loading */
.btn-submit.loading {
	opacity: 0.7;
	pointer-events: none;
}

.success-message {
	margin-top: 16px;
	color: #00ffa6;
	font-size: 14px;
}

/* ---- FOOTER ---- */
footer {
	background: rgba(0, 0, 20, 0.8);
	border-top: 1px solid rgba(0, 204, 255, 0.1);
	padding: 48px 5%;
}

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

.footer-left .footer-logo {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 8px;
}

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

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

.footer-right a {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 204, 255, 0.3);
	padding-bottom: 1px;
	transition: border-color 0.2s;
}

.footer-right a:hover {
	border-color: var(--cyan);
}

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

/* ---- PRIVACY PAGE ---- */
.privacy-page {
	display: none;
	min-height: 100vh;
	padding: 120px 5% 80px;
}

.privacy-page.active {
	display: block;
}

.main-page.hidden {
	display: none;
}

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

.privacy-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
	text-decoration: none;
	margin-bottom: 48px;
	cursor: pointer;
	background: none;
	border: none;
	transition: gap 0.2s;
}

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

.privacy-back svg {
	width: 16px;
	height: 16px;
}

.privacy-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 900;
	font-size: clamp(32px, 5vw, 60px);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
	line-height: 1;
}

.privacy-title .accent {
	color: var(--lavender);
}

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

.privacy-section {
	margin-bottom: 48px;
}

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

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

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

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

.privacy-section ul {
	list-style: none;
	padding: 0;
}

.privacy-section ul li {
	padding-left: 20px;
	position: relative;
}

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

.visual-wrap {
	width: 100%;
	height: 420px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scene {
	position: relative;
	width: 320px;
	height: 320px;
}

/* 🌐 GLOBE */
.globe {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	background:
		radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.8), transparent 60%),
		radial-gradient(circle at 70% 70%, rgba(100, 0, 255, 0.6), transparent 60%),
		#050a2a;

	box-shadow:
		0 0 80px rgba(0, 200, 255, 0.35),
		inset 0 0 40px rgba(255, 255, 255, 0.1);

	animation: spin 20s linear infinite;
}

/* grid overlay */
.globe::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;

	background: repeating-linear-gradient(to right,
			rgba(255, 255, 255, 0.06) 0px,
			rgba(255, 255, 255, 0.06) 1px,
			transparent 1px,
			transparent 18px);

	opacity: 0.3;
}

/* 🔵 FLOATING SPHERES */
.sphere {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.s1 {
	width: 90px;
	height: 90px;
	background: radial-gradient(circle, #00f0ff, #001aff);
	top: 0;
	left: 0;
	animation: float1 6s ease-in-out infinite;
}

.s2 {
	width: 70px;
	height: 70px;
	background: radial-gradient(circle, #a100ff, #3a00ff);
	bottom: 10px;
	right: 10px;
	animation: float2 8s ease-in-out infinite;
}

/* 🪐 ORBIT */
.orbit {
	position: absolute;
	width: 300px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;

	animation: rotateOrbit 12s linear infinite;
}

/* 💰 COINS */
.coin {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: bold;
	color: white;
	font-size: 18px;

	backdrop-filter: blur(10px);
}

.coin svg {
	max-width: 40px;
}

.btc {
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: #07073B;
	box-shadow: 0 0 20px rgba(0, 204, 255, .08);
}

.eth {
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: #07073B;
	box-shadow: 0 0 20px rgba(0, 204, 255, .08);
}

/* 🎞 ANIMATIONS */
@keyframes spin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes rotateOrbit {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes float1 {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

@keyframes float2 {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(25px);
	}
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
	.nav-links {
		display: none;
	}

	.overview-grid,
	.approach-grid,
	.why-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

@media (max-width: 600px) {
	.activities-grid {
		grid-template-columns: 1fr;
	}

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

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