:root {
	--paper: #f3eee3;
	--paper-light: #faf7ef;
	--paper-deep: #e8dfcf;
	--ink: #1f2925;
	--muted: #646c68;
	--line: #cfc6b6;
	--jade: #245e50;
	--jade-dark: #173f36;
	--jade-soft: #d7e2dc;
	--sun: #d9a33e;
	--moon: #d8e0db;
	--clay: #a6523b;
	--wood: #6f9362;
	--fire: #c76445;
	--earth: #b38a55;
	--metal: #a7aaa3;
	--water: #52798a;
	--focus: #b96043;
	--display: "Noto Serif Thai", Georgia, serif;
	--body: "IBM Plex Sans Thai", Tahoma, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.6;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	font: inherit;
}

button:focus-visible,
a:focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 50;
	padding: 10px 14px;
	color: #fff;
	background: var(--jade-dark);
	transform: translateY(-160%);
	transition: transform 180ms ease-out;
}

.skip-link:focus {
	transform: translateY(0);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.paper-texture {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.32;
	background-image:
		url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.74' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

body.is-story-canvas-preview {
	min-width: 0;
	min-height: 100dvh;
	display: grid;
	place-items: start center;
	overflow: auto;
	background: #0f2f29;
}

body.is-story-canvas-preview > :not(#share-canvas):not(script) {
	display: none !important;
}

body.is-story-canvas-preview #share-canvas {
	width: min(100vw, 540px);
	height: auto;
	display: block;
}

.site-header {
	width: min(100% - 32px, 1360px);
	min-height: 82px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--line);
}

.brand {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	color: var(--jade-dark);
	text-decoration: none;
}

.brand__logo {
	width: 184px;
	height: auto;
	display: block;
}

.site-header__meta {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--muted);
	font-size: 10px;
}

.text-button {
	min-height: 44px;
	padding: 8px 2px;
	color: var(--jade-dark);
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	font-size: 12px;
	cursor: pointer;
	transition:
		color 150ms ease-out,
		transform 150ms ease-out;
}

.text-button:hover {
	color: var(--clay);
	transform: translateY(-1px);
}

.text-button--large {
	font-size: 14px;
}

#quiz-app {
	width: min(100% - 32px, 1360px);
	margin: 0 auto;
}

.scene[hidden] {
	display: none;
}

.scene.is-active {
	animation: scene-enter 180ms ease-out both;
}

.eyebrow {
	margin: 0;
	color: var(--jade);
	font-size: 10px;
	font-weight: 600;
}

.scene--intro {
	position: relative;
	min-height: calc(100dvh - 150px);
	padding: clamp(38px, 7vw, 92px) 0 68px;
	display: grid;
	grid-template-columns: minmax(310px, 0.82fr) minmax(480px, 1.18fr);
	gap: clamp(28px, 6vw, 92px);
	align-items: center;
}

.intro-copy {
	position: relative;
	z-index: 4;
}

.intro-copy h1 {
	max-width: 710px;
	margin: 14px 0 0;
	font-family: var(--display);
	font-size: clamp(47px, 6vw, 88px);
	font-weight: 500;
	line-height: 1.18;
	text-wrap: balance;
}

.intro-copy h1 em {
	color: var(--clay);
	font-style: normal;
}

.intro-copy__lead {
	max-width: 520px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: clamp(16px, 1.6vw, 20px);
	font-weight: 300;
	line-height: 1.8;
	text-wrap: pretty;
}

.intro-actions {
	margin-top: 34px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.intro-actions > span {
	color: var(--muted);
	font-size: 11px;
}

.primary-button,
.secondary-button {
	min-height: 52px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	border-radius: 0;
	font-weight: 500;
	cursor: pointer;
	transition:
		transform 150ms ease-out,
		box-shadow 150ms ease-out,
		border-color 150ms ease-out;
}

.primary-button {
	color: #fff;
	border: 1px solid var(--jade);
	background: var(--jade);
	box-shadow: 7px 7px 0 rgba(23, 63, 54, 0.14);
}

.primary-button svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.primary-button:hover,
.secondary-button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 9px 9px 0 rgba(23, 63, 54, 0.14);
}

.primary-button:active,
.secondary-button:active {
	transform: translate(0, 0);
	box-shadow: 3px 3px 0 rgba(23, 63, 54, 0.14);
}

.secondary-button {
	color: var(--jade-dark);
	border: 1px solid var(--jade);
	background: transparent;
	box-shadow: 6px 6px 0 var(--jade-soft);
}

.privacy-note {
	max-width: 480px;
	margin: 26px 0 0;
	color: var(--muted);
	font-size: 10px;
}

.celestial-stage {
	position: relative;
	width: min(100%, 700px);
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	isolation: isolate;
}

.celestial-stage::before {
	content: "";
	position: absolute;
	inset: 13%;
	z-index: -2;
	border: 1px solid rgba(36, 94, 80, 0.18);
	border-radius: 50%;
	background: var(--jade-dark);
	box-shadow: 16px 18px 0 rgba(36, 94, 80, 0.1);
}

.celestial-stage__orbit {
	position: absolute;
	z-index: -1;
	border: 1px solid rgba(232, 223, 207, 0.36);
	border-radius: 50%;
}

.celestial-stage__orbit::before,
.celestial-stage__orbit::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sun);
}

.celestial-stage__orbit--outer {
	inset: 22%;
}

.celestial-stage__orbit--outer::before {
	top: 7%;
	right: 20%;
}

.celestial-stage__orbit--outer::after {
	bottom: 7%;
	left: 20%;
}

.celestial-stage__orbit--inner {
	inset: 34%;
	border-style: dashed;
}

.celestial-stage__orbit--inner::before {
	top: 44%;
	right: -4px;
}

.celestial-stage__orbit--inner::after {
	bottom: 44%;
	left: -4px;
}

.celestial {
	position: absolute;
	z-index: 3;
	width: 34%;
	filter: drop-shadow(0 14px 14px rgba(8, 28, 23, 0.18));
}

.celestial svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

.celestial > span {
	position: absolute;
	padding: 4px 8px;
	color: var(--paper-light);
	border: 1px solid rgba(250, 247, 239, 0.4);
	background: var(--jade-dark);
	font-family: var(--display);
	font-size: 11px;
}

.celestial--sun {
	top: 13%;
	left: 10%;
}

.celestial--sun > span {
	bottom: 5%;
	left: 4%;
}

.celestial--moon {
	right: 8%;
	bottom: 12%;
}

.celestial--moon > span {
	right: 7%;
	bottom: 4%;
}

.sun-rays {
	fill: none;
	stroke: var(--sun);
	stroke-linecap: round;
	stroke-width: 8;
}

.face-line,
.spirit-face,
.spirit-line {
	fill: none;
	stroke: var(--jade-dark);
	stroke-linecap: round;
	stroke-width: 4;
}

.spirit-limb {
	fill: none;
	stroke: var(--jade-dark);
	stroke-linecap: round;
	stroke-width: 5;
}

.spirit-leaf-line {
	fill: none;
	stroke: #527a48;
	stroke-linecap: round;
	stroke-width: 3;
}

.spirit-eye {
	fill: var(--jade-dark);
}

.spirit-eye-shine {
	fill: var(--paper-light);
}

.spirit-cheek {
	fill: #e6a07e;
	opacity: 0.62;
}

.face-line--light,
.spirit-face--light,
.spirit-line--light {
	stroke: var(--paper-light);
}

.spirit-line--soft {
	stroke: rgba(23, 63, 54, 0.3);
	stroke-width: 2;
}

.element-spirit {
	position: absolute;
	z-index: 4;
	width: 13.5%;
}

.element-spirit svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 7px 5px rgba(8, 28, 23, 0.18));
}

.element-spirit > span {
	position: absolute;
	right: -4px;
	bottom: -2px;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	color: var(--jade-dark);
	border: 1px solid var(--jade-dark);
	background: var(--paper-light);
	font-family: var(--display);
	font-size: 13px;
}

.spirit-position--1 {
	top: 4%;
	right: 19%;
}

.spirit-position--2 {
	top: 38%;
	right: 2%;
}

.spirit-position--3 {
	right: 20%;
	bottom: 1%;
}

.spirit-position--4 {
	bottom: 7%;
	left: 15%;
}

.spirit-position--5 {
	top: 38%;
	left: 1%;
}

.celestial-stage__center {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(250, 247, 239, 0.65);
	font-family: var(--display);
	font-size: 11px;
	transform: translate(-50%, -50%) rotate(-18deg);
}

.celestial-stage__center i {
	width: 46px;
	height: 1px;
	background: rgba(250, 247, 239, 0.35);
}

.element-index {
	position: absolute;
	right: 0;
	bottom: 20px;
	left: 0;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	color: var(--muted);
	font-size: 9px;
}

.element-index span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.element-index b {
	color: var(--jade);
	font-family: var(--display);
	font-size: 13px;
	font-weight: 500;
}

.is-visible .celestial--sun {
	animation: float-a 5.8s ease-in-out infinite;
}

.is-visible .celestial--moon {
	animation: float-b 6.6s ease-in-out infinite;
}

.is-visible .element-spirit {
	animation: spirit-breathe 4.8s ease-in-out infinite;
}

.is-visible .element-spirit .spirit-gesture {
	transform-origin: center;
	animation: spirit-hello 3.6s ease-in-out infinite;
}

.is-visible .element-spirit:nth-of-type(2n) {
	animation-delay: -1.7s;
}

.is-visible .element-spirit:nth-of-type(2n) .spirit-gesture {
	animation-delay: -1.2s;
}

.is-visible .celestial-stage__orbit--inner {
	animation: orbit-spin 24s linear infinite;
}

.is-visible .celestial-stage__orbit--outer {
	animation: orbit-spin-reverse 34s linear infinite;
}

.is-animated:not(.is-visible) *,
.is-animated:not(.is-visible)::before,
.is-animated:not(.is-visible)::after {
	animation-play-state: paused !important;
}

/* Quiz */
.scene--quiz {
	min-height: calc(100dvh - 144px);
	padding: 28px 0 64px;
}

.quiz-progress {
	min-height: 74px;
	display: grid;
	grid-template-columns: 150px 1fr 100px;
	align-items: center;
	gap: 24px;
	border-bottom: 1px solid var(--line);
}

.quiz-progress > div:first-child {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.quiz-progress strong {
	color: var(--jade-dark);
	font-family: var(--display);
	font-size: 18px;
	font-variant-numeric: tabular-nums;
}

.moon-progress {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(7px, 1.5vw, 18px);
	list-style: none;
}

.moon-progress li {
	position: relative;
	width: 18px;
	height: 18px;
	border: 1px solid var(--jade);
	border-radius: 50%;
	overflow: hidden;
}

.moon-progress li::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--jade);
	opacity: 0;
	transform: scale(0.4);
	transition:
		opacity 180ms ease-out,
		transform 180ms ease-out;
}

.moon-progress li.is-complete::after,
.moon-progress li.is-current::after {
	opacity: 1;
	transform: scale(1);
}

.moon-progress li.is-current {
	outline: 2px solid var(--sun);
	outline-offset: 3px;
}

.quiz-progress > .text-button {
	justify-self: end;
}

.quiz-layout {
	padding-top: clamp(30px, 6vw, 78px);
	display: grid;
	grid-template-columns: minmax(260px, 0.62fr) minmax(520px, 1.38fr);
	gap: clamp(34px, 7vw, 110px);
	align-items: center;
}

.guide-panel {
	position: relative;
	min-height: 520px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: var(--paper-light);
	background: var(--jade-dark);
}

.guide-panel::after {
	content: "";
	position: absolute;
	inset: 16px;
	border: 1px solid rgba(250, 247, 239, 0.22);
	pointer-events: none;
}

.guide-orbit {
	position: absolute;
	width: 72%;
	aspect-ratio: 1;
	border: 1px solid rgba(250, 247, 239, 0.18);
	border-radius: 50%;
	transform: rotate(24deg);
}

.guide-sun,
.guide-moon {
	position: absolute;
	display: grid;
	place-items: center;
	border-radius: 50%;
}

.guide-sun {
	top: 12%;
	left: 13%;
	width: 114px;
	height: 114px;
	color: var(--jade-dark);
	background: var(--sun);
}

.guide-sun::before {
	content: "";
	position: absolute;
	inset: -13px;
	border: 1px dashed rgba(217, 163, 62, 0.78);
	border-radius: 50%;
}

.guide-sun__face {
	font-family: var(--display);
	font-size: 16px;
}

.guide-moon {
	right: 14%;
	bottom: 18%;
	width: 102px;
	height: 102px;
	color: var(--jade-dark);
	background: var(--moon);
}

.guide-moon::after {
	content: "";
	position: absolute;
	top: -10px;
	right: -16px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--jade-dark);
}

.guide-moon span {
	position: relative;
	z-index: 1;
	transform: translateX(-12px);
}

.guide-copy {
	position: absolute;
	right: 15%;
	bottom: 12%;
	left: 11%;
	z-index: 3;
	max-width: 250px;
	padding: 15px 18px;
	color: var(--ink);
	background: var(--paper-light);
	box-shadow: 7px 7px 0 rgba(216, 224, 219, 0.15);
}

.guide-copy::before {
	content: "";
	position: absolute;
	top: -11px;
	left: 23px;
	border-right: 11px solid transparent;
	border-bottom: 12px solid var(--paper-light);
	border-left: 11px solid transparent;
}

.guide-copy span {
	color: var(--jade);
	font-size: 9px;
	font-weight: 600;
}

.guide-copy p {
	margin: 4px 0 0;
	font-family: var(--display);
	font-size: 14px;
	line-height: 1.55;
	text-wrap: pretty;
}

.guide-symbol {
	position: absolute;
	top: 42%;
	left: 50%;
	z-index: 2;
	color: rgba(250, 247, 239, 0.12);
	font-family: var(--display);
	font-size: 84px;
	white-space: nowrap;
	transform: translate(-50%, -50%) rotate(-12deg);
}

.is-visible .guide-sun {
	animation: float-a 5.8s ease-in-out infinite;
}

.is-visible .guide-moon {
	animation: float-b 6.4s ease-in-out infinite;
}

.is-visible .guide-orbit {
	animation: orbit-spin 28s linear infinite;
}

.question-panel {
	max-width: 760px;
}

.question-panel.is-changing {
	animation: question-change 180ms ease-out both;
}

.question-kicker {
	margin: 0;
	color: var(--clay);
	font-size: 11px;
	font-weight: 600;
}

.question-panel h2 {
	max-width: 730px;
	margin: 12px 0 0;
	font-family: var(--display);
	font-size: clamp(30px, 4vw, 51px);
	font-weight: 500;
	line-height: 1.35;
	text-wrap: balance;
}

.question-panel h2:focus,
.result-content h1:focus {
	outline: none;
}

.question-hint {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.answer-list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.answer-option {
	position: relative;
	min-height: 74px;
	padding: 14px 50px 14px 16px;
	display: flex;
	align-items: center;
	color: var(--ink);
	border: 1px solid var(--line);
	background: rgba(250, 247, 239, 0.5);
	text-align: left;
	cursor: pointer;
	transition:
		transform 150ms ease-out,
		border-color 150ms ease-out,
		background-color 150ms ease-out,
		box-shadow 150ms ease-out;
}

.answer-option::after {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	right: 15px;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 50%;
	font-family: var(--display);
	font-size: 10px;
	transform: translateY(-50%);
}

.answer-option:hover {
	border-color: var(--jade);
	background: var(--paper-light);
	box-shadow: 5px 5px 0 var(--jade-soft);
	transform: translate(-2px, -2px);
}

.answer-option.is-selected {
	color: #fff;
	border-color: var(--jade);
	background: var(--jade);
	box-shadow: 5px 5px 0 rgba(23, 63, 54, 0.18);
	transform: translate(-2px, -2px);
}

.answer-option.is-selected::after {
	color: var(--jade-dark);
	border-color: var(--sun);
	background: var(--sun);
}

.answer-error {
	min-height: 22px;
	margin-top: 10px;
	color: #8f3f30;
	font-size: 11px;
}

/* Result */
.scene--result {
	padding: clamp(48px, 7vw, 92px) 0 70px;
}

.result-intro {
	padding-bottom: 26px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--line);
}

.result-intro > p:last-child {
	margin: 0;
	color: var(--muted);
	font-family: var(--display);
	font-size: 14px;
}

.result-layout {
	padding-top: clamp(34px, 6vw, 78px);
	display: grid;
	grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
	gap: clamp(42px, 8vw, 120px);
	align-items: center;
}

.result-art {
	--element-color: var(--wood);
	position: relative;
	aspect-ratio: 1 / 1.1;
	overflow: hidden;
	background: var(--jade-dark);
	box-shadow: 15px 15px 0 rgba(23, 63, 54, 0.12);
}

.result-art[data-element="fire"] {
	--element-color: var(--fire);
}

.result-art[data-element="earth"] {
	--element-color: var(--earth);
}

.result-art[data-element="metal"] {
	--element-color: var(--metal);
}

.result-art[data-element="water"] {
	--element-color: var(--water);
}

.result-art::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(250, 247, 239, 0.22);
	pointer-events: none;
}

.result-art__sun,
.result-art__moon {
	position: absolute;
	border-radius: 50%;
}

.result-art__sun {
	top: 7%;
	right: 10%;
	width: 30%;
	aspect-ratio: 1;
	background: var(--sun);
	box-shadow: 0 0 0 14px rgba(217, 163, 62, 0.08);
}

.result-art__moon {
	bottom: 11%;
	left: 8%;
	width: 24%;
	aspect-ratio: 1;
	background: var(--moon);
}

.result-art__moon::after {
	content: "";
	position: absolute;
	top: -7%;
	left: 32%;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--jade-dark);
}

.result-art__rings {
	position: absolute;
	top: 47%;
	left: 51%;
	width: 67%;
	aspect-ratio: 1;
	border: 1px solid rgba(250, 247, 239, 0.17);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.result-art__rings::before,
.result-art__rings::after {
	content: "";
	position: absolute;
	border: 1px dashed rgba(250, 247, 239, 0.14);
	border-radius: 50%;
}

.result-art__rings::before {
	inset: 13%;
}

.result-art__rings::after {
	inset: 28%;
}

.result-mascot {
	position: absolute;
	top: 52%;
	left: 51%;
	z-index: 2;
	width: auto;
	height: 90%;
	object-fit: contain;
	transform: translate(-50%, -50%);
	filter:
		drop-shadow(0 22px 13px rgba(5, 22, 18, 0.3))
		drop-shadow(0 0 24px rgba(250, 247, 239, 0.14));
}

.result-mascot svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

.result-mascot .mascot-fill {
	fill: var(--element-color);
}

.result-mascot .mascot-light {
	fill: var(--paper-light);
}

.result-mascot .mascot-accent {
	fill: var(--sun);
}

.result-mascot .mascot-line {
	fill: none;
	stroke: var(--jade-dark);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
}

.result-mascot .mascot-line-light {
	fill: none;
	stroke: var(--paper-light);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5;
}

.result-mascot .mascot-eye {
	fill: var(--jade-dark);
}

.result-mascot .mascot-eye-light {
	fill: var(--paper-light);
}

.result-mascot .mascot-eye-shine {
	fill: var(--paper-light);
}

.result-mascot .mascot-eye-water-shine {
	fill: var(--water);
}

.result-mascot .mascot-cheek {
	fill: #eda180;
	opacity: 0.68;
}

.result-art__label {
	position: absolute;
	top: 7%;
	left: 8%;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--paper-light);
}

.result-art__label span {
	font-size: 9px;
}

.result-art__label strong {
	font-family: var(--display);
	font-size: 42px;
	font-weight: 400;
	line-height: 1;
}

.is-visible .result-mascot {
	animation: result-reveal 200ms ease-out both, result-float 6s ease-in-out 200ms infinite;
}

.is-visible .result-art__rings {
	animation: orbit-spin 32s linear infinite;
}

.result-content__overline {
	margin: 0;
	color: var(--jade);
	font-size: 10px;
	font-weight: 600;
}

.result-content h1 {
	margin: 5px 0 0;
	font-family: var(--display);
	font-size: clamp(51px, 7vw, 92px);
	font-weight: 500;
	line-height: 1.15;
}

.result-content h1 em {
	color: var(--clay);
	font-size: 0.66em;
	font-style: normal;
	font-weight: 400;
}

.result-content__archetype {
	margin: 6px 0 0;
	color: var(--jade);
	font-family: var(--display);
	font-size: 21px;
}

.result-content__description {
	max-width: 660px;
	margin: 22px 0 0;
	color: #49524e;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.85;
	text-wrap: pretty;
}

.result-personality {
	margin-top: 26px;
	padding: 22px;
	border: 1px solid rgba(36, 94, 80, 0.16);
	border-radius: 20px;
	background:
		linear-gradient(135deg, rgba(220, 230, 221, 0.52), rgba(250, 247, 239, 0.68)),
		var(--paper-light);
}

.result-personality__motto {
	margin: 0;
	color: var(--jade-dark);
	font-family: var(--display);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.55;
}

.result-personality__traits {
	margin: 15px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.result-personality__traits li {
	padding: 7px 12px;
	color: var(--jade-dark);
	border: 1px solid rgba(36, 94, 80, 0.24);
	border-radius: 999px;
	background: rgba(250, 247, 239, 0.72);
	font-size: 12px;
	font-weight: 600;
}

.result-personality__details {
	margin-top: 18px;
	padding-top: 18px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	border-top: 1px solid rgba(36, 94, 80, 0.15);
}

.result-personality__details div {
	display: grid;
	align-content: start;
	gap: 5px;
}

.result-personality__details span {
	color: var(--clay);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.result-personality__details strong {
	color: #34423d;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.65;
}

.result-secondary {
	margin-top: 28px;
	padding: 14px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.result-secondary > span {
	color: var(--muted);
	font-size: 11px;
}

.result-secondary strong {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 500;
}

.result-secondary i {
	margin-left: 5px;
	color: var(--jade);
	font-style: normal;
}

.result-chemistry {
	margin-top: 30px;
}

.result-chemistry h2 {
	margin: 0;
	font-family: var(--display);
	font-size: 20px;
	font-weight: 500;
}

.result-chemistry__intro {
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 11px;
	font-weight: 300;
	line-height: 1.6;
}

.result-chemistry__grid {
	margin-top: 14px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.relation-card {
	min-height: 205px;
	padding: 18px;
	border-radius: 18px;
}

.relation-card--harmony {
	border: 1px solid rgba(36, 94, 80, 0.2);
	background: rgba(220, 230, 221, 0.64);
}

.relation-card--friction {
	border: 1px solid rgba(199, 100, 69, 0.2);
	background: rgba(242, 223, 214, 0.62);
}

.relation-card > span {
	color: var(--muted);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.relation-card h3 {
	margin: 8px 0 0;
	font-family: var(--display);
	font-size: 19px;
	font-weight: 500;
}

.relation-card h3 b {
	font-weight: 500;
}

.relation-card h3 i {
	margin-left: 5px;
	color: var(--jade);
	font-style: normal;
	font-weight: 500;
}

.relation-card--friction h3 i {
	color: var(--clay);
}

.relation-card__why {
	margin-top: 8px;
	display: block;
	color: var(--jade-dark);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.45;
}

.relation-card--friction .relation-card__why {
	color: #91523e;
}

.relation-card p {
	margin: 9px 0 0;
	color: #4f5955;
	font-size: 12px;
	font-weight: 300;
	line-height: 1.65;
	text-wrap: pretty;
}

.result-chemistry__note {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 10px;
	font-weight: 300;
	line-height: 1.55;
}

.result-care {
	margin-top: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.result-care__eyebrow {
	margin: 0;
	color: var(--clay);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.result-care h2 {
	margin: 7px 0 0;
	font-family: var(--display);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
}

.result-care__intro {
	max-width: 610px;
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 12px;
	font-weight: 300;
	line-height: 1.65;
}

.result-care__grid {
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
}

.result-care__grid li {
	position: relative;
	min-height: 176px;
	padding: 18px 17px 17px;
	overflow: hidden;
	border: 1px solid rgba(36, 94, 80, 0.16);
	border-radius: 16px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.52), transparent 54%),
		rgba(220, 230, 221, 0.46);
}

.result-care__grid li::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--sun), var(--clay));
}

.result-care__grid li > span {
	display: block;
	color: var(--jade);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.result-care__grid li > strong {
	margin-top: 9px;
	display: block;
	color: var(--jade-dark);
	font-family: var(--display);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.result-care__grid li > p {
	margin: 8px 0 0;
	color: #4f5955;
	font-size: 11px;
	font-weight: 300;
	line-height: 1.65;
	text-wrap: pretty;
}

.result-care__note {
	margin: 12px 0 0;
	padding-left: 18px;
	position: relative;
	color: var(--muted);
	font-size: 9px;
	font-weight: 300;
	line-height: 1.6;
}

.result-care__note::before {
	content: "☾";
	position: absolute;
	top: -1px;
	left: 0;
	color: var(--clay);
	font-family: var(--display);
	font-size: 12px;
}

.result-disclaimer {
	margin: 25px 0 0;
	color: var(--muted);
	font-size: 10px;
}

.share-section {
	margin-top: clamp(70px, 10vw, 140px);
	padding: clamp(30px, 5vw, 62px);
	display: grid;
	grid-template-columns: 0.8fr minmax(300px, 0.72fr) 0.6fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	color: var(--paper-light);
	background: var(--jade-dark);
}

.share-section > div:first-child h2 {
	margin: 10px 0 0;
	font-family: var(--display);
	font-size: clamp(29px, 3.5vw, 43px);
	font-weight: 500;
	line-height: 1.45;
	text-wrap: balance;
}

.share-section .eyebrow {
	color: var(--sun);
}

.share-card-preview {
	--card-element: var(--wood);
	position: relative;
	aspect-ratio: 9 / 16;
	padding: 7%;
	overflow: hidden;
	color: var(--jade-dark);
	background:
		radial-gradient(circle at 80% 20%, rgba(126, 169, 111, 0.24), transparent 37%),
		var(--paper-light);
	box-shadow: 13px 13px 0 rgba(0, 0, 0, 0.16);
}

.share-card-preview__rendered {
	position: absolute;
	inset: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	background: var(--paper-light);
}

.share-card-preview__rendered[hidden] {
	display: none;
}

.share-card-preview[data-element="fire"] {
	--card-element: var(--fire);
	background:
		radial-gradient(circle at 80% 20%, rgba(238, 128, 76, 0.28), transparent 38%),
		var(--paper-light);
}

.share-card-preview[data-element="earth"] {
	--card-element: var(--earth);
	background:
		radial-gradient(circle at 80% 20%, rgba(222, 174, 82, 0.25), transparent 38%),
		var(--paper-light);
}

.share-card-preview[data-element="metal"] {
	--card-element: var(--metal);
	background:
		radial-gradient(circle at 80% 20%, rgba(176, 190, 194, 0.3), transparent 38%),
		var(--paper-light);
}

.share-card-preview[data-element="water"] {
	--card-element: var(--water);
	background:
		radial-gradient(circle at 80% 20%, rgba(76, 151, 192, 0.26), transparent 38%),
		var(--paper-light);
}

.share-card-preview::after {
	content: "";
	position: absolute;
	inset: 4%;
	border: 1px solid rgba(23, 63, 54, 0.2);
	pointer-events: none;
}

.share-card-preview__top {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	font-size: 7px;
	font-weight: 600;
}

.share-card-preview__logo {
	width: 46%;
	height: auto;
	display: block;
}

.share-card-preview__celestial i {
	position: absolute;
	border-radius: 50%;
}

.share-card-preview__celestial i:first-child {
	top: 13%;
	right: 9%;
	width: 35%;
	aspect-ratio: 1;
	background: var(--sun);
}

.share-card-preview__celestial i:last-child {
	top: 16%;
	right: 3%;
	width: 34%;
	aspect-ratio: 1;
	background: var(--paper-light);
}

.share-card-preview__character {
	position: absolute;
	top: 13%;
	left: 7%;
	z-index: 1;
	color: var(--card-element);
	font-family: var(--display);
	font-size: clamp(104px, 14vw, 154px);
	font-weight: 500;
	line-height: 1;
}

.share-card-preview__mascot {
	position: absolute;
	top: 5%;
	right: -4%;
	z-index: 2;
	width: 76%;
	height: 45%;
	object-fit: contain;
	filter:
		drop-shadow(0 10px 8px rgba(23, 63, 54, 0.18))
		drop-shadow(0 0 12px rgba(250, 247, 239, 0.7));
	animation: share-mascot-float 5s ease-in-out infinite;
	pointer-events: none;
}

.share-card-preview > p {
	position: relative;
	z-index: 3;
	margin: 72% 0 0;
	color: var(--muted);
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.share-card-preview h3 {
	position: relative;
	z-index: 3;
	margin: 2% 0 0;
	font-family: var(--display);
	font-size: clamp(17px, 2vw, 24px);
	font-weight: 500;
	line-height: 1.35;
}

.share-card-preview__traits {
	position: relative;
	z-index: 3;
	margin: 4% 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
}

.share-card-preview__traits li {
	padding: 3px 7px;
	color: var(--jade-dark);
	border: 1px solid rgba(36, 94, 80, 0.22);
	border-radius: 999px;
	background: rgba(250, 247, 239, 0.84);
	font-size: 7px;
	font-weight: 600;
}

.share-card-preview blockquote {
	position: relative;
	z-index: 3;
	margin: 5% 0 0;
	padding-left: 4%;
	color: #34423d;
	border-left: 2px solid var(--card-element);
	font-family: var(--display);
	font-size: clamp(10px, 1.2vw, 14px);
	font-style: normal;
	font-weight: 500;
	line-height: 1.5;
}

.share-card-preview__chemistry {
	position: relative;
	z-index: 2;
	margin-top: 5%;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
	border: 1px solid rgba(23, 63, 54, 0.14);
	border-radius: 9px;
}

.share-card-preview__chemistry > span {
	padding: 4% 6%;
	display: grid;
	grid-template-columns: 0.72fr 0.55fr 1fr;
	gap: 5px;
	align-items: center;
	background: rgba(220, 230, 221, 0.58);
}

.share-card-preview__chemistry > span:last-child {
	border-top: 1px solid rgba(23, 63, 54, 0.14);
	background: rgba(242, 223, 214, 0.56);
}

.share-card-preview__chemistry small {
	color: var(--muted);
	font-size: 6px;
}

.share-card-preview__chemistry b {
	color: var(--jade-dark);
	font-family: var(--display);
	font-size: clamp(8px, 1vw, 11px);
	font-weight: 500;
}

.share-card-preview__chemistry > span:last-child b {
	color: #91523e;
}

.share-card-preview__chemistry em {
	color: #4f5955;
	font-size: 6px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.35;
}

.share-card-preview__care {
	position: relative;
	z-index: 2;
	margin-top: 5%;
	padding-top: 4%;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px;
	align-items: start;
	border-top: 1px solid var(--line);
}

.share-card-preview__care small {
	padding-top: 1px;
	color: var(--sun);
	font-size: 7px;
	font-weight: 700;
}

.share-card-preview__care b {
	color: var(--jade);
	font-family: var(--display);
	font-size: clamp(8px, 1vw, 10px);
	font-weight: 500;
	line-height: 1.4;
}

.share-card-preview__footer {
	position: absolute;
	right: 7%;
	bottom: 6%;
	left: 7%;
	z-index: 2;
	color: var(--muted);
	font-size: 6px;
}

.share-actions {
	display: grid;
	gap: 12px;
}

.share-format-note {
	margin: 0 0 2px;
	color: rgba(250, 247, 239, 0.68);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-align: center;
	text-transform: uppercase;
}

.share-actions .primary-button {
	border-color: var(--sun);
	background: var(--clay);
	box-shadow: 7px 7px 0 rgba(217, 163, 62, 0.24);
}

.share-actions .secondary-button {
	color: var(--paper-light);
	border-color: rgba(250, 247, 239, 0.48);
	box-shadow: none;
}

.share-actions .text-button {
	justify-self: start;
	color: var(--paper-light);
}

.share-feedback {
	min-height: 20px;
	margin: 0;
	color: var(--moon);
	font-size: 10px;
}

.site-footer {
	width: min(100% - 32px, 1360px);
	min-height: 78px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--muted);
	border-top: 1px solid var(--line);
	font-size: 9px;
}

@keyframes scene-enter {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes question-change {
	from {
		opacity: 0;
		transform: translateX(12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float-a {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}
	50% {
		transform: translateY(-10px) rotate(2deg);
	}
}

@keyframes float-b {
	0%,
	100% {
		transform: translateY(0) rotate(2deg);
	}
	50% {
		transform: translateY(9px) rotate(-2deg);
	}
}

@keyframes spirit-breathe {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-5px) scale(1.025);
	}
}

@keyframes spirit-hello {
	0%,
	78%,
	100% {
		transform: rotate(0);
	}
	86% {
		transform: rotate(-4deg);
	}
	93% {
		transform: rotate(4deg);
	}
}

@keyframes orbit-spin {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes orbit-spin-reverse {
	from {
		transform: rotate(360deg);
	}
	to {
		transform: rotate(0);
	}
}

@keyframes result-reveal {
	from {
		opacity: 0;
		transform: translate(-50%, -44%) scale(0.84);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@keyframes result-float {
	0%,
	100% {
		transform: translate(-50%, -50%) rotate(1deg);
	}
	50% {
		transform: translate(-50%, calc(-50% - 9px)) rotate(-1deg);
	}
}

@keyframes share-mascot-float {
	0%,
	100% {
		transform: translateY(0) rotate(0.8deg);
	}
	50% {
		transform: translateY(-5px) rotate(-0.8deg);
	}
}

@media (max-width: 1000px) {
	.scene--intro {
		grid-template-columns: 0.82fr 1.18fr;
	}

	.intro-copy h1 {
		font-size: clamp(45px, 6vw, 67px);
	}

	.quiz-layout {
		grid-template-columns: minmax(230px, 0.58fr) minmax(430px, 1.42fr);
		gap: 44px;
	}

	.answer-list {
		grid-template-columns: 1fr;
	}

	.guide-panel {
		min-height: 560px;
	}

	.result-layout {
		grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
		gap: 54px;
	}

	.share-section {
		grid-template-columns: 0.8fr minmax(270px, 0.72fr);
	}

	.share-actions {
		grid-column: 1 / -1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	body.is-quiz-active {
		height: 100dvh;
		overflow: hidden;
		overscroll-behavior: none;
	}

	body.is-quiz-active .site-footer {
		display: none;
	}

	.site-header {
		min-height: 66px;
	}

	.brand__logo {
		width: 150px;
	}

	.site-header__meta > span {
		display: none;
	}

	.site-header__meta .text-button {
		font-size: 10px;
	}

	.scene--intro {
		min-height: calc(100dvh - 116px);
		padding-top: 14px;
		padding-bottom: 42px;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.intro-copy {
		text-align: center;
	}

	.intro-copy h1 {
		margin-right: auto;
		margin-left: auto;
		font-size: clamp(36px, 10vw, 54px);
		line-height: 1.16;
	}

	.intro-copy__lead,
	.privacy-note {
		margin-right: auto;
		margin-left: auto;
	}

	.intro-actions {
		margin-top: 20px;
		align-items: stretch;
		flex-direction: column;
	}

	.intro-actions .primary-button {
		width: 100%;
	}

	.primary-button,
	.secondary-button {
		border-radius: 14px;
	}

	.celestial-stage {
		order: -1;
		width: min(100%, 350px);
		margin: -10px auto -6px;
	}

	.celestial > span {
		display: none;
	}

	.spirit-position--3 {
		bottom: 5%;
	}

	.element-spirit > span {
		right: -1px;
		bottom: -1px;
		width: 22px;
		height: 22px;
		font-size: 11px;
	}

	.element-index {
		display: none;
	}

	.quiz-progress {
		z-index: 20;
		min-height: 54px;
		padding: 4px 0;
		background: var(--paper);
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 10px;
	}

	.moon-progress {
		grid-column: auto;
		grid-row: auto;
		gap: clamp(5px, 1.8vw, 9px);
	}

	.quiz-layout {
		min-height: 0;
		padding-top: 10px;
		gap: 10px;
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(0, 1fr);
	}

	.guide-panel {
		min-height: 76px;
		border-radius: 20px;
	}

	.guide-panel::after {
		inset: 8px;
		border-radius: 14px;
	}

	.guide-orbit {
		left: 10px;
		width: 70px;
	}

	.guide-sun {
		top: 16px;
		left: 18px;
		width: 44px;
		height: 44px;
	}

	.guide-moon {
		right: 15px;
		bottom: 16px;
		width: 42px;
		height: 42px;
	}

	.guide-copy {
		top: 50%;
		right: 65px;
		bottom: auto;
		left: 73px;
		width: auto;
		max-width: none;
		padding: 7px 10px;
		border-radius: 12px;
		box-shadow: 4px 4px 0 rgba(216, 224, 219, 0.15);
		transform: translateY(-50%);
	}

	.guide-copy::before {
		top: 50%;
		left: -9px;
		border-top: 8px solid transparent;
		border-right: 10px solid var(--paper-light);
		border-bottom: 8px solid transparent;
		border-left: 0;
		transform: translateY(-50%);
	}

	.guide-copy span {
		display: none;
	}

	.guide-copy p {
		margin: 0;
		display: -webkit-box;
		overflow: hidden;
		font-size: 10px;
		line-height: 1.35;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.guide-symbol {
		display: none;
	}

	.scene--quiz {
		height: calc(100dvh - 66px);
		min-height: 0;
		padding: 0 0 max(8px, env(safe-area-inset-bottom));
		display: grid;
		grid-template-rows: auto minmax(0, 1fr);
		overflow: hidden;
	}

	.question-panel {
		min-height: 0;
		display: flex;
		flex-direction: column;
		overflow: hidden;
	}

	.question-kicker {
		font-size: 10px;
		line-height: 1.35;
	}

	.question-panel h2 {
		margin-top: 5px;
		font-size: clamp(22px, 6.25vw, 30px);
		line-height: 1.25;
	}

	.question-hint {
		margin-top: 4px;
		font-size: 10px;
		line-height: 1.35;
	}

	.answer-list {
		min-height: 0;
		margin-top: 8px;
		display: grid;
		grid-template-rows: repeat(5, minmax(44px, 1fr));
		gap: 6px;
		flex: 1;
	}

	.answer-option {
		min-height: 44px;
		padding: 7px 40px 7px 12px;
		border-radius: 14px;
		font-size: 13px;
		line-height: 1.32;
		touch-action: manipulation;
	}

	.answer-option::after {
		right: 11px;
		width: 24px;
		height: 24px;
	}

	.answer-error {
		min-height: 0;
		margin-top: 0;
		line-height: 1;
	}

	.answer-error:empty {
		display: none;
	}

	.result-intro {
		align-items: flex-start;
		flex-direction: column;
	}

	.result-layout {
		grid-template-columns: 1fr;
	}

	.result-care__grid {
		grid-template-columns: 1fr;
	}

	.result-care__grid li {
		min-height: 0;
	}

	.result-art {
		width: min(100%, 570px);
		margin: 0 auto;
		border-radius: 24px;
	}

	.result-mascot {
		width: auto;
		height: 88%;
	}

	.share-section {
		grid-template-columns: 1fr;
		border-radius: 26px;
	}

	.share-card-preview {
		width: min(100%, 390px);
		margin: 0 auto;
		border-radius: 20px;
	}

	.share-actions {
		grid-column: auto;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.site-header,
	#quiz-app,
	.site-footer {
		width: min(100% - 22px, 1360px);
	}

	.site-header {
		min-height: 62px;
	}

	.scene--quiz {
		height: calc(100dvh - 62px);
	}

	.brand__logo {
		width: 136px;
	}

	.scene--intro {
		min-height: auto;
		padding-top: 8px;
		padding-bottom: 36px;
	}

	.celestial-stage {
		width: min(100%, 318px);
		margin-top: -8px;
		margin-bottom: -4px;
	}

	.element-spirit {
		width: 18%;
	}

	.element-index {
		flex-wrap: wrap;
		justify-content: center;
	}

	.moon-progress {
		gap: 9px;
	}

	.moon-progress li {
		width: 13px;
		height: 13px;
	}

	.guide-panel {
		min-height: 72px;
	}

	.guide-sun {
		top: 16px;
		left: 16px;
		width: 42px;
		height: 42px;
	}

	.guide-moon {
		right: 13px;
		bottom: 15px;
		width: 40px;
		height: 40px;
	}

	.guide-copy {
		right: 61px;
		left: 69px;
		padding: 6px 9px;
	}

	.guide-copy p {
		-webkit-line-clamp: 2;
	}

	.answer-option {
		min-height: 44px;
	}

	.result-content h1 {
		font-size: 52px;
	}

	.result-personality {
		padding: 18px;
	}

	.result-personality__details,
	.result-chemistry__grid {
		grid-template-columns: 1fr;
	}

	.relation-card {
		min-height: auto;
	}

	.result-secondary {
		align-items: flex-start;
		flex-direction: column;
	}

	.share-section {
		margin-right: -11px;
		margin-left: -11px;
		padding: 28px 18px;
	}

	.site-footer {
		padding: 20px 0;
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 760px) and (max-height: 720px) {
	.quiz-progress {
		min-height: 46px;
	}

	.quiz-progress .eyebrow {
		display: none;
	}

	.quiz-progress > div:first-child {
		gap: 4px;
	}

	.guide-panel {
		min-height: 58px;
		border-radius: 16px;
	}

	.guide-panel::after {
		inset: 6px;
		border-radius: 11px;
	}

	.guide-sun {
		top: 12px;
		width: 34px;
		height: 34px;
	}

	.guide-moon {
		right: 12px;
		bottom: 12px;
		width: 32px;
		height: 32px;
	}

	.guide-copy {
		right: 52px;
		left: 60px;
	}

	.question-hint {
		display: none;
	}

	.question-panel h2 {
		font-size: clamp(20px, 5.8vw, 26px);
	}

	.answer-list {
		margin-top: 6px;
		gap: 4px;
	}

	.answer-option {
		padding-top: 5px;
		padding-bottom: 5px;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
