/* =====================================================================
   Crew Club — Giveaways Landing Page
   Scoped to .cc-gw to avoid leaking into the rest of the site.
   Tokens from Crew Club Design System (coral / navy / sunshine / cream).
   ===================================================================== */

.cc-gw {
	/* ---- Color tokens ---- */
	--cc-coral-50:  #FFF1ED;
	--cc-coral-100: #FFDDD2;
	--cc-coral-200: #FFB8A2;
	--cc-coral-300: #FF8E6C;
	--cc-coral-400: #FF6D43;
	--cc-coral-500: #FF5A36;
	--cc-coral-600: #E84320;
	--cc-coral-700: #B82F12;

	--cc-navy-100: #E5EAF3;
	--cc-navy-500: #2A3F6B;
	--cc-navy-700: #111E40;
	--cc-navy-800: #0F1B3A;
	--cc-navy-900: #070D22;

	--cc-sun-100: #FFEFAA;
	--cc-sun-200: #FFE275;
	--cc-sun-300: #FFD23F;
	--cc-sun-500: #D9A000;

	--cc-cream-50:  #FFFCF7;
	--cc-cream-100: #FFF8F0;
	--cc-cream-200: #FAF0E2;
	--cc-cream-300: #F0E2CC;

	--cc-gray-200: #E0E3EB;
	--cc-gray-300: #C5CAD6;
	--cc-gray-500: #6B7383;
	--cc-gray-600: #4A5160;

	--cc-fg-1: var(--cc-navy-800);
	--cc-fg-2: var(--cc-gray-600);
	--cc-fg-3: var(--cc-gray-500);

	/* ---- Type ---- */
	--cc-font-display: 'Sora', system-ui, -apple-system, "Segoe UI", sans-serif;
	--cc-font-body:    'Inter Tight', system-ui, -apple-system, "Segoe UI", sans-serif;
	--cc-font-mono:    'JetBrains Mono', ui-monospace, "SFMono-Regular", Menlo, monospace;

	/* ---- Shadow ---- */
	--cc-shadow-sm:    0 2px 6px rgba(15, 27, 58, 0.08);
	--cc-shadow-md:    0 6px 18px rgba(15, 27, 58, 0.10);
	--cc-shadow-lg:    0 18px 42px rgba(15, 27, 58, 0.14);
	--cc-shadow-coral: 0 10px 28px rgba(255, 90, 54, 0.32);
	--cc-shadow-sun:   0 10px 28px rgba(255, 210, 63, 0.38);
	--cc-shadow-navy:  0 10px 28px rgba(15, 27, 58, 0.32);

	/* ---- Motion ---- */
	--cc-ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);

	font-family: var(--cc-font-body);
	color: var(--cc-fg-1);
	background: #FFFFFF;
	-webkit-font-smoothing: antialiased;
}

.cc-gw *,
.cc-gw *::before,
.cc-gw *::after {
	box-sizing: border-box;
}

.cc-gw img { display: block; max-width: 100%; height: auto; }

.cc-gw__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------------------------------------------------------------------
   Shared section scaffolding
   --------------------------------------------------------------------- */
.cc-gw__section-head { max-width: 760px; margin: 0 0 48px; }
.cc-gw__section-head--centered { margin-left: auto; margin-right: auto; text-align: center; }

.cc-gw__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--cc-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cc-coral-600);
	margin-bottom: 16px;
}

.cc-gw__section-title {
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: var(--cc-navy-800);
	margin: 0 0 16px;
	text-wrap: balance;
}
.cc-gw__section-title--light { color: #fff; }

.cc-gw__section-lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--cc-fg-2);
	margin: 0;
	max-width: 620px;
}
.cc-gw__section-head--centered .cc-gw__section-lead { margin-left: auto; margin-right: auto; }
.cc-gw__section-lead--light { color: rgba(255, 248, 240, 0.78); }
.cc-gw__section-head--light .cc-gw__eyebrow { color: var(--cc-coral-300); }

.cc-gw__pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 90, 54, 0.18);
	color: var(--cc-coral-200);
	border: 1px solid rgba(255, 90, 54, 0.32);
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 16px;
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.cc-gw__btn {
	font-family: var(--cc-font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	line-height: 1;
	transition: transform 120ms var(--cc-ease-out),
	            background-color 200ms var(--cc-ease-out),
	            box-shadow 200ms var(--cc-ease-out),
	            color 200ms var(--cc-ease-out);
}
.cc-gw__btn:hover { transform: translateY(-1px); text-decoration: none; }
.cc-gw__btn:active { transform: scale(0.98); }

.cc-gw__btn-arrow { transition: transform 200ms var(--cc-ease-out); }
.cc-gw__btn:hover .cc-gw__btn-arrow { transform: translateX(3px); }

.cc-gw__btn--primary {
	background: var(--cc-coral-500);
	color: #fff;
	box-shadow: var(--cc-shadow-coral);
}
.cc-gw__btn--primary:hover { background: var(--cc-coral-600); box-shadow: 0 14px 32px rgba(255, 90, 54, 0.42); color: #fff; }
.cc-gw__btn--primary:active { background: var(--cc-coral-700); }

.cc-gw__btn--secondary {
	background: var(--cc-navy-800);
	color: #fff;
}
.cc-gw__btn--secondary:hover { background: var(--cc-navy-700); color: #fff; }

.cc-gw__btn--navy {
	background: var(--cc-navy-800);
	color: #fff;
	box-shadow: var(--cc-shadow-navy);
}
.cc-gw__btn--navy:hover { background: var(--cc-navy-700); color: #fff; }

.cc-gw__btn--sunshine {
	background: var(--cc-sun-300);
	color: var(--cc-navy-800);
	box-shadow: var(--cc-shadow-sun);
}
.cc-gw__btn--sunshine:hover { background: var(--cc-sun-200); color: var(--cc-navy-800); }

.cc-gw__btn--ghost {
	background: transparent;
	color: var(--cc-navy-800);
	border-color: var(--cc-navy-100);
}
.cc-gw__btn--ghost:hover { background: rgba(15, 27, 58, 0.04); color: var(--cc-navy-800); }

.cc-gw__btn--ghost-light {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.32);
	backdrop-filter: blur(4px);
}
.cc-gw__btn--ghost-light:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }

.cc-gw__btn--lg { padding: 16px 28px; font-size: 16px; }
.cc-gw__btn--xl { padding: 18px 32px; font-size: 17px; }
.cc-gw__btn--full { width: 100%; }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.cc-gw__hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 96px;
	isolation: isolate;
}

.cc-gw__hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}
.cc-gw__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.32;
}
.cc-gw__blob--coral {
	width: 460px;
	height: 460px;
	background: var(--cc-coral-300);
	top: -160px;
	right: -120px;
	opacity: 0.28;
}
.cc-gw__blob--sun {
	width: 340px;
	height: 340px;
	background: var(--cc-sun-200);
	bottom: -120px;
	left: -100px;
	opacity: 0.22;
}
.cc-gw__dots {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.45;
	mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 75%);
}

.cc-gw__hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: center;
}

.cc-gw__hero-copy { min-width: 0; }

.cc-gw__hero-title {
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--cc-navy-800);
	margin: 0 0 20px;
	text-wrap: balance;
}
.cc-gw__hero-title-accent {
	color: var(--cc-coral-500);
	display: inline-block;
}
.cc-gw__hero-title-accent::after {
	content: "";
	display: block;
	height: 6px;
	background: var(--cc-sun-300);
	border-radius: 6px;
	margin-top: 2px;
	transform: scaleX(0.65) translateX(-12%);
	transform-origin: left;
}

.cc-gw__lead {
	font-size: 19px;
	line-height: 1.6;
	color: var(--cc-fg-2);
	margin: 0 0 32px;
	max-width: 560px;
}

.cc-gw__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
}
.cc-gw__cta-row--centered { justify-content: center; }

.cc-gw__trust {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid var(--cc-gray-200);
}
.cc-gw__trust-badges {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.cc-gw__trust-badges img {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: #fff;
	padding: 4px;
	box-shadow: var(--cc-shadow-sm);
	object-fit: contain;
}
.cc-gw__trust-copy {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.45;
}
.cc-gw__trust-copy strong { color: var(--cc-navy-800); font-weight: 700; }
.cc-gw__trust-copy span { color: var(--cc-fg-3); }

/* ---- Spotlight card ---- */
.cc-gw__spotlight { position: relative; }
.cc-gw__spotlight-frame {
	background: var(--cc-navy-800);
	color: #fff;
	border-radius: 28px;
	padding: 20px;
	box-shadow: var(--cc-shadow-lg);
	position: relative;
	overflow: hidden;
}
.cc-gw__spotlight-frame::before {
	content: "";
	position: absolute;
	inset: -2px;
	background: radial-gradient(circle at top right, rgba(255, 210, 63, 0.22), transparent 50%);
	pointer-events: none;
}

.cc-gw__spotlight-tag {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px 6px 10px;
	border-radius: 999px;
	background: var(--cc-coral-500);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: var(--cc-shadow-coral);
}
.cc-gw__spotlight-tag-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 999px;
	animation: cc-gw-blink 1.4s ease-in-out infinite;
}
@keyframes cc-gw-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

.cc-gw__spotlight-img,
.cc-gw__spotlight-art {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 18px;
	background: var(--cc-navy-700);
	display: block;
	object-fit: cover;
}
.cc-gw__spotlight-art { display: grid; place-items: center; padding: 24px; }
.cc-gw__spotlight-art svg { width: 100%; height: auto; }

.cc-gw__spotlight-body { padding: 22px 8px 6px; position: relative; }

.cc-gw__spotlight-title {
	font-family: var(--cc-font-display);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 8px;
}
.cc-gw__spotlight-desc {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	margin: 0 0 14px;
}

.cc-gw__spotlight-value {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	margin-bottom: 16px;
}
.cc-gw__spotlight-value-label {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
	font-weight: 600;
}
.cc-gw__spotlight-value-amount {
	font-family: var(--cc-font-mono);
	font-weight: 600;
	font-size: 22px;
	color: var(--cc-sun-300);
	letter-spacing: -0.01em;
}

.cc-gw__countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 16px;
}
.cc-gw__countdown-unit {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	text-align: center;
	padding: 10px 6px 8px;
}
.cc-gw__countdown-unit strong {
	display: block;
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.02em;
}
.cc-gw__countdown-unit span {
	display: block;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 4px;
}

/* ---------------------------------------------------------------------
   STAT STRIP
   --------------------------------------------------------------------- */
.cc-gw__stats { padding: 24px 0 8px; background: #fff; }
.cc-gw__stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding: 28px;
	background: var(--cc-navy-800);
	color: #fff;
	border-radius: 24px;
	box-shadow: var(--cc-shadow-lg);
	position: relative;
	overflow: hidden;
}
.cc-gw__stats-grid::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(180deg, var(--cc-coral-500), var(--cc-sun-300));
	z-index: 1;
}
.cc-gw__stat {
	text-align: center;
	padding: 8px 12px;
	position: relative;
	z-index: 1;
}
.cc-gw__stat + .cc-gw__stat {
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.cc-gw__stat-num {
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: clamp(1.75rem, 1.2vw + 1rem, 2.25rem);
	letter-spacing: -0.03em;
	color: #fff;
	line-height: 1.1;
}
.cc-gw__stat-label {
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.62);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 6px;
}

/* ---------------------------------------------------------------------
   PRIZE GRID
   --------------------------------------------------------------------- */
.cc-gw__prizes { padding: 96px 0; }
.cc-gw__prize-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.cc-gw__prize {
	background: #fff;
	border-radius: 18px;
	padding: 18px;
	box-shadow: var(--cc-shadow-md);
	position: relative;
	transition: transform 240ms var(--cc-ease-out), box-shadow 240ms var(--cc-ease-out);
}
.cc-gw__prize:hover {
	transform: translateY(-4px);
	box-shadow: var(--cc-shadow-lg);
}
.cc-gw__prize--hot::before {
	content: "";
	position: absolute;
	top: 0; left: 18px; right: 18px;
	height: 3px;
	background: var(--cc-coral-500);
	border-radius: 999px;
}
.cc-gw__prize-flag {
	position: absolute;
	top: 14px; right: 14px;
	background: var(--cc-coral-500);
	color: #fff;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	z-index: 2;
	box-shadow: var(--cc-shadow-coral);
}
.cc-gw__prize-link { display: block; color: inherit; text-decoration: none; }
.cc-gw__prize-link:hover { text-decoration: none; color: inherit; }

.cc-gw__prize-art {
	position: relative;
	background: var(--cc-cream-200);
	border-radius: 14px;
	aspect-ratio: 16 / 11;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	overflow: hidden;
}
.cc-gw__prize-art img { width: 100%; height: 100%; object-fit: cover; }
.cc-gw__prize-art-fallback { width: 70%; }
.cc-gw__prize-art-fallback svg { width: 100%; height: auto; }
.cc-gw__prize-spark {
	position: absolute;
	top: 10px; left: 12px;
	width: 26px; height: 26px;
	display: grid; place-items: center;
	background: var(--cc-sun-300);
	color: var(--cc-navy-800);
	font-weight: 800;
	font-size: 14px;
	border-radius: 999px;
	box-shadow: 0 4px 10px rgba(255, 210, 63, 0.45);
}
.cc-gw__prize-name {
	font-family: var(--cc-font-display);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--cc-navy-800);
	margin: 0 0 6px;
}
.cc-gw__prize-value {
	font-family: var(--cc-font-mono);
	font-weight: 600;
	font-size: 16px;
	color: var(--cc-coral-600);
}

/* ---------------------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------------------- */
.cc-gw__how { padding: 32px 0; }
.cc-gw__how-card {
	background: var(--cc-navy-800);
	color: #fff;
	padding: 80px 32px;
	border-radius: 32px;
	position: relative;
	overflow: hidden;
}
.cc-gw__how-aura { display: none; }
.cc-gw__steps {
	list-style: none;
	padding: 0;
	margin: 48px auto 32px;
	max-width: 980px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	position: relative;
}
.cc-gw__step {
	flex: 1;
	text-align: center;
	padding: 0 8px;
}
.cc-gw__step-circle {
	width: 64px;
	height: 64px;
	background: var(--cc-coral-500);
	border-radius: 999px;
	color: #fff;
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: 26px;
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	box-shadow: var(--cc-shadow-coral);
}
.cc-gw__step-title {
	font-family: var(--cc-font-display);
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.cc-gw__step-body {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.6;
	margin: 0;
}
.cc-gw__step-connector {
	flex-shrink: 0;
	width: 40px;
	height: 1px;
	margin-top: 32px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	list-style: none;
}

.cc-gw__legal {
	max-width: 760px;
	margin: 32px auto 0;
	padding: 18px 24px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}
.cc-gw__legal svg { color: var(--cc-sun-300); flex-shrink: 0; margin-top: 1px; }
.cc-gw__legal strong { color: #fff; }

/* ---------------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------------- */
.cc-gw__final { padding: 32px 0 96px; }
.cc-gw__final-card {
	background: var(--cc-coral-500);
	color: #fff;
	text-align: center;
	padding: 88px 32px;
	border-radius: 32px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--cc-shadow-lg);
}
.cc-gw__final-aura {
	position: absolute;
	inset: -30% -10% auto auto;
	width: 60%;
	height: 90%;
	background: radial-gradient(circle, rgba(255, 210, 63, 0.4), transparent 60%);
	pointer-events: none;
}
.cc-gw__final-card::after {
	content: "";
	position: absolute;
	inset: auto auto -40% -10%;
	width: 50%;
	height: 80%;
	background: radial-gradient(circle, rgba(15, 27, 58, 0.22), transparent 60%);
	pointer-events: none;
}
.cc-gw__final-title {
	position: relative;
	font-family: var(--cc-font-display);
	font-weight: 800;
	font-size: clamp(2.25rem, 3.5vw + 1rem, 3.5rem);
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: #fff;
	margin: 0 0 16px;
	text-wrap: balance;
}
.cc-gw__final-lead {
	position: relative;
	font-size: 18px;
	line-height: 1.6;
	max-width: 620px;
	margin: 0 auto 32px;
	color: rgba(255, 255, 255, 0.92);
}
.cc-gw__final .cc-gw__cta-row { position: relative; margin-bottom: 16px; }
.cc-gw__final-mini {
	position: relative;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
	margin: 8px 0 0;
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.cc-gw__hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.cc-gw__spotlight { max-width: 520px; }
	.cc-gw__prize-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.cc-gw__hero { padding: 56px 0 72px; }
	.cc-gw__prizes { padding: 72px 0; }
	.cc-gw__how-card { padding: 56px 24px; border-radius: 24px; }
	.cc-gw__steps {
		flex-direction: column;
		gap: 32px;
		align-items: stretch;
		margin: 32px auto 24px;
	}
	.cc-gw__step-connector {
		width: 1px;
		height: 24px;
		margin: 0 auto;
		background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
	}
	.cc-gw__final-card { padding: 64px 24px; border-radius: 24px; }
	.cc-gw__cta-row--centered { flex-direction: column; }
	.cc-gw__btn--xl { width: 100%; }
}

@media (max-width: 720px) {
	.cc-gw__stats-grid { grid-template-columns: 1fr; padding: 20px 16px; }
	.cc-gw__stat + .cc-gw__stat { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 16px; }
}

@media (max-width: 560px) {
	.cc-gw__prize-grid { grid-template-columns: 1fr; }
	.cc-gw__trust { flex-direction: column; align-items: flex-start; gap: 12px; }
	.cc-gw__countdown-unit strong { font-size: 18px; }
}
