@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/outfit-400.woff2") format("woff2");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("fonts/outfit-500.woff2") format("woff2");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("fonts/outfit-600.woff2") format("woff2");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("fonts/outfit-700.woff2") format("woff2");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("fonts/outfit-800.woff2") format("woff2");
}
@font-face {
	font-family: "Source Sans 3";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/source-sans-400.woff2") format("woff2");
}
@font-face {
	font-family: "Source Sans 3";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/source-sans-400i.woff2") format("woff2");
}
@font-face {
	font-family: "Source Sans 3";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("fonts/source-sans-600.woff2") format("woff2");
}
@font-face {
	font-family: "Source Sans 3";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("fonts/source-sans-700.woff2") format("woff2");
}

:root {
	--navy: #07275f;
	--blue: #0a3a8a;
	--blue-bright: #1560c4;
	--paper: #f4f7fb;
	--card: #ffffff;
	--ink: #10203a;
	--ink-soft: #4a5b76;
	--line: #d5deeb;
	--orange: #ef6c00;
	--orange-deep: #d45a00;
	--danger: #b42318;
	--ok: #0f6b4c;
	--radius: 18px;
	--shadow: 0 22px 50px rgba(7, 39, 95, 0.18);
}

* { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: #061833;
	font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 18px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.sky {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, #05142c 0%, #0a3a8a 42%, #f4f7fb 42%, #f4f7fb 100%);
}

a { color: var(--blue-bright); text-underline-offset: 3px; }
a:hover { color: var(--orange-deep); }

.wrap {
	width: min(1200px, calc(100% - 36px));
	margin-inline: auto;
}
.wrap.narrow { width: min(760px, calc(100% - 36px)); }

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(14px);
	background: rgba(5, 20, 44, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.brand:hover { color: #fff; }
.brand__mark {
	width: 28px;
	height: 30px;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}

.topnav {
	display: flex;
	align-items: center;
	gap: 6px;
}
.topnav a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	text-decoration: none;
	transition: background 0.15s, transform 0.15s;
}
.topnav a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}
.topnav img {
	display: block;
	filter: brightness(0) invert(1);
}

.hero { padding: 28px 0 10px; }

.poster {
	margin: 0;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: var(--blue);
}
.poster img {
	display: block;
	width: 100%;
	height: auto;
}

.appeal {
	background: #f4f7fb;
	padding: 56px 0 20px;
}

.kicker {
	margin: 0 0 10px;
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange);
}
.kicker--light { color: #ffb060; }

.kicker--cta {
	color: #ffb060;
	font-size: clamp(22px, 3.2vw, 34px);
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}

h1 {
	margin: 0 0 22px;
	font-family: "Outfit", sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 5vw, 46px);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--navy);
}
h1 em {
	font-style: normal;
	color: var(--orange);
}

.lede {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.05em;
}

.demands {
	background: #f4f7fb;
	padding: 28px 0 64px;
}

.section-title {
	margin: 0 0 22px;
	font-family: "Outfit", sans-serif;
	font-size: clamp(26px, 4vw, 34px);
	letter-spacing: -0.02em;
	color: var(--navy);
}

.demand-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.demand {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px 22px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 26px 24px;
	box-shadow: 0 8px 24px rgba(7, 39, 95, 0.06);
}

.demand__num {
	font-family: "Outfit", sans-serif;
	font-weight: 800;
	font-size: 28px;
	color: var(--orange);
	line-height: 1;
	padding-top: 4px;
}

.demand h3 {
	margin: 0 0 10px;
	font-family: "Outfit", sans-serif;
	font-size: clamp(19px, 2.4vw, 23px);
	line-height: 1.25;
	color: var(--navy);
}

.demand p {
	margin: 0;
	color: var(--ink-soft);
}

.demand__close {
	margin-top: 14px !important;
	font-weight: 700;
	color: var(--navy) !important;
}

.signup-block {
	position: relative;
	background:
		radial-gradient(700px 280px at 80% 0%, rgba(239, 108, 0, 0.22), transparent 60%),
		linear-gradient(180deg, #0a3a8a 0%, #07275f 100%);
	padding: 72px 0 88px;
	color: #fff;
	overflow: hidden;
}

.signup-block::before {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	right: -40px;
	top: -60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	animation: float 9s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(18px); }
}

.signup-grid {
	display: grid;
	gap: 40px;
	align-items: start;
	position: relative;
}

@media (min-width: 900px) {
	.signup-grid {
		grid-template-columns: minmax(520px, 600px) minmax(0, 1fr);
		gap: 48px;
		align-items: center;
	}
}

.signup-copy h2 {
	margin: 0 0 14px;
	font-family: "Outfit", sans-serif;
	font-size: clamp(28px, 4.4vw, 42px);
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.signup-copy p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.82);
}

.signup-lead {
	font-size: clamp(18px, 2.2vw, 22px);
	line-height: 1.45;
	max-width: 36ch;
}

.tally {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	margin: 28px 0 0;
	padding: 36px 40px 28px;
	min-height: 220px;
	width: 100%;
	max-width: 420px;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: visible;
	box-sizing: border-box;
}

.tally::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	border-radius: 22px 0 0 22px;
	background: linear-gradient(180deg, #ffb060, var(--orange));
}

.tally__num {
	display: block;
	font-family: "Outfit", sans-serif;
	font-weight: 800;
	font-size: clamp(56px, 8vw, 88px);
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.tally__label {
	display: block;
	color: #ffb060;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tally__dove {
	display: block;
	width: min(180px, 70%);
	height: auto;
	margin: 10px auto 0;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.signup form,
.done {
	background: #fff;
	color: var(--ink);
	border-radius: 24px;
	padding: 36px 34px 30px;
	box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
	border: 1px solid rgba(255, 255, 255, 0.55);
	outline: 3px solid rgba(239, 108, 0, 0.35);
	outline-offset: 6px;
	animation: card-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes card-in {
	from { opacity: 0; transform: translateY(28px) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.signup form { position: relative; }

.signup h2,
.done h2 {
	font-family: "Outfit", sans-serif;
	font-weight: 800;
	font-size: clamp(24px, 2.4vw, 30px);
	margin: 0 0 18px;
	color: var(--navy);
	letter-spacing: -0.03em;
}

.form-intro {
	margin: 0 0 20px;
	color: var(--ink-soft);
	font-size: 15.5px;
}

.field { margin-bottom: 14px; }
.field--zip { max-width: 160px; }

.row { display: grid; gap: 12px; }

@media (min-width: 480px) {
	.row { grid-template-columns: 1fr 1fr; }
}

label {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	font-family: "Outfit", sans-serif;
	margin-bottom: 6px;
	color: var(--navy);
}

.req {
	color: var(--orange);
	font-weight: 800;
}

input[type="email"],
input[type="text"] {
	width: 100%;
	font: inherit;
	font-size: 16px;
	padding: 12px 13px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #f7f9fc;
	color: var(--ink);
	transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

input:focus-visible {
	outline: none;
	border-color: var(--blue-bright);
	box-shadow: 0 0 0 4px rgba(21, 96, 196, 0.16);
	background: #fff;
	transform: translateY(-1px);
}

input[aria-invalid="true"] {
	border-color: var(--danger);
	box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.field--check { margin: 18px 0 16px; }

.check {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	font-weight: 400;
	font-size: 14.5px;
	line-height: 1.45;
	cursor: pointer;
	color: var(--ink-soft);
}

.check input {
	width: 19px;
	height: 19px;
	margin: 2px 0 0;
	accent-color: var(--orange);
	flex: none;
}

.err {
	margin: 6px 0 0;
	font-size: 13.5px;
	color: var(--danger);
}
.err:empty { display: none; }

.submit {
	width: 100%;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	font-size: 16px;
	padding: 15px 18px;
	border: none;
	border-radius: 12px;
	background: linear-gradient(180deg, #ff8419 0%, var(--orange) 100%);
	color: #fff;
	cursor: pointer;
	position: relative;
	box-shadow: 0 10px 24px rgba(239, 108, 0, 0.35);
	animation: pulse 2.4s ease-in-out infinite;
	transition: transform 0.15s, filter 0.15s;
}

.submit:hover { filter: brightness(1.05); transform: translateY(-1px); }
.submit:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; }
.submit[disabled] {
	background: #7d8796;
	box-shadow: none;
	animation: none;
	cursor: progress;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 10px 24px rgba(239, 108, 0, 0.32); }
	50% { box-shadow: 0 14px 32px rgba(239, 108, 0, 0.55); }
}

.submit__spinner { display: none; }

.submit.is-busy .submit__text { visibility: hidden; }
.submit.is-busy .submit__spinner {
	display: block;
	position: absolute;
	inset: 0;
	margin: auto;
	width: 19px;
	height: 19px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.fineprint {
	margin: 14px 0 0;
	font-size: 13.5px;
	color: var(--ink-soft);
}

.status {
	margin: 16px 0 0;
	padding: 0;
	font-size: 15px;
}

.status:not(:empty) {
	padding: 13px 15px;
	border-radius: 10px;
	border-left: 3px solid var(--ok);
	background: #e8f6ef;
}

.status.is-error:not(:empty) {
	border-left-color: var(--danger);
	background: #fbeeec;
	color: var(--danger);
}

.done p { margin: 0; color: var(--ink-soft); }

.trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.footer {
	background: #041022;
	color: rgba(255, 255, 255, 0.72);
	padding: 28px 0 36px;
	border-top: 3px solid var(--orange);
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	align-items: center;
	justify-content: space-between;
}

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

.social a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 13.5px;
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.15s, transform 0.15s;
}
.social a:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	transform: translateY(-1px);
}
.social img {
	display: block;
	filter: brightness(0) invert(1);
}

.legal { margin: 0; font-size: 14px; }
.legal a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}
.legal a:hover { color: #fff; text-decoration: underline; }
.legal span { margin: 0 8px; opacity: 0.5; }

.reveal {
	opacity: 0;
	transform: translateY(18px);
	animation: reveal 0.7s ease forwards;
}
.reveal--late { animation-delay: 0.18s; }
.demand-list .demand:nth-child(1) { animation-delay: 0.05s; }
.demand-list .demand:nth-child(2) { animation-delay: 0.15s; }
.demand-list .demand:nth-child(3) { animation-delay: 0.25s; }

@keyframes reveal {
	to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal, .signup form, .done, .submit, .signup-block::before {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
	.submit.is-busy .submit__spinner { animation-duration: 2s; }
}

@media (max-width: 640px) {
	.brand span:last-child { display: none; }
	.topnav a { width: 34px; height: 34px; }
	.demand { grid-template-columns: 1fr; gap: 8px; }
	.hero { padding-top: 16px; }
	.poster { border-radius: 14px; }
}

/* ---------- Dankeseite ---------- */

.page-thanks .thanks-hero {
	padding: 56px 0 12px;
	color: #fff;
	text-align: center;
}
.page-thanks .thanks-hero h1 {
	color: #fff;
}
.page-thanks .thanks-hero .lede {
	margin: 0 auto;
	max-width: 46ch;
	color: rgba(255, 255, 255, 0.86);
}

.thanks-body {
	background: #f4f7fb;
	padding: 28px 0 80px;
}

.thanks-grid {
	display: grid;
	gap: 22px;
	width: min(860px, calc(100% - 36px));
}

.thanks-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 32px 32px 28px;
	box-shadow: 0 10px 28px rgba(7, 39, 95, 0.08);
}

.thanks-card h2 {
	margin: 0 0 14px;
	font-family: "Outfit", sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--navy);
}

.thanks-card p {
	margin: 0 0 16px;
	color: var(--ink-soft);
}

.btn-donate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 6px;
	padding: 14px 22px;
	border-radius: 12px;
	background: linear-gradient(180deg, #ff8419 0%, var(--orange) 100%);
	color: #fff;
	text-decoration: none;
	font-family: "Outfit", sans-serif;
	font-weight: 700;
	box-shadow: 0 10px 24px rgba(239, 108, 0, 0.35);
}
.btn-donate:hover {
	color: #fff;
	filter: brightness(1.05);
}

.thanks-cta-line {
	font-family: "Outfit", sans-serif;
	font-weight: 700;
}
.thanks-cta-line a {
	color: var(--navy);
	text-decoration: none;
}
.thanks-cta-line a:hover { color: var(--orange-deep); }

.thanks-cover {
	display: block;
	margin-top: 8px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(7, 39, 95, 0.16);
}
.thanks-cover img {
	display: block;
	width: 100%;
	height: auto;
}
