/*
Theme Name: ValuCrest
Theme URI: https://valucrestconsulting.com
Author: ValuCrest Consulting
Description: A block theme for ValuCrest Consulting. Full Site Editing, a restrained analytical design system and self-hosted typography. The site's single job is to explain ValuCrest Finance Ops and hand the visitor to the application; it takes no payments and creates no accounts.
Version: 2.8.0
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valucrest
Tags: block-theme, full-site-editing, business, custom-colors, custom-menu, accessibility-ready
*/


/* ==========================================================================
   0. LAYOUT GUTTERS
   Full-bleed sections must reach the window edge; their inner content must not.
   Applied to content wrappers only, so backgrounds stay edge to edge.
   ========================================================================== */

:root { --vc-gutter: clamp(1.25rem, 4vw, 2.5rem); }

main.wp-block-group > *:not(.alignfull),
.alignfull > .alignwide,
.vc-header__row {
	padding-inline: var(--vc-gutter);
}

.alignfull { max-width: none; width: 100%; }

/* ==========================================================================
   1. BASE
   ========================================================================== */

*:focus-visible {
	outline: 2px solid var(--wp--preset--color--deep-brown);
	outline-offset: 3px;
	border-radius: 3px;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "cv05" 1, "cv08" 1;
}

@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;
	}
}

.vc-skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 0.75rem 1.25rem;
	background: var(--wp--preset--color--charcoal);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.9375rem;
}

/* Numerals: tabular everywhere financial figures appear */
.vc-num,
.vc-dash,
.vc-kpi__value,
.vc-price,

/* ==========================================================================
   2. TYPOGRAPHY UTILITIES
   ========================================================================== */

.vc-eyebrow {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--muted);
	margin-bottom: 0.75rem;
	display: block;
}

.vc-eyebrow--sand { color: var(--wp--preset--color--warm-sand); }
.vc-card > .vc-eyebrow { align-self: flex-start; }

.vc-lead {
	font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
	line-height: 1.6;
	color: var(--wp--preset--color--muted);
	max-width: 46rem;
}

.vc-balance { text-wrap: balance; }

/* ==========================================================================
   3. HEADER
   ========================================================================== */

.vc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--wp--preset--color--border);
}

.vc-header__row { row-gap: 0.75rem; }
.vc-header__left { flex: 1 1 auto; min-width: 0; }
.vc-header__cta { flex: 0 0 auto; }
.vc-header .wp-block-button__link { white-space: nowrap; padding: 0.6rem 1.1rem; font-size: 0.875rem; }
.vc-header .wp-block-navigation__responsive-container-open,
.vc-header .wp-block-navigation__responsive-container-close {
	color: var(--wp--preset--color--charcoal);
}

.vc-header .wp-block-navigation a:hover {
	color: var(--wp--preset--color--deep-brown);
}

.vc-header .wp-block-navigation .current-menu-item a {
	color: var(--wp--preset--color--deep-brown);
}

@media (max-width: 1080px) {
	.vc-header__secondary { display: none; }
}

@media (max-width: 600px) {
	.vc-header__cta .wp-block-button__link { padding: 0.5rem 0.9rem; font-size: 0.8125rem; }
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.wp-block-button__link {
	transition: background-color var(--wp--custom--transition), transform var(--wp--custom--transition);
	text-decoration: none;
}

.wp-block-button__link:hover { transform: translateY(-1px); }

.wp-block-button.is-style-outline .wp-block-button__link {
	border: 1px solid var(--wp--preset--color--border);
	background: transparent;
	color: var(--wp--preset--color--charcoal);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--charcoal);
	background: var(--wp--preset--color--off-white);
	color: var(--wp--preset--color--charcoal);
}

/* Outline buttons sitting on charcoal sections */
.has-charcoal-background-color .wp-block-button.is-style-outline .wp-block-button__link,
.vc-dark .wp-block-button.is-style-outline .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
}

.has-charcoal-background-color .wp-block-button.is-style-outline .wp-block-button__link:hover,
.vc-dark .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.vc-dark .wp-block-button:not(.is-style-outline) .wp-block-button__link {
	background: var(--wp--preset--color--warm-sand);
	color: var(--wp--preset--color--charcoal);
}

.vc-dark .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
	background: #93AEBE;
	color: var(--wp--preset--color--charcoal);
}

/* Text link with arrow */
.vc-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	color: var(--wp--preset--color--deep-brown);
}

.vc-link::after {
	content: "→";
	transition: transform var(--wp--custom--transition);
}

.vc-link:hover::after { transform: translateX(3px); }

/* ==========================================================================
   5. CARDS
   ========================================================================== */

.vc-card {
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: border-color var(--wp--custom--transition), box-shadow var(--wp--custom--transition), transform var(--wp--custom--transition);
}

.vc-card:hover {
	border-color: var(--wp--preset--color--warm-sand);
	box-shadow: 0 1px 2px rgba(10, 18, 28, 0.05), 0 14px 34px -18px rgba(10, 18, 28, 0.20);
	transform: translateY(-2px);
}

.vc-card__title {
	font-size: 1.1875rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 0.5rem;
}

.vc-card__body {
	color: var(--wp--preset--color--muted);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
	flex: 1;
}

.vc-card__foot { margin-top: auto; }

.vc-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.vc-grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }

/* ==========================================================================
   6. SIGNATURE — FINANCE OPS DASHBOARD MOCK
   ========================================================================== */

.vc-dash {
	background: var(--wp--preset--color--charcoal);
	border: 1px solid var(--wp--preset--color--border-dark);
	border-radius: 14px;
	padding: 1.25rem;
	color: #fff;
	display: grid;
	gap: 0.75rem;
	box-shadow: 0 30px 60px -30px rgba(33, 35, 38, 0.45);
}

.vc-dash__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.875rem;
	border-bottom: 1px solid var(--wp--preset--color--border-dark);
}

.vc-dash__label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.55);
}

.vc-dash__dots { display: flex; gap: 0.3rem; }
.vc-dash__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
}
.vc-dash__dot:first-child { background: var(--wp--preset--color--warm-sand); }

.vc-dash__row {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.vc-dash__row--3 { grid-template-columns: repeat(3, 1fr); }

.vc-dash__tile {
	background: var(--wp--preset--color--charcoal-soft);
	border: 1px solid var(--wp--preset--color--border-dark);
	border-radius: 10px;
	padding: 0.875rem;
}

.vc-dash__tile-label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: rgba(255, 255, 255, 0.5);
	display: block;
	margin-bottom: 0.4rem;
}

.vc-dash__value {
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}

.vc-dash__delta {
	font-size: 0.75rem;
	color: var(--wp--preset--color--warm-sand);
	margin-left: 0.4rem;
	font-weight: 450;
}

.vc-dash__meta {
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 0.3rem;
}

/* Sparkline / forecast strip */
.vc-dash__chart {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	height: 46px;
	margin-top: 0.6rem;
}

.vc-dash__col {
	flex: 1;
	background: rgba(255, 255, 255, 0.16);
	border-radius: 2px 2px 0 0;
	min-height: 4px;
}

.vc-dash__col--hi { background: var(--wp--preset--color--warm-sand); }
.vc-dash__col--low { background: var(--wp--preset--color--attention); }

/* Progress bars */
.vc-dash__track {
	height: 5px;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 3px;
	overflow: hidden;
	margin-top: 0.55rem;
}

.vc-dash__fill {
	height: 100%;
	background: var(--wp--preset--color--warm-sand);
	border-radius: 3px;
}

/* Score ring */
.vc-dash__score {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.vc-dash__ring {
	--pct: 68;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	flex-shrink: 0;
	background: conic-gradient(var(--wp--preset--color--warm-sand) calc(var(--pct) * 1%), rgba(255, 255, 255, 0.1) 0);
	display: grid;
	place-items: center;
	position: relative;
}

.vc-dash__ring::after {
	content: "";
	position: absolute;
	inset: 6px;
	background: var(--wp--preset--color--charcoal-soft);
	border-radius: 50%;
}

.vc-dash__ring span {
	position: relative;
	z-index: 1;
	font-size: 1.0625rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

/* Status pills */
.vc-dash__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.6875rem;
	font-family: var(--wp--preset--font-family--mono);
	color: rgba(255, 255, 255, 0.7);
}

.vc-dash__pip {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wp--preset--color--warm-sand);
}

.vc-dash__pip--ok { background: var(--wp--preset--color--positive); }
.vc-dash__pip--warn { background: var(--wp--preset--color--accent); }

@media (max-width: 600px) {
	.vc-dash__row--3 { grid-template-columns: repeat(2, 1fr); }
	.vc-dash__value { font-size: 1.1875rem; }
}

/* ==========================================================================
   7. FINANCE OPS FRAMEWORK — SIX PILLARS
   ========================================================================== */

.vc-pillars {
	display: grid;
	gap: 1px;
	background: var(--wp--preset--color--border);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	overflow: hidden;
	grid-template-columns: repeat(3, 1fr);
}

.vc-pillar {
	background: #fff;
	padding: 1.75rem;
	transition: background var(--wp--custom--transition);
}

.vc-pillar:hover { background: var(--wp--preset--color--off-white); }

.vc-pillar__key {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	/* Tabular figures because these are percentages that should line up down the
	   grid, and darker than the old decorative numbering because the weight is
	   information the reader may want, not a label. */
	font-variant-numeric: tabular-nums lining-nums;
	color: var(--wp--preset--color--deep-brown);
	display: block;
	margin-bottom: 0.75rem;
}

.vc-pillar__name {
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
}

.vc-pillar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.85;
}

/* On the dark stage the card surface inverts. The gaps become the rule and the
   cards become ink-soft, so the same grid reads as a ledger ruled in white on
   black rather than the reverse. The weight percentage takes Signal, because on
   this surface it is the one thing that should catch the eye first. */
.vc-framework .vc-pillars {
	background: var(--wp--preset--color--border-dark);
	border-color: var(--wp--preset--color--border-dark);
	border-radius: 0;
}

.vc-framework .vc-pillar {
	background: var(--wp--preset--color--charcoal-soft);
	min-height: 16rem;
	padding: 2rem 1.75rem;
}

.vc-framework .vc-pillar:hover { background: #1B3047; }
.vc-framework .vc-pillar__key { color: var(--wp--preset--color--accent-bright); }
.vc-framework .vc-pillar__name { color: var(--wp--preset--color--base); }
.vc-framework .vc-pillar__list { color: var(--wp--preset--color--warm-sand); }
.vc-framework .vc-lead { color: var(--wp--preset--color--warm-sand); }
.vc-framework h2 { color: var(--wp--preset--color--base); }

@media (max-width: 900px) { .vc-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vc-pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   8. PROBLEM LIST
   ========================================================================== */

.vc-problems {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--wp--preset--color--border);
}

.vc-problems li {
	border-bottom: 1px solid var(--wp--preset--color--border);
	padding: 0.9rem 0;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--wp--preset--color--charcoal);
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.vc-problems li::before {
	content: "";
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wp--preset--color--warm-sand);
	margin-top: 0.62em;
}

/* ==========================================================================
   9. PRODUCT CARDS
   ========================================================================== */









.vc-price {
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	display: block;
	margin-bottom: 1.25rem;
}

.vc-price small {
	font-size: 0.8125rem;
	font-weight: 400;
	color: var(--wp--preset--color--muted);
	letter-spacing: 0;
}

.vc-badge {
	display: inline-block;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.3rem 0.6rem;
	border-radius: 6px;
	background: var(--wp--preset--color--sand-tint);
	color: var(--wp--preset--color--deep-brown);
	margin-bottom: 1rem;
	align-self: flex-start;
}

.vc-badge--free { background: var(--wp--preset--color--charcoal); color: #fff; }
.vc-badge--roadmap { background: var(--wp--preset--color--off-white); color: var(--wp--preset--color--muted); border: 1px solid var(--wp--preset--color--border); }

/* ==========================================================================
   10. KPI STRIP
   ========================================================================== */

.vc-kpi {
	border-left: 2px solid var(--wp--preset--color--warm-sand);
	padding-left: 1.25rem;
}

.vc-kpi__value {
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
	display: block;
	margin-bottom: 0.4rem;
}

.vc-kpi__label {
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.5;
}

/* ==========================================================================
   11. FORMS (Health Check, contact, newsletter)
   ========================================================================== */

.vc-form { display: grid; gap: 1.25rem; }

.vc-field { display: grid; gap: 0.4rem; }

.vc-field label,
.vc-legend {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--wp--preset--color--charcoal);
}

.vc-field__hint {
	font-size: 0.8125rem;
	color: var(--wp--preset--color--muted);
}

.vc-field input[type="text"],
.vc-field input[type="email"],
.vc-field input[type="tel"],
.vc-field select,
.vc-field textarea {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	color: var(--wp--preset--color--charcoal);
	background: #fff;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 8px;
	padding: 0.75rem 0.875rem;
	transition: border-color var(--wp--custom--transition), box-shadow var(--wp--custom--transition);
}

.vc-field input:focus,
.vc-field select:focus,
.vc-field textarea:focus {
	border-color: var(--wp--preset--color--deep-brown);
	box-shadow: 0 0 0 3px rgba(80, 53, 43, 0.1);
	outline: none;
}

.vc-field textarea { min-height: 8rem; resize: vertical; }

.vc-field--error input,
.vc-field--error select,
.vc-field--error textarea { border-color: var(--wp--preset--color--attention); }

.vc-error {
	font-size: 0.8125rem;
	color: var(--wp--preset--color--attention);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.vc-error::before { content: "!"; font-weight: 700; }

.vc-notice {
	border: 1px solid var(--wp--preset--color--border);
	border-left: 3px solid var(--wp--preset--color--warm-sand);
	background: var(--wp--preset--color--off-white);
	border-radius: 8px;
	padding: 1rem 1.25rem;
	font-size: 0.9375rem;
}

.vc-notice--error { border-left-color: var(--wp--preset--color--attention); }
.vc-notice--success { border-left-color: var(--wp--preset--color--positive); }

.vc-consent {
	display: flex;
	gap: 0.65rem;
	align-items: flex-start;
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.55;
}

.vc-consent input[type="checkbox"] {
	margin-top: 0.2rem;
	width: 1rem;
	height: 1rem;
	accent-color: var(--wp--preset--color--deep-brown);
	flex-shrink: 0;
}

.vc-submit {
	background: var(--wp--preset--color--charcoal);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 0.9rem 1.75rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	justify-self: start;
	transition: background var(--wp--custom--transition), transform var(--wp--custom--transition);
}

.vc-submit:hover { background: var(--wp--preset--color--deep-brown); transform: translateY(-1px); }
.vc-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Honeypot — visually hidden but not display:none (screen readers skip via aria-hidden) */
.vc-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Health check question groups */
.vc-question {
	border-top: 1px solid var(--wp--preset--color--border);
	padding: 1.5rem 0;
}

.vc-question:last-of-type { border-bottom: 1px solid var(--wp--preset--color--border); }

.vc-question__text {
	font-size: 1rem;
	font-weight: 500;
	margin: 0 0 0.875rem;
	display: block;
}

.vc-options { display: grid; gap: 0.5rem; }

.vc-option {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	padding: 0.75rem 0.875rem;
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: border-color var(--wp--custom--transition), background var(--wp--custom--transition);
}

.vc-option:hover { background: var(--wp--preset--color--off-white); }

.vc-option:has(input:checked) {
	border-color: var(--wp--preset--color--deep-brown);
	background: var(--wp--preset--color--off-white);
}

.vc-option input {
	margin-top: 0.2rem;
	accent-color: var(--wp--preset--color--deep-brown);
	flex-shrink: 0;
}

/* Result display */
.vc-result {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 14px;
	padding: 2rem;
	background: #fff;
}

.vc-result__score {
	font-size: 3.5rem;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.vc-result__score small {
	font-size: 1.25rem;
	color: var(--wp--preset--color--muted);
	font-weight: 400;
}

.vc-result__bars { display: grid; gap: 1rem; margin-top: 2rem; }

.vc-result__bar-label {
	display: flex;
	justify-content: space-between;
	font-size: 0.875rem;
	margin-bottom: 0.4rem;
}

.vc-result__bar-label strong { font-variant-numeric: tabular-nums; font-weight: 600; }

.vc-result__track {
	height: 6px;
	background: var(--wp--preset--color--off-white);
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 4px;
	overflow: hidden;
}

.vc-result__fill { height: 100%; background: var(--wp--preset--color--warm-sand); }
.vc-result__fill--low { background: var(--wp--preset--color--attention); }
.vc-result__fill--high { background: var(--wp--preset--color--positive); }

/* ==========================================================================
   12. ARTICLE / INSIGHTS
   ========================================================================== */

.vc-meta {
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.vc-meta__sep { color: var(--wp--preset--color--border); }

.vc-entry { max-width: 44rem; }

.vc-entry p { line-height: 1.72; }

.vc-entry h2 { margin-top: 2.75rem; }
.vc-entry h3 { margin-top: 2rem; }

.vc-post-card {
	border-top: 1px solid var(--wp--preset--color--border);
	padding-top: 1.5rem;
}

.vc-post-card__title a { text-decoration: none; color: var(--wp--preset--color--charcoal); }
.vc-post-card__title a:hover { color: var(--wp--preset--color--deep-brown); }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.vc-footer { border-top: 1px solid var(--wp--preset--color--border-dark); }

.vc-footer a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color var(--wp--custom--transition);
}

.vc-footer a:hover { color: #fff; }

.vc-footer__heading {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	color: rgba(255, 255, 255, 0.4);
	margin: 0 0 1rem;
}

.vc-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }

/* ==========================================================================
   14. SECTION RHYTHM
   ========================================================================== */

.vc-rule {
	border: 0;
	border-top: 1px solid var(--wp--preset--color--border);
	margin: 0;
}

.vc-section-head { margin-bottom: 2.5rem; }
.vc-section-head > * { max-width: 44rem; margin-inline: 0 auto; }

/* ==========================================================================
   15. ACCESSIBILITY HELPERS
   ========================================================================== */

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Print */
@media print {
	.vc-header, .vc-footer, .wp-block-button { display: none; }
	body { color: #000; background: #fff; }
}


/* ==========================================================================
   12. DISPLAY TYPOGRAPHY
   Headings are set in Instrument Serif — the face the application already uses
   for its own headings and wordmark. A visitor who subscribes moves from this
   page into the product without the voice changing, which is the one thing a
   marketing site and its application should agree on.

   Restraint is deliberate: the serif carries display sizes only. Body copy,
   labels and data stay in Inter and IBM Plex Mono, where their proportions do
   the work better.
   ========================================================================== */

h1, h2,
.wp-block-post-title,
.vc-display {
	font-family: var(--wp--preset--font-family--display);
	font-weight: 400;
	letter-spacing: -0.011em;
	line-height: 1.08;
}

h1 { font-size: clamp(2.5rem, 1.6rem + 3.6vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); }

/* h3 downwards stay in Inter: at those sizes the serif reads as decoration
   rather than hierarchy. */
h3, h4, h5, h6 {
	font-family: var(--wp--preset--font-family--sans);
}

/* ==========================================================================
   13. PLAN CARDS
   Two plans, side by side, each ending in a link to the application's checkout.
   The card is the whole clickable proposition, so its border carries the
   emphasis rather than a coloured background.
   ========================================================================== */

.vc-plan {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border: 1px solid var(--wp--preset--color--border);
	background: var(--wp--preset--color--base);
}

.vc-plan--featured {
	border-color: var(--wp--preset--color--charcoal);
	box-shadow: 0 1px 0 var(--wp--preset--color--charcoal);
}

.vc-plan__price {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.vc-plan__period {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.9375rem;
	color: var(--wp--preset--color--muted);
}

.vc-plan__list {
	margin: 1.5rem 0 2rem;
	padding: 0;
	list-style: none;
	font-size: 0.9375rem;
	line-height: 1.7;
}

.vc-plan__list li {
	padding-left: 1.4rem;
	position: relative;
	margin-bottom: 0.4rem;
}

.vc-plan__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 0.5rem;
	height: 1px;
	background: var(--wp--preset--color--warm-sand);
}

/* No 'margin-top: auto' here. That existed to align the buttons of two cards of
   unequal length; with a single plan it stretches the card past its own content
   and the section below rides up over the border. */
.vc-plan__cta { margin-top: 0.5rem; }

/* The plan sits beside a column of explanatory text that is usually taller.
   Without this the card stretches to match it, leaving the border floating well
   below the last feature. */
.vc-pricing__columns { align-items: flex-start; }

.vc-pricing__note { clear: both; }

/* A statement of what the software cannot do carries more weight than another
   feature list, so it is set apart rather than folded into body copy. */
.vc-scope {
	border-left: 2px solid var(--wp--preset--color--warm-sand);
	padding-left: 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--wp--preset--color--muted);
}

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

/* ==========================================================================
   14. HERO READOUT
   A definition list rather than a card grid: each line names a figure the
   product shows and then qualifies it. The qualification is the point — it is
   where the honesty lives — so it sits in the same row as the label rather
   than being demoted to a caption.
   ========================================================================== */

.vc-readout { margin: 1.25rem 0 0; }

.vc-readout__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.15rem;
	padding: 0.9rem 0;
	border-top: 1px solid var(--wp--preset--color--border);
}

.vc-readout__row:first-child { border-top: 0; padding-top: 0; }

.vc-readout dt {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--wp--preset--color--charcoal);
}

.vc-readout dd {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--muted);
}

.vc-plan__name {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 0.75rem;
}

.vc-plan .wp-block-button__link { width: 100%; text-align: center; }

.vc-plan__vat {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
}

.vc-plan__note {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	color: var(--wp--preset--color--muted);
	text-align: center;
}

/* ==========================================================================
   15. LEGAL PAGES
   Long documents read badly at the marketing site's measure, so they get a
   narrower column, a visible version block, and anchors that do not shift when
   a clause is inserted above them.
   ========================================================================== */

.vc-legal { max-width: 44rem; }

.vc-legal h2 {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wp--preset--color--border);
	font-size: 1.5rem;
}

.vc-legal h3 { margin-top: 2rem; font-size: 1.0625rem; }

.vc-legal p, .vc-legal li { font-size: 1rem; line-height: 1.75; }

.vc-legal table { font-size: 0.9375rem; }

.vc-legal__meta {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.8125rem;
	letter-spacing: 0.02em;
	color: var(--wp--preset--color--muted);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--wp--preset--color--border);
}

/* The draft banner is deliberately loud. It exists so that an unreviewed
   document cannot be mistaken for a published one, including by whoever is
   about to send the link to a customer. */
.vc-draft-banner {
	border: 2px solid var(--wp--preset--color--attention);
	background: #FBEFE8;
	padding: 1rem 1.25rem;
	margin-bottom: 2.5rem;
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.8125rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--wp--preset--color--attention);
}

/* A statement of what the product is not. It belongs at the foot of anything
   that could be mistaken for an opinion on a set of accounts. */
.vc-disclaimer {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--wp--preset--color--border);
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--wp--preset--color--muted);
}

/* ==========================================================================
   16. FIGURES
   The one typographic discipline that separates financial typesetting from
   ordinary web type, and the thing a management accountant notices first.

   Lining tabular numerals: every digit occupies the same width, so a column of
   amounts aligns on the decimal without a table, and 1,111 is not narrower than
   8,888. Slashed zero so a nil balance cannot be mistaken for a letter.
   ========================================================================== */

.vc-numeric,
.vc-figure,
.vc-plan__price,
.vc-readout dt,
table td,
table th {
	font-variant-numeric: tabular-nums lining-nums slashed-zero;
	font-feature-settings: "tnum" 1, "lnum" 1, "zero" 1;
}

/* Money is read by scanning a column, so it sits right and never wraps. */
.vc-figure {
	font-family: var(--wp--preset--font-family--mono);
	text-align: right;
	white-space: nowrap;
}

/* A negative in brackets, not with a minus sign. Every set of accounts a
   customer has ever read does it this way, and the convention carries meaning
   that a hyphen does not. */
.vc-figure--negative::before { content: "("; }
.vc-figure--negative::after { content: ")"; }
.vc-figure--negative { color: var(--wp--preset--color--attention); }

/* ==========================================================================
   17. THE PRACTICE
   A named, credentialed accountant is the strongest claim this business can
   make, and an anonymous site throws it away. This block is deliberately plain:
   a portrait-less credential line, set in the utility face, next to a first
   person statement. No testimonial cards, no logo wall — neither of which
   exists yet, and inventing them would undo the credibility this establishes.
   ========================================================================== */

.vc-practice {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 900px) {
	.vc-practice { grid-template-columns: minmax(0, 1fr) 15rem; gap: 4rem; }
}

.vc-credential {
	border-top: 2px solid var(--wp--preset--color--charcoal);
	padding-top: 1rem;
}

.vc-credential__name {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	margin: 0;
}

.vc-credential__letters {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	margin: 0.35rem 0 0;
}

.vc-credential__role {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--wp--preset--color--muted);
	margin: 0.9rem 0 0;
}

/* A statement in the founder's own voice, set larger than body copy and
   without quotation marks — it is the position of the business, not a pull
   quote decorating someone else's page. */
.vc-statement {
	font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
	line-height: 1.55;
	letter-spacing: -0.006em;
	color: var(--wp--preset--color--charcoal);
}

.vc-statement p + p { margin-top: 1.1rem; }

/* ==========================================================================
   18. THE AGEING STRIP
   The signature element, and the one place this design spends any boldness.

   An aged receivables summary is the most recognisable artifact in a
   management accountant's world: fixed columns, figures right-aligned on
   tabular numerals, hairline rules between money columns, a ruled total. Every
   owner who has ever chased a debtor has read one.

   Colour is structural here rather than decorative — it encodes age, which is
   the whole point of the schedule. Current reads as a credit, the middle
   buckets stay neutral, and anything past three months takes the oxide red of
   an overdue column. Remove the colour and the strip still works; the colour
   is doing a job the labels alone do more slowly.
   ========================================================================== */

.vc-ageing {
	/* Browsers give <figure> a 40px side margin by default. Left in place it
	   pushes the ruled sheets behind this one wider than the report itself. */
	margin: 0;
	background: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--border);
	padding: 1.5rem 1.5rem 1.25rem;
}

.vc-ageing__caption {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	margin-bottom: 1.25rem;
}

.vc-ageing__title {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 0.9375rem;
	font-weight: 600;
	margin: 0;
}

.vc-ageing__asat {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

/* Horizontal scroll rather than reflow: an ageing schedule read out of column
   order is not an ageing schedule. On a narrow screen it scrolls, as the real
   report does on a phone. */
.vc-ageing__scroll { overflow-x: auto; }

.vc-ageing__cols {
	display: grid;
	grid-template-columns: repeat(6, minmax(5.5rem, 1fr));
	min-width: 34rem;
}

.vc-ageing__col {
	padding: 0 0.75rem;
	border-left: 1px solid var(--wp--preset--color--border);
}

.vc-ageing__col:first-child { border-left: 0; padding-left: 0; }
.vc-ageing__col:last-child { padding-right: 0; }

.vc-ageing__label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
	text-align: right;
	white-space: nowrap;
}

.vc-ageing__amount {
	font-family: var(--wp--preset--font-family--mono);
	font-variant-numeric: tabular-nums lining-nums slashed-zero;
	font-feature-settings: "tnum" 1, "lnum" 1, "zero" 1;
	font-size: 1rem;
	text-align: right;
	white-space: nowrap;
	margin: 0.5rem 0 0.75rem;
	color: var(--wp--preset--color--charcoal);
}

/* The severity bar. Height is fixed; only weight and colour vary, so the eye
   reads the row as a single scale rather than a chart. */
.vc-ageing__bar {
	height: 3px;
	background: var(--wp--preset--color--sand-tint);
}

.vc-ageing__bar--current { background: var(--wp--preset--color--positive); }
.vc-ageing__bar--near { background: var(--wp--preset--color--warm-sand); }
.vc-ageing__bar--late { background: var(--wp--preset--color--attention); }

.vc-ageing__col--late .vc-ageing__amount { color: var(--wp--preset--color--attention); }

.vc-ageing__total {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	margin-top: 1.25rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--wp--preset--color--charcoal);
}

.vc-ageing__total-label {
	font-family: var(--wp--preset--font-family--mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--wp--preset--color--charcoal);
}

.vc-ageing__total-amount {
	font-family: var(--wp--preset--font-family--mono);
	font-variant-numeric: tabular-nums lining-nums slashed-zero;
	font-size: 1.125rem;
	font-weight: 500;
}

.vc-ageing__note {
	margin: 1rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--wp--preset--color--muted);
}

.vc-ageing__note strong { color: var(--wp--preset--color--attention); font-weight: 500; }
