/* Garam Glass – one page demó (Konstrakt-szerű sötét / üveg hangulat) */

:root {
	--gg-bg-deep: #07090d;
	--gg-graphite: #0f1218;
	--gg-panel: #141a22;
	--gg-panel-2: #1a222c;
	--gg-text: #e8eaef;
	--gg-muted: rgba(232, 234, 239, 0.62);
	--gg-accent: #5ec8e0;
	--gg-accent-dim: rgba(94, 200, 224, 0.35);
	--gg-accent-glow: rgba(94, 200, 224, 0.12);
	--gg-line: rgba(255, 255, 255, 0.08);
	--gg-header-h: 4.25rem;
	--font-sans: "DM Sans", system-ui, sans-serif;
	--font-display: "Outfit", var(--font-sans);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gg-header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--gg-text);
	background: var(--gg-bg-deep);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, .navbar-brand {
	font-family: var(--font-display);
	letter-spacing: -0.02em;
}

a {
	color: var(--gg-accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #8addef;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.text-muted-custom {
	color: var(--gg-muted) !important;
}

.text-accent {
	color: var(--gg-accent) !important;
}

.text-white-75 {
	color: rgba(255, 255, 255, 0.78) !important;
}

.py-lg-6 {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
	.py-lg-6 {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

/* —— Header —— */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
	transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	border-bottom: 1px solid transparent;
	background: rgba(7, 9, 13, 0.35);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
	background: rgba(10, 13, 18, 0.94);
	border-bottom-color: var(--gg-line);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
	color: var(--gg-text) !important;
	font-weight: 500;
	font-size: 1.15rem;
}

.navbar-brand strong {
	font-weight: 700;
	color: #fff;
}

.brand-mark {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.35rem;
	background: linear-gradient(135deg, var(--gg-accent), #2a8fad 55%, #1e3a45);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 24px var(--gg-accent-glow);
}

.brand-logo-img {
	height: 2.35rem;
	width: auto;
	max-width: min(12rem, 42vw);
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

@media (min-width: 992px) {
	.brand-logo-img {
		height: 2.55rem;
		max-width: 13rem;
	}
}

.site-header .nav-link {
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.5rem 0.75rem !important;
	border-radius: 0.25rem;
}

.site-header .nav-link:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.06);
}

.site-header .nav-cta {
	background: rgba(94, 200, 224, 0.15);
	border: 1px solid var(--gg-accent-dim);
	color: #dff6fc !important;
	margin-top: 0.25rem;
}

@media (min-width: 992px) {
	.site-header .nav-cta {
		margin-top: 0;
		margin-left: 0.5rem;
	}
}

.navbar-toggler {
	padding: 0.35rem 0.55rem;
}

.navbar-toggler-icon {
	filter: invert(1) brightness(1.2);
	opacity: 0.85;
}

/* —— Hero & parallax —— */
.parallax-section {
	position: relative;
	overflow: hidden;
}

.parallax-layer--bg {
	position: absolute;
	inset: -8%;
	background-size: cover;
	background-position: center;
	will-change: transform;
	transform: translate3d(0, 0, 0) scale(1.06);
}

.parallax-layer--bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 50% 20%, rgba(94, 200, 224, 0.08), transparent 55%),
		linear-gradient(180deg, rgba(7, 9, 13, 0.25) 0%, rgba(7, 9, 13, 0.75) 100%);
	pointer-events: none;
}

.parallax-section:not([data-parallax-img]) .parallax-layer--bg {
	background-image:
		linear-gradient(145deg, #0d1520 0%, #0a1018 40%, #0c181f 100%);
}

.parallax-layer--veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 9, 13, 0.35) 0%, rgba(7, 9, 13, 0.82) 100%);
	pointer-events: none;
}

.parallax-layer--veil-strong {
	background: linear-gradient(180deg, rgba(7, 9, 13, 0.55) 0%, rgba(7, 9, 13, 0.88) 100%);
}

.hero {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding-top: var(--gg-header-h);
	padding-bottom: 4rem;
}

.hero-inner {
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	color: var(--gg-accent);
}

.hero-title {
	font-size: clamp(1.85rem, 4vw + 1rem, 3.25rem);
	font-weight: 700;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 1.25rem;
	text-wrap: balance;
}

.hero-lead {
	font-size: clamp(1rem, 1.1vw + 0.9rem, 1.2rem);
	color: rgba(255, 255, 255, 0.78);
	max-width: 40rem;
}

.rail {
	position: relative;
	padding-top: 5rem;
	padding-bottom: 5rem;
}

/* —— Buttons —— */
.btn-glass {
	--bs-btn-color: #eaf6fa;
	--bs-btn-border-color: rgba(255, 255, 255, 0.18);
	--bs-btn-bg: rgba(255, 255, 255, 0.04);
	--bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
	--bs-btn-hover-border-color: rgba(255, 255, 255, 0.28);
	--bs-btn-hover-color: #fff;
	backdrop-filter: blur(8px);
	font-weight: 600;
	border-width: 1px;
}

.btn-glass-primary {
	--bs-btn-bg: rgba(94, 200, 224, 0.18);
	--bs-btn-border-color: rgba(94, 200, 224, 0.55);
	--bs-btn-color: #e8fbff;
	--bs-btn-hover-bg: rgba(94, 200, 224, 0.32);
	--bs-btn-hover-border-color: var(--gg-accent);
	--bs-btn-hover-color: #fff;
	box-shadow: 0 0 24px var(--gg-accent-glow);
}

/* —— Sections —— */
.section {
	position: relative;
}

.section--dark {
	background: var(--gg-graphite);
}

.section--graphite {
	background: linear-gradient(180deg, var(--gg-panel) 0%, var(--gg-bg-deep) 100%);
}

.section--footer-gap {
	padding-bottom: 2rem;
}

.section-title {
	font-size: clamp(1.65rem, 2vw + 1rem, 2.35rem);
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.75rem;
}

.section-sub {
	font-size: 1.05rem;
}

.section-text {
	color: var(--gg-muted);
	font-size: 1.08rem;
	max-width: 48rem;
}

/* —— Glass panels —— */
.glass-panel {
	background: rgba(20, 26, 34, 0.72);
	border: 1px solid var(--gg-line);
	border-radius: 0.65rem;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.glass-panel-strong {
	background: rgba(18, 24, 32, 0.85);
	border: 1px solid rgba(94, 200, 224, 0.2);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-tile {
	padding: 1.5rem 1rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--gg-line);
	border-radius: 0.6rem;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-tile:hover {
	transform: translateY(-3px);
	border-color: rgba(94, 200, 224, 0.25);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 1rem;
	color: var(--gg-accent);
	background: rgba(94, 200, 224, 0.1);
	border-radius: 0.5rem;
	border: 1px solid var(--gg-accent-dim);
}

.feature-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

/* —— Service cards —— */
.service-card {
	background: rgba(12, 16, 22, 0.9);
	border: 1px solid var(--gg-line);
	border-radius: 0.65rem;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(94, 200, 224, 0.22);
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.service-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--gg-panel-2);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__media img {
	transform: scale(1.06);
}

.service-card__placeholder {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(120deg, rgba(94, 200, 224, 0.12) 0%, transparent 45%),
		repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0 8px, transparent 8px 16px);
}

.service-card__body {
	padding: 1.35rem 1.4rem 1.5rem;
}

.service-card__title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0.5rem;
}

.service-card__text {
	font-size: 0.95rem;
	color: var(--gg-muted);
	line-height: 1.55;
}

.mini-glass {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0.55rem;
	backdrop-filter: blur(10px);
	transition: background 0.25s ease, border-color 0.25s ease;
}

.mini-glass:hover {
	background: rgba(94, 200, 224, 0.08);
	border-color: rgba(94, 200, 224, 0.35);
}

.mini-glass__title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.35;
}

/* —— Timeline —— */
.timeline {
	position: relative;
	max-width: 44rem;
	margin: 0 auto;
	padding-left: 0.5rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 1.15rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 2px;
	background: linear-gradient(180deg, var(--gg-accent-dim), rgba(255, 255, 255, 0.06));
}

.timeline__item {
	position: relative;
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
}

.timeline__item:last-child {
	margin-bottom: 0;
}

.timeline__marker {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	color: #062028;
	background: linear-gradient(145deg, var(--gg-accent), #3a9db5);
	box-shadow: 0 0 0 4px rgba(94, 200, 224, 0.15);
	z-index: 1;
}

.timeline__content {
	flex: 1;
	padding: 1rem 1.15rem;
}

.timeline__title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
}

/* —— Gallery —— */
.gallery-filters .gallery-filter {
	font-family: var(--font-sans);
	font-size: 0.88rem;
	font-weight: 600;
	padding: 0.45rem 1rem;
	border-radius: 2rem;
	border: 1px solid var(--gg-line);
	background: rgba(255, 255, 255, 0.04);
	color: var(--gg-muted);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-filter:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.18);
}

.gallery-filter.is-active {
	color: #0a1018;
	background: var(--gg-accent);
	border-color: var(--gg-accent);
}

.gallery-masonry {
	column-count: 2;
	column-gap: 0.85rem;
}

@media (min-width: 576px) {
	.gallery-masonry {
		column-count: 3;
		column-gap: 1rem;
	}
}

@media (min-width: 1200px) {
	.gallery-masonry {
		column-count: 4;
	}
}

.gallery-item {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0 0 0.85rem;
	break-inside: avoid;
	border: none;
	background: transparent;
	cursor: zoom-in;
	border-radius: 0.5rem;
	overflow: hidden;
}

.gallery-item:focus-visible {
	outline: 2px solid var(--gg-accent);
	outline-offset: 3px;
}

.gallery-item__inner {
	display: block;
	overflow: hidden;
	border-radius: 0.5rem;
	border: 1px solid var(--gg-line);
	background: var(--gg-panel-2);
}

.gallery-item img {
	width: 100%;
	height: auto;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.08);
}

.gallery-item.is-hidden {
	display: none;
}

.gallery-empty {
	break-inside: avoid;
}

/* —— Testimonials —— */
.testimonial-track {
	position: relative;
}

.testimonial-card {
	margin: 0;
	padding: 1.5rem 1.35rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--gg-line);
	border-radius: 0.6rem;
	backdrop-filter: blur(8px);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
	border-color: rgba(94, 200, 224, 0.2);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.testimonial-card__text {
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.88);
	font-style: italic;
}

.testimonial-card__who {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--gg-accent);
}

@media (max-width: 767.98px) {
	.testimonial-track {
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		margin-inline: -0.75rem;
		padding-inline: 0.75rem;
		padding-bottom: 0.35rem;
	}

	.testimonial-row {
		flex-wrap: nowrap !important;
		width: max-content;
		gap: 1rem !important;
	}

	.testimonial-track .col-md-6 {
		flex: 0 0 min(88vw, 22rem) !important;
		max-width: min(88vw, 22rem) !important;
		scroll-snap-align: start;
	}
}

/* —— CTA —— */
.cta-block {
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(94, 200, 224, 0.12), transparent 60%), var(--gg-graphite);
}

.cta-inner {
	border-radius: 0.75rem;
}

/* —— Contact form —— */
.form-label {
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.35rem;
}

.form-control-glass {
	background: rgba(0, 0, 0, 0.25);
	border: 1px solid var(--gg-line);
	color: #fff;
	border-radius: 0.4rem;
	padding: 0.65rem 0.85rem;
}

.form-control-glass::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.form-control-glass:focus {
	background: rgba(0, 0, 0, 0.35);
	border-color: rgba(94, 200, 224, 0.45);
	color: #fff;
	box-shadow: 0 0 0 3px rgba(94, 200, 224, 0.15);
}

.form-check-input {
	background-color: rgba(0, 0, 0, 0.3);
	border-color: var(--gg-line);
}

.form-check-input:checked {
	background-color: var(--gg-accent);
	border-color: var(--gg-accent);
}

.contact-list a {
	color: #fff;
}

.contact-list a:hover {
	color: var(--gg-accent);
}

/* —— Footer —— */
.site-footer {
	border-top: 1px solid var(--gg-line);
	background: #06080c;
}

/* —— Lightbox —— */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(4, 6, 10, 0.92);
	backdrop-filter: blur(6px);
}

.lightbox[hidden] {
	display: none !important;
}

.lightbox__figure {
	margin: 0;
	max-width: min(1100px, 100%);
	text-align: center;
}

.lightbox__figure img {
	max-height: min(78vh, 820px);
	width: auto;
	margin: 0 auto;
	border-radius: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox__cap {
	margin-top: 0.85rem;
	font-size: 0.9rem;
	color: var(--gg-muted);
}

.lightbox__close {
	position: fixed;
	top: 1rem;
	right: 1rem;
	width: 3rem;
	height: 3rem;
	border: 1px solid var(--gg-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s;
}

.lightbox__close:hover {
	background: rgba(94, 200, 224, 0.2);
	border-color: var(--gg-accent);
}

/* —— Navbar collapse mobile —— */
@media (max-width: 991.98px) {
	#mainNav {
		margin-top: 0.75rem;
		padding: 1rem;
		background: rgba(12, 15, 20, 0.97);
		border: 1px solid var(--gg-line);
		border-radius: 0.5rem;
	}
}

/* —— Finom mozgás / dinamika —— */
@keyframes gg-veil-breathe {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.88; }
}

@keyframes gg-eyebrow {
	0%, 100% { opacity: 1; letter-spacing: 0.22em; }
	50% { opacity: 0.82; letter-spacing: 0.26em; }
}

@keyframes gg-hero-title {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gg-brand-glow {
	0%, 100% {
		box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 24px var(--gg-accent-glow);
	}
	50% {
		box-shadow: 0 0 0 1px rgba(94, 200, 224, 0.28), 0 10px 36px rgba(94, 200, 224, 0.18);
	}
}

.parallax-section.hero .parallax-layer--veil {
	animation: gg-veil-breathe 12s ease-in-out infinite;
}

.rail .parallax-layer--veil-strong {
	animation: gg-veil-breathe 14s ease-in-out infinite;
	animation-delay: -4s;
}

.hero-eyebrow--pulse {
	animation: gg-eyebrow 8s ease-in-out infinite;
}

.hero-title--entrance {
	animation: gg-hero-title 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-mark {
	animation: gg-brand-glow 6s ease-in-out infinite;
}

.js-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: calc(var(--reveal-i, 0) * 0.06s);
}

.js-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.gallery-filters .gallery-filter {
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-filters .gallery-filter:active {
	transform: scale(0.96);
}

.gallery-item {
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-item:not(.is-hidden):hover {
	transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
	.parallax-section.hero .parallax-layer--veil,
	.rail .parallax-layer--veil-strong,
	.hero-eyebrow--pulse,
	.hero-title--entrance,
	.brand-mark {
		animation: none !important;
	}

	.hero-title--entrance {
		opacity: 1;
		transform: none;
	}

	.js-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* —— Nyitó promo (dizájn-demó) —— */
body.welcome-open {
	overflow: hidden;
}

.welcome-overlay[hidden] {
	display: none !important;
}

.welcome-overlay:not([hidden]) {
	position: fixed;
	inset: 0;
	z-index: 2500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-overlay.is-visible:not([hidden]) {
	opacity: 1;
}

.welcome-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(3, 5, 10, 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
}

.welcome-card {
	position: relative;
	width: min(32rem, 100%);
	max-height: min(90vh, 40rem);
	overflow: hidden auto;
	border-radius: 1rem;
	padding: 1px;
	background: linear-gradient(
		135deg,
		rgba(94, 200, 224, 0.65) 0%,
		rgba(94, 200, 224, 0.08) 35%,
		rgba(255, 255, 255, 0.12) 55%,
		rgba(94, 200, 224, 0.35) 100%
	);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06),
		0 32px 80px rgba(0, 0, 0, 0.55),
		0 0 120px rgba(94, 200, 224, 0.12);
	transform: translateY(16px) scale(0.98);
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease;
}

.welcome-overlay.is-visible .welcome-card {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.welcome-card__glow {
	position: absolute;
	inset: -40%;
	background:
		radial-gradient(circle at 30% 20%, rgba(94, 200, 224, 0.25), transparent 45%),
		radial-gradient(circle at 80% 60%, rgba(120, 200, 255, 0.12), transparent 40%);
	animation: welcome-glow 9s ease-in-out infinite;
	pointer-events: none;
}

@keyframes welcome-glow {
	0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.9; }
	50% { transform: translate(4%, -3%) rotate(6deg); opacity: 1; }
}

.welcome-card__inner {
	position: relative;
	z-index: 1;
	padding: 2rem 1.75rem 1.75rem;
	background: linear-gradient(165deg, rgba(18, 24, 32, 0.97) 0%, rgba(8, 11, 16, 0.98) 100%);
	border-radius: calc(1rem - 1px);
}

.welcome-card__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 3;
	width: 2.35rem;
	height: 2.35rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.welcome-card__close:hover {
	background: rgba(94, 200, 224, 0.2);
	border-color: rgba(94, 200, 224, 0.45);
	transform: rotate(90deg);
}

.welcome-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gg-accent);
	margin: 0 0 1rem;
	padding: 0.35rem 0.75rem;
	border-radius: 2rem;
	background: rgba(94, 200, 224, 0.1);
	border: 1px solid rgba(94, 200, 224, 0.28);
}

.welcome-card__badge-dot {
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--gg-accent);
	box-shadow: 0 0 10px var(--gg-accent);
	animation: welcome-pulse 2s ease-in-out infinite;
}

@keyframes welcome-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.85); }
}

.welcome-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 3vw + 0.5rem, 1.85rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 0.85rem;
	letter-spacing: -0.02em;
}

.welcome-card__lead {
	font-size: 0.98rem;
	color: var(--gg-muted);
	line-height: 1.6;
	margin: 0 0 1.15rem;
}

.welcome-card__bullets {
	margin: 0 0 1.35rem;
	padding-left: 1.1rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
	line-height: 1.55;
}

.welcome-card__bullets li {
	margin-bottom: 0.35rem;
}

.welcome-card__bullets li::marker {
	color: var(--gg-accent);
}

.welcome-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 0.85rem;
}

.welcome-card__cta {
	flex: 1 1 auto;
	min-width: 10rem;
	text-align: center;
}

.welcome-card__fine {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.38);
	margin: 0;
	line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
	.welcome-card__glow {
		animation: none;
	}

	.welcome-card__badge-dot {
		animation: none;
	}

	.welcome-overlay:not([hidden]),
	.welcome-card {
		transition: none;
	}

	.welcome-overlay:not([hidden]) {
		opacity: 1;
	}

	.welcome-card {
		transform: none;
		opacity: 1;
	}
}
