@charset "utf-8";
/* CSS Document 

TemplateMo 610 Aurum Gold

https://templatemo.com/tm-610-aurum-gold

*/

:root {
	--gold-primary: #B8860B;
	--gold-light: #D4A84B;
	--gold-dark: #8B6914;
	--gold-accent: #C9A227;
	--bg-dark: #0F0E0C;
	--bg-card: #1A1815;
	--bg-card-hover: #252119;
	--text-primary: #F5F0E8;
	--text-secondary: #A69F94;
	--text-muted: #6B6560;
	--border-color: #2A2622;
	--success: #4A7C59;
	--danger: #8B3A3A;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Libre Franklin', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.7;
	font-weight: 300;
	overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.03;
	z-index: 9999;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Navigation */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 0;
	transition: all 0.4s ease;
}

.nav.scrolled {
	background: rgba(15, 14, 12, 0.95);
	backdrop-filter: blur(20px);
	padding: 14px 0;
	border-bottom: 1px solid var(--border-color);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--gold-light);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.logo span {
	color: var(--text-primary);
	font-weight: 400;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
}

.nav-links a {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-secondary);
	position: relative;
	padding: 8px 0;
	transition: color 0.4s ease;
}

.nav-links a::before {
	content: '―';
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gold-primary);
	font-size: 10px;
	opacity: 0;
	transition: opacity 0.3s ease, left 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--gold-light);
}

.nav-links a:hover::before,
.nav-links a.active::before {
	opacity: 1;
	left: -16px;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Mobile Menu Styles */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: var(--bg-card);
	z-index: 2000;
	padding: 100px 40px 40px;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 1px solid var(--border-color);
	overflow-y: auto;
}

.mobile-menu.open {
	right: 0;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.open {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.mobile-menu-close:hover {
	border-color: var(--gold-primary);
	color: var(--gold-light);
}

.mobile-nav-links {
	list-style: none;
	margin-bottom: 40px;
}

.mobile-nav-links li {
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
	display: block;
	padding: 20px 0;
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	position: relative;
}

.mobile-nav-links a::after {
	content: '→';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(-10px);
	opacity: 0;
	color: var(--gold-primary);
	transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
	color: var(--gold-light);
	padding-left: 12px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.mobile-menu-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mobile-menu-cta .btn {
	width: 100%;
	text-align: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Libre Franklin', sans-serif;
}

.btn-outline {
	background: transparent;
	border: 1px solid var(--gold-primary);
	color: var(--gold-light);
}

.btn-outline:hover {
	background: var(--gold-primary);
	color: var(--bg-dark);
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
	color: var(--bg-dark);
	border: 1px solid var(--gold-light);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: 1px solid var(--border-color);
	cursor: pointer;
	padding: 12px;
	transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
	border-color: var(--gold-primary);
}

.mobile-menu-btn span {
	width: 20px;
	height: 1.5px;
	background: var(--gold-light);
	transition: all 0.3s ease;
	transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hide body scroll when menu open */
body.menu-open {
	overflow: hidden;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	margin-bottom: 32px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--text-secondary);
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.hero-title {
	font-size: clamp(48px, 6vw, 80px);
	color: var(--text-primary);
	margin-bottom: 24px;
	font-weight: 400;
}

.hero-title .gold {
	color: var(--gold-light);
	font-style: italic;
}

.hero-desc {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 480px;
	margin-bottom: 40px;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
}

.stat-item {
	text-align: left;
}

.stat-value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 36px;
	color: var(--gold-light);
	margin-bottom: 4px;
}

.stat-label {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Price Card */
.hero-visual {
	position: relative;
}

.price-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	padding: 40px;
	position: relative;
}

.price-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 40px;
	right: 40px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.price-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.price-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--text-muted);
}

.price-live {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: var(--success);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.price-live::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--success);
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

.price-main {
	margin-bottom: 32px;
}

.price-value {
	font-family: 'Cormorant Garamond', serif;
	font-size: 64px;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 8px;
}

.price-value .currency {
	font-size: 32px;
	color: var(--gold-light);
	vertical-align: top;
}

.price-change {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: rgba(74, 124, 89, 0.15);
	color: var(--success);
	font-size: 14px;
	font-weight: 500;
}

.price-change.down {
	background: rgba(139, 58, 58, 0.15);
	color: var(--danger);
}

.price-metals {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
}

.metal-item {
	padding: 20px;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
}

.metal-item:hover {
	border-color: var(--gold-primary);
}

.metal-name {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 8px;
}

.metal-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--text-primary);
}

.metal-change {
	font-size: 12px;
	color: var(--success);
	margin-top: 4px;
}

.metal-change.down {
	color: var(--danger);
}

/* Section Styles */
section {
	padding: 120px 0;
}

.section-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 80px;
}

.section-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--gold-primary);
	margin-bottom: 16px;
}

.section-title {
	font-size: clamp(36px, 4vw, 52px);
	color: var(--text-primary);
	margin-bottom: 20px;
}

.section-desc {
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Services Section */
.services {
	background: var(--bg-card);
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.service-card {
	padding: 48px 32px;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gold-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold-dark);
	background: var(--bg-card-hover);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gold-dark);
	color: var(--gold-light);
	font-size: 24px;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	background: var(--gold-primary);
	color: var(--bg-dark);
	border-color: var(--gold-primary);
}

.service-title {
	font-size: 22px;
	color: var(--text-primary);
	margin-bottom: 16px;
}

.service-desc {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

/* Why Gold Section */
.why-gold {
	position: relative;
}

.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.why-content {
	padding-right: 40px;
}

.why-content .section-label {
	text-align: left;
}

.why-content .section-title {
	text-align: left;
}

.why-list {
	list-style: none;
	margin-top: 40px;
}

.why-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border-color);
}

.why-item:last-child {
	border-bottom: none;
}

.why-number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	color: var(--gold-dark);
	line-height: 1;
	min-width: 40px;
}

.why-text h4 {
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 8px;
	font-weight: 500;
}

.why-text p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.7;
}

.why-visual {
	position: relative;
}

.why-image-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 12px;
}

.why-thumb {
	aspect-ratio: 1;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	overflow: hidden;
	position: relative;
	transition: all 0.4s ease;
}

.why-thumb::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 60%);
	z-index: 1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.why-thumb:hover {
	border-color: var(--gold-dark);
	transform: scale(1.02);
	z-index: 2;
}

.why-thumb:hover::before {
	opacity: 1;
}

.why-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.why-thumb:hover img {
	transform: scale(1.08);
}

/* First image spans 2x2 on desktop and tablet */
.why-thumb:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* Mobile - 2 column layout */
@media (max-width: 600px) {
	.why-image-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 8px;
	}

	.why-thumb:nth-child(1) {
		grid-column: span 2;
		grid-row: span 2;
	}

	.why-thumb:nth-child(2),
	.why-thumb:nth-child(3),
	.why-thumb:nth-child(4),
	.why-thumb:nth-child(5) {
		aspect-ratio: 1;
	}
}

/* Products Section */
.products {
	background: var(--bg-card);
}

.products-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 60px;
}

.tab-btn {
	padding: 14px 32px;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.tab-btn:hover {
	border-color: var(--gold-dark);
	color: var(--text-primary);
}

.tab-btn.active {
	background: var(--gold-primary);
	border-color: var(--gold-primary);
	color: var(--bg-dark);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* Products Tab Content */
.products-tab-content {

	display: none;
}

.products-tab-content.active {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

@media (max-width: 1200px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 900px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 480px) {

	.products-tab-content.active,
	.products-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.product-info {
		padding: 20px;
	}

	.product-name {
		font-size: 18px;
	}

	.product-weight {
		font-size: 11px;
		margin-bottom: 12px;
	}

	.product-price {
		font-size: 22px;
	}

	.product-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}

.product-card {
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: all 0.4s ease;
}

.product-card:hover {
	border-color: var(--gold-dark);
	transform: translateY(-4px);
}

.product-image {
	aspect-ratio: 1;
	background: linear-gradient(180deg, #1F1D1A 0%, #151412 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.product-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

.product-info {
	padding: 24px;
}

.product-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	color: var(--text-primary);
	margin-bottom: 4px;
}

.product-weight {
	font-size: 12px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	color: var(--gold-light);
}

.product-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-btn:hover {
	background: var(--gold-primary);
	border-color: var(--gold-primary);
	color: var(--bg-dark);
}

/* Testimonials */
.testimonials {
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: '"';
	position: absolute;
	top: 80px;
	left: 10%;
	font-family: 'Cormorant Garamond', serif;
	font-size: 400px;
	color: var(--gold-dark);
	opacity: 0.05;
	line-height: 1;
	pointer-events: none;
}

.testimonials-wrapper {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.testimonials-slider {
	text-align: center;
	overflow: hidden;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item {
	min-width: 100%;
	padding: 0 60px;
}

.testimonial-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(24px, 3vw, 36px);
	font-style: italic;
	color: var(--text-primary);
	line-height: 1.6;
	margin-bottom: 40px;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.author-name {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-primary);
	letter-spacing: 0.05em;
}

.author-title {
	font-size: 13px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Testimonial Navigation Arrows */
.testimonial-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 0;
}

.testimonial-arrow {
	width: 56px;
	height: 56px;
	background: transparent;
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	transition: all 0.3s ease;
	opacity: 0.5;
}

.testimonial-arrow:hover {
	opacity: 1;
	border-color: var(--gold-primary);
	color: var(--gold-light);
	background: rgba(184, 134, 11, 0.1);
}

.testimonial-arrow svg {
	width: 20px;
	height: 20px;
}

.testimonial-arrow.prev {
	margin-left: -80px;
}

.testimonial-arrow.next {
	margin-right: -80px;
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 48px;
}

.dot {
	width: 8px;
	height: 8px;
	background: var(--border-color);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot:hover {
	background: var(--text-muted);
}

.dot.active {
	background: var(--gold-primary);
	width: 32px;
}

/* Trust Section */
.trust {
	background: var(--bg-card);
	padding: 80px 0;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
	align-items: center;
}

.trust-item {
	text-align: center;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.trust-item:hover {
	opacity: 1;
}

.trust-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	color: var(--text-secondary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* CTA Section */
.cta {
	position: relative;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
}

.cta-inner {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-size: clamp(36px, 4vw, 56px);
	color: var(--text-primary);
	margin-bottom: 24px;
}

.cta-title .gold {
	color: var(--gold-light);
}

.cta-desc {
	font-size: 18px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
}

/* Contact Section */
.contact {
	background: var(--bg-card);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
}

.contact-info h3 {
	font-size: 32px;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.contact-info p {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
}

.contact-details {
	list-style: none;
}

.contact-details li {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
}

.contact-details li:last-child {
	border-bottom: none;
}

.contact-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	color: var(--gold-light);
	font-size: 16px;
	flex-shrink: 0;
}

.contact-text {
	padding-top: 4px;
}

.contact-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.contact-value {
	font-size: 16px;
	color: var(--text-primary);
}

/* Contact Form */
.contact-form {
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	padding: 48px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.form-group {
	margin-bottom: 24px;
}

.form-group:last-of-type {
	margin-bottom: 32px;
}

.form-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
	margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 16px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 15px;
	transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--gold-primary);
	background: var(--bg-card-hover);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--text-muted);
}

.form-select {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A69F94' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.form-textarea {
	min-height: 140px;
	resize: vertical;
}

.form-submit {
	width: 100%;
}

/* Footer */
.footer {
	background: var(--bg-dark);
	padding: 80px 0 40px;
	border-top: 1px solid var(--border-color);
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand .logo {
	margin-bottom: 20px;
}

.footer-brand p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.8;
	max-width: 360px;
}

.footer-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	color: var(--text-primary);
	margin-bottom: 24px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: var(--gold-light);
	padding-left: 8px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
}

.footer-copy {
	font-size: 13px;
	color: var(--text-muted);
}

.footer-socials {
	display: flex;
	gap: 16px;
}

.social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 16px;
	transition: all 0.3s ease;
}

.social-link:hover {
	border-color: var(--gold-primary);
	color: var(--gold-light);
	background: rgba(184, 134, 11, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {

	.nav-links,
	.nav-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.hero-grid,
	.why-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.trust-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	section {
		padding: 80px 0;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.stat-item {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.stat-value {
		font-size: 28px;
		margin-bottom: 0;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-actions,
	.cta-actions {
		flex-direction: column;
	}

	.btn {
		width: 100%;
	}

	.products-tabs {
		flex-wrap: wrap;
	}

	.testimonial-nav {
		display: none;
	}

	.testimonial-item {
		padding: 0 20px;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	.testimonial-arrow.prev {
		margin-left: -20px;
	}

	.testimonial-arrow.next {
		margin-right: -20px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
	animation-delay: 0.1s;
}

.delay-2 {
	animation-delay: 0.2s;
}

.delay-3 {
	animation-delay: 0.3s;
}

.delay-4 {
	animation-delay: 0.4s;
}

/* Aurum Invest customisation */
.logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	letter-spacing: 0.08em;
}

.logo > .logo-mark {
	width: 34px;
	height: 34px;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.logo > .logo-mark img {
	width: 100%;
	height: 100%;
	display: block;
}

.logo > .logo-copy {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.logo > .logo-copy > span {
	color: var(--text-primary);
	font-weight: 400;
}

section[id] {
	scroll-margin-top: 84px;
}

.nav-links {
	gap: 28px;
}

.nav-links a {
	font-size: 12px;
}

.portfolio-card {
	padding: 0;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.portfolio-card::before {
	z-index: 3;
}

.portfolio-image {
	height: 210px;
	position: relative;
	overflow: hidden;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9) contrast(1.04);
	transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-image img {
	transform: scale(1.04);
}

.portfolio-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 20%, rgba(15, 14, 12, 0.92) 100%);
}

.portfolio-chip {
	position: absolute;
	left: 32px;
	bottom: 24px;
	padding: 8px 12px;
	background: rgba(15, 14, 12, 0.8);
	border: 1px solid rgba(212, 168, 75, 0.55);
	color: var(--gold-light);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.portfolio-card .price-header {
	padding: 28px 32px 0;
	margin-bottom: 20px;
}

.portfolio-card .price-main {
	padding: 0 32px;
	margin-bottom: 28px;
}

.portfolio-card .price-metals {
	margin: 0 32px 32px;
}

.price-value.plan-value {
	font-size: 58px;
	color: var(--gold-light);
}

.plan-value span {
	color: var(--text-primary);
}

.portfolio-balance {
	color: var(--text-secondary);
	font-size: 14px;
	letter-spacing: 0.03em;
}

.portfolio-card .metal-item {
	padding: 16px;
}

.portfolio-card .metal-price {
	font-size: 20px;
}

.step-index {
	position: absolute;
	top: 18px;
	right: 22px;
	font-family: 'Cormorant Garamond', serif;
	font-size: 32px;
	color: var(--gold-dark);
	opacity: 0.45;
}

.section-intro {
	color: var(--text-secondary);
	font-size: 16px;
	line-height: 1.8;
}

.gold-monogram {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background:
		radial-gradient(circle at 35% 25%, rgba(212, 168, 75, 0.24), transparent 45%),
		linear-gradient(145deg, #211c12, #0f0e0c);
	color: var(--gold-light);
}

.gold-monogram span {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.85;
}

.gold-monogram small {
	margin-top: 10px;
	font-size: 11px;
	letter-spacing: 0.24em;
	color: var(--text-muted);
}

.plans-header {
	max-width: 720px;
}

.plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.plan-card {
	position: relative;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
	overflow: hidden;
}

.plan-card:hover {
	transform: translateY(-8px);
	border-color: var(--gold-dark);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
	border-color: var(--gold-primary);
	box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.22);
}

.featured-label {
	position: absolute;
	top: 18px;
	right: -40px;
	z-index: 3;
	width: 170px;
	padding: 7px 0;
	background: var(--gold-primary);
	color: var(--bg-dark);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(45deg);
}

.plan-image {
	height: 190px;
	position: relative;
	overflow: hidden;
	background: #17140f;
}

.plan-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 20%, rgba(15, 14, 12, 0.88) 100%);
}

.plan-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.8);
	transition: transform 0.7s ease;
}

.plan-card:hover .plan-image img {
	transform: scale(1.06);
}

.plan-tier {
	position: absolute;
	left: 24px;
	bottom: 18px;
	z-index: 2;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold-light);
}

.plan-content {
	padding: 28px;
}

.plan-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--border-color);
}

.plan-eyebrow {
	display: block;
	margin-bottom: 3px;
	color: var(--text-muted);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.plan-heading h3 {
	font-size: 34px;
	color: var(--text-primary);
}

.plan-price {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	line-height: 1;
	text-align: right;
	white-space: nowrap;
}

.plan-price small {
	font-family: 'Libre Franklin', sans-serif;
	font-size: 9px;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

.plan-metrics {
	padding: 16px 0 20px;
}

.plan-metrics > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	border-bottom: 1px solid rgba(42, 38, 34, 0.72);
}

.plan-metrics > div:last-child {
	border-bottom: 0;
}

.plan-metrics dt {
	color: var(--text-muted);
	font-size: 11px;
}

.plan-metrics dd {
	color: var(--text-primary);
	font-size: 12px;
	font-weight: 500;
	text-align: right;
}

.plan-select {
	width: 100%;
}

.risk-note {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 920px;
	margin: 48px auto 0;
	padding: 22px 24px;
	background: rgba(184, 134, 11, 0.06);
	border: 1px solid rgba(184, 134, 11, 0.28);
	color: var(--text-secondary);
	font-size: 12px;
	line-height: 1.75;
}

.risk-note svg {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--gold-light);
}

.risk-note strong {
	color: var(--text-primary);
	font-weight: 500;
}

.referral {
	position: relative;
	overflow: hidden;
}

.referral::before {
	content: '';
	position: absolute;
	width: 640px;
	height: 640px;
	top: -220px;
	left: -240px;
	border: 1px solid rgba(184, 134, 11, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 70px rgba(184, 134, 11, 0.02),
		0 0 0 140px rgba(184, 134, 11, 0.015);
}

.referral-grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.referral-intro > p {
	max-width: 660px;
	color: var(--text-secondary);
	font-size: 16px;
	line-height: 1.8;
}

.referral-flow {
	display: flex;
	align-items: center;
	margin: 48px 0 26px;
}

.referral-level {
	width: 150px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	text-align: center;
	transition: all 0.3s ease;
}

.referral-level:hover,
.referral-level.level-a {
	border-color: var(--gold-primary);
	background: var(--bg-card-hover);
}

.referral-level span {
	color: var(--text-muted);
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.referral-level strong {
	margin: 4px 0 2px;
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 42px;
	font-weight: 500;
	line-height: 1;
}

.referral-level small {
	color: var(--text-secondary);
	font-size: 9px;
}

.flow-line {
	flex: 1;
	height: 1px;
	min-width: 22px;
	background: linear-gradient(90deg, var(--gold-dark), var(--border-color));
	position: relative;
}

.flow-line::after {
	content: '';
	position: absolute;
	top: -3px;
	right: -1px;
	width: 7px;
	height: 7px;
	background: var(--gold-dark);
	transform: rotate(45deg);
}

.referral-caption {
	font-size: 12px !important;
	color: var(--text-muted) !important;
}

.salary-panel {
	padding: 44px;
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.08), transparent 48%),
		var(--bg-card);
	border: 1px solid var(--border-color);
}

.salary-kicker {
	color: var(--gold-primary);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.salary-panel h3 {
	margin: 12px 0 30px;
	font-size: 30px;
	color: var(--text-primary);
}

.salary-tier {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
	border-top: 1px solid var(--border-color);
}

.salary-tier > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.salary-count {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 40px;
	line-height: 1;
}

.salary-label {
	max-width: 92px;
	color: var(--text-muted);
	font-size: 10px;
	line-height: 1.4;
	text-transform: uppercase;
}

.salary-tier strong {
	color: var(--text-primary);
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 500;
	white-space: nowrap;
}

.salary-tier strong small {
	color: var(--text-muted);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 9px;
	font-weight: 400;
}

.salary-condition {
	margin: 8px 0 28px;
	padding: 16px;
	background: var(--bg-dark);
	border-left: 2px solid var(--gold-dark);
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

.salary-panel .btn {
	width: 100%;
}

.trust-item {
	opacity: 1;
}

.trust-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	border: 1px solid var(--gold-dark);
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
}

.trust-logo {
	font-family: 'Libre Franklin', sans-serif;
	font-size: 10px;
	letter-spacing: 0.12em;
}

.faq-section {
	background: var(--bg-dark);
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 90px;
	align-items: start;
}

.faq-list details {
	border-top: 1px solid var(--border-color);
}

.faq-list details:last-child {
	border-bottom: 1px solid var(--border-color);
}

.faq-list summary {
	position: relative;
	padding: 24px 48px 24px 0;
	color: var(--text-primary);
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	cursor: pointer;
	list-style: none;
}

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

.faq-list summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 8px;
	color: var(--gold-light);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 20px;
	font-weight: 300;
	transform: translateY(-50%);
}

.faq-list details[open] summary::after {
	content: '−';
}

.faq-list details p {
	max-width: 680px;
	padding: 0 48px 24px 0;
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.8;
}

.no-margin {
	margin-bottom: 0;
}

.consent-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 26px;
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.6;
	cursor: pointer;
}

.consent-row input {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	accent-color: var(--gold-primary);
}

.form-feedback {
	display: none;
	margin-top: 18px;
	padding: 14px 16px;
	background: rgba(74, 124, 89, 0.13);
	border: 1px solid rgba(74, 124, 89, 0.38);
	color: #87b796;
	font-size: 12px;
	line-height: 1.6;
}

.form-feedback.visible {
	display: block;
}

.footer-warning {
	margin-bottom: 36px;
	padding: 18px 20px;
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 11px;
	line-height: 1.7;
}

.footer-mini-links {
	display: flex;
	gap: 24px;
}

.footer-mini-links a {
	color: var(--text-muted);
	font-size: 12px;
}

.footer-mini-links a:hover {
	color: var(--gold-light);
}

@media (max-width: 1100px) {
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.referral-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.salary-panel {
		max-width: 680px;
	}
}

@media (max-width: 768px) {
	.portfolio-image {
		height: 180px;
	}

	.plans-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		gap: 46px;
	}

	.referral-flow {
		align-items: stretch;
	}

	.referral-level {
		width: auto;
		flex: 1;
		padding: 18px 8px;
		aspect-ratio: auto;
	}

	.referral-level strong {
		font-size: 34px;
	}

	.flow-line {
		align-self: center;
		min-width: 10px;
	}

	.salary-panel {
		padding: 32px 24px;
	}
}

@media (max-width: 520px) {
	.container {
		padding: 0 18px;
	}

	.logo {
		font-size: 23px;
	}

	.logo > .logo-copy {
		font-size: 23px;
	}

	.hero-title {
		font-size: 45px;
	}

	.hero-desc {
		font-size: 16px;
	}

	.price-value.plan-value {
		font-size: 48px;
	}

	.portfolio-card .price-header {
		padding: 24px 20px 0;
	}

	.portfolio-card .price-main {
		padding: 0 20px;
	}

	.portfolio-card .price-metals {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin: 0 20px 20px;
	}

	.portfolio-card .metal-item {
		padding: 13px;
	}

	.portfolio-card .metal-price {
		font-size: 17px;
	}

	.plan-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.plan-price {
		text-align: left;
	}

	.referral-flow {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.referral-level {
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		padding: 18px 20px;
	}

	.referral-level strong {
		margin-left: auto;
	}

	.referral-level small {
		width: 80px;
		text-align: right;
	}

	.flow-line {
		display: none;
	}

	.salary-tier {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-form {
		padding: 28px 20px;
	}
}

/* Authentication pages */
.auth-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at 12% 18%, rgba(184, 134, 11, 0.09), transparent 32%),
		var(--bg-dark);
}

.auth-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	padding: 24px 0;
	border-bottom: 1px solid rgba(42, 38, 34, 0.72);
	background: rgba(15, 14, 12, 0.78);
	backdrop-filter: blur(18px);
}

.auth-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.auth-back {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.auth-back:hover {
	color: var(--gold-light);
}

.auth-main {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 132px 0 54px;
}

.auth-main-register {
	padding-top: 128px;
}

.auth-shell {
	max-width: 1180px;
	min-height: 690px;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
	margin: 0 auto;
	border: 1px solid var(--border-color);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.auth-visual {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: var(--bg-card);
}

.auth-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.auth-visual-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15, 14, 12, 0.08), rgba(15, 14, 12, 0.96)),
		linear-gradient(90deg, transparent 25%, rgba(15, 14, 12, 0.28));
}

.auth-visual-content {
	position: absolute;
	left: 48px;
	right: 48px;
	bottom: 48px;
	z-index: 2;
}

.auth-kicker {
	display: block;
	margin-bottom: 15px;
	color: var(--gold-light);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.auth-visual-content h1 {
	max-width: 430px;
	margin-bottom: 18px;
	color: var(--text-primary);
	font-size: clamp(38px, 4vw, 56px);
	font-weight: 500;
}

.auth-visual-content p {
	max-width: 440px;
	color: rgba(245, 240, 232, 0.72);
	font-size: 14px;
	line-height: 1.8;
}

.auth-features {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 26px;
}

.auth-features span {
	padding: 8px 10px;
	border: 1px solid rgba(212, 168, 75, 0.34);
	background: rgba(15, 14, 12, 0.52);
	color: var(--text-secondary);
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	backdrop-filter: blur(10px);
}

.auth-steps {
	margin-top: 28px;
	list-style: none;
}

.auth-steps li {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 11px 0;
	border-top: 1px solid rgba(245, 240, 232, 0.13);
	color: rgba(245, 240, 232, 0.82);
	font-size: 12px;
}

.auth-steps span {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 19px;
}

.auth-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 58px 64px;
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.035), transparent 40%),
		var(--bg-card);
}

.auth-panel-register {
	justify-content: flex-start;
	padding-top: 46px;
	padding-bottom: 46px;
}

.auth-panel-heading {
	margin-bottom: 34px;
}

.auth-panel-heading .section-label {
	margin-bottom: 10px;
}

.auth-panel-heading h2 {
	margin-bottom: 11px;
	color: var(--text-primary);
	font-size: 44px;
}

.auth-panel-heading p {
	color: var(--text-secondary);
	font-size: 13px;
}

.auth-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.auth-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.auth-field label,
.auth-label-row label {
	display: block;
	margin-bottom: 9px;
	color: var(--text-secondary);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.auth-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.auth-inline-link {
	margin-bottom: 9px;
	color: var(--gold-light);
	font-size: 10px;
}

.auth-inline-link:hover {
	text-decoration: underline;
}

.optional {
	margin-left: 5px;
	color: var(--text-muted);
	font-size: 8px;
	letter-spacing: 0.08em;
}

.auth-input-wrap {
	position: relative;
}

.auth-input-wrap > svg {
	position: absolute;
	top: 50%;
	left: 17px;
	z-index: 1;
	color: var(--text-muted);
	transform: translateY(-50%);
	pointer-events: none;
}

.auth-input-wrap input {
	width: 100%;
	height: 54px;
	padding: 0 18px;
	border: 1px solid var(--border-color);
	outline: none;
	background: var(--bg-dark);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 13px;
	transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.auth-input-wrap > svg + input {
	padding-left: 50px;
}

.auth-input-wrap input:has(+ .password-toggle) {
	padding-right: 88px;
}

.auth-input-wrap input::placeholder {
	color: var(--text-muted);
}

.auth-input-wrap input:focus {
	border-color: var(--gold-primary);
	background: #171510;
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.08);
}

.password-toggle {
	position: absolute;
	top: 50%;
	right: 15px;
	padding: 5px 0;
	border: 0;
	background: none;
	color: var(--gold-light);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transform: translateY(-50%);
}

.password-strength {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	margin-top: 8px;
}

.password-strength span {
	height: 2px;
	background: var(--border-color);
	transition: background 0.25s ease;
}

.password-strength[data-score="1"] span:nth-child(1) {
	background: var(--danger);
}

.password-strength[data-score="2"] span:nth-child(-n + 2) {
	background: var(--gold-primary);
}

.password-strength[data-score="3"] span {
	background: var(--success);
}

.field-error {
	min-height: 15px;
	margin-top: 5px;
	color: #b86e6e;
	font-size: 9px;
}

.auth-check {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.6;
	cursor: pointer;
}

.auth-check input {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	margin-top: 1px;
	accent-color: var(--gold-primary);
}

.auth-submit {
	width: 100%;
	min-height: 54px;
	margin-top: 2px;
}

.auth-feedback {
	display: none;
	padding: 13px 15px;
	border: 1px solid rgba(74, 124, 89, 0.42);
	background: rgba(74, 124, 89, 0.12);
	color: #8fc29e;
	font-size: 11px;
	line-height: 1.6;
}

.auth-feedback.visible {
	display: block;
}

.auth-feedback.error {
	border-color: rgba(139, 58, 58, 0.48);
	background: rgba(139, 58, 58, 0.13);
	color: #c48787;
}

.auth-switch {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 12px;
	text-align: center;
}

.auth-switch a {
	margin-left: 4px;
	color: var(--gold-light);
	font-weight: 500;
}

.auth-switch a:hover {
	text-decoration: underline;
}

@media (max-width: 980px) {
	.auth-main {
		padding-top: 124px;
	}

	.auth-shell {
		grid-template-columns: 1fr;
		max-width: 700px;
	}

	.auth-visual {
		min-height: 380px;
	}

	.auth-visual-content {
		left: 38px;
		right: 38px;
		bottom: 36px;
	}
}

@media (max-width: 640px) {
	.auth-header {
		padding: 18px 0;
	}

	.auth-header .logo {
		font-size: 21px;
	}

	.auth-header .logo > .logo-copy {
		font-size: 21px;
	}

	.auth-back {
		font-size: 9px;
		letter-spacing: 0.08em;
	}

	.auth-main,
	.auth-main-register {
		padding: 94px 0 24px;
	}

	.auth-shell {
		border-left: 0;
		border-right: 0;
	}

	.auth-visual {
		min-height: 280px;
	}

	.auth-visual-content {
		left: 24px;
		right: 24px;
		bottom: 24px;
	}

	.auth-visual-content h1 {
		font-size: 36px;
	}

	.auth-visual-content p,
	.auth-features,
	.auth-steps {
		display: none;
	}

	.auth-panel,
	.auth-panel-register {
		padding: 36px 24px;
	}

	.auth-panel-heading h2 {
		font-size: 38px;
	}

	.auth-form-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

/* Authenticated user dashboard */
.btn:disabled {
	opacity: 0.62;
	cursor: wait;
	transform: none;
}

.app-page {
	min-height: 100vh;
	background:
		radial-gradient(circle at 85% 0%, rgba(184, 134, 11, 0.07), transparent 30%),
		#0d0c0a;
}

.app-header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.94);
	backdrop-filter: blur(18px);
}

.app-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.app-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-left: auto;
}

.app-nav a {
	padding: 9px 0;
	border-bottom: 1px solid transparent;
	color: var(--text-secondary);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.app-nav a:hover,
.app-nav a.active {
	border-color: var(--gold-primary);
	color: var(--gold-light);
}

.app-user-button {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 7px 12px 7px 7px;
	border: 1px solid var(--border-color);
	background: var(--bg-card);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.app-user-button:hover {
	border-color: var(--gold-dark);
}

.app-user-avatar {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
	color: var(--bg-dark);
	font-family: 'Cormorant Garamond', serif;
	font-size: 15px;
	font-weight: 600;
}

.app-user-button > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.app-user-button strong {
	max-width: 150px;
	overflow: hidden;
	font-size: 11px;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.app-user-button small {
	color: var(--text-muted);
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.app-main {
	padding: 36px 0 72px;
}

.app-loading,
.app-error {
	padding: 48px 20px;
	color: var(--text-secondary);
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	text-align: center;
}

.app-error {
	display: none;
	color: #c48787;
}

.app-error.visible {
	display: block;
}

.wallet-page {
	display: grid;
	gap: 18px;
}

.wallet-hero,
.wallet-grid {
	display: grid;
	gap: 18px;
}

.wallet-hero {
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.wallet-grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.wallet-grid--single {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
}

.wallet-hero-card h1 {
	color: var(--text-primary);
	font-size: clamp(34px, 4.3vw, 52px);
	line-height: 1.05;
}

.wallet-copy {
	margin-top: 10px;
	color: var(--text-secondary);
	font-size: 12px;
	line-height: 1.75;
}

.wallet-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.wallet-step,
.wallet-bullets div {
	padding: 14px;
	border: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.58);
}

.wallet-step strong {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	border: 1px solid rgba(184, 134, 11, 0.38);
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-weight: 600;
}

.wallet-step span,
.wallet-bullets div {
	color: var(--text-secondary);
	font-size: 10px;
	line-height: 1.6;
}

.wallet-balance-card strong {
	display: block;
	margin: 8px 0 10px;
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(34px, 4vw, 46px);
	font-weight: 500;
}

.wallet-balance-card p,
.wallet-panel p {
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

.wallet-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.wallet-panel--side {
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.08), transparent 58%),
		var(--bg-card);
}

.wallet-bullets {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
	opacity: 0.45;
	pointer-events: none;
}

.dashboard-welcome {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.dashboard-welcome h1 {
	margin: 4px 0 8px;
	color: var(--text-primary);
	font-size: clamp(34px, 4.4vw, 54px);
}

.dashboard-welcome h1 span {
	color: var(--gold-light);
	font-style: italic;
}

.dashboard-welcome p {
	color: var(--text-secondary);
	font-size: 14px;
}

.dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.dashboard-stat {
	min-height: 142px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	border: 1px solid var(--border-color);
	background: var(--bg-card);
}

.dashboard-stat.featured-stat {
	border-color: rgba(184, 134, 11, 0.52);
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.13), transparent 65%),
		var(--bg-card);
}

.dashboard-stat > span {
	color: var(--text-muted);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.dashboard-stat strong {
	color: var(--text-primary);
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 500;
}

.dashboard-stat.featured-stat strong {
	color: var(--gold-light);
}

.dashboard-stat small {
	color: var(--text-muted);
	font-size: 9px;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
	gap: 18px;
	margin-bottom: 20px;
	align-items: start;
}

.dashboard-panel {
	padding: 22px;
	border: 1px solid var(--border-color);
	background: var(--bg-card);
	align-self: start;
}

.dashboard-panel-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.panel-kicker {
	display: block;
	margin-bottom: 5px;
	color: var(--gold-primary);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.dashboard-panel h2 {
	color: var(--text-primary);
	font-size: 28px;
}

.dashboard-panel-header > a {
	color: var(--gold-light);
	font-size: 10px;
}

.investment-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.investment-row {
	display: grid;
	grid-template-columns: 58px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 17px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
}

.investment-badge {
	width: 50px;
	height: 50px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gold-dark);
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 14px;
}

.investment-main > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.investment-main strong {
	color: var(--text-primary);
	font-size: 12px;
	font-weight: 500;
}

.investment-main > div:first-child span {
	color: var(--gold-light);
	font-size: 10px;
}

.investment-progress {
	height: 3px;
	margin: 11px 0 7px;
	overflow: hidden;
	background: var(--border-color);
}

.investment-progress span {
	height: 100%;
	display: block;
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.investment-main small {
	color: var(--text-muted);
	font-size: 8px;
}

.investment-status {
	padding: 6px 8px;
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.investment-status.actif {
	border-color: rgba(74, 124, 89, 0.48);
	color: #7dad8b;
}

.investment-status.annule {
	border-color: rgba(139, 58, 58, 0.48);
	color: #b86e6e;
}

.dashboard-empty {
	display: grid;
	grid-template-columns: 112px 1fr;
	gap: 18px;
	align-items: center;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
	overflow: hidden;
}

.dashboard-empty img {
	width: 112px;
	height: 112px;
	object-fit: cover;
}

.dashboard-empty h3 {
	margin-bottom: 5px;
	color: var(--text-primary);
	font-size: 21px;
}

.dashboard-empty p {
	margin-bottom: 9px;
	color: var(--text-muted);
	font-size: 10px;
}

.dashboard-empty a {
	color: var(--gold-light);
	font-size: 10px;
}

.plan-selector-panel {
	margin-bottom: 20px;
}

.plan-selector-copy {
	max-width: 760px;
	margin: 0 0 18px;
	color: var(--text-secondary);
	font-size: 12px;
	line-height: 1.65;
}

.plan-feedback {
	display: none;
	margin-bottom: 16px;
	padding: 12px 16px;
	border: 1px solid rgba(74, 124, 89, 0.36);
	background: rgba(74, 124, 89, 0.12);
	color: #8fc29e;
	font-size: 11px;
	line-height: 1.6;
}

.plan-feedback.visible {
	display: block;
}

.plan-feedback.error {
	border-color: rgba(139, 58, 58, 0.48);
	background: rgba(139, 58, 58, 0.13);
	color: #c48787;
}

.plan-selector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 14px;
}

.dashboard-plan-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--border-color);
	background:
		linear-gradient(160deg, rgba(184, 134, 11, 0.06), transparent 55%),
		var(--bg-dark);
}

.dashboard-plan-card.unavailable {
	border-color: rgba(184, 134, 11, 0.2);
}

.dashboard-plan-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.dashboard-plan-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	padding: 8px 12px;
	border: 1px solid rgba(184, 134, 11, 0.38);
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-weight: 600;
}

.dashboard-plan-price {
	color: var(--text-primary);
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
	font-weight: 500;
}

.dashboard-plan-card h3 {
	color: var(--text-primary);
	font-size: 25px;
}

.dashboard-plan-card p {
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

.dashboard-plan-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.dashboard-plan-metrics div {
	padding: 12px;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.01);
}

.dashboard-plan-metrics span {
	display: block;
	margin-bottom: 5px;
	color: var(--text-muted);
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.dashboard-plan-metrics strong {
	color: var(--text-primary);
	font-size: 11px;
	font-weight: 500;
}

.dashboard-plan-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
}

.dashboard-plan-note {
	color: var(--text-muted);
	font-size: 9px;
	line-height: 1.6;
}

.dashboard-plan-note.is-ready {
	color: #8fc29e;
}

.dashboard-plan-button {
	min-width: 178px;
	justify-content: center;
}

.plan-selector-empty {
	margin-top: 8px;
}

.finance-panel {
	margin-bottom: 20px;
}

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

.finance-card {
	padding: 18px;
	border: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.72);
}

.finance-card h3 {
	color: var(--text-primary);
	font-size: 23px;
}

.finance-card p {
	margin: 6px 0 14px;
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

.finance-card--action {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 190px;
}

.finance-grid--actions .wallet-actions {
	margin-top: auto;
}

.finance-form {
	display: grid;
	gap: 14px;
}

.finance-field {
	display: grid;
	gap: 7px;
}

.finance-field span {
	color: var(--text-muted);
	font-size: 8px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.finance-field input,
.finance-field select {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 11px;
}

.finance-field input:focus,
.finance-field select:focus {
	border-color: rgba(184, 134, 11, 0.5);
	outline: none;
}

.finance-submit {
	justify-content: center;
}

.finance-feedback {
	min-height: 16px;
	color: var(--text-muted);
	font-size: 10px;
	line-height: 1.6;
}

.finance-feedback.visible {
	color: #8fc29e;
}

.finance-feedback.error {
	color: #c48787;
}

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

.finance-history-card {
	padding: 22px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
}

.finance-history-card h3 {
	color: var(--text-primary);
	font-size: 20px;
}

.finance-list {
	display: grid;
	gap: 10px;
}

.finance-row {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	padding: 14px;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.01);
}

.finance-badge {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(184, 134, 11, 0.35);
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 16px;
}

.finance-row-main {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.finance-row-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.finance-row-heading strong {
	color: var(--text-primary);
	font-size: 12px;
	font-weight: 500;
}

.finance-status {
	padding: 5px 7px;
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.finance-status.en_attente {
	border-color: rgba(184, 134, 11, 0.32);
	color: var(--gold-light);
}

.finance-status.valide {
	border-color: rgba(74, 124, 89, 0.36);
	color: #8fc29e;
}

.finance-status.rejete {
	border-color: rgba(139, 58, 58, 0.42);
	color: #c48787;
}

.finance-row-main small {
	color: var(--text-muted);
	font-size: 8px;
	line-height: 1.5;
}

.finance-row-note {
	color: var(--text-secondary);
	font-size: 9px;
	line-height: 1.5;
	word-break: break-word;
}

.finance-empty {
	padding: 18px 0 0;
	color: var(--text-muted);
	font-size: 10px;
}

.referral-card {
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.09), transparent 52%),
		var(--bg-card);
}

.referral-card > p {
	margin: 8px 0 18px;
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

.referral-code-box {
	padding: 14px;
	border: 1px solid rgba(184, 134, 11, 0.35);
	background: var(--bg-dark);
}

.referral-code-box span {
	display: block;
	margin-bottom: 5px;
	color: var(--text-muted);
	font-size: 8px;
	text-transform: uppercase;
}

.referral-code-box strong {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 23px;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.dashboard-levels {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 12px;
}

.dashboard-levels div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px;
	border: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.58);
}

.dashboard-levels span {
	color: var(--text-muted);
	font-size: 9px;
}

.dashboard-levels strong {
	color: var(--text-primary);
	font-size: 11px;
	font-weight: 500;
}

.copy-feedback {
	min-height: 16px;
	margin-top: 12px;
	color: var(--text-muted);
	font-size: 9px;
	line-height: 1.5;
	word-break: break-all;
}

.salary-card {
	margin-top: 14px;
	padding-top: 18px;
	border-top: 1px solid rgba(184, 134, 11, 0.18);
	display: grid;
	gap: 14px;
}

.salary-card h3 {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 25px;
	line-height: 1.1;
}

.salary-card p {
	margin: 0;
	color: var(--text-secondary);
	font-size: 11px;
	line-height: 1.7;
}

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

.salary-progress div,
.salary-ladder article,
.salary-history-item {
	padding: 14px;
	border: 1px solid var(--border-color);
	background: rgba(15, 14, 12, 0.58);
}

.salary-progress span,
.salary-ladder span,
.salary-history-item span {
	display: block;
	color: var(--text-muted);
	font-size: 8px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.salary-progress strong,
.salary-ladder strong,
.salary-history-item strong {
	display: block;
	margin-top: 6px;
	color: var(--text-primary);
	font-size: 14px;
	font-weight: 600;
}

.salary-ladder {
	display: grid;
	gap: 10px;
}

.salary-ladder small,
.salary-history-item small {
	display: block;
	margin-top: 8px;
	color: var(--text-secondary);
	font-size: 10px;
	line-height: 1.5;
}

.salary-history {
	display: grid;
	gap: 8px;
}

.movements-panel {
	padding-bottom: 8px;
}

.movement-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-top: 1px solid var(--border-color);
}

.movement-label {
	display: flex;
	align-items: center;
	gap: 13px;
}

.movement-label > span {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid var(--border-color);
	color: var(--gold-light);
}

.movement-label > div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.movement-label strong {
	color: var(--text-primary);
	font-size: 11px;
	font-weight: 500;
}

.movement-label small {
	color: var(--text-muted);
	font-size: 8px;
	text-transform: capitalize;
}

.movement-amount {
	font-size: 11px;
	font-weight: 500;
}

.movement-amount.credit {
	color: #7dad8b;
}

.movement-amount.debit {
	color: #b86e6e;
}

.movement-empty {
	padding: 30px 0;
	border-top: 1px solid var(--border-color);
	color: var(--text-muted);
	font-size: 11px;
	text-align: center;
}

@media (max-width: 1050px) {
	.dashboard-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.dashboard-grid {
		grid-template-columns: 1fr;
	}

	.wallet-hero,
	.wallet-grid,
	.wallet-grid--single {
		grid-template-columns: 1fr;
	}

	.plan-selector-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.finance-grid,
	.finance-history-grid,
	.salary-progress {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.app-nav {
		display: none;
	}

	.app-header .logo > .logo-copy {
		font-size: 21px;
	}

	.dashboard-welcome {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 22px;
	}

	.dashboard-actions {
		width: 100%;
	}

	.dashboard-actions .btn {
		flex: 1;
	}

	.wallet-steps {
		grid-template-columns: 1fr;
	}

	.plan-selector-grid {
		grid-template-columns: 1fr;
	}

	.finance-row {
		grid-template-columns: 1fr;
	}

	.finance-badge {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 560px) {
	.app-header .logo > .logo-copy {
		display: none;
	}

	.app-user-button strong {
		max-width: 120px;
	}

	.app-main {
		padding-top: 28px;
	}

	.dashboard-stats {
		grid-template-columns: 1fr;
	}

	.dashboard-stat {
		min-height: 130px;
	}

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

	.dashboard-panel {
		padding: 18px 15px;
	}

	.investment-row {
		grid-template-columns: 48px 1fr;
	}

	.investment-badge {
		width: 42px;
		height: 42px;
	}

	.investment-status {
		grid-column: 2;
		justify-self: start;
	}

	.investment-main > div:first-child {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.dashboard-empty {
		grid-template-columns: 1fr;
		padding-bottom: 20px;
		text-align: center;
	}

	.dashboard-empty img {
		width: 100%;
		height: 110px;
	}

	.dashboard-plan-metrics {
		grid-template-columns: 1fr;
	}

	.dashboard-plan-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.dashboard-plan-button {
		width: 100%;
	}

	.wallet-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.finance-card,
	.finance-history-card {
		padding: 18px 15px;
	}

	.finance-row-heading {
		align-items: flex-start;
		flex-direction: column;
	}
}

.aurum-toast-root {
	position: fixed;
	top: 24px;
	right: 24px;
	z-index: 2147483647;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: min(360px, calc(100vw - 24px));
	pointer-events: none;
}

.aurum-toast {
	position: relative;
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px 16px 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(28, 37, 59, 0.98), rgba(16, 18, 28, 0.98));
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
	color: #fff;
	opacity: 0;
	transform: translateY(-8px) translateX(14px);
	transition: opacity 0.24s ease, transform 0.24s ease;
	pointer-events: auto;
	overflow: hidden;
}

.aurum-toast.visible {
	opacity: 1;
	transform: translateY(0) translateX(0);
}

.aurum-toast::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: rgba(255, 255, 255, 0.35);
}

.aurum-toast--success {
	background: linear-gradient(135deg, #2f7a2f, #1f5f25);
}

.aurum-toast--success::before {
	background: #69d27a;
}

.aurum-toast--error {
	background: linear-gradient(135deg, #a43d3d, #7a2424);
}

.aurum-toast--error::before {
	background: #f08c8c;
}

.aurum-toast--info {
	background: linear-gradient(135deg, #4b63a6, #304b87);
}

.aurum-toast--info::before {
	background: #b8c7ff;
}

.aurum-toast--loading {
	background: linear-gradient(135deg, #4b63a6, #304b87);
}

.aurum-toast--loading::before {
	background: #e6eeff;
}

.aurum-toast__icon {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.aurum-toast__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 2px;
}

.aurum-toast__title {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.82;
}

.aurum-toast__message {
	font-size: 14px;
	line-height: 1.5;
}

.aurum-toast__close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.aurum-toast__close:hover {
	color: #fff;
}

@media (max-width: 560px) {
	.aurum-toast-root {
		top: 12px;
		right: 12px;
		left: 12px;
		width: auto;
	}

	.aurum-toast {
		padding-right: 34px;
	}
}

.notyf {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	box-sizing: border-box;
	padding: 24px;
	pointer-events: none;
}

.notyf__toast {
	position: relative;
	display: block;
	width: 360px;
	max-width: calc(100vw - 32px);
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid rgba(184, 134, 11, 0.32);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
	transform: translateY(25%);
	opacity: 0;
	animation: notyf-fadeinup 0.3s ease-in forwards;
	flex-shrink: 0;
	pointer-events: auto;
}

.notyf__toast--upper {
	margin-bottom: 14px;
}

.notyf__toast--lower {
	margin-top: 14px;
}

.notyf__toast--disappear {
	animation: notyf-fadeoutdown 0.3s forwards;
	animation-delay: 0.25s;
}

.notyf__toast--disappear .notyf__wrapper {
	animation: notyf-fadeoutdown 0.3s forwards;
}

.notyf__toast--disappear .notyf__dismiss {
	animation: notyf-fadeoutright 0.3s forwards;
}

.notyf__wrapper {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	min-height: 64px;
	padding: 15px 48px 15px 16px;
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(212, 168, 75, 0.08), transparent 52%),
		linear-gradient(180deg, rgba(30, 27, 22, 0.98), rgba(15, 14, 12, 0.98));
}

.notyf__icon {
	width: 24px;
	height: 24px;
	margin-right: 14px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(212, 168, 75, 0.16);
	border: 1px solid rgba(212, 168, 75, 0.35);
	font-size: 1.3em;
	line-height: 1;
	text-align: center;
	opacity: 0;
	animation: notyf-fadeinup 0.3s forwards;
	animation-delay: 0.3s;
}

.notyf__icon > * {
	font-style: normal;
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
}

.notyf__message {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--text-primary);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
	opacity: 0;
	animation: notyf-fadeinup 0.3s forwards;
	animation-delay: 0.25s;
}

.notyf__ripple {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	transform-origin: bottom right;
	transform: scale(0) translateY(-51%) translateX(13%);
	animation: ripple 0.4s ease-out forwards;
	z-index: 5;
}

.notyf__dismiss {
	position: absolute;
	top: 0;
	right: 6px;
	width: 32px;
	height: 100%;
	margin-right: 0;
	animation: notyf-fadeinleft 0.3s forwards;
	animation-delay: 0.35s;
	opacity: 0;
}

.notyf__dismiss-btn {
	width: 100%;
	height: 100%;
	border: none;
	background-color: transparent;
	cursor: pointer;
	opacity: 0.72;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}

.notyf__dismiss-btn:hover {
	opacity: 1;
	background-color: rgba(212, 168, 75, 0.08);
}

.notyf__dismiss-btn:before,
.notyf__dismiss-btn:after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 1px);
	width: 2px;
	height: 11px;
	border-radius: 3px;
	background: rgba(212, 168, 75, 0.9);
}

.notyf__toast.aurum-notyf::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--gold-light), var(--gold-primary));
	z-index: 20;
}

.notyf__toast.aurum-notyf .notyf__message strong {
	display: inline-block;
	margin-bottom: 4px;
	color: var(--gold-light);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.notyf__toast.aurum-notyf .notyf__icon > * {
	color: var(--gold-light) !important;
}

.notyf__toast.aurum-notyf--error .notyf__icon,
.notyf__toast.aurum-notyf--info .notyf__icon,
.notyf__toast.aurum-notyf--success .notyf__icon,
.notyf__toast.aurum-notyf--loading .notyf__icon {
	box-shadow: inset 0 0 0 1px rgba(212, 168, 75, 0.08);
}

.aurum-swal {
	width: min(34rem, calc(100vw - 2rem));
	border-radius: 18px;
	border: 1px solid rgba(184, 134, 11, 0.34);
	background:
		linear-gradient(145deg, rgba(212, 168, 75, 0.08), transparent 56%),
		linear-gradient(180deg, rgba(26, 24, 21, 0.98), rgba(15, 14, 12, 0.98)) !important;
	color: var(--text-primary);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46);
}

.aurum-swal-title {
	color: var(--gold-light) !important;
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.aurum-swal-text {
	color: var(--text-primary) !important;
	font-size: 15px;
	line-height: 1.7;
}

.aurum-swal-confirm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	padding: 13px 24px;
	border: 1px solid var(--gold-light);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
	color: var(--bg-dark);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.aurum-swal-confirm:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(184, 134, 11, 0.28);
	filter: brightness(1.02);
}

.aurum-swal-confirm:focus-visible {
	outline: 2px solid rgba(212, 168, 75, 0.45);
	outline-offset: 3px;
}

.swal2-popup.aurum-swal .swal2-loader {
	border-color: rgba(212, 168, 75, 0.28) transparent rgba(212, 168, 75, 0.82) transparent;
}

.swal2-popup.aurum-swal .swal2-timer-progress-bar {
	background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.admin-page .app-main {
	padding-top: 36px;
}

.admin-content {
	display: grid;
	gap: 22px;
}

.admin-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.9fr);
	gap: 24px;
	align-items: stretch;
	padding: 32px;
}

.admin-hero-copy {
	display: grid;
	gap: 14px;
	align-content: start;
}

.admin-hero-copy h1 {
	font-size: clamp(42px, 5vw, 64px);
	line-height: 0.95;
}

.admin-hero-copy p {
	max-width: 760px;
	color: var(--text-secondary);
}

.admin-hero-actions {
	flex-wrap: wrap;
}

.admin-hero-card {
	padding: 26px;
	border: 1px solid var(--border-color);
	background:
		linear-gradient(145deg, rgba(184, 134, 11, 0.08), transparent 48%),
		linear-gradient(180deg, rgba(26, 24, 21, 0.98), rgba(15, 14, 12, 0.98));
	display: grid;
	gap: 18px;
}

.admin-hero-card h2 {
	color: var(--gold-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 34px;
}

.admin-hero-summary {
	display: grid;
	gap: 12px;
}

.admin-hero-summary div {
	padding: 14px 15px;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.015);
	display: grid;
	gap: 4px;
}

.admin-hero-summary span {
	color: var(--text-muted);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.admin-hero-summary strong {
	color: var(--text-primary);
	font-size: 16px;
}

.admin-stats {
	margin-bottom: 0;
}

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

.admin-grid-wide {
	align-items: start;
}

.admin-panel {
	display: grid;
	gap: 18px;
}

.admin-toolbar {
	display: flex;
	align-items: center;
	gap: 10px;
}

.admin-toolbar input {
	width: 100%;
	min-width: 260px;
	padding: 12px 14px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 11px;
}

.admin-toolbar input:focus,
.admin-setting input:focus {
	border-color: rgba(184, 134, 11, 0.5);
	outline: none;
}

.admin-table-wrap {
	overflow: auto;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.014);
}

.admin-table {
	width: 100%;
	min-width: 820px;
	border-collapse: collapse;
}

.admin-table th,
.admin-table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	text-align: left;
	vertical-align: top;
}

.admin-table th {
	color: var(--gold-light);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.admin-table td strong,
.admin-table td small {
	display: block;
}

.admin-table td small {
	margin-top: 4px;
	color: var(--text-muted);
	font-size: 10px;
}

.admin-table tr:hover td {
	background: rgba(255, 255, 255, 0.01);
}

.admin-row-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.admin-mini-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
	border: 1px solid var(--border-color);
	background: transparent;
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.admin-mini-btn:hover {
	transform: translateY(-1px);
	border-color: rgba(184, 134, 11, 0.35);
}

.admin-mini-btn.primary {
	border-color: var(--gold-primary);
	background: var(--gold-primary);
	color: var(--bg-dark);
}

.admin-mini-btn.danger {
	border-color: rgba(196, 135, 135, 0.35);
	color: #d9a4a4;
}

.admin-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.admin-tag.info {
	background: rgba(47, 90, 168, 0.12);
	border-color: rgba(47, 90, 168, 0.28);
	color: #b8c7ff;
}

.admin-tag.success {
	background: rgba(74, 124, 89, 0.12);
	border-color: rgba(74, 124, 89, 0.28);
	color: #9dccaa;
}

.admin-tag.warning {
	background: rgba(184, 134, 11, 0.12);
	border-color: rgba(184, 134, 11, 0.28);
	color: var(--gold-light);
}

.admin-tag.danger {
	background: rgba(139, 58, 58, 0.12);
	border-color: rgba(139, 58, 58, 0.28);
	color: #d8a0a0;
}

.admin-empty {
	padding: 18px;
	border: 1px dashed var(--border-color);
	color: var(--text-muted);
	font-size: 11px;
}

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

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

.admin-setting {
	display: grid;
	gap: 7px;
}

.admin-setting span {
	color: var(--text-muted);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.admin-setting input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid var(--border-color);
	background: var(--bg-dark);
	color: var(--text-primary);
	font-family: 'Libre Franklin', sans-serif;
	font-size: 11px;
}

@media (max-width: 1100px) {
	.admin-hero,
	.admin-grid,
	.admin-settings-grid,
	.admin-plan-grid {
		grid-template-columns: 1fr;
	}

	.admin-table {
		min-width: 700px;
	}
}

@media (max-width: 720px) {
	.admin-page .app-main {
		padding-top: 24px;
	}

	.admin-hero,
	.admin-panel {
		padding: 18px;
	}

	.admin-hero-copy h1 {
		font-size: 34px;
	}

	.admin-hero-actions .btn,
	.admin-toolbar input,
	.admin-mini-btn {
		width: 100%;
	}

	.admin-row-actions {
		flex-direction: column;
	}

	.admin-table {
		min-width: 580px;
	}
}

.swal2-popup.aurum-swal-toast {
	width: min(30rem, calc(100vw - 1.5rem));
	padding: 0.85rem 1rem 0.95rem;
	border-radius: 16px;
	border: 1px solid rgba(184, 134, 11, 0.32);
	background:
		linear-gradient(145deg, rgba(212, 168, 75, 0.08), transparent 58%),
		linear-gradient(180deg, rgba(26, 24, 21, 0.98), rgba(15, 14, 12, 0.98)) !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.swal2-popup.aurum-swal-toast .swal2-title {
	margin: 0;
	color: var(--text-primary) !important;
	font-family: 'Libre Franklin', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.swal2-popup.aurum-swal-toast .swal2-html-container {
	margin: 6px 0 0;
	color: var(--text-secondary) !important;
	font-size: 13px;
	line-height: 1.5;
}

.swal2-popup.aurum-swal-toast .swal2-icon {
	width: 1.9em;
	height: 1.9em;
	margin: 0 0.8em 0 0;
	border-color: rgba(212, 168, 75, 0.42) !important;
	color: var(--gold-light) !important;
}

.swal2-popup.aurum-swal-toast .swal2-icon .swal2-success-ring,
.swal2-popup.aurum-swal-toast .swal2-icon .swal2-x-mark,
.swal2-popup.aurum-swal-toast .swal2-icon .swal2-success-line-tip,
.swal2-popup.aurum-swal-toast .swal2-icon .swal2-success-line-long,
.swal2-popup.aurum-swal-toast .swal2-icon .swal2-icon-content {
	color: var(--gold-light) !important;
}

.swal2-popup.aurum-swal-toast .swal2-success-circular-line-left,
.swal2-popup.aurum-swal-toast .swal2-success-circular-line-right,
.swal2-popup.aurum-swal-toast .swal2-success-fix {
	background: transparent !important;
}

.swal2-popup.aurum-swal-toast .swal2-close {
	width: 1.8em;
	height: 1.8em;
	color: rgba(212, 168, 75, 0.84) !important;
	font-size: 1.3rem;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.swal2-popup.aurum-swal-toast .swal2-close:hover {
	color: var(--gold-light) !important;
	background: rgba(212, 168, 75, 0.08) !important;
}

.swal2-popup.aurum-swal-toast::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	border-radius: 16px 0 0 16px;
	background: linear-gradient(180deg, var(--gold-light), var(--gold-primary));
}

.swal2-container.swal2-top-end {
	padding: 1rem;
}

.notyf__dismiss-btn:before {
	transform: rotate(45deg);
}

.notyf__dismiss-btn:after {
	transform: rotate(-45deg);
}

@keyframes notyf-fadeinup {
	from {
		opacity: 0;
		transform: translateY(25%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes notyf-fadeinleft {
	from {
		opacity: 0;
		transform: translateX(25%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes notyf-fadeoutright {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(25%);
	}
}

@keyframes notyf-fadeoutdown {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(25%);
	}
}

@keyframes ripple {
	from {
		transform: scale(0) translateY(-45%) translateX(13%);
	}
	to {
		transform: scale(1) translateY(-45%) translateX(13%);
	}
}

@media (max-width: 480px) {
	.notyf {
		padding: 12px;
	}

	.notyf__toast {
		max-width: none;
		width: 100%;
		border-radius: 10px;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	}

	.notyf__dismiss {
		width: 40px;
	}
}
