:root {
	--bg: #fffaf2;
	--bg-soft: #fff3de;
	--surface: #ffffff;
	--surface-strong: #fffdf9;
	--text: #121212;
	--muted: #3f3f3f;
	--primary: #ff6a00;
	--primary-strong: #e45c00;
	--secondary: #4fd7ff;
	--secondary-soft: #eaf8ff;
	--accent: #ffd166;
	--dark: #121212;
	--line: rgba(18, 18, 18, 0.12);
	--shadow: 0 14px 36px rgba(18, 18, 18, 0.09);
	--radius-sm: 16px;
	--radius-md: 26px;
	--radius-lg: 38px;
	--max-width: 1180px;
	--font-body: 'Manrope', sans-serif;
	--font-title: 'Sora', sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	background:
		radial-gradient(circle at top left, rgba(79, 215, 255, 0.22), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.2), transparent 32%),
		var(--bg);
	color: var(--text);
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

.container {
	width: min(100% - 2rem, var(--max-width));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 250, 242, 0.94);
	border-bottom: 1px solid rgba(79, 215, 255, 0.45);
	backdrop-filter: blur(18px);
}

.header-bar {
	min-height: 5.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.brand-mark {
	width: 48px;
	height: 48px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, var(--secondary), #9be7ff);
	color: #121212;
	font-size: 1.3rem;
	box-shadow: 0 12px 26px rgba(79, 215, 255, 0.28);
}

.brand-copy {
	display: grid;
}

.brand-copy strong {
	font-family: var(--font-title);
	font-size: 1.2rem;
	color: #121212;
	margin-bottom: 0.04rem;
}

.brand-copy small {
	color: var(--muted);
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.main-menu a {
	font-weight: 700;
	color: var(--text);
}

.main-menu a:hover,
.main-menu a:focus-visible {
	color: var(--primary);
}

.menu-cta {
	padding: 0.78rem 1.2rem;
	border-radius: 999px;
	background: var(--primary);
	color: #ffffff !important;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #ffffff;
	position: relative;
}

.menu-toggle span {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	background: var(--dark);
	transform: translateX(-50%);
	border-radius: 999px;
}

.menu-toggle span:first-child {
	top: 18px;
}

.menu-toggle span:last-child {
	top: 26px;
}

.section,
.hero-section,
.value-strip,
.cta-section {
	padding: 5rem 0;
}

.site-banner {
	padding: 1.2rem 0 0.4rem;
}

.banner-wrap {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	min-height: 280px;
	box-shadow: 0 18px 42px rgba(18, 18, 18, 0.12);
	border: 1px solid rgba(79, 215, 255, 0.22);
}

.banner-image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	object-position: center 82%;
	display: block;
	position: relative;
	z-index: 0;
}

.banner-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding: 0.45rem 1.6rem 1rem;
	color: #ffffff;
	z-index: 2;
}

.banner-content .eyebrow {
	order: 3;
	margin: auto 0 0.3rem;
	padding: 0.22rem 0.48rem;
	background: rgba(0, 0, 0, 0.98);
	color: #ffffff;
	font-size: 1rem;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.banner-content h1 {
	order: 2;
}

.banner-content p:last-child {
	order: 1;
	margin: 0.12rem 0 0;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	max-width: calc(100% - 1rem);
	background: rgba(0, 0, 0, 0.5);
	padding: 0.34rem 0.72rem;
	border-radius: 999px;
	font-size: 0.95rem;
	line-height: 1.15;
}

.banner-content h1 {
	margin: 1.5rem 0 0;
	font-family: var(--font-title);
	font-size: clamp(1.55rem, 2.9vw, 2.7rem);
	line-height: 1.02;
	max-width: none;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.98);
	padding: 0.5rem 0.86rem;
	border-radius: 18px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.banner-content p {
	margin: 0.65rem 0 0;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.96);
	text-wrap: pretty;
}

.hero-section {
	padding-top: 3.1rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: 2rem;
	align-items: center;
}

.eyebrow {
	margin: 0 0 1rem;
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: var(--secondary-soft);
	color: var(--secondary);
	font-size: 0.83rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-copy h1,
.section-head h2,
.configurator-copy h2,
.material-copy h2,
.cta-box h2 {
	margin: 0;
	font-family: var(--font-title);
	line-height: 1.04;
	letter-spacing: -0.03em;
}

.hero-copy h1 {
	font-size: clamp(2.45rem, 4.4vw, 4.8rem);
}

.hero-text {
	margin: 1.1rem 0 0;
	max-width: 60ch;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 2rem 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 800;
	padding: 0.92rem 1.5rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--primary);
	color: #ffffff;
	box-shadow: 0 16px 28px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--primary-strong);
}

.btn-secondary {
	background: transparent;
	border-color: rgba(42, 26, 104, 0.24);
	color: var(--text);
}

.btn-block {
	width: 100%;
}

.trust-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

.trust-row div {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(79, 215, 255, 0.35);
	border-radius: 20px;
	padding: 1rem;
	box-shadow: var(--shadow);
}

.trust-row strong {
	display: block;
	font-family: var(--font-title);
	font-size: 1.2rem;
}

.trust-row span {
	color: var(--muted);
	font-size: 0.92rem;
}

.hero-stage {
	display: grid;
	gap: 1rem;
}

.hero-card,
.hero-mini-card,
.collection-card,
.configurator-panel,
.timeline-card,
.review-card,
.faq-item,
.cta-box,
.material-cards article,
.value-strip-grid article {
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.hero-card,
.configurator-panel,
.cta-box {
	border-radius: var(--radius-lg);
}

.hero-card-main {
	position: relative;
	overflow: hidden;
	padding: 1.4rem;
	background:
		radial-gradient(circle at top right, rgba(217, 255, 31, 0.3), transparent 28%),
		linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.tag-sale {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 0.45rem 0.7rem;
	border-radius: 999px;
	background: var(--accent);
	color: var(--dark);
	font-size: 0.78rem;
	font-weight: 800;
}

.charm {
	position: absolute;
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: rgba(25, 215, 255, 0.18);
	right: 28px;
	bottom: 42px;
	transform: rotate(18deg);
}

.keyring-preview {
	position: relative;
	min-height: 300px;
	border-radius: 28px;
	background: linear-gradient(160deg, #fff4e2 0%, #e7f9ff 100%);
	overflow: hidden;
	border: 1px solid rgba(79, 215, 255, 0.28);
}

.keyring-couple {
	width: min(100%, 320px);
	aspect-ratio: 3 / 4;
	min-height: 0;
	margin: 0 auto;
}

.keyring-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.ring {
	position: absolute;
	width: 92px;
	height: 92px;
	border: 9px solid #7a7a7a;
	border-radius: 50%;
	top: 18px;
	left: 50%;
	transform: translateX(-50%);
}

.avatar {
	position: absolute;
	bottom: 54px;
	width: 118px;
	height: 150px;
	border-radius: 38px 38px 28px 28px;
	background: linear-gradient(180deg, #ffb36c 0%, #ff6a00 100%);
	box-shadow: 0 12px 28px rgba(255, 106, 0, 0.24);
}

.avatar::before {
	content: '';
	position: absolute;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #ffe9cb;
	top: -28px;
	left: 22px;
}

.avatar-left {
	left: 76px;
}

.avatar-right {
	right: 76px;
	background: linear-gradient(180deg, #74e8ff 0%, #19bde4 100%);
}

.base-pill {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	padding: 0.6rem 1rem;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid rgba(18, 18, 18, 0.14);
	font-weight: 700;
}

.hero-card-copy {
	padding-top: 1rem;
}

.hero-card-copy h2 {
	margin: 0;
	font-family: var(--font-title);
	font-size: 1.5rem;
}

.hero-card-copy p {
	margin: 0.5rem 0 0;
	color: var(--muted);
}

.hero-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hero-mini-card,
.collection-card,
.review-card,
.timeline-card,
.material-cards article,
.faq-item,
.value-strip-grid article {
	border-radius: var(--radius-md);
	padding: 1.1rem;
}

.hero-mini-card {
	text-align: center;
}

.mini-photo {
	width: 100%;
	height: 120px;
	border-radius: 22px;
	object-fit: cover;
	object-position: top center;
	margin-bottom: 0.8rem;
	border: 1px solid rgba(79, 215, 255, 0.28);
}

.mini-preview,
.collection-visual {
	position: relative;
	min-height: 120px;
	border-radius: 22px;
	background: linear-gradient(140deg, #fff2df 0%, #e9f9ff 100%);
	margin-bottom: 0.8rem;
	overflow: hidden;
}

.collection-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
	border-radius: 22px;
	margin-bottom: 0.8rem;
	display: block;
}

.mini-preview::before,
.mini-preview::after,
.collection-visual::before,
.collection-visual::after {
	content: '';
	position: absolute;
	border-radius: 50%;
}

.mini-preview::before,
.collection-visual::before {
	width: 46px;
	height: 46px;
	background: rgba(255, 106, 0, 0.56);
	top: 22px;
	left: 26px;
}

.mini-preview::after,
.collection-visual::after {
	width: 58px;
	height: 58px;
	background: rgba(25, 215, 255, 0.72);
	bottom: 18px;
	right: 24px;
}

.pet::after,
.visual-pet::after {
	border-radius: 22px;
}

.sport::before,
.visual-sport::before {
	width: 62px;
	height: 62px;
	background: rgba(217, 255, 31, 0.82);
}

.kawaii::before,
.visual-kawaii::before {
	background: rgba(25, 215, 255, 0.85);
}

.collection-grid,
.review-grid,
.timeline-grid {
	display: grid;
	gap: 1rem;
}

.collection-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card h3,
.timeline-card h3,
.material-cards h3,
.review-card strong {
	margin: 0;
}

.collection-card p,
.timeline-card p,
.review-card p,
.faq-answer p,
.material-copy p,
.material-cards p,
.section-head p,
.configurator-copy p,
.cta-box p {
	color: var(--muted);
}

.section-head {
	text-align: center;
	margin-bottom: 2rem;
}

.section-head h2,
.configurator-copy h2,
.material-copy h2,
.cta-box h2 {
	font-size: clamp(1.9rem, 3vw, 3rem);
}

.section-tint {
	background: linear-gradient(180deg, var(--bg-soft) 0%, #f7fbff 100%);
}

.configurator-grid,
.material-grid {
	display: grid;
	grid-template-columns: 0.94fr 1.06fr;
	gap: 1.4rem;
	align-items: start;
}

.configurator-steps {
	display: grid;
	gap: 0.8rem;
	margin-top: 1.4rem;
}

.configurator-steps div {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.configurator-steps strong {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--dark);
	color: #ffffff;
}

.configurator-panel {
	padding: 1.4rem;
}

.option-group + .option-group {
	margin-top: 1.2rem;
}

.option-group > p {
	margin: 0 0 0.7rem;
	font-weight: 800;
}

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.chip {
	border: 1px solid rgba(79, 215, 255, 0.4);
	background: #fffdf8;
	color: var(--text);
	border-radius: 999px;
	padding: 0.7rem 0.95rem;
	font-weight: 700;
}

.chip.chip-image {
	padding: 0.32rem 0.32rem 0.42rem;
	border-radius: 16px;
	width: 108px;
	height: auto;
	min-height: 128px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.32rem;
	overflow: visible;
	background: #fffdf8;
}

.chip.chip-image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.chip-image-label {
	font-size: 0.64rem;
	line-height: 1.12;
	font-weight: 800;
	text-align: center;
	white-space: normal;
	color: var(--text);
	transition: color 0.2s ease;
}

.chip.is-active {
	background: var(--dark);
	color: #ffffff;
	border-color: var(--dark);
}

.chip.chip-image.is-active {
	background: #fffdf8;
	border-color: var(--dark);
	box-shadow: 0 0 0 2px rgba(18, 18, 18, 0.18);
}

.chip.chip-image.is-active .chip-image-label {
	color: var(--primary-strong);
}

.summary-box {
	margin: 1.4rem 0;
	padding: 1rem 1.1rem;
	border-radius: 24px;
	background: linear-gradient(145deg, #fff5e7 0%, #f0fbff 100%);
	border: 1px solid rgba(255, 209, 102, 0.42);
}

.summary-label {
	margin: 0 0 0.35rem;
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--primary-strong);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.summary-box h3 {
	margin: 0;
	font-family: var(--font-title);
}

.summary-box p {
	margin: 0.45rem 0 0;
}

.timeline-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card span {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--secondary-soft);
	color: var(--secondary);
	font-weight: 800;
	margin-bottom: 1rem;
}

.section-dark {
	background: linear-gradient(180deg, #fff7eb 0%, #ffeecf 100%);
	color: var(--text);
}

.section-dark .eyebrow {
	background: rgba(79, 215, 255, 0.24);
	color: #111111;
}

.section-dark .material-copy p,
.section-dark .material-cards p {
	color: var(--muted);
}

.material-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.material-cards article {
	background: #ffffff;
	border-color: rgba(79, 215, 255, 0.32);
}

.material-cards i {
	font-size: 1.4rem;
	color: var(--accent);
}

.review-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
	color: var(--accent);
	margin-bottom: 0.8rem;
}

.faq-layout {
	display: grid;
	gap: 1.4rem;
}

.faq-head {
	margin-bottom: 0;
}

.faq-list {
	display: grid;
	gap: 0.8rem;
}

.faq-question {
	width: 100%;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0;
	text-align: left;
	font-weight: 800;
	color: var(--text);
}

.faq-answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.24s ease;
}

.faq-answer > * {
	overflow: hidden;
}

.faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
}

.faq-item.is-open .faq-question i {
	transform: rotate(45deg);
}

.faq-question i {
	transition: transform 0.2s ease;
}

.cta-box {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: linear-gradient(145deg, #fff2de 0%, #ecfaff 100%);
}

.cta-box .btn {
	font-size: 0.95rem;
	padding: 0.78rem 1.2rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.site-footer {
	padding: 1.4rem 0 2.5rem;
	background: linear-gradient(180deg, rgba(255, 242, 222, 0.55) 0%, rgba(236, 250, 255, 0.72) 100%);
}

.footer-bar {
	width: min(100%, 1180px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	margin: 0 auto;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(79, 215, 255, 0.26);
	box-shadow: 0 14px 34px rgba(18, 18, 18, 0.08);
}

.footer-bar p {
	margin: 0;
	color: var(--text);
	font-weight: 600;
	text-align: center;
	flex: 1;
}

.back-top {
	width: 46px;
	height: 46px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--dark);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(20, 10, 51, 0.28);
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.12s;
}

.delay-2 {
	transition-delay: 0.22s;
}

@media (max-width: 1040px) {
	.hero-grid,
	.configurator-grid,
	.material-grid {
		grid-template-columns: 1fr;
	}

	.collection-grid,
	.review-grid,
	.timeline-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.menu-toggle {
		display: inline-flex;
	}

	.brand-copy strong {
		font-size: 0.85rem;
	}

	.main-menu {
		position: absolute;
		top: 86px;
		left: 1rem;
		right: 1rem;
		background: linear-gradient(160deg, rgba(255, 250, 242, 0.99) 0%, rgba(241, 251, 255, 0.99) 60%, rgba(255, 244, 225, 0.99) 100%);
		border: 1px solid rgba(79, 215, 255, 0.4);
		border-radius: 24px;
		box-shadow: var(--shadow);
		padding: 1.1rem;
		flex-direction: column;
		align-items: stretch;
		gap: 0.55rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.main-menu.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-menu a,
	.menu-cta {
		width: 100%;
		display: block;
		padding: 0.72rem 0.85rem;
		border-radius: 14px;
	}

	.main-menu a {
		color: var(--text);
		background: rgba(255, 255, 255, 0.64);
		border: 1px solid rgba(79, 215, 255, 0.2);
	}

	.main-menu .menu-cta {
		margin-top: 0.2rem;
		background: var(--primary);
		color: #ffffff !important;
		text-align: center;
		font-weight: 800;
	}

	.hero-section {
		padding-top: 3rem;
	}

	.hero-mini-grid,
	.trust-row,
	.material-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.chip.chip-image {
		width: 88px;
		min-height: 120px;
		padding: 0.2rem 0.2rem 0.28rem;
		gap: 0.2rem;
	}

	.chip-image-label {
		font-size: 0.5rem;
		line-height: 1.08;
	}

	.site-banner {
		padding-top: 0.8rem;
	}

	.banner-wrap {
		min-height: 210px;
		border-radius: 24px;
	}

	.banner-image {
		min-height: 210px;
		object-position: center 74%;
	}

	.banner-content {
		padding: 0.35rem 0.8rem 0.65rem;
		gap: 0.12rem;
	}

	.banner-content .eyebrow {
		margin: auto 0 0.16rem;
		font-size: 0.68rem;
		padding: 0.3rem 0.56rem;
	}

	.banner-content h1 {
		margin: 0.32rem 0 0;
		font-size: clamp(1.05rem, 4.6vw, 1.45rem);
		line-height: 1.08;
		white-space: normal;
		max-width: 100%;
		padding: 0.34rem 0.68rem;
	}

	.banner-content p:last-child {
		display: none;
	}

	.section,
	.hero-section,
	.value-strip,
	.cta-section {
		padding: 3.5rem 0;
	}

	.hero-copy h1 {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}

	.hero-actions,
	.cta-box,
	.footer-bar {
		flex-direction: column;
		align-items: center;
	}

	.footer-bar {
		text-align: center;
	}

	.btn,
	.back-top {
		width: 100%;
	}

	.collection-grid,
	.review-grid,
	.timeline-grid {
		grid-template-columns: 1fr;
	}

	.mini-photo {
		width: min(100%, 220px);
		height: auto;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		object-position: center;
		margin-left: auto;
		margin-right: auto;
	}

	.avatar-left {
		left: 28px;
	}

	.avatar-right {
		right: 28px;
	}
}
