/* Portada: contador de tiempo y árbol de corazones */

/* -------- hero + árbol -------- */
#hero {
	padding-top: 90px;
	padding-bottom: 60px;
	background: radial-gradient(
		circle at 50% 55%,
		#fff1b8 0%,
		rgba(255, 241, 184, 0) 60%
	);
}
.hero-kicker {
	font-family: 'Caveat', cursive;
	font-size: 1.4rem;
	color: var(--sun-deep);
	margin-bottom: 4px;
}
#hero h1 {
	font-size: clamp(2.2rem, 6vw, 3.4rem);
	font-style: italic;
}
.time-label {
	font-family: 'Caveat', cursive;
	font-size: 1.5rem;
	color: var(--ink-soft);
	margin-top: 26px;
}
.time-count {
	font-weight: 600;
	font-size: clamp(1.05rem, 3.6vw, 1.45rem);
	color: var(--ink);
	font-variant-numeric: tabular-nums;
	max-width: 480px;
	margin: 2px auto 0;
	line-height: 1.4;
}
.time-count b {
	color: var(--amber);
	font-weight: 700;
}
.tree-box {
	display: flex;
	justify-content: center;
	margin-top: 14px;
}
#treeCanvas {
	display: block;
	cursor: pointer;
	touch-action: manipulation;
}
.tree-hint {
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin-top: 4px;
}

.scroll-cue {
	margin-top: 40px;
	font-size: 0.8rem;
	color: var(--ink-soft);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.scroll-cue span {
	width: 1px;
	height: 34px;
	background: var(--sun);
	animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
}
.scroll-cue i {
	font-style: normal;
}
