:root {
	--petrol: #264653;
	--gelb: #e9c46a;
	--orange: #f4a261;
	--ziegel: #e76f51;
	--bg: #fcfcfc;
	--ink: #0f1720;
}

* {
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--bg);
	font:
		16px / 1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	text-rendering: optimizeLegibility;
}

.skip {
	position: absolute;
	left: -9999px;
}
.skip:focus {
	left: 8px;
	top: 8px;
	background: #fff;
	color: #000;
	padding: .5rem .75rem;
	border-radius: .5rem;
	z-index: 999;
}

.container {
	width: min(1100px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: relative;
	padding: 6rem 0 3rem;
	overflow: hidden;
}
.site-header .wave {
	position: absolute;
	inset: 0 0 auto 0;
	height: 40%;
	min-height: 220px;
	z-index: -1;
}
.site-header .wave svg {
	width: 100%;
	height: 100%;
	display: block;
}

.header-inner {
	text-align: center;
}
.branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .4rem;
}
.branding .logo {
	width: 120px;
	height: 120px;
	border-radius: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	background: radial-gradient(
		100% 100% at 30% 20%,
		rgba(255, 255, 255, 0.8),
		transparent 70%
	);
}
.brand {
	margin: 0;
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	letter-spacing: .2px;
}
.claim {
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	margin: .25rem 0 0;
	font-weight: 700;
}
.subline {
	margin: .5rem auto 1.25rem;
	max-width: 60ch;
	color: #24313a;
}

.cta-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
}
.btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	padding: .9rem 1.1rem;
	border-radius: 999px;
}
.btn-primary {
	background: linear-gradient(135deg, var(--orange), var(--ziegel));
	color: #151515;
	box-shadow: 0 10px 24px rgba(244, 162, 97, 0.45);
	border: 2px solid color-mix(in srgb, var(--ink) 5%, white);
}
.btn-primary:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}
.btn-primary:active {
	transform: translateY(0);
}
.cta-note {
	font-size: .9rem;
	color: #42515d;
}

.grid {
	padding: 2.2rem 0;
}
h2 {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	margin: 0 0 1rem;
}
h3 {
	font-size: 1.05rem;
	margin: 0 0 .25rem;
}
.cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}
.cards li {
	background: #fff;
	border-radius: 18px;
	padding: 1rem .95rem;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
	border: 1px solid #e7ecef;
}
.list {
	margin: .25rem 0 0 1.2rem;
}

.status-text {
	margin: .25rem 0;
}

.site-footer {
	margin-top: 2rem;
	padding: 2rem 0 3.5rem;
	background: #fff;
	border-top: 1px solid #e7ecef;
	position: relative;
}
.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.footer-links a {
	color: var(--petrol);
	text-decoration: none;
	margin-right: 1rem;
}
.footer-links a:hover {
	text-decoration: underline;
}
.hint {
	margin: 0;
	color: #4b5e6a;
}

.otongo-mark {
	position: fixed;
	right: 14px;
	bottom: 10px;
	font-weight: 800;
	font-size: .85rem;
	letter-spacing: .5px;
	text-decoration: none;
	color: #fff;
	padding: .45rem .6rem;
	border-radius: 14px;
	background: color-mix(in srgb, var(--petrol) 94%, #fff);
	box-shadow: 0 8px 22px rgba(38, 70, 83, 0.35);
	opacity: 0.92;
}
.otongo-mark:hover {
	opacity: 1;
}

/* Subtle grain via layered gradients (no external assets) */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background-image: radial-gradient(
			circle at 10% 10%,
			rgba(0, 0, 0, 0.015) 0 2px,
			transparent 3px
		),
		radial-gradient(
			circle at 60% 30%,
			rgba(0, 0, 0, 0.012) 0 2px,
			transparent 3px
		),
		radial-gradient(
			circle at 30% 70%,
			rgba(0, 0, 0, 0.014) 0 2px,
			transparent 3px
		);
	background-size: 12px 12px, 11px 11px, 13px 13px;
	mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
	.btn-primary {
		transition: none;
	}
}
