/* ==========================================================================
   Nova Estimation — design system
   Deep navy grounds, steel mid-tones, gold used sparingly as accent.
   Archivo for display, IBM Plex Sans for text, IBM Plex Mono for data.
   ========================================================================== */

:root {
	--nv-ink:        #08182C;   /* dark ground */
	--nv-graphite:   #12293F;   /* second dark ground */
	--nv-steel:      #5A6B7F;   /* body text on light */
	--nv-steel-2:    #8FA0B4;   /* body text on dark */
	--nv-line:       #C9D2DC;   /* rules, hairlines */
	--nv-line-soft:  #E1E7ED;
	--nv-paper:      #FFFFFF;
	--nv-tint:       #F4F6F8;   /* off-white ground */
	--nv-gold:       #B8801E;   /* accent on light */
	--nv-gold-light: #E2A33C;   /* accent on dark */

	--nv-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--nv-body: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
	--nv-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--nv-space: clamp(64px, 8vw, 128px);
	--nv-wrap: 1240px;
	--nv-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- section shells ---------- */
.nv-sec {
	position: relative;
	padding: var(--nv-space) 0;
	font-family: var(--nv-body);
	color: var(--nv-steel);
	overflow: clip;
}

.nv-sec.tone-paper    { background: var(--nv-paper); }
.nv-sec.tone-tint     { background: var(--nv-tint); }
.nv-sec.tone-dark     { background: var(--nv-ink); color: var(--nv-steel-2); }
.nv-sec.tone-graphite { background: var(--nv-graphite); color: var(--nv-steel-2); }

.nv-wrap {
	width: min(var(--nv-wrap), calc(100% - 48px));
	margin-inline: auto;
	position: relative;
	z-index: 2;
}

.nv-sec h1, .nv-sec h2, .nv-sec h3 { font-family: var(--nv-display); margin: 0; color: var(--nv-ink); }
.nv-sec.tone-dark h1, .nv-sec.tone-dark h2, .nv-sec.tone-dark h3,
.nv-sec.tone-graphite h2, .nv-sec.tone-graphite h3 { color: #fff; }
.nv-sec p { margin: 0; }

/* ---------- type scale ---------- */
.nv-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--nv-mono); font-size: 12px; font-weight: 500;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--nv-gold); margin-bottom: 20px;
}
.nv-eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .8; }
.tone-dark .nv-eyebrow, .tone-graphite .nv-eyebrow { color: var(--nv-gold-light); }

.nv-h2 {
	font-size: clamp(28px, 3.4vw, 44px); font-weight: 700;
	line-height: 1.08; letter-spacing: -.025em; text-wrap: balance;
}
.nv-h2-lg { font-size: clamp(32px, 4.4vw, 58px); }

.nv-lede { font-size: 18px; line-height: 1.62; max-width: 56ch; margin-top: 18px; }
.nv-sec-cta { margin-top: 34px; }

/* ---------- buttons ---------- */
.nv-btn {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--nv-body); font-weight: 600; font-size: 15px; line-height: 1;
	padding: 17px 28px; border: 1.5px solid transparent; border-radius: 2px;
	text-decoration: none; transition: background-color .3s var(--nv-ease), color .3s var(--nv-ease), border-color .3s var(--nv-ease);
}
.nv-arrow { width: 16px; height: 8px; position: relative; display: inline-block; flex: none; transition: transform .3s var(--nv-ease); }
.nv-arrow::before { content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: currentColor; }
.nv-arrow::after { content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.nv-btn:hover .nv-arrow, .nv-inline-link:hover .nv-arrow { transform: translateX(5px); }

.nv-btn-solid { background: var(--nv-ink); color: #fff; }
.nv-btn-solid:hover { background: var(--nv-gold); color: var(--nv-ink); }
.tone-dark .nv-btn-solid { background: var(--nv-gold-light); color: var(--nv-ink); }
.tone-dark .nv-btn-solid:hover { background: #fff; }

.nv-btn-line { border-color: var(--nv-line); color: var(--nv-ink); }
.nv-btn-line:hover { border-color: var(--nv-ink); background: var(--nv-ink); color: #fff; }
.tone-dark .nv-btn-line { border-color: rgba(255,255,255,.28); color: #fff; }
.tone-dark .nv-btn-line:hover { background: #fff; color: var(--nv-ink); border-color: #fff; }

.nv-inline-link {
	display: inline-flex; align-items: center; gap: 10px;
	font-weight: 600; font-size: 15px; color: var(--nv-ink); text-decoration: none;
	border-bottom: 1px solid transparent; transition: border-color .3s, color .3s;
}
.nv-inline-link:hover { color: var(--nv-gold); border-color: currentColor; }

/* ---------- drawings ---------- */
.nv { display: block; width: 100%; height: auto; }
.nv-mono { font-family: var(--nv-mono); }
.nv-gridfield { width: 100%; height: 100%; }
.nv-workbook { --nv-sheet: var(--nv-paper); }

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.nv-hero { padding: clamp(80px, 9vw, 148px) 0 clamp(72px, 8vw, 120px); }
.nv-hero-grid { position: absolute; inset: 0; color: rgba(255,255,255,.10); z-index: 0; }
.nv-hero-grid svg { width: 100%; height: 100%; }

.nv-rail {
	position: absolute; left: 26px; top: 0; bottom: 0; z-index: 3;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
	font-family: var(--nv-mono); font-size: 11px; letter-spacing: .2em;
	color: rgba(255,255,255,.3);
}
.nv-rail i { width: 1px; flex: 1; max-height: 220px; background: linear-gradient(rgba(255,255,255,.05), rgba(255,255,255,.35), rgba(255,255,255,.05)); }

.nv-hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.nv-hero-copy { position: relative; z-index: 3; grid-row: 1; grid-column: 1; }
.nv-hero-art {
	grid-row: 1; grid-column: 2;
	color: rgba(255,255,255,.82);
	margin-right: clamp(-160px, -8vw, -40px);
	margin-top: -30px;
}

.nv-hero-title {
	font-size: clamp(40px, 5.4vw, 76px); font-weight: 800; line-height: 1.02;
	letter-spacing: -.035em; color: #fff; margin: 0 0 24px;
}
.nv-line { display: block; overflow: hidden; }
.nv-line > span { display: block; }
.nv-hero-title .nv-line:last-child > span { color: var(--nv-gold-light); }
.nv-hero-lede { font-size: 19px; line-height: 1.6; max-width: 48ch; color: rgba(255,255,255,.72); }
.nv-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ==========================================================================
   02 — Value props
   ========================================================================== */
.nv-values { padding: clamp(44px, 5vw, 72px) 0; }
.nv-values-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.nv-value h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.nv-value p { font-size: 14.5px; line-height: 1.6; }
.nv-value-rule { display: block; width: 34px; height: 2px; background: var(--nv-gold); margin-bottom: 18px; opacity: .85; }

/* ==========================================================================
   03 — Services
   ========================================================================== */
.nv-svc-trace {
	position: absolute; right: -230px; top: 50%; transform: translateY(-50%);
	width: 560px; color: var(--nv-ink); opacity: .035; z-index: 0; pointer-events: none;
}
.nv-svc-layout { display: grid; grid-template-columns: minmax(280px, 4.5fr) 7.5fr; gap: clamp(36px, 5vw, 88px); align-items: start; }
.nv-svc-head-inner { position: sticky; top: 120px; }
.nv-svc-head-cta { margin-top: 30px; }

.nv-svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--nv-line); }
.nv-svc-item { border-bottom: 1px solid var(--nv-line); }
.nv-svc-link {
	display: grid; grid-template-columns: 78px 1fr 30px; align-items: center; gap: 16px;
	padding: 26px 16px 26px 4px; text-decoration: none; color: inherit;
	position: relative; transition: background-color .35s var(--nv-ease), padding-left .35s var(--nv-ease);
}
.nv-svc-link::before {
	content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 2px;
	background: var(--nv-gold); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--nv-ease);
}
.nv-svc-item:hover .nv-svc-link { background: var(--nv-tint); padding-left: 18px; }
.nv-svc-item:hover .nv-svc-link::before { transform: scaleY(1); }

.nv-svc-num { font-family: var(--nv-mono); font-size: clamp(24px, 2.4vw, 34px); color: var(--nv-line); transition: color .35s; font-variant-numeric: tabular-nums; }
.nv-svc-item:hover .nv-svc-num { color: var(--nv-gold); }
.nv-svc-title { display: block; font-family: var(--nv-display); font-weight: 600; font-size: clamp(19px, 1.7vw, 25px); letter-spacing: -.02em; color: var(--nv-ink); }
.nv-svc-desc { display: block; font-size: 15px; line-height: 1.5; margin-top: 5px; }
.nv-svc-link .nv-arrow { color: var(--nv-ink); opacity: .35; transition: opacity .3s, transform .3s; }
.nv-svc-item:hover .nv-svc-link .nv-arrow { opacity: 1; transform: translateX(5px); }

.nv-svc-types { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 26px 98px; }
.nv-svc-types a {
	font-family: var(--nv-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
	color: var(--nv-steel); text-decoration: none; border: 1px solid var(--nv-line);
	padding: 7px 13px; transition: border-color .25s, color .25s, background-color .25s;
}
.nv-svc-types a:hover { border-color: var(--nv-ink); color: var(--nv-ink); background: var(--nv-paper); }

/* ==========================================================================
   04 — Trade showcase
   ========================================================================== */
.nv-trade-layout { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.nv-trade-cta { margin: 30px 0 40px; }

.nv-trade-nav { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--nv-line); }
.nv-trade-tab {
	display: flex; align-items: center; gap: 14px; width: 100%;
	background: none; border: 0; border-bottom: 1px solid var(--nv-line);
	padding: 12px 4px; cursor: pointer; text-align: left; position: relative;
	font-family: var(--nv-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
	color: var(--nv-steel); transition: color .3s, padding-left .3s var(--nv-ease);
}
.nv-trade-tab-i { width: 20px; height: 20px; flex: none; opacity: .45; transition: opacity .3s, color .3s; }
.nv-trade-tab-i .nova-icon { width: 20px; height: 20px; }
.nv-trade-tab-bar { position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--nv-gold); transition: width .4s var(--nv-ease); }
.nv-trade-tab:hover { color: var(--nv-ink); padding-left: 8px; }
.nv-trade-tab.is-active { color: var(--nv-ink); }
.nv-trade-tab.is-active .nv-trade-tab-i { opacity: 1; color: var(--nv-gold); }
.nv-trade-tab.is-active .nv-trade-tab-bar { width: 100%; }
.nv-trade-tab:focus-visible { outline: 2px solid var(--nv-gold); outline-offset: 2px; }

.nv-trade-stage { position: relative; border: 1px solid var(--nv-line); background: var(--nv-paper); min-height: 560px; }
.nv-trade-panel {
	position: absolute; inset: 0; padding: clamp(24px, 3vw, 44px);
	display: flex; flex-direction: column; gap: 20px;
	opacity: 0; visibility: hidden; transition: opacity .45s var(--nv-ease);
}
.nv-trade-panel.is-active { opacity: 1; visibility: visible; position: relative; justify-content: space-between; }
.nv-trade-art-wrap { color: var(--nv-ink); opacity: .9; }
.nv-trade-art-wrap { flex: 1; display: grid; place-items: center; }
.nv-trade-art-wrap .nv { max-height: 300px; }
.nv-trade-csi { font-family: var(--nv-mono); font-size: 12px; letter-spacing: .16em; color: var(--nv-gold); }
.nv-trade-name { font-size: clamp(30px, 3.6vw, 52px); font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; line-height: 1; margin: 8px 0 14px; }
.nv-trade-desc { font-size: 16px; line-height: 1.6; max-width: 52ch; margin-bottom: 18px; }
.nv-trade-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--nv-line-soft); }
.nv-trade-progress i { display: block; height: 100%; width: 0; background: var(--nv-gold); }

/* ==========================================================================
   05 — Industries
   ========================================================================== */
.nv-ind-head { max-width: 620px; margin-bottom: 40px; }
.nv-ind-stage { position: relative; display: grid; place-items: center; min-height: 520px; }
.nv-ind-art { width: min(520px, 78%); color: var(--nv-ink); opacity: .9; }
.nv-ind-points { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; }
.nv-ind-pt { position: absolute; width: 220px; }
.nv-ind-pt a { display: block; text-decoration: none; color: inherit; }
.nv-ind-leader { display: block; width: 100%; height: 1px; background: var(--nv-line); position: relative; margin-bottom: 12px; transition: background-color .3s; }
.nv-ind-leader::after { content: ""; position: absolute; top: -2.5px; width: 6px; height: 6px; border-radius: 50%; background: var(--nv-line); transition: background-color .3s; }
.nv-ind-pt-1 .nv-ind-leader::after, .nv-ind-pt-4 .nv-ind-leader::after { right: 0; }
.nv-ind-pt-3 .nv-ind-leader::after, .nv-ind-pt-6 .nv-ind-leader::after { left: 0; }
.nv-ind-pt-2 .nv-ind-leader::after, .nv-ind-pt-5 .nv-ind-leader::after { left: 50%; transform: translateX(-50%); }
.nv-ind-pt:hover .nv-ind-leader, .nv-ind-pt:hover .nv-ind-leader::after { background: var(--nv-gold); }
.nv-ind-label { display: block; transition: border-color .3s; }
.nv-ind-label strong { display: block; font-family: var(--nv-display); font-size: 17px; font-weight: 600; color: var(--nv-ink); letter-spacing: -.01em; }
.nv-ind-label span { display: block; font-size: 13.5px; line-height: 1.5; margin-top: 4px; }
.nv-ind-pt:hover .nv-ind-label { border-color: var(--nv-gold); }
.nv-ind-pt:hover .nv-ind-label strong { color: var(--nv-gold); }
.nv-ind-stage:has(.nv-ind-pt:hover) .nv-ind-pt:not(:hover) { opacity: .45; }
.nv-ind-pt { transition: opacity .3s; }

.nv-ind-pt-1 { left: 0;    top: 24%; }
.nv-ind-pt-2 { left: 50%;  top: 2%;  transform: translateX(-50%); text-align: center; }
.nv-ind-pt-3 { right: 0;   top: 24%; text-align: right; }
.nv-ind-pt-4 { left: 0;    bottom: 20%; }
.nv-ind-pt-5 { left: 50%;  bottom: 0; transform: translateX(-50%); text-align: center; }
.nv-ind-pt-6 { right: 0;   bottom: 20%; text-align: right; }

/* ==========================================================================
   06 — Why Nova
   ========================================================================== */
.nv-why-art { position: absolute; right: -230px; bottom: -180px; width: 620px; color: #fff; opacity: .05; z-index: 0; }
.nv-statement {
	font-size: clamp(30px, 4.6vw, 62px); font-weight: 700; line-height: 1.06;
	letter-spacing: -.03em; color: #fff; max-width: 20ch;
	padding-bottom: clamp(36px, 4vw, 60px); border-bottom: 1px solid rgba(255,255,255,.18);
}
.nv-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(32px, 4vw, 64px); padding-top: clamp(36px, 4vw, 60px); }
.nv-why-num { font-family: var(--nv-mono); font-size: 12px; letter-spacing: .16em; color: var(--nv-gold-light); display: block; margin-bottom: 14px; }
.nv-why-item h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; letter-spacing: -.02em; margin-bottom: 12px; }
.nv-why-item p { font-size: 16px; line-height: 1.65; max-width: 46ch; }

/* ---------- stats strip ---------- */
.nv-stats { padding: clamp(36px, 4vw, 56px) 0; border-top: 1px solid rgba(255,255,255,.1); }
.nv-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin: 0; }
.nv-stat dt { font-family: var(--nv-display); font-size: clamp(34px, 4vw, 54px); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.nv-stat dd { margin: 12px 0 0; font-family: var(--nv-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--nv-steel-2); }
.nv-stat.is-placeholder dt { color: rgba(255,255,255,.35); }
.nv-stat-note { display: block; margin-top: 6px; font-size: 10.5px; letter-spacing: .1em; color: var(--nv-gold-light); opacity: .8; text-transform: none; }

/* ==========================================================================
   07 — Process
   ========================================================================== */
.nv-proc-head { max-width: 620px; margin-bottom: clamp(48px, 5vw, 76px); }
.nv-proc-track { position: relative; }
.nv-proc-rail { position: absolute; left: 0; right: 0; top: 13px; height: 1px; background: rgba(255,255,255,.16); }
.nv-proc-rail i { display: block; height: 100%; width: 0; background: var(--nv-gold-light); transition: width .1s linear; }
.nv-proc-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.nv-proc-step { position: relative; padding-top: 44px; opacity: .4; transition: opacity .5s var(--nv-ease); }
.nv-proc-step:nth-child(even) { padding-top: 76px; }
.nv-proc-step.is-on { opacity: 1; }
.nv-proc-marker { position: absolute; top: 7px; left: 0; width: 13px; height: 13px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; background: var(--nv-graphite); transition: border-color .4s, background-color .4s, transform .4s var(--nv-ease); }
.nv-proc-step:nth-child(even) .nv-proc-marker { top: 7px; }
.nv-proc-step:nth-child(even)::before { content: ""; position: absolute; left: 6px; top: 20px; width: 1px; height: 34px; background: rgba(255,255,255,.16); }
.nv-proc-step.is-on .nv-proc-marker { border-color: var(--nv-gold-light); background: var(--nv-gold-light); transform: scale(1.1); }
.nv-proc-num { font-family: var(--nv-mono); font-size: 12px; letter-spacing: .16em; color: var(--nv-gold-light); display: block; margin-bottom: 10px; }
.nv-proc-step h3 { font-size: 17px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.nv-proc-step p { font-size: 14.5px; line-height: 1.6; }

/* ==========================================================================
   08 — What you receive
   ========================================================================== */
.nv-deliv { margin-top: -1px; }
.nv-deliv-layout { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.nv-deliv-stage { position: relative; padding: 0 clamp(96px, 15%, 176px); }
.nv-deliv-art { color: var(--nv-ink); position: relative; z-index: 2; }
.nv-deliv-labels { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.nv-deliv-label {
	position: absolute; font-family: var(--nv-mono); font-size: 11.5px; letter-spacing: .1em;
	text-transform: uppercase; color: var(--nv-ink); background: var(--nv-paper);
	border: 1px solid var(--nv-line); padding: 8px 11px; line-height: 1.3;
	max-width: 132px; box-shadow: 0 6px 20px rgba(8, 24, 44, .07);
}
.nv-deliv-label::after {
	content: ""; position: absolute; top: 50%; width: clamp(14px, 3vw, 34px); height: 1px;
	background: var(--nv-line);
}
.nv-dl-1::after, .nv-dl-3::after, .nv-dl-5::after { left: 100%; }
.nv-dl-2::after, .nv-dl-4::after, .nv-dl-6::after { right: 100%; }
.nv-dl-1 { top: 5%;  left: 0; }
.nv-dl-3 { top: 43%; left: 0; }
.nv-dl-5 { top: 80%; left: 0; }
.nv-dl-2 { top: 16%; right: 0; }
.nv-dl-4 { top: 57%; right: 0; }
.nv-dl-6 { top: 89%; right: 0; }

/* ==========================================================================
   09 — Projects
   ========================================================================== */
.nv-proj-head { max-width: 620px; margin-bottom: 48px; }
.nv-proj-band { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--nv-line); background: var(--nv-paper); }
.nv-proj-panel {
	position: relative; display: flex; flex-direction: column; justify-content: space-between;
	gap: 22px; padding: 30px 26px; text-decoration: none; color: inherit;
	border-right: 1px solid var(--nv-line); transition: background-color .35s var(--nv-ease);
}
.nv-proj-panel:last-child { border-right: 0; }
.nv-proj-panel:hover { background: var(--nv-tint); }
.nv-proj-art { display: block; color: var(--nv-ink); opacity: .38; transition: opacity .35s, transform .35s var(--nv-ease); }
.nv-proj-panel:hover .nv-proj-art { opacity: .85; transform: translateY(-4px); }
.nv-proj-num { font-family: var(--nv-mono); font-size: 11.5px; letter-spacing: .16em; color: var(--nv-gold); display: block; margin-bottom: 10px; }
.nv-proj-name { display: block; font-family: var(--nv-display); font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: -.01em; color: var(--nv-ink); }
.nv-proj-desc { display: block; font-size: 13px; line-height: 1.5; margin-top: 8px; }

/* ==========================================================================
   10 — Resources
   ========================================================================== */
.nv-res-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--nv-line); }
.nv-res-head .nv-sec-cta { margin: 0; }
.nv-res-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 64px); padding-top: 40px; }
.nv-res-feature { text-decoration: none; color: inherit; display: block; }
.nv-res-feature h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin: 12px 0 14px; }
.nv-res-feature p { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.nv-res-meta { font-family: var(--nv-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--nv-steel); }
.nv-res-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--nv-line); }
.nv-res-list li { border-bottom: 1px solid var(--nv-line); }
.nv-res-list a { display: grid; grid-template-columns: minmax(0, 1fr) 24px; align-items: center; gap: 16px; padding: 22px 0; text-decoration: none; color: inherit; transition: padding-left .3s var(--nv-ease); }
.nv-res-body { min-width: 0; }
.nv-res-list a:hover { padding-left: 10px; }
.nv-res-list h3 { font-size: 18px; font-weight: 600; letter-spacing: -.015em; margin-top: 7px; line-height: 1.3; }
.nv-res-list .nv-arrow { opacity: .3; transition: opacity .3s; }
.nv-res-list a:hover .nv-arrow { opacity: 1; }

/* ==========================================================================
   11 — FAQ
   ========================================================================== */
.nv-faq-layout { display: grid; grid-template-columns: 4.5fr 7.5fr; gap: clamp(36px, 5vw, 88px); align-items: start; }
.nv-faq-list { border-top: 1px solid var(--nv-line); }
.nv-faq-item { border-bottom: 1px solid var(--nv-line); transition: background-color .3s; }
.nv-faq-item[open] { background: var(--nv-paper); }
.nv-faq-item summary {
	display: grid; grid-template-columns: 46px 1fr 20px; align-items: center; gap: 12px;
	padding: 22px 18px 22px 6px; cursor: pointer; list-style: none;
	transition: padding-left .3s var(--nv-ease);
}
.nv-faq-item summary::-webkit-details-marker { display: none; }
.nv-faq-item summary:hover { padding-left: 14px; }
.nv-faq-num { font-family: var(--nv-mono); font-size: 12px; letter-spacing: .12em; color: var(--nv-line); transition: color .3s; }
.nv-faq-item summary:hover .nv-faq-num, .nv-faq-item[open] .nv-faq-num { color: var(--nv-gold); }
.nv-faq-q { font-family: var(--nv-display); font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; color: var(--nv-ink); letter-spacing: -.015em; }
.nv-faq-mark { position: relative; width: 14px; height: 14px; justify-self: end; }
.nv-faq-mark::before, .nv-faq-mark::after { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 1.5px; background: var(--nv-ink); transition: transform .3s var(--nv-ease); }
.nv-faq-mark::after { transform: rotate(90deg); }
.nv-faq-item[open] .nv-faq-mark::after { transform: rotate(0); }
.nv-faq-a { padding: 0 18px 26px 64px; }
.nv-faq-a p { font-size: 15.5px; line-height: 1.7; max-width: 66ch; }

/* ==========================================================================
   12 — Final CTA
   ========================================================================== */
.nv-cta { padding: clamp(76px, 8vw, 128px) 0; }
.nv-cta-grid { position: absolute; inset: 0; color: rgba(255,255,255,.10); z-index: 0; }
.nv-cta-grid svg { width: 100%; height: 100%; }
.nv-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 22% 45%, rgba(8,24,44,.85), rgba(8,24,44,0)); z-index: 1; }
.nv-cta-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.nv-cta-title { font-size: clamp(32px, 4.6vw, 62px); font-weight: 800; line-height: 1.04; letter-spacing: -.032em; color: #fff; margin-bottom: 20px; max-width: 16ch; }
.nv-cta .nv-lede { color: rgba(255,255,255,.72); }
.nv-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.nv-cta-art { color: var(--nv-gold-light); opacity: .95; }

/* ==========================================================================
   Motion
   ========================================================================== */
[data-nv-reveal] .nv-eyebrow,
[data-nv-reveal] .nv-h2,
[data-nv-reveal] .nv-statement,
[data-nv-reveal] .nv-lede,
[data-nv-reveal] .nv-sec-cta,
[data-nv-reveal] .nv-value,
[data-nv-reveal] .nv-svc-item,
[data-nv-reveal] .nv-why-item,
[data-nv-reveal] .nv-stat,
[data-nv-reveal] .nv-proj-panel,
[data-nv-reveal] .nv-faq-item,
[data-nv-reveal] .nv-ind-pt,
[data-nv-reveal] .nv-deliv-label,
[data-nv-reveal] .nv-res-feature,
[data-nv-reveal] .nv-res-list li {
	opacity: 0; transform: translateY(16px);
	transition: opacity .55s var(--nv-ease), transform .55s var(--nv-ease);
	transition-delay: calc(var(--i, 0) * 60ms);
}
[data-nv-reveal].is-in .nv-eyebrow,
[data-nv-reveal].is-in .nv-h2,
[data-nv-reveal].is-in .nv-statement,
[data-nv-reveal].is-in .nv-lede,
[data-nv-reveal].is-in .nv-sec-cta,
[data-nv-reveal].is-in .nv-value,
[data-nv-reveal].is-in .nv-svc-item,
[data-nv-reveal].is-in .nv-why-item,
[data-nv-reveal].is-in .nv-stat,
[data-nv-reveal].is-in .nv-proj-panel,
[data-nv-reveal].is-in .nv-faq-item,
[data-nv-reveal].is-in .nv-ind-pt,
[data-nv-reveal].is-in .nv-deliv-label,
[data-nv-reveal].is-in .nv-res-feature,
[data-nv-reveal].is-in .nv-res-list li {
	opacity: 1; transform: none;
}

/* drawn line-work */
.nv-draw path, .nv-draw circle, .nv-draw rect {
	stroke-dasharray: 2400; stroke-dashoffset: 2400;
}
.is-in .nv-draw path, .is-in .nv-draw circle, .is-in .nv-draw rect {
	animation: nv-stroke 1.3s var(--nv-ease) forwards;
	animation-delay: var(--d, 0s);
}
@keyframes nv-stroke { to { stroke-dashoffset: 0; } }

.nv-fade { opacity: 0; }
.is-in .nv-fade { animation: nv-fade .7s var(--nv-ease) forwards; animation-delay: var(--d, 0s); }
@keyframes nv-fade { to { opacity: 1; } }

/* hero headline reveal */
.nv-hero-title .nv-line > span { transform: translateY(105%); animation: nv-rise .9s var(--nv-ease) forwards; }
.nv-hero-title .nv-line:nth-child(1) > span { animation-delay: .45s; }
.nv-hero-title .nv-line:nth-child(2) > span { animation-delay: .58s; }
.nv-hero-lede, .nv-hero-actions, .nv-hero .nv-eyebrow { opacity: 0; animation: nv-rise-fade .8s var(--nv-ease) forwards; }
.nv-hero .nv-eyebrow { animation-delay: .3s; }
.nv-hero-lede { animation-delay: .8s; }
.nv-hero-actions { animation-delay: .95s; }
@keyframes nv-rise { to { transform: none; } }
@keyframes nv-rise-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
	.nv-draw path, .nv-draw circle, .nv-draw rect { stroke-dashoffset: 0 !important; }
	.nv-fade, [data-nv-reveal] * { opacity: 1 !important; transform: none !important; }
	.nv-hero-title .nv-line > span { transform: none !important; }
}

/* ==========================================================================
   Mega menu — the parent theme ships none
   ========================================================================== */
@media (min-width: 992px) {
	.main-menu li.nova-mega { position: static; }
	.main-menu li.nova-mega > ul.sub-menu {
		left: 50%; transform: translateX(-50%) scaleY(0);
		width: min(1180px, calc(100vw - 48px));
		display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px 30px;
		padding: 36px 36px 30px; border-top: 2px solid var(--nv-gold);
		box-shadow: 0 30px 70px rgba(8, 24, 44, .18);
	}
	.main-menu li.nova-mega:hover > ul.sub-menu { transform: translateX(-50%) scaleY(1); }
	.main-menu li.nova-mega > ul.sub-menu > li { padding: 0; display: block; }
	.main-menu li.nova-mega > ul.sub-menu > li > a {
		font-family: var(--nv-mono); font-size: 11.5px !important; letter-spacing: .14em;
		text-transform: uppercase; color: var(--nv-gold) !important;
		padding: 0 0 10px !important; margin-bottom: 10px;
		border-bottom: 1px solid var(--nv-line); display: block;
	}
	.main-menu li.nova-mega > ul.sub-menu > li > a::before,
	.main-menu li.nova-mega > ul.sub-menu > li.menu-item-has-children > a::after { display: none !important; }
	.main-menu li.nova-mega > ul.sub-menu ul.sub-menu {
		position: static; visibility: visible; opacity: 1; transform: none;
		box-shadow: none; border: 0; padding: 0; margin: 0; min-width: 0; width: auto; background: transparent;
	}
	.main-menu li.nova-mega ul.sub-menu ul.sub-menu li a {
		font-size: 14.5px !important; line-height: 1.5; padding: 5px 0 !important; display: block; color: var(--nv-ink);
	}
	.main-menu li.nova-mega ul.sub-menu ul.sub-menu li a:hover { color: var(--nv-gold); padding-left: 7px !important; }
	.main-menu li.nova-mega ul.sub-menu ul.sub-menu li a::before { display: none; }

	.main-menu li.nova-cta > a {
		background: var(--nv-gold); color: #fff !important;
		padding: 12px 22px !important; font-weight: 600; border-radius: 2px;
	}
	.main-menu li.nova-cta > a:hover { background: var(--nv-ink); }
}

/* ==========================================================================
   Page content (service / trade / industry pages)
   ========================================================================== */
.page-content, .entry-content { font-family: var(--nv-body); }
.page-content h2, .entry-content h2 { font-family: var(--nv-display); color: var(--nv-ink); font-weight: 700; letter-spacing: -.02em; margin: 1.5em 0 .5em; }
.page-content h3, .entry-content h3 { font-family: var(--nv-display); color: var(--nv-ink); font-weight: 600; font-size: 21px; margin: 1.7em 0 .6em; }
.page-content ul, .entry-content ul, .page-content ol, .entry-content ol { padding-left: 1.2rem; margin-bottom: 1.5rem; }
.page-content li, .entry-content li { margin-bottom: .5rem; line-height: 1.7; }
.entry-content a.cn-btn, .page-content a.cn-btn {
	display: inline-block; background: var(--nv-ink); color: #fff; font-weight: 600;
	padding: 15px 30px; border-radius: 2px; text-decoration: none; margin-top: .5rem;
}
.entry-content a.cn-btn:hover, .page-content a.cn-btn:hover { background: var(--nv-gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
	.nv-hero-inner { grid-template-columns: 1fr; }
	.nv-hero-art { grid-row: 1; grid-column: 1; position: absolute; inset: 0; margin: 0; opacity: .18; display: grid; place-items: center; }
	.nv-hero-copy { grid-column: 1; }
	.nv-rail { display: none; }
	.nv-values-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.nv-svc-layout, .nv-trade-layout, .nv-deliv-layout, .nv-faq-layout, .nv-res-layout, .nv-cta-layout { grid-template-columns: 1fr; }
	.nv-svc-head-inner { position: static; }
	.nv-why-grid { grid-template-columns: 1fr; }
	.nv-proj-band { grid-template-columns: repeat(2, 1fr); }
	.nv-proj-panel { border-bottom: 1px solid var(--nv-line); }
	.nv-proc-steps { grid-template-columns: 1fr; gap: 0; }
	.nv-proc-step, .nv-proc-step:nth-child(even) { padding: 0 0 34px 34px; }
	.nv-proc-step::before { display: none !important; }
	.nv-proc-marker { top: 4px; }
	.nv-proc-rail { left: 6px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
	.nv-proc-rail i { width: 100%; height: 0; }
	.nv-trade-stage { min-height: 0; }
	.nv-trade-panel { position: relative; display: none; }
	.nv-trade-panel.is-active { display: flex; }
	.nv-trade-nav { display: flex; overflow-x: auto; border-top: 0; gap: 4px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
	.nv-trade-nav li { flex: 0 0 auto; scroll-snap-align: start; }
	.nv-trade-tab { border-bottom: 0; border: 1px solid var(--nv-line); padding: 10px 14px; }
	.nv-ind-stage { min-height: 0; display: block; }
	.nv-ind-art { display: none; }
	.nv-ind-points { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
	.nv-ind-pt { position: static; width: auto; transform: none !important; text-align: left !important; }
	.nv-deliv-stage { padding: 0; }
	.nv-deliv-labels { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 26px; }
	.nv-deliv-label { position: static; max-width: none; }
	.nv-deliv-label::after { display: none; }
}

@media (max-width: 700px) {
	.nv-wrap { width: calc(100% - 32px); }
	.nv-values-row { grid-template-columns: 1fr; }
	.nv-proj-band { grid-template-columns: 1fr; }
	.nv-svc-link { grid-template-columns: 52px 1fr 22px; padding: 20px 4px; }
	.nv-svc-num { font-size: 20px; }
	.nv-svc-types { padding-left: 56px; }
	.nv-stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.nv-faq-a { padding-left: 6px; }
	.nv-deliv-labels { grid-template-columns: 1fr; }
	.nv-res-head { align-items: flex-start; }
}
