.lsq-app {
	--lsq-ink: #1b1b18;
	--lsq-cream: #f6f2ec;
	--lsq-line: #d9d2c6;
	--lsq-accent: #a9714a;
	--lsq-accent-soft: #c99a6f;
	--lsq-muted: #7a746a;
	--lsq-serif: "Fraunces", Georgia, "Times New Roman", serif;
	--lsq-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--lsq-ease: cubic-bezier(.22,.85,.34,1);
	font-family: var(--lsq-sans);
	color: var(--lsq-ink);
	background: var(--lsq-cream);
	max-width: 720px;
	margin: 0 auto;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,.08);
	position: relative;
}

.lsq-app * { box-sizing: border-box; }

.lsq-screen {
	padding: 60px 34px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	animation: lsqFadeIn .6s var(--lsq-ease) both;
}

@keyframes lsqFadeIn {
	from { opacity: 0; transform: translateY(22px) scale(.99); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lsqFadeOut {
	from { opacity: 1; transform: translateY(0) scale(1); }
	to   { opacity: 0; transform: translateY(-16px) scale(.99); }
}
.lsq-screen.lsq-leaving { animation: lsqFadeOut .26s var(--lsq-ease) both; }

.lsq-eyebrow {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--lsq-accent);
	margin: 0 0 16px;
	font-weight: 600;
	opacity: 0;
	animation: lsqRise .55s var(--lsq-ease) .05s both;
}
.lsq-headline {
	font-family: var(--lsq-serif);
	font-size: 38px;
	line-height: 1.12;
	font-weight: 600;
	margin: 0 0 18px;
	letter-spacing: -.01em;
	opacity: 0;
	animation: lsqRise .6s var(--lsq-ease) .12s both;
}
@keyframes lsqRise {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}
.lsq-sub {
	font-size: 17px;
	line-height: 1.5;
	color: var(--lsq-ink);
	margin: 0 0 8px;
	opacity: 0;
	animation: lsqRise .6s var(--lsq-ease) .2s both;
}
.lsq-copy {
	font-size: 15px;
	line-height: 1.6;
	color: var(--lsq-muted);
	margin: 0 0 26px;
	opacity: 0;
	animation: lsqRise .6s var(--lsq-ease) .28s both;
}
.lsq-micro {
	font-size: 12px;
	color: var(--lsq-muted);
	margin-top: 12px;
}

.lsq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--lsq-ink);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 16px 30px;
	font-size: 14px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease;
	text-decoration: none;
}
.lsq-btn:hover { transform: translateY(-2px); background: var(--lsq-accent); }
.lsq-btn.lsq-btn-outline {
	background: transparent;
	color: var(--lsq-ink);
	border: 1px solid var(--lsq-ink);
}
.lsq-btn.lsq-btn-outline:hover { background: var(--lsq-ink); color: #fff; }
.lsq-btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Hero sofa strip */
.lsq-hero-strip {
	display: flex;
	gap: 8px;
	margin: 6px 0 30px;
	overflow: hidden;
	border-radius: 12px;
	opacity: 0;
	animation: lsqRise .7s var(--lsq-ease) .34s both;
}
.lsq-hero-strip div {
	flex: 1;
	height: 104px;
	background: linear-gradient(135deg, #e7ddce, #cbb99f);
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: transform .35s var(--lsq-ease);
	opacity: 0;
	animation: lsqTileIn .5s var(--lsq-ease) both;
}
.lsq-hero-strip div::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.18) 100%);
}
.lsq-hero-strip div:hover { transform: translateY(-4px); }
.lsq-hero-strip div:nth-child(1) { animation-delay: .38s; }
.lsq-hero-strip div:nth-child(2) { animation-delay: .44s; }
.lsq-hero-strip div:nth-child(3) { animation-delay: .50s; }
.lsq-hero-strip div:nth-child(4) { animation-delay: .56s; }
.lsq-hero-strip div:nth-child(5) { animation-delay: .62s; }
.lsq-hero-strip div:nth-child(6) { animation-delay: .68s; }
@keyframes lsqTileIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Progress */
.lsq-progress-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 30px;
}
.lsq-progress-count {
	font-size: 13px;
	font-weight: 600;
	color: var(--lsq-muted);
	white-space: nowrap;
}
.lsq-progress-bar {
	flex: 1;
	height: 4px;
	background: var(--lsq-line);
	border-radius: 4px;
	overflow: hidden;
}
.lsq-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--lsq-accent-soft), var(--lsq-accent));
	border-radius: 4px;
	transition: width .5s var(--lsq-ease);
}

.lsq-question-text {
	font-family: var(--lsq-serif);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 26px;
	opacity: 0;
	animation: lsqRise .5s var(--lsq-ease) .08s both;
}
.lsq-options { display: flex; flex-direction: column; gap: 10px; }
.lsq-option {
	position: relative;
	text-align: left;
	background: #fff;
	border: 1px solid var(--lsq-line);
	border-radius: 14px;
	padding: 16px 46px 16px 18px;
	font-size: 15px;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color .18s var(--lsq-ease), transform .18s var(--lsq-ease), background .25s var(--lsq-ease), color .25s var(--lsq-ease);
	opacity: 0;
	animation: lsqRise .45s var(--lsq-ease) both;
}
.lsq-options .lsq-option:nth-child(1) { animation-delay: .12s; }
.lsq-options .lsq-option:nth-child(2) { animation-delay: .17s; }
.lsq-options .lsq-option:nth-child(3) { animation-delay: .22s; }
.lsq-options .lsq-option:nth-child(4) { animation-delay: .27s; }
.lsq-options .lsq-option:nth-child(5) { animation-delay: .32s; }
.lsq-options .lsq-option:nth-child(6) { animation-delay: .37s; }
.lsq-option:hover { border-color: var(--lsq-accent); transform: translateX(3px); }
.lsq-option.lsq-locked:not(.lsq-selected) { opacity: .45; pointer-events: none; }
.lsq-option.lsq-locked:hover { transform: none; }
.lsq-option.lsq-selected {
	background: var(--lsq-ink);
	border-color: var(--lsq-ink);
	color: #fff;
	transform: scale(.98);
}
.lsq-option.lsq-selected::after {
	content: "\2713";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%) scale(0);
	font-size: 14px;
	animation: lsqCheckIn .3s var(--lsq-ease) .05s forwards;
}
@keyframes lsqCheckIn {
	to { transform: translateY(-50%) scale(1); }
}

/* Analyzing */
.lsq-analyzing { text-align: center; }
.lsq-analyzing .lsq-headline { font-size: 30px; }
.lsq-loading-line {
	font-size: 15px;
	color: var(--lsq-muted);
	margin-top: 22px;
	min-height: 22px;
	opacity: 1;
	transition: opacity .25s ease;
}
.lsq-loading-line.lsq-line-fade { opacity: 0; }
.lsq-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 22px auto 0;
}
.lsq-dots span {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--lsq-accent);
	animation: lsqDotPulse 1.1s ease-in-out infinite;
}
.lsq-dots span:nth-child(2) { animation-delay: .15s; }
.lsq-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes lsqDotPulse {
	0%, 80%, 100% { transform: scale(.6); opacity: .4; }
	40% { transform: scale(1); opacity: 1; }
}

/* Character / Sofa reveal */
.lsq-reveal { text-align: center; }
.lsq-reveal .lsq-headline { font-size: 30px; }
.lsq-sofa-name {
	font-family: var(--lsq-serif);
	font-size: 50px;
	font-weight: 700;
	font-style: italic;
	letter-spacing: .01em;
	margin: 8px 0 4px;
}
.lsq-sofa-title {
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--lsq-accent);
	margin-bottom: 22px;
}
.lsq-sofa-image {
	width: 100%;
	max-height: 320px;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 22px;
	background: linear-gradient(135deg, #e7ddce, #cbb99f);
	opacity: 0;
	animation: lsqImageIn .7s var(--lsq-ease) .1s both;
}
@keyframes lsqImageIn {
	from { opacity: 0; transform: translateY(18px) scale(1.02); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Name-reveal climax screen */
.lsq-climax { text-align: center; padding: 40px 0; }
.lsq-climax .lsq-climax-lead {
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--lsq-muted);
	margin-bottom: 18px;
	opacity: 0;
	animation: lsqRise .5s var(--lsq-ease) .05s both;
}
.lsq-climax .lsq-climax-archetype {
	font-family: var(--lsq-serif);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 26px;
	opacity: 0;
	animation: lsqRise .55s var(--lsq-ease) .35s both;
}
.lsq-climax .lsq-climax-name {
	font-family: var(--lsq-serif);
	font-style: italic;
	font-weight: 700;
	font-size: 64px;
	letter-spacing: .01em;
	opacity: 0;
	transform: scale(.75);
	animation: lsqNameReveal .8s cubic-bezier(.2,.9,.25,1.3) .9s both;
}
@keyframes lsqNameReveal {
	0%   { opacity: 0; transform: scale(.7); letter-spacing: -.03em; }
	60%  { opacity: 1; transform: scale(1.06); }
	100% { opacity: 1; transform: scale(1); letter-spacing: .01em; }
}
.lsq-mix-bar {
	display: flex;
	height: 10px;
	border-radius: 10px;
	overflow: hidden;
	margin: 18px 0 8px;
	background: var(--lsq-line);
}
.lsq-mix-bar span { height: 100%; }
.lsq-mix-legend { display:flex; justify-content: space-between; font-size: 12px; color: var(--lsq-muted); }

.lsq-product-table {
	text-align: left;
	margin: 18px 0;
	border-top: 1px solid var(--lsq-line);
	padding-top: 18px;
}
.lsq-product-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--lsq-line);
	font-size: 14px;
}
.lsq-product-row strong { color: var(--lsq-muted); font-weight: 600; min-width: 120px; }

/* Share card */
.lsq-share-card {
	background: var(--lsq-ink);
	color: #fff;
	border-radius: 18px;
	padding: 36px 28px;
	text-align: center;
	margin-bottom: 24px;
}
.lsq-share-card .lsq-share-brand { font-size: 12px; letter-spacing: .3em; opacity: .7; margin-bottom: 18px; }
.lsq-share-card .lsq-share-label { font-size: 14px; opacity: .8; }
.lsq-share-card .lsq-share-title { font-size: 30px; font-weight: 800; margin: 6px 0 4px; }
.lsq-share-card .lsq-share-sofa { font-size: 16px; opacity: .85; margin-bottom: 18px; }
.lsq-share-card .lsq-share-question { font-size: 13px; opacity: .7; margin-top: 18px; }
.lsq-share-card .lsq-share-url { font-size: 12px; opacity: .55; margin-top: 6px; }

/* Lead capture */
.lsq-input {
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--lsq-line);
	border-radius: 12px;
	font-size: 15px;
	margin-bottom: 14px;
	background: #fff;
	color: var(--lsq-ink);
}

.lsq-secondary-link {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	color: var(--lsq-muted);
	text-decoration: underline;
	cursor: pointer;
	background: none;
	border: none;
}

@media (max-width: 640px) {
	.lsq-app { border-radius: 0; max-width: 100%; }
	.lsq-screen { padding: 36px 20px; min-height: 100vh; }
	.lsq-headline { font-size: 26px; }
	.lsq-question-text { font-size: 20px; }
	.lsq-sofa-name { font-size: 36px; }
}
