* {
	box-sizing: border-box;
}
*::before,
*::after {
	box-sizing: inherit;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
	margin: 0;
	padding: 0;
}
ul,
ol {
	list-style: none;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}
button {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}
a {
	text-decoration: none;
	color: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
:root {
	--color-bg: #050608;
	--color-surface: #0c0f15;
	--color-surface-alt: #151926;
	--color-text: #f7f2e9;
	--color-text-muted: #a6a1b0;
	--color-primary: #f6b041;
	--color-primary-soft: rgba(246, 176, 65, 0.14);
	--color-success: #39d98a;
	--color-warning: #ffcc66;
	--color-danger: #ff4d6a;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2933;
	--gray-900: #111827;
	--font-sans:
		"Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-display: "Cormorant Garamond", "Times New Roman", serif;
	--font-mono: "JetBrains Mono", Menlo, Monaco, monospace;
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;
	--leading-tight: 1.2;
	--leading-normal: 1.5;
	--leading-relaxed: 1.7;
	--space-0: 0;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-7: 28px;
	--space-8: 32px;
	--space-9: 36px;
	--space-10: 40px;
	--space-12: 48px;
	--space-14: 56px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--radius-xs: 2px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 18px;
	--radius-pill: 999px;
	--shadow-xs: 0 4px 10px rgba(0, 0, 0, 0.4);
	--shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.55);
	--shadow-md: 0 18px 40px rgba(0, 0, 0, 0.7);
	--shadow-soft: 0 25px 80px rgba(0, 0, 0, 0.85);
	--transition-fast: 150ms ease-out;
	--transition-base: 220ms ease-out;
	--transition-slow: 320ms ease-out;
}
body {
	background: radial-gradient(circle at top, #151926 0, #050608 55%, #000 100%);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: var(--leading-tight);
	color: var(--color-text);
}
h1 {
	font-size: var(--text-5xl);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
h2 {
	font-size: var(--text-4xl);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
h3 {
	font-size: var(--text-3xl);
}
h4 {
	font-size: var(--text-2xl);
}
h5 {
	font-size: var(--text-xl);
}
h6 {
	font-size: var(--text-lg);
}
p {
	font-size: var(--text-base);
	line-height: var(--leading-relaxed);
	color: var(--color-text-muted);
}
p + p {
	margin-top: var(--space-3);
}
a {
	color: var(--color-primary);
	transition:
		color var(--transition-base),
		opacity var(--transition-fast),
		transform var(--transition-fast);
}
a:hover {
	color: #ffd27a;
}
a:active {
	transform: scale(0.98);
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--space-5);
}
.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-6);
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.grid {
	display: grid;
}
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-8);
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-8);
}
.gap-4 {
	gap: var(--space-4);
}
.gap-8 {
	gap: var(--space-8);
}
.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;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2.6rem;
	border-radius: var(--radius-pill);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid rgba(246, 176, 65, 0.55);
	background: linear-gradient(135deg, #f6b041 0, #d38b24 40%, #a86a16 100%);
	color: #1b1206;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		background var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base);
}
.btn:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
	background: linear-gradient(135deg, #ffd27a 0, #f6b041 35%, #c47a19 100%);
}
.btn:active {
	transform: translateY(0) scale(0.99);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}
.btn-outline {
	background: transparent;
	color: var(--color-primary);
	border-color: rgba(246, 176, 65, 0.8);
	box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
	background: var(--color-primary-soft);
	color: #ffd27a;
}
.btn-ghost {
	background: rgba(5, 6, 8, 0.7);
	border-color: rgba(246, 176, 65, 0.25);
	color: var(--color-text);
	backdrop-filter: blur(16px);
}
.btn-ghost:hover {
	background: rgba(21, 25, 38, 0.9);
	border-color: rgba(246, 176, 65, 0.5);
}
.btn:disabled,
.btn[aria-disabled="true"] {
	opacity: 0.6;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}
.input,
.textarea,
.select {
	width: 100%;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-md);
	border: 1px solid rgba(246, 176, 65, 0.25);
	background: radial-gradient(
		circle at top left,
		rgba(246, 176, 65, 0.12),
		rgba(5, 6, 8, 0.95)
	);
	color: var(--color-text);
	outline: none;
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		background var(--transition-base);
}
.input::placeholder,
.textarea::placeholder {
	color: var(--color-text-muted);
	opacity: 0.8;
}
.input:focus,
.textarea:focus,
.select:focus {
	border-color: var(--color-primary);
	box-shadow:
		0 0 0 1px rgba(246, 176, 65, 0.5),
		0 0 30px rgba(246, 176, 65, 0.2);
	background: radial-gradient(
		circle at top left,
		rgba(246, 176, 65, 0.2),
		rgba(5, 6, 8, 0.95)
	);
}
.input[disabled],
.textarea[disabled],
.select[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}
.textarea {
	min-height: 140px;
	resize: vertical;
}
.card {
	position: relative;
	border-radius: var(--radius-xl);
	background: radial-gradient(
		circle at top left,
		rgba(246, 176, 65, 0.14),
		rgba(5, 6, 8, 0.96)
	);
	box-shadow: var(--shadow-sm);
	padding: var(--space-6);
	border: 1px solid rgba(246, 176, 65, 0.28);
	overflow: hidden;
}
.card::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(
		circle at 10% 0,
		rgba(246, 176, 65, 0.12) 0,
		transparent 55%
	);
	opacity: 0.9;
	pointer-events: none;
	mix-blend-mode: screen;
}
.card-elevated {
	box-shadow: var(--shadow-md);
}
.card-ghost {
	background: rgba(6, 7, 10, 0.8);
	backdrop-filter: blur(20px);
	border-color: rgba(246, 176, 65, 0.18);
}
:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 3px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
.input:focus:not(:focus-visible),
.textarea:focus:not(:focus-visible),
.select:focus:not(:focus-visible) {
	outline: none;
}
@media (max-width: 960px) {
	h1 {
		font-size: 2.4rem;
	}
	h2 {
		font-size: 2rem;
	}
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.container,
	.container-wide {
		padding: 0 var(--space-4);
	}
	h1 {
		font-size: 2.1rem;
		letter-spacing: 0.05em;
	}
	h2 {
		font-size: 1.6rem;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
