:root {
	--bg: #06111f;
	--bg-deep: #020713;
	--panel: rgba(7, 17, 33, 0.72);
	--panel-strong: rgba(10, 24, 45, 0.88);
	--panel-border: rgba(244, 201, 120, 0.22);
	--gold: #f4c978;
	--gold-strong: #ffd98b;
	--gold-soft: #c99a52;
	--text: #f8ecd0;
	--muted: #b9a98a;
	--shadow-gold: rgba(244, 201, 120, 0.22);
	--shadow-deep: rgba(0, 0, 0, 0.46);
	--background: var(--bg);
	--surface: var(--panel-strong);
	--surface-muted: var(--panel);
	--text-primary: var(--text);
	--text-secondary: var(--muted);
	--accent: var(--gold);
	--accent-soft: var(--gold-soft);
	--border: var(--panel-border);
	--shadow: var(--shadow-deep);
	--hero-orb-opacity: 0.72;
	--card-background: linear-gradient(180deg, var(--panel-strong), var(--panel));
	--quote-background: linear-gradient(180deg, var(--panel-strong), var(--panel));
	--max-width: 1080px;
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--bg-deep);
	color-scheme: light dark;
}

body {
	min-width: 320px;
	margin: 0;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
	color: var(--text);
	background:
		radial-gradient(circle at 50% 4%, rgba(244, 201, 120, 0.16), transparent 30rem),
		radial-gradient(circle at 14% 24%, rgba(74, 133, 174, 0.16), transparent 22rem),
		radial-gradient(circle at 84% 66%, rgba(244, 201, 120, 0.1), transparent 24rem),
		linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
	overflow-x: hidden;
}

body::before,
body::after {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	content: "";
}

body::before {
	background-image:
		radial-gradient(circle, rgba(255, 217, 139, 0.34) 0 1px, transparent 1.3px),
		radial-gradient(circle, rgba(248, 236, 208, 0.18) 0 1px, transparent 1.2px);
	background-position: 0 0, 34px 51px;
	background-size: 112px 112px, 148px 148px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 76%);
}

body::after {
	background:
		linear-gradient(90deg, transparent, rgba(244, 201, 120, 0.08), transparent),
		linear-gradient(180deg, transparent 0 46%, rgba(244, 201, 120, 0.08) 50%, transparent 55%);
	opacity: 0.22;
}

a {
	color: inherit;
}

.page-shell {
	width: min(100% - 32px, var(--max-width));
	margin: 0 auto;
	padding: clamp(32px, 7vw, 82px) 0 28px;
}

.hero {
	position: relative;
	display: grid;
	gap: clamp(26px, 7vw, 72px);
	align-items: center;
	overflow: hidden;
	min-height: auto;
	padding: clamp(10px, 2vw, 22px) 0 clamp(22px, 5vw, 54px);
}

.hero__glow {
	position: absolute;
	top: -12%;
	left: 44%;
	z-index: -1;
	width: min(76vw, 700px);
	aspect-ratio: 1;
	border: 1px solid rgba(244, 201, 120, 0.18);
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(244, 201, 120, 0.12), transparent 30%),
		repeating-radial-gradient(circle, transparent 0 42px, rgba(244, 201, 120, 0.07) 43px 44px);
	filter: blur(0.2px);
	opacity: var(--hero-orb-opacity);
	transform: translateX(-50%);
}

.hero__mark-wrap {
	position: relative;
	width: min(58vw, 300px);
	margin: 0 auto;
}

.hero__mark {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	filter: drop-shadow(0 30px 42px var(--shadow-deep)) drop-shadow(0 0 42px rgba(244, 201, 120, 0.2));
}

.hero__copy {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.hero__copy::before {
	position: absolute;
	inset: -28px -20px;
	z-index: -1;
	border-radius: 36px;
	background: radial-gradient(ellipse at center, rgba(2, 7, 19, 0.44), rgba(2, 7, 19, 0.18) 50%, transparent 72%);
	content: "";
}

.eyebrow {
	margin: 0 0 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gold);
	text-transform: uppercase;
}

h1,
h2,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 16px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(4.2rem, 14vw, 8.4rem);
	font-weight: 500;
	line-height: 0.9;
	color: var(--gold-strong);
	text-shadow: 0 0 26px rgba(244, 201, 120, 0.28);
}

.hero__subtitle {
	max-width: 760px;
	margin: 0 auto 18px;
	font-size: clamp(1.18rem, 3vw, 1.72rem);
	line-height: 1.3;
}

.hero__body {
	max-width: 650px;
	margin: 0 auto 28px;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.12rem);
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 26px;
	border: 1px solid rgba(255, 217, 139, 0.64);
	border-radius: 999px;
	color: var(--bg-deep);
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 46px rgba(244, 201, 120, 0.26);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta:hover {
	border-color: var(--text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 18px 56px rgba(244, 201, 120, 0.34);
	transform: translateY(-2px);
}

.cta:focus-visible {
	outline: 3px solid var(--text);
	outline-offset: 4px;
}

.private-note {
	max-width: 520px;
	margin: 16px auto 0;
	color: rgba(248, 236, 208, 0.66);
	font-size: 0.94rem;
}

.creator-note {
	margin: 7px auto 0;
	color: rgba(248, 236, 208, 0.48);
	font-size: 0.88rem;
}

.features {
	display: grid;
	gap: 14px;
	margin: 12px 0 clamp(28px, 6vw, 62px);
}

.feature-card,
.quote-panel {
	border: 1px solid var(--panel-border);
	border-radius: var(--radius);
	background: var(--card-background);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(18px);
}

.feature-card {
	position: relative;
	overflow: hidden;
	padding: 22px;
}

.feature-card::before {
	position: absolute;
	top: 0;
	left: 22px;
	width: 64px;
	height: 1px;
	background: linear-gradient(90deg, var(--gold), transparent);
	content: "";
}

.feature-card h2 {
	margin-bottom: 10px;
	font-size: clamp(1.1rem, 2vw, 1.28rem);
	line-height: 1.22;
	color: var(--gold-strong);
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.quote-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 5vw, 44px);
	background: var(--quote-background);
	text-align: center;
}

.quote-panel::before {
	position: absolute;
	inset: auto 12% 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	content: "";
}

.quote-panel p {
	max-width: 780px;
	margin: 0 auto;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.44rem, 4vw, 2.5rem);
	line-height: 1.16;
	color: var(--text);
}

.creator-quote {
	max-width: 760px;
	margin: clamp(28px, 6vw, 60px) auto 0;
	padding: 0;
	color: var(--muted);
	text-align: center;
}

.creator-quote blockquote {
	margin: 0;
}

.creator-quote p {
	margin-bottom: 14px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.08rem, 3vw, 1.52rem);
	line-height: 1.42;
}

.creator-quote__short {
	display: none;
}

.creator-quote figcaption {
	color: var(--gold);
	font-size: 0.95rem;
	font-weight: 700;
}

.site-footer {
	width: min(100% - 32px, var(--max-width));
	margin: 0 auto;
	padding: 16px 0 34px;
	color: rgba(185, 169, 138, 0.72);
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

@media (min-width: 760px) {
	.hero {
		grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
		min-height: auto;
		padding-top: 0;
		padding-bottom: clamp(8px, 2vw, 22px);
	}

	.hero__copy {
		margin: 0;
		text-align: left;
	}

	.hero__subtitle,
	.hero__body,
	.private-note {
		margin-left: 0;
	}

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

@media (min-width: 1040px) {
	.hero__mark-wrap {
		width: min(34vw, 456px);
	}
}

@media (prefers-color-scheme: light) {
	:root {
		--bg: #f6ead0;
		--bg-deep: #ecddb9;
		--panel: rgba(255, 250, 237, 0.72);
		--panel-strong: rgba(255, 247, 226, 0.9);
		--panel-border: rgba(151, 102, 38, 0.24);
		--gold: #9b681f;
		--gold-strong: #704916;
		--gold-soft: #b88942;
		--text: #172332;
		--muted: #5e523d;
		--shadow-gold: rgba(151, 102, 38, 0.18);
		--shadow-deep: rgba(64, 43, 18, 0.18);
		--hero-orb-opacity: 0.42;
		--card-background: linear-gradient(180deg, rgba(255, 251, 240, 0.94), rgba(255, 247, 226, 0.78));
		--quote-background: linear-gradient(180deg, rgba(255, 251, 240, 0.92), rgba(255, 243, 216, 0.74));
	}

	html {
		background: var(--bg-deep);
		color-scheme: light;
	}

	body {
		background:
			radial-gradient(circle at 50% 4%, rgba(155, 104, 31, 0.15), transparent 30rem),
			radial-gradient(circle at 14% 24%, rgba(52, 94, 122, 0.12), transparent 22rem),
			radial-gradient(circle at 84% 66%, rgba(155, 104, 31, 0.13), transparent 24rem),
			linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
	}

	body::before {
		background-image:
			radial-gradient(circle, rgba(112, 73, 22, 0.28) 0 1px, transparent 1.3px),
			radial-gradient(circle, rgba(23, 35, 50, 0.14) 0 1px, transparent 1.2px);
	}

	body::after {
		background:
			linear-gradient(90deg, transparent, rgba(151, 102, 38, 0.12), transparent),
			linear-gradient(180deg, transparent 0 46%, rgba(151, 102, 38, 0.12) 50%, transparent 55%);
		opacity: 0.24;
	}

	.cta {
		color: #fff9ea;
		background: linear-gradient(135deg, #8c5f1d, #bd8333);
	}

	.cta:focus-visible {
		outline-color: var(--gold-strong);
	}

	.hero__mark {
		filter: brightness(0.76) contrast(1.24) sepia(0.18) saturate(1.26) drop-shadow(0 24px 34px rgba(112, 73, 22, 0.12));
	}

	.private-note {
		color: rgba(94, 82, 61, 0.78);
	}

	.creator-note {
		color: rgba(94, 82, 61, 0.58);
	}

	.hero__copy::before {
		background: radial-gradient(ellipse at center, rgba(255, 248, 230, 0.76), rgba(255, 248, 230, 0.42) 48%, transparent 74%);
	}
}

html[data-theme="light"] {
	--bg: #f6ead0;
	--bg-deep: #ecddb9;
	--panel: rgba(255, 250, 237, 0.72);
	--panel-strong: rgba(255, 247, 226, 0.9);
	--panel-border: rgba(151, 102, 38, 0.24);
	--gold: #9b681f;
	--gold-strong: #704916;
	--gold-soft: #b88942;
	--text: #172332;
	--muted: #5e523d;
	--shadow-gold: rgba(151, 102, 38, 0.18);
	--shadow-deep: rgba(64, 43, 18, 0.18);
	--hero-orb-opacity: 0.42;
	--card-background: linear-gradient(180deg, rgba(255, 251, 240, 0.94), rgba(255, 247, 226, 0.78));
	--quote-background: linear-gradient(180deg, rgba(255, 251, 240, 0.92), rgba(255, 243, 216, 0.74));
	background: var(--bg-deep);
	color-scheme: light;
}

html[data-theme="light"] body {
	background:
		radial-gradient(circle at 50% 4%, rgba(155, 104, 31, 0.15), transparent 30rem),
		radial-gradient(circle at 14% 24%, rgba(52, 94, 122, 0.12), transparent 22rem),
		radial-gradient(circle at 84% 66%, rgba(155, 104, 31, 0.13), transparent 24rem),
		linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

html[data-theme="light"] body::before {
	background-image:
		radial-gradient(circle, rgba(112, 73, 22, 0.28) 0 1px, transparent 1.3px),
		radial-gradient(circle, rgba(23, 35, 50, 0.14) 0 1px, transparent 1.2px);
}

html[data-theme="light"] body::after {
	background:
		linear-gradient(90deg, transparent, rgba(151, 102, 38, 0.12), transparent),
		linear-gradient(180deg, transparent 0 46%, rgba(151, 102, 38, 0.12) 50%, transparent 55%);
	opacity: 0.24;
}

html[data-theme="light"] .cta {
	color: #fff9ea;
	background: linear-gradient(135deg, #8c5f1d, #bd8333);
}

html[data-theme="light"] .cta:focus-visible {
	outline-color: var(--gold-strong);
}

html[data-theme="light"] .hero__mark {
	filter: brightness(0.76) contrast(1.24) sepia(0.18) saturate(1.26) drop-shadow(0 24px 34px rgba(112, 73, 22, 0.12));
}

html[data-theme="light"] .private-note {
	color: rgba(94, 82, 61, 0.78);
}

html[data-theme="light"] .creator-note {
	color: rgba(94, 82, 61, 0.58);
}

html[data-theme="light"] .hero__copy::before {
	background: radial-gradient(ellipse at center, rgba(255, 248, 230, 0.76), rgba(255, 248, 230, 0.42) 48%, transparent 74%);
}

@media (max-width: 420px) {
	.page-shell {
		width: min(100% - 24px, var(--max-width));
		padding-top: 22px;
	}

	.hero {
		gap: 18px;
		padding-bottom: 30px;
	}

	.hero__glow {
		top: -8%;
		left: 50%;
		width: min(118vw, 440px);
		opacity: calc(var(--hero-orb-opacity) * 0.7);
	}

	.hero__mark-wrap {
		width: min(44vw, 168px);
	}

	.eyebrow {
		font-size: 0.7rem;
	}

	h1 {
		margin-bottom: 12px;
		font-size: clamp(3.6rem, 21vw, 5.2rem);
	}

	.hero__subtitle {
		font-size: 1.13rem;
	}

	.hero__body {
		margin-bottom: 22px;
		font-size: 0.98rem;
	}

	.hero__copy::before {
		inset: -18px 0;
		border-radius: 28px;
	}

	.cta {
		width: 100%;
	}

	.feature-card {
		padding: 20px;
	}

	.quote-panel {
		padding: 24px 20px;
	}

	.quote-panel p {
		font-size: clamp(1.34rem, 8vw, 1.72rem);
	}

	.creator-quote {
		margin-top: 30px;
	}

	.creator-quote__long {
		display: none;
	}

	.creator-quote__short {
		display: block;
	}
}

@media print {
	:root {
		--bg: #ffffff;
		--bg-deep: #ffffff;
		--panel-border: #d9c190;
		--gold: #8a5a17;
		--gold-strong: #5f3d10;
		--text: #121820;
		--muted: #554b3a;
	}

	html,
	body {
		color: var(--text);
		background: #ffffff !important;
	}

	body::before,
	body::after {
		display: none !important;
	}

	.page-shell {
		width: min(100% - 36px, 980px);
		padding-top: 28px;
	}

	.hero {
		gap: 28px;
		grid-template-columns: 260px minmax(0, 1fr);
		overflow: visible;
		page-break-inside: avoid;
		break-inside: avoid;
	}

	.hero__glow {
		display: none !important;
	}

	.hero__mark-wrap {
		width: 250px;
	}

	.hero__mark {
		filter: none;
		opacity: 0.68;
	}

	.hero__copy {
		max-width: 620px;
		text-align: left;
	}

	.hero__copy::before {
		display: none !important;
		background: none !important;
		content: none !important;
	}

	h1 {
		margin-bottom: 10px;
		font-size: 5rem;
		text-shadow: none;
	}

	.hero__subtitle {
		margin-bottom: 12px;
		font-size: 1.2rem;
	}

	.hero__body {
		margin-bottom: 18px;
		font-size: 1rem;
	}

	.private-note,
	.creator-note {
		color: var(--muted);
	}

	.features {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		page-break-inside: avoid;
		break-inside: avoid;
	}

	.feature-card,
	.quote-panel {
		background: transparent !important;
		box-shadow: none;
		backdrop-filter: none;
	}

	.cta {
		border-color: var(--gold);
		box-shadow: none;
	}

	.quote-panel,
	.creator-quote {
		page-break-inside: avoid;
		break-inside: avoid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
