
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
	--bg-main: #091019;
	--bg-soft: #0f1a28;
	--bg-deep: #060b12;
	--bg-card: rgba(16, 27, 41, 0.82);
	--text-main: #f3f5f8;
	--text-soft: #b8c3d3;
	--brand: #d8ab4d;
	--brand-strong: #f0c978;
	--line: rgba(216, 171, 77, 0.2);
	--shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

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

body {
	font-family: 'Manrope', sans-serif;
	color: var(--text-main);
	line-height: 1.7;
	position: relative;
	isolation: isolate;
	overflow-x: hidden;
	background:
		radial-gradient(1300px 780px at -18% -30%, rgba(216, 171, 77, 0.24), transparent 60%),
		radial-gradient(1080px 620px at 115% -8%, rgba(94, 173, 255, 0.2), transparent 62%),
		radial-gradient(760px 460px at 50% 115%, rgba(216, 171, 77, 0.13), transparent 74%),
		radial-gradient(circle at 25% 68%, rgba(75, 130, 190, 0.14) 0, transparent 40%),
		conic-gradient(from 210deg at 78% 22%, rgba(255, 255, 255, 0.04), transparent 18%, rgba(216, 171, 77, 0.04), transparent 42%, rgba(95, 176, 255, 0.04), transparent 68%),
		repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 20px),
		repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 16px),
		linear-gradient(175deg, var(--bg-soft), var(--bg-main) 58%, var(--bg-deep));
	min-height: 100vh;
	background-attachment: fixed;
}

body::before,
body::after {
	content: '';
	position: fixed;
	z-index: -1;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(10px);
	opacity: 0.5;
	mix-blend-mode: screen;
}

body::before {
	width: min(48vw, 560px);
	height: min(48vw, 560px);
	top: 12%;
	left: -12%;
	background: radial-gradient(circle at 35% 35%, rgba(216, 171, 77, 0.35), rgba(216, 171, 77, 0.05) 60%, transparent 75%);
	animation: floatGlowOne 16s ease-in-out infinite, pulseGlow 10s ease-in-out infinite;
}

body::after {
	width: min(42vw, 500px);
	height: min(42vw, 500px);
	bottom: 6%;
	right: -10%;
	background: radial-gradient(circle at 60% 40%, rgba(95, 176, 255, 0.28), rgba(95, 176, 255, 0.05) 62%, transparent 78%);
	animation: floatGlowTwo 18s ease-in-out infinite, pulseGlow 12s ease-in-out infinite;
}

main::before {
	content: '';
	position: fixed;
	z-index: -1;
	pointer-events: none;
	width: min(34vw, 380px);
	height: min(34vw, 380px);
	left: 42%;
	top: 18%;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(216, 171, 77, 0.18), transparent 72%);
	filter: blur(12px);
	opacity: 0.42;
	mix-blend-mode: screen;
	animation: floatGlowThree 20s ease-in-out infinite;
}

.container {
	width: min(1150px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(12px);
	background: rgba(9, 16, 25, 0.74);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	padding: 1rem 0;
}

.logo {
	font-size: 1.1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-strong);
	text-decoration: none;
}

.links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.links a {
	color: var(--text-main);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.links a:hover,
.links a:focus-visible,
.links a.active {
	border-color: var(--line);
	background: rgba(216, 171, 77, 0.14);
	color: var(--brand-strong);
}

.hero,
.page-hero {
	text-align: center;
	padding: 6.5rem 0 4.2rem;
	animation: fadeUp 0.75s ease both;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 1.2rem;
	align-items: stretch;
}

.hero-grid .hero-copy {
	text-align: left;
}

.hero-grid .hero-copy p {
	margin-left: 0;
}

.hero-panel {
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 18px;
	padding: 1.2rem;
	box-shadow: var(--shadow);
	text-align: left;
	align-self: center;
}

.hero-panel h3 {
	font-size: 1.35rem;
	margin-bottom: 0.55rem;
}

.hero-panel p {
	font-size: 0.98rem;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 0.9rem;
	padding: 0.25rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--brand-strong);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	font-family: 'Playfair Display', serif;
	line-height: 1.2;
}

.hero h1,
.page-hero h1 {
	font-size: clamp(2.2rem, 6vw, 4.8rem);
	max-width: 920px;
	margin: 0 auto 1rem;
}

.gold {
	color: var(--brand);
}

p {
	color: var(--text-soft);
}

.hero p,
.page-hero p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.08rem;
}

.actions {
	margin-top: 1.7rem;
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.btn,
.btn-outline {
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	border-radius: 12px;
	padding: 0.9rem 1.4rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn {
	color: #15120e;
	background: linear-gradient(120deg, var(--brand), var(--brand-strong));
	box-shadow: 0 10px 26px rgba(216, 171, 77, 0.32);
}

.btn-outline {
	color: var(--text-main);
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.05);
}

.btn:hover,
.btn-outline:hover {
	transform: translateY(-2px);
}

.section,
.page {
	padding: 1.4rem 0 4rem;
}

.section-soft {
	padding: 0.4rem 0 3rem;
}

.section-header {
	text-align: center;
	max-width: 740px;
	margin: 0 auto 2.2rem;
}

.section h2,
.page h2 {
	font-size: clamp(1.8rem, 3.6vw, 2.8rem);
	margin-bottom: 0.6rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.1rem;
}

.grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid {
	gap: 0.8rem;
	margin: 1rem 0;
	padding-inline: 3rem;
}

.compact-grid + .highlight {
	margin-top: 0.4rem;
	margin-inline: 1rem;
}

.compact-grid .card {
	padding: 0.85rem;
}

.compact-grid .card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.3rem;
}

.compact-grid .card p {
	font-size: 0.96rem;
}

.grid.two {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	padding: 1.1rem;
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
	transform: translateY(-5px);
	border-color: var(--line);
}

.card h3 {
	margin-bottom: 0.45rem;
}

.card p + p {
	margin-top: 0.45rem;
}

.card img,
.banner {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 0.8rem;
	display: block;
	object-fit: cover;
	aspect-ratio: 16 / 10;
}

.meta {
	color: var(--brand-strong);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
}

.price {
	color: var(--brand-strong);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0.4rem 0;
}

.price-note {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-soft);
}

.price-card.featured {
	border-color: var(--line);
	background: linear-gradient(175deg, rgba(216, 171, 77, 0.14), rgba(16, 27, 41, 0.82));
}

.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.9rem;
}

.pill {
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	font-size: 0.78rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-main);
}

.compare-wrap {
	overflow-x: auto;
	margin-top: 1.1rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.compare {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.compare th,
.compare td {
	padding: 0.8rem 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: left;
	vertical-align: top;
}

.compare th {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	color: var(--text-main);
	background: rgba(255, 255, 255, 0.03);
}

.compare tr:last-child td {
	border-bottom: none;
}

.check {
	color: var(--brand-strong);
	font-weight: 800;
}

.case-band {
	display: grid;
	gap: 1rem;
	margin-top: 1.1rem;
}

.case-item {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 1rem;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	padding: 1rem;
	box-shadow: var(--shadow);
}

.case-item img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	border-radius: 12px;
	object-fit: cover;
}

.case-item.reverse {
	grid-template-columns: 1.05fr 0.95fr;
}

.case-item.reverse .media {
	order: 2;
}

.case-item.reverse .copy {
	order: 1;
}

.copy .cluster {
	display: grid;
	gap: 0.7rem;
	margin-top: 0.75rem;
}

.cluster div {
	padding: 0.7rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}

.cluster strong {
	display: block;
	font-size: 0.85rem;
	color: var(--brand-strong);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.tiny {
	font-size: 0.92rem;
}

.stat-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.9rem;
	margin-top: 1.2rem;
}

.stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 0.95rem;
	text-align: left;
}

.stat strong {
	display: block;
	font-size: 1.35rem;
	line-height: 1.2;
	color: var(--brand-strong);
	font-family: 'Playfair Display', serif;
	margin-bottom: 0.22rem;
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}

.checklist {
	list-style: none;
	display: grid;
	gap: 0.55rem;
	margin-top: 0.65rem;
}

.checklist li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--text-soft);
}

.checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.52rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: linear-gradient(120deg, var(--brand), var(--brand-strong));
}

.feature-list {
	list-style: none;
	display: grid;
	gap: 0.8rem;
	margin-top: 0.75rem;
}

.feature-list li {
	padding: 0.85rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
}

.feature-list strong {
	color: var(--text-main);
	display: block;
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.timeline {
	list-style: none;
	display: grid;
	gap: 0.8rem;
	margin-top: 0.75rem;
}

.timeline li {
	position: relative;
	padding-left: 2.2rem;
	padding-bottom: 0.3rem;
}

.timeline li::before {
	content: attr(data-step);
	position: absolute;
	left: 0;
	top: 0.05rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	background: rgba(216, 171, 77, 0.22);
	border: 1px solid var(--line);
	color: var(--brand-strong);
	font-size: 0.78rem;
	font-weight: 700;
	display: grid;
	place-items: center;
}

.timeline strong {
	display: block;
	color: var(--text-main);
	font-size: 1rem;
	margin-bottom: 0.15rem;
}

.tag-row {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
	margin: 0.65rem 0;
}

.tag {
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.78rem;
	color: var(--text-main);
	background: rgba(255, 255, 255, 0.04);
}

.highlight {
	background: linear-gradient(140deg, rgba(216, 171, 77, 0.18), rgba(216, 171, 77, 0.06));
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 1.2rem;
	box-shadow: var(--shadow);
}

.highlight h3 {
	margin-bottom: 0.5rem;
}

.reviews-section {
	padding-top: 0.8rem;
}

.review-card {
	position: relative;
	overflow: hidden;
}

.review-card::before {
	content: '\201C';
	position: absolute;
	right: 0.7rem;
	top: 0.3rem;
	font-size: 3.2rem;
	line-height: 1;
	color: rgba(216, 171, 77, 0.2);
	font-family: 'Playfair Display', serif;
}

.stars {
	color: var(--brand-strong);
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	margin-bottom: 0.45rem;
}

.review-text {
	font-size: 0.98rem;
	margin-bottom: 0.7rem;
	padding-right: 0.8rem;
}

.review-author {
	color: var(--text-main);
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.review-dropdown {
	margin-top: 1rem;
	padding: 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
}

.review-dropdown summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--brand-strong);
	list-style: none;
	text-align: center;
}

.review-dropdown summary::-webkit-details-marker {
	display: none;
}

.review-dropdown summary::after {
	content: ' +';
	font-weight: 800;
	margin-left: 0.3rem;
}

.review-dropdown[open] summary::after {
	content: ' -';
}

.more-reviews {
	margin-top: 0.9rem;
}

.faq {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
}

.faq details {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 12px;
	padding: 0.85rem 1rem;
}

.faq summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--text-main);
}

.faq details p {
	margin-top: 0.55rem;
}

.stack {
	display: grid;
	gap: 1rem;
}

footer {
	position: relative;
	margin-top: 2.4rem;
	padding: 2.8rem 0 2.6rem;
	text-align: center;
	color: var(--text-soft);
	background:
		radial-gradient(520px 180px at 50% -20%, rgba(216, 171, 77, 0.2), transparent 70%),
		linear-gradient(180deg, rgba(9, 16, 25, 0.1), rgba(6, 11, 18, 0.72));
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: min(420px, 72%);
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(216, 171, 77, 0.85), transparent);
}

footer p {
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.9;
	max-width: 840px;
	margin: 0 auto;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatGlowOne {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(36px, -22px, 0) scale(1.12);
	}
}

@keyframes floatGlowTwo {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-30px, 20px, 0) scale(1.13);
	}
}

@keyframes floatGlowThree {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(12px, -30px, 0) scale(1.16);
	}
}

@keyframes pulseGlow {
	0%,
	100% {
		opacity: 0.42;
	}
	50% {
		opacity: 0.62;
	}
}

@media (prefers-reduced-motion: reduce) {
	body::before,
	body::after,
	main::before {
		animation: none;
	}
}

@media (max-width: 760px) {
	nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.links {
		width: 100%;
	}

	.hero,
	.page-hero {
		text-align: left;
		padding-top: 4.8rem;
	}

	.hero-grid,
	.split,
	.case-item,
	.case-item.reverse,
	.grid.three {
		grid-template-columns: 1fr;
	}

	.compact-grid {
		padding-inline: 0.2rem;
	}

	.compact-grid + .highlight {
		margin-inline: 0.2rem;
	}

	.hero h1,
	.page-hero h1,
	.hero p,
	.page-hero p {
		margin-left: 0;
	}

	.actions {
		justify-content: flex-start;
	}
}
