/* Homepage sections. */

/* Hero */
.hero {
	position: relative;
	min-height: 600px;
	background: repeating-linear-gradient(135deg, #211e15 0 12px, #26231a 12px 24px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(23,21,15,.35), rgba(23,21,15,.88));
}
.hero-media-note {
	position: absolute;
	top: 24px;
	left: 56px;
	font: 500 12px ui-monospace, Menlo, monospace;
	color: #5c5744;
	letter-spacing: .08em;
}
.hero-inner { position: relative; text-align: center; max-width: 780px; padding: 60px 40px; }
.hero-inner h1 {
	font-weight: 700;
	font-size: 62px;
	line-height: 1.04;
	letter-spacing: -.02em;
	margin: 0 0 24px;
	text-wrap: balance;
}
.hero-inner > p { font-size: 18px; line-height: 1.6; color: var(--soft); margin: 0 auto 36px; max-width: 520px; }
.hero-inner .kicker { margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Trust bar */
.trust-bar {
	display: flex;
	gap: 44px;
	padding: 20px 56px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	color: var(--muted);
	justify-content: center;
	flex-wrap: wrap;
}
.trust-bar .dot { color: var(--line-3); }
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-icon { width: 17px; height: 17px; color: var(--acc); flex: none; }

/* Photo -> string art comparison */
.compare {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
	padding: 72px 56px;
}
.compare-tile { aspect-ratio: 1/1; border-radius: 8px; }
.compare-label { text-align: center; font-size: 14px; margin-top: 12px; color: var(--muted); }
.compare-label--acc { color: var(--acc); }
.compare-arrow {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: var(--acc);
	color: #17150f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
}

/* How it works */
.how-it-works { padding: 20px 56px 80px; }
.how-it-works .section-title { margin-bottom: 50px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.step-card { border-radius: 16px; padding: 34px; }
.step-card h3 { font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }
.step-num {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--acc);
	color: #17150f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 22px;
}

/* Upload CTA panel */
.upload-cta-wrap { padding: 0 56px 80px; }
.upload-cta {
	border-radius: 24px;
	padding: 52px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.upload-cta-glow {
	position: absolute;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	background: var(--acc);
	opacity: .06;
	top: -80px;
	right: -40px;
}
.upload-cta .kicker { letter-spacing: .1em; margin-bottom: 18px; }
.upload-cta h2 { font-weight: 700; font-size: 38px; margin: 0 0 12px; }
.upload-cta > p { font-size: 16px; color: var(--muted); margin: 0 auto 30px; max-width: 480px; }
.upload-cta .dropzone { max-width: 560px; margin: 0 auto; }

/* Collection */
.collection { padding: 0 56px 80px; }
.collection-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.collection-tile { border-radius: 10px; min-height: 251px; align-items: flex-end; }
.collection-tile--tall { grid-row: span 2; min-height: 520px; }

/* Commissions band */
.comm-band-wrap { padding: 0 56px 90px; }
.comm-band {
	border-radius: 28px;
	padding: 56px;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 44px;
	align-items: center;
}
.comm-band .kicker { letter-spacing: .1em; }
.comm-band h2 { font-weight: 700; font-size: 38px; line-height: 1.1; margin: 0 0 16px; }
.comm-band p { font-size: 17px; line-height: 1.65; color: var(--soft); margin: 0 0 26px; max-width: 420px; }
.comm-band-tile { aspect-ratio: 5/4; border-radius: 18px; }

@media (max-width: 900px) {
	.hero-inner h1 { font-size: 40px; }
	.hero-media-note { left: 24px; }
	/* Trust bar: compact 2x2 grid instead of sparse stacked lines */
	.trust-bar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px 10px;
		padding: 20px 24px;
		font-size: 13px;
		text-align: center;
		align-items: center;
	}
	.trust-bar .dot { display: none; }
	.trust-item { justify-content: flex-start; text-align: left; }
	.compare { padding: 48px 24px; gap: 14px; }
	.how-it-works, .upload-cta-wrap, .collection, .comm-band-wrap { padding-inline: 24px; }
	.steps-grid, .collection-grid, .comm-band { grid-template-columns: 1fr; }
	.collection-tile--tall { grid-row: auto; min-height: 300px; }
	.upload-cta, .comm-band { padding: 28px; }
}
