:root {
	/* --accent: #ff385c;
	--bg: #201652;
	--card-bg: #fff;
	--text: #222;
	--muted: #717171;
	--radius: 1rem; */
}
/* body {
	margin: 0;
	background: var(--bg);
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
} */
.progress-bar {
	position: fixed;
	top: 100; left: 500;
	height: 4px;
	width: 0%;
	background: var(--accent);
	transition: width .25s ease-out;
}
.create-page {
	display: none;
	min-height: 100vh;
	padding: 4rem 1.5rem;
	/* display: flex; */
	align-items: center;
	justify-content: center;
}
.create-page.active {
	display: flex;
}
.hero {
	background: var(--surface);
	color: var(--text);
	padding: 4rem 2.5rem;
	border-radius: 1.2rem;
	/* max-width: 620px; */
	text-align: center;
	box-shadow: var(--shadow);
}
.hero h1 { margin-bottom: .5rem; }
.hero p { color: var(--text) }
.btn {
	border: none;
	border-radius: 9999px;
	padding: .9rem 2rem;
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
}
.btn-primary { background: #fff; color: #d70466; }
.btn-secondary { background: #ececec; }
.form-card {
	background: var(--surface);
	padding: 2.6rem 2.3rem;
	border-radius: 1rem;
	box-shadow: 0 6px 32px rgba(15,23,42,.05);
	max-width: 640px;
	width: 100%;
}
h2 { margin-top: 0; }
.options { display: grid; gap: .8rem; margin-top: 1rem; }
.option {
	border: 1px solid #ddd;
	border-radius: .8rem;
	padding: .8rem 1rem;
	cursor: pointer;
	transition: .15s;
}
.option.selected {
	border-color: var(--border-color);
	background: var(--accent);
}
input.bayoula, textarea.bayoula {
	width: 100%;
	border-radius: .6rem;
	border: var(--border);
	padding: .65rem .7rem;
	margin-bottom: .85rem;
	font-size: .9rem;
}
textarea.bayoula { resize: vertical; min-height: 90px; }
.nav-buttons { display: flex; justify-content: space-between; margin-top: 1.4rem; }
.photo-upload {
	border: 2px dashed #ddd;
	border-radius: .8rem;
	padding: 2rem;
	text-align: center;
	color: var(--muted);
}

.preview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.preview .thumb {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
	border: var(--border);
	box-shadow: var(--shadow);
}

.preview img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* crop and fill to the box */
	display: block;
}

.preview .remove {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}

.summary {
	background: var(--primary);
	border-radius: .8rem;
	padding: 1rem 1.1rem;
	line-height: 1.5;
	font-size: .9rem;
}
.ai-box {
	background: var(--primary);
	border: 1px solid rgba(255,56,92,.15);
	border-radius: .8rem;
	padding: 1rem 1.1rem;
	margin-top: 1rem;
}
.ai-box h3 { margin-top: 0; margin-bottom: .4rem; }
