*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #0a0a0f;
	--bg-elevated: #16151f;
	--bg-card: #1c1a26;
	--border: #2e2b3d;
	--border-soft: #201e2b;
	--text: #f5f3fa;
	--text-muted: #a8a3bd;
	--text-faint: #6b647f;
	--accent: #ff2fb0;
	--accent-2: #baff29;
	--accent-soft: rgba(255, 47, 176, 0.16);
	--accent-glow: rgba(255, 47, 176, 0.45);

	--font-display: 'Bebas Neue', var(--font-body);
	--font-body:
		'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--container: 1180px;
	--radius-md: 0.75rem;
	--radius-lg: 1.25rem;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

h1,
h2 {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	text-wrap: balance;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}

img {
	display: block;
	max-width: 100%;
}

.skip-link {
	position: absolute;
	top: -3rem;
	left: 1rem;
	background: var(--accent);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-md);
	z-index: 100;
	transition: top 0.15s ease;
}

.skip-link:focus {
	top: 1rem;
}

a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--accent-2);
	outline-offset: 2px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9375rem;
	white-space: nowrap;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.btn:hover {
	transform: translateY(-1px) scale(1.02);
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent), #a020f0);
	color: #fff;
	box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-dark {
	background: #0a0a0f;
	color: var(--accent-2);
	border: 1px solid rgba(10, 10, 15, 0.4);
}

/* Secondary button. The site had only .btn-primary and an unused .btn-dark
   (which is for light panels — dark fill, lime text), so a secondary action
   on a dark page had nothing to wear. Matches the app's own outline
   treatment: transparent at rest, lime on hover, same pill radius. Added to
   the gallery too so the two do not drift. */
.btn-outline {
	background: none;
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-outline:hover {
	border-color: var(--accent-2);
	color: var(--accent-2);
}

/* ---------- Nav ---------- */

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(10, 10, 15, 0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-brand img {
	height: 1.5rem;
	width: auto;
	filter: invert(1) grayscale(1) brightness(1.8);
}

.nav-links {
	display: flex;
	gap: 1.75rem;
	flex: 1;
}

.nav-links a {
	font-size: 0.9375rem;
	color: var(--text-muted);
	transition: color 0.15s ease;
}

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

.nav-cta {
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
}

@media (max-width: 860px) {
	.nav-links {
		display: none;
	}
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
}

.hero-scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, var(--bg) 5%, rgba(10, 10, 15, 0.5) 50%, rgba(10, 10, 15, 0.15) 100%),
		linear-gradient(120deg, rgba(255, 47, 176, 0.35) 0%, transparent 45%);
}

.hero-inner {
	position: relative;
	max-width: var(--container);
	margin: 0 auto;
	padding: 6rem 1.5rem 5rem;
	width: 100%;
}

.hero h1 {
	font-size: clamp(4rem, 11vw, 8rem);
	line-height: 0.92;
}

.hero-sub {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	color: var(--text-muted);
	max-width: 32rem;
	font-family: var(--font-body);
	text-transform: none;
}

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

/* ---------- Card grid ---------- */

.grid {
	max-width: var(--container);
	margin: 0 auto;
	padding: 6rem 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.card {
	position: relative;
	aspect-ratio: 5 / 4;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-soft);
}

.card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.card:hover img {
	transform: scale(1.04);
}

.card-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 15, 0.92) 15%, rgba(10, 10, 15, 0.1) 65%);
}

.card-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.75rem;
}

.card-body h2 {
	font-size: 1.875rem;
	line-height: 1;
	color: var(--accent-2);
}

.card-body p {
	margin-top: 0.625rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
	max-width: 26rem;
}

@media (max-width: 860px) {
	.grid {
		grid-template-columns: 1fr;
		padding: 4rem 1.5rem;
	}

	.card-b,
	.card-c {
		margin-top: 0;
	}
}

/* ---------- FAQ ---------- */

.faq {
	max-width: 44rem;
	margin: 0 auto;
	padding: 2rem 1.5rem 6rem;
}

.faq-title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin-bottom: 2rem;
}

.faq-item {
	border-top: 1px solid var(--border);
}

.faq-item:last-child {
	border-bottom: 1px solid var(--border);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0;
	background: none;
	border: none;
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}

.faq-icon {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--border);
	font-size: 1.125rem;
	color: var(--accent-2);
	transition: transform 0.2s ease;
}

.faq-question[aria-expanded='true'] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding-bottom: 1.25rem;
}

.faq-answer p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	max-width: 38rem;
}

/* ---------- CTA banner ---------- */

.cta-banner {
	margin: 2rem 1.5rem 6rem;
	max-width: var(--container);
	margin-inline: auto;
	padding: 4.5rem 2rem;
	border-radius: var(--radius-lg);
	text-align: center;
	background: linear-gradient(135deg, var(--accent), #a020f0 55%, var(--accent-2));
}

.cta-banner h2 {
	font-size: clamp(3rem, 8vw, 5rem);
	color: #0a0a0f;
	line-height: 1;
}

.cta-banner p {
	margin-top: 1rem;
	font-size: 1.0625rem;
	color: rgba(10, 10, 15, 0.75);
	font-family: var(--font-body);
	text-transform: none;
}

.cta-banner .btn {
	margin-top: 2rem;
}

/* ---------- Footer ---------- */

.footer {
	border-top: 1px solid var(--border-soft);
}

.footer-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 3.5rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Brand and navigation on one line, everything else below a hairline. The
   previous single flex row put the logo, the language switcher, three links
   and the copyright on one baseline, which read as one undifferentiated
   list. */
.footer-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 3rem;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--border-soft);
}

.footer-brand {
	height: 1.375rem;
	width: auto;
	filter: invert(1) grayscale(1) brightness(1.8);
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links a {
	font-size: 0.875rem;
	color: var(--text-muted);
	transition: color 0.15s ease;
}

.footer-links a:hover {
	color: var(--accent-2);
}

.footer-copy {
	font-size: 0.8125rem;
	color: var(--text-faint);
}

.footer-credits {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem 2rem;
}

.footer-credits p {
	font-size: 0.75rem;
	color: var(--text-faint);
	line-height: 1.7;
}

.footer-credits a {
	color: var(--text-faint);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.footer-credits a:hover {
	color: var(--text-muted);
}
