:root {
	--background: #fbf8f3;
	--foreground: #1c1917;
	--card: #ffffff;
	--muted: #78716c;
	--border: #e7e5e4;
	--primary: #e8900c;
	--primary-foreground: #ffffff;
	--primary-soft: rgba(232, 144, 12, 0.10);
	--primary-softer: rgba(232, 144, 12, 0.05);
	--primary-border: rgba(232, 144, 12, 0.20);
	--primary-shadow: rgba(232, 144, 12, 0.25);
	--accent: #f5b942;
	--warning: #f59e0b;
	--success: #16a34a;
	--success-soft: rgba(22, 163, 74, 0.10);
	--success-border: rgba(22, 163, 74, 0.30);
	--secondary: #f5f5f4;
	--secondary-soft: rgba(245, 245, 244, 0.5);
}

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

html,
body {
	background: var(--background);
	color: var(--foreground);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

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

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

.container {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 24px;
}

/* HERO */
.hero {
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.blob {
	position: absolute;
	border-radius: 9999px;
	filter: blur(80px);
}

.blob-1 {
	top: -128px;
	right: -128px;
	width: 500px;
	height: 500px;
	background: rgba(232, 144, 12, 0.08);
}

.blob-2 {
	bottom: -192px;
	left: -192px;
	width: 600px;
	height: 600px;
	background: rgba(245, 185, 66, 0.10);
}

.blob-3 {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background: rgba(245, 158, 11, 0.05);
}

.hero-inner {
	position: relative;
	padding: 16px 24px 80px;
	max-width: 1152px;
	margin: 0 auto;
}

nav.top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.pill {
	background: var(--primary-soft);
	color: var(--primary);
	padding: 6px 16px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
}

.hero-content {
	max-width: 768px;
	margin: 0 auto;
	text-align: center;
	animation: fadeInUp 0.8s ease-out both;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--primary-border);
	background: var(--primary-softer);
	color: var(--primary);
	padding: 8px 16px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 24px;
}

.badge svg {
	width: 16px;
	height: 16px;
}

h1 {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

h1 .grad {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	margin: 24px auto 0;
	max-width: 576px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--muted);
}

/* WAITLIST */
.waitlist {
	max-width: 448px;
	margin: 40px auto 0;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.form {
	display: flex;
	gap: 12px;
}

.input-wrap {
	position: relative;
	flex: 1;
}

.input-wrap svg {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	color: var(--muted);
}

.input {
	height: 48px;
	width: 100%;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--card);
	padding: 0 16px 0 44px;
	font-size: 14px;
	outline: none;
	font-family: inherit;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: all 0.2s;
}

.input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(232, 144, 12, 0.20);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 24px;
	border-radius: 12px;
	background: var(--primary);
	color: var(--primary-foreground);
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	box-shadow: 0 10px 25px -5px var(--primary-shadow);
	transition: all 0.2s;
	font-family: inherit;
}

.btn:hover {
	filter: brightness(1.1);
}

.btn:active {
	transform: scale(0.98);
}

.btn svg {
	width: 16px;
	height: 16px;
}

.fineprint {
	margin-top: 12px;
	font-size: 12px;
	color: var(--muted);
}

/* MOCKUP */
.mockup {
	max-width: 384px;
	margin: 64px auto 0;
	animation: fadeInUp 0.8s ease-out 0.5s both;
}

.mockup-frame {
	border-radius: 24px;
	border: 1px solid rgba(231, 229, 228, 0.5);
	background: var(--card);
	padding: 16px;
	box-shadow: 0 25px 50px -12px rgba(232, 144, 12, 0.10);
}

.mockup-screen {
	border-radius: 16px;
	background: var(--background);
	padding: 20px;
}

.mockup-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mockup-greet {
	font-size: 12px;
	color: var(--muted);
}

.mockup-title {
	font-weight: 700;
}

.mockup-bell {
	width: 36px;
	height: 36px;
	background: var(--primary-soft);
	color: var(--primary);
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mockup-bell svg {
	width: 16px;
	height: 16px;
}

.pet-list {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pet {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--card);
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pet-avatar {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: var(--primary-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.pet-info {
	flex: 1;
}

.pet-name {
	font-size: 14px;
	font-weight: 600;
}

.pet-breed {
	font-size: 12px;
	color: var(--muted);
}

.health-tag {
	background: var(--success-soft);
	color: var(--success);
	border-radius: 9999px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
}

.actions {
	margin-top: 16px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: var(--secondary-soft);
	border-radius: 12px;
	padding: 12px;
}

.action-icon {
	font-size: 18px;
}

.action-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
}

/* FEATURES */
.features {
	border-top: 1px solid rgba(231, 229, 228, 0.5);
	background: rgba(255, 255, 255, 0.5);
	padding: 80px 0;
}

.section-head {
	max-width: 740px;
	margin: 0 auto 64px;
	text-align: center;
}

.section-head h2 {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.section-head h2 .accent {
	color: var(--primary);
}

.section-head p {
	margin-top: 16px;
	font-size: 18px;
	color: var(--muted);
}

.features-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

.feature {
	border: 1px solid rgba(231, 229, 228, 0.5);
	background: var(--card);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
}

.feature:hover {
	border-color: var(--primary-border);
	box-shadow: 0 10px 25px -5px rgba(232, 144, 12, 0.05);
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--primary-soft);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: all 0.2s;
}

.feature:hover .feature-icon {
	background: var(--primary);
	color: var(--primary-foreground);
}

.feature-icon svg {
	width: 20px;
	height: 20px;
}

.feature h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

.feature p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
}

/* SOCIAL */
.social {
	border-top: 1px solid rgba(231, 229, 228, 0.5);
	padding: 80px 0;
}

.social-inner {
	max-width: 768px;
	margin: 0 auto;
	text-align: center;
}

.avatars {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}

.avatar {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	border: 2px solid var(--background);
	background: var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	margin-left: -12px;
}

.avatar:first-child {
	margin-left: 0;
}

.avatar-count {
	background: var(--primary);
	color: var(--primary-foreground);
	font-size: 12px;
	font-weight: 700;
}

.social h2 {
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.social p {
	margin: 16px auto 0;
	max-width: 512px;
	font-size: 18px;
	color: var(--muted);
}

.perks {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	font-size: 14px;
	color: var(--muted);
}

.perk {
	display: flex;
	align-items: center;
	gap: 8px;
}

.perk svg {
	width: 16px;
	height: 16px;
	color: var(--primary);
}

.perk img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

/* FOOTER */
footer {
	border-top: 1px solid rgba(231, 229, 228, 0.5);
	background: rgba(255, 255, 255, 0.3);
	padding: 32px 0;
}

.foot {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.foot-brand {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}

.foot-brand img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.copyright {
	font-size: 14px;
	color: var(--muted);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@media (min-width: 640px) {
	h1 {
		font-size: 56px;
	}

	.section-head h2,
	.social h2 {
		font-size: 36px;
	}

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

	.foot {
		flex-direction: row;
	}
}

@media (min-width: 1024px) {
	.hero-inner {
		padding: 32px 24px 128px;
	}

	nav.top {
		margin-bottom: 64px;
	}

	h1 {
		font-size: 72px;
	}

	.lead {
		font-size: 20px;
	}

	.mockup {
		margin-top: 96px;
	}

	.features,
	.social {
		padding: 128px 0;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}