/**
 * Oráculo hub — intention picker (not a SEO link list).
 */

.yala-oraculo-hub {
	margin: 0 0 clamp(2rem, 5vw, 3rem);
}

/* Ritual stage sits under the hub launcher */
body.yala-oraculo-page .yala-oraculo:not(.yala-oraculo--hub-idle) {
	margin-top: clamp(1.5rem, 4vw, 2.25rem);
	padding-top: clamp(1.25rem, 3vw, 1.75rem);
	border-top: 1px solid rgba(42, 27, 26, 0.1);
}

/* --- Portal hero: the single entry into the ritual modal --- */
.yala-oraculo-hub__portal {
	text-align: center;
	padding: clamp(2rem, 5vw, 3.2rem) clamp(1.2rem, 4vw, 2.6rem);
	border-top: 4px solid var(--yala-secondary-bright, #fbc02d);
	background:
		radial-gradient(120% 140% at 50% 0%, rgba(251, 192, 45, 0.14), transparent 55%),
		linear-gradient(160deg, #38096b 0%, #4a148c 55%, #38096b 100%);
	color: #fff;
	box-shadow: 0 18px 50px rgba(16, 3, 32, 0.4);
	margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.yala-oraculo-hub__portal-kicker {
	margin: 0 0 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.75;
}

.yala-oraculo-hub__portal-title {
	margin: 0 0 0.6rem;
	font-family: var(--yala-font-display, "Fraunces", Georgia, serif);
	font-weight: 500;
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
	line-height: 1.2;
	color: #fff;
}

.yala-oraculo-hub__portal-lead {
	max-width: 44ch;
	margin: 0 auto 1.4rem;
	line-height: 1.6;
	opacity: 0.92;
}

.yala-oraculo-hub__enter {
	appearance: none;
	border: 0;
	background: #fbc02d;
	color: #38096b;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 0.85rem 2.2rem;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: transform 150ms ease, box-shadow 150ms ease;
}

.yala-oraculo-hub__enter:focus-visible{
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@media (hover: hover) and (pointer: fine) {
	.yala-oraculo-hub__enter:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
}

.yala-oraculo-hub__portal-note {
	margin: 0.8rem 0 0;
	font-size: 0.82rem;
	opacity: 0.7;
}

/* Below portal: one clear choice list (same language as the modal) */
.yala-oraculo-hub__after {
	max-width: 36rem;
	margin: 0 auto;
	text-align: center;
}

.yala-oraculo-hub__after-title {
	margin: 0 0 0.35rem;
	font-family: var(--yala-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.25rem, 1.05rem + 0.55vw, 1.55rem);
	font-weight: 500;
	color: var(--yala-text, #2a1b1a);
}

.yala-oraculo-hub__after-lead {
	margin: 0 0 1.1rem;
	font-size: 0.95rem;
	line-height: 1.5;
	opacity: 0.8;
}

.yala-oraculo-hub__choices {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.yala-oraculo-hub__choice {
	display: block;
	padding: 0.95rem 1.2rem;
	border: 1px solid rgba(42, 27, 26, 0.16);
	background: #fff;
	color: #4a148c !important;
	font-family: var(--yala-font-display, "Fraunces", Georgia, serif);
	font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
	font-weight: 600;
	text-decoration: none !important;
	box-shadow: 0 1px 0 rgba(42, 27, 26, 0.06);
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.yala-oraculo-hub__choice:focus{
	background: var(--yala-primary, #4a148c);
	border-color: var(--yala-primary, #4a148c);
	color: #fff !important;
	transform: translateY(-1px);
	text-decoration: none !important;
}

@media (hover: hover) and (pointer: fine) {
	.yala-oraculo-hub__choice:hover {
		background: var(--yala-primary, #4a148c);
		border-color: var(--yala-primary, #4a148c);
		color: #fff !important;
		transform: translateY(-1px);
		text-decoration: none !important;
}
}

.yala-oraculo-hub__foot {
	margin: 1.4rem 0 0;
	font-size: 0.88rem;
	line-height: 1.55;
	opacity: 0.82;
}

.yala-oraculo-hub__foot a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.yala-oraculo-hub__foot-sep {
	margin: 0 0.45rem;
	opacity: 0.55;
}

.yala-oraculo-hub__foot-label {
	font-weight: 600;
}

.yala-oraculo-hub__free-link {
	appearance: none;
	border: 0;
	background: none;
	padding: 0;
	font: inherit;
	font-weight: 600;
	color: #4a148c;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.yala-oraculo-hub__free-link:focus-visible{
	color: #38096b;
}

@media (hover: hover) and (pointer: fine) {
	.yala-oraculo-hub__free-link:hover {
		color: #38096b;
}
}
