/* =========================================================
   CLUBETOP Landing / Gateway
   body.ct-landing = marketing (legacy)
   body.ct-gateway = social login/signup homepage
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
	--lp-black: #07080C;
	--lp-dark: #0B0C12;
	--lp-graphite: #11131B;
	--lp-surface: #161923;
	--lp-gold: #D6A84F;
	--lp-champagne: #F1D18A;
	--lp-magenta: #F72585;
	--lp-pink: #FF3D9A;
	--lp-purple: #8B5CF6;
	--lp-white: #F7F7F8;
	--lp-muted: #969BA8;
	--lp-border: rgba(255,255,255,.08);
	--lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
	--lp-grad: linear-gradient(120deg, #F1D18A 0%, #D6A84F 45%, #FF3D9A 100%);
	--lp-cta: linear-gradient(120deg, #F72585, #FF3D9A);
}

/* ========== SOCIAL GATEWAY (Facebook-style) ========== */
body.ct-gateway {
	font-family: var(--lp-font) !important;
	background: #0B0C12 !important;
	color: #F7F7F8 !important;
}

body.ct-gateway #wrap {
	margin-top: 0 !important;
	min-height: 100vh;
	background:
		linear-gradient(105deg, rgba(7, 8, 12, 0.82) 0%, rgba(7, 8, 12, 0.55) 45%, rgba(7, 8, 12, 0.72) 100%),
		url('../public/images/bg.jpg') center / cover no-repeat fixed,
		url('../images/bg.jpg') center / cover no-repeat fixed !important;
}

body.ct-gateway #main > main {
	padding-top: 0 !important;
	background: transparent !important;
}

body.ct-gateway .ct-header,
body.ct-gateway .ct-bottom-nav {
	display: none !important;
}

body.ct-gateway .ct-footer {
	background: transparent !important;
	border: 0 !important;
	padding: 24px 0 40px !important;
	box-shadow: none !important;
}

body.ct-gateway .ct-footer .ct-trust,
body.ct-gateway .ct-footer-tagline {
	display: none;
}

body.ct-gateway .ct-footer .nav-link,
body.ct-gateway .ct-footer-copy {
	color: rgba(255,255,255,.65) !important;
	font-size: 12px;
}

.ct-gw {
	min-height: calc(100vh - 120px);
	display: flex;
	align-items: center;
	padding: 40px 20px;
}

.ct-gw-inner {
	width: min(1080px, 100%);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.ct-gw-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0,0,0,.12), 0 12px 36px rgba(0,0,0,.14);
	padding: 22px 22px 18px;
	border: 1px solid rgba(0,0,0,.04);
	width: 100%;
	max-width: 440px;
	margin-left: auto;
}

.ct-gw-google {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 48px;
	border-radius: 10px;
	border: 1px solid #DADCE0;
	background: #fff;
	color: #3C4043 !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: background .2s ease, box-shadow .2s ease;
}

.ct-gw-google:hover {
	background: #F8F9FA;
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	color: #202124 !important;
}

.ct-gw-google.is-disabled {
	opacity: .72;
}

.ct-gw-or {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 0;
	color: #8A8D91;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.ct-gw-or::before,
.ct-gw-or::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #E4E6EB;
}

.ct-gw-methods {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 14px;
}

.ct-gw-method {
	border: 1px solid #DADCE0;
	background: #F5F6F7;
	border-radius: 10px;
	padding: 10px 8px;
	font-size: 13px;
	font-weight: 700;
	color: #4B4F56;
	cursor: pointer;
	transition: all .2s ease;
}

.ct-gw-method.is-active {
	background: #fff;
	border-color: #F72585;
	color: #F72585;
	box-shadow: 0 0 0 3px rgba(247,37,133,.12);
}


.ct-gw-brand .ct-gw-logo {
	display: inline-block;
	margin-bottom: 28px;
	filter: drop-shadow(0 8px 28px rgba(0,0,0,.55));
}

.ct-gw-brand .ct-gw-logo img {
	height: 88px;
	width: auto;
	max-width: min(320px, 85vw);
	object-fit: contain;
}

@media (min-width: 992px) {
	.ct-gw-brand .ct-gw-logo img {
		height: 104px;
		max-width: 380px;
	}
}

.ct-gw-brand h1 {
	margin: 0 0 14px;
	font-size: clamp(1.85rem, 3.2vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.ct-gw-brand p {
	margin: 0 0 22px;
	font-size: 1.1rem;
	line-height: 1.5;
	color: rgba(255,255,255,.88);
	max-width: 28rem;
	text-shadow: 0 1px 10px rgba(0,0,0,.35);
}

.ct-gw-points {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	gap: 10px;
}

.ct-gw-points li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.ct-gw-points i {
	width: 28px;
	height: 28px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(247,37,133,.92);
	color: #fff;
	font-size: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.ct-gw-explore {
	font-weight: 700;
	color: #FF9EC8 !important;
	text-decoration: none !important;
	text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.ct-gw-explore:hover { color: #fff !important; text-decoration: underline !important; }

.ct-gw-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 16px;
	margin-top: 16px;
	font-size: 12px;
	color: rgba(255,255,255,.85);
	font-weight: 600;
	text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.ct-gw-trust i { margin-right: 4px; color: #FF9EC8; }

.ct-gw-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	padding: 4px;
	background: #F0F2F5;
	border-radius: 999px;
	margin-bottom: 18px;
}

.ct-gw-tab {
	border: 0;
	background: transparent;
	border-radius: 999px;
	padding: 10px 12px;
	font-size: 14px;
	font-weight: 700;
	color: #606770;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.ct-gw-tab.is-active {
	background: #fff;
	color: #09090B;
	box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.ct-gw-panel { display: none; }
.ct-gw-panel.is-active { display: block; }

.ct-gw-form .form-group { margin-bottom: 12px; }

.ct-gw-form label {
	font-size: 13px;
	font-weight: 600;
	color: #4B4F56;
	margin-bottom: 4px;
}

.ct-gw-form .form-control {
	height: 48px;
	border-radius: 10px;
	border: 1px solid #CCD0D5;
	font-size: 15px;
	background: #F5F6F7;
}

.ct-gw-form .form-control:focus {
	background: #fff;
	border-color: #F72585;
	box-shadow: 0 0 0 3px rgba(247,37,133,.15);
}

.ct-gw-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 4px 0 14px;
	font-size: 13px;
}

.ct-gw-row a {
	color: #F72585 !important;
	font-weight: 600;
}

.ct-gw-check {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	font-weight: 500;
	color: #4B4F56;
	cursor: pointer;
}

.ct-gw-submit {
	width: 100%;
	height: 48px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(120deg, #F72585, #FF3D9A);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(247,37,133,.28);
	transition: filter .2s ease, transform .2s ease;
}

.ct-gw-submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.ct-gw-submit-create {
	background: linear-gradient(120deg, #22C55E, #16A34A);
	box-shadow: 0 8px 20px rgba(22,163,74,.25);
}

.ct-gw-switch {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #E4E6EB;
	text-align: center;
	font-size: 14px;
	color: #606770;
}

.ct-gw-link {
	border: 0;
	background: none;
	color: #F72585;
	font-weight: 800;
	cursor: pointer;
	padding: 0;
}

.ct-gw-ref {
	background: #FFF7ED;
	border: 1px solid #FED7AA;
	color: #9A3412;
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 13px;
	margin-bottom: 12px;
}

@media (max-width: 860px) {
	.ct-gw-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		max-width: 440px;
	}
	.ct-gw-card {
		margin-left: 0;
		max-width: 100%;
	}
	.ct-gw-brand {
		text-align: center;
	}
	.ct-gw-brand p,
	.ct-gw-points {
		margin-left: auto;
		margin-right: auto;
		text-align: left;
	}
	.ct-gw-brand h1 { font-size: 1.75rem; }
	.ct-gw {
		padding-top: 28px;
		align-items: flex-start;
	}
}

/* ========== legacy marketing landing (ct-landing) ========== */
body.ct-landing {
	font-family: var(--lp-font) !important;
	background: var(--lp-black) !important;
	color: var(--lp-white) !important;
}


body.ct-landing #wrap {
	margin-top: 0 !important;
	background: var(--lp-black) !important;
}

body.ct-landing #main > main {
	padding-top: 0 !important;
}

/* Header over hero */
body.ct-landing .ct-header {
	position: fixed !important;
	top: 0; left: 0; right: 0;
	background: transparent !important;
	border-bottom: 1px solid transparent !important;
	box-shadow: none !important;
	backdrop-filter: none;
}

body.ct-landing .ct-header.is-scrolled {
	background: rgba(7, 8, 12, 0.88) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom-color: var(--lp-border) !important;
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

body.ct-landing .ct-cta-signup {
	background: linear-gradient(120deg, #F72585, #FF3D9A) !important;
	box-shadow: 0 8px 22px rgba(247,37,133,.3);
}

body.ct-landing .ct-nav-primary {
	display: flex !important;
}

body.ct-feed-app .ct-nav-primary {
	display: none !important;
}

body.ct-landing .ct-legacy-account-links { display: none !important; }
body.ct-landing .ct-bottom-nav { display: none !important; }

body.ct-landing .ct-footer {
	background: #05060A !important;
	border-top: 1px solid var(--lp-border);
	padding: 48px 0 40px !important;
}

body.ct-landing .ct-footer-tagline {
	color: var(--lp-muted);
}

/* Utilities */
.ct-lp-wrap {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.ct-lp-grad {
	background: var(--lp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ct-lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .02em;
	text-decoration: none !important;
	border: 0;
	transition: transform .2s ease, filter .2s ease, background .2s ease, box-shadow .2s ease;
}

.ct-lp-btn:hover { transform: translateY(-2px); }

.ct-lp-btn-primary {
	background: var(--lp-cta);
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(247,37,133,.35);
}

.ct-lp-btn-primary:hover { filter: brightness(1.06); color: #fff !important; }

.ct-lp-btn-ghost {
	background: rgba(255,255,255,.06);
	color: #fff !important;
	border: 1px solid rgba(255,255,255,.14);
}

.ct-lp-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff !important; }

.ct-lp-btn-gold {
	background: linear-gradient(135deg, #F1D18A, #B98932);
	color: #1a1205 !important;
	box-shadow: 0 10px 24px rgba(214,168,79,.28);
}

.ct-lp-btn-sm { min-height: 40px; padding: 8px 16px; font-size: 12px; }

.ct-lp-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.ct-lp-center { text-align: center; margin-top: 28px; }
.ct-lp-center-row { justify-content: center; }

.ct-lp-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--lp-champagne);
	background: rgba(214,168,79,.1);
	border: 1px solid rgba(214,168,79,.28);
	margin-bottom: 20px;
}

.ct-lp-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.ct-lp-pill-rising {
	background: rgba(247,37,133,.16);
	color: #FF9EC8;
	border: 1px solid rgba(247,37,133,.3);
}

.ct-lp-pill-gold {
	background: rgba(214,168,79,.16);
	color: var(--lp-champagne);
	border: 1px solid rgba(214,168,79,.3);
}

.ct-lp-num {
	display: block;
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1;
	background: var(--lp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 12px;
}

/* Reveal */
.ct-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s ease, transform .7s ease;
}
.ct-reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.ct-reveal, .ct-hero-anim, .ct-hero-anim-media { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ========== HERO ========== */
.ct-lp-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 110px 0 80px;
	overflow: hidden;
}

.ct-lp-hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(900px 520px at 78% 40%, rgba(247,37,133,.22), transparent 55%),
		radial-gradient(700px 420px at 20% 20%, rgba(214,168,79,.12), transparent 50%),
		radial-gradient(800px 500px at 60% 100%, rgba(88,28,60,.35), transparent 55%),
		var(--lp-black);
}

.ct-lp-hero-glow {
	position: absolute;
	right: -10%;
	top: 10%;
	width: 55%;
	height: 80%;
	background: radial-gradient(circle at 40% 40%, rgba(241,209,138,.18), transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}

.ct-lp-hero-grid {
	position: relative;
	z-index: 1;
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 40px;
	align-items: center;
}

.ct-lp-display {
	margin: 0 0 18px;
	font-size: clamp(2.4rem, 5.2vw, 4.4rem);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.02;
	color: #fff;
}

.ct-lp-display span { display: block; }

.ct-lp-lead {
	margin: 0 0 28px;
	max-width: 34rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--lp-muted);
}

.ct-lp-hero-visual { position: relative; }

.ct-lp-hero-frame {
	position: relative;
	border-radius: 28px 28px 80px 28px;
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.ct-lp-hero-img {
	display: block;
	width: 100%;
	height: min(72vh, 640px);
	object-fit: cover;
	object-position: center top;
	transform: scale(1.02);
}

.ct-lp-hero-fade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7,8,12,.55), transparent 35%),
		linear-gradient(180deg, transparent 45%, rgba(7,8,12,.85));
	pointer-events: none;
}

.ct-hero-anim {
	animation: ct-lp-rise .8s ease both;
}
.ct-hero-anim-media {
	animation: ct-lp-media .9s ease both .1s;
}

@keyframes ct-lp-rise {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: none; }
}
@keyframes ct-lp-media {
	from { opacity: 0; transform: scale(.96); }
	to { opacity: 1; transform: scale(1); }
}

.ct-lp-scroll {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--lp-muted) !important;
	text-decoration: none !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ct-lp-scroll-ico {
	animation: ct-lp-bounce 1.6s ease infinite;
}

@keyframes ct-lp-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* Sections */
.ct-lp-section {
	padding: 96px 0;
	position: relative;
}

.ct-lp-section-head {
	max-width: 720px;
	margin-bottom: 48px;
}

.ct-lp-section-head h2 {
	margin: 0 0 14px;
	font-size: clamp(1.8rem, 3.4vw, 3rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.1;
	color: #fff;
}

.ct-lp-section-head h2 span { display: inline; }
.ct-lp-fans .ct-lp-section-head h2 span { display: block; }

.ct-lp-section-head p {
	margin: 0 0 20px;
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--lp-muted);
}

/* Pillars */
.ct-lp-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ct-lp-pillar {
	padding: 28px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
	border: 1px solid var(--lp-border);
}

.ct-lp-pillar h3 {
	margin: 0 0 8px;
	font-size: 1.15rem;
	font-weight: 800;
	color: #fff;
}

.ct-lp-pillar p {
	margin: 0;
	color: var(--lp-muted);
	font-size: 14px;
	line-height: 1.55;
}

/* Creators how */
.ct-lp-creators-how {
	background:
		radial-gradient(700px 300px at 0% 50%, rgba(139,92,246,.12), transparent 60%),
		var(--lp-dark);
}

.ct-lp-split {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 48px;
	align-items: start;
}

.ct-lp-split-copy h2 {
	margin: 0 0 16px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.1;
}

.ct-lp-split-copy p {
	margin: 0 0 24px;
	color: var(--lp-muted);
	line-height: 1.6;
}

.ct-lp-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.ct-lp-steps li {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 14px;
	padding: 18px 18px 18px 14px;
	border-radius: 16px;
	border: 1px solid var(--lp-border);
	background: rgba(255,255,255,.03);
}

.ct-lp-steps .ct-lp-num { font-size: 28px; margin: 0; }

.ct-lp-steps strong {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 4px;
}

.ct-lp-steps p {
	margin: 0;
	color: var(--lp-muted);
	font-size: 13px;
	line-height: 1.45;
}

/* Fans */
.ct-lp-fans-mosaic {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.ct-lp-chip {
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.ct-lp-chip-gold {
	border-color: rgba(214,168,79,.35);
	color: var(--lp-champagne);
}

.ct-lp-chip-pink {
	border-color: rgba(247,37,133,.35);
	color: #FF9EC8;
}

/* Club */
.ct-lp-club {
	background: var(--lp-graphite);
}

.ct-lp-club-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.ct-lp-club-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(255,255,255,.03);
	border: 1px solid var(--lp-border);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}

.ct-lp-star { color: var(--lp-champagne); }

/* Discover cards */
.ct-lp-creator-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ct-lp-creator-card {
	border-radius: 20px;
	overflow: hidden;
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ct-lp-creator-card:hover {
	transform: translateY(-6px);
	border-color: rgba(214,168,79,.35);
	box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.ct-lp-creator-media {
	position: relative;
	display: block;
	height: 200px;
	overflow: hidden;
}

.ct-lp-creator-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.ct-lp-creator-card:hover .ct-lp-creator-media img {
	transform: scale(1.06);
}

.ct-lp-creator-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(7,8,12,.75));
}

.ct-lp-creator-media .ct-lp-pill {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
}

.ct-lp-creator-body {
	padding: 0 16px 18px;
	margin-top: -28px;
	position: relative;
	text-align: center;
}

.ct-lp-creator-avatar img {
	width: 56px;
	height: 56px;
	border-radius: 999px;
	border: 3px solid var(--lp-surface);
	object-fit: cover;
}

.ct-lp-creator-name {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	color: #fff !important;
	font-weight: 800;
	font-size: 15px;
	text-decoration: none !important;
}

.ct-lp-creator-name i { color: var(--lp-champagne); font-size: 12px; }

.ct-lp-creator-handle,
.ct-lp-creator-cat {
	display: block;
	font-size: 12px;
	color: var(--lp-muted);
}

.ct-lp-creator-foot {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin: 12px 0 14px;
	font-size: 12px;
	color: var(--lp-muted);
}

/* Rising */
.ct-lp-rising {
	background:
		radial-gradient(600px 260px at 80% 0%, rgba(247,37,133,.14), transparent 60%),
		var(--lp-dark);
}

.ct-lp-rising-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.ct-lp-rising-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 16px;
	background: rgba(255,255,255,.03);
	border: 1px solid var(--lp-border);
	text-decoration: none !important;
	transition: transform .2s ease, border-color .2s ease;
}

.ct-lp-rising-card:hover {
	transform: translateY(-3px);
	border-color: rgba(247,37,133,.35);
}

.ct-lp-rising-card img {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	object-fit: cover;
}

.ct-lp-rising-card strong {
	display: block;
	color: #fff;
	font-size: 14px;
}

.ct-lp-rising-card em {
	font-style: normal;
	color: #4ADE80;
	font-size: 12px;
	font-weight: 700;
}

.ct-lp-rising-card > div { flex: 1; min-width: 0; }

/* Money / fees */
.ct-lp-money-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 12px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}

.ct-lp-plus, .ct-lp-eq { color: var(--lp-muted); font-weight: 500; }

.ct-lp-money-result {
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--lp-cta);
	box-shadow: 0 10px 24px rgba(247,37,133,.3);
}

.ct-lp-fees-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
}

.ct-lp-fees-copy h2 {
	margin: 0 0 16px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -.03em;
}

.ct-lp-fees-copy p {
	color: var(--lp-muted);
	line-height: 1.6;
}

.ct-lp-fee-card {
	padding: 28px;
	border-radius: 24px;
	background:
		radial-gradient(400px 160px at 100% 0%, rgba(214,168,79,.2), transparent 60%),
		var(--lp-surface);
	border: 1px solid rgba(214,168,79,.25);
	box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.ct-lp-fee-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	color: var(--lp-champagne);
	margin-bottom: 18px;
}

.ct-lp-fee-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.ct-lp-fee-split strong {
	display: block;
	font-size: 42px;
	font-weight: 800;
	letter-spacing: -.04em;
	color: #fff;
}

.ct-lp-fee-creator strong {
	background: var(--lp-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ct-lp-fee-split em {
	font-style: normal;
	color: var(--lp-muted);
	font-size: 13px;
}

/* Simulator */
.ct-lp-sim-card {
	padding: 28px;
	border-radius: 24px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-border);
}

body.ct-landing .ct-lp-sim .range_box,
body.ct-landing .ct-lp-sim .range_box b,
body.ct-landing .ct-lp-sim .range_box i {
	color: var(--lp-muted) !important;
}

body.ct-landing .ct-lp-sim .val {
	background: var(--lp-graphite) !important;
	border: 1px solid var(--lp-border) !important;
	color: #fff !important;
	border-radius: 10px;
	padding: 6px 8px;
}

.ct-lp-sim-result h3 {
	margin: 8px 0 12px;
	font-size: 2.4rem;
	font-weight: 800;
	color: #fff;
}

.ct-lp-sim-result small {
	font-size: 14px;
	color: var(--lp-muted);
	font-weight: 600;
	margin-left: 8px;
}

.ct-lp-sim-label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--lp-champagne);
}

.ct-lp-sim-split {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--lp-muted);
}

.ct-lp-disclaimer {
	font-size: 12px !important;
	color: #6F7785 !important;
}

/* Why */
.ct-lp-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.ct-lp-why-card {
	padding: 24px;
	border-radius: 18px;
	background: rgba(255,255,255,.03);
	border: 1px solid var(--lp-border);
	transition: transform .2s ease, border-color .2s ease;
}

.ct-lp-why-card:hover {
	transform: translateY(-4px);
	border-color: rgba(247,37,133,.3);
}

.ct-lp-why-card i {
	font-size: 20px;
	color: var(--lp-champagne);
	margin-bottom: 12px;
}

.ct-lp-why-card h3 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.ct-lp-why-card p {
	margin: 0;
	font-size: 13px;
	color: var(--lp-muted);
	line-height: 1.45;
}

/* Tech */
.ct-lp-tech {
	text-align: center;
	background:
		linear-gradient(180deg, transparent, rgba(247,37,133,.06)),
		var(--lp-black);
	overflow: hidden;
}

.ct-lp-tech h2 {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -.03em;
}

.ct-lp-tech p {
	max-width: 560px;
	margin: 0 auto 36px;
	color: var(--lp-muted);
}

.ct-lp-tech-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	max-width: 720px;
	margin: 0 auto;
}

.ct-lp-tech-grid span {
	height: 72px;
	border-radius: 14px;
	border: 1px solid var(--lp-border);
	background:
		linear-gradient(135deg, rgba(255,255,255,.04), transparent),
		var(--lp-surface);
}

.ct-lp-tech-grid span:nth-child(2),
.ct-lp-tech-grid span:nth-child(7) {
	border-color: rgba(214,168,79,.25);
	background: linear-gradient(135deg, rgba(214,168,79,.12), transparent);
}

.ct-lp-tech-grid span:nth-child(4),
.ct-lp-tech-grid span:nth-child(5) {
	border-color: rgba(247,37,133,.25);
	background: linear-gradient(135deg, rgba(247,37,133,.12), transparent);
}

/* Final CTA */
.ct-lp-final {
	padding: 110px 0;
	text-align: center;
	background:
		radial-gradient(700px 300px at 50% 0%, rgba(247,37,133,.2), transparent 60%),
		var(--lp-dark);
}

.ct-lp-final h2 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.08;
}

.ct-lp-final h2 span { display: block; }

.ct-lp-final p {
	max-width: 520px;
	margin: 0 auto 28px;
	color: var(--lp-muted);
	line-height: 1.6;
}

.ct-lp-empty { color: var(--lp-muted); text-align: center; }

/* Responsive */
@media (max-width: 991px) {
	.ct-lp-hero-grid,
	.ct-lp-split,
	.ct-lp-fees-grid {
		grid-template-columns: 1fr;
	}
	.ct-lp-hero {
		padding-top: 96px;
		min-height: auto;
	}
	.ct-lp-hero-img {
		height: 52vh;
		min-height: 320px;
	}
	.ct-lp-pillars,
	.ct-lp-creator-grid,
	.ct-lp-rising-row,
	.ct-lp-why-grid,
	.ct-lp-club-grid {
		grid-template-columns: 1fr 1fr;
	}
	.ct-lp-scroll { display: none; }
}

@media (max-width: 640px) {
	.ct-lp-section { padding: 64px 0; }
	.ct-lp-pillars,
	.ct-lp-creator-grid,
	.ct-lp-rising-row,
	.ct-lp-why-grid,
	.ct-lp-club-grid,
	.ct-lp-tech-grid {
		grid-template-columns: 1fr;
	}
	.ct-lp-fee-split { grid-template-columns: 1fr; }
	.ct-lp-display { font-size: 2.2rem; }
	.ct-lp-hero-frame { border-radius: 22px; }
}
