:root {
	--bg-main: #0a0b10;
	--bg-card: rgba(18, 20, 29, 0.85);
	--bg-card-hover: rgba(28, 31, 46, 0.95);
	--bg-glass: rgba(255, 255, 255, 0.04);
	--border-glass: rgba(255, 255, 255, 0.09);
	--border-neon: rgba(168, 85, 247, 0.4);
	
	--fg-main: #f8fafc;
	--fg-muted: #94a3b8;
	--fg-dim: #64748b;
	
	--neon-purple: #a855f7;
	--neon-cyan: #06b6d4;
	--neon-pink: #ec4899;
	--neon-emerald: #10b981;
	--neon-amber: #f59e0b;
	
	--gradient-primary: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #06b6d4 100%);
	--gradient-fire: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
	--gradient-card: linear-gradient(180deg, rgba(26, 29, 43, 0.7) 0%, rgba(13, 15, 24, 0.85) 100%);
	--gradient-glow: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
	
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-pill: 9999px;
	
	--font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
	
	--shadow-glow: 0 0 35px -5px rgba(168, 85, 247, 0.35);
	--shadow-card: 0 16px 36px -10px rgba(0, 0, 0, 0.6);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: var(--bg-main);
	color: var(--fg-main);
	font-family: var(--font-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	overflow-x: hidden;
	background-image: 
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.22), transparent 70%),
		radial-gradient(ellipse 60% 40% at 90% 40%, rgba(6, 182, 212, 0.12), transparent 60%),
		radial-gradient(ellipse 60% 40% at 10% 80%, rgba(236, 72, 153, 0.1), transparent 60%);
	background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #090a0f;
}
::-webkit-scrollbar-thumb {
	background: #262b3d;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--neon-purple);
}

/* Top App Bar */
.app-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(10, 11, 16, 0.75);
	border-bottom: 1px solid var(--border-glass);
	padding: 0.85rem 1.25rem;
}

.header-container {
	max-width: 54rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-badge {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--fg-main);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: -0.02em;
	cursor: pointer;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	background: var(--gradient-primary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

/* Live Ticker Badge */
.live-counter-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-pill);
	padding: 0.35rem 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--fg-muted);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	background: var(--neon-emerald);
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 0 8px var(--neon-emerald);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
}

/* Shell Layout */
.shell {
	max-width: 48rem;
	margin: 0 auto;
	padding: 2rem 1.25rem 5rem;
}

/* Typography & Hero */
.hero-section {
	text-align: center;
	padding: 2.5rem 0 2rem;
	animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trending-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(168, 85, 247, 0.15);
	border: 1px solid rgba(168, 85, 247, 0.35);
	color: #d8b4fe;
	font-size: 0.825rem;
	font-weight: 700;
	padding: 0.35rem 0.95rem;
	border-radius: var(--radius-pill);
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 6.5vw, 3.5rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.035em;
	margin-bottom: 1rem;
	color: #ffffff;
}

.gradient-text {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.hero-subtitle {
	font-size: clamp(1.05rem, 3vw, 1.3rem);
	color: var(--fg-muted);
	max-width: 32rem;
	margin: 0 auto 2.25rem;
	font-weight: 500;
}

/* Primary CTA Button */
.cta-btn-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.btn-hero {
	background: var(--gradient-primary);
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	padding: 1.15rem 2.4rem;
	border-radius: var(--radius-pill);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	box-shadow: 0 0 35px -5px rgba(168, 85, 247, 0.65), 0 10px 25px -5px rgba(99, 102, 241, 0.5);
	transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		60deg,
		transparent 30%,
		rgba(255, 255, 255, 0.3) 50%,
		transparent 70%
	);
	transform: rotate(30deg);
	animation: shine 4s infinite;
}

@keyframes shine {
	0% { transform: translateX(-150%) rotate(30deg); }
	25%, 100% { transform: translateX(150%) rotate(30deg); }
}

.btn-hero:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 0 45px 0 rgba(168, 85, 247, 0.85), 0 15px 30px -5px rgba(99, 102, 241, 0.65);
}

.btn-hero:active {
	transform: translateY(1px) scale(0.98);
}

/* Quick Mode / Surprise Pills */
.quick-triggers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.pill-btn {
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	color: var(--fg-muted);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.pill-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--fg-main);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-1px);
}

.pill-btn.active {
	background: rgba(168, 85, 247, 0.2);
	border-color: var(--neon-purple);
	color: #fff;
}

/* Wizard / Question Flow Card */
.wizard-box {
	background: var(--gradient-card);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	margin-bottom: 2rem;
	animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Progress Bar */
.wizard-progress {
	margin-bottom: 1.75rem;
}

.progress-track {
	height: 6px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-pill);
	overflow: hidden;
	position: relative;
}

.progress-fill {
	height: 100%;
	background: var(--gradient-primary);
	border-radius: var(--radius-pill);
	transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-indicator {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--fg-muted);
}

.step-indicator span.highlight {
	color: var(--neon-cyan);
}

.wizard-question-title {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 4vw, 1.85rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
	text-align: center;
}

.wizard-question-sub {
	text-align: center;
	color: var(--fg-muted);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

/* Option Cards Grid */
.options-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
	gap: 0.85rem;
}

.option-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	padding: 1.15rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--fg-main);
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
	text-align: left;
	position: relative;
	overflow: hidden;
}

.option-card:hover {
	background: rgba(168, 85, 247, 0.12);
	border-color: rgba(168, 85, 247, 0.5);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -5px rgba(168, 85, 247, 0.25);
}

.option-card.selected {
	background: rgba(168, 85, 247, 0.22);
	border-color: var(--neon-purple);
	box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.option-emoji {
	font-size: 1.75rem;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.option-card:hover .option-emoji {
	transform: scale(1.2) rotate(6deg);
}

.option-label {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* AI Generating Loader */
.ai-loader-box {
	text-align: center;
	padding: 3.5rem 1.5rem;
	background: var(--gradient-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-neon);
	box-shadow: var(--shadow-glow);
}

.ai-pulse-ring {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	margin: 0 auto 1.75rem;
	animation: pulseSpin 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 30px var(--neon-purple);
}

@keyframes pulseSpin {
	0% { transform: scale(0.95); opacity: 0.8; }
	50% { transform: scale(1.1); opacity: 1; }
	100% { transform: scale(0.95); opacity: 0.8; }
}

.ai-loading-text {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.ai-loading-sub {
	color: var(--fg-muted);
	font-size: 0.9rem;
}

/* Result Card */
.result-card {
	background: var(--gradient-card);
	border: 1px solid rgba(168, 85, 247, 0.4);
	border-radius: var(--radius-lg);
	padding: 2.25rem 1.85rem;
	box-shadow: var(--shadow-glow), var(--shadow-card);
	position: relative;
	overflow: hidden;
	margin-bottom: 2rem;
	animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}

.result-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.result-header-badges {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.result-tag {
	background: rgba(168, 85, 247, 0.15);
	border: 1px solid rgba(168, 85, 247, 0.4);
	color: #d8b4fe;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 0.3rem 0.85rem;
	border-radius: var(--radius-pill);
}

.dopamine-meter {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8125rem;
	color: var(--fg-muted);
	font-weight: 600;
}

.fire-icon {
	color: #f97316;
}

.result-title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4.5vw, 2.25rem);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.025em;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.result-tagline {
	color: var(--neon-cyan);
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
}

.result-description {
	color: #e2e8f0;
	font-size: 1.05rem;
	line-height: 1.65;
	margin-bottom: 1.75rem;
	background: rgba(255, 255, 255, 0.03);
	border-left: 3px solid var(--neon-purple);
	padding: 0.85rem 1rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Steps Breakdown */
.steps-list {
	margin-bottom: 1.5rem;
	display: grid;
	gap: 0.65rem;
}

.step-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.95rem;
	color: var(--fg-muted);
}

.step-num {
	width: 1.5rem;
	height: 1.5rem;
	background: rgba(168, 85, 247, 0.25);
	color: #e9d5ff;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

/* Pro Tip */
.protip-box {
	background: rgba(6, 182, 212, 0.08);
	border: 1px dashed rgba(6, 182, 212, 0.35);
	border-radius: var(--radius-md);
	padding: 0.85rem 1.1rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: #a5f3fc;
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}

/* Action Buttons Bar */
.action-buttons-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr));
	gap: 0.75rem;
}

.btn-action {
	padding: 0.75rem 1rem;
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.btn-action-primary {
	background: rgba(168, 85, 247, 0.25);
	border-color: var(--neon-purple);
	color: #f3e8ff;
}

.btn-action-primary:hover {
	background: var(--neon-purple);
	color: #fff;
	box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
	transform: translateY(-2px);
}

.btn-action-secondary {
	background: rgba(255, 255, 255, 0.05);
	border-color: var(--border-glass);
	color: var(--fg-main);
}

.btn-action-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.btn-action-viral {
	background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
	color: #fff;
	grid-column: 1 / -1;
	font-size: 1.05rem;
	padding: 0.95rem 1.25rem;
	box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.btn-action-viral:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

.btn-complete-task {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.4);
	color: #a7f3d0;
	margin-top: 0.75rem;
	width: 100%;
	padding: 0.75rem;
	border-radius: var(--radius-md);
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.2s ease;
}

.btn-complete-task:hover {
	background: var(--neon-emerald);
	color: #062817;
}

/* Mini Quest Card */
.mini-quest-card {
	background: linear-gradient(180deg, rgba(20, 24, 38, 0.8) 0%, rgba(12, 14, 23, 0.9) 100%);
	border: 1px solid rgba(6, 182, 212, 0.3);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.4rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
	position: relative;
}

.mini-quest-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.mini-quest-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(6, 182, 212, 0.15);
	color: #67e8f9;
	font-size: 0.8rem;
	font-weight: 800;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-pill);
	text-transform: uppercase;
}

.mini-quest-title {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 0.4rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mini-quest-desc {
	color: var(--fg-muted);
	font-size: 0.95rem;
	margin-bottom: 1.1rem;
}

/* Social Proof Live Activity Stream */
.social-proof-strip {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	padding: 0.85rem 1.25rem;
	margin-bottom: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.live-user-event {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.875rem;
	color: #cbd5e1;
}

/* How It Works & Why Use Sections */
.info-section {
	margin-bottom: 4rem;
}

.section-title-wrap {
	text-align: center;
	margin-bottom: 2rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4vw, 2.1rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.section-subtitle {
	color: var(--fg-muted);
	font-size: 0.95rem;
}

.steps-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(10.5rem, 100%), 1fr));
	gap: 1rem;
}

.step-card-visual {
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	padding: 1.35rem 1.1rem;
	text-align: center;
	transition: transform 0.2s ease, border-color 0.2s ease;
	position: relative;
}

.step-card-visual:hover {
	transform: translateY(-4px);
	border-color: rgba(168, 85, 247, 0.5);
}

.step-number-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gradient-primary);
	color: #fff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon-large {
	font-size: 2rem;
	margin-bottom: 0.75rem;
	margin-top: 0.25rem;
}

.step-title {
	font-weight: 800;
	font-size: 1rem;
	margin-bottom: 0.35rem;
}

.step-text {
	color: var(--fg-muted);
	font-size: 0.825rem;
}

/* Features Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(13.5rem, 100%), 1fr));
	gap: 1rem;
}

.benefit-card {
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
}

.benefit-icon {
	font-size: 1.6rem;
	background: rgba(255, 255, 255, 0.04);
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-title {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
	color: #fff;
}

.benefit-desc {
	color: var(--fg-muted);
	font-size: 0.825rem;
}

/* Viral Challenge Modal & Story Card */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	animation: fadeIn 0.25s ease-out;
}

.modal-content {
	background: #11131c;
	border: 1px solid rgba(168, 85, 247, 0.5);
	border-radius: var(--radius-lg);
	max-width: 26rem;
	width: 100%;
	padding: 1.75rem;
	box-shadow: 0 0 50px rgba(168, 85, 247, 0.35);
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.2s;
}

.close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Instagram / TikTok Shareable Story Card */
.story-card-preview {
	background: linear-gradient(145deg, #1e1136 0%, #0c1429 50%, #0d0f18 100%);
	border: 2px solid var(--neon-purple);
	border-radius: var(--radius-md);
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(168, 85, 247, 0.25);
	margin: 1.25rem 0;
	position: relative;
	overflow: hidden;
}

.story-card-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #ec4899, #8b5cf6, #06b6d4);
}

.story-badge {
	display: inline-block;
	background: #ec4899;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-pill);
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
}

.story-task-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 0.75rem;
	line-height: 1.25;
}

.story-subtitle {
	color: #a5f3fc;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.story-footer-brand {
	border-top: 1px dashed rgba(255, 255, 255, 0.15);
	padding-top: 0.85rem;
	font-size: 0.8rem;
	color: var(--fg-muted);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.story-brand-name {
	color: #fff;
	font-weight: 800;
}

/* Toast Notifications */
.toast-container {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	pointer-events: none;
}

.toast {
	background: #1e2235;
	color: #fff;
	border: 1px solid var(--neon-purple);
	border-radius: var(--radius-md);
	padding: 0.75rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 600;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
	animation: slideInRight 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
	pointer-events: auto;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

@keyframes slideInRight {
	from { transform: translateX(100%); opacity: 0; }
	to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.app-footer {
	border-top: 1px solid var(--border-glass);
	background: rgba(10, 11, 16, 0.9);
	padding: 3rem 1.25rem 2rem;
}

.footer-container {
	max-width: 48rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
}

.footer-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	list-style: none;
}

.footer-link-btn {
	background: none;
	border: none;
	color: var(--fg-muted);
	font-size: 0.875rem;
	cursor: pointer;
	transition: color 0.2s ease;
	text-decoration: none;
}

.footer-link-btn:hover {
	color: var(--fg-main);
}

.social-pills {
	display: flex;
	gap: 0.75rem;
}

.social-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-glass);
	padding: 0.45rem 1rem;
	border-radius: var(--radius-pill);
	font-size: 0.825rem;
	font-weight: 700;
	color: var(--fg-main);
	text-decoration: none;
	transition: all 0.2s ease;
}

.social-pill:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.footer-copy {
	font-size: 0.8rem;
	color: var(--fg-dim);
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.shell {
		padding: 1.5rem 1rem 4rem;
	}
	.wizard-box {
		padding: 1.5rem 1rem;
	}
	.result-card {
		padding: 1.5rem 1.15rem;
	}
	.btn-hero {
		width: 100%;
		justify-content: center;
		font-size: 1.1rem;
		padding: 1rem 1.5rem;
	}
	.action-buttons-grid {
		grid-template-columns: 1fr;
	}
}
