:root {
	--bg: #f6f7fb;
	--bg-soft: #eceef5;
	--bg-card: rgba(255, 255, 255, 0.88);
	--surface: #ffffff;
	--red: #e0637a;
	--red-glow: #f08a9b;
	--red-soft: #fde8ed;
	--cyan: #5bb8b8;
	--purple: #9b8fd9;
	--accent: #7b8cff;
	--text: #1c2033;
	--muted: #6e758a;
	--glass: rgba(255, 255, 255, 0.75);
	--glass-border: rgba(28, 32, 51, 0.08);
	--shadow-soft: 0 4px 24px rgba(28, 32, 51, 0.06);
	--shadow-hover: 0 12px 40px rgba(28, 32, 51, 0.1);
	--radius: 20px;
	--font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
	--font-body: 'Inter', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body.ea-matrix-landing {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;
	line-height: 1.6;
}

body.ea-matrix-landing #wpadminbar {
	display: none;
}

.ea-canvas-bg {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.ea-page {
	position: relative;
	z-index: 1;
}

/* ── Top download bar ── */
.ea-download-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 24px;
	background: linear-gradient(135deg, rgba(232, 25, 44, 0.95), rgba(139, 92, 246, 0.85));
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 30px rgba(232, 25, 44, 0.4);
	animation: slideDown 0.6s ease;
}

@keyframes slideDown {
	from { transform: translateY(-100%); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.ea-download-bar__text {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.ea-download-bar__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.ea-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 50px;
	font-family: var(--font-display);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
	white-space: nowrap;
}

.ea-btn--android {
	background: #fff;
	color: #111;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ea-btn--android:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.35);
}

.ea-btn--ios {
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

.ea-btn--ios:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px) scale(1.04);
}

.ea-btn--primary {
	background: linear-gradient(135deg, var(--red), #ff4460);
	color: #fff;
	box-shadow: 0 4px 24px rgba(232, 25, 44, 0.5);
}

.ea-btn--primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 40px rgba(232, 25, 44, 0.7);
}

.ea-btn--ghost {
	background: transparent;
	color: var(--text);
	border: 2px solid var(--glass-border);
}

.ea-btn--ghost:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	transform: translateY(-2px);
}

.ea-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ── Nav ── */
.ea-nav {
	position: fixed;
	top: 52px;
	left: 0;
	right: 0;
	z-index: 999;
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(3, 3, 8, 0.6);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--glass-border);
	transition: background 0.3s, top 0.3s;
}

.ea-nav.scrolled {
	top: 52px;
	background: rgba(3, 3, 8, 0.92);
}

.ea-nav__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.ea-nav__logo img {
	width: 48px;
	height: 48px;
	filter: drop-shadow(0 0 12px rgba(232, 25, 44, 0.6));
	transition: transform 0.4s;
}

.ea-nav__logo:hover img {
	transform: rotateY(180deg) scale(1.1);
}

.ea-nav__brand {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--text);
	letter-spacing: 0.08em;
}

.ea-nav__brand span {
	color: var(--red);
}

.ea-nav__links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.ea-nav__links a {
	color: var(--muted);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: color 0.2s;
}

.ea-nav__links a:hover {
	color: var(--cyan);
}

/* ── Hero ── */
.ea-hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	padding: 140px 60px 80px;
	position: relative;
}

.ea-hero__glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 25, 44, 0.18) 0%, transparent 70%);
	top: 20%;
	left: -10%;
	pointer-events: none;
	animation: pulse 4s ease-in-out infinite;
}

.ea-hero__glow--2 {
	left: auto;
	right: -10%;
	top: 30%;
	background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
	animation-delay: 2s;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.6; }
	50% { transform: scale(1.15); opacity: 1; }
}

.ea-hero__content {
	position: relative;
	z-index: 2;
}

.ea-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 50px;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 24px;
	animation: fadeUp 0.8s ease 0.2s both;
}

.ea-hero__badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px var(--cyan);
	animation: blink 1.5s ease infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.ea-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	animation: fadeUp 0.8s ease 0.35s both;
}

.ea-hero__title .highlight {
	background: linear-gradient(135deg, var(--red), var(--cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ea-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--muted);
	max-width: 520px;
	margin-bottom: 36px;
	animation: fadeUp 0.8s ease 0.5s both;
}

.ea-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: fadeUp 0.8s ease 0.65s both;
}

.ea-hero__stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	animation: fadeUp 0.8s ease 0.8s both;
}

.ea-stat {
	text-align: left;
}

.ea-stat__num {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 900;
	color: var(--red);
	line-height: 1;
}

.ea-stat__label {
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 4px;
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ── 3D Phone showcase ── */
.ea-hero__visual {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1200px;
	animation: fadeUp 1s ease 0.4s both;
}

.ea-phone-stage {
	position: relative;
	width: 320px;
	height: 640px;
	transform-style: preserve-3d;
	transition: transform 0.1s ease-out;
}

.ea-phone {
	position: absolute;
	inset: 0;
	border-radius: 40px;
	background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
	border: 3px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.05),
		0 30px 80px rgba(0, 0, 0, 0.8),
		0 0 60px rgba(232, 25, 44, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	overflow: hidden;
	transform-style: preserve-3d;
}

.ea-phone::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 24px;
	background: #000;
	border-radius: 20px;
	z-index: 10;
}

.ea-phone__screen {
	position: absolute;
	inset: 8px;
	border-radius: 34px;
	overflow: hidden;
	background: #000;
}

.ea-phone__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: opacity 0.6s ease;
}

.ea-phone__screen img.fade-out {
	opacity: 0;
}

.ea-phone__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(232, 25, 44, 0.3);
	animation: ringPulse 3s ease infinite;
}

.ea-phone__ring--1 {
	width: 400px;
	height: 400px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ea-phone__ring--2 {
	width: 500px;
	height: 500px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 1s;
	border-color: rgba(0, 229, 255, 0.2);
}

@keyframes ringPulse {
	0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
	100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.ea-phone-dots {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 24px;
}

.ea-phone-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--glass-border);
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
}

.ea-phone-dot.active {
	background: var(--red);
	transform: scale(1.4);
	box-shadow: 0 0 10px var(--red);
}

/* ── Floating cards ── */
.ea-float-card {
	position: absolute;
	padding: 14px 20px;
	border-radius: 14px;
	background: var(--bg-card);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	animation: float 4s ease-in-out infinite;
	z-index: 5;
}

.ea-float-card--1 {
	top: 10%;
	right: -20px;
	animation-delay: 0s;
}

.ea-float-card--2 {
	bottom: 15%;
	left: -30px;
	animation-delay: 2s;
}

.ea-float-card__title {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--cyan);
}

.ea-float-card__sub {
	font-size: 0.75rem;
	color: var(--muted);
	margin-top: 2px;
}

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

/* ── Sections ── */
.ea-section {
	padding: 100px 60px;
	position: relative;
}

.ea-section__header {
	text-align: center;
	margin-bottom: 64px;
}

.ea-section__tag {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 12px;
}

.ea-section__title {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 900;
	line-height: 1.2;
}

.ea-section__desc {
	color: var(--muted);
	max-width: 600px;
	margin: 16px auto 0;
	font-size: 1.05rem;
}

/* ── Screenshot gallery ── */
.ea-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.ea-gallery__item {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	aspect-ratio: 9/19;
	background: #111;
	border: 1px solid var(--glass-border);
}

.ea-gallery__item:hover {
	transform: translateY(-12px) rotateX(5deg) rotateY(-5deg);
	box-shadow: 0 30px 60px rgba(232, 25, 44, 0.25), 0 0 40px rgba(0, 229, 255, 0.1);
}

.ea-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.5s ease;
}

.ea-gallery__item:hover img {
	transform: scale(1.05);
}

.ea-gallery__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(3, 3, 8, 0.7) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s;
}

.ea-gallery__item:hover::after {
	opacity: 1;
}

.ea-gallery__item.featured {
	grid-column: span 1;
	grid-row: span 2;
}

/* ── Features grid ── */
.ea-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.ea-feature {
	padding: 32px 24px;
	border-radius: var(--radius);
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(16px);
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

.ea-feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--red), var(--cyan));
	transform: scaleX(0);
	transition: transform 0.4s ease;
	transform-origin: left;
}

.ea-feature:hover {
	transform: translateY(-8px);
	border-color: rgba(232, 25, 44, 0.4);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ea-feature:hover::before {
	transform: scaleX(1);
}

.ea-feature__icon {
	font-size: 2rem;
	margin-bottom: 16px;
	display: block;
}

.ea-feature__title {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.04em;
}

.ea-feature__text {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.5;
}

/* ── About ── */
.ea-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.ea-about__text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 20px;
}

.ea-about__text h2 strong {
	color: var(--red);
}

.ea-about__text p {
	color: var(--muted);
	margin-bottom: 16px;
	font-size: 1rem;
}

.ea-checklist {
	list-style: none;
	margin: 28px 0;
}

.ea-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	font-size: 0.95rem;
	color: var(--text);
	border-bottom: 1px solid var(--glass-border);
}

.ea-checklist li::before {
	content: '✓';
	color: var(--cyan);
	font-weight: 700;
	flex-shrink: 0;
}

.ea-about__visual {
	position: relative;
	display: flex;
	justify-content: center;
	perspective: 800px;
}

.ea-about__logo-3d {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(232, 25, 44, 0.3), rgba(3, 3, 8, 0.9));
	border: 2px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 80px rgba(232, 25, 44, 0.3), inset 0 0 40px rgba(0, 0, 0, 0.5);
	animation: logoSpin 8s linear infinite;
	transform-style: preserve-3d;
}

.ea-about__logo-3d img {
	width: 160px;
	height: 160px;
	filter: drop-shadow(0 0 20px rgba(232, 25, 44, 0.8));
}

@keyframes logoSpin {
	0% { transform: rotateY(0deg); }
	100% { transform: rotateY(360deg); }
}

/* ── CTA banner ── */
.ea-cta {
	max-width: 900px;
	margin: 0 auto;
	padding: 64px 48px;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(232, 25, 44, 0.9), rgba(139, 92, 246, 0.8));
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(232, 25, 44, 0.4);
}

.ea-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ea-cta h2 {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 900;
	margin-bottom: 12px;
	position: relative;
}

.ea-cta p {
	font-size: 1.05rem;
	opacity: 0.9;
	margin-bottom: 28px;
	position: relative;
}

.ea-cta .ea-btn {
	position: relative;
}

/* ── Footer ── */
.ea-footer {
	padding: 40px 60px;
	border-top: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--muted);
	font-size: 0.85rem;
}

.ea-footer__logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ea-footer__logo img {
	width: 32px;
	height: 32px;
}

/* ── Scroll reveal ── */
.ea-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Lightbox ── */
.ea-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	backdrop-filter: blur(10px);
}

.ea-lightbox.open {
	opacity: 1;
	pointer-events: all;
}

.ea-lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 20px;
	box-shadow: 0 0 80px rgba(232, 25, 44, 0.4);
	transform: scale(0.8);
	transition: transform 0.4s ease;
}

.ea-lightbox.open img {
	transform: scale(1);
}

.ea-lightbox__close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.ea-lightbox__close:hover {
	background: var(--red);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.ea-hero {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 130px 32px 60px;
	}

	.ea-hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.ea-hero__cta,
	.ea-hero__stats {
		justify-content: center;
	}

	.ea-hero__visual {
		order: -1;
	}

	.ea-phone-stage {
		width: 260px;
		height: 520px;
	}

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

	.ea-gallery__item.featured {
		grid-row: span 1;
	}

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

	.ea-about {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ea-download-bar {
		flex-direction: column;
		padding: 10px 16px;
		gap: 8px;
	}

	.ea-download-bar__text {
		font-size: 0.65rem;
	}

	.ea-btn {
		padding: 8px 16px;
		font-size: 0.7rem;
	}

	.ea-nav {
		padding: 12px 16px;
		top: 80px;
	}

	.ea-nav__links {
		display: none;
	}

	.ea-hero {
		padding: 150px 20px 60px;
	}

	.ea-section {
		padding: 60px 20px;
	}

	.ea-gallery {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.ea-features {
		grid-template-columns: 1fr;
	}

	.ea-footer {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding: 32px 20px;
	}

	.ea-float-card {
		display: none;
	}
}

/* ══ WebGL + Montfort-style additions v1.1 ══ */

.ea-webgl {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.ea-webgl canvas {
	display: block;
	width: 100% !important;
	height: 100% !important;
}

.ea-canvas-bg { display: none; }

.ea-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, var(--red), var(--cyan));
	transform-origin: left;
	transform: scaleX(0);
	z-index: 1001;
}

.ea-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	pointer-events: none;
	z-index: 9999;
	mix-blend-mode: difference;
	transition: width 0.3s, height 0.3s, margin 0.3s;
}

.ea-cursor__dot {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
}

.ea-cursor.hover {
	width: 48px;
	height: 48px;
	margin: -24px 0 0 -24px;
}

body.ea-matrix-landing {
	cursor: auto;
}

body.ea-matrix-landing a,
body.ea-matrix-landing button {
	cursor: pointer;
}

@media (pointer: coarse) {
	.ea-cursor { display: none; }
	body.ea-matrix-landing,
	body.ea-matrix-landing a,
	body.ea-matrix-landing button { cursor: pointer; }
}

/* ── Cinematic intro ── */
.ea-intro {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	padding: 120px 32px 80px;
}

.ea-intro__inner {
	text-align: center;
	position: relative;
	z-index: 3;
}

.ea-intro__logo-wrap {
	margin-bottom: 32px;
	animation: logoFloat 4s ease-in-out infinite;
}

.ea-intro__logo {
	width: 100px;
	height: 100px;
	filter: drop-shadow(0 0 30px rgba(232, 25, 44, 0.8));
}

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

.ea-intro__line {
	height: 1px;
	width: min(400px, 80vw);
	margin: 0 auto;
	background: linear-gradient(90deg, transparent, var(--red), var(--cyan), transparent);
	box-shadow: 0 0 20px rgba(232, 25, 44, 0.5);
	transform-origin: center;
}

.ea-intro__line--top { margin-bottom: 28px; }
.ea-intro__line--bottom { margin-top: 28px; margin-bottom: 20px; }

.ea-intro__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 7vw, 5.5rem);
	font-weight: 900;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--text);
	text-shadow: 0 0 40px rgba(232, 25, 44, 0.4);
}

.ea-char {
	display: inline-block;
	transform-style: preserve-3d;
}

.ea-intro__tagline {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 36px;
}

.ea-intro__divisions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.ea-intro__pill {
	padding: 8px 20px;
	border-radius: 50px;
	border: 1px solid var(--glass-border);
	background: var(--glass);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
}

.ea-intro__pill.active {
	color: var(--text);
	border-color: var(--red);
	background: rgba(232, 25, 44, 0.15);
	box-shadow: 0 0 20px rgba(232, 25, 44, 0.3);
	transform: scale(1.05);
}

/* Scroll hint */
.ea-scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	z-index: 5;
	transition: color 0.3s;
}

.ea-scroll-hint:hover { color: var(--cyan); }

.ea-scroll-hint__ring {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--glass-border);
	position: relative;
	animation: ringSpin 3s linear infinite;
}

.ea-scroll-hint__ring::after {
	content: '';
	position: absolute;
	inset: 8px;
	border-radius: 50%;
	border: 1px dashed rgba(0, 229, 255, 0.3);
	animation: ringSpin 6s linear infinite reverse;
}

@keyframes ringSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.ea-scroll-hint__text {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.ea-scroll-hint__arrow {
	width: 20px;
	height: 20px;
	animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

/* Statement section */
.ea-statement {
	padding: 120px 60px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ea-statement__inner {
	max-width: 900px;
	margin: 0 auto;
}

.ea-statement__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.5vw, 2.6rem);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 24px;
}

.ea-statement__title strong {
	color: var(--red);
}

.ea-statement__text {
	font-size: 1.1rem;
	color: var(--muted);
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
}

/* Horizontal scroll */
.ea-hscroll {
	position: relative;
	height: 100vh;
	z-index: 2;
}

.ea-hscroll__sticky {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 60px;
	overflow: hidden;
}

.ea-hscroll__track {
	display: flex;
	gap: 32px;
	padding: 40px 0;
	will-change: transform;
}

.ea-hscroll__card {
	flex: 0 0 340px;
	padding: 48px 36px;
	border-radius: 24px;
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(20px);
	transform-style: preserve-3d;
	transition: border-color 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

.ea-hscroll__card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(232, 25, 44, 0.08), transparent);
	opacity: 0;
	transition: opacity 0.4s;
}

.ea-hscroll__card:hover {
	border-color: rgba(232, 25, 44, 0.5);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(232, 25, 44, 0.15);
}

.ea-hscroll__card:hover::before { opacity: 1; }

.ea-hscroll__num {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 900;
	color: rgba(232, 25, 44, 0.2);
	line-height: 1;
	margin-bottom: 16px;
}

.ea-hscroll__icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 16px;
}

.ea-hscroll__title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: 0.04em;
}

.ea-hscroll__desc {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.6;
}

/* Tabs */
.ea-tabs {
	max-width: 800px;
	margin: 0 auto;
}

.ea-tabs__nav {
	display: flex;
	gap: 4px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--glass-border);
}

.ea-tabs__btn {
	flex: 1;
	padding: 16px 24px;
	background: none;
	border: none;
	color: var(--muted);
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	transition: color 0.3s;
}

.ea-tabs__btn::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transition: transform 0.3s;
}

.ea-tabs__btn.active {
	color: var(--text);
}

.ea-tabs__btn.active::after {
	transform: scaleX(1);
}

.ea-tabs__btn:hover { color: var(--cyan); }

.ea-tabs__panel {
	display: none;
	padding: 32px;
	border-radius: var(--radius);
	background: var(--bg-card);
	border: 1px solid var(--glass-border);
	backdrop-filter: blur(16px);
}

.ea-tabs__panel.active { display: block; }

.ea-tabs__panel p {
	color: var(--muted);
	margin-bottom: 20px;
	font-size: 1rem;
}

.ea-tabs__list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ea-tabs__list li {
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--glass);
	border: 1px solid var(--glass-border);
	font-size: 0.9rem;
	transition: border-color 0.3s, transform 0.3s;
}

.ea-tabs__list li:hover {
	border-color: var(--cyan);
	transform: translateX(4px);
}

.ea-cta__btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
}

.ea-gallery {
	perspective: 1000px;
}

.ea-gallery__item {
	transform-style: preserve-3d;
}

.ea-nav {
	top: 52px;
	opacity: 0;
	animation: navFadeIn 0.8s ease 2s forwards;
}

@keyframes navFadeIn {
	to { opacity: 1; }
}

.ea-hero {
	z-index: 2;
}

.ea-section,
.ea-capabilities {
	z-index: 2;
	position: relative;
}

.ea-magnetic {
	transition: transform 0.2s ease;
}

@media (max-width: 1024px) {
	.ea-hscroll { height: auto; }
	.ea-hscroll__sticky {
		height: auto;
		padding: 60px 32px;
	}
	.ea-hscroll__track {
		flex-direction: column;
		transform: none !important;
	}
	.ea-hscroll__card { flex: none; width: 100%; }
	.ea-statement { padding: 80px 32px; }
	.ea-tabs__list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.ea-intro { padding: 140px 20px 80px; }
	.ea-intro__title { letter-spacing: 0.12em; }
	.ea-hscroll__sticky { padding: 40px 20px; }
	.ea-statement { padding: 60px 20px; }
}

/* ══ Soft modern theme v1.2 ══ */

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body.ea-matrix-landing {
	background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 50%, #f6f7fb 100%);
	color: var(--text);
	line-height: 1.7;
}

body.ea-matrix-landing a,
body.ea-matrix-landing button {
	cursor: pointer;
}

.ea-cursor { display: none !important; }

.ea-webgl {
	opacity: 0.35;
}

.ea-scroll-progress {
	height: 3px;
	background: linear-gradient(90deg, var(--red), var(--accent));
	border-radius: 0 2px 2px 0;
}

/* Download bar — clean frosted */
.ea-download-bar {
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(24px) saturate(1.4);
	border-bottom: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	padding: 12px 28px;
}

.ea-download-bar__text {
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--text);
}

.ea-btn {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
	border-radius: 14px;
	padding: 11px 22px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.ea-btn--android {
	background: var(--text);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.ea-btn--android:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.ea-btn--ios {
	background: var(--surface);
	color: var(--text);
	border: 1.5px solid var(--glass-border);
}

.ea-btn--ios:hover {
	background: var(--bg-soft);
	border-color: rgba(28, 32, 51, 0.15);
	transform: translateY(-2px);
}

.ea-btn--primary {
	background: linear-gradient(135deg, var(--red), #f08a9b);
	color: #fff;
	box-shadow: 0 6px 20px rgba(224, 99, 122, 0.25);
}

.ea-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(224, 99, 122, 0.3);
}

.ea-btn--ghost {
	background: var(--surface);
	color: var(--text);
	border: 1.5px solid var(--glass-border);
}

.ea-btn--ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
	background: var(--accent-soft, #eef0fe);
}

/* Nav */
.ea-nav {
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	padding: 16px 40px;
	box-shadow: none;
}

.ea-nav.scrolled {
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-soft);
}

.ea-nav__logo img {
	filter: none;
	width: 42px;
	height: 42px;
}

.ea-nav__logo:hover img {
	transform: scale(1.05);
}

.ea-nav__brand {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: -0.01em;
	color: var(--text);
}

.ea-nav__brand span {
	color: var(--red);
}

.ea-nav__links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--muted);
}

.ea-nav__links a:hover {
	color: var(--red);
}

/* Intro */
.ea-intro {
	padding: 130px 40px 90px;
}

.ea-intro__logo {
	width: 88px;
	height: 88px;
	filter: drop-shadow(0 8px 24px rgba(224, 99, 122, 0.2));
}

.ea-intro__line {
	background: linear-gradient(90deg, transparent, rgba(224, 99, 122, 0.35), rgba(123, 140, 255, 0.35), transparent);
	box-shadow: none;
}

.ea-intro__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.2rem, 6vw, 4rem);
	letter-spacing: -0.03em;
	text-transform: none;
	color: var(--text);
	text-shadow: none;
}

.ea-intro__tagline {
	font-size: 1rem;
	letter-spacing: 0.01em;
	text-transform: none;
	color: var(--muted);
	font-weight: 400;
}

.ea-intro__pill {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	background: var(--surface);
	border: 1px solid var(--glass-border);
	color: var(--muted);
	box-shadow: var(--shadow-soft);
}

.ea-intro__pill.active {
	color: var(--red);
	border-color: rgba(224, 99, 122, 0.3);
	background: var(--red-soft);
	box-shadow: 0 4px 16px rgba(224, 99, 122, 0.12);
	transform: none;
}

.ea-scroll-hint {
	color: var(--muted);
}

.ea-scroll-hint:hover { color: var(--red); }

.ea-scroll-hint__ring {
	border-color: var(--glass-border);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
	animation: none;
}

.ea-scroll-hint__ring::after {
	border-color: rgba(224, 99, 122, 0.2);
	animation: softPulse 2.5s ease infinite;
}

@keyframes softPulse {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

.ea-scroll-hint__text {
	text-transform: none;
	letter-spacing: 0.02em;
	font-weight: 500;
}

/* Hero */
.ea-hero {
	padding: 150px 60px 100px;
	gap: 60px;
}

.ea-hero__glow {
	background: radial-gradient(circle, rgba(224, 99, 122, 0.08) 0%, transparent 70%);
	animation: softGlow 6s ease-in-out infinite;
}

.ea-hero__glow--2 {
	background: radial-gradient(circle, rgba(123, 140, 255, 0.08) 0%, transparent 70%);
}

@keyframes softGlow {
	0%, 100% { opacity: 0.5; transform: scale(1); }
	50% { opacity: 0.8; transform: scale(1.05); }
}

.ea-hero__badge {
	background: var(--red-soft);
	border: none;
	color: var(--red);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
}

.ea-hero__badge::before {
	background: var(--red);
	box-shadow: none;
}

.ea-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
}

.ea-hero__title .highlight {
	background: linear-gradient(135deg, var(--red), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
}

.ea-hero__subtitle {
	color: var(--muted);
	font-size: 1.1rem;
	line-height: 1.75;
}

.ea-stat__num {
	font-family: var(--font-display);
	color: var(--red);
	font-weight: 800;
}

.ea-stat__label {
	color: var(--muted);
	font-size: 0.85rem;
}

/* Phone */
.ea-phone {
	background: linear-gradient(145deg, #2a2d3a, #1c1f2a);
	border: 2px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 24px 60px rgba(28, 32, 51, 0.15),
		0 8px 24px rgba(28, 32, 51, 0.08);
}

.ea-phone__ring {
	border-color: rgba(224, 99, 122, 0.15);
}

.ea-phone__ring--2 {
	border-color: rgba(123, 140, 255, 0.12);
}

.ea-float-card {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(12px);
}

.ea-float-card__title {
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--text);
	font-size: 0.85rem;
}

.ea-float-card__sub {
	color: var(--muted);
}

.ea-phone-dot.active {
	background: var(--red);
	box-shadow: 0 0 8px rgba(224, 99, 122, 0.4);
}

/* Sections */
.ea-section {
	padding: 110px 60px;
}

.ea-section__tag {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--red);
}

.ea-section__title {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--text);
}

.ea-section__desc {
	color: var(--muted);
	font-size: 1.05rem;
}

.ea-statement {
	padding: 100px 60px;
	background: var(--surface);
	border-radius: 32px;
	margin: 0 40px;
	box-shadow: var(--shadow-soft);
}

.ea-statement__title {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text);
}

.ea-statement__title strong {
	color: var(--red);
}

/* Horizontal cards */
.ea-hscroll__card {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	border-radius: 28px;
}

.ea-hscroll__card:hover {
	border-color: rgba(224, 99, 122, 0.2);
	box-shadow: var(--shadow-hover);
}

.ea-hscroll__card::before {
	background: linear-gradient(135deg, rgba(224, 99, 122, 0.04), transparent);
}

.ea-hscroll__num {
	color: rgba(224, 99, 122, 0.15);
	font-family: var(--font-display);
}

.ea-hscroll__title {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text);
}

/* Gallery */
.ea-gallery__item {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	border-radius: 24px;
}

.ea-gallery__item:hover {
	box-shadow: var(--shadow-hover);
}

/* Features (legacy grid) */
.ea-feature {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
}

.ea-feature:hover {
	box-shadow: var(--shadow-hover);
	border-color: rgba(224, 99, 122, 0.15);
}

.ea-feature__title {
	font-family: var(--font-display);
	font-weight: 700;
}

/* Tabs */
.ea-tabs__btn {
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.95rem;
}

.ea-tabs__btn.active { color: var(--text); }
.ea-tabs__btn:hover { color: var(--red); }
.ea-tabs__btn::after { background: var(--red); height: 3px; border-radius: 3px 3px 0 0; }

.ea-tabs__panel {
	background: var(--surface);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	border-radius: 24px;
}

.ea-tabs__list li {
	background: var(--bg);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
}

.ea-tabs__list li:hover {
	border-color: rgba(123, 140, 255, 0.3);
	background: #eef0fe;
}

/* About */
.ea-about__text h2 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--text);
}

.ea-about__text h2 strong { color: var(--red); }

.ea-about__text p { color: var(--muted); }

.ea-checklist li {
	color: var(--text);
	border-bottom-color: var(--glass-border);
}

.ea-checklist li::before { color: var(--cyan); }

.ea-about__logo-3d {
	background: radial-gradient(circle at 30% 30%, var(--red-soft), var(--surface));
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	animation: softSpin 12s linear infinite;
}

@keyframes softSpin {
	from { transform: rotateY(0deg); }
	to { transform: rotateY(360deg); }
}

/* CTA */
.ea-cta {
	background: linear-gradient(135deg, #fde8ed 0%, #eef0fe 100%);
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-soft);
	border-radius: 32px;
}

.ea-cta::before { opacity: 0.3; }

.ea-cta h2 {
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--text);
}

.ea-cta p {
	color: var(--muted);
	opacity: 1;
}

.ea-cta .ea-btn--android {
	background: var(--text);
}

.ea-cta .ea-btn--ios {
	background: var(--surface);
	color: var(--text);
	border-color: var(--glass-border);
}

/* Footer */
.ea-footer {
	background: var(--surface);
	border-top: 1px solid var(--glass-border);
	color: var(--muted);
	padding: 48px 60px;
}

/* Lightbox */
.ea-lightbox {
	background: rgba(28, 32, 51, 0.6);
	backdrop-filter: blur(16px);
}

.ea-lightbox img {
	box-shadow: var(--shadow-hover);
}

.ea-lightbox__close {
	background: var(--surface);
	color: var(--text);
	border: 1px solid var(--glass-border);
}

.ea-lightbox__close:hover {
	background: var(--red);
	color: #fff;
}

/* Reveal — smoother */
.ea-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 640px) {
	.ea-statement { margin: 0 16px; border-radius: 24px; }
	.ea-nav { padding: 14px 20px; }
	.ea-hero { padding: 140px 24px 80px; }
	.ea-section { padding: 80px 24px; }
}

/* ══ Mobile & solid polish v1.3 ══ */

:root {
	--download-bar-h: 56px;
	--nav-h: 64px;
	--header-total: calc(var(--download-bar-h) + var(--nav-h));
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body.ea-matrix-landing {
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-y: none;
}

body.ea-menu-open {
	overflow: hidden;
}

/* ── Mobile nav toggle (hidden on desktop) ── */
.ea-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1.5px solid var(--glass-border);
	border-radius: 12px;
	background: var(--surface);
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease;
	flex-shrink: 0;
}

.ea-nav__toggle:hover,
.ea-nav__toggle:focus-visible {
	background: var(--bg-soft);
	border-color: rgba(28, 32, 51, 0.15);
	outline: none;
}

.ea-nav__toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.ea-nav__menu {
	display: contents;
}

.ea-nav__overlay {
	display: none;
}

/* Desktop: inline nav */
@media (min-width: 769px) {
	.ea-nav {
		top: var(--download-bar-h) !important;
	}

	.ea-intro {
		padding-top: calc(var(--header-total) + 40px);
	}
}

/* ── Tablet & mobile ── */
@media (max-width: 768px) {
	.ea-webgl {
		display: none;
	}

	.ea-download-bar {
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		padding: 10px 16px;
		padding-top: max(10px, env(safe-area-inset-top));
		gap: 8px;
		z-index: 1100;
	}

	.ea-download-bar__text {
		flex: 1 1 100%;
		text-align: center;
		font-size: 0.78rem;
		line-height: 1.4;
	}

	.ea-download-bar__actions {
		flex: 1 1 100%;
		justify-content: center;
		gap: 10px;
	}

	.ea-download-bar__actions .ea-btn {
		flex: 1;
		justify-content: center;
		min-height: 44px;
		max-width: 180px;
		font-size: 0.82rem;
	}

	.ea-nav {
		top: var(--download-bar-h) !important;
		padding: 10px 16px;
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
		z-index: 1090;
		opacity: 1 !important;
		animation: none !important;
	}

	.ea-nav__logo img {
		width: 36px;
		height: 36px;
	}

	.ea-nav__brand {
		font-size: 0.95rem;
	}

	.ea-nav__toggle {
		display: flex;
	}

	.ea-nav__menu {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: var(--header-total);
		background: rgba(255, 255, 255, 0.97);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--glass-border);
		box-shadow: var(--shadow-hover);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.3s ease,
			visibility 0.3s ease;
		z-index: 1080;
	}

	.ea-nav__menu.is-open {
		max-height: 360px;
		opacity: 1;
		visibility: visible;
	}

	.ea-nav__links {
		display: flex !important;
		flex-direction: column;
		gap: 0;
		padding: 8px 0 16px;
		list-style: none;
	}

	.ea-nav__links li {
		border-bottom: 1px solid var(--glass-border);
	}

	.ea-nav__links li:last-child {
		border-bottom: none;
	}

	.ea-nav__links a {
		display: block;
		padding: 14px 24px;
		font-size: 1rem;
		font-weight: 500;
		color: var(--text);
		min-height: 48px;
		line-height: 1.4;
		transition: background 0.2s ease, color 0.2s ease;
	}

	.ea-nav__links a:hover,
	.ea-nav__links a:focus {
		background: var(--red-soft);
		color: var(--red);
	}

	.ea-nav__overlay {
		display: block;
		position: fixed;
		inset: 0;
		top: var(--header-total);
		background: rgba(28, 32, 51, 0.25);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 1070;
	}

	.ea-nav__overlay.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* Intro & hero spacing */
	.ea-intro {
		min-height: calc(100vh - var(--header-total));
		min-height: calc(100dvh - var(--header-total));
		padding: calc(var(--header-total) + 24px) 20px 70px;
	}

	.ea-intro__title {
		font-size: clamp(1.8rem, 9vw, 2.8rem);
		letter-spacing: -0.02em;
	}

	.ea-intro__logo {
		width: 72px;
		height: 72px;
	}

	.ea-intro__divisions {
		gap: 8px;
	}

	.ea-intro__pill {
		font-size: 0.72rem;
		padding: 6px 14px;
	}

	.ea-scroll-hint {
		bottom: 24px;
	}

	.ea-hero {
		padding: calc(var(--header-total) + 32px) 20px 60px !important;
		gap: 32px;
	}

	.ea-hero__title {
		font-size: clamp(1.8rem, 7vw, 2.5rem);
	}

	.ea-hero__cta {
		flex-direction: column;
		width: 100%;
	}

	.ea-hero__cta .ea-btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
	}

	.ea-hero__stats {
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	.ea-phone-stage {
		width: 220px;
		height: 440px;
	}

	.ea-float-card {
		display: none;
	}

	.ea-statement {
		margin: 0 16px;
		padding: 48px 24px;
		border-radius: 20px;
	}

	.ea-statement__title {
		font-size: 1.35rem;
	}

	.ea-hscroll {
		height: auto !important;
	}

	.ea-hscroll__sticky {
		height: auto !important;
		padding: 60px 20px !important;
		position: relative !important;
	}

	.ea-hscroll__track {
		flex-direction: column !important;
		transform: none !important;
		gap: 16px;
	}

	.ea-hscroll__card {
		flex: none !important;
		width: 100% !important;
		padding: 32px 24px;
	}

	.ea-section {
		padding: 64px 20px !important;
	}

	.ea-section__title {
		font-size: clamp(1.4rem, 5vw, 1.9rem);
	}

	.ea-gallery {
		grid-template-columns: 1fr 1fr !important;
		gap: 12px;
	}

	.ea-gallery__item.featured {
		grid-column: span 2;
	}

	.ea-tabs__nav {
		flex-direction: column;
		gap: 0;
		border-bottom: none;
	}

	.ea-tabs__btn {
		padding: 14px 16px;
		text-align: left;
		border-bottom: 1px solid var(--glass-border);
		min-height: 48px;
	}

	.ea-tabs__btn::after {
		display: none;
	}

	.ea-tabs__btn.active {
		background: var(--red-soft);
		color: var(--red);
	}

	.ea-tabs__list {
		grid-template-columns: 1fr !important;
	}

	.ea-about {
		gap: 32px;
	}

	.ea-about__logo-3d {
		width: 200px;
		height: 200px;
	}

	.ea-about__logo-3d img {
		width: 120px;
		height: 120px;
	}

	.ea-cta {
		padding: 40px 24px !important;
		margin: 0 16px;
		border-radius: 24px;
	}

	.ea-cta__btns {
		flex-direction: column;
		width: 100%;
	}

	.ea-cta__btns .ea-btn {
		width: 100%;
		justify-content: center;
		min-height: 48px;
	}

	.ea-footer {
		flex-direction: column;
		gap: 12px;
		text-align: center;
		padding: 32px 20px;
		padding-bottom: max(32px, env(safe-area-inset-bottom));
	}

	.ea-btn {
		min-height: 44px;
		touch-action: manipulation;
	}

	.ea-magnetic {
		transform: none !important;
	}
}

@media (max-width: 380px) {
	.ea-download-bar__text {
		font-size: 0.7rem;
	}

	.ea-download-bar__actions .ea-btn {
		font-size: 0.75rem;
		padding: 10px 12px;
	}

	.ea-gallery {
		grid-template-columns: 1fr !important;
	}

	.ea-gallery__item.featured {
		grid-column: span 1;
	}
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}

/* ══ Fix v1.3.1 — cursor + empty sections ══ */

.ea-cursor {
	display: none !important;
}

body.ea-matrix-landing,
body.ea-matrix-landing a,
body.ea-matrix-landing button {
	cursor: auto;
}

body.ea-matrix-landing a,
body.ea-matrix-landing button {
	cursor: pointer;
}

/* Remove forced full-viewport heights that cause empty gaps */
.ea-intro {
	min-height: auto !important;
	padding: calc(var(--header-total, 120px) + 48px) 40px 72px !important;
}

.ea-hero {
	min-height: auto !important;
	padding: 72px 60px 80px !important;
}

.ea-hscroll {
	height: auto !important;
	min-height: 0 !important;
	padding: 80px 0 !important;
}

.ea-hscroll__sticky {
	height: auto !important;
	min-height: 0 !important;
	position: relative !important;
	padding: 0 40px 40px !important;
	overflow: visible !important;
}

.ea-hscroll__track {
	transform: none !important;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(224, 99, 122, 0.3) transparent;
	padding-bottom: 12px;
}

.ea-hscroll__track::-webkit-scrollbar {
	height: 6px;
}

.ea-hscroll__track::-webkit-scrollbar-thumb {
	background: rgba(224, 99, 122, 0.35);
	border-radius: 3px;
}

.ea-hscroll__card {
	scroll-snap-align: start;
}

/* Kill GSAP pin-spacer gaps */
.pin-spacer {
	display: contents !important;
}

@media (max-width: 768px) {
	.ea-intro {
		padding: calc(var(--header-total, 140px) + 24px) 20px 56px !important;
	}

	.ea-hero {
		padding: 48px 20px 60px !important;
	}

	.ea-hscroll__sticky {
		padding: 0 20px 32px !important;
	}
}

/* ══ v1.3.2 — hero pills + layout solid ══ */

.ea-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.ea-hero__pills .ea-intro__pill {
	font-size: 0.78rem;
	padding: 6px 14px;
}

.pin-spacer {
	min-height: 0 !important;
	height: auto !important;
	padding: 0 !important;
	margin: 0 !important;
}

.ea-hero {
	align-items: center;
}

.ea-hero__content {
	align-self: center;
}

@media (max-width: 1024px) {
	.ea-hero__pills {
		justify-content: center;
	}
}

/* ══ v1.3.3 — cursor visible + no empty scroll gaps ══ */

/* Keep native cursor always visible */
.ea-cursor {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.ea-matrix-landing,
body.ea-matrix-landing * {
	cursor: auto;
}

body.ea-matrix-landing a,
body.ea-matrix-landing button,
body.ea-matrix-landing [role="button"],
body.ea-matrix-landing .ea-tabs__btn,
body.ea-matrix-landing .ea-gallery__item {
	cursor: pointer;
}

/* Reveal content stays visible (GSAP handles entrance only) */
.ea-reveal {
	opacity: 1 !important;
	transform: none;
}

/* Hero clears fixed download bar + nav */
.ea-hero {
	min-height: auto !important;
	padding: calc(var(--header-total, 116px) + 40px) 60px 72px !important;
	align-items: center;
}

/* Features section — no forced viewport height */
.ea-hscroll,
.ea-hscroll__sticky {
	height: auto !important;
	min-height: 0 !important;
}

.ea-hscroll__sticky {
	overflow: visible !important;
	position: relative !important;
	padding: 64px 60px 48px !important;
}

.ea-hscroll {
	padding: 0 !important;
}

/* Statement — compact, no ghost empty card */
.ea-statement {
	padding: 72px 48px !important;
	margin: 0 40px 24px !important;
}

@media (max-width: 768px) {
	.ea-hero {
		padding: calc(var(--header-total, 130px) + 24px) 20px 56px !important;
	}

	.ea-hscroll__sticky {
		padding: 48px 20px 32px !important;
	}

	.ea-statement {
		margin: 0 16px 16px !important;
		padding: 48px 24px !important;
	}
}

/* v1.3.3b — hscroll vertical centering gap */
.ea-hscroll__sticky {
	justify-content: flex-start !important;
}

/* v1.3.4 — tighten statement → features spacing */
.ea-statement {
	margin-bottom: 0 !important;
	padding-bottom: 48px !important;
}

.ea-hscroll .ea-section__header {
	margin-bottom: 24px !important;
}

.ea-hscroll__sticky {
	padding: 28px 60px 32px !important;
}

.ea-hscroll__track {
	padding-top: 8px !important;
}

/* ══ v1.4.0 — 3D Interactive Gallery & site polish ══ */

.ea-gallery-section {
	overflow: hidden;
	perspective: 1600px;
}

.ea-gallery-3d {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 20px 20px 48px;
}

.ea-gallery-3d__ambient {
	position: absolute;
	inset: 10% 5%;
	background:
		radial-gradient(ellipse at 30% 40%, rgba(224, 99, 122, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse at 70% 60%, rgba(155, 143, 217, 0.12) 0%, transparent 55%);
	pointer-events: none;
	border-radius: 50%;
	filter: blur(40px);
	animation: galleryAmbient 8s ease-in-out infinite alternate;
}

@keyframes galleryAmbient {
	from { transform: scale(1) translateY(0); opacity: 0.7; }
	to { transform: scale(1.08) translateY(-12px); opacity: 1; }
}

.ea-gallery-3d__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	border: 1px solid rgba(224, 99, 122, 0.2);
	pointer-events: none;
	animation: ringPulse 4s ease infinite;
}

.ea-gallery-3d__ring--1 {
	width: 420px;
	height: 420px;
	transform: translate(-50%, -50%);
}

.ea-gallery-3d__ring--2 {
	width: 540px;
	height: 540px;
	transform: translate(-50%, -50%);
	animation-delay: 1.5s;
	border-color: rgba(155, 143, 217, 0.18);
}

.ea-gallery-3d__stage {
	position: relative;
	height: clamp(520px, 68vh, 680px);
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1400px;
	transform-style: preserve-3d;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.ea-gallery-3d__stage.is-dragging {
	cursor: grabbing;
}

.ea-gallery-3d__slide {
	position: absolute;
	width: 260px;
	height: 530px;
	transform-style: preserve-3d;
	transition:
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease,
		filter 0.45s ease;
	will-change: transform, opacity;
	pointer-events: none;
	opacity: 0;
	filter: blur(2px) brightness(0.85);
}

.ea-gallery-3d__slide.is-active {
	pointer-events: auto;
	opacity: 1;
	filter: none;
	z-index: 3;
}

.ea-gallery-3d__slide.is-near {
	opacity: 0.65;
	filter: blur(0.5px) brightness(0.92);
	z-index: 2;
}

.ea-gallery-3d__phone-tilt {
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.12s ease-out;
}

.ea-phone--gallery {
	position: relative;
	inset: auto;
	width: 100%;
	height: 100%;
	border-radius: 36px;
	border-width: 2px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.08),
		0 40px 100px rgba(26, 32, 53, 0.35),
		0 0 80px rgba(224, 99, 122, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ea-phone--gallery::before {
	width: 72px;
	height: 22px;
	top: 10px;
	border-radius: 16px;
}

.ea-phone--gallery .ea-phone__screen {
	inset: 7px;
	border-radius: 30px;
}

.ea-gallery-3d__slide.is-active .ea-phone--gallery {
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.1),
		0 50px 120px rgba(26, 32, 53, 0.4),
		0 0 100px rgba(224, 99, 122, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ea-gallery-3d__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 8px;
}

.ea-gallery-3d__arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid var(--glass-border);
	background: var(--surface);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
	box-shadow: var(--shadow-soft);
}

.ea-gallery-3d__arrow svg {
	width: 22px;
	height: 22px;
}

.ea-gallery-3d__arrow:hover {
	transform: scale(1.08);
	border-color: rgba(224, 99, 122, 0.4);
	box-shadow: 0 8px 28px rgba(224, 99, 122, 0.18);
}

.ea-gallery-3d__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.ea-gallery-3d__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: var(--glass-border);
	cursor: pointer;
	padding: 0;
	transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.ea-gallery-3d__dot.active {
	background: var(--red);
	transform: scale(1.35);
	box-shadow: 0 0 12px rgba(224, 99, 122, 0.45);
}

.ea-gallery-3d__thumbs {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 28px;
	padding: 0 10px;
}

.ea-gallery-3d__thumb {
	flex: 0 0 auto;
	width: 52px;
	height: 96px;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid transparent;
	background: #111;
	cursor: pointer;
	padding: 0;
	transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 6px 20px rgba(26, 32, 53, 0.15);
	transform-style: preserve-3d;
}

.ea-gallery-3d__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	pointer-events: none;
}

.ea-gallery-3d__thumb:hover {
	transform: translateY(-4px) rotateX(8deg);
}

.ea-gallery-3d__thumb.active {
	border-color: var(--red);
	box-shadow: 0 8px 24px rgba(224, 99, 122, 0.25);
	transform: translateY(-6px) scale(1.05);
}

.ea-gallery-3d__hint {
	text-align: center;
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 20px;
	letter-spacing: 0.04em;
}

/* Feature cards — 3D hover */
.ea-hscroll__card {
	transform-style: preserve-3d;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.ea-hscroll__card.is-tilting {
	transition: transform 0.1s ease-out, box-shadow 0.35s;
}

/* Statement float */
.ea-statement__inner {
	transform-style: preserve-3d;
	transition: transform 0.15s ease-out;
}

/* Lightbox phone frame */
.ea-lightbox__phone {
	max-width: 320px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.ea-gallery-3d__stage {
		height: clamp(460px, 62vh, 560px);
	}

	.ea-gallery-3d__slide {
		width: 220px;
		height: 450px;
	}

	.ea-gallery-3d__thumbs {
		gap: 8px;
	}

	.ea-gallery-3d__thumb {
		width: 44px;
		height: 80px;
	}

	.ea-gallery-3d__arrow {
		width: 42px;
		height: 42px;
	}
}

.ea-lightbox__phone {
	width: min(300px, 78vw);
	height: min(610px, 82vh);
	margin: 0 auto;
	transform: scale(0.85);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ea-lightbox.open .ea-lightbox__phone {
	transform: scale(1);
}

.ea-lightbox__phone .ea-phone__screen img {
	max-width: none;
	max-height: none;
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: none;
	transform: none;
}
