@font-face {
	font-family: "Rubik";
	src: url("../assets/fonts/Rubik-VariableFont_wght.ttf") format("truetype");
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
}

@font-face {
	font-family: "Rubik";
	src: url("../assets/fonts/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
	font-style: italic;
	font-weight: 300 700;
	font-display: swap;
}

* {
	box-sizing: border-box;
}

:where(.button, .nav-btn, .nav-link, .hero, .hero-stage, .hero-badge, .animal-card, .animal-media, .app-card, .app-thumbnail, .auth-shell, .auth-panel, .auth-form-card, .auth-input, .auth-alt-button, .auth-kicker, .test-tile, .test-band, .test-chip) {
	border-radius: var(--squircle-radius, var(--squircle-md));
}

@supports (corner-shape: superellipse(1)) {
	:where(.button, .nav-btn, .nav-link, .hero, .hero-stage, .hero-badge, .animal-card, .animal-media, .app-card, .app-thumbnail, .auth-shell, .auth-panel, .auth-form-card, .auth-input, .auth-alt-button, .auth-kicker, .test-tile, .test-band, .test-chip) {
		corner-shape: superellipse(0.78);
	}
}

html {
	color-scheme: light;
	scrollbar-gutter: stable;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	line-height: 1.5;
	transition: background 0.25s ease, color 0.25s ease;
}

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

button {
	font: inherit;
}

.section-title {
	margin: 0;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	line-height: 1;
	color: var(--heading);
}

.body {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-secondary);
}

.label {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: var(--heading);
}

.meta {
	margin: 0;
	font-size: 12px;
	color: var(--text-muted);
}

.button {
	--squircle-radius: var(--squircle-sm);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: var(--s2) var(--s3);
	border: 0;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.button.primary {
	background: var(--primary);
	color: var(--primary-text);
}

.button.secondary {
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow);
}

.eyebrow {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-strong);
}
