/* ═══════════════════════════════════════════════════════════════════════
   premium.css — landing-page enrichment layer for the corepoint theme.
   Loaded only by public/home.blade.php via @push('styles'); main.css and
   the layout are untouched. Brand: bg #011119, accent #0DE7B2, grey #7EA1B3,
   down #ff7a6b (negative-change red, ticker losses only).
   ═══════════════════════════════════════════════════════════════════════ */

/* ── shared tokens ────────────────────────────────────────────────────── */
.pm-section {
	position: relative;
}

/* ── legacy heading gradient → orange system ──────────────────────────── */
/* main.css paints .color pink via the `background` shorthand plus
   `background-clip: border-box; -webkit-background-clip: text;
   -webkit-text-fill-color: transparent`. `main .color` (0,1,1) beats
   `.color` (0,1,0) and this sheet loads after main.css, so overriding
   background-image + both clip longhands makes the orange gradient win;
   main.css's text-fill-color keeps the glyphs transparent, with
   `color: transparent` as the non-WebKit fallback. */
main .color {
	background-image: linear-gradient(90deg, #f97316, #ffffff, #fb923c);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ── hero trader illustration bob (class predates this sheet; nothing in
      main.css defines .b-move — mirror the spirit of its `mover` frames) ─ */
@media (prefers-reduced-motion: no-preference) {
	.b-move {
		animation: pm-bob 2s ease-in-out infinite alternate;
	}
}
@keyframes pm-bob {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-18px);
	}
}

/* ── glass cards ──────────────────────────────────────────────────────── */
.pm-glass {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.15);
	border-radius: 24px;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease;
}
.pm-glass:hover {
	transform: translateY(-6px);
	border-color: rgba(13, 231, 178, 0.45);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45),
		0 0 30px rgba(13, 231, 178, 0.12);
}

/* ── soft accent glows ────────────────────────────────────────────────── */
.pm-glow-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	z-index: 0;
}
.pm-glow-site {
	background: rgba(13, 231, 178, 0.14);
}
.pm-glow-orange {
	background: rgba(249, 115, 22, 0.1);
}

/* ── market ticker (static data, CSS marquee) ─────────────────────────── */
.pm-ticker {
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(1, 17, 25, 0.75);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	-webkit-mask-image: linear-gradient(
		to right,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
	mask-image: linear-gradient(
		to right,
		transparent,
		#000 6%,
		#000 94%,
		transparent
	);
}
.pm-ticker-track {
	display: flex;
	width: max-content;
	gap: 0;
}
.pm-ticker-group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
	padding: 12px 0;
}
.pm-ticker-item {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	padding: 0 28px;
	font-size: 13px;
	letter-spacing: 0.02em;
	color: #7ea1b3;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.pm-ticker-item .sym {
	color: #fff;
	font-weight: 600;
}
.pm-ticker-item .up {
	color: #0de7b2;
	font-weight: 600;
}
.pm-ticker-item .down {
	color: #ff7a6b;
	font-weight: 600;
}
@media (prefers-reduced-motion: no-preference) {
	.pm-ticker-track {
		animation: pm-marquee 45s linear infinite;
	}
	.pm-ticker:hover .pm-ticker-track {
		animation-play-state: paused;
	}
}
@keyframes pm-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

/* ── hero stat chips + trust badges ───────────────────────────────────── */
.pm-chip {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 18px;
	border-radius: 16px;
	background: rgba(1, 17, 25, 0.62);
	border: 1px solid rgba(13, 231, 178, 0.25);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.pm-chip .v {
	color: #0de7b2;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.1;
}
.pm-chip .l {
	color: #7ea1b3;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
@media (prefers-reduced-motion: no-preference) {
	.pm-chip-float {
		animation: pm-float 6s ease-in-out infinite;
	}
	.pm-chip-float:nth-child(2) {
		animation-delay: 1.6s;
	}
	.pm-chip-float:nth-child(3) {
		animation-delay: 3.2s;
	}
}
@keyframes pm-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
.pm-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #cfe4ee;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.pm-badge svg {
	width: 14px;
	height: 14px;
	fill: #0de7b2;
	flex: 0 0 auto;
}

/* ── photo-header step cards (How it works) ───────────────────────────── */
.pm-step-card {
	overflow: hidden;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.15);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease, border-color 0.35s ease;
}
.pm-step-card:hover {
	transform: translateY(-6px);
	border-color: rgba(13, 231, 178, 0.4);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}
.pm-step-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.pm-step-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-step-card:hover .pm-step-media img {
	transform: scale(1.06);
}
.pm-step-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		#011119 4%,
		rgba(1, 17, 25, 0.55) 45%,
		rgba(1, 17, 25, 0.1) 100%
	);
}
.pm-step-num {
	position: absolute;
	left: 18px;
	bottom: 14px;
	z-index: 2;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #011119;
	background: #0de7b2;
	border-radius: 10px;
	padding: 8px 14px;
	box-shadow: 0 0 22px rgba(13, 231, 178, 0.45);
}

/* ── markets cards ────────────────────────────────────────────────────── */
.pm-market-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	border-radius: 24px;
	min-height: 300px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	isolation: isolate;
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.pm-market-card img.bgimg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-market-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		to top,
		rgba(1, 17, 25, 0.96) 0%,
		rgba(1, 17, 25, 0.55) 55%,
		rgba(1, 17, 25, 0.25) 100%
	);
	transition: background 0.35s ease;
}
.pm-market-card:hover {
	border-color: rgba(13, 231, 178, 0.45);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5),
		0 0 28px rgba(13, 231, 178, 0.12);
}
.pm-market-card:hover img.bgimg {
	transform: scale(1.08);
}

/* ── trading plan cards ───────────────────────────────────────────────── */
.pm-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 26px;
	padding: 34px 28px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease, border-color 0.35s ease;
}
.pm-plan:hover {
	transform: translateY(-8px);
	border-color: rgba(13, 231, 178, 0.4);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.pm-plan-featured {
	border: 1px solid rgba(13, 231, 178, 0.65);
	background: linear-gradient(
		180deg,
		rgba(13, 231, 178, 0.08) 0%,
		rgba(255, 255, 255, 0.03) 45%
	);
	box-shadow: 0 0 40px rgba(13, 231, 178, 0.16),
		0 20px 50px rgba(0, 0, 0, 0.45);
}
.pm-plan-flag {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background: #0de7b2;
	color: #011119;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 999px;
	box-shadow: 0 0 24px rgba(13, 231, 178, 0.5);
}
.pm-plan-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 0;
	font-size: 14px;
	color: #7ea1b3;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pm-plan-row:last-child {
	border-bottom: 0;
}
.pm-plan-row b {
	color: #fff;
	font-weight: 600;
}

/* ── framed glowing media block ───────────────────────────────────────── */
/* the trust section's legacy .image was a fixed-ratio background box —
   replaced by a real framed <img>, so kill the bg + aspect spacer */
.trust .image {
	background: none !important;
	max-width: 420px;
	width: 100%;
}
.trust .image::before {
	display: none;
}
@media only screen and (min-width: 1280px) {
	.trust .image {
		width: 460px;
		flex: 0 0 auto;
	}
	.trust .text {
		width: calc(100% - 510px);
	}
}

.pm-media-frame {
	position: relative;
	border-radius: 26px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.3);
	box-shadow: 0 0 55px rgba(13, 231, 178, 0.14),
		0 24px 60px rgba(0, 0, 0, 0.5);
}
.pm-media-frame img {
	display: block;
	width: 100%;
	border-radius: 18px;
	object-fit: cover;
	aspect-ratio: 16 / 11;
}

/* ── full-width photo bands (globe / cta) ─────────────────────────────── */
.pm-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}
.pm-band > img.bgimg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.pm-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		to bottom,
		#011119 0%,
		rgba(1, 17, 25, 0.66) 30%,
		rgba(1, 17, 25, 0.66) 70%,
		#011119 100%
	);
}
.pm-band-stat .n {
	font-family: "Konkhmer Sleokchher", serif; /* matches font-MyFont */
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 700;
	color: #fff;
	line-height: 1.05;
}
.pm-band-stat .n em {
	font-style: normal;
	color: #0de7b2;
}
.pm-band-stat .d {
	margin-top: 6px;
	color: #7ea1b3;
	font-size: 14px;
}

/* ── security bullets ─────────────────────────────────────────────────── */
.pm-sec-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.15);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: border-color 0.3s ease, transform 0.3s ease;
}
.pm-sec-item:hover {
	border-color: rgba(13, 231, 178, 0.4);
	transform: translateX(4px);
}
.pm-sec-item .ic {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(13, 231, 178, 0.12);
	border: 1px solid rgba(13, 231, 178, 0.3);
}
.pm-sec-item .ic svg {
	width: 22px;
	height: 22px;
	fill: #0de7b2;
}

/* ── testimonials ─────────────────────────────────────────────────────── */
.pm-quote img.ava {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(13, 231, 178, 0.5);
}
.pm-stars {
	display: inline-flex;
	gap: 3px;
}
.pm-stars svg {
	width: 15px;
	height: 15px;
	fill: #0de7b2;
}

/* ── legacy trader-card chrome upgrade (filters section) ──────────────── */
.filters .card .t,
.filters .card .b {
	border-radius: 18px;
}
.filters .card .t {
	padding: 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.15);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.filters .card .b {
	border: 1px solid rgba(13, 231, 178, 0.15);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.filters .card:hover .b {
	border-color: rgba(13, 231, 178, 0.45);
	box-shadow: 0 0 26px rgba(13, 231, 178, 0.12);
}
.filters .card .ava img {
	border: 2px solid rgba(13, 231, 178, 0.55);
}

/* ── what-you-get glass upgrade (overrides main.css .get texture bgs) ── */
.get li,
.get li:nth-child(4n),
.get li:nth-child(4n-1),
.get li:nth-child(4n-2),
.get li:nth-child(4n-3) {
	background-image: none;
	background-color: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.15);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease, border-color 0.35s ease;
}
.get li:hover {
	transform: translateY(-6px);
	border-color: rgba(13, 231, 178, 0.45);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45),
		0 0 30px rgba(13, 231, 178, 0.12);
}
.get li .pm-get-icon {
	box-shadow: 0 0 26px rgba(13, 231, 178, 0.35);
}

/* ── FAQ / stats / benefits chrome refresh ────────────────────────────── */
.faq .el {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 22px 26px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.faq .qu:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.benefits .bg,
.stat li {
	border-color: rgba(13, 231, 178, 0.15);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.benefits .bg:hover,
.stat li:hover {
	border-color: rgba(13, 231, 178, 0.4);
	box-shadow: 0 0 30px rgba(13, 231, 178, 0.1);
}

/* about-stats band with team photo */
.pm-about-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-radius: 30px;
}
.pm-about-band > img.bgimg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.pm-about-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(1, 17, 25, 0.88);
}

/* ── responsive guards ────────────────────────────────────────────────── */
@media (max-width: 640px) {
	.pm-plan {
		padding: 28px 20px;
	}
	.pm-market-card {
		min-height: 220px;
	}
}

/* ── hero banner v2: eyebrow, accent headline, CTAs, framed visual ────── */
.pm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(13, 231, 178, 0.25);
	color: #b9d2df;
	font-size: 13px;
	letter-spacing: 0.02em;
	backdrop-filter: blur(6px);
}
.pm-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: #0de7b2;
	box-shadow: 0 0 0 0 rgba(13, 231, 178, 0.6);
	flex: 0 0 auto;
}
@media (prefers-reduced-motion: no-preference) {
	.pm-live-dot {
		animation: pm-pulse 2s infinite;
	}
	@keyframes pm-pulse {
		0% { box-shadow: 0 0 0 0 rgba(13, 231, 178, 0.55); }
		70% { box-shadow: 0 0 0 9px rgba(13, 231, 178, 0); }
		100% { box-shadow: 0 0 0 0 rgba(13, 231, 178, 0); }
	}
}
.pm-headline-accent {
	background-image: linear-gradient(90deg, #0de7b2, #7ef7d8);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.pm-cta-glow {
	background: #0de7b2;
	color: #011119;
	border: 2px solid #0de7b2;
	box-shadow: 0 0 28px rgba(13, 231, 178, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pm-cta-glow:hover {
	color: #011119;
	transform: translateY(-2px);
	box-shadow: 0 0 40px rgba(13, 231, 178, 0.55);
}
.pm-cta-ghost {
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.28);
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.pm-cta-ghost:hover {
	border-color: #0de7b2;
	color: #0de7b2;
	transform: translateY(-2px);
}
.pm-hero-visual {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 34px; /* room for the overhanging trade card */
}
.pm-hero-frame {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(13, 231, 178, 0.28);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55), 0 0 46px rgba(13, 231, 178, 0.16);
	aspect-ratio: 16 / 10;
	background: #04121b;
}
.pm-trade-card {
	width: 216px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(2, 22, 33, 0.88);
	border: 1px solid rgba(13, 231, 178, 0.3);
	backdrop-filter: blur(8px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.pm-trade-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}
.pm-trade-pair {
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.03em;
}
.pm-trade-delta {
	color: #0de7b2;
	font-weight: 700;
	font-size: 13px;
}
.pm-sparkline {
	display: block;
	width: 100%;
	height: 32px;
}
.pm-trade-sub {
	margin-top: 6px;
	color: #7ea1b3;
	font-size: 11px;
}

/* ── hero mobile polish (<640px): compact stat row + scaled chips ─────── */
/* Rendered only on mobile (the markup carries sm:hidden), but the rules are
   unconditional so the component is styled wherever it appears. */
.pm-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid rgba(13, 231, 178, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.04);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.pm-hero-stats > div {
	padding: 12px 4px;
	text-align: center;
	min-width: 0;
}
.pm-hero-stats > div + div {
	border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.pm-hero-stats b {
	display: block;
	color: #0de7b2;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
}
.pm-hero-stats span {
	display: block;
	margin-top: 2px;
	color: #7ea1b3;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	white-space: nowrap;
}

@media (max-width: 639.98px) {
	/* eyebrow: smaller, centered pill that never forces overflow */
	.pm-eyebrow {
		font-size: 11px;
		padding: 6px 12px;
		text-align: center;
		max-width: 100%;
	}
	/* trust badges: one size down so all three read as a neat centered row */
	.pm-badge {
		font-size: 11px;
		padding: 6px 12px;
	}
	/* anchored hero chips: scale down instead of hiding */
	.pm-chip {
		padding: 8px 12px;
		border-radius: 12px;
		gap: 1px;
	}
	.pm-chip .v {
		font-size: 14px;
	}
	.pm-chip .l {
		font-size: 9px;
		letter-spacing: 0.06em;
	}
	/* BTC/USD mini card: narrower so it stays well inside a 375px frame */
	.pm-trade-card {
		width: 178px;
		padding: 10px 12px;
		border-radius: 12px;
	}
	.pm-trade-pair {
		font-size: 12px;
	}
	.pm-trade-delta {
		font-size: 11px;
	}
	.pm-sparkline {
		height: 24px;
	}
	.pm-trade-sub {
		font-size: 10px;
	}
	.pm-hero-visual {
		padding-bottom: 28px; /* still clears the -bottom-6 trade card */
	}
	/* ticker: tighter cells so more symbols are visible per viewport */
	.pm-ticker-item {
		padding: 0 16px;
		font-size: 12px;
	}
}
