@font-face {
	font-family: 'Nunito Sans';
	src: url('../media/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Nunito Sans';
	src: url('../media/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf') format('truetype');
	font-weight: 200 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--brand-primary: #3c84f6;
	--brand-primary-dark: #2d6fde;
	--brand-accent: #38c6ee;
	--brand-accent-dark: #149fcd;
	--brand-highlight: #8ddfff;
	--brand-ink: #20324d;
	--brand-ink-strong: #15233b;
	--brand-gradient: linear-gradient(135deg, #42cef2 0%, #38c6ee 34%, #3c9cf6 68%, #2f6fde 100%);
	--brand-gradient-dark: linear-gradient(135deg, #149fcd 0%, #2d6fde 100%);
	--text-main: #20324d;
	--text-muted: #64748b;
	--bg-page: #f4f8fc;
	--bg-soft: #e9f7ff;
	--surface: #ffffff;
	--border-soft: #d9e6f2;
	--success: #198754;
	--error: #d72c0d;
}

body { font-family: 'Nunito Sans', 'Segoe UI', sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: var(--bg-page); color: var(--text-main); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.site-header { background: rgba(255, 255, 255, 0.96); box-shadow: 0 4px 18px rgba(60, 132, 246, 0.08); padding: 1.1rem 0; width: 100%; top: 0; position: sticky; z-index: 1000; backdrop-filter: blur(6px); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.72rem;
	text-decoration: none;
}
.brand-logo-image { display: block; width: clamp(190px, 26vw, 340px); height: auto; }
.brand-subline { font-weight: 700; color: var(--brand-primary); margin-left: 0.5rem; }
.nav-toggle {
	display: none;
	border: 1px solid #c7dcf3;
	background: #fff;
	color: var(--brand-ink);
	font-weight: 800;
	font-family: inherit;
	padding: 0.45rem 0.7rem;
	border-radius: 8px;
	cursor: pointer;
}
.nav-toggle:hover {
	background: #eef7ff;
}
.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.5rem; }
.main-nav a { text-decoration: none; color: var(--text-muted); font-weight: 700; transition: color 0.2s; }
.main-nav a:hover { color: var(--brand-primary); }
.main-nav .nav-cta {
	color: #fff;
	background: var(--brand-gradient);
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(60, 132, 246, 0.24);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.main-nav .nav-cta:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(45, 111, 222, 0.3);
	filter: saturate(1.04);
}
.hero-section { padding: 5rem 0; text-align: center; }
.hero-title { font-size: 2.8rem; margin-bottom: 1rem; color: var(--text-main); font-weight: 800; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 2rem; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 4px; text-decoration: none; font-weight: 600; transition: background-color 0.2s, color 0.2s, transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--brand-gradient); color: #fff; border-color: transparent; }
.btn-primary:hover { background: var(--brand-gradient-dark); }
.btn-secondary { background-color: var(--surface); color: var(--brand-primary); border-color: var(--brand-primary); }
.btn-secondary:hover { background-color: #eef7ff; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(45, 111, 222, 0.14); }
.text-center { text-align: center; }
.grid { display: grid; gap: 2rem; }
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); padding: 2rem 0; }
.card { background: var(--surface); border-radius: 10px; box-shadow: 0 8px 20px rgba(60, 132, 246, 0.08); overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--border-soft); }
.card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.card-content h3 { margin-top: 0; font-size: 1.5rem; color: var(--text-main); }
.card-content p { color: var(--text-muted); flex-grow: 1; margin-bottom: 1.5rem; }
.bg-light { background: linear-gradient(180deg, #f8fbff, #eef7ff); padding: 4rem 0; }
.section-title { font-size: 2rem; margin-bottom: 2rem; color: var(--brand-primary-dark); }
.placeholder-card { opacity: 0.6; pointer-events: none; }
.badge { font-size: 0.8rem; background: #e9f3ff; padding: 0.2rem 0.6rem; border-radius: 12px; vertical-align: middle; margin-left: 0.5rem; color: #1f4f95; }
.value-prop-section {
	padding: 5rem 0;
	background:
		radial-gradient(circle at top left, rgba(56, 198, 238, 0.16), transparent 28%),
		radial-gradient(circle at bottom right, rgba(60, 132, 246, 0.12), transparent 34%),
		var(--surface);
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	padding: 0.38rem 0.72rem;
	border-radius: 999px;
	background: #eef7ff;
	border: 1px solid #d7e9fb;
	color: var(--brand-primary);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.about-home {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	padding: clamp(1.25rem, 2vw, 1.5rem);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(60, 132, 246, 0.14);
	box-shadow: 0 28px 60px rgba(60, 132, 246, 0.12), 0 10px 24px rgba(32, 50, 77, 0.08);
	backdrop-filter: blur(8px);
}

.about-home-media {
	margin: 0;
	min-width: 0;
}

.about-home-media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 22px;
	box-shadow: 0 20px 44px rgba(45, 111, 222, 0.16);
}

.about-home-copy {
	text-align: left;
	min-width: 0;
}

.about-home-copy h2 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	line-height: 1.08;
	color: var(--brand-primary-dark);
}

.about-home-copy p + p {
	margin-top: 1rem;
	color: var(--text-muted);
}

.about-home-points {
	list-style: none;
	padding: 0;
	margin: 1.6rem 0 2rem;
	display: grid;
	gap: 0.75rem;
	color: var(--text-main);
	font-weight: 700;
}

.about-home-points li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	background: linear-gradient(180deg, #f7fbff, #eef7ff);
	border: 1px solid #d8eafe;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.about-home-points li::before {
	content: '';
	flex: 0 0 0.7rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 999px;
	margin-top: 0.42rem;
	background: var(--brand-gradient);
	box-shadow: 0 0 0 5px rgba(56, 198, 238, 0.14);
}
.site-footer {
	background: #eef4fb;
	color: #42556f;
	padding: 2.4rem 0;
	border-top: 1px solid #d7e5f2;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 1.5rem 2.5rem;
}
.footer-logo-col {
	display: flex;
	align-items: center;
	justify-self: center;
}
.footer-brand { display: flex; align-items: center; }
.footer-logo-image { display: block; width: clamp(148px, 16vw, 220px); height: auto; }
.footer-app-col {
	justify-self: center;
	text-align: left;
	align-self: start;
}
.footer-app-col h4 {
	margin: 0 0 0.45rem;
	font-size: 1.2rem;
	color: var(--brand-ink);
}
.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.35rem;
}
.footer-links a { color: var(--brand-primary); text-decoration: none; transition: color 0.2s; font-weight: 700; }
.footer-links a:hover { color: var(--brand-primary-dark); }
.footer-copy {
	justify-self: center;
	text-align: center;
	color: #586b84;
	font-size: 0.98rem;
}
.footer-copy p { margin: 0; }

/* Motion system */
.site-header {
	animation: headerSlideIn 0.55s ease both;
}

.hero-section,
.hero-catalogiq {
	animation: fadeRiseIn 0.65s ease both;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

@keyframes headerSlideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
form {  display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.form-group label { font-weight: 700; color: var(--text-main); }
.form-group input, .form-group textarea, .form-group select { padding: 0.75rem; border: 1px solid #c6dbef; border-radius: 6px; font-family: inherit; color: var(--text-main); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--brand-primary); outline: none; box-shadow: 0 0 0 3px rgba(60, 132, 246, 0.14); }
dl { background: var(--surface); padding: 2rem; border-radius: 8px; box-shadow: 0 6px 18px rgba(60, 132, 246, 0.08); }
dt { font-weight: 700; margin-top: 1.5rem; font-size: 1.2rem; }
dt:first-child { margin-top: 0; }
dd { margin: 0.5rem 0 0 0; color: var(--text-muted); }
table.comparison-table { width: 100%; border-collapse: collapse; background: var(--surface); box-shadow: 0 6px 16px rgba(60, 132, 246, 0.08); border-radius: 8px; overflow: hidden; margin-top: 2rem; }
.comparison-table th, .comparison-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #e2edf7; }
.comparison-table th { background: #eff7ff; font-weight: 700; color: var(--text-main); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--success); font-weight: bold; }
.comparison-table .cross { color: var(--error); }
.highlight-cell { background-color: #eaf5ff; }
.compare-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1rem;
	margin: 2.5rem auto 0;
	text-align: left;
	max-width: 1120px;
}
.compare-feature-item {
	position: relative;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #d8e9f8;
	border-radius: 8px;
	padding: 1.15rem;
	box-shadow: 0 8px 18px rgba(60, 132, 246, 0.08);
	transform: translateY(0);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
	will-change: transform;
}
.compare-feature-item:hover,
.compare-feature-item:focus-within {
	background: #fff;
	border-color: #b7d8f5;
	box-shadow: 0 14px 28px rgba(60, 132, 246, 0.13);
	transform: translateY(-3px);
}
.compare-feature-item h2 {
	margin: 0 0 0.45rem;
	font-size: 1rem;
	color: var(--text-main);
}
.compare-feature-item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.55;
}
.comparison-table-nuanced {
	min-width: 960px;
}
.comparison-table-nuanced th,
.comparison-table-nuanced td {
	vertical-align: top;
	line-height: 1.45;
	padding: 0.85rem 1rem;
}
.comparison-table-nuanced td:first-child,
.comparison-table-nuanced th:first-child {
	width: 24%;
}
.comparison-table-nuanced td:not(:first-child),
.comparison-table-nuanced th:not(:first-child) {
	width: 19%;
}
.comparison-table-nuanced tbody tr {
	transition: background-color 0.18s ease;
}
.comparison-table-nuanced tbody tr:hover {
	background-color: rgba(234, 245, 255, 0.48);
}
.compare-chip {
	display: inline-flex;
	align-items: center;
	min-height: 1.7rem;
	padding: 0.25rem 0.58rem;
	border-radius: 999px;
	background: #f5f9fd;
	color: #334964;
	border: 1px solid #dceaf6;
	font-size: 0.86rem;
	font-weight: 700;
	white-space: nowrap;
}
.compare-chip-strong {
	background: #dff1ff;
	color: #0b3565;
	border-color: #b9dcfb;
}
.compare-chip-good {
	background: #eef7ff;
	color: #1f4f95;
	border-color: #c9e1f7;
}
.compare-chip-muted {
	background: #f8fafc;
	color: #6f8098;
	border-color: #e3edf5;
}
.breadcrumbs {
	padding: 0.4rem 0 0.8rem;
	color: #6f8098;
	letter-spacing: 0.01em;
}
.breadcrumbs .crumb {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	font-weight: 700;
}
.breadcrumbs a,
.breadcrumbs .crumb-current {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	padding: 0.32rem 0.72rem;
	border-radius: 999px;
	border: 1px solid #d7e7f7;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 8px 20px rgba(60, 132, 246, 0.06);
	backdrop-filter: blur(8px);
}
.breadcrumbs a {
	color: var(--brand-primary);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.breadcrumbs a:hover {
	color: var(--brand-primary-dark);
	border-color: #bfd9f4;
	background: #fff;
	transform: translateY(-1px);
}
.breadcrumbs .separator {
	color: #9db7d3;
	font-weight: 800;
	line-height: 1;
}
.breadcrumbs .crumb-current {
	color: var(--text-main);
	background: linear-gradient(180deg, #f7fbff, #eef7ff);
}

.legal-page {
	padding: 2rem 0 4rem;
}

.legal-content {
	background: var(--surface);
	border: 1px solid var(--border-soft);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(60, 132, 246, 0.08);
	padding: 1.8rem 1.4rem;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
	color: var(--text-main);
	line-height: 1.25;
}

.legal-content h2 {
	margin-top: 1.8rem;
}

.legal-content p,
.legal-content li {
	color: var(--text-muted);
}
.hero-catalogiq { padding: 6rem 0; background: linear-gradient(160deg, #f9fdff, #eef7ff); }
.hero-catalogiq .hero-title { color: var(--brand-primary-dark); }
.pricing-hero { padding-top: 4.2rem; padding-bottom: 3rem; }

.catalog-tagline {
	display: inline-flex;
	align-items: center;
	padding-left: 0.72rem;
	border-left: 2px solid rgba(60, 132, 246, 0.2);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: 0.01em;
	color: #1f4f95;
}

.inline-panel {
	background: var(--surface);
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(60, 132, 246, 0.1);
	border: 1px solid var(--border-soft);
}

.feature-grid-two {
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
}

.section-heading {
	margin: 0 auto 3rem;
}

.section-lead {
	font-size: 1.08rem;
	line-height: 1.7;
	color: var(--text-muted);
	margin: 0;
}

.overview-feature-stack {
	background:
		radial-gradient(circle at top left, rgba(56, 198, 238, 0.14), transparent 30%),
		radial-gradient(circle at top right, rgba(60, 132, 246, 0.1), transparent 32%),
		linear-gradient(180deg, #fbfeff 0%, #f3f9ff 100%);
}

.overview-feature-row {
	margin-top: 3rem;
}

.feature-bullets-compact {
	margin: 1.1rem 0 0;
	padding-left: 1.2rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.feature-bullets-compact li + li {
	margin-top: 0.45rem;
}

.media-placeholder {
	background: #fff;
	padding: 4rem;
	text-align: center;
	border: 1px dashed #c7dbef;
	border-radius: 8px;
	color: var(--text-muted);
}

.hero-actions-spaced {
	margin-bottom: 3rem;
}

.hero-actions .btn + .btn {
	margin-left: 1rem;
}

.video-placeholder {
	background: linear-gradient(145deg, #20324d, #2d6fde);
	color: #fff;
	padding: 6rem;
	border-radius: 8px;
	max-width: 800px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(32, 50, 77, 0.22);
}

.illustration-shell {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.illustration-shell img,
.showcase-media img,
.feature-screenshot-grid img {
	display: block;
	width: 100%;
	height: auto;
	background: #fff;
	border: 1px solid rgba(60, 132, 246, 0.2);
	border-radius: 28px;
	box-shadow: 0 28px 60px rgba(60, 132, 246, 0.14), 0 10px 24px rgba(32, 50, 77, 0.08);
}

.feature-screenshot-grid img {
	position: relative;
	z-index: 1;
	cursor: zoom-in;
	transform-origin: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-screenshot-grid img:hover,
.feature-screenshot-grid img:focus-visible,
.feature-screenshot-grid img.is-magnified {
	z-index: 5;
	border-color: rgba(45, 111, 222, 0.55);
	box-shadow: 0 34px 72px rgba(60, 132, 246, 0.22), 0 14px 32px rgba(32, 50, 77, 0.14);
	transform: scale(1.08);
}

.feature-screenshot-grid img:focus-visible {
	outline: 3px solid rgba(60, 132, 246, 0.28);
	outline-offset: 4px;
}

.feature-screenshot-grid img.is-magnified {
	cursor: zoom-out;
}

.illustration-hero {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
}

.hero-video {
	aspect-ratio: 16 / 9;
	border-radius: 28px;
	box-shadow: 0 28px 60px rgba(60, 132, 246, 0.14), 0 10px 24px rgba(32, 50, 77, 0.08);
	overflow: hidden;
}

.hero-video iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #fff;
}

.illustration-inline {
	padding: 0;
}

.feature-screenshot-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	align-items: start;
}

.feature-screenshot-grid-three {
	grid-template-columns: 1fr;
}

.feature-screenshot-grid-three img:first-child {
	grid-column: auto;
}

.feature-screenshot-grid-compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-media {
	position: relative;
	margin: 0;
}

.showcase-inset {
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	width: min(32%, 220px);
	padding: 0.72rem 0.72rem 0.8rem;
	border-radius: 18px;
	border: 1px solid rgba(60, 132, 246, 0.2);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 14px 24px rgba(60, 132, 246, 0.12);
	backdrop-filter: blur(10px);
	text-align: left;
}

.showcase-inset-label {
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0.5rem;
	border-radius: 999px;
	background: #eef7ff;
	color: var(--brand-primary);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.45rem;
}

.showcase-inset strong {
	display: block;
	font-size: 0.84rem;
	line-height: 1.2;
	margin-bottom: 0.55rem;
	color: var(--text-main);
}

.showcase-inset-field {
	padding: 0.52rem 0.65rem;
	border-radius: 12px;
	background: #f4faff;
	border: 1px solid #d5e7f8;
	font-weight: 700;
	font-size: 0.74rem;
	line-height: 1.2;
	color: var(--brand-primary-dark);
	margin-bottom: 0.5rem;
}

.showcase-inset-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.showcase-inset-pills span {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.48rem;
	border-radius: 999px;
	background: #e9f8ff;
	border: 1px solid #cceefe;
	color: #126f9b;
	font-size: 0.66rem;
	line-height: 1.15;
	font-weight: 700;
}

.social-proof-section {
	padding: 5rem 0;
}

.logos-placeholder {
	display: flex;
	justify-content: center;
	gap: 3rem;
	opacity: 0.5;
	margin: 3rem 0;
}

.testimonial-quote {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 auto;
	border-left: 4px solid var(--brand-accent);
	padding-left: 1.5rem;
	text-align: left;
}

.contact-compact-hero {
	padding-bottom: 2rem;
}

.section-pad-xl {
	padding: 5rem 0;
}

.section-pad-form {
	padding: 4rem 0 6rem;
}

.content-narrow {
	max-width: 700px;
}

.content-medium {
	max-width: 900px;
}

.overflow-auto {
	overflow-x: auto;
}

.final-verdict {
	margin-top: 5rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.cta-center {
	margin-top: 3rem;
	text-align: center;
}

.pricing-list {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.pricing-list li {
	margin-bottom: 0.5rem;
}

.tier-price {
	font-size: 2.5rem;
	color: var(--text-main);
}

.tier-price-accent {
	color: var(--brand-primary);
}

.tier-period {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 500;
}

.tier-note {
	font-size: 0.95rem;
	margin-bottom: 2rem;
}

.tier-card-muted {
	border-top: 4px solid #8ddfff;
}

.tier-card-plus {
	border-top: 4px solid var(--brand-primary-dark);
}

.tier-card-featured {
	position: relative;
	border: 2px solid var(--brand-primary);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	box-shadow: 0 12px 26px rgba(60, 132, 246, 0.2);
	overflow: visible;
}

.tier-badge {
	position: absolute;
	top: -2.35rem;
	left: -2px;
	right: -2px;
	background: var(--brand-gradient);
	color: #fff;
	text-align: center;
	padding: 0.52rem;
	margin: 0;
	border-radius: 8px 8px 0 0;
	border: 2px solid var(--brand-primary);
	border-bottom: 0;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pricing-cards-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.1rem;
	padding-top: 3.1rem;
}

.pricing-cards-grid .card-content {
	height: 100%;
	padding: 1.5rem;
}

.pricing-cards-grid .card-content h3 {
	font-size: 1.3rem;
	min-height: 4.9rem;
}

.pricing-cards-grid .tier-price {
	font-size: 2.1rem;
}

.pricing-cards-grid .tier-note,
.pricing-cards-grid .pricing-list {
	font-size: 0.92rem;
}

.pricing-cards-grid .tier-note {
	flex-grow: 0;
	min-height: 5.25rem;
	margin-bottom: 0.9rem;
}

.pricing-cards-grid .pricing-list {
	flex-grow: 0;
	margin-top: 0;
	margin-bottom: 2rem;
}

.pricing-cards-grid .btn-block {
	margin-top: auto;
}

.btn-block {
	display: block;
	text-align: center;
}

@media (max-width: 720px) {
	.site-header .container { gap: 1rem; }
	.main-nav ul { gap: 0.9rem; }
	.brand-logo-image { width: clamp(150px, 52vw, 240px); }
	.hero-title { font-size: 2.2rem; }
	.hero-subtitle { font-size: 1.08rem; }
	.pricing-cards-grid .card-content h3,
	.pricing-cards-grid .tier-note {
		min-height: 0;
	}
	.catalog-tagline {
		font-size: 0.92rem;
		padding-left: 0.55rem;
	}
	.pricing-cards-grid { grid-template-columns: 1fr; }
	.feature-grid-two { grid-template-columns: 1fr; gap: 2rem; }
	.compare-feature-grid { grid-template-columns: 1fr; }
	.about-home {
		grid-template-columns: 1fr;
		padding: 1rem;
		border-radius: 22px;
	}
	.about-home-copy h2 {
		font-size: 1.9rem;
	}
	.about-home-points {
		margin-bottom: 1.5rem;
	}
	.overview-feature-row { margin-top: 2.5rem; }
	.hero-actions .btn + .btn { margin-left: 0; margin-top: 0.75rem; }
	.video-placeholder { padding: 2.4rem 1.2rem; }
	.illustration-shell img,
	.showcase-media img,
	.feature-screenshot-grid img { border-radius: 22px; }
	.feature-screenshot-grid,
	.feature-screenshot-grid-three,
	.feature-screenshot-grid-compact {
		grid-template-columns: 1fr;
		width: 100%;
	}
	.feature-screenshot-grid-three img:first-child {
		grid-column: auto;
	}
	.showcase-inset {
		position: static;
		width: auto;
		margin-top: 0.85rem;
	}
	.footer-grid { grid-template-columns: 1fr; align-items: start; text-align: left; }
	.footer-logo-col { justify-content: flex-start; }
	.footer-app-col { justify-self: start; text-align: left; }
	.footer-copy { justify-self: start; text-align: left; }
}

@media (max-width: 800px) {
	.pricing-cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 3.5rem;
	}
	.compare-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.compare-feature-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.site-header .container {
		position: relative;
	}
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.main-nav {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		right: 14px;
		min-width: min(88vw, 360px);
		background: #fff;
		border: 1px solid #d5e6f6;
		border-radius: 12px;
		box-shadow: 0 14px 26px rgba(60, 132, 246, 0.15);
		padding: 0.8rem;
		z-index: 1002;
	}
	.main-nav.is-open {
		display: block;
	}
	.main-nav ul {
		gap: 0.35rem;
		flex-direction: column;
		align-items: stretch;
	}
	.main-nav a {
		font-size: 0.96rem;
		display: block;
		padding: 0.45rem 0.5rem;
		border-radius: 8px;
	}
	.main-nav a:hover {
		background: #eef7ff;
	}
	.main-nav .nav-cta {
		padding: 0.55rem 0.75rem;
		text-align: center;
	}
	.breadcrumbs {
		padding: 0.3rem 0 0.65rem;
	}
	.breadcrumbs .crumb {
		gap: 0.35rem;
		font-size: 0.76rem;
	}
	.breadcrumbs a,
	.breadcrumbs .crumb-current {
		min-height: 1.85rem;
		padding: 0.28rem 0.58rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}
