@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');
/*!
 * Nowtimes — main stylesheet
 * Hand written. No framework, no preprocessor, no web fonts.
 * Order: tokens → reset → primitives → header → hero → sections
 *        → cards → directory → single → forms → footer → utilities.
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	--nt-accent: #ff4d2e;
	--nt-accent-ink: #ffffff;
	--nt-accent-soft: rgba(255, 77, 46, 0.1);
	--nt-mint: #0f9d76;
	--nt-amber: #b8791b;

	--nt-bg: #ffffff;
	--nt-bg-2: #f6f6f4;
	--nt-bg-3: #efefec;
	--nt-ink: #0b0f14;
	--nt-ink-2: #3d4650;
	--nt-ink-3: #6b7681;
	--nt-line: #e2e2dd;
	--nt-line-2: #cfcfc8;
	--nt-invert-bg: #0b0f14;
	--nt-invert-ink: #f4f4f1;
	--nt-invert-line: rgba(255, 255, 255, 0.14);
	--nt-shade: rgba(11, 15, 20, 0.06);

	--nt-r-xs: 4px;
	--nt-r-sm: 6px;
	--nt-r: 10px;
	--nt-r-lg: 14px;
	--nt-r-pill: 999px;

	--nt-wrap: 1240px;
	--nt-gut: clamp(16px, 4vw, 40px);
	--nt-gap: clamp(14px, 1.6vw, 22px);
	--nt-sec-y: clamp(48px, 6vw, 88px);

	--nt-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	--nt-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

	--nt-t: 160ms cubic-bezier(0.2, 0.7, 0.3, 1);
	color-scheme: light;
}

[data-theme="dark"] {
	--nt-accent-soft: rgba(255, 77, 46, 0.16);
	--nt-mint: #35d6a4;
	--nt-amber: #e0a53c;

	--nt-bg: #0b0f14;
	--nt-bg-2: #10161d;
	--nt-bg-3: #161e26;
	--nt-ink: #f1f3f5;
	--nt-ink-2: #b6c0ca;
	--nt-ink-3: #8593a0;
	--nt-line: #1e2831;
	--nt-line-2: #2b3742;
	--nt-invert-bg: #f4f4f1;
	--nt-invert-ink: #0b0f14;
	--nt-invert-line: rgba(11, 15, 20, 0.14);
	--nt-shade: rgba(0, 0, 0, 0.4);
	color-scheme: dark;
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--nt-bg);
	color: var(--nt-ink);
	font-family: var(--nt-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-wrap: break-word;
}

body.nt-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.022em;
	color: var(--nt-ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--nt-t);
}

a:hover { color: var(--nt-accent); }

img, svg, video, iframe {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol { margin: 0 0 1em; padding-left: 1.15em; }

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

button { cursor: pointer; }

hr {
	border: 0;
	border-top: 1px solid var(--nt-line);
	margin: 2em 0;
}

table { border-collapse: collapse; width: 100%; }

:focus-visible {
	outline: 2px solid var(--nt-accent);
	outline-offset: 2px;
	border-radius: var(--nt-r-xs);
}

::selection {
	background: var(--nt-accent);
	color: var(--nt-accent-ink);
}

::placeholder { color: var(--nt-ink-3); opacity: 1; }

.nt-i { flex: 0 0 auto; }

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

.nt-skip {
	position: absolute;
	top: -100px;
	left: 12px;
	z-index: 999;
	padding: 10px 16px;
	background: var(--nt-accent);
	color: var(--nt-accent-ink);
	border-radius: 0 0 var(--nt-r) var(--nt-r);
	font-weight: 600;
}

.nt-skip:focus { top: 0; color: var(--nt-accent-ink); }

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.nt-wrap {
	width: 100%;
	max-width: var(--nt-wrap);
	margin-inline: auto;
	padding-inline: var(--nt-gut);
}

.nt-narrow { max-width: 780px; }

.nt-main { display: block; min-height: 50vh; }

.nt-sec { padding-block: var(--nt-sec-y); }
.nt-sec-alt { background: var(--nt-bg-2); }

.nt-sec-dark {
	background: var(--nt-invert-bg);
	color: var(--nt-invert-ink);
}

.nt-sec-dark h1,
.nt-sec-dark h2,
.nt-sec-dark h3 { color: var(--nt-invert-ink); }

.nt-sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(20px, 3vw, 34px);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--nt-line);
	flex-wrap: wrap;
}

.nt-sec-dark .nt-sec-head { border-bottom-color: var(--nt-invert-line); }

.nt-sec-eyebrow,
.nt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-sec-dark .nt-sec-eyebrow { color: var(--nt-accent); }

.nt-sec-title {
	margin: 0;
	font-size: clamp(24px, 3.2vw, 36px);
}

.nt-sec-title-sm {
	font-size: clamp(19px, 2.2vw, 23px);
	margin: 2.2em 0 1em;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--nt-line);
}

.nt-sec-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 650;
	color: var(--nt-ink-2);
	white-space: nowrap;
}

.nt-sec-link:hover { color: var(--nt-accent); }
.nt-sec-link .nt-i { transition: transform var(--nt-t); }
.nt-sec-link:hover .nt-i { transform: translateX(3px); }
.nt-sec-dark .nt-sec-link { color: var(--nt-invert-ink); }

.nt-grid {
	display: grid;
	gap: var(--nt-gap);
}

.nt-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nt-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.nt-list-layout { padding-block: clamp(28px, 4vw, 48px) var(--nt-sec-y); }

.nt-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nt-accent);
	box-shadow: 0 0 0 0 var(--nt-accent-soft);
	animation: nt-pulse 2.4s ease-out infinite;
}

@keyframes nt-pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.5); }
	70% { box-shadow: 0 0 0 8px rgba(255, 77, 46, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 77, 46, 0); }
}

/* ==========================================================================
   4. Buttons, chips, scores, ratings
   ========================================================================== */

.nt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: var(--nt-r-sm);
	background: transparent;
	font-size: 14.5px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: -0.01em;
	white-space: nowrap;
	transition: background var(--nt-t), color var(--nt-t), border-color var(--nt-t), transform var(--nt-t);
}

.nt-btn:active { transform: translateY(1px); }

.nt-btn-accent {
	background: var(--nt-accent);
	border-color: var(--nt-accent);
	color: var(--nt-accent-ink);
}

.nt-btn-accent:hover {
	background: #e63d20;
	border-color: #e63d20;
	color: var(--nt-accent-ink);
}

.nt-btn-solid {
	background: var(--nt-ink);
	border-color: var(--nt-ink);
	color: var(--nt-bg);
}

.nt-btn-solid:hover {
	background: var(--nt-accent);
	border-color: var(--nt-accent);
	color: var(--nt-accent-ink);
}

.nt-btn-ghost {
	border-color: var(--nt-line-2);
	color: var(--nt-ink);
}

.nt-btn-ghost:hover {
	border-color: var(--nt-accent);
	color: var(--nt-accent);
	background: var(--nt-accent-soft);
}

.nt-sec-dark .nt-btn-ghost { border-color: var(--nt-invert-line); color: var(--nt-invert-ink); }

.nt-btn-sm { padding: 6px 12px; font-size: 13px; }
.nt-btn-lg { padding: 13px 24px; font-size: 16px; }
.nt-btn-block { display: flex; width: 100%; }

.nt-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-sm);
	background: transparent;
	color: var(--nt-ink);
	transition: border-color var(--nt-t), color var(--nt-t), background var(--nt-t);
}

.nt-icon-btn:hover {
	border-color: var(--nt-accent);
	color: var(--nt-accent);
}

.nt-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-pill);
	background: var(--nt-bg);
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--nt-ink-2);
	white-space: nowrap;
}

a.nt-chip:hover {
	border-color: var(--nt-accent);
	color: var(--nt-accent);
	background: var(--nt-accent-soft);
}

.nt-chip-accent {
	border-color: transparent;
	background: var(--nt-accent-soft);
	color: var(--nt-accent);
}

.nt-chip-quiet {
	background: var(--nt-bg-2);
	color: var(--nt-ink-3);
	font-weight: 550;
}

.nt-chiplist {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}

.nt-score {
	display: inline-flex;
	align-items: baseline;
	gap: 1px;
	padding: 3px 9px;
	border-radius: var(--nt-r-sm);
	background: var(--nt-bg-2);
	border: 1px solid var(--nt-line);
	font-variant-numeric: tabular-nums;
	line-height: 1.3;
}

.nt-score b { font-size: 14.5px; font-weight: 750; }
.nt-score i { font-size: 11px; font-style: normal; color: var(--nt-ink-3); }
.nt-score.is-high { color: var(--nt-mint); border-color: color-mix(in srgb, var(--nt-mint) 35%, transparent); background: color-mix(in srgb, var(--nt-mint) 10%, transparent); }
.nt-score.is-mid { color: var(--nt-amber); border-color: color-mix(in srgb, var(--nt-amber) 35%, transparent); background: color-mix(in srgb, var(--nt-amber) 10%, transparent); }
.nt-score.is-low { color: var(--nt-ink-3); }

.nt-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.nt-stars {
	position: relative;
	display: inline-flex;
	line-height: 0;
}

.nt-stars-bg,
.nt-stars-fg { display: inline-flex; }
.nt-stars-bg { color: var(--nt-line-2); }

.nt-stars-fg {
	position: absolute;
	inset: 0;
	color: var(--nt-amber);
	overflow: hidden;
	width: var(--fill, 0%);
}

.nt-stars-fg .nt-i { fill: currentColor; }

.nt-rating-meta { font-size: 12.5px; color: var(--nt-ink-3); }

.nt-rate-buttons { display: inline-flex; gap: 2px; }

.nt-rate {
	border: 0;
	background: none;
	padding: 2px;
	color: var(--nt-line-2);
	line-height: 0;
	transition: color var(--nt-t), transform var(--nt-t);
}

.nt-rate:hover,
.nt-rate.is-on { color: var(--nt-amber); }
.nt-rate:hover { transform: scale(1.12); }
.nt-rate.is-on .nt-i { fill: currentColor; }
.nt-rating.is-interactive .nt-stars { display: none; }
.nt-rating.is-done .nt-rate-buttons { pointer-events: none; opacity: 0.75; }

.nt-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	background: var(--nt-bg);
	overflow: hidden;
}

.nt-logo-img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.nt-logo-lg { width: 68px; height: 68px; border-radius: var(--nt-r-lg); }
.nt-logo-xs { width: 28px; height: 28px; border-radius: var(--nt-r-xs); }

.nt-logo-mono {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 15px;
	font-weight: 750;
	letter-spacing: -0.03em;
	color: hsl(var(--h, 210) 62% 38%);
	background: hsl(var(--h, 210) 62% 94%);
}

[data-theme="dark"] .nt-logo-mono {
	color: hsl(var(--h, 210) 70% 76%);
	background: hsl(var(--h, 210) 40% 17%);
}

.nt-logo-lg .nt-logo-mono { font-size: 22px; }
.nt-logo-xs .nt-logo-mono { font-size: 11px; }

/* ==========================================================================
   5. Ticker + header
   ========================================================================== */

.nt-ticker {
	background: var(--nt-invert-bg);
	color: var(--nt-invert-ink);
	font-size: 12.5px;
	letter-spacing: 0.01em;
}

.nt-ticker .nt-wrap {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 34px;
	padding-block: 7px;
}

.nt-ticker-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nt-accent);
	flex: 0 0 auto;
	animation: nt-pulse 2.4s ease-out infinite;
}

.nt-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in srgb, var(--nt-bg) 88%, transparent);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--nt-line);
	transition: box-shadow var(--nt-t), border-color var(--nt-t);
}

.nt-header.is-stuck { box-shadow: 0 1px 0 var(--nt-line), 0 8px 24px -18px var(--nt-shade); }

.nt-header-in {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2.4vw, 32px);
	min-height: 64px;
}

.nt-brand { flex: 0 0 auto; }

.nt-brand .custom-logo { max-height: 38px; width: auto; }

.nt-word {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 20px;
	letter-spacing: -0.045em;
	color: var(--nt-ink);
}

.nt-word-mark {
	width: 15px;
	height: 15px;
	flex: 0 0 auto;
	border-radius: 3px;
	background: var(--nt-accent);
	transform: rotate(45deg);
	transition: transform var(--nt-t);
}

.nt-word:hover .nt-word-mark { transform: rotate(135deg); }
.nt-word:hover { color: var(--nt-ink); }
.nt-word-text b { font-weight: 800; }
.nt-word-text { font-weight: 400; color: var(--nt-ink-2); }
[data-theme="dark"] .nt-word-text b { color: var(--nt-ink); }

.nt-nav { flex: 1 1 auto; min-width: 0; }

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

.nt-menu li { position: relative; }

.nt-menu > li > a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--nt-r-sm);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--nt-ink-2);
}

.nt-menu > li > a:hover,
.nt-menu > li.current-menu-item > a,
.nt-menu > li.current_page_item > a {
	color: var(--nt-ink);
	background: var(--nt-bg-2);
}

.nt-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 5;
	min-width: 208px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--nt-bg);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	box-shadow: 0 18px 40px -24px var(--nt-shade);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity var(--nt-t), transform var(--nt-t), visibility var(--nt-t);
}

.nt-menu li:hover > .sub-menu,
.nt-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.nt-menu .sub-menu a {
	display: block;
	padding: 8px 10px;
	border-radius: var(--nt-r-xs);
	font-size: 14px;
	color: var(--nt-ink-2);
}

.nt-menu .sub-menu a:hover { background: var(--nt-bg-2); color: var(--nt-ink); }

.nt-header-tools {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	margin-left: auto;
}

.nt-theme-toggle .nt-in-dark,
[data-theme="dark"] .nt-theme-toggle .nt-in-light { display: none; }
[data-theme="dark"] .nt-theme-toggle .nt-in-dark { display: inline-flex; }

.nt-burger { display: none; }
.nt-burger .nt-in-open { display: none; }
.nt-burger[aria-expanded="true"] .nt-in-open { display: inline-flex; }
.nt-burger[aria-expanded="true"] .nt-in-closed { display: none; }

/* search overlay ---------------------------------------------------------- */

.nt-search-panel {
	border-top: 1px solid var(--nt-line);
	background: var(--nt-bg);
	padding-block: 16px 20px;
}

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

.nt-search-form,
.nt-search-inline {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px 6px 14px;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r);
	background: var(--nt-bg);
	transition: border-color var(--nt-t), box-shadow var(--nt-t);
}

.nt-search-form:focus-within,
.nt-search-inline:focus-within {
	border-color: var(--nt-accent);
	box-shadow: 0 0 0 3px var(--nt-accent-soft);
}

.nt-search-form > .nt-i,
.nt-search-inline > .nt-i { color: var(--nt-ink-3); }

.nt-search-form input[type="search"],
.nt-search-inline input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	outline: 0;
	background: none;
	padding: 8px 0;
	font-size: 15.5px;
}

.nt-search-inline { margin-bottom: 18px; }

.nt-suggest {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 20;
	max-height: 62vh;
	overflow-y: auto;
	padding: 6px;
	background: var(--nt-bg);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	box-shadow: 0 22px 48px -28px var(--nt-shade);
}

.nt-suggest[hidden] { display: none; }

.nt-suggest a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: var(--nt-r-sm);
	font-size: 14.5px;
}

.nt-suggest a:hover,
.nt-suggest a.is-on { background: var(--nt-bg-2); color: var(--nt-ink); }
.nt-suggest .nt-sg-type {
	margin-left: auto;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}
.nt-suggest .nt-sg-empty { padding: 12px; font-size: 14px; color: var(--nt-ink-3); }

/* mobile drawer ----------------------------------------------------------- */

.nt-mobile {
	position: fixed;
	inset: 0;
	top: 0;
	z-index: 55;
	padding-top: 108px;
	background: var(--nt-bg);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.nt-mobile[hidden] { display: none; }

.nt-mobile-menu {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--nt-line);
}

.nt-mobile-menu li { border-bottom: 1px solid var(--nt-line); }

.nt-mobile-menu a {
	display: block;
	padding: 15px 2px;
	font-size: 18px;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.nt-mobile-menu .sub-menu { margin: 0 0 8px; padding-left: 14px; list-style: none; border: 0; }
.nt-mobile-menu .sub-menu li { border: 0; }
.nt-mobile-menu .sub-menu a { padding: 8px 2px; font-size: 15px; font-weight: 550; color: var(--nt-ink-2); }

/* ==========================================================================
   6. Hero
   ========================================================================== */

.nt-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(44px, 6.5vw, 92px) clamp(40px, 5vw, 72px);
	border-bottom: 1px solid var(--nt-line);
	background: var(--nt-bg);
}

.nt-hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--nt-line) 1px, transparent 1px),
		linear-gradient(90deg, var(--nt-line) 1px, transparent 1px);
	background-size: 64px 64px;
	-webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
	mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
	opacity: 0.7;
}

.nt-hero-in {
	position: relative;
	max-width: 860px;
}

.nt-hero-title {
	margin: 0 0 16px;
	font-size: clamp(34px, 6.2vw, 66px);
	font-weight: 800;
	line-height: 1.03;
	letter-spacing: -0.038em;
	text-wrap: balance;
}

.nt-hero-sub {
	max-width: 62ch;
	margin: 0 0 26px;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.55;
	color: var(--nt-ink-2);
}

.nt-hero-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 680px;
	padding: 8px 8px 8px 16px;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg);
	box-shadow: 0 20px 40px -34px var(--nt-shade);
	transition: border-color var(--nt-t), box-shadow var(--nt-t);
}

.nt-hero-search:focus-within {
	border-color: var(--nt-accent);
	box-shadow: 0 0 0 4px var(--nt-accent-soft);
}

.nt-hero-search-icon { display: inline-flex; color: var(--nt-ink-3); }

.nt-hero-search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 10px 0;
	border: 0;
	outline: 0;
	background: none;
	font-size: 16px;
}

.nt-hero-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--nt-ink-3);
}

.nt-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.nt-hero-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin: clamp(30px, 4vw, 48px) 0 0;
	padding: 0;
	background: var(--nt-line);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	overflow: hidden;
}

.nt-hero-stats > div {
	padding: 16px 18px;
	background: var(--nt-bg);
}

.nt-hero-stats dt {
	font-size: 11.5px;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-hero-stats dd {
	margin: 4px 0 0;
	font-size: clamp(20px, 2.4vw, 27px);
	font-weight: 750;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   7. Cards
   ========================================================================== */

.nt-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--nt-bg);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	transition: border-color var(--nt-t), transform var(--nt-t), background var(--nt-t);
}

.nt-card:hover {
	border-color: var(--nt-line-2);
	transform: translateY(-2px);
}

.nt-card-hit {
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: inherit;
}

.nt-card-hit:focus-visible { outline-offset: -2px; }

.nt-card-title {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 6px;
	font-size: 17px;
	letter-spacing: -0.025em;
}

.nt-card:hover .nt-card-title { color: var(--nt-accent); }

.nt-card-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--nt-ink-2);
}

/* tool card */
.nt-card-tool { padding: 18px; }

.nt-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.nt-pick { color: var(--nt-accent); line-height: 0; }

.nt-card-foot {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 16px;
	flex-wrap: wrap;
}

.nt-card-go {
	margin-left: auto;
	color: var(--nt-ink-3);
	line-height: 0;
	transition: transform var(--nt-t), color var(--nt-t);
}

.nt-card:hover .nt-card-go { color: var(--nt-accent); transform: translateX(3px); }

/* post + review cards */
.nt-card-post,
.nt-card-review { overflow: hidden; }

.nt-card-media {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--nt-bg-2);
	border-bottom: 1px solid var(--nt-line);
}

.nt-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.nt-card:hover .nt-card-media img { transform: scale(1.035); }
.nt-card-media-sm { aspect-ratio: 16 / 8; }

.nt-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 16px 18px 18px;
}

.nt-kicker {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	font-size: 12px;
	color: var(--nt-ink-3);
}

.nt-kicker-cat {
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nt-accent);
}

.nt-card-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 14px;
	font-size: 12.5px;
	color: var(--nt-ink-3);
}

.nt-card-meta span { display: inline-flex; align-items: center; gap: 5px; }

.nt-card-post.is-lead .nt-card-title { font-size: clamp(20px, 2.4vw, 27px); }
.nt-card-post.is-lead .nt-card-media { aspect-ratio: 16 / 9; }
.nt-card-post.is-lead .nt-card-text { font-size: 15px; }

.nt-split {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: var(--nt-gap);
	align-items: start;
}

.nt-split-rest {
	display: grid;
	gap: var(--nt-gap);
}

.nt-split-rest .nt-card-media { display: none; }

/* ranked wrapper (trending) */
.nt-ranked { position: relative; }

.nt-ranked::before {
	content: var(--rank, "");
	position: absolute;
	top: -9px;
	left: -6px;
	z-index: 3;
	padding: 2px 7px;
	border-radius: var(--nt-r-xs);
	background: var(--nt-ink);
	color: var(--nt-bg);
	font-size: 11px;
	font-weight: 750;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.04em;
	pointer-events: none;
}

.nt-ranked:first-child::before { background: var(--nt-accent); color: var(--nt-accent-ink); }

/* ==========================================================================
   8. Category tiles + leaderboard
   ========================================================================== */

.nt-tiles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--nt-gap);
}

.nt-tile {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	background: var(--nt-bg);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	transition: border-color var(--nt-t), transform var(--nt-t);
}

.nt-tile:hover { border-color: var(--nt-accent); transform: translateY(-2px); color: var(--nt-ink); }

.nt-tile-glyph {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: var(--nt-r-sm);
	font-size: 16px;
	font-weight: 750;
	color: hsl(var(--h, 210) 62% 38%);
	background: hsl(var(--h, 210) 62% 94%);
}

[data-theme="dark"] .nt-tile-glyph {
	color: hsl(var(--h, 210) 70% 76%);
	background: hsl(var(--h, 210) 40% 17%);
}

.nt-tile-body { display: flex; flex-direction: column; min-width: 0; }
.nt-tile-name { font-size: 14.5px; font-weight: 650; letter-spacing: -0.015em; }
.nt-tile-count { font-size: 12px; color: var(--nt-ink-3); }

.nt-tile-go {
	margin-left: auto;
	color: var(--nt-ink-3);
	line-height: 0;
	transition: transform var(--nt-t), color var(--nt-t);
}

.nt-tile:hover .nt-tile-go { color: var(--nt-accent); transform: translateX(3px); }

.nt-board {
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg);
	overflow: hidden;
}

.nt-board-row {
	display: grid;
	grid-template-columns: 34px 46px minmax(0, 1fr) 150px 150px 62px;
	align-items: center;
	gap: 14px;
	padding: 12px 18px;
	border-bottom: 1px solid var(--nt-line);
	transition: background var(--nt-t);
}

.nt-board-row:last-child { border-bottom: 0; }
.nt-board-row:hover { background: var(--nt-bg-2); }

.nt-board-rank {
	font-size: 13px;
	font-weight: 750;
	font-variant-numeric: tabular-nums;
	color: var(--nt-ink-3);
}

.nt-board-row:first-child .nt-board-rank { color: var(--nt-accent); }
.nt-board-logo { display: inline-flex; }
.nt-board-logo .nt-logo-mono,
.nt-board-logo img {
	width: 40px;
	height: 40px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-sm);
	object-fit: contain;
}

.nt-board-main { display: flex; flex-direction: column; min-width: 0; }
.nt-board-title { font-size: 15.5px; font-weight: 680; letter-spacing: -0.02em; }
.nt-board-sub {
	font-size: 12.5px;
	color: var(--nt-ink-3);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nt-board-cat { font-size: 12.5px; color: var(--nt-ink-3); }
.nt-board-score { text-align: right; }
.nt-board-stars .nt-rating-meta { display: none; }

/* ==========================================================================
   9. Mastheads, breadcrumbs, pagination
   ========================================================================== */

.nt-masthead {
	padding-block: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 32px);
	border-bottom: 1px solid var(--nt-line);
	background: var(--nt-bg-2);
}

.nt-masthead.is-lean { padding-block: clamp(22px, 3vw, 36px); }

.nt-masthead-title {
	margin: 0;
	font-size: clamp(28px, 4.4vw, 46px);
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.nt-masthead-sub {
	max-width: 68ch;
	margin: 12px 0 0;
	font-size: 16px;
	color: var(--nt-ink-2);
}

.nt-masthead-count {
	margin: 12px 0 0;
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-crumbs {
	margin-bottom: 14px;
	font-size: 12.5px;
	color: var(--nt-ink-3);
}

.nt-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nt-crumbs li { display: inline-flex; align-items: center; gap: 7px; }
.nt-crumbs li + li::before { content: "/"; color: var(--nt-line-2); }
.nt-crumbs a { color: var(--nt-ink-3); }
.nt-crumbs a:hover { color: var(--nt-accent); }
.nt-crumbs [aria-current] { color: var(--nt-ink-2); }

.nt-pager {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: clamp(28px, 4vw, 44px);
	flex-wrap: wrap;
}

.nt-pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-sm);
	font-size: 14px;
	font-weight: 620;
	color: var(--nt-ink-2);
}

.nt-pager .page-numbers:hover { border-color: var(--nt-accent); color: var(--nt-accent); }

.nt-pager .page-numbers.current {
	background: var(--nt-ink);
	border-color: var(--nt-ink);
	color: var(--nt-bg);
}

.nt-pager .dots { border-color: transparent; }

.nt-more-wrap { display: flex; justify-content: center; margin-top: clamp(24px, 3vw, 36px); }
.nt-more[disabled] { opacity: 0.55; pointer-events: none; }

.nt-empty {
	max-width: 620px;
	margin-inline: auto;
	padding: clamp(36px, 6vw, 72px) 24px;
	text-align: center;
	border: 1px dashed var(--nt-line-2);
	border-radius: var(--nt-r-lg);
}

.nt-empty h2 { font-size: clamp(20px, 2.6vw, 26px); }
.nt-empty p { color: var(--nt-ink-2); }
.nt-empty-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* ==========================================================================
   10. Directory: rail, facets, toolbar
   ========================================================================== */

.nt-directory-layout {
	display: grid;
	grid-template-columns: 252px minmax(0, 1fr);
	gap: clamp(20px, 3vw, 40px);
	padding-block: clamp(24px, 3.4vw, 40px) var(--nt-sec-y);
	align-items: start;
}

.nt-rail {
	position: sticky;
	top: 88px;
	max-height: calc(100vh - 108px);
	overflow-y: auto;
	padding-right: 4px;
}

.nt-rail-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding-bottom: 12px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--nt-line);
}

.nt-rail-title {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nt-rail-clear { font-size: 12.5px; font-weight: 600; color: var(--nt-accent); }

.nt-rail-group { margin-bottom: 22px; }

.nt-rail-h {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-rail-list { margin: 0; padding: 0; list-style: none; }

.nt-facet {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 8px 6px 6px;
	border-radius: var(--nt-r-sm);
	font-size: 14px;
	color: var(--nt-ink-2);
}

.nt-facet:hover { background: var(--nt-bg-2); color: var(--nt-ink); }

.nt-facet-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r-xs);
	color: transparent;
	transition: background var(--nt-t), border-color var(--nt-t), color var(--nt-t);
}

.nt-facet.is-on { color: var(--nt-ink); font-weight: 620; }
.nt-facet.is-on .nt-facet-box {
	background: var(--nt-accent);
	border-color: var(--nt-accent);
	color: var(--nt-accent-ink);
}

.nt-facet-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.nt-facet-count {
	margin-left: auto;
	font-size: 11.5px;
	font-variant-numeric: tabular-nums;
	color: var(--nt-ink-3);
}

.nt-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding-bottom: 16px;
	margin-bottom: var(--nt-gap);
	border-bottom: 1px solid var(--nt-line);
}

.nt-toolbar-count { margin: 0; font-size: 14px; color: var(--nt-ink-3); }
.nt-toolbar-count b { color: var(--nt-ink); font-weight: 700; }

.nt-sort {
	display: flex;
	gap: 2px;
	margin-left: auto;
	padding: 3px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-sm);
	background: var(--nt-bg-2);
	overflow-x: auto;
}

.nt-sort-btn {
	padding: 6px 11px;
	border-radius: var(--nt-r-xs);
	font-size: 13px;
	font-weight: 620;
	color: var(--nt-ink-3);
	white-space: nowrap;
}

.nt-sort-btn:hover { color: var(--nt-ink); }

.nt-sort-btn.is-on {
	background: var(--nt-bg);
	color: var(--nt-ink);
	box-shadow: 0 1px 2px var(--nt-shade);
}

.nt-filter-toggle { display: none; }

.nt-tabs {
	display: flex;
	gap: 4px;
	margin-top: 18px;
	overflow-x: auto;
	scrollbar-width: none;
}

.nt-tabs::-webkit-scrollbar { display: none; }

.nt-tab {
	padding: 8px 14px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-pill);
	background: var(--nt-bg);
	font-size: 13.5px;
	font-weight: 620;
	color: var(--nt-ink-2);
	white-space: nowrap;
}

.nt-tab:hover { border-color: var(--nt-accent); color: var(--nt-accent); }

.nt-tab.is-on {
	background: var(--nt-ink);
	border-color: var(--nt-ink);
	color: var(--nt-bg);
}

/* ==========================================================================
   11. Single tool
   ========================================================================== */

.nt-tool-hero {
	padding-block: clamp(24px, 3.4vw, 40px);
	border-bottom: 1px solid var(--nt-line);
	background: var(--nt-bg-2);
}

.nt-tool-hero-in {
	display: flex;
	align-items: flex-start;
	gap: clamp(14px, 2vw, 22px);
	flex-wrap: wrap;
}

.nt-tool-hero-main { flex: 1 1 340px; min-width: 0; }

.nt-tool-title {
	margin: 0 0 6px;
	font-size: clamp(28px, 4.2vw, 44px);
	letter-spacing: -0.035em;
}

.nt-tool-tagline {
	max-width: 60ch;
	margin: 0 0 14px;
	font-size: clamp(15px, 1.6vw, 18px);
	color: var(--nt-ink-2);
}

.nt-tool-facts { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.nt-tool-hero-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	margin-left: auto;
}

.nt-tool-hero-side .nt-score { padding: 6px 12px; }
.nt-tool-hero-side .nt-score b { font-size: 19px; }

.nt-tool-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: clamp(24px, 3.4vw, 48px);
	padding-block: clamp(28px, 4vw, 52px) var(--nt-sec-y);
	align-items: start;
}

.nt-tool-body { min-width: 0; }

.nt-tool-side {
	position: sticky;
	top: 88px;
	display: grid;
	gap: 16px;
}

.nt-panel {
	padding: 18px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg);
}

.nt-panel-h {
	margin: 0 0 14px;
	font-size: 12.5px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-panel-accent { background: var(--nt-bg-2); border-color: var(--nt-line-2); }

.nt-panel-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 650;
	color: var(--nt-accent);
}

.nt-spec { margin: 0 0 14px; }

.nt-spec > div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
	border-bottom: 1px solid var(--nt-line);
	font-size: 13.5px;
}

.nt-spec > div:last-child { border-bottom: 0; }
.nt-spec dt { color: var(--nt-ink-3); }
.nt-spec dd { margin: 0; text-align: right; font-weight: 620; }

.nt-mini { margin: 0; padding: 0; list-style: none; }

.nt-mini li + li { border-top: 1px solid var(--nt-line); }

.nt-mini a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	font-size: 14px;
}

.nt-mini-name {
	min-width: 0;
	flex: 1 1 auto;
	font-weight: 620;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nt-verdict {
	position: relative;
	padding: 20px 22px;
	margin-bottom: 26px;
	border: 1px solid var(--nt-line);
	border-left: 3px solid var(--nt-accent);
	border-radius: var(--nt-r);
	background: var(--nt-bg-2);
}

.nt-verdict-h {
	margin: 0 0 8px;
	font-size: 12.5px;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--nt-accent);
}

.nt-verdict p { font-size: 16.5px; line-height: 1.55; }

.nt-proscons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--nt-gap);
	margin-bottom: 30px;
}

.nt-proscons > div {
	padding: 18px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
}

.nt-proscons h2 {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.nt-pros h2 { color: var(--nt-mint); }
.nt-cons h2 { color: var(--nt-ink-3); }
.nt-proscons ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }

.nt-proscons li {
	display: flex;
	gap: 9px;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--nt-ink-2);
}

.nt-pros li .nt-i { color: var(--nt-mint); margin-top: 3px; }
.nt-cons li .nt-i { color: var(--nt-ink-3); margin-top: 3px; }

.nt-features {
	margin: 30px 0;
	padding: 20px 22px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
}

.nt-features h2 { margin: 0 0 12px; font-size: 18px; }

.nt-features ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nt-features li {
	position: relative;
	padding-left: 18px;
	font-size: 14.5px;
	color: var(--nt-ink-2);
}

.nt-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 2px;
	background: var(--nt-accent);
	transform: rotate(45deg);
}

.nt-rate-box {
	margin: 30px 0;
	padding: 20px 22px;
	border: 1px dashed var(--nt-line-2);
	border-radius: var(--nt-r);
	background: var(--nt-bg-2);
}

.nt-rate-box h2 { margin: 0 0 4px; font-size: 18px; }
.nt-rate-box p { font-size: 14px; color: var(--nt-ink-3); }
.nt-rate-box .nt-rating { margin-top: 12px; }

/* ==========================================================================
   12. Articles & prose
   ========================================================================== */

.nt-article-head {
	padding-block: clamp(26px, 3.6vw, 44px) clamp(18px, 2.4vw, 28px);
	background: var(--nt-bg);
}

.nt-article-head .nt-chip { margin-bottom: 14px; }

.nt-article-title {
	margin: 0 0 14px;
	font-size: clamp(30px, 4.8vw, 50px);
	font-weight: 800;
	letter-spacing: -0.038em;
	line-height: 1.06;
	text-wrap: balance;
}

.nt-article-standfirst {
	max-width: 62ch;
	margin: 0 0 22px;
	font-size: clamp(16px, 1.7vw, 19.5px);
	line-height: 1.55;
	color: var(--nt-ink-2);
}

.nt-byline {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-block: 16px;
	border-top: 1px solid var(--nt-line);
	border-bottom: 1px solid var(--nt-line);
}

.nt-avatar { border-radius: 50%; flex: 0 0 auto; }
.nt-avatar-lg { width: 96px; height: 96px; }
.nt-byline-name { margin: 0; font-size: 14.5px; font-weight: 680; }
.nt-byline-meta { margin: 0; display: flex; gap: 7px; flex-wrap: wrap; font-size: 12.5px; color: var(--nt-ink-3); }
.nt-byline > .nt-btn { margin-left: auto; }

.nt-article-figure {
	margin: 0 0 clamp(20px, 3vw, 34px);
	border-radius: var(--nt-r-lg);
	overflow: hidden;
	border: 1px solid var(--nt-line);
	background: var(--nt-bg-2);
}

.nt-article-figure img { width: 100%; }

.nt-prose { font-size: 17px; line-height: 1.72; color: var(--nt-ink-2); }
.nt-prose > * + * { margin-top: 1.15em; }

.nt-prose h2 {
	margin: 1.9em 0 0.55em;
	font-size: clamp(21px, 2.6vw, 28px);
	color: var(--nt-ink);
}

.nt-prose h3 { margin: 1.6em 0 0.5em; font-size: clamp(18px, 2vw, 22px); color: var(--nt-ink); }
.nt-prose h4 { margin: 1.4em 0 0.4em; font-size: 17px; color: var(--nt-ink); }
.nt-prose a { color: var(--nt-accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.nt-prose a:hover { text-decoration-thickness: 2px; }
.nt-prose strong { color: var(--nt-ink); font-weight: 680; }
.nt-prose ul, .nt-prose ol { padding-left: 1.3em; }
.nt-prose li + li { margin-top: 0.4em; }
.nt-prose li::marker { color: var(--nt-accent); }

.nt-prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid var(--nt-accent);
	font-size: 19px;
	line-height: 1.5;
	color: var(--nt-ink);
}

.nt-prose blockquote cite { display: block; margin-top: 8px; font-size: 14px; font-style: normal; color: var(--nt-ink-3); }

.nt-prose img,
.nt-prose figure { border-radius: var(--nt-r); }
.nt-prose figure { margin: 1.7em 0; }
.nt-prose figcaption { margin-top: 8px; font-size: 13px; color: var(--nt-ink-3); text-align: center; }

.nt-prose code {
	padding: 2px 6px;
	border-radius: var(--nt-r-xs);
	background: var(--nt-bg-3);
	font-family: var(--nt-mono);
	font-size: 0.88em;
	color: var(--nt-ink);
}

.nt-prose pre {
	margin: 1.6em 0;
	padding: 16px 18px;
	overflow-x: auto;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	background: var(--nt-bg-2);
	font-family: var(--nt-mono);
	font-size: 13.5px;
	line-height: 1.6;
}

.nt-prose pre code { padding: 0; background: none; }

.nt-prose table { margin: 1.6em 0; font-size: 15px; }
.nt-prose th, .nt-prose td { padding: 10px 12px; border: 1px solid var(--nt-line); text-align: left; }
.nt-prose th { background: var(--nt-bg-2); color: var(--nt-ink); font-weight: 680; }

.nt-prose .wp-caption,
.nt-prose .alignwide { max-width: 100%; }
.nt-prose .alignleft { float: left; margin: 0.4em 1.4em 1em 0; }
.nt-prose .alignright { float: right; margin: 0.4em 0 1em 1.4em; }
.nt-prose .aligncenter { margin-inline: auto; }

.nt-article-tags { margin-top: 32px; }

.nt-authorbox {
	display: flex;
	gap: 16px;
	margin-top: 34px;
	padding: 20px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg-2);
}

.nt-authorbox-name { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.nt-authorbox-bio { margin: 0; font-size: 14px; color: var(--nt-ink-2); }

.nt-related { margin-top: 12px; }

.nt-authorhead {
	padding-block: clamp(28px, 4vw, 52px);
	border-bottom: 1px solid var(--nt-line);
	background: var(--nt-bg-2);
}

.nt-authorhead-in { display: flex; gap: clamp(16px, 2.4vw, 28px); align-items: flex-start; flex-wrap: wrap; }

.nt-author-stats {
	display: flex;
	gap: 26px;
	margin: 18px 0 16px;
	flex-wrap: wrap;
}

.nt-author-stats dt { font-size: 11.5px; font-weight: 650; letter-spacing: 0.08em; text-transform: uppercase; color: var(--nt-ink-3); }
.nt-author-stats dd { margin: 2px 0 0; font-size: 22px; font-weight: 750; font-variant-numeric: tabular-nums; }

/* ==========================================================================
   13. Comments
   ========================================================================== */

.nt-comments { margin-top: 20px; }
.nt-commentlist { margin: 0; padding: 0; list-style: none; }
.nt-commentlist .children { margin: 16px 0 0 clamp(14px, 3vw, 34px); padding: 0; list-style: none; }

.nt-commentlist li.comment,
.nt-commentlist li.pingback { margin-bottom: 18px; }

.nt-commentlist article {
	padding: 16px 18px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r);
	background: var(--nt-bg);
}

.nt-commentlist .comment-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 13px;
	color: var(--nt-ink-3);
}

.nt-commentlist .comment-author { display: flex; align-items: center; gap: 10px; }
.nt-commentlist .comment-author img { border-radius: 50%; }
.nt-commentlist .fn { font-style: normal; font-weight: 680; color: var(--nt-ink); }
.nt-commentlist .comment-content { font-size: 15px; color: var(--nt-ink-2); }
.nt-commentlist .reply { margin-top: 8px; font-size: 13px; font-weight: 650; }
.nt-commentlist .reply a { color: var(--nt-accent); }

.nt-field,
.comment-form p {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 14px;
}

.comment-form label { font-size: 13px; font-weight: 650; color: var(--nt-ink-2); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.nt-input {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r-sm);
	background: var(--nt-bg);
	font-size: 15px;
	transition: border-color var(--nt-t), box-shadow var(--nt-t);
}

.comment-form input:focus,
.comment-form textarea:focus,
.nt-input:focus {
	outline: 0;
	border-color: var(--nt-accent);
	box-shadow: 0 0 0 3px var(--nt-accent-soft);
}

.comment-form .form-submit { margin-top: 4px; }
.nt-form-note { font-size: 13px; color: var(--nt-ink-3); }
.comment-form .comment-form-cookies-consent { flex-direction: row; align-items: center; gap: 8px; }
.comment-form .comment-form-cookies-consent label { font-weight: 500; }

/* ==========================================================================
   14. Newsletter, FAQ, 404
   ========================================================================== */

.nt-news { padding-block: var(--nt-sec-y); }

.nt-news-box {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg-2);
	background-image: radial-gradient(120% 140% at 100% 0%, var(--nt-accent-soft) 0%, transparent 55%);
}

.nt-news-copy .nt-sec-title { font-size: clamp(23px, 3vw, 33px); }
.nt-news-sub { margin: 10px 0 0; font-size: 15.5px; color: var(--nt-ink-2); max-width: 46ch; }

.nt-news-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.nt-news-form .nt-btn { align-self: start; }
.nt-news-note,
.nt-form-msg { grid-column: 1 / -1; margin: 0; font-size: 12.5px; color: var(--nt-ink-3); }
.nt-form-msg:empty { display: none; }
.nt-form-msg.is-ok { color: var(--nt-mint); font-weight: 620; }
.nt-form-msg.is-err { color: var(--nt-accent); font-weight: 620; }

.nt-panel .nt-news-form,
.nt-tool-side .nt-news-form { grid-template-columns: minmax(0, 1fr); }

.nt-faq-layout {
	display: grid;
	grid-template-columns: 330px minmax(0, 1fr);
	gap: clamp(24px, 4vw, 60px);
	align-items: start;
}

.nt-faq-head { position: sticky; top: 96px; }
.nt-faq-sub { margin: 10px 0 18px; font-size: 15px; color: var(--nt-ink-2); }

.nt-faq-list {
	border-top: 1px solid var(--nt-line);
}

.nt-faq-item { border-bottom: 1px solid var(--nt-line); }

.nt-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 17px 2px;
	font-size: 16.5px;
	font-weight: 650;
	letter-spacing: -0.015em;
	cursor: pointer;
	list-style: none;
	transition: color var(--nt-t);
}

.nt-faq-item summary::-webkit-details-marker { display: none; }
.nt-faq-item summary:hover { color: var(--nt-accent); }

.nt-faq-icon {
	display: inline-flex;
	color: var(--nt-ink-3);
	transition: transform var(--nt-t), color var(--nt-t);
}

.nt-faq-item[open] .nt-faq-icon { transform: rotate(45deg); color: var(--nt-accent); }

.nt-faq-body {
	padding: 0 2px 20px;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--nt-ink-2);
	max-width: 68ch;
}

.nt-404 { padding-block: clamp(48px, 8vw, 110px) var(--nt-sec-y); text-align: center; }

.nt-404-code {
	margin: 0;
	font-size: clamp(72px, 16vw, 168px);
	font-weight: 800;
	line-height: 0.85;
	letter-spacing: -0.06em;
	color: transparent;
	-webkit-text-stroke: 2px var(--nt-line-2);
}

.nt-404-title { margin: 22px 0 10px; font-size: clamp(22px, 3.4vw, 34px); text-wrap: balance; }
.nt-404-sub { margin: 0 0 26px; color: var(--nt-ink-2); }
.nt-404 .nt-search-inline { text-align: left; }
.nt-404-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.nt-404-suggest { margin-top: clamp(38px, 6vw, 70px); text-align: left; }
.nt-404-suggest .nt-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ==========================================================================
   15. Footer + back to top
   ========================================================================== */

.nt-footer {
	margin-top: 0;
	padding-block: clamp(40px, 5vw, 64px) 24px;
	border-top: 1px solid var(--nt-line);
	background: var(--nt-bg-2);
}

.nt-footer-top {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: clamp(24px, 3vw, 48px);
	padding-bottom: clamp(28px, 4vw, 44px);
	border-bottom: 1px solid var(--nt-line);
}

.nt-footer-brand .nt-word { font-size: 22px; margin-bottom: 14px; }

.nt-footer-blurb {
	max-width: 44ch;
	font-size: 14px;
	line-height: 1.6;
	color: var(--nt-ink-3);
}

.nt-footer-social {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	font-size: 13.5px;
	font-weight: 620;
	color: var(--nt-ink-3);
}

.nt-footer-h {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--nt-ink-3);
}

.nt-footer-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.nt-footer-list a { font-size: 14px; color: var(--nt-ink-2); }
.nt-footer-list a:hover { color: var(--nt-accent); }

.nt-footer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	padding-top: 20px;
	font-size: 13px;
	color: var(--nt-ink-3);
}

.nt-footer-bar p { margin: 0; }
.nt-legal { display: flex; gap: 16px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; }
.nt-legal a { color: var(--nt-ink-3); }
.nt-legal a:hover { color: var(--nt-accent); }

.nt-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r-sm);
	background: var(--nt-bg);
	color: var(--nt-ink);
	box-shadow: 0 10px 28px -18px var(--nt-shade);
	transition: opacity var(--nt-t), transform var(--nt-t), border-color var(--nt-t);
}

.nt-top[hidden] { display: none; }
.nt-top:hover { border-color: var(--nt-accent); color: var(--nt-accent); transform: translateY(-2px); }

/* ==========================================================================
   16. Responsive
   ========================================================================== */

@media (max-width: 1080px) {
	.nt-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.nt-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.nt-board-row { grid-template-columns: 30px 42px minmax(0, 1fr) 130px 60px; }
	.nt-board-stars { display: none; }
	.nt-tool-layout { grid-template-columns: minmax(0, 1fr); }
	.nt-tool-side { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nt-faq-layout { grid-template-columns: minmax(0, 1fr); }
	.nt-faq-head { position: static; }
}

@media (max-width: 900px) {
	.nt-nav { display: none; }
	.nt-burger { display: inline-flex; }
	.nt-filter-toggle { display: inline-flex; }
	.nt-directory-layout { grid-template-columns: minmax(0, 1fr); }

	.nt-rail {
		position: static;
		max-height: none;
		display: none;
		padding: 16px;
		margin-bottom: 18px;
		border: 1px solid var(--nt-line);
		border-radius: var(--nt-r);
	}

	.nt-rail.is-open { display: block; }
	.nt-news-box { grid-template-columns: minmax(0, 1fr); }
	.nt-split { grid-template-columns: minmax(0, 1fr); }
	.nt-split-rest .nt-card-media { display: block; }
	.nt-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nt-footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.nt-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	html { scroll-padding-top: 76px; }
	.nt-ticker { font-size: 11.5px; }
	.nt-header-in { min-height: 58px; }
	.nt-hide-sm { display: none; }
	.nt-mobile { padding-top: 96px; }
	.nt-grid-3,
	.nt-grid-4,
	.nt-tiles { grid-template-columns: minmax(0, 1fr); }
	.nt-proscons { grid-template-columns: minmax(0, 1fr); }
	.nt-features ul { grid-template-columns: minmax(0, 1fr); }
	.nt-tool-side { grid-template-columns: minmax(0, 1fr); }
	.nt-404-suggest .nt-grid-4 { grid-template-columns: minmax(0, 1fr); }
	.nt-toolbar { gap: 8px; }
	.nt-sort { width: 100%; margin-left: 0; order: 3; }
	.nt-tool-hero-side { align-items: flex-start; margin-left: 0; width: 100%; flex-direction: row; flex-wrap: wrap; }
	.nt-board-row { grid-template-columns: 26px 38px minmax(0, 1fr) 56px; gap: 10px; padding: 11px 13px; }
	.nt-board-cat { display: none; }
	.nt-hero-search { flex-wrap: wrap; padding: 12px; border-radius: var(--nt-r); }
	.nt-hero-search input[type="search"] { flex: 1 1 100%; order: 2; }
	.nt-hero-search .nt-btn { width: 100%; order: 3; }
	.nt-news-form { grid-template-columns: minmax(0, 1fr); }
	.nt-byline { flex-wrap: wrap; }
	.nt-byline > .nt-btn { margin-left: 0; }
	.nt-authorbox { flex-direction: column; }
	.nt-footer-top { grid-template-columns: minmax(0, 1fr); }
	.nt-search-form { flex-wrap: wrap; }
	.nt-search-form .nt-btn { width: 100%; }
}

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

@media print {
	.nt-header, .nt-ticker, .nt-footer, .nt-top, .nt-rail, .nt-news, .nt-mobile, .nt-search-panel { display: none !important; }
	body { background: #fff; color: #000; }
	.nt-tool-layout, .nt-directory-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   17. Modern SaaS layer  (Inter + Poppins, indigo/violet palette)
   Appended layer. Everything below overrides the base rules above.
   ========================================================================== */

:root {
	/* palette */
	--nt-accent: #4361ee;
	--nt-accent-2: #7209b7;
	--nt-accent-ink: #ffffff;
	--nt-accent-soft: rgba(67, 97, 238, 0.1);
	--nt-mint: #12b76a;
	--nt-amber: #fb8500;
	--nt-teal: #4cc9f0;

	--nt-bg: #ffffff;
	--nt-bg-2: #f8fafc;
	--nt-bg-3: #f1f5f9;
	--nt-ink: #020817;
	--nt-ink-2: #475569;
	--nt-ink-3: #64748b;
	--nt-line: #e2e8f0;
	--nt-line-2: #cbd5e1;
	--nt-shade: rgba(15, 23, 42, 0.1);

	/* shape */
	--nt-r-xs: 6px;
	--nt-r-sm: 8px;
	--nt-r: 12px;
	--nt-r-lg: 16px;
	--nt-r-pill: 9999px;

	/* metrics */
	--nt-wrap: 1280px;
	--nt-gut: clamp(16px, 4vw, 32px);
	--nt-gap: clamp(16px, 1.8vw, 24px);
	--nt-sec-y: clamp(52px, 6vw, 84px);

	/* type */
	--nt-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--nt-head: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	--nt-grad: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
	--nt-grad-soft: linear-gradient(90deg, #eff6ff 0%, #eef2ff 45%, #f5f3ff 100%);
	--nt-sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
	--nt-sh: 0 4px 14px -6px rgba(15, 23, 42, 0.12);
	--nt-sh-lg: 0 18px 38px -20px rgba(15, 23, 42, 0.28);
	--nt-t: 150ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

[data-theme="dark"] {
	--nt-accent: #6d83f2;
	--nt-accent-2: #a855f7;
	--nt-accent-soft: rgba(109, 131, 242, 0.16);
	--nt-bg: #0b1020;
	--nt-bg-2: #121a30;
	--nt-bg-3: #18213b;
	--nt-ink: #f1f5f9;
	--nt-ink-2: #c3cbd9;
	--nt-ink-3: #93a0b4;
	--nt-line: #1f2a44;
	--nt-line-2: #2d3a58;
	--nt-shade: rgba(0, 0, 0, 0.5);
	--nt-grad: linear-gradient(90deg, #8b9dff 0%, #c084fc 100%);
	--nt-grad-soft: linear-gradient(90deg, #101731 0%, #141a35 50%, #1a1436 100%);
}

/* --- base type ----------------------------------------------------------- */

body {
	font-family: var(--nt-sans);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	color: var(--nt-ink-2);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nt-head);
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.22;
	color: var(--nt-ink);
}

.nt-grad-text,
.nt-word-text,
.nt-hero-title,
.nt-masthead-title,
.nt-404-code {
	background: var(--nt-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* --- buttons ------------------------------------------------------------- */

.nt-btn {
	font-family: var(--nt-sans);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0;
	padding: 11px 22px;
	border-radius: var(--nt-r-pill);
	transition: background var(--nt-t), color var(--nt-t), border-color var(--nt-t), box-shadow var(--nt-t), transform var(--nt-t);
}

.nt-btn-sm { padding: 7px 16px; font-size: 13.5px; }
.nt-btn-lg { padding: 13px 28px; font-size: 16px; }

.nt-btn-accent {
	background: var(--nt-accent);
	border-color: var(--nt-accent);
	box-shadow: var(--nt-sh-sm);
}

.nt-btn-accent:hover {
	background: #3a55d9;
	border-color: #3a55d9;
	box-shadow: 0 8px 20px -10px rgba(67, 97, 238, 0.8);
	transform: translateY(-1px);
}

.nt-btn-solid {
	background: var(--nt-accent);
	border-color: var(--nt-accent);
	color: #fff;
}

.nt-btn-solid:hover {
	background: var(--nt-accent-2);
	border-color: var(--nt-accent-2);
	color: #fff;
	transform: translateY(-1px);
}

.nt-btn-ghost {
	border-color: var(--nt-line-2);
	color: var(--nt-ink);
	background: var(--nt-bg);
}

.nt-btn-ghost:hover {
	border-color: var(--nt-accent);
	color: var(--nt-accent);
	background: var(--nt-accent-soft);
}

.nt-icon-btn { border-radius: var(--nt-r-pill); width: 40px; height: 40px; color: var(--nt-ink-2); }
.nt-icon-btn:hover { background: var(--nt-bg-3); color: var(--nt-accent); border-color: var(--nt-line); }

.nt-chip { border-radius: var(--nt-r-pill); font-weight: 600; font-size: 12.5px; padding: 5px 12px; }
.nt-chip-accent { background: var(--nt-accent-soft); color: var(--nt-accent); }

/* --- header -------------------------------------------------------------- */

.nt-ticker { display: none; }

.nt-header {
	background: var(--nt-bg);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom: 1px solid var(--nt-line);
	box-shadow: var(--nt-sh-sm);
}

.nt-header.is-stuck { box-shadow: 0 2px 10px -6px rgba(15, 23, 42, 0.25); }
.nt-header-in { min-height: 68px; gap: clamp(14px, 2.4vw, 36px); }

.nt-brand .custom-logo { max-height: 34px; }

.nt-word {
	font-family: var(--nt-head);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: -0.02em;
	gap: 0;
}

.nt-word-mark { display: none; }
.nt-word-text { font-weight: 700; }
.nt-word-text b { font-weight: 700; }

.nt-nav { display: flex; justify-content: flex-end; }
.nt-menu { gap: 6px; }

.nt-menu > li > a {
	padding: 8px 14px;
	border-radius: var(--nt-r-sm);
	font-size: 15.5px;
	font-weight: 500;
	color: #374151;
	background: none;
}

[data-theme="dark"] .nt-menu > li > a { color: var(--nt-ink-2); }

.nt-menu > li > a:hover,
.nt-menu > li.current-menu-item > a,
.nt-menu > li.current_page_item > a {
	color: var(--nt-accent);
	background: none;
}

.nt-menu .sub-menu { border-radius: var(--nt-r); box-shadow: var(--nt-sh-lg); }
.nt-header-tools { gap: 10px; }
.nt-search-form, .nt-search-inline, .nt-hero-search { border-radius: var(--nt-r-pill); }
.nt-search-form:focus-within, .nt-search-inline:focus-within, .nt-hero-search:focus-within {
	box-shadow: 0 0 0 4px var(--nt-accent-soft);
}
.nt-suggest { border-radius: var(--nt-r); box-shadow: var(--nt-sh-lg); }
.nt-mobile { padding-top: 84px; }
.nt-mobile-menu a { font-family: var(--nt-head); font-weight: 600; }

/* --- hero ---------------------------------------------------------------- */

.nt-hero {
	background: var(--nt-grad-soft);
	border-bottom: 1px solid var(--nt-line);
	padding-block: clamp(56px, 7vw, 104px) clamp(52px, 6vw, 88px);
	text-align: center;
}

.nt-hero-grid { display: none; }

.nt-hero-in {
	max-width: 900px;
	margin-inline: auto;
}

.nt-eyebrow,
.nt-hero-tags,
.nt-hero-actions,
.nt-hero .nt-chiplist { justify-content: center; }

.nt-hero-title {
	font-family: var(--nt-head);
	font-size: clamp(38px, 6vw, 62px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.nt-hero-sub {
	max-width: 60ch;
	margin: 0 auto 30px;
	font-size: clamp(16.5px, 1.6vw, 19px);
	color: var(--nt-ink-2);
}

.nt-hero-search {
	margin-inline: auto;
	background: var(--nt-bg);
	border-color: var(--nt-line);
	box-shadow: var(--nt-sh);
	padding: 7px 7px 7px 20px;
}

.nt-hero-actions { margin-top: 28px; }

.nt-hero-stats {
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-line);
	box-shadow: var(--nt-sh-sm);
	overflow: hidden;
}

.nt-hero-stats > div { padding: 20px 18px; text-align: center; }
.nt-hero-stats dt { font-size: 11px; letter-spacing: 0.1em; font-weight: 700; }
.nt-hero-stats dd { font-family: var(--nt-head); font-weight: 700; color: var(--nt-ink); }

/* --- section heads ------------------------------------------------------- */

.nt-sec-head {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: clamp(28px, 3.4vw, 44px);
}

.nt-sec-eyebrow,
.nt-eyebrow {
	color: var(--nt-accent);
	font-size: 12px;
	letter-spacing: 0.12em;
	justify-content: center;
}

.nt-sec-title {
	font-family: var(--nt-head);
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 700;
	letter-spacing: -0.015em;
}

.nt-sec-head > div { max-width: 62ch; }

.nt-sec-link {
	margin-top: 4px;
	padding: 9px 20px;
	border: 1px solid var(--nt-line-2);
	border-radius: var(--nt-r-pill);
	font-size: 14.5px;
	font-weight: 600;
	color: var(--nt-accent);
	background: var(--nt-bg);
	transition: background var(--nt-t), border-color var(--nt-t), box-shadow var(--nt-t);
}

.nt-sec-link:hover {
	border-color: var(--nt-accent);
	background: var(--nt-accent-soft);
	box-shadow: var(--nt-sh-sm);
}

.nt-sec-title-sm {
	font-size: clamp(20px, 2.2vw, 24px);
	border-bottom: 0;
	padding-bottom: 0;
}

.nt-sec-alt { background: var(--nt-bg-2); }

.nt-sec-dark {
	background: var(--nt-grad);
	color: #fff;
}

.nt-sec-dark h1, .nt-sec-dark h2, .nt-sec-dark h3, .nt-sec-dark .nt-sec-eyebrow { color: #fff; }
.nt-sec-dark .nt-btn-ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; background: transparent; }
.nt-sec-dark .nt-btn-ghost:hover { background: #fff; color: var(--nt-accent); border-color: #fff; }

/* --- cards --------------------------------------------------------------- */

.nt-card {
	border-radius: var(--nt-r-lg);
	box-shadow: var(--nt-sh-sm);
	transition: border-color var(--nt-t), transform var(--nt-t), box-shadow var(--nt-t);
}

.nt-card:hover {
	border-color: #c7d2fe;
	box-shadow: var(--nt-sh-lg);
	transform: translateY(-4px);
}

.nt-card-title {
	font-family: var(--nt-head);
	font-size: 17.5px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.35;
	color: var(--nt-ink);
}

.nt-card-text { font-size: 14.5px; line-height: 1.6; color: var(--nt-ink-3); }
.nt-card-body { padding: 18px 20px 20px; }
.nt-card-tool { padding: 20px; }
.nt-kicker-cat { color: var(--nt-accent); letter-spacing: 0.08em; }
.nt-card-post.is-lead .nt-card-title { font-size: clamp(21px, 2.4vw, 28px); font-weight: 700; }
.nt-ranked::before { background: var(--nt-accent); color: #fff; border-radius: var(--nt-r-pill); padding: 3px 9px; }
.nt-ranked:first-child::before { background: var(--nt-accent-2); }

.nt-tile { border-radius: var(--nt-r-lg); }
.nt-tile:hover { border-color: #c7d2fe; box-shadow: var(--nt-sh); transform: translateY(-3px); }

/* --- mastheads / breadcrumbs / pagination -------------------------------- */

.nt-masthead {
	background: var(--nt-grad-soft);
	border-bottom: 1px solid var(--nt-line);
	text-align: center;
	padding-block: clamp(44px, 5.5vw, 76px) clamp(38px, 4.5vw, 62px);
}

.nt-masthead-title {
	font-family: var(--nt-head);
	font-size: clamp(32px, 4.6vw, 52px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.nt-masthead-sub { margin-inline: auto; font-size: 17px; }
.nt-masthead .nt-crumbs ol { justify-content: center; }
.nt-masthead-count { color: var(--nt-ink-3); }

.nt-pager .page-numbers { border-radius: var(--nt-r-pill); }
.nt-pager .page-numbers.current { background: var(--nt-accent); border-color: var(--nt-accent); color: #fff; }
.nt-empty { border-radius: var(--nt-r-lg); }

/* --- article ------------------------------------------------------------- */

.nt-article-head {
	background: var(--nt-grad-soft);
	border-bottom: 1px solid var(--nt-line);
	padding-block: clamp(30px, 4vw, 52px) clamp(28px, 3.4vw, 44px);
}

.nt-article-head .nt-wrap.nt-narrow { max-width: 860px; }

.nt-article-title {
	font-family: var(--nt-head);
	font-size: clamp(30px, 4.2vw, 46px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--nt-ink);
}

.nt-article-standfirst { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--nt-ink-2); }

.nt-byline {
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	border-bottom: 0;
	padding-bottom: 0;
}

.nt-article-head .nt-article-figure {
	margin-top: clamp(20px, 3vw, 30px);
	margin-bottom: 0;
	border-radius: var(--nt-r-lg);
	box-shadow: var(--nt-sh-lg);
}

/* two column article body + sidebar */
.nt-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: clamp(28px, 3.6vw, 56px);
	align-items: start;
	padding-block: clamp(32px, 4vw, 56px) var(--nt-sec-y);
}

.nt-article-main { min-width: 0; }

.nt-side {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 20px;
	font-size: 14.5px;
}

.nt-side-share { display: flex; gap: 10px; flex-wrap: wrap; }

.nt-side-share a,
.nt-side-share button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-pill);
	background: var(--nt-bg);
	color: var(--nt-ink-2);
	box-shadow: var(--nt-sh-sm);
	transition: color var(--nt-t), border-color var(--nt-t), transform var(--nt-t);
}

.nt-side-share a:hover,
.nt-side-share button:hover { color: var(--nt-accent); border-color: var(--nt-accent); transform: translateY(-2px); }

.nt-side-box {
	padding: 20px;
	border: 1px solid var(--nt-line);
	border-radius: var(--nt-r-lg);
	background: var(--nt-bg);
	box-shadow: var(--nt-sh-sm);
}

.nt-side-cta {
	text-align: center;
	border-color: transparent;
	background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
}

[data-theme="dark"] .nt-side-cta { background: linear-gradient(135deg, #16203c 0%, #1e1638 100%); }

.nt-side-cta p {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 500;
	color: var(--nt-ink);
}

.nt-side-h {
	margin: 0 0 12px;
	font-family: var(--nt-head);
	font-size: 16.5px;
	font-weight: 600;
	color: var(--nt-ink);
}

.nt-side-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.nt-side-list a { color: var(--nt-ink-2); font-size: 14.5px; }
.nt-side-list a:hover { color: var(--nt-accent); }
.nt-side-list li { border-bottom: 1px dashed var(--nt-line); padding-bottom: 9px; }
.nt-side-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.nt-toc { counter-reset: nt-toc; }
.nt-toc ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.nt-toc li { counter-increment: nt-toc; display: flex; gap: 9px; font-size: 14px; line-height: 1.45; }
.nt-toc li::before { content: counter(nt-toc) "."; color: var(--nt-ink-3); font-variant-numeric: tabular-nums; }
.nt-toc a { color: var(--nt-ink-2); }
.nt-toc a:hover, .nt-toc a.is-active { color: var(--nt-accent); font-weight: 600; }
.nt-toc-scroll { max-height: 340px; overflow-y: auto; padding-right: 4px; }

/* prose */
.nt-prose { font-size: 17px; line-height: 1.75; color: #343131; }
[data-theme="dark"] .nt-prose { color: var(--nt-ink-2); }
.nt-prose h2 { font-family: var(--nt-head); font-size: clamp(23px, 2.6vw, 30px); font-weight: 600; margin: 1.8em 0 0.5em; }
.nt-prose h3 { font-family: var(--nt-head); font-size: clamp(19px, 2vw, 23px); font-weight: 600; }
.nt-prose a { color: var(--nt-accent); }
.nt-prose li::marker { color: var(--nt-accent); }
.nt-prose blockquote { border-left: 4px solid var(--nt-accent); background: var(--nt-bg-2); border-radius: 0 var(--nt-r) var(--nt-r) 0; padding: 14px 20px; }
.nt-prose img, .nt-prose figure { border-radius: var(--nt-r-lg); }
.nt-prose pre { border-radius: var(--nt-r); }
.nt-authorbox { border-radius: var(--nt-r-lg); background: var(--nt-bg-2); box-shadow: var(--nt-sh-sm); }
.nt-authorbox-name { font-family: var(--nt-head); }
.nt-authorhead { background: var(--nt-grad-soft); }

/* --- newsletter / faq / 404 ---------------------------------------------- */

.nt-news-box {
	border-color: transparent;
	border-radius: 20px;
	background: var(--nt-grad);
	background-image: var(--nt-grad);
	color: rgba(255, 255, 255, 0.92);
	box-shadow: var(--nt-sh-lg);
}

.nt-news-box .nt-sec-title,
.nt-news-box .nt-sec-eyebrow,
.nt-news-box .nt-news-sub,
.nt-news-box .nt-news-note { color: #fff; }

.nt-news-box .nt-news-sub,
.nt-news-box .nt-news-note { color: rgba(255, 255, 255, 0.82); }

.nt-news-box input[type="email"],
.nt-news-box input[type="text"] {
	border-radius: var(--nt-r-pill);
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	padding: 12px 18px;
}

.nt-news-box input::placeholder { color: rgba(255, 255, 255, 0.75); }

.nt-news-box .nt-btn-accent,
.nt-news-box .nt-btn-solid {
	background: #fff;
	border-color: #fff;
	color: var(--nt-accent);
}

.nt-news-box .nt-btn-accent:hover,
.nt-news-box .nt-btn-solid:hover { background: #f1f5ff; border-color: #f1f5ff; color: var(--nt-accent-2); }

.nt-news-box .nt-sec-head { align-items: flex-start; text-align: left; }

.nt-faq-item summary { font-family: var(--nt-head); font-weight: 600; }
.nt-faq-list { border-top: 0; }
.nt-faq-item { border-bottom: 1px solid var(--nt-line); }
.nt-404-code { -webkit-text-stroke: 0; }

/* --- footer -------------------------------------------------------------- */

.nt-footer {
	background: var(--nt-bg);
	border-top: 1px solid var(--nt-line);
	padding-block: clamp(44px, 5vw, 64px) 26px;
}

.nt-footer-top { border-bottom: 1px solid var(--nt-line); }
.nt-footer-brand .nt-word { font-size: 23px; }
.nt-footer-blurb { color: var(--nt-ink-3); font-size: 14.5px; }
.nt-footer-h { font-family: var(--nt-head); font-size: 12px; letter-spacing: 0.1em; color: var(--nt-ink-3); }
.nt-footer-list a { font-size: 14.5px; color: var(--nt-ink-2); }
.nt-footer-bar { justify-content: center; text-align: center; flex-direction: column; gap: 10px; font-size: 13.5px; padding-top: 24px; }
.nt-legal { justify-content: center; }
.nt-top { border-radius: var(--nt-r-pill); box-shadow: var(--nt-sh); }
.nt-top:hover { background: var(--nt-accent); border-color: var(--nt-accent); color: #fff; }

/* --- directory / tool pages --------------------------------------------- */

.nt-panel,
.nt-facet,
.nt-board,
.nt-tool-side .nt-panel { border-radius: var(--nt-r-lg); }

.nt-toolbar { border-radius: var(--nt-r-pill); }

/* --- comments ------------------------------------------------------------ */

.nt-comments input[type="text"],
.nt-comments input[type="email"],
.nt-comments input[type="url"],
.nt-comments textarea,
.nt-news-form input,
.nt-form input[type="text"],
.nt-form input[type="email"],
.nt-form textarea {
	border-radius: var(--nt-r);
}

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 1024px) {
	.nt-article-layout { grid-template-columns: minmax(0, 1fr); }
	.nt-side { position: static; max-width: 720px; }
}

@media (max-width: 860px) {
	.nt-news-box { border-radius: var(--nt-r-lg); }
	.nt-hero-stats > div { padding: 14px 12px; }
}

/* --- static pages: centred masthead like the archive heads --------------- */

.nt-page > .nt-article-head { text-align: center; }
.nt-page > .nt-article-head .nt-crumbs ol { justify-content: center; }
.nt-page > .nt-article-head .nt-article-standfirst { margin-inline: auto; }

.nt-page > .nt-article-head .nt-article-title {
	background: var(--nt-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.nt-page > .nt-article-head .nt-byline { justify-content: center; border-top: 0; }
