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

:root {
	--accent: #1a1a2e;
	--text: #1a1a1a;
	--muted: #666;
	--bg: #f7f7f7;
	--white: #ffffff;
	--radius: 12px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
}

/* ── Showcase section ────────────────────────────────────── */
.si-showcase {
	background: var(--accent);
	padding: 56px 24px 48px;
}

.si-showcase__top {
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

/* ── Sticker stage ───────────────────────────────────────── */
.si-sticker-stage {
	/* Circular white "stage" to make the sticker pop */
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	width: 280px;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.si-sticker-img {
	max-width: 220px;
	max-height: 220px;
	width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
	transform: rotate(-3deg);
	transition: transform 0.3s ease;
}

.si-sticker-img:hover {
	transform: rotate(0deg) scale(1.04);
}

/* ── Showcase text ───────────────────────────────────────── */
.si-showcase__text {
	text-align: center;
	color: #fff;
}

.si-headline {
	font-size: clamp(1.8rem, 6vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin-bottom: 16px;
}

.si-price-tag {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}

.si-price-amount {
	font-size: 1.8rem;
	font-weight: 800;
}

.si-price-incl {
	font-size: 0.85rem;
	opacity: 0.65;
}

/* ── Hero tier list ──────────────────────────────────────── */
.si-hero-tiers {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.si-hero-tier {
	display: flex;
	align-items: baseline;
	gap: 8px;
	background: rgba(255,255,255,0.12);
	border-radius: 7px;
	padding: 8px 14px;
}

.si-hero-tier__qty   { font-weight: 700; font-size: 0.95rem; flex: 1; }
.si-hero-tier__price { font-weight: 800; font-size: 1.1rem; }
.si-hero-tier__unit  { font-size: 12px; opacity: 0.65; }

.si-hero-tiers__note {
	font-size: 12px;
	opacity: 0.55;
	margin-top: 4px;
}

/* ── On wider screens: side by side ─────────────────────── */
@media (min-width: 600px) {
	.si-showcase__top {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}

	.si-sticker-stage {
		width: 320px;
		height: 320px;
		flex-shrink: 0;
	}

	.si-sticker-img {
		max-width: 260px;
		max-height: 260px;
	}

	.si-showcase__text {
		text-align: left;
	}

	.si-price-tag {
		justify-content: flex-start;
	}
}

/* ── Main content area ───────────────────────────────────── */
.si-content {
	max-width: 560px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

/* ── Description ─────────────────────────────────────────── */
.si-description {
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 36px;
}

.si-description p { margin-bottom: 12px; }

/* ── Traction / progress ─────────────────────────────────── */
.si-traction {
	margin-bottom: 32px;
}

.si-traction__count {
	font-size: 0.95rem;
	color: var(--muted);
	margin-bottom: 10px;
}

.si-traction__count strong {
	font-size: 1.2rem;
	color: var(--text);
}

.si-progress {
	background: #e0e0e0;
	border-radius: 999px;
	height: 8px;
	overflow: hidden;
	margin-bottom: 8px;
}

.si-progress__bar {
	background: var(--accent);
	height: 100%;
	border-radius: 999px;
	transition: width 0.5s ease;
}

.si-progress__label {
	font-size: 12px;
	color: var(--muted);
}

/* ── Interest form ───────────────────────────────────────── */
.si-form {
	background: var(--white);
	border: 1px solid #e0e0e0;
	border-radius: var(--radius);
	padding: 28px;
}

.si-form__heading {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.si-form__sub {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 22px;
}

.si-field {
	margin-bottom: 16px;
}

.si-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
}

.si-opt { font-weight: 400; color: var(--muted); }
.si-req { color: #e53e3e; }

.si-field input {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	color: var(--text);
	transition: border-color 0.15s;
}

.si-field input:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.si-btn {
	display: block;
	width: 100%;
	padding: 14px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	letter-spacing: 0.01em;
	transition: opacity 0.15s, transform 0.1s;
}

.si-btn:hover    { opacity: 0.88; }
.si-btn:active   { transform: scale(0.99); }
.si-btn:disabled { opacity: 0.5; cursor: default; }

/* ── Form messages ───────────────────────────────────────── */
.si-message {
	margin-top: 16px;
	padding: 14px;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}

.si-message--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.si-message--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Notice cards (ordering/printing/shipped/draft) ──────── */
.si-notice {
	background: var(--white);
	border: 1px solid #e0e0e0;
	border-radius: var(--radius);
	padding: 32px 28px;
	text-align: center;
}

.si-notice__icon {
	font-size: 40px;
	margin-bottom: 14px;
}

.si-notice h2 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.si-notice p {
	color: var(--muted);
	font-size: 0.95rem;
}

.si-notice--open {
	border-color: var(--accent);
	border-width: 2px;
}

.si-notice__deadline {
	margin-top: 12px;
	font-size: 1rem;
}

/* ── Interest form tier cards ────────────────────────────── */
.si-interest-tiers {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 4px;
}

.si-interest-tiers .si-tier {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}

.si-interest-tiers .si-tier input[type="radio"] {
	accent-color: var(--accent);
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	cursor: pointer;
}

.si-interest-tiers .si-tier--selected {
	border-color: var(--accent);
	background: color-mix(in srgb, var(--accent) 5%, white);
}

.si-interest-tiers .si-tier:hover:not(.si-tier--selected) { border-color: #bbb; }

.si-interest-tiers .si-tier__qty   { font-weight: 700; flex: 1; font-size: 0.95rem; }
.si-interest-tiers .si-tier__price { font-weight: 800; color: var(--accent); font-size: 1rem; }

/* ── Plain quantity stepper (no tiers) ───────────────────── */
.si-stepper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.si-stepper__btn {
	width: 36px;
	height: 36px;
	border: 1.5px solid #ddd;
	border-radius: 7px;
	background: #fff;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.15s;
	color: var(--text);
}

.si-stepper__btn:hover  { border-color: var(--accent); }
.si-stepper__val        { font-size: 1.1rem; font-weight: 700; min-width: 24px; text-align: center; }

/* ── Dual contact fields (email + phone) ─────────────────── */
.si-contact-fields {
	margin-bottom: 16px;
}

.si-contact-fields .si-field {
	margin-bottom: 0;
}

.si-contact-or {
	text-align: center;
	font-size: 13px;
	color: var(--muted);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 8px 0;
	position: relative;
}

.si-contact-or::before,
.si-contact-or::after {
	content: '';
	position: absolute;
	top: 50%;
	width: calc(50% - 36px);
	height: 1px;
	background: #e0e0e0;
}

.si-contact-or::before { left: 0; }
.si-contact-or::after  { right: 0; }

.si-contact-note {
	font-size: 12px;
	color: var(--muted);
	margin-top: 10px;
}

/* ── Footer ──────────────────────────────────────────────── */
.si-footer {
	text-align: center;
	padding: 32px 20px 48px;
	font-size: 12px;
	color: #bbb;
}
