/* ARKOO LTD – stylesheet v2
   Design: Futurism + neon accents, split-screen, large typography
   Dark theme with electric cyan accent
*/

:root {
	--color-bg: #0b0e13;
	--color-bg-alt: #101419;
	--color-surface: #161b22;
	--color-primary: #00d4ff;
	--color-primary-dark: #00a8cc;
	--color-secondary: #7b5cff;
	--color-accent-glow: rgba(0, 212, 255, 0.15);
	--color-text: #f0f4f8;
	--color-text-muted: #8b9cb3;
	--color-border: #2a3441;
	--color-white: #ffffff;
	--font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
	--font-mono: 'Consolas', 'Monaco', monospace;
	--transition: 0.3s ease;
	--transition-fast: 0.15s ease;
	--glow: 0 0 20px var(--color-accent-glow);
	--glow-strong: 0 0 40px var(--color-accent-glow), 0 0 80px rgba(0, 212, 255, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
}

/* diagonal stripes background */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background: 
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 80px,
			rgba(0, 212, 255, 0.02) 80px,
			rgba(0, 212, 255, 0.02) 81px
		);
	pointer-events: none;
	z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-fast);
}
a:hover { color: var(--color-white); }

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 768px) {
	.container { padding: 0 40px; }
}

/* ===================== COOKIE NOTICE ===================== */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0; right: 0;
	z-index: 9999;
	padding: 20px 24px;
	background: var(--color-surface);
	border-top: 1px solid var(--color-primary);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
.cookie-notice.is-visible { transform: translateY(0); }
.cookie-notice-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.cookie-notice-inner p {
	margin: 0;
	flex: 1 1 300px;
	font-size: 14px;
	color: var(--color-text-muted);
}
.btn-cookie {
	padding: 10px 24px;
	background: var(--color-primary);
	color: var(--color-bg);
	border: none;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background var(--transition-fast), box-shadow var(--transition);
}
.btn-cookie:hover {
	background: var(--color-white);
	box-shadow: var(--glow);
}

/* ===================== HEADER ===================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0; right: 0;
	z-index: 100;
	background: rgba(11, 14, 19, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	transition: transform 0.3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-white);
	letter-spacing: -0.02em;
}
.logo span {
	color: var(--color-primary);
}

.main-nav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 32px;
}
.main-nav a {
	color: var(--color-text-muted);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 8px 0;
	position: relative;
}
.main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width var(--transition);
}
.main-nav a:hover { color: var(--color-white); }
.main-nav a:hover::after { width: 100%; }

/* Burger */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px; height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.burger span {
	display: block;
	width: 28px; height: 2px;
	background: var(--color-text);
	transition: transform var(--transition), opacity var(--transition);
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
	.burger { display: flex; }
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		background: var(--color-bg);
		border-bottom: 1px solid var(--color-border);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}
	.main-nav.is-open { max-height: 400px; }
	.main-nav ul {
		flex-direction: column;
		padding: 24px;
		gap: 0;
	}
	.main-nav li { border-bottom: 1px solid var(--color-border); }
	.main-nav li:last-child { border-bottom: none; }
	.main-nav a {
		display: block;
		padding: 16px 0;
	}
	.main-nav a::after { display: none; }
}

/* ===================== HERO - SPLIT SCREEN ===================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 76px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 40px 60px 60px;
	position: relative;
	z-index: 2;
}

.hero-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
	padding: 8px 16px;
	border: 1px solid var(--color-primary);
	width: fit-content;
}

.hero h1 {
	margin: 0 0 24px;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--color-white);
	letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-lead {
	margin: 0 0 40px;
	font-size: 1.125rem;
	color: var(--color-text-muted);
	max-width: 480px;
	line-height: 1.7;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-visual {
	position: relative;
	background: var(--color-bg-alt);
	overflow: hidden;
}

.hero-visual::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
	z-index: 1;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.hero-stats {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 2;
	display: flex;
	gap: 32px;
}

.stat-item {
	text-align: left;
}
.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1;
	text-shadow: var(--glow);
}
.stat-label {
	font-size: 12px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 8px;
}

@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.hero-content {
		padding: 80px 24px 60px;
		order: 1;
	}
	.hero-visual {
		order: 2;
		min-height: 300px;
	}
	.hero-stats {
		position: relative;
		bottom: auto; left: auto; right: auto;
		padding: 24px;
		background: var(--color-surface);
		flex-wrap: wrap;
	}
}

/* ===================== BUTTONS ===================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: none;
	cursor: pointer;
	transition: all var(--transition);
	font-family: inherit;
}

.btn-primary {
	background: var(--color-primary);
	color: var(--color-bg);
}
.btn-primary:hover {
	background: var(--color-white);
	color: var(--color-bg);
	box-shadow: var(--glow-strong);
}

.btn-outline {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}
.btn-outline:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* ===================== SECTIONS ===================== */
.section {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.section-dark { background: var(--color-bg-alt); }
.section-surface { background: var(--color-surface); }

.section-header {
	max-width: 640px;
	margin-bottom: 60px;
}
.section-header.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 16px;
}

.section h2 {
	margin: 0 0 20px;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--color-white);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.section-lead {
	margin: 0;
	font-size: 1.0625rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* ===================== SOLUTIONS - LARGE CARDS ===================== */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.solution-card {
	position: relative;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	overflow: hidden;
	transition: border-color var(--transition), transform var(--transition);
}

.solution-card:hover {
	border-color: var(--color-primary);
	transform: translateY(-4px);
}

.solution-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}
.solution-card:hover::before { transform: scaleX(1); }

.solution-img {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: var(--color-bg);
}
.solution-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.solution-card:hover .solution-img img { transform: scale(1.05); }

.solution-body {
	padding: 28px;
}
.solution-body h3 {
	margin: 0 0 12px;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-white);
}
.solution-body p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

@media (max-width: 900px) {
	.solutions-grid { grid-template-columns: 1fr; }
}

/* ===================== SERVICES - NUMBERED LIST ===================== */
.services-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid var(--color-border);
}

.service-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 40px;
	padding: 40px 0;
	border-bottom: 1px solid var(--color-border);
	transition: background var(--transition);
}
.service-item:hover {
	background: rgba(0, 212, 255, 0.02);
}

.service-number {
	font-family: var(--font-mono);
	font-size: 3rem;
	font-weight: 800;
	color: var(--color-border);
	line-height: 1;
	transition: color var(--transition);
}
.service-item:hover .service-number { color: var(--color-primary); }

.service-content h3 {
	margin: 0 0 12px;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-white);
}
.service-content p {
	margin: 0;
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	max-width: 600px;
}

@media (max-width: 768px) {
	.service-item {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.service-number { font-size: 2rem; }
}

/* ===================== TECHNOLOGY - ICON GRID ===================== */
.tech-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tech-card {
	padding: 32px 24px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	text-align: center;
	transition: border-color var(--transition), box-shadow var(--transition);
}
.tech-card:hover {
	border-color: var(--color-primary);
	box-shadow: var(--glow);
}

.tech-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: var(--color-bg);
	border-radius: 8px;
	overflow: hidden;
}
.tech-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tech-card h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-white);
}
.tech-card p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

@media (max-width: 900px) {
	.tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.tech-grid { grid-template-columns: 1fr; }
}

/* ===================== ABOUT - ASYMMETRIC SPLIT ===================== */
.about-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image {
	position: relative;
}
.about-image img {
	width: 100%;
	display: block;
}
.about-image::after {
	content: '';
	position: absolute;
	top: 24px;
	left: 24px;
	right: -24px;
	bottom: -24px;
	border: 2px solid var(--color-primary);
	z-index: -1;
}

.about-content h2 {
	margin: 0 0 24px;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--color-white);
}
.about-content p {
	margin: 0 0 20px;
	font-size: 1.0625rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}
.about-content p:last-of-type { margin-bottom: 0; }

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.about-image::after { display: none; }
}

/* ===================== BENEFITS - HORIZONTAL SCROLL CARDS ===================== */
.benefits-wrapper {
	overflow-x: auto;
	margin: 0 -24px;
	padding: 0 24px 20px;
	scrollbar-width: thin;
	scrollbar-color: var(--color-primary) var(--color-border);
}
.benefits-track {
	display: flex;
	gap: 24px;
	min-width: max-content;
}

.benefit-card {
	flex: 0 0 280px;
	padding: 32px;
	background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-primary);
}
.benefit-card h3 {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-white);
}
.benefit-card p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* ===================== USE CASES - ALTERNATING ROWS ===================== */
.use-cases-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.use-case-row {
	display: flex;
	align-items: stretch;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	transition: border-color var(--transition);
}
.use-case-row:hover { border-color: var(--color-primary); }

.use-case-row:nth-child(even) { flex-direction: row-reverse; }

.use-case-icon {
	flex: 0 0 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg);
	font-family: var(--font-mono);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-primary);
}

.use-case-content {
	flex: 1;
	padding: 24px 32px;
}
.use-case-content h3 {
	margin: 0 0 8px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-white);
}
.use-case-content p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}

/* ===================== HOW IT WORKS - PROCESS STEPS ===================== */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	counter-reset: step;
}

.process-step {
	position: relative;
	padding: 32px 24px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	text-align: center;
	transition: border-color var(--transition), transform var(--transition);
}
.process-step:hover {
	border-color: var(--color-primary);
	transform: translateY(-4px);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-bg);
	background: var(--color-primary);
}

.process-step h3 {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-white);
}
.process-step p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.6;
}

/* connector line between steps */
.process-step::after {
	content: '';
	position: absolute;
	top: 56px;
	right: -12px;
	width: 24px;
	height: 2px;
	background: var(--color-border);
}
.process-step:last-child::after { display: none; }

@media (max-width: 900px) {
	.process-steps { grid-template-columns: repeat(2, 1fr); }
	.process-step:nth-child(2)::after,
	.process-step:nth-child(4)::after { display: none; }
}
@media (max-width: 540px) {
	.process-steps { grid-template-columns: 1fr; }
	.process-step::after { display: none; }
}

/* ===================== FAQ ===================== */
.faq-list {
	max-width: 800px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	transition: border-color var(--transition);
}
.faq-item:hover,
.faq-item.is-open {
	border-color: var(--color-primary);
}

.faq-trigger {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-white);
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: color var(--transition);
}
.faq-trigger:hover { color: var(--color-primary); }

.faq-trigger::after {
	content: '+';
	flex-shrink: 0;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--color-primary);
	transition: transform var(--transition);
}
.faq-item.is-open .faq-trigger::after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.is-open .faq-answer {
	max-height: 300px;
}

.faq-answer p {
	margin: 0;
	padding: 0 24px 20px;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* ===================== CONTACT ===================== */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info h3 {
	margin: 0 0 24px;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-white);
}
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.contact-item {
	font-size: 1rem;
	color: var(--color-text-muted);
}
.contact-item strong {
	display: block;
	font-size: 12px;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
	font-weight: 600;
}
.contact-item a { color: var(--color-text); }
.contact-item a:hover { color: var(--color-primary); }

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-form label {
	font-size: 12px;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	display: block;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--color-text);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}
.contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

@media (max-width: 768px) {
	.contact-grid { grid-template-columns: 1fr; }
}

/* ===================== FOOTER ===================== */
.site-footer {
	background: var(--color-bg);
	border-top: 1px solid var(--color-border);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
}

.footer-brand .logo {
	margin-bottom: 20px;
	display: inline-block;
}
.footer-brand p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--color-text-muted);
	line-height: 1.7;
	max-width: 320px;
}

.footer-col h4 {
	margin: 0 0 20px;
	font-size: 12px;
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 700;
}
.footer-col ul {
	list-style: none;
	margin: 0; padding: 0;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
	font-size: 0.9375rem;
	color: var(--color-text-muted);
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
	border-top: 1px solid var(--color-border);
	padding: 24px 0;
	text-align: center;
}
.footer-bottom p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

@media (max-width: 768px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* ===================== POLICY & THANKS PAGES ===================== */
.page-inner {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding-top: 76px;
}
.page-inner main { flex: 1; }

.page-content {
	max-width: 720px;
	margin: 0 auto;
	padding: 80px 24px;
}
.page-content h1 {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--color-white);
}
.page-content .last-updated {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	margin-bottom: 40px;
}
.page-content h2 {
	margin: 48px 0 16px;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-white);
}
.page-content p,
.page-content ul {
	margin: 0 0 20px;
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}
.page-content ul { padding-left: 24px; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--color-primary); }

.thanks-content {
	text-align: center;
	padding: 120px 24px;
}
.thanks-content h1 { margin-bottom: 20px; }
.thanks-content p {
	margin-bottom: 32px;
	font-size: 1.125rem;
	color: var(--color-text-muted);
}

/* ===================== ANIMATIONS ===================== */
@keyframes slideUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
	from { opacity: 0; transform: translateX(-30px); }
	to { opacity: 1; transform: translateX(0); }
}
@keyframes glow {
	0%, 100% { box-shadow: var(--glow); }
	50% { box-shadow: var(--glow-strong); }
}

.animate-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
