:root {
	--rf-navy: #07111f;
	--rf-navy-soft: #0d1b2f;
	--rf-ink: #0f172a;
	--rf-copy: #475569;
	--rf-muted: #64748b;
	--rf-line: #e2e8f0;
	--rf-surface: #f7f9fc;
	--rf-white: #fff;
	--rf-primary: #2563eb;
	--rf-primary-hover: #0891b2;
	--rf-cyan: #06b6d4;
	--rf-gradient: linear-gradient(135deg, var(--rf-primary), var(--rf-cyan));
	--rf-radius-sm: 10px;
	--rf-radius: 18px;
	--rf-radius-lg: 28px;
	--rf-shadow-sm: 0 10px 30px rgba(15, 23, 42, .07);
	--rf-shadow: 0 22px 60px rgba(15, 23, 42, .12);
	--rf-container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
	background: var(--rf-white);
	color: var(--rf-copy);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img {
	height: auto;
	max-width: 100%;
}

figure { margin: 0; }

a {
	color: var(--rf-primary);
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover { color: var(--rf-primary-hover); }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--rf-ink);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.15;
	margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.25rem; }

svg {
	fill: none;
	height: 1.2em;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 1.2em;
}

.site { min-height: 100vh; }
.site-content { min-height: 60vh; }

.container {
	margin-inline: auto;
	max-width: var(--rf-container);
	padding-inline: 20px;
	width: 100%;
}

.narrow-container { max-width: 860px; }

.section { padding: 80px 0; }

.eyebrow {
	color: var(--rf-primary);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .14em;
	margin-bottom: .8rem;
	text-transform: uppercase;
}

.button,
button.button,
input[type="submit"] {
	align-items: center;
	background: var(--rf-gradient);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(37, 99, 235, .2);
	color: var(--rf-white);
	display: inline-flex;
	font-size: .92rem;
	font-weight: 800;
	gap: .55rem;
	justify-content: center;
	line-height: 1.2;
	min-height: 46px;
	padding: .85rem 1.35rem;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible,
button.button:hover,
input[type="submit"]:hover {
	box-shadow: 0 14px 30px rgba(8, 145, 178, .25);
	color: var(--rf-white);
	transform: translateY(-2px);
}

.button svg { transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-sm { font-size: .78rem; min-height: 40px; padding: .7rem 1rem; }
.button-lg { font-size: 1rem; min-height: 54px; padding: 1rem 1.5rem; }

.button-secondary,
.button-ghost {
	background: var(--rf-white);
	border: 1px solid var(--rf-line);
	box-shadow: none;
	color: var(--rf-ink);
}

.button-secondary:hover,
.button-ghost:hover {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: var(--rf-primary);
}

.button-light {
	background: var(--rf-white);
	box-shadow: 0 15px 30px rgba(2, 8, 23, .2);
	color: var(--rf-primary);
}

.button-light:hover { background: #eff6ff; color: var(--rf-primary); }

.text-link {
	align-items: center;
	color: var(--rf-ink);
	display: inline-flex;
	font-size: .9rem;
	font-weight: 800;
	gap: .45rem;
	white-space: nowrap;
}

.text-link svg { transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* Header */
.site-header {
	background: var(--rf-header-bg, #fff);
	border-bottom: 1px solid rgba(226, 232, 240, .8);
	color: var(--rf-header-text, #0f172a);
	position: relative;
	transition: box-shadow .25s ease;
	width: 100%;
	z-index: 1000;
}

.has-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.admin-bar.has-sticky-header .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(15, 23, 42, .08); }

.header-inner {
	align-items: center;
	display: flex;
	gap: 18px;
	height: 74px;
	justify-content: space-between;
}

.site-branding { flex: 0 0 auto; min-width: 0; }
.brand-link { align-items: center; color: inherit; display: inline-flex; }
.header-logo { display: block; max-height: 46px; max-width: 190px; width: auto; }
.custom-logo-link { display: inline-flex; }
.custom-logo { max-height: 46px; max-width: 190px; width: auto; }

.text-logo {
	align-items: center;
	color: var(--rf-header-text, var(--rf-ink));
	display: inline-flex;
	font-size: 1rem;
	font-weight: 850;
	gap: .65rem;
	letter-spacing: -.03em;
}

.logo-mark {
	align-items: center;
	background: var(--rf-gradient);
	border-radius: 11px;
	box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
	color: var(--rf-white);
	display: inline-flex;
	font-size: 1rem;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.main-navigation {
	background: var(--rf-header-bg, #fff);
	border-top: 1px solid var(--rf-line);
	display: none;
	left: 0;
	padding: 12px 20px 18px;
	position: absolute;
	right: 0;
	top: 100%;
}

.main-navigation.is-open { display: block; box-shadow: 0 18px 30px rgba(15, 23, 42, .12); }

.primary-menu {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li { list-style: none; margin: 0; position: relative; }

.primary-menu a {
	border-radius: 10px;
	color: var(--rf-header-text, var(--rf-ink));
	display: block;
	font-size: .9rem;
	font-weight: 700;
	padding: .7rem .85rem;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	background: rgba(37, 99, 235, .08);
	color: var(--rf-primary);
}

.primary-menu .sub-menu {
	border-left: 2px solid #dbeafe;
	list-style: none;
	margin: 2px 0 4px 15px;
	padding: 0 0 0 8px;
}

.primary-menu .sub-menu a { font-size: .84rem; font-weight: 650; }

.menu-toggle {
	background: transparent;
	border: 0;
	display: grid;
	gap: 4px;
	margin-left: auto;
	padding: 10px 5px;
}

.menu-toggle > span:not(.screen-reader-text) {
	background: currentColor;
	border-radius: 4px;
	display: block;
	height: 2px;
	transition: transform .2s ease, opacity .2s ease;
	width: 23px;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }

.header-actions { align-items: center; display: flex; gap: 8px; }

.icon-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--rf-line);
	border-radius: 50%;
	color: var(--rf-header-text, var(--rf-ink));
	display: inline-flex;
	height: 40px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 40px;
}

.icon-button:hover { background: #eff6ff; color: var(--rf-primary); }
.header-cta { display: none; }
.cart-count {
	align-items: center;
	background: var(--rf-primary);
	border: 2px solid var(--rf-white);
	border-radius: 50%;
	color: var(--rf-white);
	display: flex;
	font-size: .6rem;
	font-weight: 800;
	height: 18px;
	justify-content: center;
	position: absolute;
	right: -4px;
	top: -4px;
	width: 18px;
}

/* Search modal */
.search-modal {
	inset: 0;
	padding: 20px;
	position: fixed;
	z-index: 9999;
}

.search-modal[hidden] { display: none; }

.search-modal-backdrop {
	background: rgba(2, 8, 23, .78);
	backdrop-filter: blur(8px);
	inset: 0;
	position: absolute;
}

.search-modal-panel {
	background: var(--rf-white);
	border-radius: var(--rf-radius-lg);
	box-shadow: 0 30px 100px rgba(2, 8, 23, .35);
	left: 50%;
	max-width: 760px;
	padding: 54px 24px 32px;
	position: absolute;
	top: 16%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
}

.search-modal-panel h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }

.search-modal-close {
	align-items: center;
	background: #f1f5f9;
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 40px;
}

.search-form {
	align-items: stretch;
	background: #f8fafc;
	border: 1px solid var(--rf-line);
	border-radius: 14px;
	display: flex;
	gap: 8px;
	padding: 6px;
}

.search-form label { flex: 1; }

.search-field {
	background: transparent;
	border: 0;
	color: var(--rf-ink);
	height: 48px;
	outline: 0;
	padding: 0 12px;
	width: 100%;
}

.search-submit {
	align-items: center;
	background: var(--rf-gradient);
	border: 0;
	border-radius: 10px;
	color: var(--rf-white);
	display: flex;
	font-weight: 800;
	gap: 7px;
	justify-content: center;
	padding: 0 18px;
}

.search-hint { color: var(--rf-muted); font-size: .82rem; margin: .7rem 0 0; }

/* Hero */
.hero-section {
	background:
		linear-gradient(115deg, rgba(7, 17, 31, .98), rgba(11, 31, 55, .95)),
		radial-gradient(circle at top right, #164e63, var(--rf-navy));
	color: #cbd5e1;
	overflow: hidden;
	padding: 70px 0 0;
	position: relative;
}

.hero-orb {
	border-radius: 50%;
	filter: blur(3px);
	opacity: .28;
	pointer-events: none;
	position: absolute;
}

.hero-orb-one {
	background: #2563eb;
	height: 420px;
	right: -180px;
	top: -220px;
	width: 420px;
}

.hero-orb-two {
	background: #06b6d4;
	bottom: 0;
	height: 300px;
	left: -200px;
	width: 300px;
}

.hero-grid {
	align-items: center;
	display: grid;
	gap: 55px;
	position: relative;
	z-index: 1;
}

.hero-content { max-width: 690px; }

.hero-kicker {
	align-items: center;
	color: #93c5fd;
	display: flex;
	font-size: .76rem;
	font-weight: 800;
	gap: .6rem;
	letter-spacing: .12em;
	margin-bottom: 1.2rem;
	text-transform: uppercase;
}

.hero-kicker span {
	background: #22d3ee;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(34, 211, 238, .1);
	height: 7px;
	width: 7px;
}

.hero-content h1 {
	background: linear-gradient(135deg, #fff 25%, #dbeafe 70%, #67e8f9);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(2.65rem, 8vw, 4.9rem);
	margin-bottom: 1.4rem;
}

.hero-subtitle {
	color: #b8c5d8;
	font-size: clamp(1rem, 2vw, 1.15rem);
	max-width: 650px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 2rem 0 1.7rem; }
.hero-actions .button-secondary { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .18); color: #fff; }
.hero-actions .button-secondary:hover { background: rgba(255, 255, 255, .13); }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.trust-row span { align-items: center; display: inline-flex; font-size: .78rem; font-weight: 700; gap: .35rem; }
.trust-row svg { color: #22d3ee; }

.hero-visual { min-height: 390px; padding: 15px 0 45px; position: relative; }

.browser-frame {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 20px;
	box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
	overflow: hidden;
	transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.browser-bar {
	align-items: center;
	background: #eaf0f7;
	color: #94a3b8;
	display: flex;
	font-size: .58rem;
	gap: 5px;
	height: 34px;
	padding: 0 12px;
}

.browser-bar i { background: #f87171; border-radius: 50%; height: 7px; width: 7px; }
.browser-bar i:nth-child(2) { background: #fbbf24; }
.browser-bar i:nth-child(3) { background: #4ade80; }
.browser-bar span { background: #fff; border-radius: 5px; margin-left: 12px; padding: 3px 20px; }
.browser-body { display: flex; height: 310px; }
.preview-sidebar { align-items: center; background: #09172a; display: flex; flex: 0 0 48px; flex-direction: column; gap: 18px; padding-top: 15px; }
.preview-sidebar b { align-items: center; background: var(--rf-gradient); border-radius: 7px; color: #fff; display: flex; font-size: .6rem; height: 23px; justify-content: center; width: 23px; }
.preview-sidebar i { background: #334155; border-radius: 3px; height: 4px; width: 19px; }
.preview-content { background: #f1f5f9; flex: 1; padding: 15px; }
.preview-nav { align-items: center; display: flex; justify-content: space-between; margin-bottom: 15px; }
.preview-nav span { background: #cbd5e1; border-radius: 4px; height: 7px; width: 70px; }
.preview-nav i { background: #2563eb; border-radius: 5px; height: 18px; width: 42px; }

.preview-banner {
	align-items: center;
	background: linear-gradient(135deg, #dbeafe, #cffafe);
	border-radius: 13px;
	display: flex;
	height: 150px;
	justify-content: space-between;
	overflow: hidden;
	padding: 20px;
	position: relative;
}

.preview-banner div { display: flex; flex-direction: column; }
.preview-banner small { color: #2563eb; font-size: .42rem; font-weight: 800; letter-spacing: .1em; }
.preview-banner strong { color: #0f172a; font-size: 1rem; margin: 7px 0; }
.preview-banner i { background: #2563eb; border-radius: 6px; height: 14px; width: 50px; }
.preview-spark { align-items: center; background: linear-gradient(135deg, #2563eb, #06b6d4); border-radius: 50%; color: #fff; display: flex; height: 85px; justify-content: center; width: 85px; }
.preview-spark svg { height: 36px; width: 36px; }
.preview-card-row { display: grid; gap: 9px; grid-template-columns: repeat(3, 1fr); margin-top: 12px; }
.preview-card-row span { background: #fff; border-radius: 9px; box-shadow: 0 4px 12px rgba(15, 23, 42, .06); height: 72px; }

.floating-card {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .8);
	border-radius: 13px;
	box-shadow: 0 18px 40px rgba(2, 8, 23, .18);
	color: var(--rf-ink);
	display: flex;
	gap: 9px;
	padding: 9px 12px;
	position: absolute;
}

.floating-card strong,
.floating-card small { display: block; line-height: 1.25; }
.floating-card strong { font-size: .76rem; }
.floating-card small { color: var(--rf-muted); font-size: .6rem; }
.floating-icon { align-items: center; background: #fef3c7; border-radius: 9px; color: #f59e0b; display: flex; height: 32px; justify-content: center; width: 32px; }
.floating-icon.cyan { background: #cffafe; color: #0891b2; }
.floating-rating { left: -10px; top: 45px; }
.floating-download { bottom: 25px; right: -5px; }

.trust-strip {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 45px;
	padding-block: 22px;
	position: relative;
	text-align: center;
	z-index: 1;
}

.trust-strip span { color: #94a3b8; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

/* Sections and cards */
.section-heading {
	align-items: end;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	margin-bottom: 34px;
}

.section-heading > div { max-width: 720px; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p:last-child { color: var(--rf-muted); margin-bottom: 0; }
.centered-heading { justify-content: center; text-align: center; }
.centered-heading > div { max-width: 760px; }

.products-section { background: var(--rf-white); }
.product-card-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }

.market-product-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-sm);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.market-product-card:hover {
	border-color: #bfdbfe;
	box-shadow: var(--rf-shadow);
	transform: translateY(-6px);
}

.product-card-image {
	background: #e8eef7;
	display: block;
	overflow: hidden;
	padding-top: 66%;
	position: relative;
}

.product-card-image > img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform .4s ease;
	width: 100%;
}

.market-product-card:hover .product-card-image > img { transform: scale(1.035); }

.product-badge {
	background: rgba(255, 255, 255, .92);
	border: 1px solid rgba(226, 232, 240, .8);
	border-radius: 999px;
	bottom: 12px;
	color: var(--rf-ink);
	font-size: .68rem;
	font-weight: 800;
	left: 12px;
	padding: .35rem .65rem;
	position: absolute;
}

.product-card-body { padding: 20px; }
.product-card-meta { align-items: center; color: var(--rf-muted); display: flex; font-size: .7rem; font-weight: 700; justify-content: space-between; margin-bottom: 8px; text-transform: uppercase; }
.rating-star { color: #f59e0b; letter-spacing: 0; }
.product-card-body h3 { font-size: 1.23rem; margin-bottom: .65rem; }
.product-card-body h3 a { color: var(--rf-ink); }
.product-card-body h3 a:hover { color: var(--rf-primary); }
.product-card-body > p { color: var(--rf-muted); font-size: .84rem; line-height: 1.65; }
.product-card-footer { border-top: 1px solid var(--rf-line); padding-top: 16px; }
.product-price { color: var(--rf-ink); font-size: 1.15rem; font-weight: 850; margin-bottom: 12px; }
.product-price del { color: #94a3b8; font-size: .8rem; }
.product-price ins { text-decoration: none; }
.product-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.demo-product-image { background: linear-gradient(140deg, #e0e7ff, #dbeafe); }
.demo-cyan { background: linear-gradient(140deg, #cffafe, #dbeafe); }
.demo-violet { background: linear-gradient(140deg, #ede9fe, #fae8ff); }
.demo-browser { background: #fff; border-radius: 9px; box-shadow: 0 15px 40px rgba(15, 23, 42, .16); height: 72%; left: 9%; overflow: hidden; position: absolute; top: 12%; transform: rotate(-1deg); width: 82%; }
.demo-browser > div { align-items: center; background: #e2e8f0; display: flex; gap: 3px; height: 15%; padding-left: 6px; }
.demo-browser > div i { background: #94a3b8; border-radius: 50%; height: 3px; width: 3px; }
.demo-browser section { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); display: flex; flex-direction: column; height: 85%; justify-content: center; }
.demo-browser section span { background: var(--rf-primary); border-radius: 3px; height: 5px; margin-bottom: 7px; width: 25%; }
.demo-browser section strong { background: #172554; border-radius: 3px; height: 8px; margin-bottom: 6px; width: 52%; }
.demo-browser section small { background: #94a3b8; border-radius: 2px; height: 3px; margin-bottom: 10px; width: 45%; }
.demo-browser section em { background: var(--rf-gradient); border-radius: 4px; height: 11px; width: 22%; }

.categories-section { background: var(--rf-surface); }
.category-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.category-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(15, 23, 42, .045);
	color: var(--rf-ink);
	display: flex;
	font-size: .78rem;
	font-weight: 800;
	gap: 10px;
	min-height: 86px;
	padding: 13px;
}

.category-card > svg { color: #94a3b8; margin-left: auto; }
.category-card:hover { border-color: #93c5fd; box-shadow: var(--rf-shadow-sm); color: var(--rf-primary); transform: translateY(-3px); }
.category-card:hover > svg { transform: translateX(3px); }
.category-icon { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); border-radius: 10px; color: var(--rf-primary); display: flex; flex: 0 0 42px; font-size: .9rem; height: 42px; justify-content: center; }

.why-section {
	background:
		radial-gradient(circle at 10% 15%, rgba(37, 99, 235, .22), transparent 25%),
		radial-gradient(circle at 90% 80%, rgba(6, 182, 212, .14), transparent 30%),
		var(--rf-navy);
}

.light-heading h2 { color: #fff; }
.light-heading p:last-child { color: #94a3b8; }
.light-heading .eyebrow { color: #67e8f9; }
.feature-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.feature-card {
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	padding: 20px 16px;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.feature-card:hover { background: rgba(255, 255, 255, .085); border-color: rgba(103, 232, 249, .25); transform: translateY(-4px); }
.feature-icon { align-items: center; background: rgba(6, 182, 212, .12); border: 1px solid rgba(103, 232, 249, .15); border-radius: 11px; color: #67e8f9; display: flex; height: 42px; justify-content: center; margin-bottom: 14px; width: 42px; }
.feature-card h3 { color: #fff; font-size: 1rem; margin-bottom: .45rem; }
.feature-card p { color: #94a3b8; font-size: .76rem; line-height: 1.55; margin: 0; }

.showcase-grid { align-items: center; display: grid; gap: 50px; }
.showcase-copy { max-width: 560px; }
.check-list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; }
.check-list li { align-items: flex-start; color: #334155; display: flex; gap: 10px; margin-bottom: .8rem; }
.check-list svg { background: #dcfce7; border-radius: 50%; color: #16a34a; flex: 0 0 auto; padding: 3px; }
.showcase-product-list { display: grid; gap: 8px; margin: -6px 0 24px; }
.showcase-product-list a { align-items: center; background: #f8fafc; border: 1px solid var(--rf-line); border-radius: 10px; color: var(--rf-ink); display: flex; font-size: .78rem; font-weight: 750; justify-content: space-between; padding: 10px 12px; }
.showcase-product-list a:hover { background: #eff6ff; border-color: #bfdbfe; color: var(--rf-primary); }
.showcase-product-list strong { color: var(--rf-primary); }
.showcase-visual { padding: 20px 0 45px; position: relative; }
.showcase-window { background: #fff; border: 1px solid var(--rf-line); border-radius: 20px; box-shadow: var(--rf-shadow); overflow: hidden; transform: rotate(1deg); }
.showcase-window-top { align-items: center; background: #e2e8f0; display: flex; gap: 5px; height: 34px; padding-left: 14px; }
.showcase-window-top span { background: #94a3b8; border-radius: 50%; height: 7px; width: 7px; }
.showcase-dashboard { display: flex; height: 300px; }
.showcase-menu { background: #0f172a; flex: 0 0 17%; }
.showcase-main { background: #f8fafc; flex: 1; padding: 24px; }
.showcase-heading { background: #cbd5e1; border-radius: 5px; height: 12px; margin-bottom: 20px; width: 36%; }
.showcase-stats { display: grid; gap: 10px; grid-template-columns: repeat(3, 1fr); }
.showcase-stats span { background: #fff; border: 1px solid #e2e8f0; border-radius: 9px; height: 65px; }
.showcase-chart { align-items: end; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; display: flex; gap: 8px; height: 130px; justify-content: space-around; margin-top: 14px; padding: 20px; }
.showcase-chart i { background: linear-gradient(#06b6d4, #2563eb); border-radius: 4px 4px 1px 1px; height: 40%; width: 9%; }
.showcase-chart i:nth-child(2) { height: 65%; }
.showcase-chart i:nth-child(3) { height: 50%; }
.showcase-chart i:nth-child(4) { height: 80%; }
.showcase-chart i:nth-child(5) { height: 70%; }
.showcase-chart i:nth-child(6) { height: 95%; }
.showcase-badge { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: 14px; bottom: 12px; box-shadow: var(--rf-shadow-sm); display: flex; gap: 10px; padding: 12px 16px; position: absolute; right: -4px; }
.showcase-badge > svg { color: #16a34a; height: 28px; width: 28px; }
.showcase-badge strong,
.showcase-badge small { display: block; line-height: 1.3; }
.showcase-badge strong { color: var(--rf-ink); font-size: .8rem; }
.showcase-badge small { color: var(--rf-muted); font-size: .66rem; }

.testimonials-section { background: var(--rf-surface); }
.testimonial-grid { display: grid; gap: 18px; }
.testimonial-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); box-shadow: var(--rf-shadow-sm); padding: 24px; }
.testimonial-stars { color: #f59e0b; font-size: .8rem; letter-spacing: .12em; margin-bottom: 14px; }
.testimonial-card blockquote { color: #334155; font-size: .92rem; font-style: normal; margin: 0 0 20px; }
.testimonial-author { align-items: center; display: flex; gap: 11px; }
.testimonial-author > span { align-items: center; background: var(--rf-gradient); border-radius: 50%; color: #fff; display: flex; font-size: .72rem; font-weight: 800; height: 42px; justify-content: center; width: 42px; }
.testimonial-author strong,
.testimonial-author small { display: block; line-height: 1.35; }
.testimonial-author strong { color: var(--rf-ink); font-size: .82rem; }
.testimonial-author small { color: var(--rf-muted); font-size: .7rem; }

.faq-layout { display: grid; gap: 40px; }
.faq-copy { max-width: 500px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--rf-line); border-radius: 13px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: #93c5fd; box-shadow: 0 10px 30px rgba(37, 99, 235, .08); }
.faq-item h3 { font-size: 1rem; margin: 0; }
.faq-question { align-items: center; background: transparent; border: 0; color: var(--rf-ink); display: flex; font-weight: 800; justify-content: space-between; padding: 18px; text-align: left; width: 100%; }
.faq-symbol { align-items: center; background: #eff6ff; border-radius: 50%; color: var(--rf-primary); display: flex; flex: 0 0 28px; font-size: 1.1rem; height: 28px; justify-content: center; margin-left: 12px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-symbol { transform: rotate(45deg); }
.faq-answer { border-top: 1px solid var(--rf-line); padding: 16px 18px 4px; }
.faq-answer p { color: var(--rf-muted); font-size: .88rem; }

.final-cta-section { padding-top: 20px; }
.final-cta {
	align-items: center;
	background:
		radial-gradient(circle at right top, rgba(34, 211, 238, .28), transparent 32%),
		linear-gradient(135deg, #1d4ed8, #0891b2);
	border-radius: var(--rf-radius-lg);
	color: #dbeafe;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
	overflow: hidden;
	padding: 36px 24px;
	position: relative;
}

.final-cta > * { position: relative; z-index: 1; }
.final-cta > div:first-of-type { max-width: 720px; }
.final-cta .eyebrow { color: #cffafe; }
.final-cta h2 { color: #fff; }
.final-cta p { margin-bottom: 0; }

/* Page, blog, and content */
.page-hero {
	background:
		radial-gradient(circle at 85% 10%, rgba(6, 182, 212, .15), transparent 30%),
		linear-gradient(135deg, #07111f, #10243d);
	color: #cbd5e1;
	padding: 64px 0;
}

.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4rem); }
.page-hero p { max-width: 760px; }
.compact-hero { padding: 55px 0; }
.content-section { padding-block: 64px; }
.page-featured-image { border-radius: var(--rf-radius); margin-bottom: 30px; overflow: hidden; }

.prose-card {
	background: #fff;
	border: 1px solid var(--rf-line);
	border-radius: var(--rf-radius);
	box-shadow: var(--rf-shadow-sm);
	padding: clamp(22px, 5vw, 48px);
}

.entry-content {
	color: #334155;
	font-size: 1.03rem;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { font-size: clamp(1.65rem, 4vw, 2.25rem); margin-top: 2.4rem; }
.entry-content h3 { font-size: 1.4rem; margin-top: 2rem; }
.entry-content blockquote { border-left: 4px solid var(--rf-primary); color: var(--rf-ink); font-size: 1.15rem; font-weight: 650; margin: 2rem 0; padding: .5rem 0 .5rem 1.4rem; }
.entry-content pre { background: #0f172a; border-radius: 10px; color: #e2e8f0; max-width: 100%; overflow: auto; padding: 1rem; }
.entry-content table { border-collapse: collapse; width: 100%; }
.entry-content th,
.entry-content td { border: 1px solid var(--rf-line); padding: .65rem; text-align: left; }
.entry-content th { background: #f8fafc; color: var(--rf-ink); }

.rankflow-breadcrumbs {
	color: #94a3b8;
	font-size: .75rem;
	margin-bottom: 1.1rem;
}

.rankflow-breadcrumbs nav,
.rank-math-breadcrumb p { align-items: center; display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; }
.rankflow-breadcrumbs a { color: inherit; }
.rankflow-breadcrumbs a:hover { color: #60a5fa; }
.woocommerce-main .rankflow-breadcrumbs { color: var(--rf-muted); padding-top: 28px; }

.post-grid { display: grid; gap: 24px; }
.post-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); box-shadow: var(--rf-shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { box-shadow: var(--rf-shadow); transform: translateY(-5px); }
.post-card-image { background: #dbeafe; display: block; overflow: hidden; padding-top: 58%; position: relative; }
.post-card-image img { height: 100%; inset: 0; object-fit: cover; position: absolute; transition: transform .4s ease; width: 100%; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-image-placeholder { align-items: center; background: linear-gradient(135deg, #dbeafe, #cffafe); color: var(--rf-primary); display: flex; font-size: 4rem; font-weight: 850; inset: 0; justify-content: center; position: absolute; }
.post-card-content { padding: 22px; }
.post-category { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.post-category a,
.content-type { background: #eff6ff; border-radius: 999px; color: var(--rf-primary); display: inline-block; font-size: .66rem; font-weight: 800; letter-spacing: .06em; padding: .3rem .6rem; text-transform: uppercase; }
.post-card h2 { font-size: 1.3rem; }
.post-card h2 a,
.search-result-card h2 a { color: var(--rf-ink); }
.entry-meta { color: var(--rf-muted); display: flex; flex-wrap: wrap; font-size: .72rem; gap: 8px 16px; margin-bottom: 1rem; }
.entry-meta a { color: inherit; }
.post-card-content > p { color: var(--rf-muted); font-size: .86rem; }

.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.nav-links .page-numbers { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: 9px; color: var(--rf-ink); display: flex; font-size: .82rem; font-weight: 750; height: 40px; justify-content: center; min-width: 40px; padding: 0 12px; }
.nav-links .current,
.nav-links a:hover { background: var(--rf-primary); border-color: var(--rf-primary); color: #fff; }

.search-grid { gap: 16px; }
.search-result-card { align-items: center; background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); display: grid; gap: 20px; padding: 20px; }
.search-result-image { border-radius: 12px; display: block; overflow: hidden; }
.search-result-image img { display: block; width: 100%; }
.search-result-card h2 { font-size: 1.35rem; margin: .6rem 0; }
.search-result-card p { color: var(--rf-muted); font-size: .88rem; }

.empty-state { background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: var(--rf-radius); margin: 20px auto; max-width: 720px; padding: 50px 20px; text-align: center; }
.empty-icon { align-items: center; background: #dbeafe; border-radius: 50%; color: var(--rf-primary); display: flex; height: 60px; justify-content: center; margin: 0 auto 16px; width: 60px; }
.empty-state .search-form { margin: 24px auto 16px; max-width: 560px; }

.not-found-section { align-items: center; background: var(--rf-surface); display: flex; min-height: 72vh; padding: 60px 0; }
.not-found-card { text-align: center; }
.error-code { background: var(--rf-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-size: clamp(6rem, 25vw, 12rem); font-weight: 900; letter-spacing: -.08em; line-height: .9; }
.not-found-card h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
.not-found-card > p { margin-inline: auto; max-width: 600px; }
.not-found-card .search-form { margin: 25px auto 18px; max-width: 600px; }

.single-post-header { background: linear-gradient(180deg, #f8fafc, #fff); padding: 55px 0 40px; text-align: center; }
.single-post-header .rankflow-breadcrumbs nav,
.single-post-header .rank-math-breadcrumb p { justify-content: center; }
.single-post-header .post-category { justify-content: center; }
.single-post-header h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); margin-inline: auto; max-width: 980px; }
.post-lead { color: var(--rf-muted); font-size: 1.1rem; margin-inline: auto; max-width: 760px; }
.single-post-header .entry-meta { justify-content: center; }
.single-featured-image { border-radius: var(--rf-radius-lg); margin-bottom: 55px; max-width: 1080px; overflow: hidden; }
.single-featured-image img { display: block; width: 100%; }
.single-post-layout { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 940px; }
.share-rail { align-items: center; display: flex; gap: 8px; }
.share-rail > span { color: var(--rf-muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.share-rail a { align-items: center; background: #f1f5f9; border-radius: 50%; color: var(--rf-ink); display: flex; font-size: .75rem; font-weight: 800; height: 34px; justify-content: center; width: 34px; }
.share-rail a:hover { background: var(--rf-primary); color: #fff; }
.single-post-content { min-width: 0; }
.single-post-content .entry-content { font-size: 1.08rem; }
.table-of-contents { background: #f8fafc; border: 1px solid var(--rf-line); border-radius: 14px; margin-bottom: 34px; padding: 20px; }
.table-of-contents > strong { color: var(--rf-ink); display: block; margin-bottom: 10px; }
.table-of-contents ol { margin: 0; padding-left: 1.3rem; }
.table-of-contents li { font-size: .86rem; margin-bottom: .35rem; }
.table-of-contents a { color: #334155; }
.tag-list { border-top: 1px solid var(--rf-line); display: flex; flex-wrap: wrap; gap: 7px; margin-top: 35px; padding-top: 22px; }
.tag-list a { background: #f1f5f9; border-radius: 999px; color: #475569; font-size: .72rem; font-weight: 700; padding: .35rem .7rem; }
.author-box { align-items: center; background: linear-gradient(135deg, #eff6ff, #ecfeff); border: 1px solid #bfdbfe; border-radius: var(--rf-radius); display: flex; gap: 18px; margin-top: 36px; padding: 24px; }
.author-avatar img { border-radius: 50%; display: block; }
.author-box span { color: var(--rf-muted); font-size: .72rem; font-weight: 700; }
.author-box h2 { font-size: 1.25rem; margin: .2rem 0 .4rem; }
.author-box p { font-size: .82rem; margin: 0; }
.related-posts-section { background: var(--rf-surface); margin-top: 70px; }

.comments-area { margin-block: 50px; }
.comment-list { list-style: none; padding: 0; }
.comment-body { border-bottom: 1px solid var(--rf-line); padding: 20px 0; }
.comment-author img { border-radius: 50%; margin-right: 8px; vertical-align: middle; }
.comment-metadata { font-size: .72rem; }

.content-with-sidebar { display: grid; gap: 28px; }
.widget-area { display: grid; gap: 18px; }
.rankflow-widget { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius); padding: 22px; }
.widget-title { font-size: 1.1rem; }
.rankflow-widget ul { list-style: none; margin: 0; padding: 0; }
.rankflow-widget li { border-bottom: 1px solid var(--rf-line); padding: .5rem 0; }
.rankflow-widget li:last-child { border: 0; }
.rankflow-widget a { color: #475569; font-size: .86rem; }

.landing-hero { background: linear-gradient(135deg, #07111f, #173a5e); color: #cbd5e1; padding: 90px 0; text-align: center; }
.landing-hero h1 { color: #fff; }
.landing-hero p { font-size: 1.1rem; }

/* Forms and contact */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
textarea,
select {
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	color: var(--rf-ink);
	max-width: 100%;
	min-height: 46px;
	padding: .7rem .8rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}

textarea { min-height: 130px; resize: vertical; width: 100%; }

input:focus,
textarea:focus,
select:focus {
	border-color: #60a5fa;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
	outline: none;
}

label { color: #334155; font-size: .82rem; font-weight: 750; }

.contact-hero { text-align: center; }
.contact-hero .rankflow-breadcrumbs nav,
.contact-hero .rank-math-breadcrumb p { justify-content: center; }
.contact-hero p { margin-inline: auto; }
.contact-section { background: var(--rf-surface); }
.contact-grid { display: grid; gap: 24px; }
.contact-form-card { background: #fff; border: 1px solid var(--rf-line); border-radius: var(--rf-radius-lg); box-shadow: var(--rf-shadow-sm); padding: clamp(22px, 5vw, 42px); }
.contact-form-card h2 { font-size: 1.8rem; }
.contact-form-card > p { color: var(--rf-muted); font-size: .85rem; }
.form-row { display: grid; gap: 0 16px; }
.contact-form p { margin-bottom: 1rem; }
.contact-form label { display: block; margin-bottom: .35rem; }
.contact-form input { width: 100%; }
.contact-honeypot { left: -9999px; position: absolute; }
.form-notice { border-radius: 10px; font-size: .84rem; font-weight: 700; margin: 18px 0; padding: 12px 14px; }
.notice-success { background: #dcfce7; color: #166534; }
.notice-error { background: #fee2e2; color: #991b1b; }
.contact-details { display: grid; gap: 14px; }
.contact-info-card { align-items: flex-start; background: #fff; border: 1px solid var(--rf-line); border-radius: 16px; display: flex; gap: 14px; padding: 20px; }
.contact-info-card > span { align-items: center; background: #eff6ff; border-radius: 10px; color: var(--rf-primary); display: flex; flex: 0 0 42px; font-size: 1rem; height: 42px; justify-content: center; }
.contact-info-card h2 { font-size: .92rem; margin: .1rem 0 .3rem; }
.contact-info-card p,
.contact-info-card a { color: var(--rf-muted); font-size: .82rem; margin: 0; word-break: break-word; }

/* Footer */
.site-footer {
	background: var(--rf-footer-bg, #07111f);
	color: var(--rf-footer-text, #cbd5e1);
	overflow: hidden;
	padding-top: 64px;
	position: relative;
}

.footer-glow { background: #0e7490; border-radius: 50%; filter: blur(100px); height: 250px; opacity: .15; position: absolute; right: -100px; top: -100px; width: 250px; }
.footer-grid { display: grid; gap: 38px 26px; position: relative; }
.footer-brand { max-width: 350px; }
.footer-brand-link { color: #fff; margin-bottom: 18px; }
.footer-logo { display: block; max-height: 50px; max-width: 220px; width: auto; }
.site-footer .text-logo { color: #fff; font-size: 1.1rem; }
.footer-brand p { color: var(--rf-footer-text, #cbd5e1); font-size: .84rem; }
.footer-title { color: #fff; font-size: .95rem; letter-spacing: -.01em; margin-bottom: 16px; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li { margin-bottom: .55rem; }
.footer-menu a { color: var(--rf-footer-text, #cbd5e1); font-size: .8rem; opacity: .82; }
.footer-menu a:hover { color: #67e8f9; opacity: 1; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials:empty { display: none; }
.footer-socials a { align-items: center; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; color: #cbd5e1; display: flex; font-size: .7rem; font-weight: 800; height: 36px; justify-content: center; width: 36px; }
.footer-socials a:hover { background: var(--rf-primary); border-color: var(--rf-primary); color: #fff; }
.footer-contact { display: flex; flex-direction: column; margin-top: 16px; }
.footer-contact a,
.footer-contact span { color: var(--rf-footer-text, #cbd5e1); font-size: .74rem; opacity: .75; }
.footer-widget-area { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 36px; padding-top: 24px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-direction: column; gap: 5px; margin-top: 45px; padding-block: 20px; }
.footer-bottom p { color: var(--rf-footer-text, #cbd5e1); font-size: .68rem; margin: 0; opacity: .65; }

/* Accessibility */
:focus-visible {
	outline: 3px solid #38bdf8;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}

@media (min-width: 580px) {
	.container { padding-inline: 28px; }
	.product-card-grid,
	.post-grid,
	.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.category-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-strip { grid-template-columns: repeat(4, 1fr); }
	.form-row { grid-template-columns: repeat(2, 1fr); }
	.search-result-card { grid-template-columns: 190px 1fr; }
	.footer-grid { grid-template-columns: 1.35fr 1fr; }
}

@media (min-width: 780px) {
	.section { padding: 105px 0; }
	.hero-section { padding-top: 90px; }
	.hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); }
	.hero-visual { min-height: 470px; padding-top: 50px; }
	.browser-body { height: 360px; }
	.floating-rating { top: 20px; }
	.trust-strip { margin-top: 60px; }
	.category-grid { grid-template-columns: repeat(4, 1fr); }
	.category-card { font-size: .82rem; min-height: 100px; padding: 16px; }
	.feature-grid { grid-template-columns: repeat(4, 1fr); }
	.feature-card { padding: 23px 20px; }
	.showcase-grid { grid-template-columns: .9fr 1.1fr; }
	.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
	.faq-layout { grid-template-columns: .75fr 1.25fr; }
	.final-cta { flex-direction: row; padding: 48px; }
	.post-grid { grid-template-columns: repeat(3, 1fr); }
	.single-post-layout { grid-template-columns: 56px minmax(0, 760px); }
	.share-rail { align-self: start; flex-direction: column; position: sticky; top: 120px; }
	.content-with-sidebar { grid-template-columns: minmax(0, 1fr) 310px; }
	.contact-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); }
	.footer-grid { grid-template-columns: 1.5fr repeat(3, .75fr); }
	.footer-bottom { align-items: center; flex-direction: row; justify-content: space-between; }
}

@media (min-width: 980px) {
	.header-inner { height: 82px; }
	.menu-toggle { display: none; }
	.main-navigation {
		background: transparent;
		border: 0;
		display: block;
		margin-left: auto;
		padding: 0;
		position: static;
	}
	.primary-menu { align-items: center; flex-direction: row; gap: 2px; }
	.primary-menu a { padding: .65rem .72rem; }
	.primary-menu .menu-item-has-children > a { padding-right: 1.5rem; position: relative; }
	.primary-menu .menu-item-has-children > a::after { border-bottom: 1.5px solid; border-right: 1.5px solid; content: ""; height: 5px; position: absolute; right: .65rem; top: 45%; transform: rotate(45deg); width: 5px; }
	.primary-menu .sub-menu {
		background: #fff;
		border: 1px solid var(--rf-line);
		border-radius: 13px;
		box-shadow: var(--rf-shadow);
		display: block;
		left: 0;
		margin: 0;
		min-width: 220px;
		opacity: 0;
		padding: 8px;
		pointer-events: none;
		position: absolute;
		top: calc(100% + 12px);
		transform: translateY(8px);
		transition: opacity .2s ease, transform .2s ease;
		visibility: hidden;
	}
	.primary-menu .sub-menu::before { content: ""; height: 14px; left: 0; position: absolute; right: 0; top: -14px; }
	.primary-menu li:hover > .sub-menu,
	.primary-menu li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
	.primary-menu .sub-menu .sub-menu { left: calc(100% + 8px); top: 0; }
	.header-cta { display: inline-flex; }
	.product-card-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 782px) {
	.admin-bar.has-sticky-header .site-header { top: 46px; }
}

@media (max-width: 579px) {
	.header-inner { padding-inline: 15px; }
	.text-logo > span:last-child { max-width: 135px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
	.icon-button.cart-link { display: none; }
	.search-submit span { display: none; }
	.search-submit { padding: 0 15px; }
	.hero-actions .button { width: 100%; }
	.hero-visual { margin-inline: 5px; }
	.browser-body { height: 260px; }
	.preview-banner { height: 125px; padding: 13px; }
	.preview-spark { height: 64px; width: 64px; }
	.preview-card-row span { height: 55px; }
	.floating-card { transform: scale(.88); }
	.floating-rating { left: -20px; }
	.floating-download { right: -16px; }
	.section-heading { align-items: flex-start; flex-direction: column; }
	.category-card > svg { display: none; }
	.feature-grid { grid-template-columns: 1fr; }
	.author-box { align-items: flex-start; flex-direction: column; }
}
