/* ==========================================================================
   WagerPals 2026 — home page
   ========================================================================== */

/* ---------- hero ---------- */

.wp26-hero {
	position: relative;
	background:
		radial-gradient(900px 420px at 85% -10%, rgba(16, 183, 127, 0.22), transparent 60%),
		radial-gradient(700px 380px at -10% 110%, rgba(66, 132, 138, 0.25), transparent 60%),
		linear-gradient(150deg, var(--wp26-navy) 0%, var(--wp26-navy-deep) 55%, var(--wp26-navy-ink) 100%);
	color: rgba(255, 255, 255, 0.82);
	padding-block: 96px 110px;
	overflow: hidden;
}

.wp26-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 -1px;
	height: 70px;
	background: var(--wp26-bg);
	clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 78%);
	z-index: 1;
}

/* decorative layer: dot grid + drifting glow orbs */

.wp26-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.2px, transparent 1.2px);
	background-size: 30px 30px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
	-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
	pointer-events: none;
}

.wp26-hero__grid::before,
.wp26-hero__grid::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(70px);
	pointer-events: none;
	z-index: -1;
}

.wp26-hero__grid::before {
	width: 380px;
	height: 380px;
	top: -120px;
	right: -80px;
	background: radial-gradient(circle, rgba(16, 183, 127, 0.35), transparent 70%);
	animation: wp26-drift 9s ease-in-out infinite alternate;
}

.wp26-hero__grid::after {
	width: 300px;
	height: 300px;
	bottom: -100px;
	left: -120px;
	background: radial-gradient(circle, rgba(66, 132, 138, 0.4), transparent 70%);
	animation: wp26-drift 12s ease-in-out infinite alternate-reverse;
}

@keyframes wp26-drift {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to   { transform: translate3d(36px, 26px, 0) scale(1.12); }
}

.wp26-hero__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.wp26-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 22px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(16, 183, 127, 0.45);
	background: rgba(16, 183, 127, 0.12);
	color: #7BE8C4;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.wp26-hero__eyebrow svg {
	width: 15px;
	height: 15px;
}

.wp26-hero__title {
	color: #fff;
	font-size: clamp(36px, 5.4vw, 58px);
	margin-bottom: 22px;
	text-wrap: balance;
}

.wp26-hero__accent {
	background: linear-gradient(90deg, var(--wp26-green), #6EE7B7);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.wp26-hero__sub {
	font-size: 18.5px;
	max-width: 540px;
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.75);
}

/* trust capsules are styled globally in base.css */

.wp26-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* hero quick-link cards */

.wp26-hero__links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.wp26-hero__card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 22px;
	border-radius: var(--wp26-radius-lg);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.wp26-hero__card:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(16, 183, 127, 0.55);
	box-shadow: 0 14px 36px rgba(16, 183, 127, 0.18);
}

.wp26-hero__card-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(16, 183, 127, 0.18);
	color: var(--wp26-green);
	margin-bottom: 6px;
}

.wp26-hero__card-icon svg {
	width: 22px;
	height: 22px;
}

.wp26-hero__card-title {
	font-weight: 800;
	font-size: 16px;
	color: #fff;
}

.wp26-hero__card-desc {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.65);
}

/* ---------- why trust ---------- */

.wp26-home__why {
	background: var(--wp26-paper);
}

.wp26-home__why-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 56px;
	align-items: center;
}

.wp26-home__why-lead {
	font-size: 19px;
	font-weight: 700;
	color: var(--wp26-navy);
	margin: 22px 0 16px;
}

.wp26-home__why-copy p {
	margin: 0 0 14px;
}

.wp26-home__why-copy .wp26-btn {
	margin-top: 12px;
}

.wp26-home__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.wp26-stat {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	text-align: center;
	padding: 30px 18px;
	border-radius: var(--wp26-radius-lg);
	background: var(--wp26-bg);
	border: 1px solid var(--wp26-border-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp26-stat:hover {
	transform: translateY(-4px);
	box-shadow: var(--wp26-shadow-md);
}

.wp26-stat__num {
	font-family: var(--wp26-font-display);
	font-size: 38px;
	font-weight: 800;
	color: var(--wp26-green-dark);
	line-height: 1;
}

.wp26-stat__label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--wp26-text);
}

/* ---------- responsible gambling card ---------- */

.wp26-rgcard {
	background: linear-gradient(135deg, var(--wp26-navy-deep), var(--wp26-navy));
	border-radius: var(--wp26-radius-lg);
	box-shadow: var(--wp26-shadow-lg);
	padding: 40px 42px;
	color: rgba(255, 255, 255, 0.8);
}

.wp26-rgcard__head {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 28px;
}

.wp26-rgcard__heart {
	flex: none;
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(16, 183, 127, 0.18);
	color: var(--wp26-green);
}

.wp26-rgcard__heart svg {
	width: 26px;
	height: 26px;
}

.wp26-rgcard__title {
	color: #fff;
	font-size: 26px;
	margin-bottom: 6px;
}

.wp26-rgcard__sub {
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
}

.wp26-rgcard__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 28px;
}

.wp26-rgcard__col {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--wp26-radius);
	padding: 20px;
}

.wp26-rgcard__col-icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(16, 183, 127, 0.16);
	color: var(--wp26-green);
	margin-bottom: 12px;
}

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

.wp26-rgcard__col h3 {
	font-family: var(--wp26-font-body);
	color: #fff;
	font-size: 15.5px;
	font-weight: 800;
	margin-bottom: 7px;
}

.wp26-rgcard__col p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.65);
}

.wp26-rgcard__foot {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 22px;
}

.wp26-rgcard__foot p {
	margin: 0;
	font-weight: 600;
	color: #fff;
}

.wp26-rgcard__links {
	margin-left: auto;
	display: inline-flex;
	gap: 16px;
}

.wp26-rgcard__links a {
	color: var(--wp26-green);
	font-weight: 700;
	font-size: 14px;
}

/* ---------- faq footer note ---------- */

.wp26-home__faq-more {
	margin: 0 0 14px;
	font-weight: 600;
	color: var(--wp26-text);
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
	.wp26-hero {
		padding-block: 52px 48px;
	}

	/* straight bottom edge on mobile — no slanted clip to fight with */
	.wp26-hero::after {
		display: none;
	}

	.wp26-hero__grid,
	.wp26-home__why-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.wp26-hero__sub {
		font-size: 16.5px;
	}

	/* compact quick-link boxes */
	.wp26-hero__links {
		gap: 12px;
	}

	.wp26-hero__card {
		padding: 15px 14px;
		gap: 3px;
		border-radius: var(--wp26-radius);
	}

	.wp26-hero__card-icon {
		width: 32px;
		height: 32px;
		border-radius: 9px;
		margin-bottom: 4px;
	}

	.wp26-hero__card-icon svg {
		width: 17px;
		height: 17px;
	}

	.wp26-hero__card-title {
		font-size: 14px;
	}

	.wp26-hero__card-desc {
		font-size: 12px;
	}

	.wp26-rgcard {
		padding: 28px 22px;
	}

	.wp26-rgcard__cols {
		grid-template-columns: 1fr;
	}

	.wp26-rgcard__links {
		margin-left: 0;
	}
}

/* phones: quiet the hero down — one focal point instead of five */
@media (max-width: 720px) {
	.wp26-hero {
		padding-block: 40px 36px;
	}

	.wp26-hero__grid {
		gap: 26px;
	}

	/* the badge pill repeats what the title already says */
	.wp26-hero__eyebrow {
		display: none;
	}

	.wp26-hero__title {
		font-size: 31px;
		margin-bottom: 14px;
	}

	.wp26-hero__sub {
		font-size: 15px;
		margin-bottom: 18px;
	}

	/* trust items: plain quiet text, not glowing pills */
	.wp26-hero__trust {
		gap: 5px 16px;
		margin-bottom: 22px;
	}

	.wp26-hero__trust li {
		background: transparent;
		border: 0;
		padding: 0;
		backdrop-filter: none;
		font-size: 12.5px;
		color: rgba(255, 255, 255, 0.72);
	}

	.wp26-hero__trust li::before {
		width: 5px;
		height: 5px;
		box-shadow: none;
	}

	/* CTAs share one row */
	.wp26-hero__cta {
		gap: 10px;
		flex-wrap: nowrap;
	}

	.wp26-hero__cta .wp26-btn {
		flex: 1;
		justify-content: center;
		padding: 13px 10px;
		font-size: 14px;
		white-space: nowrap;
	}

	/* quick links: slim icon + title rows, descriptions dropped */
	.wp26-hero__links {
		gap: 8px;
	}

	.wp26-hero__card {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding: 11px 12px;
	}

	.wp26-hero__card-icon {
		width: 28px;
		height: 28px;
		border-radius: 8px;
		margin-bottom: 0;
		flex: none;
	}

	.wp26-hero__card-icon svg {
		width: 15px;
		height: 15px;
	}

	.wp26-hero__card-title {
		font-size: 13px;
	}

	.wp26-hero__card-desc {
		display: none;
	}
}
