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

:root {
	--bg: #07100b;
	--bg-deep: #020604;
	--panel: rgba(12, 20, 17, 0.84);
	--panel-strong: rgba(19, 31, 26, 0.96);
	--text: #eef5f0;
	--muted: #a4b7aa;
	--accent: #9ce46c;
	--accent-strong: #b7f17d;
	--accent-warm: #ffcf70;
	--line: rgba(255, 255, 255, 0.08);
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	--font-body: "Manrope", "Segoe UI", sans-serif;
	--font-display: "Sora", "Trebuchet MS", sans-serif;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
	background:
		radial-gradient(circle at 10% 10%, rgba(156, 228, 108, 0.18), transparent 24%),
		radial-gradient(circle at 86% 18%, rgba(255, 207, 112, 0.14), transparent 22%),
		radial-gradient(circle at 76% 82%, rgba(72, 187, 120, 0.12), transparent 24%),
		linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 48%, #040907 100%);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

body::after {
	content: "";
	position: fixed;
	inset: -10%;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 28%, rgba(156, 228, 108, 0.12), transparent 24%),
		radial-gradient(circle at 76% 18%, rgba(255, 207, 112, 0.08), transparent 20%),
		radial-gradient(circle at 72% 74%, rgba(52, 211, 153, 0.08), transparent 18%);
	filter: blur(18px);
	opacity: 0.95;
	animation: pageAuraDrift 14s ease-in-out infinite alternate;
}

a {
	color: #aef27f;
	text-decoration: none;
}

a:hover {
	color: #f8fff8;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	background: rgba(3, 7, 5, 0.84);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	z-index: 1000;
}

.logo img {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(156, 228, 108, 0.58);
	box-shadow: 0 0 24px rgba(156, 228, 108, 0.18);
}

.glanzfix-logo {
	display: flex;
	align-items: center;
}

.glanzfix-wordmark {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-height: 58px;
	padding: 8px 16px 8px 18px;
	border: 1px solid rgba(156, 228, 108, 0.24);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(13, 24, 18, 0.95), rgba(7, 13, 10, 0.95));
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset, 0 14px 30px rgba(0, 0, 0, 0.26);
}

.glanzfix-wordmark:hover {
	color: inherit;
	border-color: rgba(255, 207, 112, 0.34);
}

.glanzfix-wordmark-main {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0.04rem;
	color: #f7fff8;
	line-height: 1;
}

.glanzfix-wordmark-sub {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.18rem;
	text-transform: uppercase;
	color: var(--accent-warm);
	line-height: 1;
}

.navbar {
	position: relative;
}

.user-circle {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: none;
	font-weight: 800;
	font-size: 18px;
	background: linear-gradient(135deg, var(--accent-strong), #8fd85d);
	color: #07110a;
	cursor: pointer;
	box-shadow: 0 12px 24px rgba(156, 228, 108, 0.24);
}

.dropdown {
	position: absolute;
	right: 40px;
	top: 80px;
	min-width: 230px;
	background: var(--panel-strong);
	padding: 12px;
	border-radius: 18px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	z-index: 1100;
}

.dropdown a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--text);
	font-weight: 700;
}

.dropdown a:hover,
.dropdown a.active {
	background: rgba(255, 255, 255, 0.08);
}

.hidden {
	display: none !important;
}

.hero-toggle {
	position: fixed;
	left: 18px;
	top: 98px;
	background: linear-gradient(135deg, var(--accent-strong), #8fd85d);
	color: #07110a;
	padding: 10px 14px;
	border: none;
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 0.04rem;
	box-shadow: 0 12px 24px rgba(156, 228, 108, 0.22);
	cursor: pointer;
	z-index: 1000;
}

.hero-links {
	position: fixed;
	left: 18px;
	top: 148px;
	min-width: 220px;
	background: var(--panel);
	padding: 14px;
	border-radius: 18px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
	z-index: 999;
}

.hero-links a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	font-weight: 700;
	color: var(--text);
}

.hero-links a:hover,
.hero-links a.active {
	background: rgba(255, 255, 255, 0.08);
}

.user-shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 120px 20px 70px;
}

.user-hero {
	display: grid;
	grid-template-columns: 1.6fr 0.95fr;
	gap: 25px;
	margin-bottom: 30px;
}

.hero-copy {
	position: relative;
	overflow: hidden;
	padding: 34px;
	border-radius: 28px;
	background: var(--panel);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-copy::after {
	content: "";
	position: absolute;
	right: -40px;
	top: -34px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(156, 228, 108, 0.18), transparent 70%);
	pointer-events: none;
}

.hero-copy:hover,
.content-card:hover,
.info-strip:hover {
	transform: translateY(-4px);
	border-color: rgba(156, 228, 108, 0.24);
	box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42), 0 0 24px rgba(156, 228, 108, 0.08);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--accent-warm);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14rem;
}

.hero-copy h1 {
	max-width: 720px;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: 0.02rem;
	margin-bottom: 14px;
}

.hero-copy p {
	color: var(--muted);
	max-width: 620px;
	font-size: 1.05rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.84rem;
	font-weight: 700;
	background: rgba(4, 14, 10, 0.92);
	border: 1px solid rgba(156, 228, 108, 0.24);
	color: #f8fbff;
}

.hero-actions,
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.hero-actions {
	margin-top: 26px;
	gap: 14px;
}

.footer-links {
	justify-content: center;
}

.primary-button,
.secondary-button,
.card-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 14px 22px;
	border-radius: 14px;
	font-weight: 800;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.primary-button,
.card-link {
	color: #07110a;
	background: linear-gradient(135deg, var(--accent-strong), #8fd85d);
	box-shadow: 0 18px 34px rgba(156, 228, 108, 0.26), 0 0 22px rgba(156, 228, 108, 0.12);
}

.secondary-button {
	color: var(--text);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(156, 228, 108, 0.22);
	box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.card-link:hover {
	transform: translateY(-4px) scale(1.01);
}

.primary-button:hover,
.card-link:hover {
	color: #07110a;
	box-shadow: 0 24px 42px rgba(156, 228, 108, 0.3), 0 0 28px rgba(156, 228, 108, 0.2);
}

.secondary-button:hover {
	border-color: rgba(156, 228, 108, 0.34);
	box-shadow: 0 18px 30px rgba(2, 6, 23, 0.32), 0 0 20px rgba(156, 228, 108, 0.1);
}

.content-card,
.info-strip {
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.page-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin-bottom: 30px;
}

.content-card {
	position: relative;
	overflow: hidden;
	padding: 24px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(8, 14, 11, 0.98), rgba(5, 10, 8, 0.96));
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.content-card::after {
	content: "";
	position: absolute;
	inset: auto -60px -70px auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(156, 228, 108, 0.1), transparent 70%);
	pointer-events: none;
}

.content-card-highlight,
.important-card {
	background:
		radial-gradient(circle at top right, rgba(156, 228, 108, 0.18), transparent 36%),
		linear-gradient(180deg, rgba(18, 31, 23, 0.98), rgba(9, 16, 12, 0.96));
}

.content-card-highlight {
	border-color: rgba(156, 228, 108, 0.24);
	box-shadow: 0 0 25px rgba(156, 228, 108, 0.1), var(--shadow);
}

.important-card {
	border: 1px solid rgba(156, 228, 108, 0.32);
	box-shadow: 0 0 25px rgba(156, 228, 108, 0.12), var(--shadow);
}

.content-card h2,
.content-card h3,
.info-strip h2 {
	font-family: var(--font-display);
	line-height: 1.05;
}

.content-card h2 {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	margin-bottom: 12px;
}

.content-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.content-card p,
.content-card li,
.info-strip p {
	color: var(--muted);
}

.content-card p + p {
	margin-top: 12px;
}

.card-link {
	width: fit-content;
}

.info-strip {
	margin-top: 30px;
	padding: 24px 26px;
	border-radius: 22px;
	background: var(--panel);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.info-strip h2 {
	font-size: 1.55rem;
	margin-bottom: 6px;
}

.footer {
	width: min(1180px, calc(100% - 40px));
	margin: 30px auto 0;
	padding: 28px 20px 34px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
	color: #94a997;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
	margin: 0;
	width: 100%;
	text-align: center;
}

@keyframes pageAuraDrift {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(1.5%, -1.5%, 0) scale(1.06); }
}

@media (max-width: 900px) {
	.user-hero,
	.page-grid-3 {
		grid-template-columns: 1fr;
	}

	.info-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.footer {
		width: min(100%, calc(100% - 28px));
	}
}

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

	.dropdown {
		right: 18px;
	}

	.hero-copy {
		padding: 26px;
		border-radius: 22px;
	}

	.hero-copy h1 {
		font-size: clamp(2.2rem, 11vw, 3.3rem);
	}

	.info-strip {
		border-radius: 18px;
	}

	.footer {
		width: min(100%, calc(100% - 20px));
		padding: 24px 16px 30px;
	}

	.glanzfix-wordmark {
		min-height: 50px;
		padding: 8px 14px 8px 16px;
	}

	.glanzfix-wordmark-main {
		font-size: 1.02rem;
	}
}