/**
 * Nova - main stylesheet
 *
 * A calm, modern content design system built on a "trust green" emerald
 * palette with Plus Jakarta Sans for display headings and Inter for body text.
 * Organised top to bottom: tokens, base, layout, header, components, content,
 * sidebar, footer, then responsive rules.
 */

/* ----------------------------------------------------------------------------
   1. Design tokens
---------------------------------------------------------------------------- */
:root {
	/* Brand core. LayerSignal identity: coral red (LAYER) + royal blue (SIGNAL),
	   with a warm amber reserved for rating stars and scores. Recolor the whole
	   site by editing the values in this block. */
	--nova-ink: #141824;
	--nova-primary: #f5484f;         /* coral red: buttons, links, primary actions */
	--nova-primary-deep: #dc333d;    /* darker coral on hover */
	--nova-accent: #fb6169;          /* soft coral: dots, hover borders */
	--nova-accent-soft: #ff9aa0;
	--nova-mist: #fff0f1;            /* soft coral tint for chips and callouts */
	--nova-mist-2: #fbf7fb;         /* barely-there tint for alternating sections */
	--nova-paper: #ffffff;
	--nova-white: #ffffff;
	--nova-gold: #f2960f;            /* amber, used for scores and the star rating */
	--nova-text: #232935;
	--nova-body: #47505f;
	--nova-muted: #6b7480;
	--nova-border: #e8e6ee;
	--nova-border-soft: rgba(232, 230, 238, 0.8);
	--nova-footer-bg: #141824;
	--nova-shadow: 0 24px 70px rgba(20, 24, 36, 0.10);
	--nova-shadow-sm: 0 12px 28px rgba(245, 72, 79, 0.18);
	--nova-radius: 24px;
	--nova-radius-md: 18px;
	--nova-radius-sm: 14px;
	--nova-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--nova-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

	/* LayerSignal extras (used by the review and homepage components). */
	--ls-blue: #3f7afb;             /* royal blue from SIGNAL: secondary accent */
	--ls-blue-deep: #2358e6;
	--ls-star: #f5a623;             /* rating stars */
	--ls-star-empty: #e7e3ea;
	--ls-good: #17a06b;             /* pros / positive */
	--ls-good-soft: #e7f7ef;
	--ls-bad: #e04352;              /* cons / negative */
	--ls-bad-soft: #fdeef0;
	--ls-brand-gradient: linear-gradient(135deg, #fb4a52 0%, #f5484f 38%, #3f7afb 100%);
	--ls-brand-gradient-soft: linear-gradient(135deg, #fff1f2 0%, #eef3ff 100%);
	--ls-shadow-lg: 0 34px 90px rgba(20, 24, 36, 0.14);
	--ls-ring: 0 0 0 1px rgba(232, 230, 238, 0.9);
}

/* ----------------------------------------------------------------------------
   2. Base
---------------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--nova-paper);
	color: var(--nova-text);
	font-family: var(--nova-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

a {
	color: inherit;
}

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

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

button {
	cursor: pointer;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(245, 72, 79, 0.30);
	outline-offset: 3px;
}

.nova-skip {
	position: absolute;
	left: 16px;
	top: -100px;
	background: var(--nova-ink);
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 800;
	z-index: 50;
	transition: top 0.18s ease;
}

.nova-skip:focus {
	top: 16px;
}

/* ----------------------------------------------------------------------------
   3. Layout
---------------------------------------------------------------------------- */
.nova-container {
	width: min(var(--nova-container-max, 1180px), calc(100% - 40px));
	margin-inline: auto;
}

.nova-site-main {
	display: block;
}

/* ----------------------------------------------------------------------------
   4. Header and navigation
---------------------------------------------------------------------------- */
.nova-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-header-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.nova-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--nova-ink);
}

.nova-brand-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--nova-accent), var(--nova-primary-deep));
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.02em;
	box-shadow: var(--nova-shadow-sm);
}

.nova-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.nova-brand-text strong {
	font-family: var(--nova-display);
	font-size: 20px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}

.nova-brand-text small {
	font-size: 12px;
	color: var(--nova-muted);
	font-weight: 700;
}

.nova-brand-logo img {
	max-width: var(--nova-logo-max, 180px);
	max-height: 96px;
	width: auto;
	height: auto;
}

.nova-primary-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nova-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-menu a {
	display: block;
	text-decoration: none;
	color: var(--nova-ink);
	font-weight: 700;
	font-size: 14px;
	padding: 10px 13px;
	border-radius: 999px;
	transition: background 0.16s ease, color 0.16s ease;
}

.nova-menu a:hover,
.nova-menu .current-menu-item > a {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
}

.nova-nav-cta,
.nova-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 15px;
	border: 1px solid transparent;
	min-height: 46px;
	padding: 11px 20px;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.nova-nav-cta,
.nova-btn-primary {
	background: var(--nova-primary);
	color: #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-nav-cta:hover,
.nova-btn-primary:hover {
	background: var(--nova-primary-deep);
	transform: translateY(-1px);
}

.nova-btn-soft {
	background: #fff;
	color: var(--nova-primary-deep);
	border-color: var(--nova-border);
}

.nova-btn-soft:hover {
	border-color: var(--nova-accent);
	transform: translateY(-1px);
}

.nova-menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--nova-border);
	background: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-menu-toggle-bars,
.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--nova-primary-deep);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nova-menu-toggle-bars {
	position: relative;
}

.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nova-menu-toggle-bars::before {
	top: -6px;
}

.nova-menu-toggle-bars::after {
	top: 6px;
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars {
	background: transparent;
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::before {
	transform: translateY(6px) rotate(45deg);
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* ----------------------------------------------------------------------------
   5. Buttons shared
---------------------------------------------------------------------------- */
.nova-pill {
	display: inline-flex;
	align-items: center;
	width: max-content;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	padding: 6px 11px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------------------
   6. Hero
---------------------------------------------------------------------------- */
.nova-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 60px;
	background:
		radial-gradient(circle at 12% 4%, #ffe0e2 0, transparent 40%),
		radial-gradient(circle at 88% 12%, #dfe9ff 0, transparent 40%),
		linear-gradient(180deg, #fdfbfe 0, var(--nova-paper) 100%);
}

.nova-hero::after {
	content: "";
	position: absolute;
	inset: auto -120px -240px auto;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(63, 122, 251, 0.08);
	pointer-events: none;
}

.nova-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
	gap: 34px;
	align-items: center;
}

.nova-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.nova-hero h1,
.nova-single-hero h1,
.nova-archive-hero h1,
.nova-page-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-hero p,
.nova-single-hero p,
.nova-archive-hero p {
	max-width: 690px;
	margin: 0 0 24px;
	color: var(--nova-muted);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.66;
}

.nova-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0;
}

.nova-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.nova-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid var(--nova-border);
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 8px 13px;
	font-size: 13px;
	font-weight: 700;
}

.nova-trust-row span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nova-accent);
}

/* Cards that share the elevated panel look */
.nova-hero-calc,
.nova-summary-card,
.nova-widget,
.nova-article-card,
.nova-category-card,
.nova-feature-card,
.nova-guide-card,
.nova-empty-card,
.nova-calc-shell {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
}

.nova-hero-calc {
	padding: 26px;
}

.nova-hero-calc h2 {
	margin: 10px 0 6px;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.04em;
}

.nova-hero-calc p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-mini-bmi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 16px 0;
}

.nova-mini-bmi-grid label {
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-mini-bmi-grid input,
.nova-search-form input,
.nova-directory-search input {
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-hero-calc .nova-btn {
	width: 100%;
}

.nova-mini-result {
	margin: 16px 0 12px;
	padding: 14px 16px;
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	line-height: 1.45;
}

.nova-mini-result strong {
	font-family: var(--nova-display);
}

.nova-mini-bar {
	height: 10px;
	border-radius: 999px;
	background: var(--nova-mist);
	overflow: hidden;
	margin-bottom: 16px;
}

.nova-mini-bar [data-bar-fill] {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--nova-accent);
	transition: width 0.5s ease, background 0.3s ease;
}

/* ----------------------------------------------------------------------------
   7. Sections and grids
---------------------------------------------------------------------------- */
.nova-section {
	padding: 68px 0;
}

.nova-section-tint {
	background: linear-gradient(180deg, var(--nova-mist-2) 0, var(--nova-paper) 100%);
	border-block: 1px solid var(--nova-border-soft);
}

.nova-section-head {
	max-width: 720px;
	margin-bottom: 30px;
}

.nova-section-head h2 {
	margin: 0 0 8px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-section-head p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 18px;
}

.nova-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-calc-card {
	display: flex;
}

.nova-calc-card-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 22px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-calc-card-link:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
	box-shadow: 0 26px 70px rgba(245, 72, 79, 0.18);
}

.nova-calc-card h3 {
	margin: 16px 0 8px;
	font-size: 23px;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: var(--nova-ink);
}

.nova-calc-card p {
	margin: 0 0 20px;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-card-action {
	margin-top: auto;
	color: var(--nova-primary);
	font-family: var(--nova-display);
	font-weight: 800;
	text-decoration: none;
}

.nova-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-category-card {
	display: block;
	text-decoration: none;
	padding: 24px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.nova-category-card:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
}

.nova-category-card > span {
	color: var(--nova-gold);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
}

.nova-category-card h3 {
	margin: 8px 0;
	font-size: 25px;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--nova-ink);
}

.nova-category-card p,
.nova-feature-card p,
.nova-guide-card p,
.nova-empty-card p {
	color: var(--nova-muted);
	margin: 0;
}

.nova-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-feature-card {
	padding: 26px;
}

.nova-feature-card > span {
	font-family: var(--nova-display);
	font-size: 13px;
	color: var(--nova-gold);
	font-weight: 800;
}

.nova-feature-card h3 {
	margin: 10px 0 8px;
	font-size: 27px;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.nova-home-faq-wrap {
	max-width: 860px;
}

/* ----------------------------------------------------------------------------
   8. Interior heroes and breadcrumb
---------------------------------------------------------------------------- */
.nova-single-hero,
.nova-archive-hero,
.nova-page-hero {
	padding: 54px 0;
	background:
		radial-gradient(circle at 16% 16%, #ffe6e8, transparent 42%),
		linear-gradient(180deg, #fff 0, var(--nova-paper) 100%);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-single-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 30px;
	align-items: end;
}

.nova-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--nova-muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nova-breadcrumb a {
	color: var(--nova-primary-deep);
	text-decoration: none;
}

.nova-breadcrumb a:hover {
	text-decoration: underline;
}

.nova-breadcrumb-sep {
	color: var(--nova-border);
}

.nova-breadcrumb-current {
	color: var(--nova-muted);
}

.nova-summary-card {
	padding: 24px;
}

.nova-summary-card h2 {
	font-size: 26px;
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 14px 0 8px;
}

.nova-summary-card p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 18px;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-post-meta strong {
	color: var(--nova-ink);
	font-weight: 700;
}

.nova-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nova-post-meta span::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--nova-accent);
}

.nova-post-meta .nova-meta-author::before {
	display: none;
}

/* ----------------------------------------------------------------------------
   9. Content layout and article typography
---------------------------------------------------------------------------- */
.nova-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 780px) 340px;
	gap: 28px;
	align-items: start;
	padding: 44px 0 72px;
}

.nova-page-wrap {
	padding: 44px 0 72px;
}

.nova-page-wrap .nova-article-card {
	max-width: 820px;
	margin-inline: auto;
}

.nova-article-card {
	padding: 34px;
}

.nova-article-card > :first-child {
	margin-top: 0;
}

.nova-article-card h2 {
	margin: 42px 0 13px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.045em;
	color: var(--nova-ink);
	scroll-margin-top: 100px;
}

.nova-article-card h3 {
	margin: 30px 0 12px;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--nova-primary-deep);
	scroll-margin-top: 100px;
}

.nova-article-card p,
.nova-article-card li {
	color: var(--nova-body);
}

.nova-article-card a {
	color: var(--nova-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.nova-article-card ul,
.nova-article-card ol {
	padding-left: 22px;
}

.nova-article-card li {
	margin: 8px 0;
}

.nova-article-card table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
}

.nova-article-card th,
.nova-article-card td {
	padding: 14px;
	border-bottom: 1px solid var(--nova-border);
	text-align: left;
}

.nova-article-card th {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
}

.nova-article-card blockquote {
	margin: 24px 0;
	padding: 6px 0 6px 20px;
	border-left: 4px solid var(--nova-accent);
	color: var(--nova-ink);
	font-size: 19px;
}

.nova-link-pages {
	margin-top: 24px;
	font-weight: 700;
}

/* Table of contents */
.nova-toc {
	margin: 0 0 28px;
	padding: 20px 22px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-toc-title {
	margin: 0 0 12px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary-deep);
}

.nova-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: novatoc;
}

.nova-toc-list li {
	margin: 7px 0;
}

.nova-toc-list a {
	color: var(--nova-body);
	text-decoration: none;
	border-left: 2px solid transparent;
	padding-left: 12px;
	display: inline-block;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nova-toc-list a:hover {
	color: var(--nova-primary);
}

.nova-toc-l3 {
	padding-left: 16px;
	font-size: 15px;
}

.nova-toc-list a.is-active {
	color: var(--nova-primary-deep);
	font-weight: 700;
	border-left-color: var(--nova-accent);
}

/* Key takeaways */
.nova-takeaway {
	margin: 26px 0;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist), #fff);
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
}

.nova-takeaway-title {
	margin: 0 0 10px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 18px;
	color: var(--nova-ink);
}

.nova-takeaway-body p {
	margin: 0 0 8px;
}

.nova-takeaway-body :last-child {
	margin-bottom: 0;
}

/* Callouts */
.nova-callout {
	margin: 24px 0;
	padding: 18px 20px;
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
	background: #fff;
}

.nova-callout-title {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-callout-body :last-child {
	margin-bottom: 0;
}

.nova-callout-info {
	border-left-color: var(--nova-accent);
	background: var(--nova-mist-2);
}

.nova-callout-tip {
	border-left-color: var(--nova-gold);
	background: #fff7ed;
}

.nova-callout-warning {
	border-left-color: #dc2626;
	background: #fef2f2;
}

/* Affiliate disclosure */
.nova-disclosure {
	margin: 20px 0;
	padding: 12px 16px;
	font-size: 13px;
	color: var(--nova-muted);
	background: var(--nova-mist-2);
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-sm);
}

/* References */
.nova-references {
	margin: 32px 0 0;
	padding: 24px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-references-title {
	margin: 0 0 12px;
	font-size: 20px;
	letter-spacing: -0.03em;
}

.nova-references-body ol,
.nova-references-body ul {
	margin: 0;
	padding-left: 20px;
}

.nova-references-body li {
	margin: 8px 0;
	font-size: 14px;
	color: var(--nova-muted);
}

/* Ad slots */
.nova-ad {
	margin: 26px 0;
	padding: 14px;
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist-2);
	text-align: center;
}

.nova-ad-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-inline-disclaimer {
	margin: 18px 0;
	font-size: 13px;
	color: var(--nova-muted);
	font-style: italic;
}

/* Author and reviewer box */
.nova-author-box {
	margin: 36px 0 0;
	padding: 24px;
	background: linear-gradient(135deg, #fff, var(--nova-mist-2));
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-author-main {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.nova-author-avatar {
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-author-eyebrow {
	margin: 0 0 2px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary);
}

.nova-author-name {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-size: 20px;
	font-weight: 800;
}

.nova-author-name a {
	color: var(--nova-ink);
	text-decoration: none;
}

.nova-author-bio {
	margin: 0;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-author-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--nova-border);
	color: var(--nova-ink);
	font-size: 14px;
}

.nova-reviewer-badge {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--nova-accent);
	position: relative;
}

.nova-reviewer-badge::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 11px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.nova-reviewer-date {
	color: var(--nova-muted);
}

/* Related articles */
.nova-related {
	margin: 40px 0 0;
}

.nova-related-title {
	margin: 0 0 18px;
	font-size: 26px;
	letter-spacing: -0.04em;
}

.nova-related .nova-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ----------------------------------------------------------------------------
   10. FAQ
---------------------------------------------------------------------------- */
.nova-faq-heading {
	margin: 0 0 16px;
	font-size: 28px;
	letter-spacing: -0.04em;
}

.nova-faq-list {
	display: grid;
	gap: 12px;
	margin: 24px 0;
}

.nova-faq-item {
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: #fff;
	overflow: hidden;
}

.nova-faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-faq-item summary::-webkit-details-marker {
	display: none;
}

.nova-faq-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.nova-faq-icon::before,
.nova-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--nova-primary);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nova-faq-icon::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}

.nova-faq-icon::after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}

.nova-faq-item[open] .nova-faq-icon::after {
	transform: scaleY(0);
	opacity: 0;
}

.nova-faq-answer {
	padding: 0 20px 18px;
	color: var(--nova-muted);
}

.nova-faq-answer p {
	margin: 0 0 10px;
}

.nova-faq-answer :last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   11. Article shell
---------------------------------------------------------------------------- */
.nova-calc-shell {
	overflow: hidden;
	margin: 30px 0;
	scroll-margin-top: 100px;
}

.nova-calc-shell-head {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist-2), #fff);
	border-bottom: 1px solid var(--nova-border);
}

.nova-calc-shell-head h2 {
	margin: 10px 0 0;
	font-size: 30px;
	letter-spacing: -0.04em;
}

.nova-calc-shell-note {
	max-width: 360px;
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-calc-shell-body {
	padding: 24px;
}

/* ----------------------------------------------------------------------------
   12. Sidebar widgets
---------------------------------------------------------------------------- */
.nova-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 100px;
}

.nova-widget {
	padding: 20px;
}

.nova-widget-title {
	margin: 0 0 14px;
	font-size: 19px;
	letter-spacing: -0.03em;
}

.nova-search-form {
	display: flex;
	gap: 8px;
}

.nova-search-form input {
	margin: 0;
	min-width: 0;
	flex: 1;
}

.nova-search-form button {
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
}

.nova-search-form button:hover {
	background: var(--nova-primary-deep);
}

.nova-mini-list {
	display: grid;
	gap: 10px;
}

.nova-mini-list a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: var(--nova-radius-sm);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	transition: background 0.15s ease;
}

.nova-mini-list a:hover {
	background: #ffe4e6;
}

.nova-mini-list small {
	color: var(--nova-primary);
	font-weight: 800;
}

.nova-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nova-chip-list a,
.nova-chip-list button {
	border: 1px solid var(--nova-border);
	background: #fff;
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 9px 13px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nova-chip-list a:hover,
.nova-chip-list button:hover {
	border-color: var(--nova-accent);
}

.nova-chip-list button.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-trust-widget {
	background: linear-gradient(135deg, #fff 0, var(--nova-mist-2) 100%);
}

.nova-trust-widget h3 {
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0 0 8px;
}

.nova-trust-widget p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   13. Directory and archive
---------------------------------------------------------------------------- */
.nova-archive-hero-inner {
	max-width: 820px;
}

.nova-all-hero .nova-archive-hero-inner {
	max-width: 900px;
}

.nova-directory-search {
	margin-top: 24px;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	padding: 16px;
	box-shadow: var(--nova-shadow);
}

.nova-directory-search label {
	display: block;
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
	margin-bottom: 7px;
}

.nova-directory-search input {
	margin: 0;
	font-size: 18px;
	padding: 15px;
}

.nova-filter-chips {
	margin-bottom: 24px;
}

.nova-guide-card,
.nova-empty-card {
	padding: 28px;
}

.nova-guide-card {
	margin-top: 28px;
}

.nova-guide-card h2,
.nova-empty-card h2 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

/* ----------------------------------------------------------------------------
   14. Comments
---------------------------------------------------------------------------- */
.nova-comments {
	margin: 40px 0 0;
	padding-top: 32px;
	border-top: 1px solid var(--nova-border);
}

.nova-comments-title {
	margin: 0 0 20px;
	font-size: 24px;
	letter-spacing: -0.04em;
}

.nova-comment-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.nova-comment-list .children {
	list-style: none;
	margin: 0 0 0 28px;
	padding: 0;
}

.nova-comment-list li article {
	padding: 16px 0;
	border-bottom: 1px solid var(--nova-border);
}

.nova-comment-list .comment-author {
	font-family: var(--nova-display);
	font-weight: 700;
	color: var(--nova-ink);
}

.nova-comment-list .comment-meta {
	font-size: 13px;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-comment-list .comment-meta a {
	color: var(--nova-muted);
	text-decoration: none;
}

.nova-comment-respond {
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	padding: 24px;
}

.nova-comment-respond label {
	display: block;
	font-weight: 700;
	margin: 12px 0 6px;
	font-size: 14px;
}

.nova-comment-respond input[type="text"],
.nova-comment-respond input[type="email"],
.nova-comment-respond input[type="url"],
.nova-comment-respond textarea {
	width: 100%;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-comment-respond .form-submit {
	margin-top: 16px;
}

.nova-comment-respond .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nova-primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	min-height: 46px;
	padding: 11px 22px;
}

.nova-comment-respond .submit:hover {
	background: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   15. Pagination
---------------------------------------------------------------------------- */
.nova-pagination {
	margin-top: 32px;
}

.nova-pagination .nav-links {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.nova-pagination a,
.nova-pagination span {
	padding: 9px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--nova-border);
	text-decoration: none;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-pagination .current {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

/* ----------------------------------------------------------------------------
   16. Footer
---------------------------------------------------------------------------- */
.nova-site-footer {
	background: var(--nova-footer-bg);
	color: #cbd5e1;
	margin-top: 0;
	padding: 56px 0 24px;
}

.nova-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 34px;
}

.nova-footer-about .nova-brand,
.nova-footer-about .nova-brand-text strong {
	color: #fff;
}

.nova-footer-about .nova-brand-text small {
	color: #94a3b8;
}

.nova-footer-about p {
	max-width: 520px;
	color: #94a3b8;
	margin: 16px 0 0;
}

.nova-footer-col h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 18px;
}

.nova-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-footer-menu li {
	margin: 8px 0;
}

.nova-footer-menu a {
	color: #cbd5e1;
	text-decoration: none;
}

.nova-footer-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.nova-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 36px;
	padding-top: 18px;
	color: #94a3b8;
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   17. Footer logo, category nav, and core widgets
---------------------------------------------------------------------------- */
.nova-footer-brand-logo {
	display: inline-flex;
	align-items: center;
}

.nova-footer-logo-img,
.nova-footer-brand img {
	max-width: var(--nova-footer-logo-max, 170px);
	height: auto;
	width: auto;
}

/* Category cross-navigation */
.nova-cat-nav-bar {
	border-bottom: 1px solid var(--nova-border-soft);
	background: #fff;
	padding: 14px 0;
}

.nova-cat-nav {
	flex-wrap: wrap;
	gap: 10px;
}

.nova-cat-nav a {
	white-space: nowrap;
	padding: 11px 17px;
	font-size: 14px;
}

.nova-chip-list a.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-cat-search {
	max-width: 520px;
}

.nova-cat-cta {
	margin-top: 28px;
	text-align: center;
}

/* Styling for core and block widgets, so any default widgets still look native */
.nova-widget .wp-block-search__inside-wrapper,
.nova-footer-widget .wp-block-search__inside-wrapper {
	display: flex;
	gap: 8px;
}

.nova-widget .wp-block-search__input,
.nova-footer-widget .wp-block-search__input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-widget .wp-block-search__button,
.nova-footer-widget .wp-block-search__button {
	margin: 0;
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
	cursor: pointer;
}

.nova-widget ul,
.nova-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-widget li,
.nova-footer-widget li {
	margin: 8px 0;
}

.nova-widget a,
.nova-footer-widget a {
	text-decoration: none;
	color: inherit;
}

.nova-widget .wp-block-categories a,
.nova-widget .wp-block-latest-posts a,
.nova-widget .wp-block-archives a,
.nova-widget .wp-block-page-list a {
	color: var(--nova-primary-deep);
	font-weight: 700;
}

.nova-widget .wp-block-categories a:hover,
.nova-widget .wp-block-latest-posts a:hover,
.nova-widget .wp-block-archives a:hover {
	text-decoration: underline;
}

.nova-widget .wp-block-tag-cloud a,
.nova-footer-widget .wp-block-tag-cloud a {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 6px 12px;
	border: 1px solid var(--nova-border);
	border-radius: 999px;
	font-size: 13px !important;
	background: #fff;
	color: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   18. WordPress core helpers
---------------------------------------------------------------------------- */
.wp-block-image img {
	border-radius: var(--nova-radius-md);
}

.alignwide {
	max-width: 1040px;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.nova-404 {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}

/* ----------------------------------------------------------------------------
   19. Responsive
---------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.nova-header-inner {
		min-height: 70px;
	}

	.nova-menu-toggle {
		display: inline-flex;
	}

	.nova-primary-nav {
		display: none;
		position: absolute;
		left: 18px;
		right: 18px;
		top: 78px;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border: 1px solid var(--nova-border);
		border-radius: var(--nova-radius);
		padding: 16px;
		box-shadow: var(--nova-shadow);
	}

	.nova-primary-nav.is-open {
		display: flex;
	}

	.nova-menu {
		display: grid;
		gap: 4px;
	}

	.nova-nav-cta {
		width: 100%;
	}

	.nova-hero-grid,
	.nova-single-hero-grid,
	.nova-content-layout {
		grid-template-columns: 1fr;
	}

	.nova-sidebar {
		position: static;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.nova-container {
		width: min(100% - 28px, 1180px);
	}

	.nova-hero,
	.nova-single-hero,
	.nova-archive-hero,
	.nova-page-hero {
		padding: 42px 0;
	}

	.nova-hero h1,
	.nova-single-hero h1,
	.nova-archive-hero h1,
	.nova-page-hero h1 {
		font-size: 40px;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-mini-bmi-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: 1fr;
	}

	.nova-article-card,
	.nova-calc-shell-body {
		padding: 22px;
	}

	.nova-calc-shell-head {
		flex-direction: column;
		padding: 20px;
	}

	.nova-footer-grid {
		grid-template-columns: 1fr;
	}

	.nova-search-form {
		flex-direction: column;
	}

	.nova-search-form button {
		min-height: 46px;
		padding: 11px;
	}

	.nova-article-card table {
		display: block;
		overflow-x: auto;
	}

	.nova-brand-text small {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ============================================================================
   20. LayerSignal: brand, ratings, covers, review layout, homepage sections
   ==========================================================================*/

/* Brand mark uses the coral to blue identity. */
.nova-brand-mark {
	background: var(--ls-brand-gradient);
}

/* ---- Star meter ---------------------------------------------------------- */
.ls-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	line-height: 1;
	vertical-align: middle;
}
.ls-star {
	display: block;
	width: 18px;
	height: 18px;
}
.ls-stars-sm .ls-star { width: 14px; height: 14px; }
.ls-stars-lg .ls-star { width: 24px; height: 24px; }
.ls-stars-num {
	margin-left: 7px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 14px;
	color: var(--nova-ink);
}

/* ---- Score gauge --------------------------------------------------------- */
.ls-gauge {
	position: relative;
	display: grid;
	place-items: center;
	flex: none;
}
.ls-gauge svg { width: 100%; height: 100%; display: block; }
.ls-gauge-inner {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	align-content: center;
	line-height: 1;
}
.ls-gauge-num {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 30px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}
.ls-gauge-out {
	font-size: 11px;
	font-weight: 700;
	color: var(--nova-muted);
	margin-top: 2px;
}

/* ---- Covers (featured image or branded fallback) ------------------------- */
.ls-cover,
.ls-cover-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ls-cover-fallback {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: #fff;
}
.ls-cover-initial {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: clamp(48px, 9vw, 92px);
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
	z-index: 1;
}
.ls-cover-cat {
	position: absolute;
	left: 14px;
	bottom: 12px;
	z-index: 1;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #fff;
	background: rgba(0, 0, 0, 0.22);
	padding: 5px 10px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.ls-cover-rings::before,
.ls-cover-rings::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.18);
}
.ls-cover-rings::before { width: 220px; height: 220px; right: -70px; top: -80px; }
.ls-cover-rings::after { width: 140px; height: 140px; left: -50px; bottom: -60px; }

/* ---- Review / article card ---------------------------------------------- */
.ls-card { display: flex; }
.ls-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	text-decoration: none;
	background: var(--nova-white);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ls-card-link:hover {
	transform: translateY(-5px);
	border-color: var(--nova-accent);
	box-shadow: 0 30px 74px rgba(245, 72, 79, 0.16);
}
.ls-card-cover {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--nova-mist);
}
.ls-card-pill {
	position: absolute;
	left: 12px;
	top: 12px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.01em;
	padding: 6px 11px;
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(20, 24, 36, 0.12);
}
.ls-card-score {
	position: absolute;
	right: 12px;
	top: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--nova-ink);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 14px;
	padding: 6px 11px;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(20, 24, 36, 0.25);
}
.ls-card-score-star { color: var(--ls-star); font-size: 13px; }
.ls-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 22px;
}
.ls-card-body h3 {
	margin: 0 0 8px;
	font-size: 21px;
	line-height: 1.14;
	letter-spacing: -0.035em;
	color: var(--nova-ink);
}
.ls-card-stars { margin-bottom: 8px; }
.ls-card-body p {
	margin: 0 0 18px;
	color: var(--nova-muted);
	font-size: 14.5px;
	line-height: 1.55;
}
.ls-card-body .nova-card-action { margin-top: auto; }

/* ---- Homepage hero search ------------------------------------------------ */
.ls-hero-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 560px;
	margin: 26px 0 22px;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: 999px;
	box-shadow: var(--nova-shadow);
	padding: 6px 6px 6px 18px;
}
.ls-hero-search-icon {
	display: inline-flex;
	color: var(--nova-muted);
	margin-right: 10px;
}
.ls-hero-search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 12px 8px;
	font-size: 16px;
	color: var(--nova-text);
}
.ls-hero-search input:focus { outline: none; }
.ls-hero-search button {
	flex: none;
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 999px;
	box-shadow: var(--nova-shadow-sm);
	transition: background 0.16s ease, transform 0.16s ease;
}
.ls-hero-search button:hover { background: var(--nova-primary-deep); transform: translateY(-1px); }

/* ---- Editor's choice feature card --------------------------------------- */
.ls-hero-feature { align-self: stretch; }
.ls-feature-card {
	position: relative;
	display: block;
	text-decoration: none;
	background: var(--nova-white);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--ls-shadow-lg);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ls-feature-card:hover { transform: translateY(-4px); }
.ls-feature-badge {
	position: absolute;
	left: 16px;
	top: 16px;
	z-index: 2;
	background: var(--ls-brand-gradient);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.02em;
	padding: 7px 13px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(245, 72, 79, 0.32);
}
.ls-feature-cover {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--nova-mist);
}
.ls-feature-score {
	position: absolute;
	right: 16px;
	bottom: -22px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #fff;
	color: var(--nova-ink);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 21px;
	line-height: 1;
	box-shadow: 0 14px 30px rgba(20, 24, 36, 0.22);
	border: 3px solid #fff;
}
.ls-feature-score small { font-size: 11px; color: var(--nova-muted); font-weight: 700; }
.ls-feature-body { padding: 22px 24px 24px; }
.ls-feature-body h2 {
	margin: 0 0 8px;
	font-size: 27px;
	line-height: 1.08;
	letter-spacing: -0.04em;
}
.ls-feature-stars { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ls-feature-word { font-family: var(--nova-display); font-weight: 800; font-size: 13px; color: var(--nova-gold); }
.ls-feature-body p { margin: 0 0 16px; color: var(--nova-muted); font-size: 15px; }

/* Fallback latest list keeps the elevated-card look. */
.ls-hero-latest {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	padding: 26px;
}
.ls-hero-latest h2 { margin: 10px 0 16px; font-size: 26px; letter-spacing: -0.04em; }

/* ---- Stats band ---------------------------------------------------------- */
.ls-stats {
	background: var(--ls-brand-gradient-soft);
	border-block: 1px solid var(--nova-border-soft);
	padding: 34px 0;
}
.ls-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.ls-stat { display: flex; flex-direction: column; gap: 6px; }
.ls-stat-num {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: clamp(34px, 4.4vw, 48px);
	line-height: 1;
	letter-spacing: -0.04em;
	background: var(--ls-brand-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--nova-primary);
}
.ls-stat-label { font-size: 14px; font-weight: 600; color: var(--nova-body); }

/* ---- Category cards ------------------------------------------------------ */
.ls-category-card { position: relative; padding-top: 26px; }
.ls-cat-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 24px;
	margin-bottom: 16px;
	box-shadow: 0 12px 26px rgba(20, 24, 36, 0.14);
}
.ls-cat-count { color: var(--nova-gold); font-family: var(--nova-display); font-weight: 800; font-size: 13px; }
.ls-cat-more {
	display: inline-block;
	margin-top: 16px;
	color: var(--nova-primary);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 14px;
}

/* ---- Comparison cards ---------------------------------------------------- */
.ls-vs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.ls-vs-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-decoration: none;
	padding: 26px;
	border-radius: var(--nova-radius);
	border: 1px solid var(--nova-border);
	background:
		radial-gradient(circle at 100% 0, rgba(63, 122, 251, 0.08), transparent 55%),
		radial-gradient(circle at 0 100%, rgba(245, 72, 79, 0.08), transparent 55%),
		var(--nova-white);
	box-shadow: var(--nova-shadow);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.ls-vs-card:hover { transform: translateY(-4px); border-color: var(--ls-blue); }
.ls-vs-tag {
	align-self: flex-start;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 12px;
	color: var(--ls-blue-deep);
	background: #eaf0ff;
	padding: 6px 12px;
	border-radius: 999px;
}
.ls-vs-card h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.16;
	letter-spacing: -0.035em;
	color: var(--nova-ink);
}

/* ---- Method / step cards ------------------------------------------------- */
.ls-method-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.ls-method-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ls-method-card {
	padding: 26px 24px;
	border-radius: var(--nova-radius);
	border: 1px solid var(--nova-border);
	background: var(--nova-white);
	box-shadow: var(--nova-shadow);
}
.ls-method-num {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 17px;
	margin-bottom: 14px;
}
.ls-method-card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -0.03em; line-height: 1.1; }
.ls-method-card p { margin: 0; color: var(--nova-muted); font-size: 14.5px; line-height: 1.55; }

/* ---- Closing CTA band ---------------------------------------------------- */
.ls-cta-band {
	background:
		radial-gradient(circle at 12% 20%, rgba(245, 72, 79, 0.22), transparent 45%),
		radial-gradient(circle at 88% 80%, rgba(63, 122, 251, 0.24), transparent 45%),
		var(--nova-ink);
	color: #fff;
	padding: 60px 0;
}
.ls-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
}
.ls-cta-inner h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(28px, 3.4vw, 40px);
	letter-spacing: -0.04em;
	line-height: 1.05;
}
.ls-cta-inner p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 18px; max-width: 560px; }
.ls-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.nova-btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}
.nova-btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-1px); }
.ls-arrow { transition: transform 0.16s ease; }
.nova-btn:hover .ls-arrow { transform: translateX(3px); }

/* ---- Single review: hero ------------------------------------------------- */
.ls-single-dek {
	max-width: 640px;
	font-size: clamp(18px, 2vw, 21px);
	color: var(--nova-muted);
	line-height: 1.6;
	margin: 0 0 20px;
}
.ls-hero-rating {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin: 6px 0 22px;
}
.ls-hero-rating-num {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 26px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}
.ls-hero-rating-num small { font-size: 15px; color: var(--nova-muted); font-weight: 700; }
.ls-hero-rating-word {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
	color: #fff;
	background: var(--nova-gold);
	padding: 6px 12px;
	border-radius: 999px;
}
.ls-hero-visual { align-self: stretch; }
.ls-hero-cover {
	aspect-ratio: 16 / 10;
	border-radius: var(--nova-radius);
	overflow: hidden;
	border: 1px solid var(--nova-border);
	box-shadow: var(--ls-shadow-lg);
	background: var(--nova-mist);
	min-height: 240px;
}

/* ---- Single review: summary panel --------------------------------------- */
.ls-review-top { margin-top: 34px; display: grid; gap: 20px; }
.ls-review-panel {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 0;
	background: var(--nova-white);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	overflow: hidden;
}
.ls-review-panel-main { padding: 30px 32px; }
.ls-review-panel-side {
	padding: 28px 30px;
	background: linear-gradient(180deg, var(--nova-mist-2) 0, #fff 100%);
	border-left: 1px solid var(--nova-border);
	display: grid;
	gap: 22px;
	align-content: start;
}
.ls-review-scorebox { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.ls-review-scoremeta { display: flex; flex-direction: column; gap: 7px; }
.ls-review-word {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}
.ls-review-outof { font-size: 12px; font-weight: 700; color: var(--nova-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.ls-review-verdict {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
	color: var(--nova-text);
	margin: 0 0 22px;
	letter-spacing: -0.01em;
}
.ls-review-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.ls-facts-title {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--nova-muted);
	margin: 0 0 12px;
}
.ls-facts dl { margin: 0; }
.ls-fact-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--nova-border);
}
.ls-fact-row:last-child { border-bottom: 0; }
.ls-fact-row dt { color: var(--nova-muted); font-size: 14px; font-weight: 600; flex: none; }
.ls-fact-row dd { margin: 0; text-align: right; font-weight: 700; color: var(--nova-ink); font-size: 14px; }

.ls-bar-row {
	display: grid;
	grid-template-columns: 1fr 90px auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.ls-bar-row:last-child { margin-bottom: 0; }
.ls-bar-label { font-size: 14px; font-weight: 600; color: var(--nova-body); }
.ls-bar-track { height: 8px; border-radius: 999px; background: var(--ls-star-empty); overflow: hidden; }
.ls-bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, #f7a81b, #f5760b); }
.ls-bar-num { font-family: var(--nova-display); font-weight: 800; font-size: 14px; color: var(--nova-ink); min-width: 24px; text-align: right; }

/* ---- Pros and cons ------------------------------------------------------- */
.ls-proscons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.ls-pros, .ls-cons {
	padding: 24px 26px;
	border-radius: var(--nova-radius);
	border: 1px solid var(--nova-border);
	background: var(--nova-white);
	box-shadow: var(--nova-shadow);
}
.ls-pros { border-top: 4px solid var(--ls-good); }
.ls-cons { border-top: 4px solid var(--ls-bad); }
.ls-proscons h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-size: 19px;
	letter-spacing: -0.02em;
}
.ls-pc-icon {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-weight: 800;
	font-size: 16px;
	flex: none;
}
.ls-pc-good { background: var(--ls-good-soft); color: var(--ls-good); }
.ls-pc-bad { background: var(--ls-bad-soft); color: var(--ls-bad); }
.ls-proscons ul { list-style: none; margin: 0; padding: 0; }
.ls-proscons li {
	position: relative;
	padding: 8px 0 8px 28px;
	color: var(--nova-body);
	font-size: 15px;
	line-height: 1.5;
	border-bottom: 1px solid var(--nova-border-soft);
}
.ls-proscons li:last-child { border-bottom: 0; }
.ls-proscons li::before {
	position: absolute;
	left: 0;
	top: 8px;
	font-weight: 800;
}
.ls-pros li::before { content: "\2713"; color: var(--ls-good); }
.ls-cons li::before { content: "\2013"; color: var(--ls-bad); }

/* ---- Specifications table ------------------------------------------------ */
.ls-specs { margin: 40px 0; }
.ls-specs-title { font-size: 26px; letter-spacing: -0.03em; margin: 0 0 16px; }
.ls-specs table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
}
.ls-specs th, .ls-specs td {
	text-align: left;
	padding: 14px 18px;
	font-size: 15px;
	vertical-align: top;
}
.ls-specs th {
	width: 38%;
	background: var(--nova-mist-2);
	color: var(--nova-ink);
	font-family: var(--nova-display);
	font-weight: 700;
}
.ls-specs td { color: var(--nova-body); }
.ls-specs tr { border-top: 1px solid var(--nova-border); }
.ls-specs tr:first-child { border-top: 0; }

/* ---- Bottom line box ----------------------------------------------------- */
.ls-bottomline {
	margin: 40px 0 8px;
	padding: 30px 32px;
	border-radius: var(--nova-radius);
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-primary);
	background:
		radial-gradient(circle at 100% 0, rgba(245, 72, 79, 0.06), transparent 50%),
		var(--nova-white);
	box-shadow: var(--nova-shadow);
}
.ls-bottomline-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.ls-bottomline-score { display: flex; align-items: center; gap: 10px; flex: none; }
.ls-bottomline-num {
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 40px;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--nova-primary);
}
.ls-bottomline-out { font-size: 15px; color: var(--nova-muted); font-weight: 700; align-self: flex-end; margin-bottom: 4px; }
.ls-bottomline-eyebrow {
	margin: 0 0 2px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-muted);
}
.ls-bottomline-head h2 { margin: 0; font-size: 26px; letter-spacing: -0.03em; line-height: 1.05; }
.ls-bottomline-body { margin: 0 0 20px; font-size: 16.5px; line-height: 1.65; color: var(--nova-body); }

/* ---- How we test: scale + criteria -------------------------------------- */
.ls-scale-list {
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	overflow: hidden;
	box-shadow: var(--nova-shadow);
	background: var(--nova-white);
}
.ls-scale-row {
	display: grid;
	grid-template-columns: 150px 150px 1fr;
	align-items: center;
	gap: 18px;
	padding: 18px 24px;
	border-top: 1px solid var(--nova-border);
}
.ls-scale-row:first-child { border-top: 0; }
.ls-scale-word { font-family: var(--nova-display); font-weight: 800; font-size: 17px; color: var(--nova-ink); }
.ls-scale-desc { color: var(--nova-muted); font-size: 15px; }
.ls-criteria-grid .nova-feature-card > span { color: var(--ls-blue-deep); }

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
	.ls-review-panel { grid-template-columns: 1fr; }
	.ls-review-panel-side { border-left: 0; border-top: 1px solid var(--nova-border); }
	.ls-method-grid, .ls-method-grid-5 { grid-template-columns: repeat(2, 1fr); }
	.ls-vs-grid { grid-template-columns: repeat(2, 1fr); }
	.ls-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
	.ls-hero-cover { min-height: 200px; }
}

@media (max-width: 680px) {
	.ls-proscons { grid-template-columns: 1fr; }
	.ls-vs-grid { grid-template-columns: 1fr; }
	.ls-method-grid, .ls-method-grid-5 { grid-template-columns: 1fr; }
	.ls-scale-row { grid-template-columns: 1fr; gap: 8px; text-align: left; }
	.ls-hero-search { flex-wrap: nowrap; }
	.ls-hero-search button { padding: 12px 16px; }
	.ls-cta-inner { flex-direction: column; align-items: flex-start; }
	.ls-review-scorebox { flex-direction: row; }
	.ls-bottomline-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Center the single-review hero so the cover balances the copy, and let the
   hero cover and homepage feature card fill their column height cleanly. */
.nova-single-hero-grid { align-items: center; }
.ls-hero-visual, .ls-hero-feature { display: flex; }
.ls-hero-visual > *, .ls-hero-feature > * { width: 100%; }
