/* ==========================================================================
   NovoCircle — styles.css
   Fresh, modern design system (2026 rebuild). Built on the brand colors;
   clean system-font typography, generous whitespace, color as accent.
   Authored from scratch — does NOT inherit the legacy theme stylesheet.
   ========================================================================== */

:root {
	/* Brand (live values) */
	--blue:   #1B75BB;  --blue-700: #145a92;  --blue-050: #eaf3fb;
	--sky:    #26A9E0;  --sky-050:  #e7f6fd;
	--green:  #8BC53F;  --green-050:#f0f8e4;
	--orange: #F7941D;  --orange-050:#fff3e2;
	--teal:   #169DDA;
	--ink:    #14181F;   /* near-black text */
	--ink-2:  #3a4452;   /* secondary text */
	--muted:  #6b7787;   /* tertiary text */
	--line:   #e6eaf0;   /* hairlines */
	--bg:     #ffffff;
	--bg-soft:#f6f8fb;   /* section tint */
	--bg-ink: #0e1726;   /* dark sections */

	--font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--maxw: 1200px;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow-sm: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.08);
	--shadow:    0 4px 6px -2px rgba(16,24,40,.05), 0 12px 24px -6px rgba(16,24,40,.12);
	--shadow-lg: 0 24px 48px -12px rgba(16,24,40,.18);
	--ease: .25s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset / base ---- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
	font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); letter-spacing: -0.015em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: #fff; padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }

/* ---- Layout ---- */
.nc-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.nc-section { padding: clamp(56px, 7vw, 104px) 0; }
.nc-section--soft { background: var(--bg-soft); }
.nc-section--ink { background: var(--bg-ink); color: #cdd6e3; }
.nc-section--ink h2, .nc-section--ink h3 { color: #fff; }
.nc-section--tight { padding: clamp(40px,5vw,64px) 0; }
/* Brand-tinted section backgrounds (logo colors, not gray) */
.nc-section--blue-tint  { background: #e7f1fb; }
.nc-section--sky-tint   { background: #e3f5fd; }
.nc-section--green-tint { background: #edf7df; }
.nc-section--orange-tint{ background: #fff1e6; }

/* ---- Track accent system: carry the audience color through a track's pages ---- */
body.track-managers      { --track: var(--blue); --track-deep: #145a92; --track-tint: #e7f1fb; }
body.track-employees     { --track: var(--sky);  --track-deep: #1488c0; --track-tint: #e3f5fd; }
body.track-entrepreneurs { --track: #5f9e23;     --track-deep: #4a7e1a; --track-tint: #edf7df; }
/* soft / tinted sections pick up the track color instead of neutral gray */
body[class*="track-"] .nc-section--soft,
body[class*="track-"] .nc-section--blue-tint { background: var(--track-tint); }
/* closing CTA band carries the track color (bold, like the homepage bands) */
body[class*="track-"] .nc-cta-band { background: linear-gradient(125deg, var(--track) 0%, var(--track-deep) 100%); }
/* accents tie to the track color */
body[class*="track-"] .nc-aside { border-top: 3px solid var(--track); }
body[class*="track-"] .nc-check li::before { background: var(--track); }
body[class*="track-"] .nc-phero__quote { border-left-color: var(--track); }

.nc-section-head { max-width: 720px; margin: 0 auto clamp(36px,4vw,56px); text-align: center; }
.nc-section-head--left { margin-left: 0; text-align: left; }
.nc-section-head p { color: var(--ink-2); font-size: 1.125rem; margin: 0; }

.nc-eyebrow {
	display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.nc-section--ink .nc-eyebrow { color: var(--sky); }

/* ---- Buttons ---- */
.nc-btn {
	display: inline-flex; align-items: center; gap: .5em; cursor: pointer;
	font: inherit; font-weight: 650; font-size: 1rem; line-height: 1;
	padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
	transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
	text-decoration: none; white-space: nowrap;
}
.nc-btn:hover { text-decoration: none; transform: translateY(-1px); }
.nc-btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.nc-btn--primary:hover { background: var(--blue-700); box-shadow: var(--shadow); }
.nc-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.nc-btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.nc-btn--light { background: #fff; color: var(--ink); }
.nc-btn--light:hover { background: #eef3f9; }
.nc-btn--lg { padding: 18px 32px; font-size: 1.0625rem; }

.nc-textlink { font-weight: 650; color: var(--blue); display: inline-flex; align-items: center; gap: .35em; }
.nc-textlink:hover { gap: .6em; text-decoration: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.nc-header {
	position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.86);
	backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.nc-header__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nc-header__logo img { height: 36px; width: auto; }

.nc-nav { display: flex; }
.nc-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nc-nav__item { position: relative; }
.nc-nav__link {
	display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px;
	font-size: .96rem; font-weight: 600; color: var(--ink-2); border-radius: 9px;
	transition: color var(--ease), background var(--ease);
}
.nc-nav__link:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.nc-nav__arrow { font-size: .55em; transition: transform var(--ease); opacity: .6; }
.nc-nav__item--has-dropdown:hover .nc-nav__arrow,
.nc-nav__item--has-dropdown:focus-within .nc-nav__arrow { transform: rotate(180deg); }

.nc-nav__cta { background: var(--blue); color: #fff !important; padding: 10px 18px; }
.nc-nav__cta:hover { background: var(--blue-700); color: #fff !important; }

/* Dropdowns (CSS hover + focus-within; JS optional) */
.nc-dropdown {
	position: absolute; top: calc(100% + 10px); left: 0; min-width: 264px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.nc-nav__item--has-dropdown:hover > .nc-dropdown,
.nc-nav__item--has-dropdown:focus-within > .nc-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nc-dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nc-dropdown__link {
	display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; border-radius: 9px;
	color: var(--ink); font-size: .94rem; font-weight: 600;
}
.nc-dropdown__link:hover { background: var(--blue-050); color: var(--blue); text-decoration: none; }
.nc-dropdown__tag { font-size: .72rem; font-weight: 700; color: var(--orange); letter-spacing: .03em; text-transform: uppercase; }

/* Mega menu — audience nav that tells a story */
.nc-mega {
	position: absolute; top: calc(100% + 10px); left: 0; width: 600px;
	background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg);
	display: grid; grid-template-columns: 196px 1fr; overflow: hidden; z-index: 50;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.nc-mega--right { left: auto; right: 0; }
.nc-mega--managers { --m: var(--blue); --m050: var(--blue-050); }
.nc-mega--employees { --m: var(--sky); --m050: var(--sky-050); }
.nc-mega--entrepreneurs { --m: #5f9e23; --m050: var(--green-050); }
.nc-nav__item--has-dropdown:hover > .nc-mega,
.nc-nav__item--has-dropdown:focus-within > .nc-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nc-mega::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nc-mega__intro { background: var(--m050); padding: 26px 22px; display: flex; flex-direction: column; }
.nc-mega__eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--m); margin-bottom: 10px; }
.nc-mega__lede { font-size: 1.12rem; font-weight: 800; line-height: 1.22; letter-spacing: -.015em; color: var(--ink); margin: 0 0 8px; }
.nc-mega__sub { font-size: .82rem; color: var(--ink-2); line-height: 1.4; margin: 0 0 16px; }
.nc-mega__cta { margin-top: auto; font-weight: 700; color: var(--m); font-size: .9rem; display: inline-flex; gap: 6px; }
.nc-mega__cta:hover { gap: 9px; text-decoration: none; }
.nc-mega__main { padding: 20px; }
.nc-mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nc-mega__grouphead { font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px 9px; }
.nc-mega__link { display: block; padding: 8px 9px; border-radius: 10px; }
.nc-mega__link:hover { background: var(--m050); text-decoration: none; }
.nc-mega__link strong { display: block; font-weight: 650; font-size: .9rem; color: var(--ink); }
.nc-mega__link span { display: block; font-size: .76rem; color: var(--muted); line-height: 1.32; margin-top: 1px; }
.nc-mega__link .nc-mega__tag { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--orange); margin-left: 6px; }
.nc-mega__foot { display: block; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 700; color: var(--m); font-size: .86rem; }
.nc-mega__foot:hover { text-decoration: none; padding-left: 3px; }

/* Hamburger + mobile nav */
.nc-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nc-hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--ease); }
.nc-mobile-nav { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.nc-mobile-nav.is-open { visibility: visible; }
.nc-mobile-nav__overlay { position: absolute; inset: 0; background: rgba(14,23,38,.4); opacity: 0; transition: opacity var(--ease); }
.nc-mobile-nav.is-open .nc-mobile-nav__overlay { opacity: 1; }
.nc-mobile-nav__inner {
	position: absolute; top: 0; right: 0; height: 100%; width: min(88%, 360px); background: #fff;
	padding: 88px 22px 32px; overflow-y: auto; transform: translateX(100%); transition: transform var(--ease);
	box-shadow: var(--shadow-lg);
}
.nc-mobile-nav.is-open .nc-mobile-nav__inner { transform: translateX(0); }
.nc-mobile-nav__item { border-bottom: 1px solid var(--line); }
.nc-mobile-nav__link { display: flex; width: 100%; justify-content: space-between; align-items: center;
	background: none; border: 0; font: inherit; font-size: 1.05rem; font-weight: 650; color: var(--ink);
	padding: 16px 4px; cursor: pointer; text-align: left; }
.nc-mobile-nav__sub { list-style: none; margin: 0; padding: 0 0 12px; }
.nc-mobile-nav__sub-link { display: block; padding: 9px 4px; color: var(--ink-2); font-weight: 600; font-size: .98rem; }
.nc-mobile-nav__cta-wrap { margin-top: 22px; }
.nc-mobile-nav__cta { display: block; text-align: center; background: var(--blue); color: #fff; padding: 15px; border-radius: 999px; font-weight: 650; }

/* ==========================================================================
   Hero
   ========================================================================== */
.nc-hero { position: relative; overflow: hidden;
	background: linear-gradient(180deg, #e9f3fc 0%, #f3f9fd 60%, #ffffff 100%);
	padding: clamp(56px, 7vw, 96px) 0 clamp(48px,6vw,84px); }
.nc-hero::before {
	content: ""; position: absolute; inset: 0; z-index: 0;
	background:
		radial-gradient(48% 60% at 90% -8%, rgba(38,169,224,.28) 0%, transparent 60%),
		radial-gradient(42% 52% at 102% 62%, rgba(139,197,63,.20) 0%, transparent 58%),
		radial-gradient(50% 60% at -8% 6%, rgba(27,117,187,.16) 0%, transparent 56%),
		radial-gradient(38% 48% at 12% 104%, rgba(247,148,29,.16) 0%, transparent 55%);
}
.nc-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr;
	gap: clamp(32px, 4vw, 56px); align-items: center; }
.nc-hero__h1 { margin: 12px 0 18px; font-size: clamp(2rem, 1.1rem + 2.7vw, 3.05rem); line-height: 1.08; }
.nc-hero__lede { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); color: var(--ink-2); max-width: 40ch; margin: 0 0 20px; }
.nc-hero__urgency { display: inline-block; margin: 0 0 26px; padding: 11px 18px;
	border-left: 4px solid var(--orange); background: var(--orange-050); color: var(--ink);
	font-size: 1.08rem; border-radius: 0 10px 10px 0; }
.nc-hero__urgency strong { font-weight: 800; }
.nc-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.nc-hero__note { margin-top: 22px; font-size: .92rem; color: var(--muted); }
.nc-hero__note a { font-weight: 650; }

/* Hero book/quote card */
.nc-bookcard {
	background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px;
	box-shadow: var(--shadow-lg); position: relative;
	display: flex; gap: 24px; align-items: flex-start;
}
.nc-bookcard__cover { width: 240px; flex-shrink: 0; border-radius: 6px; box-shadow: var(--shadow-lg); }
.nc-bookcard__body { min-width: 0; }
.nc-bookcard__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.nc-bookcard__quote { font-size: 1.2rem; line-height: 1.32; font-weight: 800; margin: 10px 0 14px; letter-spacing: -.015em; }
.nc-bookcard__by { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.nc-bookcard__by em { color: var(--ink-2); font-style: italic; }
.nc-bookcard__bestseller { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px;
	font-size: .72rem; font-weight: 800; letter-spacing: .02em; color: #8a5a00;
	background: linear-gradient(90deg, #ffe9b0, #ffd470); padding: 5px 11px; border-radius: 999px; }
@media (max-width: 1100px) and (min-width: 981px) { .nc-bookcard { flex-direction: column; } }
@media (max-width: 420px) { .nc-bookcard { flex-direction: column; } }

/* ==========================================================================
   Track "doors" — bold, color-filled panels
   ========================================================================== */
.nc-doors { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.nc-door {
	display: flex; flex-direction: column; border-radius: 20px; padding: 32px; color: #fff;
	background: linear-gradient(155deg, var(--c1) 0%, var(--c2) 100%);
	box-shadow: var(--shadow); position: relative; overflow: hidden;
	transition: transform var(--ease), box-shadow var(--ease);
}
.nc-door::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
	background: rgba(255,255,255,.12); border-radius: 50%; }
.nc-door:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.nc-door--managers { --c1: #2f97e6; --c2: #145a92; }
.nc-door--employees { --c1: #3fc4f1; --c2: #1488c0; }
.nc-door--entrepreneurs { --c1: #9ed450; --c2: #5f9e23; }
.nc-door > * { position: relative; z-index: 1; }
.nc-door__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-bottom: 10px; }
.nc-door__title { color: #fff; margin: 0 0 8px; }
.nc-door__lede { font-weight: 700; font-size: 1.08rem; margin: 0 0 12px; }
.nc-door__body { font-size: .96rem; opacity: .92; margin: 0 0 18px; }
.nc-door__links { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.nc-door__links a { color: #fff; font-weight: 600; font-size: .95rem; display: inline-flex; gap: 9px; opacity: .96; }
.nc-door__links a::before { content: "→"; opacity: .75; }
.nc-door__links a:hover { opacity: 1; text-decoration: none; padding-left: 3px; }
.nc-door__cta { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Stat band — vivid full-bleed numbers
   ========================================================================== */
.nc-stats { background: linear-gradient(115deg, var(--blue) 0%, var(--teal) 52%, var(--sky) 100%); color: #fff; }
.nc-stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; text-align: center; }
.nc-stat__num { font-size: clamp(2.8rem, 2rem + 4vw, 4.6rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.nc-stat__label { margin-top: 12px; font-size: 1.02rem; opacity: .94; font-weight: 600; }
.nc-stats__cite { text-align: center; margin: 28px 0 0; font-size: .9rem; opacity: .8; }
.nc-stats__cite em { font-style: italic; }

/* ==========================================================================
   Split feature (whitepapers) — dark panel + accent list
   ========================================================================== */
.nc-feature { display: grid; grid-template-columns: 1.05fr 1fr; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.nc-feature__panel { background: linear-gradient(165deg, #0e1726 0%, #173a66 100%); color: #fff; padding: clamp(32px,4vw,52px); display: flex; flex-direction: column; justify-content: center; }
.nc-feature__panel h2 { color: #fff; }
.nc-feature__panel p { color: #b9c6d8; }
.nc-feature__list { background: #fff; padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.nc-feature__item { display: block; padding: 20px; border-radius: 14px; border-left: 5px solid var(--accent, var(--teal)); transition: background var(--ease), transform var(--ease); }
.nc-feature__item:hover { background: var(--bg-soft); transform: translateX(3px); text-decoration: none; }
.nc-feature__item:nth-child(1) { --accent: var(--teal); }
.nc-feature__item:nth-child(2) { --accent: var(--orange); }
.nc-feature__item:nth-child(3) { --accent: var(--green); }
.nc-feature__kicker { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.nc-feature__t { display: block; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin: 4px 0; }
.nc-feature__d { display: block; font-size: .92rem; color: var(--ink-2); }

/* ==========================================================================
   Post list (insights) — rows, not cards
   ========================================================================== */
.nc-postlist { max-width: 920px; }
.nc-postrow { display: grid; grid-template-columns: 120px 1fr auto; gap: 24px; align-items: center;
	padding: 24px 8px; border-bottom: 1px solid var(--line); transition: background var(--ease); border-radius: 10px; }
.nc-postrow:hover { background: #fff; }
.nc-postrow__tag { font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; justify-self: start; }
.nc-postrow__tag--mgr { color: var(--blue); background: var(--blue-050); }
.nc-postrow__tag--emp { color: var(--sky); background: var(--sky-050); }
.nc-postrow__title { font-weight: 700; font-size: 1.12rem; color: var(--ink); margin: 0; }
.nc-postrow__title a { color: inherit; }
.nc-postrow__arrow { color: var(--blue); font-weight: 700; font-size: 1.3rem; }

/* ==========================================================================
   NovoCircle Method — numbered steps (not cards)
   ========================================================================== */
.nc-method { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.nc-step { border-top: 3px solid var(--c, var(--blue)); padding-top: 16px; }
.nc-step--1 { --c: var(--blue); }
.nc-step--2 { --c: var(--sky); }
.nc-step--3 { --c: #5f9e23; }
.nc-step--4 { --c: var(--orange); }
.nc-step__num { font-size: 2.5rem; font-weight: 800; color: var(--c); line-height: 1; letter-spacing: -.03em; }
.nc-step__q { font-size: 1.06rem; font-weight: 750; margin: 14px 0 8px; line-height: 1.24; color: var(--ink); }
.nc-step__d { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0; }
.nc-method__note { margin: 40px auto 0; max-width: 780px; text-align: center; color: var(--ink-2); font-size: 1.02rem; }
.nc-method__note a { font-weight: 700; }

/* ==========================================================================
   Author / founder section
   ========================================================================== */
.nc-author__grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.nc-author__photo { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); display: block; }
.nc-author__role { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.nc-author__name { margin: 0 0 16px; }
.nc-author__bio { color: var(--ink-2); font-size: 1.1rem; line-height: 1.7; margin: 0 0 16px; }
.nc-author__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

/* ==========================================================================
   Insights — featured editorial layout
   ========================================================================== */
.nc-insights2 { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; }
.nc-ipost { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
	border-radius: 16px; box-shadow: var(--shadow-sm); transition: box-shadow var(--ease), transform var(--ease); text-decoration: none; }
.nc-ipost:hover { box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; }
.nc-ipost--feature { padding: 36px; justify-content: center; border-top: 4px solid var(--blue); }
.nc-ipost__tag { align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
	padding: 5px 11px; border-radius: 999px; margin-bottom: 14px; }
.nc-ipost__tag--mgr { color: var(--blue); background: var(--blue-050); }
.nc-ipost__tag--emp { color: var(--sky); background: var(--sky-050); }
.nc-ipost__tag--ent { color: #5f9e23; background: var(--green-050); }
.nc-ipost__title { color: var(--ink); margin: 0 0 12px; line-height: 1.2; }
.nc-ipost--feature .nc-ipost__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.nc-ipost__excerpt { color: var(--ink-2); font-size: 1rem; margin: 0 0 18px; }
.nc-ipost__read { color: var(--blue); font-weight: 700; margin-top: auto; }
.nc-ipost__side { display: flex; flex-direction: column; gap: 18px; }
.nc-ipost__side .nc-ipost { padding: 22px 24px; }
.nc-ipost__side .nc-ipost__title { font-size: 1.12rem; margin: 0 0 8px; }
.nc-ipost__side .nc-ipost__read { font-size: .9rem; }

/* ==========================================================================
   Inner pages — page hero, prose, deliverables, scope aside, related
   ========================================================================== */
.nc-phero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
	padding: clamp(36px,4vw,64px) 0 clamp(32px,4vw,52px);
	background: linear-gradient(180deg, var(--ph-tint, #eef5fc) 0%, #ffffff 100%); }
.nc-phero--managers { --ph-accent: var(--blue); --ph-tint: #e9f2fb; }
.nc-phero--employees { --ph-accent: var(--sky); --ph-tint: #e4f5fd; }
.nc-phero--entrepreneurs { --ph-accent: #5f9e23; --ph-tint: #edf7df; }
.nc-phero__inner { max-width: 820px; }
.nc-breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.nc-breadcrumb a { color: var(--muted); }
.nc-breadcrumb a:hover { color: var(--ph-accent, var(--blue)); }
.nc-phero__eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--ph-accent, var(--blue)); margin-bottom: 12px; }
.nc-phero__title { margin: 0 0 16px; font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem); line-height: 1.1; }
.nc-phero__lede { font-size: clamp(1.1rem,1rem+.5vw,1.3rem); color: var(--ink-2); max-width: 62ch; margin: 0 0 26px; }
.nc-phero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
/* Split page-hero: content left + pull-quote/visual right */
.nc-phero__grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(32px,5vw,60px); align-items: center; }
.nc-phero__quote { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--ph-accent, var(--blue));
	border-radius: 16px; padding: 30px 32px; box-shadow: var(--shadow); }
.nc-phero__quote blockquote { margin: 0; font-size: clamp(1.25rem, 1rem + .9vw, 1.55rem); font-weight: 800;
	line-height: 1.3; letter-spacing: -.01em; color: var(--ink); }
.nc-phero__quote cite { display: block; margin-top: 18px; font-style: normal; color: var(--muted); font-size: .92rem; }
.nc-phero__quote cite em { font-style: italic; color: var(--ink-2); }
@media (max-width: 900px) { .nc-phero__grid { grid-template-columns: 1fr; } }

/* Article (Insights post) hero — supports nc-article-hero / nc-ahero variants from migrated posts */
.nc-article-hero, .nc-ahero { position: relative; border-bottom: 1px solid var(--line);
	padding: clamp(30px,4vw,54px) 0; background: linear-gradient(180deg, #eef5fc 0%, #ffffff 100%); }
.nc-container--narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.nc-ahero__inner { max-width: 820px; }
.nc-article-hero__eyebrow, .nc-ahero__eyebrow { display: inline-block; font-size: .72rem; font-weight: 800;
	letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.nc-article-hero__title, .nc-ahero__title { font-size: clamp(1.8rem,1.3rem+2vw,2.6rem); font-weight: 800;
	line-height: 1.14; letter-spacing: -.02em; margin: 0 0 14px; color: var(--ink); max-width: 22ch; }
.nc-article-hero__byline, .nc-ahero__byline { color: var(--muted); font-size: .95rem; margin: 0; }

.nc-prose { max-width: 740px; }
.nc-prose--center { margin-left: auto; margin-right: auto; }

/* Lead-quote split: an anecdote/quote callout beside section copy */
.nc-leadquote { display: grid; grid-template-columns: .95fr 1.25fr; gap: clamp(28px,4vw,56px); align-items: center; }
.nc-callout { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--track, var(--blue));
	border-radius: 16px; padding: 30px 32px; box-shadow: var(--shadow); }
.nc-callout p { color: var(--ink-2); font-size: 1rem; line-height: 1.6; margin: 0 0 14px; }
.nc-callout p:last-child { margin-bottom: 0; }
.nc-callout blockquote { margin: 0 0 16px; font-size: clamp(1.2rem,1rem+.7vw,1.45rem); font-weight: 800; line-height: 1.3; color: var(--ink); }
@media (max-width: 900px) { .nc-leadquote { grid-template-columns: 1fr; } }
.nc-prose > * + * { margin-top: 1.05rem; }
.nc-prose h2 { font-size: clamp(1.5rem,1.2rem+1vw,2rem); margin-top: 2.2rem; }
body.page-legal .nc-prose h2 { font-size: clamp(1.1rem,1rem+.5vw,1.35rem); margin-top: 2rem; }
.nc-prose h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.nc-prose p, .nc-prose li { color: var(--ink-2); font-size: 1.05rem; line-height: 1.72; }
.nc-prose ul, .nc-prose ol { padding-left: 1.3em; }
.nc-prose li { margin: .4rem 0; }
.nc-prose strong { color: var(--ink); }

.nc-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.nc-check li { position: relative; padding-left: 36px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; }
.nc-check li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 23px; height: 23px; border-radius: 50%;
	background: var(--accent, var(--blue)); color: #fff; font-size: .78rem; font-weight: 700; display: grid; place-items: center; }

.nc-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.nc-aside { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px;
	box-shadow: var(--shadow-sm); position: sticky; top: 92px; }
.nc-aside__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.nc-aside__price { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin: 6px 0 2px; }
.nc-aside__meta { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.nc-aside__list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.nc-aside__list li { font-size: .92rem; color: var(--ink-2); padding-left: 22px; position: relative; }
.nc-aside__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.nc-aside .nc-btn { width: 100%; justify-content: center; }

.nc-related { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Expanded method questions (engagement structure) */
.nc-qsteps { display: grid; gap: 18px; max-width: 900px; margin: 0 auto; }
.nc-qstep { display: grid; grid-template-columns: 58px 1fr; gap: 22px; align-items: start;
	background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; box-shadow: var(--shadow-sm); }
.nc-qstep__n { font-size: 2.3rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--qc, var(--blue)); }
.nc-qstep--1 { --qc: var(--blue); } .nc-qstep--2 { --qc: var(--sky); }
.nc-qstep--3 { --qc: #5f9e23; } .nc-qstep--4 { --qc: var(--orange); }
.nc-qstep__q { font-size: 1.3rem; margin: 0 0 10px; line-height: 1.2; }
.nc-qstep__body { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; }
.nc-qstep__body p { margin: 0 0 .8rem; }
.nc-qstep__body p:last-child { margin: 0; }
.nc-qstep__key { color: var(--ink); font-weight: 700; }
@media (max-width: 560px) { .nc-qstep { grid-template-columns: 1fr; gap: 8px; } }

/* ==========================================================================
   Forms (newsletter, contact…) — posts to salesforce-forms-worker
   ========================================================================== */
.nc-form-wrap { width: 100%; }
.nc-field { margin-bottom: 16px; }
.nc-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.nc-field input[type="text"], .nc-field input[type="email"], .nc-field input[type="tel"], .nc-field textarea {
	width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
	font: inherit; font-size: 1rem; background: #fff; color: var(--ink); }
.nc-field textarea { resize: vertical; min-height: 120px; }
.nc-field input:focus, .nc-field textarea:focus { outline: none; border-color: var(--track, var(--blue)); box-shadow: 0 0 0 3px rgba(27,117,187,.14); }
/* Calendly inline embed */
.calendly-inline-widget { border-radius: var(--radius); overflow: hidden; }
.nc-field--checkbox label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: .86rem; color: var(--ink-2); cursor: pointer; }
.nc-field--checkbox input { margin-top: 3px; flex-shrink: 0; }
.nc-error { display: block; color: #c0392b; font-size: .82rem; margin-top: 4px; }
.nc-status { margin-top: 10px; color: #c0392b; font-size: .9rem; }
.cf-turnstile { margin: 4px 0 16px; }
.nc-form-wrap button[type="submit"] { width: 100%; justify-content: center; }
.nc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .nc-field-row { grid-template-columns: 1fr; } }

/* Contact: two-column book-a-call / form layout */
.nc-contact-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,52px); align-items: start; }
.nc-contact-col__head { margin-bottom: 18px; }
.nc-contact-col__head h2 { font-size: clamp(1.4rem,1.1rem+1vw,1.85rem); margin: 4px 0 8px; }
.nc-contact-col__head p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .nc-contact-cols { grid-template-columns: 1fr; gap: 40px; } }

/* Contact page — orange accent + tightened spacing */
body.page-contact .nc-phero { background: linear-gradient(180deg, var(--orange-050) 0%, #ffffff 100%); padding: clamp(30px,3.4vw,48px) 0; }
body.page-contact .nc-section { padding: clamp(30px,3.4vw,48px) 0; }
body.page-contact .nc-phero__eyebrow, body.page-contact .nc-eyebrow { color: var(--orange); }
.nc-formcard { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(22px,2.4vw,30px); box-shadow: var(--shadow-sm); }
body.page-contact .nc-formcard { border-top: 4px solid var(--orange); }
body.page-contact .nc-field input:focus, body.page-contact .nc-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,.18); }
body.page-contact #nc-c-submit { background: var(--orange); color: #fff; }
body.page-contact #nc-c-submit:hover { background: #e07c00; }
body.page-contact .nc-phero a, body.page-contact .nc-contact-col__head a { color: var(--orange); }

/* ==========================================================================
   Cards / grids (generic)
   ========================================================================== */
.nc-grid { display: grid; gap: 22px; }
.nc-grid--2 { grid-template-columns: repeat(2,1fr); }
.nc-grid--3 { grid-template-columns: repeat(3,1fr); }
.nc-grid--4 { grid-template-columns: repeat(4,1fr); }

.nc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
	box-shadow: var(--shadow-sm); transition: box-shadow var(--ease), transform var(--ease); display: flex; flex-direction: column; }
.nc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.nc-card__badge { align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	color: var(--blue); background: var(--blue-050); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px; }
.nc-card__badge--wp { color: var(--teal); background: #e4f4fb; }
.nc-card__title { margin: 0 0 8px; font-size: 1.18rem; }
.nc-card__body { color: var(--ink-2); font-size: .96rem; margin: 0 0 16px; }
.nc-card__link { margin-top: auto; font-weight: 650; color: var(--blue); }

/* Proof / partners */
.nc-partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(36px,6vw,80px); }
.nc-partners img { height: 76px; width: auto; opacity: .95; }

/* ==========================================================================
   Quote strip & dark CTA
   ========================================================================== */
.nc-quote { text-align: center; }
.nc-quote__q { font-size: clamp(1.5rem, 1.1rem + 2vw, 2.4rem); font-weight: 800; line-height: 1.25; letter-spacing: -.02em; max-width: 18ch; margin: 0 auto 18px; color: #fff; }
.nc-quote__cite { color: #8fa3bd; font-size: 1rem; }
.nc-quote__cite a { color: #fff; }

.nc-cta { text-align: center; }
.nc-cta__title { color: #fff; max-width: 20ch; margin: 0 auto 14px; }
.nc-cta__sub { color: #aab8cc; font-size: 1.15rem; max-width: 52ch; margin: 0 auto 30px; }

/* Bright CTA band (warm, energetic — distinct from the cool stat band) */
.nc-cta-band { background: linear-gradient(120deg, #F7941D 0%, #F4603B 60%, #E0457E 115%); color: #fff; }
.nc-cta-band .nc-cta__title { color: #fff; }
.nc-cta-band .nc-cta__sub { color: rgba(255,255,255,.92); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.nc-faq { max-width: 820px; margin: 0 auto; }
.nc-faq__item { border-bottom: 1px solid var(--line); }
.nc-faq__q { width: 100%; text-align: left; background: none; border: 0; font: inherit; font-weight: 700;
	font-size: 1.1rem; color: var(--ink); padding: 22px 40px 22px 0; cursor: pointer; position: relative; }
.nc-faq__q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--blue); font-weight: 400; }
.nc-faq__item[open] .nc-faq__q::after { content: "−"; }
.nc-faq__a { padding: 0 0 22px; color: var(--ink-2); }
details.nc-faq__item > summary { list-style: none; }
details.nc-faq__item > summary::-webkit-details-marker { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.nc-footer { background: var(--bg-ink); color: #aab8cc; padding: clamp(56px,6vw,80px) 0 0; }
.nc-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.nc-footer__brand { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 40px; }
.nc-footer__logo img { height: 30px; filter: brightness(0) invert(1); opacity: .92; }
.nc-footer__linkedin { display: inline-flex; align-items: center; gap: 8px; color: #aab8cc; font-weight: 600; font-size: .92rem; }
.nc-footer__linkedin:hover { color: #fff; text-decoration: none; }
.nc-footer__grid { display: grid; gap: 32px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,.1); }
.nc-footer__grid--4col { grid-template-columns: repeat(4,1fr); }
.nc-footer__col-heading { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 16px; }
.nc-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.nc-footer__links a { color: #aab8cc; font-size: .94rem; }
.nc-footer__links a:hover { color: #fff; text-decoration: none; }
.nc-footer__ecosystem { display: flex; flex-wrap: wrap; gap: 28px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.1); }
.nc-footer__eco-link { color: #fff; font-weight: 650; font-size: .96rem; display: inline-flex; align-items: center; gap: 7px; }
.nc-footer__eco-link em { font-style: italic; }
.nc-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.nc-footer__bottom-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; }
.nc-footer__copyright { font-size: .86rem; color: #7d8ba0; }
.nc-footer__sites { display: flex; gap: 22px; flex-wrap: wrap; }
.nc-footer__sites a { font-size: .84rem; color: #8a98ad; }
.nc-footer__sites a:hover { color: #fff; text-decoration: none; }

/* ==========================================================================
   Stub marker
   ========================================================================== */
.nc-pending { display: block; background: #FFF8E1; border: 1px dashed #E6A700; color: #6b5200;
	padding: 12px 16px; border-radius: 10px; font-size: .9rem; margin: 12px 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.nc-hero__grid { grid-template-columns: 1fr; }
	.nc-bookcard { order: -1; }
	.nc-doors { grid-template-columns: 1fr; }
	.nc-feature { grid-template-columns: 1fr; }
	.nc-insights2 { grid-template-columns: 1fr; }
	.nc-split { grid-template-columns: 1fr; }
	.nc-aside { position: static; }
	.nc-related { grid-template-columns: 1fr; }
	.nc-author__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.nc-author__photo { max-width: 260px; }
	.nc-author__ctas { justify-content: center; }
	.nc-grid--3, .nc-grid--4 { grid-template-columns: repeat(2,1fr); }
	.nc-method { grid-template-columns: repeat(2,1fr); }
	.nc-footer__grid--4col { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
	.nc-stats__grid { grid-template-columns: 1fr; gap: 36px; }
	.nc-postrow { grid-template-columns: 1fr auto; }
	.nc-postrow__tag { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
	.nc-nav { display: none; }
	.nc-hamburger { display: flex; }
}
@media (max-width: 560px) {
	body { font-size: 16px; }
	.nc-grid--2, .nc-grid--3, .nc-grid--4 { grid-template-columns: 1fr; }
	.nc-method { grid-template-columns: 1fr; }
	.nc-footer__grid--4col { grid-template-columns: 1fr; }
	.nc-hero__ctas .nc-btn { width: 100%; justify-content: center; }
}
