:root {
	--navy-950: #0B1023;
	--navy-900: #111735;
	--navy-800: #1B2347;
	--ink: #0F172A;
	--slate-600: #475569;
	--slate-500: #64748B;
	--bg: #F8FAFC;
	--surface: #FFFFFF;
	--border: #E2E8F0;
	--accent: #3344BB;
	--accent-soft: #5B67C7;
	--accent-ink: #2A38A0;
	--gradient-brand: linear-gradient(100deg, #6671C2 0%, #3344BB 100%);
	--radius-lg: 1.25rem;
	--radius-md: 0.875rem;
	--shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.10);
	--shadow-card-hover: 0 2px 4px rgba(15, 23, 42, 0.06), 0 16px 40px -12px rgba(51, 68, 187, 0.25);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 6.5rem;
}

body {
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
	max-width: 72rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

/* ===== Focus & motion ===== */
:focus-visible {
	outline: 3px solid var(--accent-soft);
	outline-offset: 3px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== Reveal on scroll (only when JS is available) ===== */
.js .reveal {
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal:not(.is-visible) {
	opacity: 0;
	transform: translateY(24px);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ===== Navbar ===== */
.navbar {
	position: fixed;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 50;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.navbar-inner {
	pointer-events: auto;
	width: 100%;
	max-width: 69rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.12);
	transition: box-shadow 0.25s ease;
}

.navbar.is-scrolled .navbar-inner {
	box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.18);
}

.navbar-logo img { height: 1.125rem; width: auto; }

.navbar-links {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
}

.navbar-links a {
	display: block;
	padding: 0.5rem 0.875rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--slate-600);
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-links a:hover { color: var(--ink); background: rgba(15, 23, 42, 0.05); }

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: #fff !important;
	background: var(--gradient-brand);
	border-radius: 999px;
	text-decoration: none;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 14px -4px rgba(51, 68, 187, 0.5);
}

.nav-cta:hover { opacity: 0.92; box-shadow: 0 6px 20px -4px rgba(51, 68, 187, 0.6); }

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: none;
	background: transparent;
	border-radius: 999px;
	cursor: pointer;
	color: var(--ink);
}

.menu-toggle:hover { background: rgba(15, 23, 42, 0.05); }

.mobile-menu {
	display: none;
	position: fixed;
	top: 5.25rem;
	left: 1rem;
	right: 1rem;
	z-index: 49;
	padding: 0.75rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--border);
	box-shadow: 0 16px 48px -12px rgba(15, 23, 42, 0.25);
}

.mobile-menu.is-open { display: block; }

.mobile-menu a {
	display: block;
	padding: 0.875rem 1rem;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	border-radius: var(--radius-md);
	transition: background-color 0.2s ease;
}

.mobile-menu a:hover { background: rgba(15, 23, 42, 0.05); }

@media (max-width: 760px) {
	.navbar-links, .navbar .nav-cta { display: none; }
	.menu-toggle { display: inline-flex; }
}

/* ===== Hero ===== */
.hero {
	position: relative;
	padding: 10.5rem 0 6rem;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(40rem 28rem at 15% 0%, rgba(102, 113, 194, 0.18), transparent 60%),
		radial-gradient(36rem 26rem at 85% 20%, rgba(51, 68, 187, 0.14), transparent 60%),
		var(--bg);
}

.hero-grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
	background-size: 3.5rem 3.5rem;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 75%);
}

.hero-content {
	max-width: 50rem;
	margin-inline: auto;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-ink);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(51, 68, 187, 0.22);
	border-radius: 999px;
	box-shadow: 0 2px 12px -4px rgba(51, 68, 187, 0.25);
}

.hero-badge .dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: var(--gradient-brand);
}

.hero h1 {
	margin-top: 1.75rem;
	font-size: clamp(2.05rem, 7.5vw, 4.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.hero h1 .gradient-text {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-sub {
	margin: 1.5rem auto 0;
	max-width: 38rem;
	font-size: 1.15rem;
	color: var(--slate-600);
}

.hero-actions {
	margin-top: 2.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.btn-primary, .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.95rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
	color: #fff;
	background: var(--gradient-brand);
	box-shadow: 0 8px 24px -8px rgba(51, 68, 187, 0.55);
	border: none;
}

.btn-primary:hover { opacity: 0.92; box-shadow: 0 12px 32px -8px rgba(51, 68, 187, 0.65); }

.btn-secondary {
	color: var(--ink);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-card);
}

.btn-secondary:hover { background: #fff; box-shadow: var(--shadow-card-hover); }

.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.hero-chips {
	margin-top: 3.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
}

.hero-chips li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 1.1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--slate-600);
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid var(--border);
	border-radius: 999px;
}

.hero-chips svg { color: var(--accent); flex-shrink: 0; }

/* ===== Sections ===== */
section { padding: 5.5rem 0; }

.section-header {
	max-width: 42rem;
	margin-bottom: 3.5rem;
}

.section-header.center { margin-inline: auto; text-align: center; }

.eyebrow {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-ink);
	margin-bottom: 1rem;
}

.section-header h2 {
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.section-header p {
	margin-top: 1.15rem;
	font-size: 1.1rem;
	color: var(--slate-600);
}

/* ===== Solutions cards ===== */
.cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

@media (max-width: 960px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
	padding: 2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(51, 68, 187, 0.3);
}

.card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius-md);
	background: linear-gradient(135deg, rgba(102, 113, 194, 0.14), rgba(51, 68, 187, 0.14));
	color: var(--accent-ink);
	margin-bottom: 1.5rem;
}

.card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
	letter-spacing: -0.01em;
}

.card p { color: var(--slate-600); font-size: 0.975rem; }

/* ===== Produtos ===== */
.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

@media (max-width: 880px) { .product-grid { grid-template-columns: 1fr; } }

.product-card.featured {
	grid-column: 1 / -1;
	background:
		radial-gradient(28rem 16rem at 90% -20%, rgba(102, 113, 194, 0.12), transparent 65%),
		var(--surface);
}

.product-head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.15rem;
}

.product-head .card-icon { margin-bottom: 0; flex-shrink: 0; }

.product-name {
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.product-acronym {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--slate-500);
	margin-top: 0.1rem;
}

.product-card p { color: var(--slate-600); font-size: 0.975rem; }

.product-features {
	margin-top: 1.15rem;
	display: grid;
	gap: 0.5rem;
	list-style: none;
}

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

@media (max-width: 600px) {
	.product-card.featured .product-features { grid-template-columns: 1fr; }
}

.product-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--slate-600);
}

.product-features svg { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }

.product-foot {
	margin-top: 1.35rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.product-tag {
	display: inline-flex;
	padding: 0.35rem 0.85rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--accent-ink);
	background: rgba(51, 68, 187, 0.08);
	border: 1px solid rgba(51, 68, 187, 0.18);
	border-radius: 999px;
}

.product-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--accent-ink);
	text-decoration: none;
	transition: color 0.2s ease;
}

.product-link:hover { color: var(--accent); }
.product-link svg { transition: transform 0.2s ease; }
.product-link:hover svg { transform: translate(2px, -2px); }

/* ===== Automation (dark) ===== */
.section-dark {
	position: relative;
	background:
		radial-gradient(50rem 30rem at 80% -10%, rgba(102, 113, 194, 0.22), transparent 60%),
		radial-gradient(40rem 26rem at 10% 110%, rgba(51, 68, 187, 0.25), transparent 60%),
		var(--navy-950);
	color: #fff;
	border-radius: 2.5rem;
	margin-inline: 1rem;
	overflow: hidden;
}

.section-dark .eyebrow { color: #A5B0F0; }
.section-dark .section-header p { color: #B6BEDF; }

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
	padding: 1.75rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	transition: background-color 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.22);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #C3CBFA;
	margin-bottom: 1.15rem;
}

.feature h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.feature p { font-size: 0.925rem; color: #B6BEDF; }

/* ===== Process ===== */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	counter-reset: step;
}

@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
	position: relative;
	padding: 1.75rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.step-number {
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 0.875rem;
}

.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.45rem; }
.step p { font-size: 0.925rem; color: var(--slate-600); }

/* ===== CTA band ===== */
.cta-band {
	padding: 0;
}

.cta-band-inner {
	position: relative;
	padding: 4.5rem 2rem;
	text-align: center;
	background:
		radial-gradient(36rem 22rem at 50% -20%, rgba(165, 176, 240, 0.35), transparent 65%),
		linear-gradient(120deg, var(--navy-900), var(--accent-ink));
	border-radius: 2.5rem;
	color: #fff;
	overflow: hidden;
}

.cta-band-inner h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	max-width: 36rem;
	margin-inline: auto;
}

.cta-band-inner p {
	margin: 1rem auto 2rem;
	max-width: 32rem;
	color: #C7CEEF;
	font-size: 1.05rem;
}

.cta-band-inner .btn-primary {
	background: #fff;
	color: var(--accent-ink);
	box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.4);
}

/* ===== Contact ===== */
.contact-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 3rem;
	align-items: start;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
	padding: 2rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 1.15rem; }

.form-field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.45rem;
	color: var(--ink);
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	font: inherit;
	font-size: 0.95rem;
	color: var(--ink);
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(51, 68, 187, 0.15);
}

.form-field textarea { resize: vertical; min-height: 9rem; }

.form-note {
	margin-top: 0.875rem;
	font-size: 0.825rem;
	color: var(--slate-500);
}

.contact-info { display: grid; gap: 1.25rem; }

.info-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

a.info-card { text-decoration: none; cursor: pointer; }

a.info-card:hover {
	box-shadow: var(--shadow-card-hover);
	border-color: rgba(51, 68, 187, 0.3);
}

.info-card .card-icon { width: 2.75rem; height: 2.75rem; margin-bottom: 0; flex-shrink: 0; }

.info-card h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-500); margin-bottom: 0.25rem; }
.info-card p, .info-card span { font-weight: 600; color: var(--ink); font-size: 1rem; }

/* ===== Footer ===== */
footer {
	margin-top: 2rem;
	padding: 3rem 0;
	background: var(--navy-950);
	color: #B6BEDF;
}

.footer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.footer-logo img {
	height: 1rem;
	width: auto;
	filter: invert(1);
	opacity: 0.95;
}

.footer-inner p { font-size: 0.875rem; }

.footer-links {
	display: flex;
	gap: 1.5rem;
	list-style: none;
}

.footer-links a {
	font-size: 0.875rem;
	font-weight: 600;
	color: #B6BEDF;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-links a:hover { color: #fff; }

@media (max-width: 760px) {
	section { padding: 4rem 0; }
	.hero { padding: 9rem 0 4.5rem; }
	.hero-badge { font-size: 0.75rem; }
	.hero-sub { font-size: 1.05rem; }
	.section-dark, .cta-band-inner { border-radius: 1.5rem; }
	.section-dark { margin-inline: 0.5rem; }
}

/* ===== Product microsites ===== */
.hero.compact { padding: 9.5rem 0 5rem; }

.hero-eyebrow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--accent-ink);
	text-decoration: none;
	margin-bottom: 1.25rem;
	transition: color 0.2s ease;
}

.hero-eyebrow-link:hover { color: var(--accent); }

.hero .product-sigla {
	display: block;
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--slate-500);
}

.sector-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	list-style: none;
}

.sector-chips li {
	display: inline-flex;
	padding: 0.55rem 1.1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent-ink);
	background: rgba(51, 68, 187, 0.07);
	border: 1px solid rgba(51, 68, 187, 0.16);
	border-radius: 999px;
}

/* ===== Animation layer ===== */

/* Ambient drifting glow in heroes */
.hero-bg::before,
.hero-bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	opacity: 0.5;
	will-change: transform;
}

.hero-bg::before {
	width: 34rem;
	height: 34rem;
	left: -10rem;
	top: -12rem;
	background: radial-gradient(circle, rgba(102, 113, 194, 0.38), transparent 70%);
	animation: drift-a 26s ease-in-out infinite alternate;
}

.hero-bg::after {
	width: 30rem;
	height: 30rem;
	right: -8rem;
	top: 0;
	background: radial-gradient(circle, rgba(51, 68, 187, 0.3), transparent 70%);
	animation: drift-b 34s ease-in-out infinite alternate;
}

@keyframes drift-a {
	to { transform: translate(7rem, 5rem) scale(1.18); }
}

@keyframes drift-b {
	to { transform: translate(-6rem, 7rem) scale(0.88); }
}

/* Gradient headline shimmer */
.hero h1 .gradient-text {
	background-size: 200% 100%;
	animation: shimmer 7s ease-in-out infinite alternate;
}

@keyframes shimmer {
	from { background-position: 0% 50%; }
	to { background-position: 100% 50%; }
}

/* Pulsing badge dot */
.hero-badge .dot {
	animation: dot-pulse 2.6s ease-out infinite;
}

@keyframes dot-pulse {
	0% { box-shadow: 0 0 0 0 rgba(51, 68, 187, 0.45); }
	70% { box-shadow: 0 0 0 9px rgba(51, 68, 187, 0); }
	100% { box-shadow: 0 0 0 0 rgba(51, 68, 187, 0); }
}

/* Hover lift on interactive cards */
.card, .feature, .step, a.info-card {
	will-change: transform;
}

.card, .js .card { transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.6s ease; }
.card:hover { transform: translateY(-4px); }

.feature, .js .feature { transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.6s ease; }
.feature:hover { transform: translateY(-4px); }

.step, .js .step { transition: box-shadow 0.25s ease, transform 0.25s ease, opacity 0.6s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

a.info-card, .js a.info-card { transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.6s ease; }
a.info-card:hover { transform: translateY(-3px); }

/* Breathing glow on the CTA band */
.cta-band-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(30rem 18rem at 50% 120%, rgba(165, 176, 240, 0.3), transparent 65%);
	opacity: 0.4;
	animation: glow-breathe 7s ease-in-out infinite alternate;
}

@keyframes glow-breathe {
	to { opacity: 1; }
}

/* Navbar hide on scroll down, return on scroll up */
.navbar { transition: transform 0.35s ease; }
.navbar.is-hidden { transform: translateY(-140%); }

/* Product marquee (homepage) */
.marquee {
	position: relative;
	margin-top: 4.5rem;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
	display: flex;
	align-items: center;
	gap: 3.5rem;
	width: max-content;
	padding-right: 3.5rem;
	animation: marquee 36s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	white-space: nowrap;
	color: rgba(15, 23, 42, 0.16);
	transition: color 0.3s ease;
}

.marquee-track span:hover { color: rgba(51, 68, 187, 0.55); }

.marquee-track .sep {
	font-size: 0.6rem;
	color: rgba(51, 68, 187, 0.3);
}

@keyframes marquee {
	to { transform: translateX(-50%); }
}
