/**
 * Ticarro — Premium wellcome landing + login
 */

.wellcome-page {
	--wellcome-nav-clearance: 128px;
	--wc-primary: #509de0;
	--wc-primary-dark: #2563ad;
	--wc-accent: #6366f1;
	--wc-surface: rgba(255, 255, 255, 0.88);
	--wc-text: #0f172a;
	--wc-muted: #64748b;
	--wc-border: rgba(148, 163, 184, 0.35);
	min-height: 100vh;
	font-family: "Inter", "Plus Jakarta Sans", "Open Sans", system-ui, sans-serif;
	color: var(--wc-text);
	background: #0b1120;
	overflow-x: hidden;
}

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

/* ---------- Animated background ---------- */
.wellcome-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.wellcome-bg__mesh {
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(ellipse 80% 60% at 15% 20%, rgba(80, 157, 224, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 85% 15%, rgba(99, 102, 241, 0.28) 0%, transparent 50%),
		radial-gradient(ellipse 60% 45% at 50% 85%, rgba(14, 165, 233, 0.2) 0%, transparent 55%),
		linear-gradient(165deg, #0b1120 0%, #111827 40%, #0f172a 100%);
	animation: wellcomeMeshShift 18s ease-in-out infinite alternate;
}

@keyframes wellcomeMeshShift {
	0% { transform: scale(1) translate(0, 0); }
	100% { transform: scale(1.04) translate(-1%, 1%); }
}

.wellcome-bg__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.55;
	animation: wellcomeOrbFloat 14s ease-in-out infinite;
}

.wellcome-bg__orb--1 {
	width: 420px;
	height: 420px;
	background: rgba(80, 157, 224, 0.45);
	top: -8%;
	left: -5%;
}

.wellcome-bg__orb--2 {
	width: 360px;
	height: 360px;
	background: rgba(99, 102, 241, 0.4);
	top: 35%;
	right: -8%;
	animation-delay: -5s;
}

.wellcome-bg__orb--3 {
	width: 280px;
	height: 280px;
	background: rgba(20, 184, 166, 0.3);
	bottom: 5%;
	left: 30%;
	animation-delay: -9s;
}

@keyframes wellcomeOrbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(24px, -18px) scale(1.05); }
	66% { transform: translate(-16px, 12px) scale(0.96); }
}

.wellcome-bg__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

/* ---------- Preloader ---------- */
.wellcome-preloader {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0b1120;
}

.wellcome-preloader.is-hidden {
	display: none;
}

.wellcome-preloader__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wellcome-preloader__ring {
	position: absolute;
	width: 72px;
	height: 72px;
	border: 2px solid rgba(80, 157, 224, 0.15);
	border-top-color: var(--wc-primary);
	border-radius: 50%;
	animation: wellcomeSpin 0.9s linear infinite;
}

@keyframes wellcomeSpin {
	to { transform: rotate(360deg); }
}

/* ---------- Navigation ---------- */
.wellcome-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: max(16px, env(safe-area-inset-top)) 0 16px;
	transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.wellcome-nav--scrolled {
	background: rgba(11, 17, 32, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wellcome-nav__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
	display: flex;
	align-items: center;
	gap: 20px;
}

.wellcome-nav__brand {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.wellcome-nav__logo {
	max-height: 52px;
	width: auto;
	max-width: min(240px, 52vw);
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.wellcome-nav__logo--fallback {
	max-height: 52px;
	max-width: min(240px, 52vw);
	filter: none;
	opacity: 1;
}

.wellcome-nav__links {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}

.wellcome-nav__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.wellcome-nav__login-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 700;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 12px;
	background: linear-gradient(135deg, #3a6fa8 0%, #509de0 42%, #6366f1 100%);
	box-shadow: 0 4px 20px rgba(80, 157, 224, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
	white-space: nowrap;
}

.wellcome-nav__login-btn:hover,
.wellcome-nav__login-btn:focus {
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 28px rgba(80, 157, 224, 0.45);
	filter: brightness(1.05);
	text-decoration: none !important;
}

.wellcome-nav__login-btn i {
	font-size: 15px;
}

.wellcome-nav__link {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	border-radius: 10px;
	transition: color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
}

.wellcome-nav__link:hover,
.wellcome-nav__link:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.wellcome-nav__link--mobile-login {
	display: none;
}

.wellcome-nav__lang {
	flex: 0 0 auto;
}

.wellcome-lang-toggle {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
}

.wellcome-lang-toggle .login-lang-toggle__code,
.wellcome-lang-toggle .ti-world {
	color: #fff !important;
}

.wellcome-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	cursor: pointer;
}

.wellcome-nav__toggle span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.wellcome-nav__toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.wellcome-nav__toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.wellcome-nav__toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Main layout ---------- */
.wellcome-main {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: var(--wellcome-nav-clearance) clamp(16px, 4vw, 32px) 0;
}

html {
	scroll-padding-top: var(--wellcome-nav-clearance);
}

/* ---------- Hero ---------- */
.wellcome-hero {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100dvh - var(--wellcome-nav-clearance));
	gap: 0;
	padding: clamp(48px, 6vh, 80px) 0 clamp(40px, 5vh, 64px);
	box-sizing: border-box;
}

.wellcome-hero-ext {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 8px 0 56px;
}

.wellcome-hero__top {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.wellcome-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px 6px 10px;
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.wellcome-badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
	animation: wellcomePulse 2s ease-in-out infinite;
}

@keyframes wellcomePulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(0.85); }
}

.wellcome-hero__title {
	font-family: "Plus Jakarta Sans", "Inter", sans-serif;
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
	margin: 0 0 14px;
}

.wellcome-hero__accent {
	display: block;
	background: linear-gradient(135deg, #509de0 0%, #818cf8 45%, #38bdf8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wellcome-hero__subtitle {
	font-size: clamp(15px, 1.9vw, 18px);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
	max-width: 540px;
	margin: 0 0 10px;
	font-weight: 600;
}

.wellcome-hero__desc {
	font-size: clamp(14px, 1.7vw, 15px);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.62);
	max-width: 540px;
	margin: 0 0 20px;
	font-weight: 500;
}

.wellcome-hero__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.wellcome-hero__highlight {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	min-height: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	backdrop-filter: blur(8px);
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.wellcome-hero__highlight:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(80, 157, 224, 0.35);
	transform: translateY(-2px);
}

.wellcome-hero__highlight-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(80, 157, 224, 0.25) 0%, rgba(99, 102, 241, 0.2) 100%);
	color: #7dd3fc;
	font-size: 16px;
}

.wellcome-hero__highlight-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.wellcome-hero__highlight-text strong {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.35;
}

.wellcome-hero .wellcome-stats {
	margin: 0;
}

.wellcome-hero-ext .wellcome-stats {
	margin: 0;
}

.wellcome-hero__highlight-text span {
	font-size: 12px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.55);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wellcome-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 4px;
}

.wellcome-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 14px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.wellcome-btn--primary {
	color: #fff;
	background: linear-gradient(135deg, #3a6fa8 0%, #509de0 42%, #6366f1 100%);
	box-shadow: 0 8px 32px rgba(80, 157, 224, 0.4);
}

.wellcome-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(80, 157, 224, 0.5);
	color: #fff;
	text-decoration: none;
}

.wellcome-btn--ghost {
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.wellcome-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	text-decoration: none;
}

/* ---------- Dashboard mockup ---------- */
.wellcome-hero__visual {
	position: relative;
	align-self: start;
	width: 100%;
}

.wellcome-mockup {
	position: relative;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 12px;
	backdrop-filter: blur(20px);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04),
		0 32px 64px -16px rgba(0, 0, 0, 0.5);
	transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
	transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.wellcome-hero__visual:hover .wellcome-mockup {
	transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
}

.wellcome-mockup__bar {
	display: flex;
	gap: 6px;
	padding: 8px 10px 12px;
}

.wellcome-mockup__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.wellcome-mockup__bar span:first-child { background: #ef4444; }
.wellcome-mockup__bar span:nth-child(2) { background: #eab308; }
.wellcome-mockup__bar span:nth-child(3) { background: #22c55e; }

.wellcome-mockup__body {
	display: flex;
	gap: 10px;
	background: rgba(15, 23, 42, 0.6);
	border-radius: 12px;
	padding: 12px;
	min-height: 280px;
}

.wellcome-mockup__sidebar {
	flex: 0 0 48px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(80, 157, 224, 0.3) 0%, rgba(99, 102, 241, 0.15) 100%);
}

.wellcome-mockup__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wellcome-mockup__stat-row {
	display: flex;
	gap: 8px;
}

.wellcome-mockup__stat {
	flex: 1;
	min-height: 52px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	animation: wellcomeShimmer 3s ease-in-out infinite;
}

.wellcome-mockup__stat-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.2;
}

.wellcome-mockup__stat-value {
	font-size: 15px;
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.wellcome-mockup__stat:nth-child(2) { animation-delay: -1s; }
.wellcome-mockup__stat:nth-child(3) { animation-delay: -2s; }

@keyframes wellcomeShimmer {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.wellcome-mockup__chart {
	flex: 1;
	min-height: 100px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(80, 157, 224, 0.15) 0%, transparent 100%);
	border: 1px solid rgba(80, 157, 224, 0.2);
	position: relative;
	overflow: hidden;
}

.wellcome-mockup__chart::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(80, 157, 224, 0.4) 20%,
		rgba(99, 102, 241, 0.5) 50%,
		rgba(80, 157, 224, 0.35) 80%,
		transparent 100%);
	clip-path: polygon(0 100%, 8% 70%, 22% 80%, 38% 45%, 52% 55%, 68% 25%, 82% 40%, 100% 15%, 100% 100%);
}

.wellcome-mockup__table {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wellcome-mockup__row {
	height: 14px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
}

.wellcome-mockup__row:nth-child(1) { width: 92%; }
.wellcome-mockup__row:nth-child(2) { width: 78%; }
.wellcome-mockup__row:nth-child(3) { width: 85%; }

.wellcome-mockup__float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	animation: wellcomeFloatBadge 5s ease-in-out infinite;
}

.wellcome-mockup__float i {
	font-size: 16px;
	color: var(--wc-primary);
}

.wellcome-mockup__float--1 {
	top: 18%;
	right: -12%;
	animation-delay: 0s;
}

.wellcome-mockup__float--2 {
	bottom: 22%;
	left: -10%;
	animation-delay: -2.5s;
}

.wellcome-mockup__float--3 {
	top: 42%;
	right: -14%;
	animation-delay: -1.2s;
}

.wellcome-mockup__float--4 {
	top: 8%;
	left: -8%;
	animation-delay: -3.8s;
}

@keyframes wellcomeFloatBadge {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ---------- Stats strip ---------- */
.wellcome-stats {
	margin: 0;
	scroll-margin-top: var(--wellcome-nav-clearance);
}

.wellcome-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.wellcome-stat__value--text {
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	background: linear-gradient(135deg, #22c55e 0%, #509de0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wellcome-stat {
	text-align: center;
	padding: 22px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	backdrop-filter: blur(12px);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.wellcome-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(80, 157, 224, 0.35);
}

.wellcome-stat__value {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #fff 0%, rgba(80, 157, 224, 0.9) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.wellcome-stat__label {
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.35;
}

/* ---------- Sections ---------- */
.wellcome-section {
	margin-bottom: 96px;
	scroll-margin-top: calc(var(--wellcome-nav-clearance) + 16px);
}

.wellcome-section__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.wellcome-section__title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.02em;
}

.wellcome-section__subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.58);
	margin: 0 auto;
	max-width: 640px;
}

.wellcome-section__intro {
	font-size: 16px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.62);
	max-width: 720px;
	margin: 16px auto 0;
	font-weight: 500;
}

.wellcome-section__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #509de0;
	background: rgba(80, 157, 224, 0.12);
	border: 1px solid rgba(80, 157, 224, 0.25);
	border-radius: 999px;
}

.wellcome-section__eyebrow--after {
	margin-bottom: 0;
	margin-top: 20px;
}

.wellcome-section__eyebrow--a11y {
	color: #22c55e;
	background: rgba(34, 197, 94, 0.12);
	border-color: rgba(34, 197, 94, 0.25);
}

/* ---------- Features grid ---------- */
.wellcome-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.wellcome-feature {
	padding: 28px 24px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.wellcome-feature:hover {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(80, 157, 224, 0.25);
	box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.4);
}

.wellcome-feature__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-size: 22px;
	margin-bottom: 18px;
}

.wellcome-feature__icon--blue { background: rgba(80, 157, 224, 0.2); color: #509de0; }
.wellcome-feature__icon--indigo { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.wellcome-feature__icon--cyan { background: rgba(14, 165, 233, 0.2); color: #38bdf8; }
.wellcome-feature__icon--violet { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.wellcome-feature__icon--teal { background: rgba(20, 184, 166, 0.2); color: #2dd4bf; }
.wellcome-feature__icon--amber { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.wellcome-feature__icon--rose { background: rgba(244, 63, 94, 0.2); color: #fb7185; }
.wellcome-feature__icon--lime { background: rgba(132, 204, 22, 0.2); color: #a3e635; }
.wellcome-feature__icon--slate { background: rgba(100, 116, 139, 0.25); color: #94a3b8; }

.wellcome-feature__title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.35;
}

.wellcome-feature__desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* ---------- Bento grid ---------- */
.wellcome-section--bento {
	margin-top: 0;
	margin-bottom: 96px;
	scroll-margin-top: calc(var(--wellcome-nav-clearance) + 16px);
}

.wellcome-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.wellcome-bento__card {
	position: relative;
	padding: 24px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.wellcome-bento__card:hover {
	transform: translateY(-4px);
	border-color: rgba(80, 157, 224, 0.3);
	box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.45);
}

.wellcome-bento__card--hero {
	grid-column: span 2;
	padding: 0;
	background: linear-gradient(145deg, rgba(80, 157, 224, 0.14) 0%, rgba(99, 102, 241, 0.08) 55%, rgba(255, 255, 255, 0.03) 100%);
}

.wellcome-bento__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	min-height: 100%;
}

.wellcome-bento__preview {
	padding: 20px;
	background: rgba(0, 0, 0, 0.18);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.wellcome-bento__preview-bar {
	display: flex;
	gap: 6px;
}

.wellcome-bento__preview-bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
}

.wellcome-bento__preview-bar span:first-child { background: #ef4444; }
.wellcome-bento__preview-bar span:nth-child(2) { background: #eab308; }
.wellcome-bento__preview-bar span:nth-child(3) { background: #22c55e; }

.wellcome-bento__preview-body {
	flex: 1;
	display: flex;
	gap: 10px;
	min-height: 160px;
}

.wellcome-bento__preview-sidebar {
	width: 28%;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.06);
}

.wellcome-bento__preview-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wellcome-bento__preview-stats {
	display: flex;
	gap: 6px;
}

.wellcome-bento__preview-stats span {
	flex: 1;
	height: 28px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
}

.wellcome-bento__preview-chart {
	flex: 1;
	min-height: 72px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(80, 157, 224, 0.22) 0%, rgba(80, 157, 224, 0.02) 100%);
	border: 1px solid rgba(80, 157, 224, 0.2);
}

.wellcome-bento__preview-lines {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wellcome-bento__preview-lines span {
	height: 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.07);
}

.wellcome-bento__preview-lines span:nth-child(1) { width: 92%; }
.wellcome-bento__preview-lines span:nth-child(2) { width: 76%; }
.wellcome-bento__preview-lines span:nth-child(3) { width: 84%; }

.wellcome-bento__body {
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wellcome-bento__icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	font-size: 22px;
	margin-bottom: 14px;
	background: rgba(80, 157, 224, 0.2);
	color: #509de0;
	flex-shrink: 0;
}

.wellcome-bento__icon--sm {
	width: 44px;
	height: 44px;
	font-size: 18px;
	margin-bottom: 12px;
}

.wellcome-bento__card--notify .wellcome-bento__icon { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.wellcome-bento__card--sync .wellcome-bento__icon { background: rgba(14, 165, 233, 0.2); color: #38bdf8; }
.wellcome-bento__card--access .wellcome-bento__icon { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.wellcome-bento__card--customers .wellcome-bento__icon { background: rgba(168, 85, 247, 0.2); color: #c084fc; }
.wellcome-bento__card--security .wellcome-bento__icon { background: rgba(100, 116, 139, 0.25); color: #cbd5e1; }
.wellcome-bento__card--analytics .wellcome-bento__icon { background: rgba(236, 72, 153, 0.2); color: #f472b6; }
.wellcome-bento__card--seo .wellcome-bento__icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }

.wellcome-bento__card--access {
	background: linear-gradient(160deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
	border-color: rgba(34, 197, 94, 0.18);
}

.wellcome-bento__title {
	font-size: 17px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 10px;
	line-height: 1.35;
}

.wellcome-bento__card--hero .wellcome-bento__title {
	font-size: 1.35rem;
}

.wellcome-bento__desc {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.62);
	margin: 0 0 14px;
}

.wellcome-bento__points {
	list-style: none;
	padding: 0;
	margin: 0 0 4px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wellcome-bento__points li {
	position: relative;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 500;
}

.wellcome-bento__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #509de0, #818cf8);
	box-shadow: 0 0 8px rgba(80, 157, 224, 0.5);
}

.wellcome-bento__tags {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wellcome-bento__tags li {
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

/* ---------- Accessibility section ---------- */
.wellcome-section--a11y {
	margin-bottom: 96px;
}

.wellcome-a11y {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	padding: 48px clamp(20px, 4vw, 40px);
	border-radius: 24px;
	border: 1px solid rgba(34, 197, 94, 0.2);
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.wellcome-a11y__subtitle {
	margin-bottom: 28px !important;
}

.wellcome-a11y__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.wellcome-a11y__item {
	display: flex;
	gap: 14px;
	padding: 16px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.25s ease, background 0.25s ease;
}

.wellcome-a11y__item:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(34, 197, 94, 0.25);
}

.wellcome-a11y__item-icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: 18px;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.15);
}

.wellcome-a11y__item-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.35;
}

.wellcome-a11y__item-desc {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.62);
	margin: 0;
}

.wellcome-a11y__visual {
	position: relative;
	width: 100%;
	max-width: 320px;
	height: 320px;
	margin: 0 auto;
}

.wellcome-a11y__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(34, 197, 94, 0.2);
	transform: translate(-50%, -50%);
}

.wellcome-a11y__ring--outer {
	width: 100%;
	height: 100%;
	animation: wellcomeA11yPulse 4s ease-in-out infinite;
}

.wellcome-a11y__ring--mid {
	width: 72%;
	height: 72%;
	border-color: rgba(80, 157, 224, 0.25);
	animation: wellcomeA11yPulse 4s ease-in-out infinite -1.3s;
}

.wellcome-a11y__ring--inner {
	width: 44%;
	height: 44%;
	border-color: rgba(99, 102, 241, 0.3);
	animation: wellcomeA11yPulse 4s ease-in-out infinite -2.6s;
}

@keyframes wellcomeA11yPulse {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

.wellcome-a11y__core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 16px;
	text-align: center;
}

.wellcome-a11y__core i {
	font-size: 28px;
	color: #22c55e;
}

.wellcome-a11y__core span {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.88);
	max-width: 90px;
	line-height: 1.35;
}

.wellcome-a11y__sat {
	position: absolute;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	color: #509de0;
	background: rgba(80, 157, 224, 0.15);
	border: 1px solid rgba(80, 157, 224, 0.3);
	animation: wellcomeSatFloat 6s ease-in-out infinite;
}

.wellcome-a11y__sat--1 { top: 8%; left: 50%; margin-left: -22px; }
.wellcome-a11y__sat--2 { top: 50%; right: 0; margin-top: -22px; animation-delay: -1.5s; }
.wellcome-a11y__sat--3 { bottom: 8%; left: 50%; margin-left: -22px; animation-delay: -3s; }
.wellcome-a11y__sat--4 { top: 50%; left: 0; margin-top: -22px; animation-delay: -4.5s; }

@keyframes wellcomeSatFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ---------- Steps ---------- */
.wellcome-section--steps {
	padding: 48px 0;
}

.wellcome-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	position: relative;
}

.wellcome-steps::before {
	content: "";
	position: absolute;
	top: 36px;
	left: 16%;
	right: 16%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(80, 157, 224, 0.4), rgba(99, 102, 241, 0.4), transparent);
}

.wellcome-step {
	text-align: center;
	padding: 0 12px;
}

.wellcome-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(135deg, rgba(80, 157, 224, 0.3) 0%, rgba(99, 102, 241, 0.25) 100%);
	border: 2px solid rgba(80, 157, 224, 0.4);
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

.wellcome-step__title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
}

.wellcome-step__desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* ---------- CTA section ---------- */
.wellcome-cta-section {
	position: relative;
	margin-bottom: 64px;
	padding: 64px clamp(20px, 4vw, 40px);
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	text-align: center;
	overflow: hidden;
}

.wellcome-cta-section__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(80, 157, 224, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.wellcome-cta-section__inner {
	position: relative;
	max-width: 640px;
	margin: 0 auto;
}

.wellcome-cta-section__title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.25;
}

.wellcome-cta-section__subtitle {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 28px;
}

.wellcome-login-perks {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.wellcome-cta-section__perks {
	margin-bottom: 32px;
}

.wellcome-login-perks li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.45;
}

.wellcome-login-perks i {
	flex-shrink: 0;
	font-size: 18px;
	color: #22c55e;
	margin-top: 1px;
}

.wellcome-cta-section__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* ---------- Auth drawer (site-style slide from right) ---------- */
body.wellcome-auth-open {
	overflow: hidden;
}

.wellcome-auth-drawer {
	position: fixed;
	inset: 0;
	z-index: 1200;
	visibility: hidden;
	pointer-events: none;
}

.wellcome-auth-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.wellcome-auth-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0);
	transition: background 0.35s ease;
}

.wellcome-auth-drawer.is-open .wellcome-auth-drawer__backdrop {
	background: rgba(0, 0, 0, 0.55);
}

.wellcome-auth-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 420px;
	max-width: calc(100vw - 24px);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
	transform: translateX(100%);
	transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

.wellcome-auth-drawer.is-open .wellcome-auth-drawer__panel {
	transform: translateX(0);
}

.wellcome-auth-drawer__header {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 22px 24px 16px;
	border-bottom: 1px solid #e2e8f0;
}

.wellcome-auth-drawer__title {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
	line-height: 1.3;
}

.wellcome-auth-drawer__close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	color: #64748b;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.wellcome-auth-drawer__close:hover,
.wellcome-auth-drawer__close:focus {
	background: #f8fafc;
	color: #0f172a;
	border-color: #cbd5e1;
	outline: none;
}

.wellcome-auth-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 20px 24px 32px;
	-webkit-overflow-scrolling: touch;
}

.wellcome-auth-panel .form-group {
	margin-bottom: 18px;
}

.wellcome-auth-panel .form-control {
	border-radius: 12px;
	min-height: 46px;
	padding: 11px 14px;
	font-size: 15px;
	border: 1px solid #e2e8f0;
	background: #fff;
	box-shadow: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	width: 100%;
	box-sizing: border-box;
	color: #0f172a;
}

.wellcome-auth-panel .form-control::placeholder {
	color: #94a3b8;
}

.wellcome-auth-panel .form-control:hover {
	border-color: #cbd5e1;
}

.wellcome-auth-panel .form-control:focus {
	border-color: #509de0;
	box-shadow: 0 0 0 4px rgba(80, 157, 224, 0.18);
	outline: none;
}

.wellcome-auth-panel .control-label {
	font-weight: 600;
	color: #334155;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 7px;
}

.wellcome-auth-panel .btn {
	border-radius: 12px;
	font-weight: 600;
}

.wellcome-auth-switch {
	margin: 20px 0 0;
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
	text-align: center;
}

.wellcome-auth-switch a {
	color: #509de0;
	font-weight: 700;
	text-decoration: none;
	margin-left: 4px;
}

.wellcome-auth-switch a:hover,
.wellcome-auth-switch a:focus {
	color: #2563ad;
	text-decoration: underline;
}

.wellcome-auth-panel .validation-error {
	color: #dc2626;
	font-size: 12px;
	margin-top: 6px;
	display: block;
}

/* ---------- Contact drawer ---------- */
body.wellcome-page .swal2-container {
	z-index: 13000 !important;
}

body.wellcome-contact-open {
	overflow: hidden;
}

.wellcome-nav__contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92) !important;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.wellcome-nav__contact-btn:hover,
.wellcome-nav__contact-btn:focus {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.28);
	transform: translateY(-1px);
	outline: none;
}

.wellcome-contact-drawer {
	z-index: 1195;
}

.wellcome-contact-drawer__header {
	align-items: flex-start;
}

.wellcome-contact-drawer__title-wrap {
	flex: 1 1 auto;
	min-width: 0;
	padding-right: 8px;
}

.wellcome-contact-drawer__title-wrap .wellcome-auth-drawer__title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.wellcome-contact-drawer__subtitle {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.55;
	font-weight: 500;
	color: #64748b;
}

.wellcome-contact-drawer__body {
	padding-bottom: 16px;
}

.wellcome-contact-drawer__body .form-group {
	margin-bottom: 16px;
}

.wellcome-contact-field-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.wellcome-contact-drawer__body .form-control {
	border-radius: 12px;
	min-height: 46px;
	padding: 11px 14px;
	font-size: 15px;
	border: 1px solid #e2e8f0;
	background: #fff;
	box-shadow: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	width: 100%;
	box-sizing: border-box;
	color: #0f172a;
}

.wellcome-contact-drawer__body .form-control:focus {
	border-color: #509de0;
	box-shadow: 0 0 0 3px rgba(80, 157, 224, 0.18);
	outline: none;
}

.wellcome-contact-field--invalid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

.wellcome-contact-message {
	min-height: 120px;
	resize: vertical;
}

.wellcome-contact-alert {
	margin-bottom: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.wellcome-contact-alert--error {
	color: #b42318;
	background: #fef3f2;
	border: 1px solid #fecdca;
}

.wellcome-contact-drawer__footer {
	flex: 0 0 auto;
	padding: 16px 24px 24px;
	border-top: 1px solid #e2e8f0;
	background: #fff;
}

/* ---------- Footer ---------- */
.wellcome-footer {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 32px 16px max(32px, env(safe-area-inset-bottom));
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.wellcome-footer__text {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.38);
	margin: 0;
}

.wellcome-footer__contact {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wellcome-footer__contact:hover,
.wellcome-footer__contact:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

/* ---------- Scroll reveal ---------- */
.wellcome-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.wellcome-reveal--delay { transition-delay: 0.12s; }
.wellcome-reveal--delay-2 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.wellcome-page {
		--wellcome-nav-clearance: 104px;
	}

	.wellcome-hero {
		min-height: calc(100dvh - var(--wellcome-nav-clearance));
		padding-top: clamp(32px, 5vh, 56px);
		padding-bottom: clamp(32px, 4vh, 48px);
	}

	.wellcome-hero-ext {
		padding-bottom: 48px;
	}

	.wellcome-hero__top {
		grid-template-columns: 1fr;
	}

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

	.wellcome-hero__visual {
		order: -1;
		max-width: 480px;
		margin: 0 auto;
		width: 100%;
	}

	.wellcome-mockup {
		transform: none;
	}

	.wellcome-hero__visual:hover .wellcome-mockup {
		transform: none;
	}

	.wellcome-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.wellcome-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wellcome-bento {
		grid-template-columns: 1fr 1fr;
	}

	.wellcome-bento__card--hero {
		grid-column: span 2;
	}

	.wellcome-bento__hero-inner {
		grid-template-columns: 1fr;
	}

	.wellcome-bento__preview {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		min-height: 140px;
	}

	.wellcome-a11y {
		grid-template-columns: 1fr;
	}

	.wellcome-a11y__visual {
		order: -1;
		max-width: 260px;
		height: 260px;
	}
}

@media (max-width: 767px) {
	.wellcome-page {
		--wellcome-nav-clearance: 96px;
	}

	.wellcome-nav__link {
		font-size: 14px;
		white-space: normal;
	}
	.wellcome-nav__links {
		display: none;
		position: absolute;
		top: 100%;
		left: 16px;
		right: 16px;
		flex-direction: column;
		padding: 12px;
		background: rgba(11, 17, 32, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 14px;
		backdrop-filter: blur(16px);
	}

	.wellcome-nav__links.is-open {
		display: flex;
	}

	.wellcome-nav__toggle {
		display: flex;
		margin-left: auto;
	}

	.wellcome-nav__link--mobile-login {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-top: 4px;
		padding-top: 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		color: #fff !important;
		background: linear-gradient(135deg, rgba(80, 157, 224, 0.25) 0%, rgba(99, 102, 241, 0.2) 100%);
	}

	.wellcome-nav__actions {
		display: none !important;
	}

	.wellcome-nav__login-btn {
		width: 100%;
		justify-content: center;
	}

	.wellcome-contact-field-pair {
		grid-template-columns: 1fr;
	}

	.wellcome-features,
	.wellcome-steps,
	.wellcome-stats__grid,
	.wellcome-hero__highlights {
		grid-template-columns: 1fr;
	}

	.wellcome-bento {
		grid-template-columns: 1fr;
	}

	.wellcome-bento__card--hero {
		grid-column: span 1;
	}

	.wellcome-a11y__grid {
		grid-template-columns: 1fr;
	}

	.wellcome-steps::before {
		display: none;
	}

	.wellcome-mockup__float--1 { right: 4%; top: 8%; }
	.wellcome-mockup__float--2 { left: 4%; bottom: 12%; }
	.wellcome-mockup__float--3 { right: 2%; top: 38%; }
	.wellcome-mockup__float--4 { left: 2%; top: 14%; }

	.wellcome-main {
		padding-top: var(--wellcome-nav-clearance);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wellcome-bg__mesh,
	.wellcome-bg__orb,
	.wellcome-mockup__stat,
	.wellcome-mockup__float,
	.wellcome-a11y__ring,
	.wellcome-a11y__sat {
		animation: none;
	}

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