/* =========================================================================
   GRAND THEFT PLANET – FOOTER (END OF TRANSMISSION)
   ========================================================================= */

.gtp-footer {
	position: relative;
	background: var(--gtp-ink, #060606) !important;
	overflow: hidden;
	padding-top: 1px;
}

/* ---------- Horizont: Krümmung des Planeten aus dem Hero ---------- */
.gtp-footer__horizon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 160%;
	height: 340px;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	background:
		radial-gradient(70% 100% at 50% 100%, rgba(22, 132, 221, 0.22) 0%, rgba(22, 132, 221, 0) 70%),
		radial-gradient(50% 100% at 30% 100%, rgba(148, 190, 114, 0.14) 0%, rgba(148, 190, 114, 0) 70%);
	pointer-events: none;
}

.gtp-footer__horizon::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border-top: 1px solid rgba(22, 132, 221, 0.4);
	box-shadow: 0 -1px 26px rgba(22, 132, 221, 0.28);
}

/* ---------- Signal-Statuszeile ---------- */
.gtp-footer__status {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 46px 28px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.gtp-footer__signal {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gtp-green, #94be72) !important;
	box-shadow: 0 0 8px rgba(148, 190, 114, 0.9);
	flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.gtp-footer__signal {
		animation: gtpFooterSignal 2.4s ease-in-out infinite;
	}
}

@keyframes gtpFooterSignal {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.25; }
}

.gtp-footer__status-text {
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5) !important;
}

/* ---------- Spalten ---------- */
.gtp-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 44px 28px 48px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
	gap: 44px;
}

.gtp-footer__logo {
	display: inline-block;
	font-family: 'Pricedown', 'Anton', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	color: #ffffff !important;
	text-decoration: none;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.gtp-footer__blurb {
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.85rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55) !important;
	margin: 0 0 22px;
	max-width: 300px;
}

.gtp-footer__social {
	display: flex;
	gap: 10px;
}

.gtp-footer__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 4px;
	color: #ffffff !important;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.gtp-footer__icon:hover {
	border-color: var(--gtp-blue, #1684dd) !important;
	background: rgba(22, 132, 221, 0.14) !important;
}

.gtp-footer__heading {
	display: flex;
	align-items: baseline;
	gap: 9px;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #ffffff !important;
	margin: 0 0 20px;
}

.gtp-footer__heading span {
	font-size: 0.58rem;
	letter-spacing: 0.1em;
	color: var(--gtp-blue, #1684dd) !important;
}

.gtp-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.gtp-footer__menu a {
	position: relative;
	display: inline-block;
	color: rgba(255, 255, 255, 0.58) !important;
	text-decoration: none;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.85rem;
	transition: color 0.2s ease, padding-left 0.25s ease;
}

.gtp-footer__menu a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 1px;
	background: var(--gtp-blue, #1684dd);
	transition: width 0.25s ease;
}

.gtp-footer__menu a:hover {
	color: #ffffff !important;
	padding-left: 16px;
}

.gtp-footer__menu a:hover::before {
	width: 10px;
}

/* ---------- Newsletter ---------- */
.gtp-footer__newsletter-copy {
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.85rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55) !important;
	margin: 0 0 18px;
}

.gtp-footer__newsletter-row {
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.25s ease;
}

.gtp-footer__newsletter-row:focus-within {
	border-color: var(--gtp-blue, #1684dd);
}

.gtp-footer__newsletter-input {
	flex: 1;
	min-width: 0;
	background: transparent !important;
	border: none !important;
	padding: 13px 16px;
	color: #ffffff !important;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.85rem;
	outline: none;
}

.gtp-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.gtp-footer__newsletter-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	background: var(--gtp-blue, #1684dd) !important;
	border: none !important;
	color: #ffffff !important;
	cursor: pointer;
	transition: background-color 0.2s ease;
	flex-shrink: 0;
}

.gtp-footer__newsletter-submit:hover {
	background: var(--gtp-blue-dark, #0e5690) !important;
}

.gtp-footer__newsletter-msg {
	min-height: 18px;
	margin: 11px 0 0;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.76rem;
	letter-spacing: 0.04em;
	color: var(--gtp-green, #94be72) !important;
}

.gtp-footer__newsletter-msg.is-error {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* ---------- Untere Zeile ---------- */
.gtp-footer__bottom {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 22px 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.gtp-footer__copy {
	margin: 0;
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.38) !important;
}

.gtp-footer__payments {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.gtp-footer__payments span {
	font-family: 'Archivo', Arial, sans-serif;
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.45) !important;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 4px;
	padding: 5px 10px;
}

/* ---------- Riesiger Schriftzug ---------- */
.gtp-footer__wordmark {
	position: relative;
	z-index: 1;
	margin-top: 8px;
	height: clamp(72px, 11vw, 168px);
	overflow: hidden;
	display: flex;
	justify-content: center;
	pointer-events: none;
	user-select: none;
}

.gtp-footer__wordmark span {
	display: block;
	font-family: 'Pricedown', 'Anton', sans-serif;
	font-size: clamp(4.2rem, 15.5vw, 15rem);
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.07) !important;
	background-image: linear-gradient(100deg, rgba(255, 255, 255, 0.07) 38%, rgba(22, 132, 221, 0.55) 50%, rgba(255, 255, 255, 0.07) 62%);
	background-size: 300% 100%;
	background-position: 120% 0;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
	.gtp-footer__wordmark span {
		animation: gtpWordmarkSweep 7s ease-in-out infinite;
	}
}

@keyframes gtpWordmarkSweep {
	0% { background-position: 130% 0; }
	60%, 100% { background-position: -30% 0; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 980px) {
	.gtp-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.gtp-footer__col--brand,
	.gtp-footer__col--newsletter {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.gtp-footer__status,
	.gtp-footer__inner,
	.gtp-footer__bottom {
		padding-left: 18px;
		padding-right: 18px;
	}
	.gtp-footer__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.gtp-footer__col--brand,
	.gtp-footer__col--newsletter {
		grid-column: auto;
	}
	.gtp-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
