/* schnarchify Landingpage Styles */
/* Local Inter variable font (self-hosted) */
@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("/fonts/Inter-roman.var.woff2") format("woff2-variations"),
		url("/fonts/Inter-roman.var.woff2") format("woff2");
}
@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url("/fonts/Inter-italic.var.woff2") format("woff2-variations"),
		url("/fonts/Inter-italic.var.woff2") format("woff2");
}
:root {
	--blue: #2a295f;
	--purple: #8a4fa6;
	--red: #e04c39;
	--orange: #fdbb2d;
	--teal: #5bb7b7;
	--white: #fff;
	--gray: #f5f5f7;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
body {
	margin: 0;
	font-family: "Inter", "SF Pro Display", system-ui, -apple-system, "Segoe UI",
		Arial, sans-serif;
	background: var(--gray);
	color: #222;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.header {
	background: linear-gradient(
		180deg,
		var(--blue) 0 16%,
		var(--purple) 16% 32%,
		var(--red) 32% 48%,
		var(--orange) 48% 64%,
		var(--teal) 64% 100%
	);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 1rem 2rem 1rem;
	border-bottom-left-radius: 2.5rem;
	border-bottom-right-radius: 2.5rem;
	box-shadow: var(--shadow);
}
.logo {
	width: 120px;
	height: 120px;
	margin-bottom: 1.2rem;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.title {
	font-size: 2.7rem;
	font-weight: 700;
	letter-spacing: -1px;
	margin: 0.2rem 0 0.1rem 0;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(42, 41, 95, 0.09);
}
.subtitle {
	font-size: 1.3rem;
	color: var(--white);
	margin-bottom: 1.3rem;
	opacity: 0.93;
	font-weight: 400;
}
.cta {
	background: var(--orange);
	color: var(--blue);
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	border-radius: 2rem;
	padding: 0.75rem 2.2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	cursor: pointer;
	transition: background 0.2s;
}
.cta:hover {
	background: var(--red);
	color: var(--white);
}
.features {
	margin: 2.3rem auto 1.2rem auto;
	max-width: 520px;
	background: var(--white);
	border-radius: 1.2rem;
	box-shadow: var(--shadow);
	padding: 2rem 1.5rem 1.2rem 1.5rem;
	text-align: center;
}
.features h2 {
	margin-top: 0;
	color: var(--blue);
	font-size: 1.45rem;
}
.features p {
	margin: 0.7rem 0;
}
.sounds {
	margin: 0 auto 2.5rem auto;
	max-width: 900px;
	padding: 0 1rem;
}
.sounds h2 {
	text-align: center;
	color: var(--blue);
	font-size: 1.3rem;
	margin-bottom: 1.7rem;
}
.sound-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}
.sound-card {
	background: var(--white);
	border-radius: 1.1rem;
	box-shadow: var(--shadow);
	padding: 1.3rem 1.1rem 1.1rem 1.1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 170px;
}
.sound-card h3 {
	margin: 0 0 0.4rem 0;
	color: var(--purple);
	font-size: 1.1rem;
	font-weight: 600;
}
.sound-card p {
	font-size: 0.98rem;
	margin: 0 0 1.1rem 0;
	color: #444;
}
.sound-card button {
	padding: 0.6rem 1.3rem;
	border-radius: 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	border: none;
	background: var(--teal);
	color: var(--white);
	cursor: pointer;
	transition: background 0.18s;
}
.sound-card button.play:hover {
	background: var(--orange);
	color: var(--blue);
}
.sound-card button.disabled {
	background: #e0e0e0;
	color: #aaa;
	cursor: not-allowed;
}
.footer {
	margin-top: auto;
	padding: 1.2rem 0;
	background: var(--white);
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
	text-align: center;
	font-size: 1rem;
	color: #888;
}
.footer nav a {
	color: #888;
	text-decoration: none;
	margin: 0 0.6rem;
	font-size: 1rem;
}
.footer nav a:hover {
	color: var(--blue);
}
@media (max-width: 600px) {
	.header {
		padding: 1.7rem 0.5rem 1.2rem 0.5rem;
	}
	.logo {
		width: 80px;
		height: 80px;
	}
	.title {
		font-size: 2rem;
	}
	.features {
		padding: 1.2rem 0.7rem 0.7rem 0.7rem;
	}
	.sound-card {
		padding: 1rem 0.7rem 0.7rem 0.7rem;
		min-height: 120px;
	}
}

.legal-main {
	max-width: 600px;
	margin: 3rem auto 2rem auto;
	background: var(--white);
	border-radius: 1.2rem;
	box-shadow: var(--shadow);
	padding: 2.2rem 1.5rem 2rem 1.5rem;
	font-size: 1.08rem;
	color: #222;
}
.legal-main h1 {
	color: var(--blue);
	font-size: 1.7rem;
	margin-top: 0;
}
.legal-main a {
	display: inline-block;
	margin-top: 1.5rem;
	color: var(--teal);
	text-decoration: none;
	font-weight: 500;
}
.legal-main a:hover {
	color: var(--orange);
	text-decoration: underline;
}
.legal-main p,
.legal-main ul,
.legal-main li {
	line-height: 1.7;
}

.contact-accordion {
	max-width: 520px;
	margin: 2.8rem auto 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background: var(--white);
	border-radius: 1.2rem;
	box-shadow: var(--shadow);
	padding: 1.7rem 1.2rem 1.2rem 1.2rem;
	transition: box-shadow 0.3s, border 0.3s;
	position: relative;
}
.accordion-toggle {
	background: linear-gradient(90deg, var(--teal) 70%, var(--orange) 100%);
	color: var(--white);
	font-size: 1.18rem;
	font-weight: 700;
	border: none;
	border-radius: 2.2rem;
	padding: 0.9rem 2.4rem 0.9rem 2.1rem;
	box-shadow: 0 3px 18px rgba(42, 41, 95, 0.1);
	cursor: pointer;
	transition: background 0.24s, color 0.18s, box-shadow 0.18s, transform 0.12s;
	margin-bottom: 0.7rem;
	align-self: flex-start;
	display: flex;
	align-items: center;
	gap: 0.7em;
	letter-spacing: 0.01em;
	outline: none;
	position: relative;
}
.accordion-toggle:after {
	content: "\25BC"; /* Down chevron */
	display: inline-block;
	font-size: 1.1em;
	margin-left: 0.4em;
	transition: transform 0.3s;
}
.accordion-toggle.open:after {
	transform: rotate(-180deg);
}
.accordion-toggle:hover,
.accordion-toggle:focus {
	background: linear-gradient(90deg, var(--orange) 60%, var(--teal) 100%);
	color: var(--blue);
	box-shadow: 0 4px 28px rgba(42, 41, 95, 0.13);
	transform: translateY(-2px) scale(1.025);
}
.accordion-toggle:active {
	background: var(--teal);
	color: var(--white);
	box-shadow: 0 2px 8px rgba(42, 41, 95, 0.08);
	transform: scale(0.99);
}
.accordion-content {
	width: 100%;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
	background: var(--gray);
	margin-top: 0.2rem;
	transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.33s
		cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 0.2rem;
}
.accordion-content.open {
	max-height: 700px;
	opacity: 1;
	padding: 1.1rem 0.2rem 0.7rem 0.2rem;
	border: 1.5px solid var(--teal);
}
.accordion-content iframe {
	width: 100%;
	min-height: 320px;
	border: none;
	border-radius: 1rem;
	background: transparent;
	box-shadow: 0 1px 8px rgba(42, 41, 95, 0.07);
}

/* Specific responsive styling for Brevo form */
@media (min-width: 541px) {
	.accordion-content iframe {
		width: 540px;
		height: 305px;
		align-self: center;
	}
}
.accordion-headline {
	font-size: 1.13rem;
	color: var(--blue);
	font-weight: 600;
	margin-bottom: 0.2rem;
	margin-top: 0.1rem;
}
.accordion-desc {
	font-size: 1.01rem;
	color: #444;
	margin-bottom: 0.8rem;
	margin-top: 0;
}
@media (max-width: 600px) {
	.contact-accordion {
		padding: 0.9rem 0.4rem 0.7rem 0.4rem;
	}
	.accordion-toggle {
		font-size: 1rem;
		padding: 0.7rem 1.1rem;
	}
	.accordion-content.open {
		padding: 0.7rem 0.1rem 0.4rem 0.1rem;
	}
	.accordion-content iframe {
		min-height: 220px;
	}
}

.header-nav {
	margin-bottom: 0.7rem;
	text-align: center;
}
.header-link {
	color: var(--white);
	font-size: 1.08rem;
	font-weight: 500;
	text-decoration: none;
	padding: 0.25rem 1.2rem;
	border-radius: 1.2rem;
	background: rgba(42, 41, 95, 0.12);
	margin: 0 0.3rem;
	transition: background 0.2s, color 0.2s;
}
.header-link:hover {
	background: var(--orange);
	color: var(--blue);
}
