/**
 * Price theme — design tokens
 * Ink navy + warm off-white + teal accent.
 */

:root {
	--price-ink: #0f1c2e;
	--price-ink-soft: #243447;
	--price-muted: #5a6b7d;
	--price-paper: #f7f5f1;
	--price-paper-2: #efebe4;
	--price-surface: #ffffff;
	--price-teal: #1a7a72;
	--price-teal-deep: #135a54;
	--price-line: #d5dde6;
	--price-shadow: 0 12px 40px rgba(15, 28, 46, 0.08);
	--price-radius: 14px;
	--price-font-display: "Fraunces", Georgia, serif;
	--price-font-body: "Source Sans 3", system-ui, sans-serif;
	--price-max: 1120px;
	--price-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--price-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--price-ink);
	background:
		radial-gradient(1200px 600px at 10% -10%, rgba(26, 122, 114, 0.08), transparent 60%),
		radial-gradient(900px 500px at 100% 0%, rgba(15, 28, 46, 0.06), transparent 55%),
		var(--price-paper);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--price-teal-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 0.2s var(--price-ease);
}

a:hover {
	color: var(--price-ink);
}

h1, h2, h3, h4 {
	font-family: var(--price-font-display);
	font-weight: 700;
	line-height: 1.2;
	color: var(--price-ink);
	letter-spacing: -0.02em;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.price-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform 0.25s var(--price-ease), background 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}

.price-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.price-btn--primary {
	background: var(--price-ink);
	color: #fff;
	box-shadow: 0 8px 24px rgba(15, 28, 46, 0.2);
}

.price-btn--primary:hover {
	background: var(--price-teal);
	color: #fff;
}

.price-btn--ghost {
	background: transparent;
	border-color: var(--price-line);
	color: var(--price-ink);
}

.price-btn--ghost:hover {
	border-color: var(--price-teal);
	color: var(--price-teal-deep);
}

@keyframes price-rise {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.price-animate-in {
	animation: price-rise 0.7s var(--price-ease) both;
}
