@font-face {
	font-family: "Sour-Gummy";
	src: url("SourGummy-Regular.ttf") format("truetype");
}

:root {
	--bg: #191f2e;
	--panel: rgba(255, 255, 255, 0.06);
	--panel-strong: #27324f;
	--text: #ffffff;
	--muted: #c8d7e8;
	--accent: #569dd8;
	--accent-strong: #0070c9;
	--border: rgba(255, 255, 255, 0.12);
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	background:
		radial-gradient(circle at top, rgba(86, 157, 216, 0.25), transparent 30%),
		linear-gradient(180deg, #202a40 0%, var(--bg) 55%);
	color: var(--text);
}

header {
	padding: 2rem 1.5rem 1rem;
}

.hero {
	width: min(1100px, 100%);
	margin: 0 auto;
	padding: 2rem;
	border-radius: 2rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border: 1px solid var(--border);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	color: var(--text);
	text-decoration: none;
	font-family: "Sour-Gummy";
	font-size: 2rem;
}

.icon {
	width: 5rem;
	border-radius: 1.25rem;
}

.hero-copy {
	margin-top: 2rem;
}

.language-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 0.75rem;
	margin-top: 1rem;
}

.eyebrow,
h1,
h2,
button {
	font-family: "Sour-Gummy";
}

.eyebrow {
	margin: 0 0 1rem;
	color: var(--accent);
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.05;
	color: var(--text);
}

.intro,
.section-intro,
li,
.form-actions p {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.page {
	width: min(1100px, 100%);
	margin: 0 auto;
	padding: 1rem 0 3rem;
}

.page-panel {
	background: var(--panel);
	border-radius: 2rem;
}

.form-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 2rem;
	padding: 2rem;
	backdrop-filter: blur(12px);
}

h2 {
	margin-top: 0;
	font-size: 2rem;
	color: var(--accent);
}

ul {
	margin: 0;
	padding-left: 1.25rem;
}

li + li {
	margin-top: 0.8rem;
}

.support-form {
	margin-top: 1.5rem;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

label {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	font-size: 0.95rem;
	color: var(--text);
}

label span {
	font-weight: 600;
}

.full-width {
	grid-column: 1 / -1;
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1rem;
	padding: 0.95rem 1rem;
	background: rgba(12, 18, 31, 0.62);
	color: var(--text);
	font: inherit;
}

input::placeholder,
textarea::placeholder {
	color: #95a7bb;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(86, 157, 216, 0.4);
	border-color: var(--accent);
}

textarea {
	resize: vertical;
	min-height: 8rem;
}

.form-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 1.5rem;
}

button {
	border: none;
	border-radius: 999px;
	padding: 1rem 1.6rem;
	font-size: 1.2rem;
	background: var(--accent-strong);
	color: var(--text);
	cursor: pointer;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
}

button:hover {
	transform: translateY(-2px);
	background: #005bb5;
}

@media screen and (max-width: 640px) {
	header {
		padding: 1rem;
	}

	.hero,
	.form-card {
		padding: 1.25rem;
		border-radius: 1.25rem;
	}

	.brand {
		font-size: 1.5rem;
		gap: 0.75rem;
	}

	.icon {
		width: 3.75rem;
	}

	.page {
		width: calc(100% - 2rem);
		padding: 0 0 2rem;
	}

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