html {
	scroll-padding-top: 80px;
}

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

/* TOPBAR LAYOUT */
.topbar-content {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 76px;
}

.topbar-content .brand {
	grid-column: 2;
	justify-self: center;
}

.topbar-content .btn {
	grid-column: 3;
	justify-self: end;
}

/* HERO */
.hero {
	padding: 80px 0 48px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 28px;
	align-items: center;
}

h1 {
	font-family: "Cinzel", serif;
	font-size: clamp(1.85rem, 4vw, 3rem);
	line-height: 1.1;
	margin-bottom: 16px;
	color: var(--gold-light);
	text-shadow: 0 0 30px rgba(255, 194, 0, 0.25);
}

.hero p {
	color: var(--muted);
	max-width: 60ch;
	font-size: 1rem;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 26px;
	flex-wrap: wrap;
}

.hero-stats {
	display: flex;
	gap: 28px;
	margin-top: 28px;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 194, 0, 0.12);
}

.hero-stat strong {
	display: block;
	font-family: "Cinzel", serif;
	font-size: 1.5rem;
	color: var(--gold);
	text-shadow: 0 0 14px rgba(255, 194, 0, 0.4);
}

.hero-stat span {
	color: var(--muted);
	font-size: 0.88rem;
}

/* HERO CARD */
.hero-card {
	background: linear-gradient(170deg, #132040, #0e1a36);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow), inset 0 0 40px rgba(18, 32, 64, 0.6);
}

.hero-card h2 {
	font-family: "Cinzel", serif;
	font-size: 1.15rem;
	color: var(--gold);
	margin-bottom: 6px;
	text-shadow: 0 0 10px rgba(255, 194, 0, 0.3);
}

.hero-card > p {
	color: var(--muted);
	font-size: 0.92rem;
}

.price-block {
	margin-top: 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 194, 0, 0.2);
	background: rgba(0, 0, 0, 0.3);
	padding: 14px;
}

.price-line {
	display: flex;
	justify-content: space-between;
	margin: 9px 0;
	font-size: 0.95rem;
	color: var(--text);
}

.price-line strong {
	color: var(--gold);
}

.price-line + .price-line {
	border-top: 1px solid rgba(255, 194, 0, 0.08);
	padding-top: 9px;
}

/* SECTIONS */
.section {
	padding: 38px 0;
}

.section-title {
	font-family: "Cinzel", serif;
	font-size: clamp(1.4rem, 2.8vw, 2.1rem);
	color: var(--gold-light);
	text-align: center;
	margin-bottom: 8px;
	text-shadow: 0 0 20px rgba(255, 194, 0, 0.2);
}

.section-subtitle {
	color: var(--muted);
	text-align: center;
	max-width: 72ch;
	margin: 0 auto 28px;
	font-size: 0.97rem;
}

.section-seo {
	padding-top: 44px;
}

.seo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.seo-card {
	background: var(--surface);
	border: 1px solid var(--border-gold);
	border-radius: 12px;
	padding: 16px;
}

.seo-card h3 {
	font-family: "Cinzel", serif;
	font-size: 0.95rem;
	color: var(--gold);
	margin-bottom: 8px;
}

.seo-card p {
	font-size: 0.92rem;
	color: var(--muted);
}

.faq-wrap {
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 194, 0, 0.18);
	border-radius: 12px;
	padding: 16px;
}

.faq-title {
	font-family: "Cinzel", serif;
	font-size: 1rem;
	color: var(--gold-light);
	margin-bottom: 8px;
}

.faq-item {
	border-top: 1px solid rgba(255, 194, 0, 0.12);
	padding: 12px 0;
}

.faq-item:first-of-type {
	border-top: 0;
	padding-top: 4px;
}

.faq-item summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--text);
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	margin-top: 8px;
	font-size: 0.92rem;
	color: var(--muted);
}

/* ORNAMENT LINE */
.ornament {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 auto 28px;
	max-width: 340px;
}

.ornament-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-gold));
}

.ornament-line.right {
	background: linear-gradient(270deg, transparent, var(--border-gold));
}

.ornament-diamond {
	width: 8px;
	height: 8px;
	background: var(--gold);
	transform: rotate(45deg);
}

/* STEPS */
.steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.step {
	background: var(--surface);
	border: 1px solid var(--border-gold);
	border-radius: 12px;
	padding: 20px 16px;
	transition: border-color 0.2s ease;
}

.step:hover {
	border-color: rgba(255, 194, 0, 0.55);
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffe060, #ffc200);
	display: grid;
	place-items: center;
	font-family: "Cinzel", serif;
	font-weight: 700;
	color: #1a0e00;
	margin-bottom: 12px;
}

.step h3 {
	font-family: "Cinzel", serif;
	font-size: 0.95rem;
	color: var(--gold);
	margin-bottom: 6px;
}

.step p {
	color: var(--muted);
	font-size: 0.9rem;
}

/* FORM / BUY SECTION */
.buy-section {
	background: linear-gradient(165deg, #101c38, #0c1428);
	border: 1px solid var(--border-gold);
	border-radius: calc(var(--radius) + 4px);
	padding: 30px;
	box-shadow: var(--shadow), 0 0 80px rgba(255, 194, 0, 0.04);
}

.buy-section .section-title,
.buy-section .section-subtitle {
	text-align: left;
}

.buy-section .section-subtitle {
	margin: 0 0 24px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.full {
	grid-column: 1 / -1;
}

/* SLIDER */
.slider-wrap {
	margin-top: 10px;
}

input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 3px;
	outline: none;
	cursor: pointer;
	background: linear-gradient(
		90deg,
		var(--gold) var(--pct, 0.02%),
		rgba(255, 194, 0, 0.15) var(--pct, 0.02%)
	);
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffe060, #ffc200);
	border: 2px solid rgba(255, 220, 0, 0.9);
	box-shadow: 0 0 14px rgba(255, 194, 0, 0.55);
	cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffe060, #ffc200);
	border: 2px solid rgba(255, 220, 0, 0.9);
	box-shadow: 0 0 14px rgba(255, 194, 0, 0.55);
	cursor: pointer;
}

.slider-labels {
	display: flex;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.82rem;
	margin-top: 8px;
}

.btn-spinner {
	background: rgba(255, 194, 0, 0.08);
	border: 1px solid rgba(255, 194, 0, 0.35);
	border-radius: 6px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
	font-family: inherit;
}

.btn-spinner:hover {
	background: rgba(255, 194, 0, 0.15);
	border-color: rgba(255, 194, 0, 0.55);
	transform: scale(1.05);
}

.btn-spinner:active {
	transform: scale(0.98);
}

.coins-preview {
	display: flex;
	gap: 0;
	margin-top: 18px;
	border: 1px solid var(--border-gold);
	border-radius: 12px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.35);
}

.coins-preview-item {
	flex: 1;
	text-align: center;
	padding: 14px 10px;
}

.coins-preview-item + .coins-preview-item {
	border-left: 1px solid rgba(255, 194, 0, 0.18);
}

.coins-preview-item strong {
	display: block;
	font-family: "Cinzel", serif;
	font-size: 1.4rem;
	color: var(--gold);
	text-shadow: 0 0 12px rgba(255, 194, 0, 0.4);
}

.coins-preview-item span {
	color: var(--muted);
	font-size: 0.85rem;
	margin-top: 3px;
	display: block;
}

label.field-label {
	display: block;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--text);
	margin-bottom: 6px;
}

input[type="text"],
input[type="email"] {
	width: 100%;
	border: 1px solid rgba(255, 194, 0, 0.22);
	border-radius: 8px;
	padding: 11px 14px;
	font: inherit;
	font-size: 0.97rem;
	background: rgba(0, 0, 0, 0.35);
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(255, 194, 0, 0.12);
}

.helper-text {
	margin-top: 14px;
	font-size: 0.9rem;
	color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 980px) {
	.hero-grid,
	.steps,
	.form-grid,
	.seo-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 52px;
	}
}

@media (max-width: 620px) {
	.topbar-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		min-height: 68px;
	}

	.topbar-content .brand,
	.topbar-content .btn {
		grid-column: auto;
		justify-self: auto;
	}

	.topbar-content .brand {
		flex: 0 1 auto;
	}

	.brand-logo {
		height: 56px;
	}

	.btn {
		width: auto;
		padding: 10px 14px;
		font-size: 0.8rem;
	}

	.hero-actions {
		flex-direction: column;
	}

	.buy-section {
		padding: 20px 16px;
	}
}
