/* ─────────────────────────────────────────
	DESIGN TOKENS
───────────────────────────────────────── */
:root {
	--light:         #d4d6d8;
	--mid:           rgba(212, 214, 216, 0.6);
	--dark:          #090b13;
	--darker:        #12151f;
	--gold:          #c9a05e;
	--serif:         'EB Garamond', Georgia, serif;
	--serif-sc:      'Cormorant SC', Georgia, serif;
	--sans:          'Inter', system-ui, sans-serif;
	--pad-y:         96px;
	--pad-x:         56px;
	--transition:    0.2s ease;
	--border:        rgba(212, 214, 216, 0.07);
	--border-light:  rgba(212, 214, 216, 0.12);
}

/* ─────────────────────────────────────────
	RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--serif); background: var(--dark); color: var(--light); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
cite { font-style: normal; color: var(--gold); }

/* ─────────────────────────────────────────
	UTILITIES
───────────────────────────────────────── */
.label {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.rule {
	width: 40px;
	height: 0.5px;
	background: var(--gold);
	margin: 0 auto;
}

.cta {
	display: inline-block;
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gold);
	border: 1px solid var(--gold);
	padding: 14px 20px;
	transition: color var(--transition), border-color var(--transition);
}

.cta:hover { color: var(--light); border-color: var(--light); }

/* ─────────────────────────────────────────
	STICKY HEADER
───────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	transform: translateY(0);
	transition: transform 0.3s ease;
}

.site-header.hide {
	transform: translateY(-100%);
}

/* ─────────────────────────────────────────
	NAV
───────────────────────────────────────── */
.nav {
	background: #0d0f17;
	border-bottom: 0.2px solid var(--darker);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px var(--pad-x);
	position: relative;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 55px; width: auto; display: block; }

.nav__links {
	display: flex;
	gap: 30px;
	list-style: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav__links a {
	font-family: var(--serif-sc);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--light);
	transition: color var(--transition);
}

.nav__links a:hover { color: var(--gold); }
.nav__link--active { color: var(--gold) !important; }

.nav__links--mobile { display: none; gap: 0; }

/* Hamburguesa */
.nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
	width: 30px;
	height: 30px;
}

.nav__toggle span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--gold);
	transition: transform 0.25s ease, opacity 0.25s ease;
	transform-origin: center;
}

.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────
	HERO
───────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	overflow: hidden;
	padding-bottom: 96px;
	background-color: black;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.8;
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero__title {
	font-family: var(--serif-sc);
	font-size: 72px;
	font-weight: 200;
	letter-spacing: 10px;
	color: var(--light);
	line-height: 1;
	margin-top: 10px;
}

.hero__scroll {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero__scroll-ring {
	width: 24px;
	height: 40px;
	border: 1.5px solid rgba(212, 214, 216, 0.6);
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 6px;
}

.hero__scroll-dot {
	width: 2px;
	height: 5px;
	background: rgba(212, 214, 216, 0.9);
	border-radius: 2px;
	animation: scrolldot 2s ease-in-out infinite;
}

@keyframes scrolldot {
	0%, 100% { transform: translateY(0); opacity: 0.8; }
	65%       { transform: translateY(13px); opacity: 0; }
}

/* ─────────────────────────────────────────
	INTRO
───────────────────────────────────────── */
.intro {
	padding: var(--pad-y) var(--pad-x);
	text-align: center;
	background: var(--dark);
}

.intro p.label { color: var(--gold); }

.intro__title {
	font-family: var(--serif-sc);
	font-size: 42px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--light);
	margin: 10px 0 30px;
	line-height: 1.15;
}

.intro__rule { margin-bottom: 30px; }

.intro__body {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--mid);
	max-width: 500px;
	margin: 0 auto;
}

.intro__body p { margin-bottom: 28px; }
.intro__body p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────
	VERSE
───────────────────────────────────────── */
.verse {
	padding: var(--pad-y) var(--pad-x);
	background: var(--darker);
	border-top: 0.5px solid var(--border);
	border-bottom: 0.5px solid var(--border);
	text-align: center;
}

.verse__quote {
	font-family: var(--serif);
	font-size: 35px;
	font-weight: 400;
	color: var(--light);
	max-width: 520px;
	margin: 0 auto 18px;
	line-height: 1.4;
}

/* ─────────────────────────────────────────
	CONTENT GRID
───────────────────────────────────────── */
.grid-section { background: var(--dark); }

.grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--border);
}

.grid__cell {
	background: var(--dark);
	padding: 64px 30px;
	text-align: center;
	cursor: pointer;
	transition: background var(--transition);
}

.grid__cell:hover { background: var(--darker); }

.grid__title {
	font-family: var(--serif-sc);
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--light);
	margin: 14px 0 30px;
}

.grid .rule { margin-bottom: 30px; }

.grid__body {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--mid);
	max-width: 260px;
	margin: 0 auto 30px;
}

.grid__video-wrap {
	width: 80%;
	margin: 0 auto 30px;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border: 1px solid var(--border-light);
	position: relative;
}

.play-overlay {
	position: absolute;
	inset: 0;
	cursor: pointer;
	z-index: 2;
}

.grid__video-wrap iframe,
.grid__video-wrap video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─────────────────────────────────────────
	PLAYER
───────────────────────────────────────── */
.player-section {
	padding: var(--pad-y) var(--pad-x);
	background: var(--darker);
	border-top: 0.5px solid var(--border);
	text-align: center;
}

.player-section__title {
	font-family: var(--serif-sc);
	font-size: 32px;
	font-weight: 400;
	color: var(--light);
	margin: 14px 0 20px;
	letter-spacing: 1px;
}

.player-section__rule { margin-bottom: 44px; }

.player {
	max-width: 400px;
	margin: 0 auto;
	border: 1px solid var(--border-light);
	padding: 40px;
}

.player__title {
	font-family: var(--serif-sc);
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--light);
	margin-bottom: 8px;
}

.player__waveform {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	height: 36px;
	margin: 20px 0 22px;
}

.player__bar { width: 2px; border-radius: 1px; flex-shrink: 0; }

.player__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.player__btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(212, 214, 216, 0.22);
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color var(--transition);
}

.player__btn:hover { border-color: var(--light); }
.player__btn svg { fill: var(--light); margin-left: 2px; }
.player .label { color: var(--gold); }

/* ─────────────────────────────────────────
	DILEMA
───────────────────────────────────────── */
.dilema-section {
	padding: var(--pad-y) var(--pad-x);
	background: var(--darker);
	border-top: 0.5px solid var(--border);
	text-align: center;
}

.dilema-section p.label { color: var(--gold); }

.dilema-section__title {
	font-family: var(--serif-sc);
	font-size: 32px;
	font-weight: 400;
	color: var(--light);
	margin: 14px 0 20px;
	letter-spacing: 1px;
}

.dilema-section__rule { margin-bottom: 30px; }

.dilema-section__desc {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--mid);
	max-width: 480px;
	margin: 0 auto 44px;
}

.dilema {
	max-width: 480px;
	margin: 0 auto;
	border: 1px solid var(--border-light);
	padding: 48px 40px;
}

.dilema__pregunta {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--light);
	margin-bottom: 36px;
}

.dilema__opciones { display: flex; gap: 16px; justify-content: center; }

.dilema__btn {
	flex: 1;
	max-width: 160px;
	padding: 14px 20px;
	background: transparent;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.dilema__btn:hover { border-color: var(--light); color: var(--light); }

.dilema__resultado { display: none; margin-top: 36px; border-top: 0.5px solid var(--border); padding-top: 32px; }
.dilema__resultado.visible { display: block; }

.dilema__barras {
	display: flex;
	gap: 12px;
	align-items: flex-end;
	justify-content: center;
	height: 64px;
	margin-bottom: 20px;
}

.dilema__barra-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1;
	max-width: 120px;
}

.dilema__barra {
	width: 100%;
	background: var(--border-light);
	position: relative;
	height: 48px;
}

.dilema__barra-fill {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: var(--gold);
	opacity: 0.5;
	transition: height 0.6s ease;
	height: 0%;
}

.dilema__barra-fill.tuya { opacity: 0.9; }

.dilema__pct {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 2px;
	color: var(--gold);
}

.dilema__barra-label {
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--mid);
}

.dilema__reveal {
	font-family: var(--serif);
	font-size: 16px;
	line-height: 1.6;
	color: var(--mid);
	margin-top: 24px;
}

.dilema__reveal strong { color: var(--light); font-weight: 400; }

/* ─────────────────────────────────────────
	FOOTER
───────────────────────────────────────── */
.footer {
	padding: 32px var(--pad-x);
	background: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-top: 0.5px solid var(--border);
	gap: 12px;
}

.footer__logo img { height: 28px; width: auto; opacity: 0.4; }

.footer__legal {
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 1px;
	color: var(--mid);
}

.footer__links { display: flex; gap: 32px; list-style: none; }

.footer__links a {
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--mid);
	transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
	RESPONSIVE — MOBILE
───────────────────────────────────────── */
@media (max-width: 768px) {

	:root {
		--pad-y: 64px;
		--pad-x: 24px;
	}

	/* Nav */
	.nav {
		position: relative;
		justify-content: space-between;
	}

	.nav > .nav__links:not(.nav__links--mobile) {
		display: none;
	}

	.nav__toggle {
		display: flex;
	}

	.nav__links--mobile {
		border-top: 0.5px solid rgba(201, 160, 94, 0.3);
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: calc(-1 * var(--pad-x));
		right: calc(-1 * var(--pad-x));
		transform: none;
		background: #0d0f17;
		z-index: 100;
		list-style: none;
		text-align: center;
		border-bottom: 0.5px solid rgba(201, 160, 94, 0.3);
	}

	.nav__links--mobile.open { display: flex; }

	.nav__links--mobile li {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 64px;
		border-top: 0.5px solid rgba(201, 160, 94, 0.3);
	}

	.nav__links--mobile a {
		font-family: var(--serif-sc);
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 2.5px;
		text-transform: uppercase;
		color: var(--light);
		transition: color var(--transition);
	}
	
	.nav__links--mobile a:hover,
	.nav__links--mobile .nav__link--active {
		color: var(--gold);
	}

	/* Hero */
	.hero { padding-bottom: 60px; }
	.hero__title { font-size: 48px; letter-spacing: 6px; }

	/* Intro */
	.intro__title { font-size: 30px; }
	.intro__body { font-size: 20px; }

	/* Verse */
	.verse__quote { font-size: 24px; }

	/* Grid */
	.grid { grid-template-columns: 1fr; }

	.grid__cell {
		padding: 40px 20px;
		border-bottom: 1px solid var(--border);
	}

	.grid__cell:last-child { border-bottom: none; }
	.grid__title { font-size: 36px; }
	.grid__body { font-size: 20px; max-width: 100%; }
	.grid__video-wrap { width: 80%; }

	/* Player */
	.player-section__title { font-size: 24px; }
	.player__title { font-size: 22px; }
	.player { padding: 28px; }

	/* Dilema */
	
	.dilema { padding: 32px 24px; }
	.dilema__pregunta { font-size: 19px; }
	.dilema__btn { max-width: 100%; }

	/* Footer */
	.footer {
		padding: 24px var(--pad-x);
		gap: 10px;
	}
}